diff --git a/Cargo.lock b/Cargo.lock index 4782d26..c2e0b7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,12 +3,12 @@ name = "cargo-outdated" version = "0.1.0" dependencies = [ "ansi_term 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "clippy 0.0.11 (git+https://github.com/Manishearth/rust-clippy)", + "clap 1.4.5 (registry+https://github.com/rust-lang/crates.io-index)", + "clippy 0.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "tabwriter 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", + "tabwriter 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -16,7 +16,7 @@ name = "advapi32-sys" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -25,33 +25,42 @@ name = "ansi_term" version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "bitflags" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "clap" -version = "1.2.1" +version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "strsim 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "clippy" -version = "0.0.11" -source = "git+https://github.com/Manishearth/rust-clippy#150840667e4bc1782e6947cc53af94a37281ab38" +version = "0.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-normalization 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "libc" -version = "0.1.10" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "rand" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "advapi32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -71,10 +80,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "tabwriter" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-width 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -82,25 +91,30 @@ name = "tempdir" version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "toml" -version = "0.1.22" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "unicode-normalization" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "unicode-width" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "winapi" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] diff --git a/Cargo.toml b/Cargo.toml index b437e98..f222156 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,19 +4,13 @@ version = "0.1.0" authors = ["Kevin K. "] [dependencies] -clap = "~1.2" +clap = "~1.4" toml = "0.1" semver = "0.1" tabwriter = "0.1" tempdir = "0.3" - -[dependencies.ansi_term] -version = "0.6" -optional = true - -[dependencies.clippy] -git = "https://github.com/Manishearth/rust-clippy" -optional = true +ansi_term = {version = "0.6", optional = true} +clippy = {version = "~0.0", optional = true} [features] default = ["color"]