diff --git a/Cargo.lock b/Cargo.lock index ea299cb..715d2fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -241,9 +241,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.5.16" +version = "4.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" +checksum = "3e5a21b8495e732f1b3c364c9949b201ca7bae518c502c80256c96ad79eaf6ac" dependencies = [ "clap_builder", "clap_derive", @@ -251,9 +251,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.15" +version = "4.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" +checksum = "8cf2dd12af7a047ad9d6da2b6b249759a22a7abc0f474c1dae1777afa4b21a73" dependencies = [ "anstream", "anstyle", diff --git a/src/idl2json_cli/Cargo.toml b/src/idl2json_cli/Cargo.toml index 5b24d05..7287603 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.16", features = [ "derive" ] } +clap = { version = "4.5.17", 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 f075fba..85c4984 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.16", features = [ "derive" ] } +clap = { version = "4.5.17", features = [ "derive" ] } yaml2candid = { path = "../yaml2candid", version = "0.10.1" } [build-dependencies]