From da83325bc4875d1800f764e939b67ce42ef1ecf5 Mon Sep 17 00:00:00 2001 From: CJ Taylor Date: Mon, 19 Jan 2026 13:13:41 -0500 Subject: [PATCH] Upgrade reqwest from 0.11 to 0.13 Breaking change: rustls-tls feature renamed to rustls in reqwest 0.13. All tests pass and clippy is clean. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6c84344..01ad3e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] tokio = { version = "1.35", features = ["macros", "rt-multi-thread", "process", "io-util"] } -reqwest = { version = "0.11.24", features = ["json", "rustls-tls"] } +reqwest = { version = "0.13.1", features = ["json", "rustls"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sqlite = "0.27"