From dbfa99414a6badd9b9c02cd2e8897a7db1c12dc9 Mon Sep 17 00:00:00 2001 From: goek-han Date: Thu, 9 Oct 2025 21:06:55 +0200 Subject: [PATCH] feat: Add socks feature to reqwest Add socks proxy support. export https_proxy=socks5h://127.0.0.1:1239 export HTTP_PROXY=socks5h://127.0.0.1:1239 --- openstack_sdk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index fc36f72f2..faabfd1b1 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -66,7 +66,7 @@ lazy_static = { workspace = true } open.workspace = true regex = { workspace = true } reqwest = { workspace = true, features = ["gzip", "deflate", "http2", - "system-proxy"] } + "socks", "system-proxy"] } secrecy = { version = "0.10", features = ["serde"] } serde = { workspace = true } serde_json = {workspace = true}