From bafd8179ffa2d9dc39382eb0e8bb89f08a7d1b53 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 16 Sep 2023 03:35:56 +0100 Subject: [PATCH] chore: fix actix web feature specs --- actix-limitation/Cargo.toml | 2 +- actix-settings/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/actix-limitation/Cargo.toml b/actix-limitation/Cargo.toml index 3e1b6d759..fbc0c4660 100644 --- a/actix-limitation/Cargo.toml +++ b/actix-limitation/Cargo.toml @@ -23,7 +23,7 @@ session = ["actix-session"] [dependencies] actix-utils = "3" -actix-web = { version = "4", features = ["cookies"] } +actix-web = { version = "4", default-features = false, features = ["cookies"] } chrono = "0.4" derive_more = "0.99.7" diff --git a/actix-settings/Cargo.toml b/actix-settings/Cargo.toml index 1c39ec981..117b2bb4b 100644 --- a/actix-settings/Cargo.toml +++ b/actix-settings/Cargo.toml @@ -17,10 +17,10 @@ all-features = true [dependencies] actix-http = "3" actix-service = "2" -actix-web = "4" +actix-web = { version = "4", default-features = false } derive_more = "0.99.7" once_cell = "1.13" -regex = "1.5.5" +regex = "1.5" serde = { version = "1", features = ["derive"] } toml = "0.8"