-
Is there a recommended way to support proxies with Hyper 1.x? I think proxy support is also important for the AWS SDK for Rust. The method introduced in #1066 is based on Hyper 0.14. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Unfortunately no, but proxy support is something I know hyper would like to make more available (issue). The issue with a lot of this right now is the client abstractions in |
Beta Was this translation helpful? Give feedback.
Unfortunately no, but proxy support is something I know hyper would like to make more available (issue). The issue with a lot of this right now is the client abstractions in
hyper_util
are not stable (0.x) and even if they were we don't want to expose them and risk backwards compatibility concerns going forward with types we don't own. The unfortunate side effect of this is certain use cases require users to bring their own HTTP client. We hope over time to be able to offer paths for the most common use cases though (including proxy support).