From f51a54b7cfe67c0813c22d8ba7cd7764d325492c Mon Sep 17 00:00:00 2001 From: sebdotv Date: Tue, 12 Aug 2025 15:09:30 +0200 Subject: [PATCH] add proxy-from-env feature flag Forwards to ureq/proxy-from-env (only works on native) --- ehttp/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ehttp/Cargo.toml b/ehttp/Cargo.toml index 38caf46..df48f59 100644 --- a/ehttp/Cargo.toml +++ b/ehttp/Cargo.toml @@ -34,6 +34,9 @@ native-async = ["async-channel"] ## Support streaming fetch streaming = ["dep:wasm-streams", "dep:futures-util"] +## Support proxy configuration from environment variables on native +proxy-from-env = ["ureq/proxy-from-env"] + [dependencies] document-features = "0.2"