summaryrefslogtreecommitdiffstats
path: root/libimagnotes
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-04-16 21:58:19 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-04-16 22:33:37 +0200
commit6edae00d1ae0df8c52d1be918c06a34a55a81696 (patch)
tree5d8a9ee01352b4220fd1b6e2ae65476ec19dceba /libimagnotes
parente86a795738764d291667a36b6bfa18f960c07060 (diff)
Fix names: libimagtag -> libimagentrytag
Diffstat (limited to 'libimagnotes')
-rw-r--r--libimagnotes/Cargo.toml4
-rw-r--r--libimagnotes/src/lib.rs2
-rw-r--r--libimagnotes/src/note.rs6
3 files changed, 6 insertions, 6 deletions
diff --git a/libimagnotes/Cargo.toml b/libimagnotes/Cargo.toml
index 7998a296..a6f41952 100644
--- a/libimagnotes/Cargo.toml
+++ b/libimagnotes/Cargo.toml
@@ -14,6 +14,6 @@ path = "../libimagstore"
[dependencies.libimagrt]
path = "../libimagrt"
-[dependencies.libimagtag]
-path = "../libimagtag"
+[dependencies.libimagentrytag]
+path = "../libimagentrytag"
diff --git a/libimagnotes/src/lib.rs b/libimagnotes/src/lib.rs
index f9319e8e..14346f66 100644
--- a/libimagnotes/src/lib.rs
+++ b/libimagnotes/src/lib.rs
@@ -4,7 +4,7 @@ extern crate toml;
extern crate libimagrt;
#[macro_use] extern crate libimagstore;
-extern crate libimagtag;
+extern crate libimagentrytag;
module_entry_path_mod!("notes", "0.1.0");
diff --git a/libimagnotes/src/note.rs b/libimagnotes/src/note.rs
index bd6b2f2d..4f30b3c6 100644
--- a/libimagnotes/src/note.rs
+++ b/libimagnotes/src/note.rs
@@ -10,9 +10,9 @@ use libimagstore::storeid::StoreId;
use libimagstore::storeid::StoreIdIterator;
use libimagstore::store::FileLockEntry;
use libimagstore::store::Store;
-use libimagtag::tag::Tag;
-use libimagtag::tagable::Tagable;
-use libimagtag::result::Result as TagResult;
+use libimagentrytag::tag::Tag;
+use libimagentrytag::tagable::Tagable;
+use libimagentrytag::result::Result as TagResult;
use module_path::ModuleEntryPath;
use result::Result;