diff --git a/Cargo.toml b/Cargo.toml index e01ab9a3e..1569d4eb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,6 @@ members = [ "tokio-tcp", "tokio-udp", "tokio-uds", - "futures2", ] [badges] diff --git a/futures2/Cargo.toml b/futures2/Cargo.toml deleted file mode 100644 index 4c9af2b2a..000000000 --- a/futures2/Cargo.toml +++ /dev/null @@ -1,14 +0,0 @@ -[package] -name = "futures2" - -version = "0.1.0" -authors = ["Aaron Turon "] -license = "MIT/Apache-2.0" -repository = "https://github.com/tokio-rs/tokio" -homepage = "https://tokio.rs" -description = """ -Enables depending on futures 0.2 and futures 0.1 in the same crate. -""" - -[dependencies] -futures = "0.2" diff --git a/futures2/src/lib.rs b/futures2/src/lib.rs deleted file mode 100644 index af0c9dc41..000000000 --- a/futures2/src/lib.rs +++ /dev/null @@ -1,2 +0,0 @@ -extern crate futures; -pub use futures::*;