From 6b307b48a202c0f059291ce0d12ec84d61175e88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 02:13:14 +0000 Subject: [PATCH] Bump clap from 4.1.3 to 4.1.4 Bumps [clap](https://github.com/clap-rs/clap) from 4.1.3 to 4.1.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/v4.1.3...v4.1.4) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++----------- bin/millau/node/Cargo.toml | 2 +- bin/rialto-parachain/node/Cargo.toml | 2 +- bin/rialto/node/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 23e3c4ed57..7ccc273f2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1353,9 +1353,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.1.3" +version = "4.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8d93d855ce6a0aa87b8473ef9169482f40abaa2e9e0993024c35c902cbd5920" +checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76" dependencies = [ "bitflags", "clap_derive", @@ -1779,7 +1779,7 @@ name = "cumulus-client-cli" version = "0.1.0" source = "git+https://github.com/paritytech/cumulus?branch=master#3aae882437f6e3e744cf464e8272ae0fe2f8fc28" dependencies = [ - "clap 4.1.3", + "clap 4.1.4", "parity-scale-codec", "sc-chain-spec", "sc-cli", @@ -3099,7 +3099,7 @@ dependencies = [ "Inflector", "array-bytes 4.2.0", "chrono", - "clap 4.1.3", + "clap 4.1.4", "comfy-table", "frame-benchmarking", "frame-support", @@ -5357,7 +5357,7 @@ version = "0.1.0" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", - "clap 4.1.3", + "clap 4.1.4", "frame-benchmarking", "frame-benchmarking-cli", "jsonrpsee 0.16.2", @@ -5753,7 +5753,7 @@ name = "node-inspect" version = "0.9.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#cba59778aa5207b11f7513e5cbb127ea47dd8924" dependencies = [ - "clap 4.1.3", + "clap 4.1.4", "parity-scale-codec", "sc-cli", "sc-client-api", @@ -7440,7 +7440,7 @@ name = "polkadot-cli" version = "0.9.33" source = "git+https://github.com/paritytech/polkadot?branch=master#a5cd3dd1a26dfb78daf3d743449934cbc7cc4090" dependencies = [ - "clap 4.1.3", + "clap 4.1.4", "frame-benchmarking-cli", "futures", "log", @@ -9321,7 +9321,7 @@ dependencies = [ name = "rialto-bridge-node" version = "0.1.0" dependencies = [ - "clap 4.1.3", + "clap 4.1.4", "frame-benchmarking", "frame-benchmarking-cli", "frame-support", @@ -9348,7 +9348,7 @@ dependencies = [ name = "rialto-parachain-collator" version = "0.1.0" dependencies = [ - "clap 4.1.3", + "clap 4.1.4", "cumulus-client-cli", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", @@ -9879,7 +9879,7 @@ source = "git+https://github.com/paritytech/substrate?branch=master#cba59778aa52 dependencies = [ "array-bytes 4.2.0", "chrono", - "clap 4.1.3", + "clap 4.1.4", "fdlimit", "futures", "libp2p", @@ -13009,7 +13009,7 @@ name = "try-runtime-cli" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#cba59778aa5207b11f7513e5cbb127ea47dd8924" dependencies = [ - "clap 4.1.3", + "clap 4.1.4", "frame-remote-externalities", "hex", "log", diff --git a/bin/millau/node/Cargo.toml b/bin/millau/node/Cargo.toml index 6fad92ef59..f2c0762d3d 100644 --- a/bin/millau/node/Cargo.toml +++ b/bin/millau/node/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [dependencies] -clap = { version = "4.1.3", features = ["derive"] } +clap = { version = "4.1.4", features = ["derive"] } jsonrpsee = { version = "0.16.2", features = ["server"] } serde_json = "1.0.79" diff --git a/bin/rialto-parachain/node/Cargo.toml b/bin/rialto-parachain/node/Cargo.toml index c344151272..5e1eba1fee 100644 --- a/bin/rialto-parachain/node/Cargo.toml +++ b/bin/rialto-parachain/node/Cargo.toml @@ -17,7 +17,7 @@ default = [] runtime-benchmarks = ['rialto-parachain-runtime/runtime-benchmarks'] [dependencies] -clap = { version = "4.1.3", features = ["derive"] } +clap = { version = "4.1.4", features = ["derive"] } log = '0.4.17' codec = { package = 'parity-scale-codec', version = '3.1.5' } serde = { version = '1.0', features = ['derive'] } diff --git a/bin/rialto/node/Cargo.toml b/bin/rialto/node/Cargo.toml index 588e09851d..88c354f9c1 100644 --- a/bin/rialto/node/Cargo.toml +++ b/bin/rialto/node/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/paritytech/parity-bridges-common/" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [dependencies] -clap = { version = "4.1.3", features = ["derive"] } +clap = { version = "4.1.4", features = ["derive"] } serde_json = "1.0.79" # Bridge dependencies