diff options
author | Teddy Wing | 2016-08-05 15:20:08 -0400 |
---|---|---|
committer | Teddy Wing | 2016-08-05 15:20:08 -0400 |
commit | d90ed892a38977a565f014124f1fc302246fa38a (patch) | |
tree | 2966f9ae00657ebfecff16e2fb513947b601e4a3 /Cargo.lock | |
parent | 98e0341868845f6bd0ce3d3465429d02823d3571 (diff) | |
download | Passextract-d90ed892a38977a565f014124f1fc302246fa38a.tar.bz2 |
Cargo: Install "termion" 1.0
Terminal library to help with creating a text user interface.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 20 |
1 files changed, 20 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)", +] + |