From 3a4e58ccf26b6a0bbb0a0dc3a1b56d26ad659fd4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 10 Jan 2026 02:52:28 +0000 Subject: [PATCH 1/2] fix(deps): update all Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eb0dd31..df60c50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ rustls-platform-verifier = { version = "0.6.2", optional = true } rustls = { version = "0.23.36", default-features = false } markdown = "1.0.0" # Downloader dependencies -reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream", "json"] } +reqwest = { version = "0.13", default-features = false, features = ["rustls-tls", "stream", "json"] } uuid = { version = "1.11", features = ["v4", "serde"] } parking_lot = "0.12" futures = "0.3" From 6f2c44b15fa33a5e2690be3a0715d6b8a1a76b08 Mon Sep 17 00:00:00 2001 From: xz-dev Date: Sat, 10 Jan 2026 11:09:16 +0800 Subject: [PATCH 2/2] fix(deps): rename rustls-tls feature to rustls for reqwest 0.13 reqwest 0.13 renamed the `rustls-tls` feature to `rustls`. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index df60c50..87f62b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,8 +30,8 @@ rustls-platform-verifier = { version = "0.6.2", optional = true } rustls = { version = "0.23.36", default-features = false } markdown = "1.0.0" # Downloader dependencies -reqwest = { version = "0.13", default-features = false, features = ["rustls-tls", "stream", "json"] } -uuid = { version = "1.11", features = ["v4", "serde"] } +reqwest = { version = "0.13", default-features = false, features = ["rustls", "stream", "json"] } +uuid = { version = "1.19", features = ["v4", "serde"] } parking_lot = "0.12" futures = "0.3" tokio-util = { version = "0.7", features = ["io"] }