From 9caec1c15d66a7919818cf99db639574cfba67a1 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Tue, 29 May 2018 16:28:00 -0700 Subject: [PATCH] Remove futures2 crate (#380) --- Cargo.toml | 1 - futures2/Cargo.toml | 14 -------------- futures2/src/lib.rs | 2 -- 3 files changed, 17 deletions(-) delete mode 100644 futures2/Cargo.toml delete mode 100644 futures2/src/lib.rs 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::*;