diff --git a/Cargo.lock b/Cargo.lock index 0cc7c2ee..fcf992e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,13 +4,13 @@ version = "0.1.0" dependencies = [ "chrono 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", "clap 1.4.5 (registry+https://github.com/rust-lang/crates.io-index)", + "config 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "rustty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "term 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "url 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "yaml-rust 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -60,6 +60,14 @@ dependencies = [ "yaml-rust 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "config" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nom 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "kernel32-sys" version = "0.1.4" @@ -109,6 +117,11 @@ dependencies = [ "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "nom" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "num" version = "0.1.27" diff --git a/Cargo.toml b/Cargo.toml index 5574f82b..3a6d3185 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ regex = "0.1.41" url = "0.2.37" uuid = "0.1.18" -yaml-rust = "0.2.2" +config = "0.1.2" chrono = "0.2.16"