From 2792433ad6d77b218fa85d027e00947eb912f8f1 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 12 Mar 2020 05:02:03 +0900 Subject: [PATCH] actix-codec: Minimize `futures-*` dependencies --- actix-codec/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-codec/Cargo.toml b/actix-codec/Cargo.toml index d647ab70..cab79a9e 100644 --- a/actix-codec/Cargo.toml +++ b/actix-codec/Cargo.toml @@ -19,8 +19,8 @@ path = "src/lib.rs" [dependencies] bitflags = "1.2.1" bytes = "0.5.2" -futures-core = "0.3.1" -futures-sink = "0.3.1" +futures-core = { version = "0.3.4", default-features = false } +futures-sink = { version = "0.3.4", default-features = false } tokio = { version = "0.2.4", default-features=false } tokio-util = { version = "0.2.0", default-features=false, features=["codec"] } log = "0.4"