8 releases

0.3.2 Mar 12, 2023
0.3.1 Mar 12, 2023
0.2.0 Mar 2, 2023
0.1.3 Dec 1, 2022
0.1.1 Mar 16, 2022

#229 in HTTP client

Download history 249/week @ 2024-03-11 141/week @ 2024-03-18 110/week @ 2024-03-25 133/week @ 2024-04-01 285/week @ 2024-04-08 121/week @ 2024-04-15 66/week @ 2024-04-22 59/week @ 2024-04-29 66/week @ 2024-05-06 68/week @ 2024-05-13 90/week @ 2024-05-20 94/week @ 2024-05-27 120/week @ 2024-06-03 52/week @ 2024-06-10 66/week @ 2024-06-17 50/week @ 2024-06-24

295 downloads per month
Used in 2 crates (via mdcat)

MPL-2.0 license

34KB
537 lines

system_proxy.rs

Current release Documentation

Resolve system HTTP(S) proxies for URLs.

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());

See the module level documentation for more information.

License

Copyright 2022 Sebastian Wiesner sebastian@swsnr.de

This Source Code is subject to the terms of the Mozilla Public License, v. 2.0. See LICENSE or https://mozilla.org/MPL/2.0/ for a copy of the license.

Dependencies

~1–14MB
~210K SLoC