summaryrefslogtreecommitdiffstats
path: root/tokio-udp
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-05-02 10:48:58 -0700
committerGitHub <noreply@github.com>2018-05-02 10:48:58 -0700
commit7a2b5db15cc86ed69fb2c9e3796d2caa4affae9c (patch)
treedf23231a93d8471ae588b9765bb7a4f2527e11bc /tokio-udp
parent246548384558ee0b01252935448cc23b7fd767e2 (diff)
Remove `futures2` feature from Cargo.toml files (#334)
Currently, the state of the futures2 integration is pretty broken. This patch removes the feature flag, preventing users from trying to use it. In the future, it can be brought back when the implementation is fixed.
Diffstat (limited to 'tokio-udp')
-rw-r--r--tokio-udp/Cargo.toml10
1 files changed, 0 insertions, 10 deletions
diff --git a/tokio-udp/Cargo.toml b/tokio-udp/Cargo.toml
index a2bb02c4..5a74c6a6 100644
--- a/tokio-udp/Cargo.toml
+++ b/tokio-udp/Cargo.toml
@@ -24,15 +24,5 @@ mio = "0.6.14"
log = "0.4"
futures = "0.1.19"
-# Futures 0.2 integration
-futures2 = { version = "0.1", path = "../futures2", optional = true }
-
[dev-dependencies]
env_logger = { version = "0.4", default-features = false }
-
-[features]
-unstable-futures = [
- "futures2",
- "tokio-reactor/unstable-futures",
-]
-default = []