Add dependency to crates: error_chain = 0.10

This commit is contained in:
Matthias Beyer 2017-08-31 21:37:52 +02:00
parent e77d353c52
commit 11d881d3a9
42 changed files with 42 additions and 0 deletions

View file

@ -18,6 +18,7 @@ clap = ">=2.17"
log = "0.3" log = "0.3"
version = "2.0.1" version = "2.0.1"
toml = "^0.4" toml = "^0.4"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore", features = ["verify"] } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore", features = ["verify"] }
libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" } libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }

View file

@ -36,6 +36,7 @@ extern crate clap;
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate toml; extern crate toml;
#[macro_use] extern crate version; #[macro_use] extern crate version;
#[macro_use] extern crate error_chain;
extern crate libimagrt; extern crate libimagrt;
extern crate libimagstore; extern crate libimagstore;

View file

@ -23,6 +23,7 @@ itertools = "0.5"
ansi_term = "0.9" ansi_term = "0.9"
is-match = "0.1" is-match = "0.1"
toml-query = "0.3.0" toml-query = "0.3.0"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -34,6 +34,7 @@
)] )]
#[macro_use] extern crate log; #[macro_use] extern crate log;
#[macro_use] extern crate error_chain;
extern crate itertools; extern crate itertools;
#[cfg(unix)] extern crate xdg_basedir; #[cfg(unix)] extern crate xdg_basedir;
extern crate env_logger; extern crate env_logger;

View file

@ -26,6 +26,7 @@ is-match = "0.1"
serde = "1.0" serde = "1.0"
serde_json = "1.0" serde_json = "1.0"
serde_derive = "1.0" serde_derive = "1.0"
error-chain = "0.10"
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" } libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" }

View file

@ -45,6 +45,7 @@ extern crate walkdir;
#[macro_use] extern crate is_match; #[macro_use] extern crate is_match;
extern crate serde_json; extern crate serde_json;
#[macro_use] extern crate serde_derive; #[macro_use] extern crate serde_derive;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;
extern crate libimagutil; extern crate libimagutil;

View file

@ -16,6 +16,7 @@ homepage = "http://imag-pim.org"
[dependencies] [dependencies]
url = "1.2" url = "1.2"
regex = "0.1" regex = "0.1"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -35,6 +35,7 @@
extern crate url; extern crate url;
extern crate regex; extern crate regex;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;

View file

@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
log = "0.3" log = "0.3"
toml = "0.4.*" toml = "0.4.*"
toml-query = "0.3.*" toml-query = "0.3.*"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -36,6 +36,7 @@
extern crate toml; extern crate toml;
extern crate toml_query; extern crate toml_query;
#[macro_use] extern crate log; #[macro_use] extern crate log;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;

View file

@ -19,6 +19,7 @@ log = "0.3"
toml = "0.4.*" toml = "0.4.*"
toml-query = "0.3.*" toml-query = "0.3.*"
itertools = "0.5" itertools = "0.5"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -38,6 +38,7 @@ extern crate chrono;
extern crate toml; extern crate toml;
extern crate toml_query; extern crate toml_query;
extern crate itertools; extern crate itertools;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;

View file

@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
log = "0.3" log = "0.3"
email = "0.0.17" email = "0.0.17"
filters = "0.1.*" filters = "0.1.*"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -36,6 +36,7 @@
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate email; extern crate email;
extern crate filters; extern crate filters;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;
extern crate libimagstore; extern crate libimagstore;

View file

@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
log = "0.3" log = "0.3"
toml = "^0.4" toml = "^0.4"
toml-query = "0.3.0" toml-query = "0.3.0"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -36,6 +36,7 @@
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate toml; extern crate toml;
extern crate toml_query; extern crate toml_query;
#[macro_use] extern crate error_chain;
extern crate libimagrt; extern crate libimagrt;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;

View file

@ -20,6 +20,7 @@ toml = "0.4"
toml-query = "0.3" toml-query = "0.3"
lazy_static = "0.2" lazy_static = "0.2"
is-match = "0.1" is-match = "0.1"
error-chain = "0.10"
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }

View file

@ -41,6 +41,7 @@ extern crate toml_query;
extern crate lazy_static; extern crate lazy_static;
#[macro_use] #[macro_use]
extern crate is_match; extern crate is_match;
#[macro_use] extern crate error_chain;
#[macro_use] #[macro_use]
extern crate libimagerror; extern crate libimagerror;

View file

@ -20,6 +20,7 @@ toml = "0.4.*"
toml-query = "0.3.*" toml-query = "0.3.*"
log = "0.3" log = "0.3"
serde_json = "0.8" serde_json = "0.8"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -38,6 +38,7 @@ extern crate toml;
extern crate toml_query; extern crate toml_query;
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate serde_json; extern crate serde_json;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;

View file

@ -13,6 +13,7 @@ license = "LGPL-2.1"
lazy_static = "0.1.15" lazy_static = "0.1.15"
toml = "^0.4" toml = "^0.4"
toml-query = "0.3.0" toml-query = "0.3.0"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -35,6 +35,7 @@
extern crate toml; extern crate toml;
extern crate toml_query; extern crate toml_query;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;
extern crate libimagstore; extern crate libimagstore;

View file

@ -18,6 +18,7 @@ log = "0.3"
toml = "0.4" toml = "0.4"
toml-query = "0.3" toml-query = "0.3"
is-match = "0.1" is-match = "0.1"
error-chain = "0.10"
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }

View file

@ -39,6 +39,7 @@ extern crate toml;
extern crate is_match; extern crate is_match;
#[macro_use] #[macro_use]
extern crate log; extern crate log;
#[macro_use] extern crate error_chain;
#[macro_use] #[macro_use]
extern crate libimagerror; extern crate libimagerror;

View file

@ -18,6 +18,7 @@ chrono = "0.4"
toml-query = "0.3" toml-query = "0.3"
lazy_static = "0.2" lazy_static = "0.2"
toml = "0.4" toml = "0.4"
error-chain = "0.10"
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }

View file

@ -37,6 +37,7 @@
extern crate chrono; extern crate chrono;
extern crate toml_query; extern crate toml_query;
extern crate toml; extern crate toml;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;
extern crate libimagstore; extern crate libimagstore;

View file

@ -14,6 +14,7 @@ repository = "https://github.com/matthiasbeyer/imag"
homepage = "http://imag-pim.org" homepage = "http://imag-pim.org"
[dependencies] [dependencies]
error-chain = "0.10"
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" } libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }

View file

@ -37,6 +37,7 @@
extern crate libimagstore; extern crate libimagstore;
extern crate libimagrt; extern crate libimagrt;
extern crate libimagutil; extern crate libimagutil;
#[macro_use] extern crate error_chain;
pub mod edit; pub mod edit;
pub mod error; pub mod error;

View file

@ -22,6 +22,7 @@ rust-crypto = "0.2"
env_logger = "0.3" env_logger = "0.3"
is-match = "0.1" is-match = "0.1"
toml-query = "0.3.0" toml-query = "0.3.0"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -40,6 +40,7 @@ extern crate toml_query;
extern crate url; extern crate url;
extern crate crypto; extern crate crypto;
#[macro_use] extern crate is_match; #[macro_use] extern crate is_match;
#[macro_use] extern crate error_chain;
#[cfg(test)] #[cfg(test)]
extern crate env_logger; extern crate env_logger;

View file

@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
clap = ">=2.17" clap = ">=2.17"
log = "0.3" log = "0.3"
prettytable-rs = "0.6.*" prettytable-rs = "0.6.*"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -36,6 +36,7 @@
extern crate clap; extern crate clap;
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate prettytable; extern crate prettytable;
#[macro_use] extern crate error_chain;
extern crate libimagstore; extern crate libimagstore;
extern crate libimagutil; extern crate libimagutil;

View file

@ -17,6 +17,7 @@ homepage = "http://imag-pim.org"
log = "0.3" log = "0.3"
hoedown = "5.0.0" hoedown = "5.0.0"
url = "1.2" url = "1.2"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -37,6 +37,7 @@ extern crate hoedown;
extern crate url; extern crate url;
extern crate libimagstore; extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;
#[macro_use] extern crate error_chain;
pub mod error; pub mod error;
pub mod html; pub mod html;

View file

@ -20,6 +20,7 @@ rust-crypto = "0.2"
toml = "^0.4" toml = "^0.4"
walkdir = "1.0.*" walkdir = "1.0.*"
toml-query = "0.3.0" toml-query = "0.3.0"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -43,6 +43,7 @@ extern crate walkdir;
#[macro_use] extern crate libimagstore; #[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;
extern crate libimagentrylist; extern crate libimagentrylist;
#[macro_use] extern crate error_chain;
module_entry_path_mod!("ref"); module_entry_path_mod!("ref");

View file

@ -22,6 +22,7 @@ itertools = "0.5"
is-match = "0.1" is-match = "0.1"
filters = "0.1" filters = "0.1"
toml-query = "0.3.0" toml-query = "0.3.0"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -41,6 +41,7 @@ extern crate toml;
extern crate toml_query; extern crate toml_query;
#[macro_use] extern crate is_match; #[macro_use] extern crate is_match;
extern crate filters; extern crate filters;
#[macro_use] extern crate error_chain;
extern crate libimagstore; extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;

View file

@ -16,6 +16,7 @@ homepage = "http://imag-pim.org"
[dependencies] [dependencies]
log = "0.3" log = "0.3"
toml = "^0.4" toml = "^0.4"
error-chain = "0.10"
libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" } libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }

View file

@ -34,6 +34,7 @@
)] )]
extern crate toml; extern crate toml;
#[macro_use] extern crate error_chain;
extern crate libimagstore; extern crate libimagstore;
extern crate libimagrt; extern crate libimagrt;

View file

@ -21,6 +21,7 @@ lazy_static = "0.2.*"
log = "0.3" log = "0.3"
regex = "0.2" regex = "0.2"
toml = "^0.4" toml = "^0.4"
error-chain = "0.10"
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }

View file

@ -39,6 +39,7 @@ extern crate ansi_term;
extern crate regex; extern crate regex;
extern crate clap; extern crate clap;
extern crate toml; extern crate toml;
#[macro_use] extern crate error_chain;
extern crate libimagstore; extern crate libimagstore;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;