diff options
| author | Teddy Wing | 2017-11-12 14:33:41 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2017-11-12 14:33:41 +0100 | 
| commit | bfa9e4eb2ea29622c98f1d2a70bbcd993ab69997 (patch) | |
| tree | 72791028abf648942cf2abd8832ec28075e82cbe | |
| parent | dd76f4de394da3d9ce8cd19b853da10d56caf8cd (diff) | |
| download | kipper-bfa9e4eb2ea29622c98f1d2a70bbcd993ab69997.tar.bz2 | |
Add 'getopts' crate
For command line options.
| -rw-r--r-- | Cargo.lock | 7 | ||||
| -rw-r--r-- | Cargo.toml | 1 | 
2 files changed, 8 insertions, 0 deletions
| @@ -2,6 +2,7 @@  name = "kipper"  version = "0.0.1"  dependencies = [ + "getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",   "json 0.11.10 (registry+https://github.com/rust-lang/crates.io-index)",   "mockito 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",   "reqwest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -300,6 +301,11 @@ version = "0.3.54"  source = "registry+https://github.com/rust-lang/crates.io-index"  [[package]] +name = "getopts" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]]  name = "http-muncher"  version = "0.3.1"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1201,6 +1207,7 @@ dependencies = [  "checksum futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "118b49cac82e04121117cbd3121ede3147e885627d82c4546b87c702debb90c1"  "checksum futures-cpupool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "e86f49cc0d92fe1b97a5980ec32d56208272cbb00f15044ea9e2799dde766fdf"  "checksum gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5e33ec290da0d127825013597dbdfc28bee4964690c7ce1166cbc2a7bd08b1bb" +"checksum getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "65922871abd2f101a2eb0eaebadc66668e54a87ad9c3dd82520b5f86ede5eff9"  "checksum http-muncher 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0d8b98946459faf4fdfdf6d90e9aac08967b9b9ffe67005d2b1f99115da741"  "checksum httparse 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af2f2dd97457e8fb1ae7c5a420db346af389926e36f43768b96f101546b04a07"  "checksum hyper 0.11.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1b45eac8b696d59491b079bd04fcb0f3488c0f6ed62dcb36bcfea8a543e9cdc3" @@ -3,6 +3,7 @@ name = "kipper"  version = "0.0.1"  [dependencies] +getopts = "0.2.15"  json = "0.11.10"  mockito = "0.9.0"  reqwest = "0.8.1" | 
