1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: avoid not-in-Debian crate warp
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2024-09-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,8 +18,6 @@
percent-encoding = "2.1"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
-tracing = { version = "0.1", optional = true }
-warp-framework = { package = "warp", version = "0.3", default-features = false, optional = true }
[dev-dependencies]
chrono = { version = "0.4", features = ["serde"] }
@@ -35,7 +33,6 @@
# deprecated feature -- used to return a warning
actix2 = []
actix = []
-warp = ["futures", "tracing", "warp-framework"]
[package.metadata.docs.rs]
features = ["actix4", "warp"]
|