Package: safe-vdash Now that trixie is out we are trying to get rid of the old version of the rust http stack. safe-vdash is the last remaining user of reqwest 0.11.
The package builds successfully after bumping the Cargo and Debian dependencies to reqwest 0.12
diff -Nru safe-vdash-0.19.3/debian/changelog safe-vdash-0.19.3/debian/changelog --- safe-vdash-0.19.3/debian/changelog 2025-02-09 00:57:40.000000000 +0000 +++ safe-vdash-0.19.3/debian/changelog 2025-08-11 04:35:57.000000000 +0000 @@ -1,3 +1,10 @@ +safe-vdash (0.19.3-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Switch to reqwest 0.12 + + -- Peter Michael Green <[email protected]> Mon, 11 Aug 2025 04:35:57 +0000 + safe-vdash (0.19.3-2) unstable; urgency=medium * add metadata about upstream project diff -Nru safe-vdash-0.19.3/debian/control safe-vdash-0.19.3/debian/control --- safe-vdash-0.19.3/debian/control 2025-01-01 12:55:23.000000000 +0000 +++ safe-vdash-0.19.3/debian/control 2025-08-11 04:35:57.000000000 +0000 @@ -22,7 +22,7 @@ librust-ratatui-0.28+default-dev, librust-ratatui-0.28+serde-dev, librust-regex-1+default-dev, - librust-reqwest-0.11+default-dev, + librust-reqwest-0.12+default-dev, librust-serde-1+default-dev, librust-serde-1+derive-dev, librust-serde-json-1+default-dev, diff -Nru safe-vdash-0.19.3/debian/patches/1002_reqwest.patch safe-vdash-0.19.3/debian/patches/1002_reqwest.patch --- safe-vdash-0.19.3/debian/patches/1002_reqwest.patch 1970-01-01 00:00:00.000000000 +0000 +++ safe-vdash-0.19.3/debian/patches/1002_reqwest.patch 2025-08-11 04:35:57.000000000 +0000 @@ -0,0 +1,19 @@ +Description: use reqwest 0.12 instead of 0.11 +Author: Peter Michael Green <[email protected]> +Forwarded: not-needed +Last-Update: 2025-09-11 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: safe-vdash-0.19.3/Cargo.toml +=================================================================== +--- safe-vdash-0.19.3.orig/Cargo.toml ++++ safe-vdash-0.19.3/Cargo.toml +@@ -38,7 +38,7 @@ glob = "0.3.1" + serde = {version = "1.0.192", features = ["derive"] } + serde_json = "1.0.108" + serde_with = { version = "3.4.0", features = ["chrono_0_4"] } +-reqwest = { version = "0.11.23", default_features = false, features = ["rustls-tls"] } ++reqwest = { version = "0.12", default_features = false, features = ["rustls-tls"] } + + [[bin]] + name = "safe-vdash" diff -Nru safe-vdash-0.19.3/debian/patches/series safe-vdash-0.19.3/debian/patches/series --- safe-vdash-0.19.3/debian/patches/series 2025-01-01 12:50:22.000000000 +0000 +++ safe-vdash-0.19.3/debian/patches/series 2025-08-11 04:35:57.000000000 +0000 @@ -1,2 +1,3 @@ 1001_ratatui.patch 2002_rename.patch +1002_reqwest.patch

