aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2020-04-12 17:41:41 +0200
committerMax Audron <audron@cocaine.farm>2020-04-12 17:41:41 +0200
commit5e67779f1e0f7a26973dfa6cd879aed1214934cc (patch)
tree2b771f926714a4b1b169445974272f0a63a144b5 /Cargo.toml
parentsort features (diff)
update deps
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ca03d3c..1cdf0c1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,12 +16,14 @@ bytes = { version = "0.5", optional = true }
flate2 = { version = "1.0", features = ["tokio"], optional = true }
tokio = { version = "0.2", features = ["full"], optional = true }
tokio-util = { version = "0.2", features = ["codec"], optional = true }
+tokio-test = { version = "0.2", optional = true }
futures-util = { version = "0.3", features = ["std"], optional = true }
futures = { version = "0.3", optional = true }
[features]
framing = ["tokio", "tokio-util", "flate2", "bytes"]
client = ["tokio", "tokio-util", "futures", "futures-util", "framing"]
+test = ["tokio-test", "futures"]
default = []