Skip to content

Commit 3121a63

Browse files
committed
Merge branch 'master' of github.com:libp2p/rust-libp2p into libp2p-quic
2 parents 3b0bd06 + 2c65b0a commit 3121a63

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ libp2p-gossipsub = { version = "0.42.1", path = "protocols/gossipsub", optional
143143
async-std = { version = "1.6.2", features = ["attributes"] }
144144
async-trait = "0.1"
145145
env_logger = "0.9.0"
146-
clap = { version = "3.1.6", features = ["derive"] }
146+
clap = { version = "4.0.13", features = ["derive"] }
147147
tokio = { version = "1.15", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }
148148

149149
[workspace]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
8585

8686
- [COMIT](https://github.com/comit-network/xmr-btc-swap) - Bitcoin–Monero Cross-chain Atomic Swap.
8787
- [Forest](https://github.com/ChainSafe/forest) - An implementation of Filecoin written in Rust.
88+
- [fuel-core](https://github.com/FuelLabs/fuel-core) - A Rust implementation of the Fuel protocol.
8889
- [ipfs-embed](https://github.com/ipfs-rust/ipfs-embed) - A small embeddable ipfs implementation
8990
used and maintained by [Actyx][https://www.actyx.com].
9091
- [iroh](https://github.com/n0-computer/iroh) - Next-generation implementation of IPFS for Cloud & Mobile platforms.

misc/keygen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = ["network-programming", "asynchronous"]
1010
publish = false
1111

1212
[dependencies]
13-
clap = {version = "3.1.6", features = ["derive"]}
13+
clap = { version = "4.0.13", features = ["derive"] }
1414
zeroize = "1"
1515
serde = { version = "1.0.136", features = ["derive"] }
1616
serde_json = "1.0.79"

misc/keygen/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ enum Command {
2727
/// Read from config file
2828
From {
2929
/// Provide a IPFS config file
30-
#[clap(parse(from_os_str))]
30+
#[clap(value_parser)]
3131
config: PathBuf,
3232
},
3333
/// Generate random

protocols/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ prost = "0.11"
2828
[dev-dependencies]
2929
async-std = { version = "1.10", features = ["attributes"] }
3030
env_logger = "0.9"
31-
clap = {version = "3.1.6", features = ["derive"]}
31+
clap = { version = "4.0.13", features = ["derive"] }
3232
libp2p = { path = "../..", features = ["full"] }

protocols/dcutr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ prost-build = "0.11"
3232
env_logger = "0.9.0"
3333
libp2p = { path = "../..", features = ["full"] }
3434
rand = "0.8"
35-
clap = {version = "3.1.6", features = ["derive"]}
35+
clap = { version = "4.0.13", features = ["derive"] }

protocols/dcutr/examples/dcutr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ struct Opts {
6060
remote_peer_id: Option<PeerId>,
6161
}
6262

63-
#[derive(Debug, Parser, PartialEq)]
63+
#[derive(Clone, Debug, PartialEq, Parser)]
6464
enum Mode {
6565
Dial,
6666
Listen,

protocols/relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ prost-build = "0.11"
3636
env_logger = "0.9.0"
3737
libp2p = { path = "../..", features = ["full"] }
3838
quickcheck = { package = "quickcheck-ext", path = "../../misc/quickcheck-ext" }
39-
clap = {version = "3.1.6", features = ["derive"]}
39+
clap = { version = "4.0.13", features = ["derive"] }

0 commit comments

Comments
 (0)