From 94fa9449bb0568536fbf81375838223b7f045399 Mon Sep 17 00:00:00 2001 From: SuperKenVery <39673849+SuperKenVery@users.noreply.github.com> Date: Sat, 27 Sep 2025 05:25:23 +0800 Subject: [PATCH] Enable socks5 proxy support (#474) Tested on user's machine with the socks5 proxy specified in `all_proxy` env var. Co-authored-by: Hoyt Koepke --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index ba08a5b1..2dcaaa42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,6 +81,7 @@ reqwest = { version = "0.12", features = [ "json", "stream", "system-proxy", + "socks" ], default-features = false } reqwest-middleware = "0.4" reqwest-retry = "0.7"