deps: bump futures from 0.3.26 to 0.3.27

Pull-Request: #3597.
This commit is contained in:
dependabot[bot]
2023-03-13 11:35:04 +00:00
committed by GitHub
parent 2e6564f786
commit 9d0ec7e074
39 changed files with 57 additions and 57 deletions

36
Cargo.lock generated
View File

@ -1456,9 +1456,9 @@ dependencies = [
[[package]]
name = "futures"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84"
checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549"
dependencies = [
"futures-channel",
"futures-core",
@ -1471,9 +1471,9 @@ dependencies = [
[[package]]
name = "futures-channel"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac"
dependencies = [
"futures-core",
"futures-sink",
@ -1481,15 +1481,15 @@ dependencies = [
[[package]]
name = "futures-core"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd"
[[package]]
name = "futures-executor"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e"
checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83"
dependencies = [
"futures-core",
"futures-task",
@ -1499,9 +1499,9 @@ dependencies = [
[[package]]
name = "futures-io"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91"
[[package]]
name = "futures-lite"
@ -1520,9 +1520,9 @@ dependencies = [
[[package]]
name = "futures-macro"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70"
checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6"
dependencies = [
"proc-macro2",
"quote",
@ -1542,15 +1542,15 @@ dependencies = [
[[package]]
name = "futures-sink"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2"
[[package]]
name = "futures-task"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879"
[[package]]
name = "futures-timer"
@ -1564,9 +1564,9 @@ dependencies = [
[[package]]
name = "futures-util"
version = "0.3.26"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab"
dependencies = [
"futures-channel",
"futures-core",

View File

@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
either = "1.5"
fnv = "1.0"
futures = { version = "0.3.26", features = ["executor", "thread-pool"] }
futures = { version = "0.3.27", features = ["executor", "thread-pool"] }
futures-timer = "3"
instant = "0.1.11"
libp2p-identity = { version = "0.1", path = "../identity", features = ["peerid", "ed25519"] }

View File

@ -9,5 +9,5 @@ license = "MIT"
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
env_logger = "0.10.0"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "gossipsub", "mdns", "mplex", "noise", "macros", "tcp", "websocket", "yamux"] }

View File

@ -8,7 +8,7 @@ license = "MIT"
[dependencies]
clap = { version = "4.1.6", features = ["derive"] }
env_logger = "0.10.0"
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3.0"
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "dcutr", "identify", "macros", "mplex", "noise", "ping", "relay", "rendezvous", "tcp", "tokio", "yamux"] }
log = "0.4"

View File

@ -9,6 +9,6 @@ license = "MIT"
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
env_logger = "0.10"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "kad", "mdns", "mplex", "noise", "macros", "tcp", "websocket", "yamux"] }
multiaddr = { version = "0.17.0" }

View File

@ -11,6 +11,6 @@ async-trait = "0.1"
clap = { version = "4.1.6", features = ["derive"] }
either = "1.8"
env_logger = "0.10"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "kad", "mplex", "noise", "macros", "request-response", "tcp", "websocket", "yamux"] }
multiaddr = { version = "0.17.0" }

View File

@ -8,5 +8,5 @@ license = "MIT"
[dependencies]
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "dcutr", "identify", "macros", "mplex", "noise", "ping", "relay", "rendezvous", "tcp", "tokio", "yamux"] }

View File

@ -9,5 +9,5 @@ license = "MIT"
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
env_logger = "0.10"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "kad", "mplex", "noise", "tcp", "websocket", "yamux"] }

View File

@ -10,6 +10,6 @@ async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
either = "1.8"
env_logger = "0.10"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "gossipsub", "dns", "identify", "kad", "macros", "mplex", "noise", "ping", "pnet", "tcp", "websocket", "yamux"] }
multiaddr = { version = "0.17.0" }

View File

@ -8,6 +8,6 @@ license = "MIT"
[dependencies]
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "macros", "mplex", "noise", "ping", "tcp", "websocket", "yamux"] }
multiaddr = { version = "0.17.0" }

View File

@ -9,7 +9,7 @@ license = "MIT"
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
env_logger = "0.10.0"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../../libp2p", features = ["async-std", "identify", "macros", "mplex", "noise", "ping", "rendezvous", "tcp", "tokio", "yamux"] }
log = "0.4"
tokio = { version = "1.25", features = [ "rt-multi-thread", "macros", "time" ] }

View File

@ -9,7 +9,7 @@ license = "MIT"
anyhow = "1"
either = "1.8.0"
env_logger = "0.10.0"
futures = "0.3.26"
futures = "0.3.27"
libp2p = { path = "../libp2p", features = ["websocket", "quic", "mplex", "yamux", "tcp", "tokio", "ping", "noise", "tls", "dns", "rsa", "macros", "webrtc"] }
log = "0.4"
rand = "0.8.5"

View File

@ -34,7 +34,7 @@ libp2p-gossipsub = { version = "0.44.0", path = "../../protocols/gossipsub", op
[dev-dependencies]
env_logger = "0.10.0"
futures = "0.3.26"
futures = "0.3.27"
hyper = { version="0.14", features = ["server", "tcp", "http1"] }
libp2p-noise = { path = "../../transports/noise" }
libp2p-ping = { path = "../../protocols/ping" }

View File

@ -11,7 +11,7 @@ keywords = ["networking"]
categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.26"
futures = "0.3.27"
pin-project = "1.0.10"
static_assertions = "1"

View File

@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
bytes = "1"
futures = "0.3.26"
futures = "0.3.27"
asynchronous-codec = "0.6"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-identity = { version = "0.1.0", path = "../../identity" }

View File

@ -9,6 +9,6 @@ license = "MIT"
[dependencies]
libp2p-core = { path = "../../core" }
futures = "0.3.26"
futures = "0.3.27"
log = "0.4"
futures-timer = "3.0.2"

View File

@ -11,7 +11,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.26"
futures = "0.3.27"
libp2p-core = { version = "0.39.0", path = "../../core" }
thiserror = "1.0"
yamux = "0.10.0"

View File

@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
asynchronous-codec = "0.6"
either = "1.6.0"
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3.0"
instant = "0.1.11"
libp2p-core = { version = "0.39.0", path = "../../core" }

View File

@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]
asynchronous-codec = "0.6"
cuckoofilter = "0.5.0"
fnv = "1.0"
futures = "0.3.26"
futures = "0.3.27"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }
libp2p-identity = { version = "0.1.0", path = "../../identity" }

View File

@ -17,7 +17,7 @@ libp2p-identity = { version = "0.1.0", path = "../../identity" }
bytes = "1.4"
byteorder = "1.3.4"
fnv = "1.0.7"
futures = "0.3.26"
futures = "0.3.27"
rand = "0.8"
asynchronous-codec = "0.6"
unsigned-varint = { version = "0.7.0", features = ["asynchronous_codec"] }

View File

@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
asynchronous-codec = "0.6"
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3.0.2"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }

View File

@ -16,7 +16,7 @@ bytes = "1"
either = "1.5"
fnv = "1.0"
asynchronous-codec = "0.6"
futures = "0.3.26"
futures = "0.3.27"
log = "0.4"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }

View File

@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
async-io = { version = "1.3.1", optional = true }
data-encoding = "2.3.2"
futures = "0.3.26"
futures = "0.3.27"
if-watch = "3.0.0"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }

View File

@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
either = "1.8.0"
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3.0.2"
instant = "0.1.11"
libp2p-core = { version = "0.39.0", path = "../../core" }

View File

@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]
asynchronous-codec = "0.6"
bytes = "1"
either = "1.6.0"
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3"
instant = "0.1.11"
libp2p-core = { version = "0.39.0", path = "../../core" }

View File

@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
async-trait = "0.1"
futures = "0.3.26"
futures = "0.3.27"
instant = "0.1.11"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-swarm = { version = "0.42.0", path = "../../swarm" }

View File

@ -15,7 +15,7 @@ libp2p-plaintext = { path = "../transports/plaintext" }
libp2p-swarm = { path = "../swarm" }
libp2p-tcp = { path = "../transports/tcp", features = ["async-io"] }
libp2p-yamux = { path = "../muxers/yamux" }
futures = "0.3.24"
futures = "0.3.27"
log = "0.4.17"
rand = "0.8.5"
futures-timer = "3.0.2"

View File

@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
either = "1.6.0"
fnv = "1.0"
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3.0.2"
instant = "0.1.11"
libp2p-core = { version = "0.39.0", path = "../core" }
@ -40,7 +40,7 @@ wasm-bindgen = ["dep:wasm-bindgen-futures", "dep:getrandom"]
async-std = { version = "1.6.2", features = ["attributes"] }
either = "1.6.0"
env_logger = "0.10"
futures = "0.3.26"
futures = "0.3.27"
libp2p-identify = { path = "../protocols/identify" }
libp2p-identity = { version = "0.1.0", path = "../identity", features = ["ed25519"] }
libp2p-kad = { path = "../protocols/kad" }

View File

@ -11,7 +11,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.26"
futures = "0.3.27"
libp2p-core = { version = "0.39.0", path = "../../core" }
flate2 = "1.0"

View File

@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-identity = { version = "0.1.0", path = "../../identity" }
log = "0.4.1"
futures = "0.3.26"
futures = "0.3.27"
async-std-resolver = { version = "0.22", optional = true }
parking_lot = "0.12.0"
trust-dns-resolver = { version = "0.22", default-features = false, features = ["system-config"] }

View File

@ -11,7 +11,7 @@ repository = "https://github.com/libp2p/rust-libp2p"
[dependencies]
bytes = "1"
curve25519-dalek = "3.0.0"
futures = "0.3.26"
futures = "0.3.27"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-identity = { version = "0.1.0", path = "../../identity", features = ["ed25519"] }
log = "0.4"

View File

@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
asynchronous-codec = "0.6"
bytes = "1"
futures = "0.3.26"
futures = "0.3.27"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-identity = { version = "0.1.0", path = "../../identity" }
log = "0.4.8"

View File

@ -11,7 +11,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.26"
futures = "0.3.27"
log = "0.4.8"
salsa20 = "0.10"
sha3 = "0.10"

View File

@ -11,7 +11,7 @@ license = "MIT"
[dependencies]
async-std = { version = "1.12.0", optional = true }
bytes = "1.4.0"
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3.0.2"
if-watch = "3.0.0"
libp2p-core = { version = "0.39.0", path = "../../core" }

View File

@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
async-io = { version = "1.2.0", optional = true }
futures = "0.3.26"
futures = "0.3.27"
futures-timer = "3.0"
if-watch = "3.0.0"
libc = "0.2.140"

View File

@ -9,7 +9,7 @@ license = "MIT"
exclude = ["src/test_assets"]
[dependencies]
futures = { version = "0.3.26", default-features = false }
futures = { version = "0.3.27", default-features = false }
futures-rustls = "0.22.2"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-identity = { version = "0.1.0", path = "../../identity" }

View File

@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]
async-std = { version = "1.6.2", optional = true }
libp2p-core = { version = "0.39.0", path = "../../core" }
log = "0.4.1"
futures = "0.3.26"
futures = "0.3.27"
tokio = { version = "1.15", default-features = false, features = ["net"], optional = true }
[dev-dependencies]

View File

@ -11,7 +11,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]
[dependencies]
futures = "0.3.26"
futures = "0.3.27"
js-sys = "0.3.61"
libp2p-core = { version = "0.39.0", path = "../../core" }
parity-send-wrapper = "0.1.0"

View File

@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies]
futures-rustls = "0.22"
either = "1.5.3"
futures = "0.3.26"
futures = "0.3.27"
libp2p-core = { version = "0.39.0", path = "../../core" }
libp2p-identity = { version = "0.1.0", path = "../../identity" }
log = "0.4.8"