From d0850103839a4aed4023a66b9e215a5649f079de Mon Sep 17 00:00:00 2001 From: David Palm Date: Fri, 26 Mar 2021 11:20:57 +0100 Subject: [PATCH] actix-web enables `compression` and `cookies` by default. I don't think we need either. --- backend/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 70f5030..681e40c 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" [dependencies] actix = "0.11.1" -actix-web = "4.0.0-beta.4" +actix-web = { version = "4.0.0-beta.4", default-features = false } actix-web-actors = "4.0.0-beta.3" actix-http = "3.0.0-beta.4" bytes = "1.0.1"