Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/cargo/async-io-2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 18, 2023
2 parents bc5ec13 + 9323bc0 commit d37eac8
Show file tree
Hide file tree
Showing 18 changed files with 49 additions and 49 deletions.
64 changes: 32 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/autonat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ release = false

[dependencies]
tokio = { version = "1.35", features = ["full"] }
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
futures = "0.3.29"
libp2p = { path = "../../libp2p", features = ["tokio", "tcp", "noise", "yamux", "autonat", "identify", "macros"] }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion examples/dcutr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
release = false

[dependencies]
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
futures = "0.3.29"
futures-timer = "3.0"
libp2p = { path = "../../libp2p", features = [ "dns", "dcutr", "identify", "macros", "noise", "ping", "quic", "relay", "rendezvous", "tcp", "tokio", "yamux"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/file-sharing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ release = false
[dependencies]
serde = { version = "1.0", features = ["derive"] }
async-std = { version = "1.12", features = ["attributes"] }
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
either = "1.9"
futures = "0.3.29"
libp2p = { path = "../../libp2p", features = [ "async-std", "cbor", "dns", "kad", "noise", "macros", "request-response", "tcp", "websocket", "yamux"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/ipfs-kad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ release = false
[dependencies]
tokio = { version = "1.35", features = ["rt-multi-thread", "macros"] }
async-trait = "0.1"
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
env_logger = "0.10"
futures = "0.3.29"
anyhow = "1.0.75"
Expand Down
2 changes: 1 addition & 1 deletion examples/relay-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
release = false

[dependencies]
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
futures = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion identity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["cryptography"]
asn1_der = { version = "0.7.6", optional = true }
bs58 = { version = "0.5.0", optional = true }
ed25519-dalek = { version = "2.1", optional = true }
hkdf = { version = "0.12.3", optional = true }
hkdf = { version = "0.12.4", optional = true }
libsecp256k1 = { version = "0.7.0", optional = true }
tracing = "0.1.37"
multihash = { version = "0.19.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion misc/keygen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish = false
release = false

[dependencies]
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
zeroize = "1"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
Expand Down
2 changes: 1 addition & 1 deletion misc/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "MIT"

[dependencies]
base64 = "0.21"
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
futures = "0.3"
futures-timer = "3"
hyper = { version = "0.14", features = ["server", "tcp", "http1"] }
Expand Down
2 changes: 1 addition & 1 deletion protocols/dcutr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ futures-bounded = { workspace = true }

[dev-dependencies]
async-std = { version = "1.12.0", features = ["attributes"] }
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
libp2p-dns = { workspace = true, features = ["async-std"] }
libp2p-identify = { workspace = true }
libp2p-noise = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion protocols/floodsub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ quick-protobuf = "0.8"
quick-protobuf-codec = { workspace = true }
rand = "0.8"
smallvec = "1.11.2"
thiserror = "1.0.50"
thiserror = "1.0.51"
tracing = "0.1.37"

# Passing arguments to the docsrs builder in order to properly document cfg's.
Expand Down
2 changes: 1 addition & 1 deletion protocols/perf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
anyhow = "1"
clap = { version = "4.4.10", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
futures = "0.3.29"
futures-bounded = { workspace = true }
futures-timer = "3.0"
Expand Down
2 changes: 1 addition & 1 deletion swarm-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ proc-macro = true
[dependencies]
heck = "0.4"
quote = "1.0"
syn = { version = "2.0.40", default-features = false, features = ["clone-impls", "derive", "parsing", "printing", "proc-macro"] }
syn = { version = "2.0.41", default-features = false, features = ["clone-impls", "derive", "parsing", "printing", "proc-macro"] }
proc-macro2 = "1.0"

# Passing arguments to the docsrs builder in order to properly document cfg's.
Expand Down
2 changes: 1 addition & 1 deletion transports/noise/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ quick-protobuf = "0.8"
rand = "0.8.3"
sha2 = "0.10.8"
static_assertions = "1"
thiserror = "1.0.50"
thiserror = "1.0.51"
tracing = "0.1.37"
x25519-dalek = "2"
zeroize = "1"
Expand Down
2 changes: 1 addition & 1 deletion transports/quic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ parking_lot = "0.12.0"
quinn = { version = "0.10.2", default-features = false, features = ["tls-rustls", "futures-io"] }
rand = "0.8.5"
rustls = { version = "0.21.9", default-features = false }
thiserror = "1.0.50"
thiserror = "1.0.51"
tokio = { version = "1.35.0", default-features = false, features = ["net", "rt", "time"], optional = true }
tracing = "0.1.37"
socket2 = "0.5.5"
Expand Down
2 changes: 1 addition & 1 deletion transports/tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libp2p-core = { workspace = true }
libp2p-identity = { workspace = true }
rcgen = "0.11.3"
ring = "0.16.20"
thiserror = "1.0.50"
thiserror = "1.0.51"
webpki = { version = "0.101.4", package = "rustls-webpki", features = ["std"] }
x509-parser = "0.15.1"
yasna = "0.5.2"
Expand Down
2 changes: 1 addition & 1 deletion transports/websocket-websys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ libp2p-core = { workspace = true }
tracing = "0.1.37"
parking_lot = "0.12.1"
send_wrapper = "0.6.0"
thiserror = "1.0.50"
thiserror = "1.0.51"
wasm-bindgen = "0.2.89"
web-sys = { version = "0.3.66", features = ["BinaryType", "CloseEvent", "MessageEvent", "WebSocket", "Window", "WorkerGlobalScope"] }

Expand Down
2 changes: 1 addition & 1 deletion transports/webtransport-websys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ libp2p-noise = { workspace = true }
multiaddr = { workspace = true }
multihash = { workspace = true }
send_wrapper = { version = "0.6.0", features = ["futures"] }
thiserror = "1.0.50"
thiserror = "1.0.51"
tracing = "0.1.37"
wasm-bindgen = "0.2.89"
wasm-bindgen-futures = "0.4.39"
Expand Down

0 comments on commit d37eac8

Please sign in to comment.