Add new dependency: toml-query
This commit is contained in:
parent
898617ff62
commit
38b56df406
3 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,7 @@ serde = "1"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
serde_derive = "1"
|
serde_derive = "1"
|
||||||
error-chain = "0.11"
|
error-chain = "0.11"
|
||||||
|
toml-query = "0.4"
|
||||||
|
|
||||||
libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" }
|
libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" }
|
||||||
libimagutil = { version = "0.5.0", path = "../../../lib/etc/libimagutil" }
|
libimagutil = { version = "0.5.0", path = "../../../lib/etc/libimagutil" }
|
||||||
|
|
|
@ -30,6 +30,7 @@ error_chain! {
|
||||||
Io(::std::io::Error);
|
Io(::std::io::Error);
|
||||||
TomlDeserError(::toml::de::Error);
|
TomlDeserError(::toml::de::Error);
|
||||||
GlobPatternError(::glob::PatternError);
|
GlobPatternError(::glob::PatternError);
|
||||||
|
TomlQueryError(::toml_query::error::Error);
|
||||||
}
|
}
|
||||||
|
|
||||||
errors {
|
errors {
|
||||||
|
|
|
@ -48,6 +48,7 @@ extern crate walkdir;
|
||||||
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 error_chain;
|
||||||
|
extern crate toml_query;
|
||||||
|
|
||||||
extern crate libimagerror;
|
extern crate libimagerror;
|
||||||
extern crate libimagutil;
|
extern crate libimagutil;
|
||||||
|
|
Loading…
Reference in a new issue