From 82fd31164f08ae6e07426846905a2270ce9e86d9 Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Sat, 19 Jun 2021 22:37:57 -0700 Subject: [PATCH] v0.1.0 (#1) Eliminate unnecessary features in the futures crate. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9b0c040..f083b29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "drain" -version = "0.0.1" +version = "0.1.0" authors = ["Linkerd Developers "] license = "Apache-2.0" edition = "2018" @@ -14,7 +14,7 @@ A crate that supports graceful shutdown retain = ["tower"] [dependencies] -futures = "0.3.15" +futures = { version = "0.3.15", default-features = false } tokio = { version = "1", features = ["macros", "sync"] } tower = { version = "0.4.7", default-features = false, optional = true }