Skip to content

Commit 3b8ff03

Browse files
feat: update async-std to 1.6.2
Ref #1612
1 parent 9dd2d66 commit 3b8ff03

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ libp2p-tcp = { version = "0.19.1", path = "transports/tcp", optional = true }
8787
libp2p-websocket = { version = "0.19.0", path = "transports/websocket", optional = true }
8888

8989
[dev-dependencies]
90-
async-std = "~1.5.0"
90+
async-std = "1.6.2"
9191
env_logger = "0.7.1"
9292

9393
[workspace]

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ zeroize = "1"
3939
ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false }
4040

4141
[dev-dependencies]
42-
async-std = "~1.5.0"
42+
async-std = "1.6.2"
4343
libp2p-mplex = { path = "../muxers/mplex" }
4444
libp2p-secio = { path = "../protocols/secio" }
4545
libp2p-tcp = { path = "../transports/tcp", features = ["async-std"] }

misc/multistream-select/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ smallvec = "1.0"
1818
unsigned-varint = "0.3.2"
1919

2020
[dev-dependencies]
21-
async-std = "~1.5.0"
21+
async-std = "1.6.2"
2222
quickcheck = "0.9.0"
2323
rand = "0.7.2"
2424
rw-stream-sink = "0.2.1"

muxers/mplex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ parking_lot = "0.10"
2020
unsigned-varint = { version = "0.3", features = ["futures-codec"] }
2121

2222
[dev-dependencies]
23-
async-std = "~1.5.0"
23+
async-std = "1.6.2"
2424
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }

protocols/deflate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ libp2p-core = { version = "0.19.0", path = "../../core" }
1515
flate2 = "1.0"
1616

1717
[dev-dependencies]
18-
async-std = "~1.5.0"
18+
async-std = "1.6.2"
1919
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }
2020
quickcheck = "0.9"
2121
rand = "0.7"

protocols/gossipsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ smallvec = "1.1.0"
2828
prost = "0.6.1"
2929

3030
[dev-dependencies]
31-
async-std = "~1.5.0"
31+
async-std = "1.6.2"
3232
env_logger = "0.7.1"
3333
libp2p-plaintext = { path = "../plaintext" }
3434
libp2p-yamux = { path = "../../muxers/yamux" }

protocols/identify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ smallvec = "1.0"
1919
wasm-timer = "0.2"
2020

2121
[dev-dependencies]
22-
async-std = "~1.5.0"
22+
async-std = "1.6.2"
2323
libp2p-mplex = { path = "../../muxers/mplex" }
2424
libp2p-secio = { path = "../../protocols/secio" }
2525
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }

protocols/mdns/Cargo.toml

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

1212
[dependencies]
13-
async-std = "~1.5.0"
13+
async-std = "1.6.2"
1414
data-encoding = "2.0"
1515
dns-parser = "0.8"
1616
either = "1.5.3"

protocols/ping/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void = "1.0"
1919
wasm-timer = "0.2"
2020

2121
[dev-dependencies]
22-
async-std = "~1.5.0"
22+
async-std = "1.6.2"
2323
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }
2424
libp2p-secio = { path = "../../protocols/secio" }
2525
libp2p-yamux = { path = "../../muxers/yamux" }

protocols/secio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ secp256k1 = []
4646
aes-all = ["aesni"]
4747

4848
[dev-dependencies]
49-
async-std = "~1.5.0"
49+
async-std = "1.6.2"
5050
criterion = "0.3"
5151
libp2p-mplex = { path = "../../muxers/mplex" }
5252
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }

0 commit comments

Comments
 (0)