diff --git a/Cargo.lock b/Cargo.lock index 1a9aa72ff0f..928541a99bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -989,9 +989,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.0.18" +version = "4.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335867764ed2de42325fafe6d18b8af74ba97ee0c590fa016f157535b42ab04b" +checksum = "8e67816e006b17427c9b4386915109b494fec2d929c63e3bd3561234cbf1bf1e" dependencies = [ "atty", "bitflags", @@ -1521,7 +1521,7 @@ dependencies = [ name = "cumulus-client-cli" version = "0.1.0" dependencies = [ - "clap 4.0.18", + "clap 4.0.19", "parity-scale-codec", "sc-chain-spec", "sc-cli", @@ -2147,7 +2147,7 @@ name = "cumulus-test-service" version = "0.1.0" dependencies = [ "async-trait", - "clap 4.0.18", + "clap 4.0.19", "criterion", "cumulus-client-cli", "cumulus-client-consensus-common", @@ -2853,7 +2853,7 @@ dependencies = [ "Inflector", "array-bytes", "chrono", - "clap 4.0.18", + "clap 4.0.19", "comfy-table", "frame-benchmarking", "frame-support", @@ -6387,7 +6387,7 @@ dependencies = [ name = "parachain-template-node" version = "0.1.0" dependencies = [ - "clap 4.0.18", + "clap 4.0.19", "cumulus-client-cli", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", @@ -6987,7 +6987,7 @@ name = "polkadot-cli" version = "0.9.31" source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ - "clap 4.0.18", + "clap 4.0.19", "frame-benchmarking-cli", "futures", "log", @@ -7648,7 +7648,7 @@ version = "0.9.300" dependencies = [ "assert_cmd", "async-trait", - "clap 4.0.18", + "clap 4.0.19", "collectives-polkadot-runtime", "contracts-rococo-runtime", "cumulus-client-cli", @@ -9281,7 +9281,7 @@ source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd49 dependencies = [ "array-bytes", "chrono", - "clap 4.0.18", + "clap 4.0.19", "fdlimit", "futures", "libp2p", @@ -12407,7 +12407,7 @@ name = "try-runtime-cli" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ - "clap 4.0.18", + "clap 4.0.19", "frame-try-runtime", "log", "parity-scale-codec", diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index 9fcbb96a80a..1e2ee28755e 100644 --- a/client/cli/Cargo.toml +++ b/client/cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -clap = { version = "4.0.17", features = ["derive"] } +clap = { version = "4.0.19", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } url = "2.3.1" diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index 771dff54f1a..19f5f87b2d1 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" build = "build.rs" [dependencies] -clap = { version = "4.0.17", features = ["derive"] } +clap = { version = "4.0.19", features = ["derive"] } log = "0.4.17" codec = { package = "parity-scale-codec", version = "3.0.0" } serde = { version = "1.0.145", features = ["derive"] } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index d2554261359..9dd21359197 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -12,7 +12,7 @@ path = "src/main.rs" [dependencies] async-trait = "0.1.58" -clap = { version = "4.0.17", features = ["derive"] } +clap = { version = "4.0.19", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } futures = "0.3.24" hex-literal = "0.3.4" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 6d537af9918..d58ab7ff5f8 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -10,7 +10,7 @@ path = "src/main.rs" [dependencies] async-trait = "0.1.58" -clap = { version = "4.0.17", features = ["derive"] } +clap = { version = "4.0.19", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } criterion = { version = "0.4.0", features = [ "async_tokio" ] } jsonrpsee = { version = "0.15.1", features = ["server"] }