From c73a175963bfe37f7620c6f85e7d53cf3b680968 Mon Sep 17 00:00:00 2001 From: Ashley Date: Wed, 5 Feb 2020 12:12:18 +0100 Subject: [PATCH] Switch to futures-timer 3.0 (#1426) --- core/Cargo.toml | 2 +- protocols/pnet/Cargo.toml | 2 +- transports/tcp/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 823b8bae..63131f7f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -15,7 +15,7 @@ bs58 = "0.3.0" ed25519-dalek = "1.0.0-pre.3" fnv = "1.0" futures = { version = "0.3.1", features = ["compat", "io-compat", "executor", "thread-pool"] } -futures-timer = "2" +futures-timer = "3" lazy_static = "1.2" libsecp256k1 = { version = "0.3.1", optional = true } log = "0.4" diff --git a/protocols/pnet/Cargo.toml b/protocols/pnet/Cargo.toml index d9f15f68..a32d52e0 100644 --- a/protocols/pnet/Cargo.toml +++ b/protocols/pnet/Cargo.toml @@ -21,4 +21,4 @@ pin-project = "0.4.6" [dev-dependencies] env_logger = "0.7.1" quickcheck = "0.9.0" -futures-timer = "2.0" +futures-timer = "3.0" diff --git a/transports/tcp/Cargo.toml b/transports/tcp/Cargo.toml index 3e6487fd..b5edfa0a 100644 --- a/transports/tcp/Cargo.toml +++ b/transports/tcp/Cargo.toml @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] async-std = { version = "1.0", optional = true } futures = "0.3.1" -futures-timer = "2.0" +futures-timer = "3.0" get_if_addrs = "0.5.3" ipnet = "2.0.0" libp2p-core = { version = "0.15.0", path = "../../core" }