8 个版本
0.3.2 | 2023 年 3 月 12 日 |
---|---|
0.3.1 | 2023 年 3 月 12 日 |
0.2.0 | 2023 年 3 月 2 日 |
0.1.3 | 2022 年 12 月 1 日 |
0.1.1 | 2022 年 3 月 16 日 |
在 HTTP 客户端 中排名 #229
295 次每月下载
在 2 个 Crates 中使用 (通过 mdcat)
34KB
537 行
system_proxy.rs
解析系统 HTTP(S) 代理对 URL。
let proxy = system_proxy::default();
let client = reqwest::blocking::Client::builder()
.user_agent(concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")))
.proxy(reqwest::Proxy::custom(move |u| proxy.for_url(u)))
.build()
.unwrap();
let response = client.get("https://httpbin.org/status/200").send().unwrap();
println!("Status code: {}", response.status());
有关更多信息,请参阅模块级别文档。
许可证
版权所有 2022 Sebastian Wiesner [email protected]
此源代码受 Mozilla 公共许可证第 2.0 版的条款约束。请参阅 LICENSE
或 https://mozilla.org/MPL/2.0/ 获取许可证副本。
依赖关系
~1–14MB
~210K SLoC