Update cli's clap dependency to 1.4.2.

This commit is contained in:
Fletcher Nichol 2015-09-27 23:35:26 -06:00
parent 67a5a7ffc8
commit 3bb68078f8
2 changed files with 4 additions and 5 deletions

6
cli/Cargo.lock generated
View File

@ -2,7 +2,7 @@
name = "names-cli" name = "names-cli"
version = "0.9.0" version = "0.9.0"
dependencies = [ dependencies = [
"clap 1.4.0 (git+https://github.com/kbknapp/clap-rs?rev=40104af)", "clap 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"names 0.9.0", "names 0.9.0",
] ]
@ -22,8 +22,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "clap" name = "clap"
version = "1.4.0" version = "1.4.2"
source = "git+https://github.com/kbknapp/clap-rs?rev=40104af#40104afe9d124b658569656ca643dc0a9d813216" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [ dependencies = [
"ansi_term 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "ansi_term 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
"strsim 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "strsim 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -13,6 +13,5 @@ A program to generate random names that look like 'used-jellyfish'.
name = "names" name = "names"
[dependencies] [dependencies]
# pending a release which includes https://github.com/kbknapp/clap-rs/pull/257 clap = "*"
clap = { git = "https://github.com/kbknapp/clap-rs", rev = "40104af" }
names = { path = ".." } names = { path = ".." }