From 92739056ec8003124271bc7c4594fb6e40105721 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 05:45:10 +0000 Subject: [PATCH] Bump clap from 4.5.20 to 4.5.30 Bumps [clap](https://github.com/clap-rs/clap) from 4.5.20 to 4.5.30. - [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/clap_complete-v4.5.20...clap_complete-v4.5.30) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- src/idl2json_cli/Cargo.toml | 2 +- src/yaml2candid_cli/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 39aa3ca..8d9d75f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -241,9 +241,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.5.20" +version = "4.5.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" +checksum = "92b7b18d71fad5313a1e320fa9897994228ce274b60faa4d694fe0ea89cd9e6d" dependencies = [ "clap_builder", "clap_derive", @@ -251,9 +251,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.20" +version = "4.5.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" +checksum = "a35db2071778a7344791a4fb4f95308b5673d219dee3ae348b86642574ecc90c" dependencies = [ "anstream", "anstyle", @@ -263,9 +263,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.18" +version = "4.5.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" +checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed" dependencies = [ "heck", "proc-macro2", @@ -275,9 +275,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.1" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "codespan-reporting" diff --git a/src/idl2json_cli/Cargo.toml b/src/idl2json_cli/Cargo.toml index 3ee54d6..1bc294c 100644 --- a/src/idl2json_cli/Cargo.toml +++ b/src/idl2json_cli/Cargo.toml @@ -22,7 +22,7 @@ path = "src/main.rs" anyhow = "1" candid = { workspace = true } candid_parser = { workspace = true } -clap = { version = "4.5.20", features = [ "derive" ] } +clap = { version = "4.5.30", features = [ "derive" ] } fn-error-context = "0.2.1" idl2json = { path = "../idl2json", version = "0.10.1", features = ["clap", "crypto"] } serde_json = "^1.0" diff --git a/src/yaml2candid_cli/Cargo.toml b/src/yaml2candid_cli/Cargo.toml index a17b68b..90671a5 100644 --- a/src/yaml2candid_cli/Cargo.toml +++ b/src/yaml2candid_cli/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "4.5.20", features = [ "derive" ] } +clap = { version = "4.5.30", features = [ "derive" ] } yaml2candid = { path = "../yaml2candid", version = "0.10.1" } [build-dependencies]