Add dependency to crates: error_chain = 0.10
This commit is contained in:
parent
e77d353c52
commit
11d881d3a9
42 changed files with 42 additions and 0 deletions
|
@ -18,6 +18,7 @@ clap = ">=2.17"
|
|||
log = "0.3"
|
||||
version = "2.0.1"
|
||||
toml = "^0.4"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore", features = ["verify"] }
|
||||
libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }
|
||||
|
|
|
@ -36,6 +36,7 @@ extern crate clap;
|
|||
#[macro_use] extern crate log;
|
||||
extern crate toml;
|
||||
#[macro_use] extern crate version;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
extern crate libimagrt;
|
||||
extern crate libimagstore;
|
||||
|
|
|
@ -23,6 +23,7 @@ itertools = "0.5"
|
|||
ansi_term = "0.9"
|
||||
is-match = "0.1"
|
||||
toml-query = "0.3.0"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
)]
|
||||
|
||||
#[macro_use] extern crate log;
|
||||
#[macro_use] extern crate error_chain;
|
||||
extern crate itertools;
|
||||
#[cfg(unix)] extern crate xdg_basedir;
|
||||
extern crate env_logger;
|
||||
|
|
|
@ -26,6 +26,7 @@ is-match = "0.1"
|
|||
serde = "1.0"
|
||||
serde_json = "1.0"
|
||||
serde_derive = "1.0"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" }
|
||||
|
|
|
@ -45,6 +45,7 @@ extern crate walkdir;
|
|||
#[macro_use] extern crate is_match;
|
||||
extern crate serde_json;
|
||||
#[macro_use] extern crate serde_derive;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagerror;
|
||||
extern crate libimagutil;
|
||||
|
|
|
@ -16,6 +16,7 @@ homepage = "http://imag-pim.org"
|
|||
[dependencies]
|
||||
url = "1.2"
|
||||
regex = "0.1"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
|
||||
extern crate url;
|
||||
extern crate regex;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
|
|
@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
|
|||
log = "0.3"
|
||||
toml = "0.4.*"
|
||||
toml-query = "0.3.*"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
extern crate toml;
|
||||
extern crate toml_query;
|
||||
#[macro_use] extern crate log;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
|
|
@ -19,6 +19,7 @@ log = "0.3"
|
|||
toml = "0.4.*"
|
||||
toml-query = "0.3.*"
|
||||
itertools = "0.5"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -38,6 +38,7 @@ extern crate chrono;
|
|||
extern crate toml;
|
||||
extern crate toml_query;
|
||||
extern crate itertools;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
|
|
@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
|
|||
log = "0.3"
|
||||
email = "0.0.17"
|
||||
filters = "0.1.*"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#[macro_use] extern crate log;
|
||||
extern crate email;
|
||||
extern crate filters;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagerror;
|
||||
extern crate libimagstore;
|
||||
|
|
|
@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
|
|||
log = "0.3"
|
||||
toml = "^0.4"
|
||||
toml-query = "0.3.0"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#[macro_use] extern crate log;
|
||||
extern crate toml;
|
||||
extern crate toml_query;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
extern crate libimagrt;
|
||||
#[macro_use] extern crate libimagstore;
|
||||
|
|
|
@ -20,6 +20,7 @@ toml = "0.4"
|
|||
toml-query = "0.3"
|
||||
lazy_static = "0.2"
|
||||
is-match = "0.1"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
|
|
|
@ -41,6 +41,7 @@ extern crate toml_query;
|
|||
extern crate lazy_static;
|
||||
#[macro_use]
|
||||
extern crate is_match;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use]
|
||||
extern crate libimagerror;
|
||||
|
|
|
@ -20,6 +20,7 @@ toml = "0.4.*"
|
|||
toml-query = "0.3.*"
|
||||
log = "0.3"
|
||||
serde_json = "0.8"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -38,6 +38,7 @@ extern crate toml;
|
|||
extern crate toml_query;
|
||||
#[macro_use] extern crate log;
|
||||
extern crate serde_json;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
|
|
@ -13,6 +13,7 @@ license = "LGPL-2.1"
|
|||
lazy_static = "0.1.15"
|
||||
toml = "^0.4"
|
||||
toml-query = "0.3.0"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
|
||||
extern crate toml;
|
||||
extern crate toml_query;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagerror;
|
||||
extern crate libimagstore;
|
||||
|
|
|
@ -18,6 +18,7 @@ log = "0.3"
|
|||
toml = "0.4"
|
||||
toml-query = "0.3"
|
||||
is-match = "0.1"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
|
|
|
@ -39,6 +39,7 @@ extern crate toml;
|
|||
extern crate is_match;
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use]
|
||||
extern crate libimagerror;
|
||||
|
|
|
@ -18,6 +18,7 @@ chrono = "0.4"
|
|||
toml-query = "0.3"
|
||||
lazy_static = "0.2"
|
||||
toml = "0.4"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
extern crate chrono;
|
||||
extern crate toml_query;
|
||||
extern crate toml;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[macro_use] extern crate libimagerror;
|
||||
extern crate libimagstore;
|
||||
|
|
|
@ -14,6 +14,7 @@ repository = "https://github.com/matthiasbeyer/imag"
|
|||
homepage = "http://imag-pim.org"
|
||||
|
||||
[dependencies]
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
extern crate libimagstore;
|
||||
extern crate libimagrt;
|
||||
extern crate libimagutil;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
pub mod edit;
|
||||
pub mod error;
|
||||
|
|
|
@ -22,6 +22,7 @@ rust-crypto = "0.2"
|
|||
env_logger = "0.3"
|
||||
is-match = "0.1"
|
||||
toml-query = "0.3.0"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -40,6 +40,7 @@ extern crate toml_query;
|
|||
extern crate url;
|
||||
extern crate crypto;
|
||||
#[macro_use] extern crate is_match;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
#[cfg(test)]
|
||||
extern crate env_logger;
|
||||
|
|
|
@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
|
|||
clap = ">=2.17"
|
||||
log = "0.3"
|
||||
prettytable-rs = "0.6.*"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
extern crate clap;
|
||||
#[macro_use] extern crate log;
|
||||
extern crate prettytable;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
extern crate libimagstore;
|
||||
extern crate libimagutil;
|
||||
|
|
|
@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
|
|||
log = "0.3"
|
||||
hoedown = "5.0.0"
|
||||
url = "1.2"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -37,6 +37,7 @@ extern crate hoedown;
|
|||
extern crate url;
|
||||
extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
pub mod error;
|
||||
pub mod html;
|
||||
|
|
|
@ -20,6 +20,7 @@ rust-crypto = "0.2"
|
|||
toml = "^0.4"
|
||||
walkdir = "1.0.*"
|
||||
toml-query = "0.3.0"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -43,6 +43,7 @@ extern crate walkdir;
|
|||
#[macro_use] extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
extern crate libimagentrylist;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
module_entry_path_mod!("ref");
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ itertools = "0.5"
|
|||
is-match = "0.1"
|
||||
filters = "0.1"
|
||||
toml-query = "0.3.0"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -41,6 +41,7 @@ extern crate toml;
|
|||
extern crate toml_query;
|
||||
#[macro_use] extern crate is_match;
|
||||
extern crate filters;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
|
|
@ -16,6 +16,7 @@ homepage = "http://imag-pim.org"
|
|||
[dependencies]
|
||||
log = "0.3"
|
||||
toml = "^0.4"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
)]
|
||||
|
||||
extern crate toml;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
extern crate libimagstore;
|
||||
extern crate libimagrt;
|
||||
|
|
|
@ -21,6 +21,7 @@ lazy_static = "0.2.*"
|
|||
log = "0.3"
|
||||
regex = "0.2"
|
||||
toml = "^0.4"
|
||||
error-chain = "0.10"
|
||||
|
||||
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||
|
|
|
@ -39,6 +39,7 @@ extern crate ansi_term;
|
|||
extern crate regex;
|
||||
extern crate clap;
|
||||
extern crate toml;
|
||||
#[macro_use] extern crate error_chain;
|
||||
|
||||
extern crate libimagstore;
|
||||
#[macro_use] extern crate libimagerror;
|
||||
|
|
Loading…
Reference in a new issue