From 9879e5418d3867114bd2c3f1a35e354e7c0fa528 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 15:07:18 +0000 Subject: [PATCH] chore(deps): Bump clap from 3.2.22 to 4.0.9 Bumps [clap](https://github.com/clap-rs/clap) from 3.2.22 to 4.0.9. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.2.22...v4.0.9) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 40 ++++++----------------------- commands/gng-build-agent/Cargo.toml | 2 +- commands/gng-build/Cargo.toml | 2 +- commands/gng-repo/Cargo.toml | 2 +- crates/gng_core/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 36 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a837f31..2f80ad8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,24 +69,22 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "3.2.22" +version = "4.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750" +checksum = "30607dd93c420c6f1f80b544be522a0238a7db35e6a12968d28910983fee0df0" dependencies = [ "atty", "bitflags", "clap_lex", - "indexmap", "strsim", "termcolor", - "textwrap", ] [[package]] name = "clap_lex" -version = "0.2.4" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" +checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" dependencies = [ "os_str_bytes", ] @@ -302,12 +300,6 @@ dependencies = [ "zstd", ] -[[package]] -name = "hashbrown" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" - [[package]] name = "hermit-abi" version = "0.1.19" @@ -333,16 +325,6 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" -[[package]] -name = "indexmap" -version = "1.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" -dependencies = [ - "autocfg", - "hashbrown", -] - [[package]] name = "instant" version = "0.1.12" @@ -737,26 +719,20 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "textwrap" -version = "0.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16" - [[package]] name = "thiserror" -version = "1.0.35" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85" +checksum = "0a99cb8c4b9a8ef0e7907cd3b617cc8dc04d571c4e73c8ae403d80ac160bb122" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.35" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783" +checksum = "3a891860d3c8d66fec8e73ddb3765f90082374dbaaa833407b904a94f1a7eb43" dependencies = [ "proc-macro2", "quote", diff --git a/commands/gng-build-agent/Cargo.toml b/commands/gng-build-agent/Cargo.toml index 35804b8..1d05eec 100644 --- a/commands/gng-build-agent/Cargo.toml +++ b/commands/gng-build-agent/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.56" gng_build_shared = { path = "../../crates/gng_build_shared" } gng_core = { path = "../../crates/gng_core" } -clap = { version = "3.2.22" } +clap = { version = "4.0.9" } eyre = { version = "0.6" } rlua = { version = "0.19" } rlua_serde = { version = "0.4" } diff --git a/commands/gng-build/Cargo.toml b/commands/gng-build/Cargo.toml index fd9c3d6..7086d23 100644 --- a/commands/gng-build/Cargo.toml +++ b/commands/gng-build/Cargo.toml @@ -20,7 +20,7 @@ gng_core = { path = "../../crates/gng_core" } gng_package = { path = "../../crates/gng_package" } # gng_packet_db = { path = "../../crates/gng_packet_db" } -clap = { version = "3.2.22" } +clap = { version = "4.0.9" } # downloader = { version = "0.2", default-features = false, features = [ "tui", "verify", "rustls-tls" ] } eyre = { version = "0.6" } lazy_static = { version = "1.4" } diff --git a/commands/gng-repo/Cargo.toml b/commands/gng-repo/Cargo.toml index 7de64a0..64e3282 100644 --- a/commands/gng-repo/Cargo.toml +++ b/commands/gng-repo/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.56" gng_core = { path = "../../crates/gng_core" } gng_packet_db = { path = "../../crates/gng_packet_db" } -clap = { version = "3.2.22" } +clap = { version = "4.0.9" } eyre = { version = "0.6" } serde = { version = "1.0" } serde_json = { version = "1.0" } diff --git a/crates/gng_core/Cargo.toml b/crates/gng_core/Cargo.toml index 5d79402..ed44310 100644 --- a/crates/gng_core/Cargo.toml +++ b/crates/gng_core/Cargo.toml @@ -14,7 +14,7 @@ repository = "https://github.com/hunger/gng" rust-version = "1.56" [dependencies] -clap = { version = "3.2.22" } +clap = { version = "4.0.9" } faccess = { version = "0.2" } itertools = { version = "0.10" } nix = { version = "0.25" }