diff options
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | Cargo.toml | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..a9e7978 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,20 @@ +[root] +name = "passextract" +version = "0.0.1" +dependencies = [ + "termion 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "termion" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + @@ -3,3 +3,4 @@ name = "passextract" version = "0.0.1" [dependencies] +termion = "1.0" |