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

#318 in HTTP client

Download history 302/week @ 2024-09-21 144/week @ 2024-09-28 150/week @ 2024-10-05 78/week @ 2024-10-12 118/week @ 2024-10-19 120/week @ 2024-10-26 174/week @ 2024-11-02 78/week @ 2024-11-09 189/week @ 2024-11-16 121/week @ 2024-11-23 176/week @ 2024-11-30 235/week @ 2024-12-07 318/week @ 2024-12-14 175/week @ 2024-12-21 84/week @ 2024-12-28 338/week @ 2025-01-04

961 downloads per month

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

~2–16MB
~230K SLoC