Skip to content

Commit

Permalink
build(deps): Update clap to v4 (#3015)
Browse files Browse the repository at this point in the history
  • Loading branch information
koushiro committed Oct 14, 2022
1 parent 3371d7c commit d9a2e6c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -138,7 +138,7 @@ libp2p-gossipsub = { version = "0.42.1", path = "protocols/gossipsub", optional
async-std = { version = "1.6.2", features = ["attributes"] }
async-trait = "0.1"
env_logger = "0.9.0"
clap = { version = "3.1.6", features = ["derive"] }
clap = { version = "4.0.13", features = ["derive"] }
tokio = { version = "1.15", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion misc/keygen/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ categories = ["network-programming", "asynchronous"]
publish = false

[dependencies]
clap = {version = "3.1.6", features = ["derive"]}
clap = { version = "4.0.13", features = ["derive"] }
zeroize = "1"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
Expand Down
2 changes: 1 addition & 1 deletion misc/keygen/src/main.rs
Expand Up @@ -27,7 +27,7 @@ enum Command {
/// Read from config file
From {
/// Provide a IPFS config file
#[clap(parse(from_os_str))]
#[clap(value_parser)]
config: PathBuf,
},
/// Generate random
Expand Down
2 changes: 1 addition & 1 deletion protocols/autonat/Cargo.toml
Expand Up @@ -28,5 +28,5 @@ prost = "0.11"
[dev-dependencies]
async-std = { version = "1.10", features = ["attributes"] }
env_logger = "0.9"
clap = {version = "3.1.6", features = ["derive"]}
clap = { version = "4.0.13", features = ["derive"] }
libp2p = { path = "../..", features = ["full"] }
2 changes: 1 addition & 1 deletion protocols/dcutr/Cargo.toml
Expand Up @@ -32,4 +32,4 @@ prost-build = "0.11"
env_logger = "0.9.0"
libp2p = { path = "../..", features = ["full"] }
rand = "0.8"
clap = {version = "3.1.6", features = ["derive"]}
clap = { version = "4.0.13", features = ["derive"] }
2 changes: 1 addition & 1 deletion protocols/dcutr/examples/dcutr.rs
Expand Up @@ -60,7 +60,7 @@ struct Opts {
remote_peer_id: Option<PeerId>,
}

#[derive(Debug, Parser, PartialEq)]
#[derive(Clone, Debug, PartialEq, Parser)]
enum Mode {
Dial,
Listen,
Expand Down
2 changes: 1 addition & 1 deletion protocols/relay/Cargo.toml
Expand Up @@ -36,4 +36,4 @@ prost-build = "0.11"
env_logger = "0.9.0"
libp2p = { path = "../..", features = ["full"] }
quickcheck = { package = "quickcheck-ext", path = "../../misc/quickcheck-ext" }
clap = {version = "3.1.6", features = ["derive"]}
clap = { version = "4.0.13", features = ["derive"] }

0 comments on commit d9a2e6c

Please sign in to comment.