diff options
author | Teddy Wing | 2017-04-23 03:02:16 +0200 |
---|---|---|
committer | Teddy Wing | 2017-04-23 03:02:16 +0200 |
commit | fa811ee48c200667a71250f2a9cfbadcc5319949 (patch) | |
tree | f9f083b1e0bfe98180866d76cbb5410fd2bc1991 | |
parent | fd3bf8eb6ebd588850df17c243aae07fdd0259f6 (diff) | |
download | HearURL-fa811ee48c200667a71250f2a9cfbadcc5319949.tar.bz2 |
Cargo.*: Add 'getopts' crate
For easier command line option parsing.
-rw-r--r-- | Cargo.lock | 7 | ||||
-rw-r--r-- | Cargo.toml | 1 |
2 files changed, 8 insertions, 0 deletions
@@ -2,10 +2,16 @@ name = "hearurl" version = "0.0.1" dependencies = [ + "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] +name = "getopts" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] name = "idna" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -43,6 +49,7 @@ dependencies = [ ] [metadata] +"checksum getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9047cfbd08a437050b363d35ef160452c5fe8ea5187ae0a624708c91581d685" "checksum idna 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6ac85ec3f80c8e4e99d9325521337e14ec7555c458a14e377d189659a427f375" "checksum matches 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "efd7622e3022e1a6eaa602c4cea8912254e5582c9c692e9167714182244801b1" "checksum unicode-bidi 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d3a078ebdd62c0e71a709c3d53d2af693fe09fe93fbff8344aebe289b78f9032" @@ -3,4 +3,5 @@ name = "hearurl" version = "0.0.1" [dependencies] +getopts = "0.2" url = "1.4.0" |