proxify 0.3.0

Proxy parser for rust
Documentation

Proxify

A pretty shitty proxy parser for Rust

How to use?

Put proxify in your dependency section:

proxify = "0.3"

Use it:

let proxy = proxify::get_proxy().await;
println!("{:?}", proxy);

Also, you can check proxies, duration is time for waiting before we close the connection:

use std::time::Duration;
let working = check_proxies(&proxy, Duration::from_secs(2)).await;
println!("{:?}", working);