Skip to content

Commit

Permalink
Bump clap to 4.2.5 (paritytech#14061)
Browse files Browse the repository at this point in the history
Co-authored-by: parity-processbot <>
  • Loading branch information
Mira Ressel authored and nathanwhit committed Jul 19, 2023
1 parent f121b82 commit 7be1918
Show file tree
Hide file tree
Showing 15 changed files with 184 additions and 52 deletions.
206 changes: 169 additions & 37 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/node-template/node/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
name = "node-template"

[dependencies]
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
futures = { version = "0.3.21", features = ["thread-pool"]}

sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
Expand Down
2 changes: 1 addition & 1 deletion bin/node/bench/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ publish = false

[dependencies]
array-bytes = "4.1"
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
log = "0.4.17"
node-primitives = { version = "2.0.0", path = "../primitives" }
node-testing = { version = "3.0.0-dev", path = "../testing" }
Expand Down
4 changes: 2 additions & 2 deletions bin/node/cli/Cargo.toml
Expand Up @@ -36,7 +36,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
# third-party dependencies
array-bytes = "4.1"
clap = { version = "4.0.9", features = ["derive"], optional = true }
clap = { version = "4.2.5", features = ["derive"], optional = true }
codec = { package = "parity-scale-codec", version = "3.2.2" }
serde = { version = "1.0.136", features = ["derive"] }
jsonrpsee = { version = "0.16.2", features = ["server"] }
Expand Down Expand Up @@ -130,7 +130,7 @@ pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" }
substrate-cli-test-utils = { path = "../../../test-utils/cli" }

[build-dependencies]
clap = { version = "4.0.9", optional = true }
clap = { version = "4.2.5", optional = true }
clap_complete = { version = "4.0.2", optional = true }
node-inspect = { version = "0.9.0-dev", optional = true, path = "../inspect" }
frame-benchmarking-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }
Expand Down
2 changes: 1 addition & 1 deletion bin/node/inspect/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.2.2" }
thiserror = "1.0"
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
Expand Down
2 changes: 1 addition & 1 deletion bin/utils/chain-spec-builder/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
ansi_term = "0.12.1"
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
rand = "0.8"
node-cli = { version = "3.0.0-dev", path = "../../node/cli" }
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }
Expand Down
2 changes: 1 addition & 1 deletion bin/utils/subkey/Cargo.toml
Expand Up @@ -17,5 +17,5 @@ path = "src/main.rs"
name = "subkey"

[dependencies]
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
2 changes: 1 addition & 1 deletion client/cli/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
array-bytes = "4.1"
chrono = "0.4.10"
clap = { version = "4.0.9", features = ["derive", "string"] }
clap = { version = "4.2.5", features = ["derive", "string"] }
fdlimit = "0.2.1"
futures = "0.3.21"
libp2p = "0.50.0"
Expand Down
2 changes: 1 addition & 1 deletion client/storage-monitor/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ description = "Storage monitor service for substrate"
homepage = "https://substrate.io"

[dependencies]
clap = { version = "4.0.9", features = ["derive", "string"] }
clap = { version = "4.2.5", features = ["derive", "string"] }
futures = "0.3.21"
log = "0.4.17"
fs4 = "0.6.3"
Expand Down
Expand Up @@ -13,7 +13,7 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
honggfuzz = "0.5"
rand = { version = "0.8", features = ["std", "small_rng"] }

Expand Down
2 changes: 1 addition & 1 deletion primitives/npos-elections/fuzzer/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] }
honggfuzz = "0.5"
rand = { version = "0.8", features = ["std", "small_rng"] }
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/benchmarking-cli/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
array-bytes = "4.1"
chrono = "0.4"
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.2.2" }
comfy-table = { version = "6.0.0", default-features = false }
handlebars = "4.2.2"
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/frame-utilities-cli/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ documentation = "https://docs.rs/substrate-frame-cli"
readme = "README.md"

[dependencies]
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
frame-support = { version = "4.0.0-dev", path = "../../../frame/support" }
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/generate-bags/node-runtime/Cargo.toml
Expand Up @@ -14,4 +14,4 @@ kitchensink-runtime = { version = "3.0.0-dev", path = "../../../../bin/node/runt
generate-bags = { version = "4.0.0-dev", path = "../" }

# third-party
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
2 changes: 1 addition & 1 deletion utils/frame/try-runtime/cli/Cargo.toml
Expand Up @@ -36,7 +36,7 @@ frame-try-runtime = { optional = true, path = "../../../../frame/try-runtime" }
substrate-rpc-client = { path = "../../rpc/client" }

async-trait = "0.1.57"
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
hex = { version = "0.4.3", default-features = false }
log = "0.4.17"
parity-scale-codec = "3.2.2"
Expand Down

0 comments on commit 7be1918

Please sign in to comment.