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

Commit

Permalink
Bump clap to 4.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Mira Ressel committed May 2, 2023
1 parent 627f498 commit 363970c
Show file tree
Hide file tree
Showing 8 changed files with 228 additions and 46 deletions.
260 changes: 221 additions & 39 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ wasm-opt = false
crate-type = ["cdylib", "rlib"]

[dependencies]
clap = { version = "4.0.9", features = ["derive"], optional = true }
clap = { version = "4.2.5", features = ["derive"], optional = true }
log = "0.4.17"
thiserror = "1.0.31"
futures = "0.3.21"
Expand Down
2 changes: 1 addition & 1 deletion node/malus/Cargo.toml
Expand Up @@ -28,7 +28,7 @@ assert_matches = "1.5"
async-trait = "0.1.57"
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
futures = "0.3.21"
futures-timer = "3.0.2"
gum = { package = "tracing-gum", path = "../gum/" }
Expand Down
2 changes: 1 addition & 1 deletion parachain/test-parachains/adder/collator/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ path = "bin/puppet_worker.rs"

[dependencies]
parity-scale-codec = { version = "3.4.0", default-features = false, features = ["derive"] }
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
futures = "0.3.21"
futures-timer = "3.0.2"
log = "0.4.17"
Expand Down
2 changes: 1 addition & 1 deletion parachain/test-parachains/undying/collator/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ path = "bin/puppet_worker.rs"

[dependencies]
parity-scale-codec = { version = "3.4.0", default-features = false, features = ["derive"] }
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
futures = "0.3.19"
futures-timer = "3.0.2"
log = "0.4.17"
Expand Down
2 changes: 1 addition & 1 deletion utils/generate-bags/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ authors.workspace = true
edition.workspace = true

[dependencies]
clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }

generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
Expand Down
2 changes: 1 addition & 1 deletion utils/remote-ext-tests/bags-list/Cargo.toml
Expand Up @@ -17,6 +17,6 @@ sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }

clap = { version = "4.0.9", features = ["derive"] }
clap = { version = "4.2.5", features = ["derive"] }
log = "0.4.17"
tokio = { version = "1.24.2", features = ["macros"] }
2 changes: 1 addition & 1 deletion utils/staking-miner/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition.workspace = true

[dependencies]
codec = { package = "parity-scale-codec", version = "3.4.0" }
clap = { version = "4.0.9", features = ["derive", "env"] }
clap = { version = "4.2.5", features = ["derive", "env"] }
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
jsonrpsee = { version = "0.16.2", features = ["ws-client", "macros"] }
log = "0.4.17"
Expand Down

0 comments on commit 363970c

Please sign in to comment.