mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-04-25 11:02:12 +00:00
feat: update async-std to 1.6.2 (#1618)
Ref #1612 Co-authored-by: Pierre Krieger <pierre.krieger1708@gmail.com> Co-authored-by: Roman Borschel <romanb@users.noreply.github.com>
This commit is contained in:
parent
eb8cb43508
commit
823c747904
@ -90,7 +90,7 @@ libp2p-tcp = { version = "0.19.2", path = "transports/tcp", optional = true }
|
||||
libp2p-websocket = { version = "0.20.0", path = "transports/websocket", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
env_logger = "0.7.1"
|
||||
|
||||
[workspace]
|
||||
|
@ -39,7 +39,7 @@ zeroize = "1"
|
||||
ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
libp2p-mplex = { path = "../muxers/mplex" }
|
||||
libp2p-secio = { path = "../protocols/secio" }
|
||||
libp2p-tcp = { path = "../transports/tcp", features = ["async-std"] }
|
||||
|
@ -18,7 +18,7 @@ smallvec = "1.0"
|
||||
unsigned-varint = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
quickcheck = "0.9.0"
|
||||
rand = "0.7.2"
|
||||
rw-stream-sink = "0.2.1"
|
||||
|
@ -20,5 +20,5 @@ parking_lot = "0.10"
|
||||
unsigned-varint = { version = "0.4", features = ["futures-codec"] }
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }
|
||||
|
@ -15,7 +15,7 @@ libp2p-core = { version = "0.19.2", path = "../../core" }
|
||||
flate2 = "1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }
|
||||
quickcheck = "0.9"
|
||||
rand = "0.7"
|
||||
|
@ -28,7 +28,7 @@ smallvec = "1.1.0"
|
||||
prost = "0.6.1"
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
env_logger = "0.7.1"
|
||||
libp2p-plaintext = { path = "../plaintext" }
|
||||
libp2p-yamux = { path = "../../muxers/yamux" }
|
||||
|
@ -19,7 +19,7 @@ smallvec = "1.0"
|
||||
wasm-timer = "0.2"
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
libp2p-mplex = { path = "../../muxers/mplex" }
|
||||
libp2p-secio = { path = "../../protocols/secio" }
|
||||
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }
|
||||
|
@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
||||
categories = ["network-programming", "asynchronous"]
|
||||
|
||||
[dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
data-encoding = "2.0"
|
||||
dns-parser = "0.8"
|
||||
either = "1.5.3"
|
||||
|
@ -19,7 +19,7 @@ void = "1.0"
|
||||
wasm-timer = "0.2"
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }
|
||||
libp2p-secio = { path = "../../protocols/secio" }
|
||||
libp2p-yamux = { path = "../../muxers/yamux" }
|
||||
|
@ -46,7 +46,7 @@ secp256k1 = []
|
||||
aes-all = ["aesni"]
|
||||
|
||||
[dev-dependencies]
|
||||
async-std = "1.5.0"
|
||||
async-std = "1.6.2"
|
||||
criterion = "0.3"
|
||||
libp2p-mplex = { path = "../../muxers/mplex" }
|
||||
libp2p-tcp = { path = "../../transports/tcp", features = ["async-std"] }
|
||||
|
@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
||||
categories = ["network-programming", "asynchronous"]
|
||||
|
||||
[dependencies]
|
||||
async-std = { version = "1.5.0", optional = true }
|
||||
async-std = { version = "1.6.2", optional = true }
|
||||
futures = "0.3.1"
|
||||
futures-timer = "3.0"
|
||||
get_if_addrs = "0.5.3"
|
||||
|
@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
|
||||
categories = ["network-programming", "asynchronous"]
|
||||
|
||||
[target.'cfg(all(unix, not(any(target_os = "emscripten", target_os = "unknown"))))'.dependencies]
|
||||
async-std = { version = "1.5.0", optional = true }
|
||||
async-std = { version = "1.6.2", optional = true }
|
||||
libp2p-core = { version = "0.19.2", path = "../../core" }
|
||||
log = "0.4.1"
|
||||
futures = "0.3.1"
|
||||
|
Loading…
x
Reference in New Issue
Block a user