From 812889102c21b44b01a2b0652d04fc287e6c819f Mon Sep 17 00:00:00 2001 From: Toralf Wittner Date: Wed, 20 Nov 2019 18:26:21 +0100 Subject: [PATCH] Update mdns dependencies to use futures-0.3 (#1313) --- misc/mdns/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/mdns/Cargo.toml b/misc/mdns/Cargo.toml index 6dc607b6..d92f554e 100644 --- a/misc/mdns/Cargo.toml +++ b/misc/mdns/Cargo.toml @@ -10,11 +10,11 @@ keywords = ["peer-to-peer", "libp2p", "networking"] categories = ["network-programming", "asynchronous"] [dependencies] -async-std = "0.99" +async-std = "1.0" data-encoding = "2.0" dns-parser = "0.8" either = "1.5.3" -futures-preview = { version = "0.3.0-alpha.19", features = ["async-await"] } +futures = "0.3.1" lazy_static = "1.2" libp2p-core = { version = "0.13.0", path = "../../core" } libp2p-swarm = { version = "0.3.0", path = "../../swarm" } @@ -22,9 +22,9 @@ log = "0.4" multiaddr = { package = "parity-multiaddr", version = "0.5.0", path = "../multiaddr" } net2 = "0.2" rand = "0.6" -smallvec = "0.6" +smallvec = "1.0" void = "1.0" -wasm-timer = "0.2" +wasm-timer = "0.2.4" [dev-dependencies] get_if_addrs = "0.5.3"