Skip to content

Commit 8862b79

Browse files
authored
chore(deps): update overall deps
Pull-Request: #6545.
1 parent b16bcee commit 8862b79

55 files changed

Lines changed: 353 additions & 364 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 202 additions & 214 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -119,43 +119,43 @@ libp2p-webtransport-websys = { version = "0.6.0", path = "transports/webtranspor
119119
libp2p-yamux = { version = "0.48.0", path = "muxers/yamux" }
120120

121121
# External dependencies
122-
asynchronous-codec = { version = "0.7.0" }
123-
axum = { version = "0.7.9" }
124-
criterion = { version = "0.5.1" }
125-
bytes = "1.11.1"
122+
asynchronous-codec = { version = "0.7" }
123+
axum = { version = "0.7" }
124+
criterion = { version = "0.5" }
125+
bytes = "1.12"
126126
env_logger = "0.11"
127-
futures = "0.3.30"
127+
futures = "0.3"
128128
futures-bounded = { version = "0.3", features = ["futures-timer"] }
129-
futures-rustls = { version = "0.26.0", default-features = false }
129+
futures-rustls = { version = "0.26", default-features = false }
130130
futures-timer = "3.0"
131131
hex-literal = "0.4"
132132
getrandom = { version = "0.2", features = ["js"] }
133-
hashlink = "0.11.0"
134-
hickory-proto = { version = "0.26.1", default-features = false }
135-
hickory-resolver = { version = "0.26.1", default-features = false }
136-
if-watch = "3.2.2"
137-
multiaddr = "0.18.1"
138-
multihash = "0.19.5"
133+
hashlink = "0.11"
134+
hickory-proto = { version = "0.26", default-features = false }
135+
hickory-resolver = { version = "0.26", default-features = false }
136+
if-watch = "3.2"
137+
multiaddr = "0.18"
138+
multihash = "0.19"
139139
multistream-select = { version = "0.14.0", path = "misc/multistream-select" }
140140
prometheus-client = "0.24"
141141
prost-codec = { version = "0.4.0", path = "misc/prost-codec" }
142142
prost = "0.14"
143143
quickcheck = { package = "quickcheck-ext", path = "misc/quickcheck-ext" }
144-
rand = "0.8.0"
144+
rand = "0.8"
145145
rcgen = "0.13"
146-
ring = "0.17.12"
146+
ring = "0.17"
147147
rw-stream-sink = { version = "0.5.0", path = "misc/rw-stream-sink" }
148148
thiserror = "2"
149-
tokio = { version = "1.52", default-features = false }
150-
tracing = "0.1.44"
151-
tracing-subscriber = "0.3.23"
152-
unsigned-varint = { version = "0.8.0" }
149+
tokio = { version = "1.53", default-features = false }
150+
tracing = "0.1"
151+
tracing-subscriber = "0.3"
152+
unsigned-varint = { version = "0.8" }
153153
# Pinned to avoid wasm-bindgen >=0.2.109 which breaks gloo-timers 0.2.6 (used by futures-timer for wasm).
154154
# wasm-bindgen-futures pins wasm-bindgen exactly, so capping it caps wasm-bindgen.
155155
# Versions 0.4.59-0.4.61 are unusable because they pin yanked js-sys releases (0.3.86-0.3.88).
156156
# TODO: remove when futures-timer is updated.
157157
wasm-bindgen-futures = "=0.4.58"
158-
web-time = "1.1.0"
158+
web-time = "1.1"
159159

160160
[patch.crates-io]
161161

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ libp2p-identity = { workspace = true, features = ["peerid", "ed25519"] }
2020
multiaddr = { workspace = true }
2121
multihash = { workspace = true }
2222
multistream-select = { workspace = true }
23-
parking_lot = "0.12.5"
23+
parking_lot = "0.12"
2424
prost = { workspace = true }
25-
pin-project = "1.1.13"
25+
pin-project = "1.1"
2626
rand = { workspace = true }
2727
rw-stream-sink = { workspace = true }
2828
thiserror = { workspace = true }

examples/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ release = false
1010

1111
[dependencies]
1212
tokio = { workspace = true, features = ["full"] }
13-
clap = { version = "4.6.1", features = ["derive"] }
13+
clap = { version = "4.6", features = ["derive"] }
1414
futures = { workspace = true }
1515
libp2p = { path = "../../libp2p", features = ["tokio", "tcp", "noise", "yamux", "autonat", "identify", "macros"] }
1616
tracing-subscriber = { workspace = true, features = ["env-filter"] }

examples/autonatv2/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ name = "autonatv2_server"
1616

1717
[dependencies]
1818
libp2p = { workspace = true, features = ["macros", "tokio", "tcp", "noise", "yamux", "autonat", "identify", "dns", "quic"] }
19-
clap = { version = "4.6.1", features = ["derive"] }
20-
tokio = { version = "1.52.3", features = ["macros", "rt-multi-thread"] }
21-
tracing = "0.1.44"
19+
clap = { version = "4.6", features = ["derive"] }
20+
tokio = { version = "1.53", features = ["macros", "rt-multi-thread"] }
21+
tracing = "0.1"
2222
tracing-subscriber = { workspace = true, features = ["env-filter"] }
2323
rand = { workspace = true }
24-
opentelemetry = { version = "0.27.0", optional = true }
25-
opentelemetry_sdk = { version = "0.27.0", optional = true, features = ["rt-tokio"] }
26-
opentelemetry-otlp = { version = "0.27.0", optional = true }
27-
tracing-opentelemetry = { version = "0.28.0", optional = true }
28-
cfg-if = "1.0.4"
24+
opentelemetry = { version = "0.27", optional = true }
25+
opentelemetry_sdk = { version = "0.27", optional = true, features = ["rt-tokio"] }
26+
opentelemetry-otlp = { version = "0.27", optional = true }
27+
tracing-opentelemetry = { version = "0.28", optional = true }
28+
cfg-if = "1.0"
2929

3030
[features]
3131
jaeger = ["opentelemetry", "opentelemetry_sdk", "opentelemetry-otlp", "tracing-opentelemetry"]

examples/browser-webrtc/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ release = false
1616
crate-type = ["cdylib"]
1717

1818
[dependencies]
19-
anyhow = "1.0.102"
19+
anyhow = "1.0"
2020
futures = { workspace = true }
2121
rand = { workspace = true }
2222
tracing = { workspace = true }
@@ -26,19 +26,19 @@ tracing-subscriber = { workspace = true, features = ["env-filter"] }
2626
axum = { workspace = true }
2727
libp2p = { path = "../../libp2p", features = [ "ed25519", "macros", "ping", "tokio"] }
2828
libp2p-webrtc = { workspace = true, features = ["tokio"] }
29-
rust-embed = { version = "8.11.0", features = ["include-exclude", "interpolate-folder-path"] }
29+
rust-embed = { version = "8.12", features = ["include-exclude", "interpolate-folder-path"] }
3030
tokio = { workspace = true, features = ["macros", "net", "rt", "signal"] }
3131
tokio-util = { version = "0.7", features = ["compat"] }
3232
tower = "0.5"
33-
tower-http = { version = "0.6", features = ["cors"] }
34-
mime_guess = "2.0.4"
33+
tower-http = { version = "0.7", features = ["cors"] }
34+
mime_guess = "2.0"
3535

3636
[target.'cfg(target_arch = "wasm32")'.dependencies]
37-
js-sys = "0.3.69"
37+
js-sys = "0.3"
3838
libp2p = { path = "../../libp2p", features = [ "ed25519", "macros", "ping"] }
3939
libp2p-webrtc-websys = { workspace = true }
40-
tracing-wasm = "0.2.1"
41-
wasm-bindgen = "0.2.90"
40+
tracing-wasm = "0.2"
41+
wasm-bindgen = "0.2"
4242
wasm-bindgen-futures = { workspace = true}
4343
web-sys = { version = "0.3", features = ['Document', 'Element', 'HtmlElement', 'Node', 'Response', 'Window'] }
4444

examples/dcutr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
release = false
1010

1111
[dependencies]
12-
clap = { version = "4.6.1", features = ["derive"] }
12+
clap = { version = "4.6", features = ["derive"] }
1313
futures = { workspace = true }
1414
futures-timer = { workspace = true }
1515
libp2p = { path = "../../libp2p", features = [ "dns", "dcutr", "identify", "macros", "noise", "ping", "quic", "relay", "rendezvous", "tcp", "tokio", "yamux"] }

examples/file-sharing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ release = false
1111
[dependencies]
1212
serde = { version = "1.0", features = ["derive"] }
1313
tokio = { workspace = true, features = ["full"] }
14-
clap = { version = "4.6.1", features = ["derive"] }
14+
clap = { version = "4.6", features = ["derive"] }
1515
futures = { workspace = true }
1616
libp2p = { path = "../../libp2p", features = [ "tokio", "cbor", "dns", "kad", "noise", "macros", "request-response", "tcp", "websocket", "yamux"] }
1717
tracing-subscriber = { workspace = true, features = ["env-filter"] }

examples/identify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
release = false
1010

1111
[dependencies]
12-
tokio = { version = "1.52.3", features = ["full"] }
12+
tokio = { version = "1.53", features = ["full"] }
1313
futures = { workspace = true }
1414
libp2p = { path = "../../libp2p", features = ["identify", "noise", "tcp", "tokio", "yamux"] }
1515
tracing-subscriber = { workspace = true, features = ["env-filter"] }

examples/ipfs-kad/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ release = false
1010

1111
[dependencies]
1212
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
13-
clap = { version = "4.6.1", features = ["derive"] }
13+
clap = { version = "4.6", features = ["derive"] }
1414
futures = { workspace = true }
15-
anyhow = "1.0.102"
15+
anyhow = "1.0"
1616
libp2p = { path = "../../libp2p", features = [ "tokio", "dns", "kad", "noise", "tcp", "yamux", "rsa"] }
1717
tracing-subscriber = { workspace = true, features = ["env-filter"] }
1818

0 commit comments

Comments
 (0)