Fix names: libimagtag -> libimagentrytag
This commit is contained in:
parent
e86a795738
commit
6edae00d1a
13 changed files with 22 additions and 22 deletions
|
@ -15,8 +15,8 @@ path = "../libimagrt"
|
|||
[dependencies.libimagnotes]
|
||||
path = "../libimagnotes"
|
||||
|
||||
[dependencies.libimagtag]
|
||||
path = "../libimagtag"
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
|
|
@ -5,7 +5,7 @@ extern crate semver;
|
|||
|
||||
extern crate libimagnotes;
|
||||
extern crate libimagrt;
|
||||
extern crate libimagtag;
|
||||
extern crate libimagentrytag;
|
||||
extern crate libimagutil;
|
||||
|
||||
use std::process::exit;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use clap::{Arg, ArgGroup, App, SubCommand};
|
||||
|
||||
use libimagtag::ui::tag_argument;
|
||||
use libimagtag::ui::tag_argument_name;
|
||||
use libimagentrytag::ui::tag_argument;
|
||||
use libimagentrytag::ui::tag_argument_name;
|
||||
|
||||
pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
||||
app
|
||||
|
|
|
@ -19,6 +19,6 @@ path = "../libimagrt"
|
|||
[dependencies.libimagutil]
|
||||
path = "../libimagutil"
|
||||
|
||||
[dependencies.libimagtag]
|
||||
path = "../libimagtag"
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
|
|
|
@ -6,13 +6,13 @@ extern crate toml;
|
|||
|
||||
extern crate libimagstore;
|
||||
extern crate libimagrt;
|
||||
extern crate libimagtag;
|
||||
extern crate libimagentrytag;
|
||||
extern crate libimagutil;
|
||||
|
||||
use std::process::exit;
|
||||
|
||||
use libimagrt::runtime::Runtime;
|
||||
use libimagtag::tagable::Tagable;
|
||||
use libimagentrytag::tagable::Tagable;
|
||||
use libimagstore::storeid::build_entry_path;
|
||||
|
||||
mod ui;
|
||||
|
|
|
@ -14,6 +14,6 @@ semver = "0.2.1"
|
|||
[dependencies.libimagstore]
|
||||
path = "../libimagstore"
|
||||
|
||||
[dependencies.libimagtag]
|
||||
path = "../libimagtag"
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ extern crate toml;
|
|||
extern crate semver;
|
||||
|
||||
extern crate libimagstore;
|
||||
extern crate libimagtag;
|
||||
extern crate libimagentrytag;
|
||||
|
||||
// core functionality modules of the crate,
|
||||
// these depend only on libimagstore
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use libimagstore::store::Entry;
|
||||
use libimagtag::tagable::Tagable;
|
||||
use libimagtag::tag::Tag;
|
||||
use libimagentrytag::tagable::Tagable;
|
||||
use libimagentrytag::tag::Tag;
|
||||
|
||||
use filter::Filter;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "libimagtag"
|
||||
name = "libimagentrytag"
|
||||
version = "0.1.0"
|
||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# libimagtag
|
||||
# libimagentrytag
|
||||
|
||||
Library for tagging entries. Used in "imag-tag" but should be used in all other
|
||||
modules which contain tagging functionality, so the backend and frontend look
|
||||
|
|
|
@ -14,6 +14,6 @@ path = "../libimagstore"
|
|||
[dependencies.libimagrt]
|
||||
path = "../libimagrt"
|
||||
|
||||
[dependencies.libimagtag]
|
||||
path = "../libimagtag"
|
||||
[dependencies.libimagentrytag]
|
||||
path = "../libimagentrytag"
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue