Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 3bd7191

Browse files
Bump clap from 4.3.2 to 4.3.23
Bumps [clap](https://github.com/clap-rs/clap) from 4.3.2 to 4.3.23. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.3.2...v4.3.23) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 53d912e commit 3bd7191

File tree

16 files changed

+38
-39
lines changed

16 files changed

+38
-39
lines changed

Cargo.lock

Lines changed: 22 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node-template/node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1717
name = "node-template"
1818

1919
[dependencies]
20-
clap = { version = "4.2.5", features = ["derive"] }
20+
clap = { version = "4.3.23", features = ["derive"] }
2121
futures = { version = "0.3.21", features = ["thread-pool"]}
2222

2323
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }

bin/node/bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ publish = false
1313

1414
[dependencies]
1515
array-bytes = "6.1"
16-
clap = { version = "4.2.5", features = ["derive"] }
16+
clap = { version = "4.3.23", features = ["derive"] }
1717
log = "0.4.17"
1818
node-primitives = { version = "2.0.0", path = "../primitives" }
1919
node-testing = { version = "3.0.0-dev", path = "../testing" }

bin/node/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ crate-type = ["cdylib", "rlib"]
3838
[dependencies]
3939
# third-party dependencies
4040
array-bytes = "6.1"
41-
clap = { version = "4.2.5", features = ["derive"], optional = true }
41+
clap = { version = "4.3.23", features = ["derive"], optional = true }
4242
codec = { package = "parity-scale-codec", version = "3.6.1" }
4343
serde = { version = "1.0.163", features = ["derive"] }
4444
jsonrpsee = { version = "0.16.2", features = ["server"] }
@@ -135,7 +135,7 @@ pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" }
135135
substrate-cli-test-utils = { path = "../../../test-utils/cli" }
136136

137137
[build-dependencies]
138-
clap = { version = "4.2.5", optional = true }
138+
clap = { version = "4.3.23", optional = true }
139139
clap_complete = { version = "4.0.2", optional = true }
140140
node-inspect = { version = "0.9.0-dev", optional = true, path = "../inspect" }
141141
frame-benchmarking-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }

bin/node/inspect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ publish = false
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
clap = { version = "4.2.5", features = ["derive"] }
16+
clap = { version = "4.3.23", features = ["derive"] }
1717
codec = { package = "parity-scale-codec", version = "3.6.1" }
1818
thiserror = "1.0"
1919
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }

bin/utils/chain-spec-builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ crate-type = ["rlib"]
2222

2323
[dependencies]
2424
ansi_term = "0.12.1"
25-
clap = { version = "4.2.5", features = ["derive"] }
25+
clap = { version = "4.3.23", features = ["derive"] }
2626
rand = "0.8"
2727
node-cli = { version = "3.0.0-dev", path = "../../node/cli" }
2828
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }

bin/utils/subkey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ path = "src/main.rs"
1717
name = "subkey"
1818

1919
[dependencies]
20-
clap = { version = "4.2.5", features = ["derive"] }
20+
clap = { version = "4.3.23", features = ["derive"] }
2121
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }

client/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1515
[dependencies]
1616
array-bytes = "6.1"
1717
chrono = "0.4.10"
18-
clap = { version = "4.2.5", features = ["derive", "string"] }
18+
clap = { version = "4.3.23", features = ["derive", "string"] }
1919
fdlimit = "0.2.1"
2020
futures = "0.3.21"
2121
libp2p-identity = { version = "0.1.2", features = ["peerid", "ed25519"]}

client/storage-monitor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Storage monitor service for substrate"
99
homepage = "https://substrate.io"
1010

1111
[dependencies]
12-
clap = { version = "4.2.5", features = ["derive", "string"] }
12+
clap = { version = "4.3.23", features = ["derive", "string"] }
1313
log = "0.4.17"
1414
fs4 = "0.6.3"
1515
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }

frame/election-provider-support/solution-type/fuzzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ publish = false
1313
targets = ["x86_64-unknown-linux-gnu"]
1414

1515
[dependencies]
16-
clap = { version = "4.2.5", features = ["derive"] }
16+
clap = { version = "4.3.23", features = ["derive"] }
1717
honggfuzz = "0.5"
1818
rand = { version = "0.8", features = ["std", "small_rng"] }
1919

0 commit comments

Comments
 (0)