1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: avoid not-in-Debian crate actix-web v3
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2025-02-27
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,7 +14,6 @@
[dependencies]
actix-web4 = { version = "4.0", optional = true, package = "actix-web", default-features = false }
-actix-web3 = { version = "3.3", optional = true, package = "actix-web", default-features = false }
futures = { version = "0.3", optional = true }
percent-encoding = "2.1"
serde = { version = "1.0", features = ["derive"] }
@@ -34,7 +33,6 @@
[features]
default = []
actix4 = ["actix-web4", "futures"]
-actix3 = ["actix-web3", "futures"]
# deprecated feature -- used to return a warning
actix2 = []
actix = []
|