diff --git a/libimagrt/Cargo.lock b/libimagrt/Cargo.lock index 038179fb..99a7b211 100644 --- a/libimagrt/Cargo.lock +++ b/libimagrt/Cargo.lock @@ -1,4 +1,66 @@ [root] name = "libimagrt" version = "0.1.0" +dependencies = [ + "clap 1.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "config 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ansi_term" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "clap" +version = "1.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ansi_term 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "strsim 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "vec_map 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "config" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nom 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "log" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nom" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "strsim" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "vec_map" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/libimagrt/Cargo.toml b/libimagrt/Cargo.toml index 1232eadd..044cce27 100644 --- a/libimagrt/Cargo.toml +++ b/libimagrt/Cargo.toml @@ -2,3 +2,9 @@ name = "libimagrt" version = "0.1.0" authors = ["Matthias Beyer "] + +[dependencies] +clap = "1.5.5" +config = "0.1.3" +log = "0.3.4" +