From c8e61d81b9bfced0f37c45271eaf1f0f9e7df8b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Nov 2022 18:08:50 +0000 Subject: [PATCH] build(deps): bump clap from 3.0.10 to 4.0.26 Bumps [clap](https://github.com/clap-rs/clap) from 3.0.10 to 4.0.26. - [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.0.10...v4.0.26) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 36 ++++++++++++------------------------ day01/Cargo.toml | 2 +- day02/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 255c587..ad5ece4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,17 +78,24 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "3.0.10" +version = "4.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a30c3bf9ff12dfe5dae53f0a96e0febcd18420d1c0e7fad77796d9d5c4b5375" +checksum = "2148adefda54e14492fb9bddcc600b4344c5d1a3123bd666dcb939c6f0e0e57e" dependencies = [ "atty", "bitflags", - "indexmap", - "os_str_bytes", + "clap_lex", "strsim", "termcolor", - "textwrap", +] + +[[package]] +name = "clap_lex" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" +dependencies = [ + "os_str_bytes", ] [[package]] @@ -121,12 +128,6 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4" -[[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" @@ -136,16 +137,6 @@ dependencies = [ "libc", ] -[[package]] -name = "indexmap" -version = "1.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" -dependencies = [ - "autocfg", - "hashbrown", -] - [[package]] name = "is_ci" version = "1.1.1" @@ -241,9 +232,6 @@ name = "os_str_bytes" version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" -dependencies = [ - "memchr", -] [[package]] name = "owo-colors" diff --git a/day01/Cargo.toml b/day01/Cargo.toml index 4e09e1a..58de12a 100644 --- a/day01/Cargo.toml +++ b/day01/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" [dependencies] common = { path = "../common" } miette = { version = "3.3.0", features = ["fancy"] } -clap = "3.0.10" +clap = "4.0.26" diff --git a/day02/Cargo.toml b/day02/Cargo.toml index 23c0286..69708f0 100644 --- a/day02/Cargo.toml +++ b/day02/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" [dependencies] common = { path = "../common" } miette = { version = "3.3.0", features = ["fancy"] } -clap = "3.0.10" +clap = "4.0.26" thiserror = "1.0.30" nom = "7.1.0"