From d8ce31ce2d4136cc4657ccda6333b72491a8b77e Mon Sep 17 00:00:00 2001 From: Thales Fragoso Date: Wed, 3 Feb 2021 21:02:40 -0300 Subject: [PATCH] Disable actix's default features on -actors --- actix-web-actors/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-web-actors/Cargo.toml b/actix-web-actors/Cargo.toml index 0f90edb07..d61a54693 100644 --- a/actix-web-actors/Cargo.toml +++ b/actix-web-actors/Cargo.toml @@ -16,7 +16,7 @@ name = "actix_web_actors" path = "src/lib.rs" [dependencies] -actix = "0.11.0-beta.1" +actix = { version = "0.11.0-beta.1", default-features = false } actix-codec = "0.4.0-beta.1" actix-http = "3.0.0-beta.1" actix-web = { version = "4.0.0-beta.1", default-features = false }