From e9cc21034a4dc3a1facb68a654d79cc3932d9286 Mon Sep 17 00:00:00 2001 From: kilyabin <65072190+kilyabin@users.noreply.github.com> Date: Thu, 18 Jun 2026 00:52:12 +0400 Subject: [PATCH] fix: switch reqwest to rustls-tls for cross-compilation compatibility --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7e3e4c0..1df08ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ image = { version = "0.25", features = ["gif", "png", "jpeg", "bmp"] } serde = { version = "1", features = ["derive"] } toml = "0.8" tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "macros"] } -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } fontdue = "0.8" chrono = "0.4" dirs = "5"