From 4591178629f26c70cbd0d1f0d1781b60babdf98f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 22:57:25 +0000 Subject: [PATCH] build(deps): bump clap from 3.2.25 to 4.5.4 Bumps [clap](https://github.com/clap-rs/clap) from 3.2.25 to 4.5.4. - [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.25...v4.5.4) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 107 ++++++++++++++++++++++++++-- Cargo.toml | 2 +- enclave_build/Cargo.toml | 2 +- samples/command_executer/Cargo.toml | 2 +- vsock_proxy/Cargo.toml | 2 +- 5 files changed, 104 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9301278b5..d5428fbcc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,6 +41,54 @@ dependencies = [ "libc", ] +[[package]] +name = "anstream" +version = "0.6.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" + +[[package]] +name = "anstyle-parse" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +dependencies = [ + "anstyle", + "windows-sys 0.52.0", +] + [[package]] name = "async-trait" version = "0.1.79" @@ -92,7 +140,7 @@ dependencies = [ "aws-nitro-enclaves-cose", "byteorder", "chrono", - "clap", + "clap 3.2.25", "crc", "hex", "num-derive 0.3.3", @@ -298,13 +346,34 @@ checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" dependencies = [ "atty", "bitflags 1.3.2", - "clap_lex", + "clap_lex 0.2.4", "indexmap 1.9.3", - "strsim", + "strsim 0.10.0", "termcolor", "textwrap", ] +[[package]] +name = "clap" +version = "4.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" +dependencies = [ + "anstream", + "anstyle", + "clap_lex 0.7.0", + "strsim 0.11.1", +] + [[package]] name = "clap_lex" version = "0.2.4" @@ -314,12 +383,24 @@ dependencies = [ "os_str_bytes", ] +[[package]] +name = "clap_lex" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" + +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + [[package]] name = "command-executer" version = "0.1.0" dependencies = [ "byteorder", - "clap", + "clap 4.5.4", "log", "nix 0.26.4", "num", @@ -426,7 +507,7 @@ dependencies = [ "aws-nitro-enclaves-image-format", "base64 0.22.0", "bollard", - "clap", + "clap 4.5.4", "flate2", "futures", "log", @@ -1180,7 +1261,7 @@ dependencies = [ "aws-nitro-enclaves-image-format", "bindgen", "chrono", - "clap", + "clap 4.5.4", "driver-bindings", "eif_loader", "enclave_build", @@ -1846,6 +1927,12 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + [[package]] name = "syn" version = "1.0.109" @@ -2115,6 +2202,12 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + [[package]] name = "vcpkg" version = "0.2.15" @@ -2152,7 +2245,7 @@ name = "vsock-proxy" version = "1.0.0" dependencies = [ "chrono", - "clap", + "clap 4.5.4", "ctor", "env_logger", "hickory-resolver", diff --git a/Cargo.toml b/Cargo.toml index f90859cca..163717030 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ rust-version = "1.68" [dependencies] serde = { version = ">=1.0", features = ["derive"] } chrono = "0.4" -clap = "3.2" +clap = "4.5" inotify = "0.10" serde_json = "1.0" nix = "0.26" diff --git a/enclave_build/Cargo.toml b/enclave_build/Cargo.toml index e8383a6d4..7a47f806e 100644 --- a/enclave_build/Cargo.toml +++ b/enclave_build/Cargo.toml @@ -9,7 +9,7 @@ rust-version = "1.68" [dependencies] bollard = "0.16.0" -clap = "3.2" +clap = "4.5" serde = { version = "1.0", features = ["derive"] } serde_yaml = "0.8" serde_json = "1.0" diff --git a/samples/command_executer/Cargo.toml b/samples/command_executer/Cargo.toml index 226102e4b..619faca0b 100644 --- a/samples/command_executer/Cargo.toml +++ b/samples/command_executer/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.68" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = "3.2" +clap = "4.5" log = "0.4" nix = "0.26" serde = { version = ">=1.0", features = ["derive"] } diff --git a/vsock_proxy/Cargo.toml b/vsock_proxy/Cargo.toml index 4b4018ddf..6cc7ada6c 100644 --- a/vsock_proxy/Cargo.toml +++ b/vsock_proxy/Cargo.toml @@ -9,7 +9,7 @@ rust-version = "1.68" [dependencies] chrono = "0.4" -clap = "3.2" +clap = "4.5" env_logger = "0.10" hickory-resolver = "0.24" idna = "0.3.0"