1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: use specific minor versions of crate microformats, and avoid unused features
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2025-12-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/library/Cargo.toml
+++ b/library/Cargo.toml
@@ -20,7 +20,7 @@
time = { version = "0.3", features = ["serde", "serde-well-known"] }
futures = "0.3"
http = { version = "1" }
-microformats = { version = "0" }
+microformats = { version= ">= 0.15, <= 0.16", default-features = false, features = ["http"] }
reqwest-middleware = { version = "0.4", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
|