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"