From 8377a2f50deaff68694d1c0ab438fe7fb152a26d Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 7 Nov 2018 18:30:21 +0100 Subject: [PATCH] Remove dependency on tokio_current_thread (#606) --- Cargo.toml | 1 - src/lib.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bdd25c53..c42bbcb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,6 @@ tokio-io = "0.1" [target.'cfg(not(target_os = "emscripten"))'.dependencies] libp2p-dns = { path = "./transports/dns" } libp2p-tcp-transport = { path = "./transports/tcp" } -tokio-current-thread = "0.1" [target.'cfg(target_os = "emscripten")'.dependencies] stdweb = { version = "0.1.3", default-features = false } diff --git a/src/lib.rs b/src/lib.rs index 1962a60c..98f50832 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -132,8 +132,6 @@ pub extern crate bytes; pub extern crate futures; -#[cfg(not(target_os = "emscripten"))] -pub extern crate tokio_current_thread; pub extern crate multiaddr; pub extern crate multihash; pub extern crate tokio_io;