From 2ad00b4b69da17273f83aefef1283cb11a4193b3 Mon Sep 17 00:00:00 2001 From: Alex Mikhalev Date: Wed, 30 Sep 2020 14:06:30 -0600 Subject: [PATCH] Fix missing futures-util feature The issue is actually in actix 0.10.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c03d56f..cb635aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ serde = { version = "1.0.116", features = ["derive"] } serde_json = "1.0.57" actix = { version = "0.10.0", default-features = false } actix-rt = "1.1.1" -futures-util = { version = "0.3.5", default-features = false, features = ["std", "async-await"] } +futures-util = { version = "0.3.5", default-features = false, features = ["std", "async-await", "sink"] } num-traits = "0.2.12" num-derive = "0.3.2"