Remove dependency on tokio_current_thread (#606)

This commit is contained in:
Pierre Krieger
2018-11-07 18:30:21 +01:00
committed by GitHub
parent c3a92472bb
commit 8377a2f50d
2 changed files with 0 additions and 3 deletions

View File

@ -35,7 +35,6 @@ tokio-io = "0.1"
[target.'cfg(not(target_os = "emscripten"))'.dependencies] [target.'cfg(not(target_os = "emscripten"))'.dependencies]
libp2p-dns = { path = "./transports/dns" } libp2p-dns = { path = "./transports/dns" }
libp2p-tcp-transport = { path = "./transports/tcp" } libp2p-tcp-transport = { path = "./transports/tcp" }
tokio-current-thread = "0.1"
[target.'cfg(target_os = "emscripten")'.dependencies] [target.'cfg(target_os = "emscripten")'.dependencies]
stdweb = { version = "0.1.3", default-features = false } stdweb = { version = "0.1.3", default-features = false }

View File

@ -132,8 +132,6 @@
pub extern crate bytes; pub extern crate bytes;
pub extern crate futures; pub extern crate futures;
#[cfg(not(target_os = "emscripten"))]
pub extern crate tokio_current_thread;
pub extern crate multiaddr; pub extern crate multiaddr;
pub extern crate multihash; pub extern crate multihash;
pub extern crate tokio_io; pub extern crate tokio_io;