{"id":58988,"library":"hyper-proxy","title":"Hyper Proxy","description":"A proxy connector for Hyper-based HTTP applications.","status":"active","version":"0.9.1","language":"rust","source_language":null,"source_url":"https://github.com/tafia/hyper-proxy","tags":["proxy","http","hyper","networking","client"],"install":[{"cmd":"# Cargo.toml\n[dependencies]\nhyper-proxy = \"0.9.1\"","lang":"toml","label":"Cargo.toml"},{"cmd":"cargo add hyper-proxy","lang":"bash","label":"cargo add"}],"dependencies":[],"imports":[{"symbol":"ProxyConnector","correct":"use hyper_proxy::ProxyConnector;"}],"quickstart":{"code":"use hyper_proxy::{ProxyConnector, Intercept, Proxy};\nuse hyper::Client;\n\n#[tokio::main]\nasync fn main() -> Result<(), Box<dyn std::error::Error>> {\n    let proxy = Proxy::new(Intercept::All, \"http://proxy.example.com:8080\".parse()?);\n    let connector = ProxyConnector::from_proxy(proxy);\n    let client = Client::builder().build(connector);\n    let resp = client.get(\"http://example.com\".parse()?).await?;\n    println!(\"Status: {}\", resp.status());\n    Ok(())\n}","lang":"rust","description":"Creates an HTTP client that routes requests through a proxy."},"warnings":[{"fix":"Add `tokio` with the `rt-multi-thread` feature and `hyper` with `client` and `http1` features.","message":"Requires an async runtime (e.g., Tokio) and the `hyper` crate.","severity":"gotcha","affected_versions":">=0.0.0"}],"env_vars":null,"search_vec":"'applic':11 'base':9 'client':16 'connector':5 'http':10,13 'hyper':1,8,14 'hyper-bas':7 'network':15 'proxi':2,4,12","created_at":"2026-06-16T16:46:08.889871+00:00","updated_at":"2026-06-16T16:46:08.889871+00:00","problems":[],"ecosystem":"crates","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":null,"cli_version":null,"type":"library","homepage":"https://github.com/tafia/hyper-proxy","github":"https://github.com/tafia/hyper-proxy","docs":"https://docs.rs/hyper-proxy/","changelog":null,"pypi":null,"npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["http-client","networking"],"base_url":null,"auth_type":null,"provenance":{"verified_status":null,"verified_at":null,"last_verified":"2026-06-16","next_check":"2026-12-13","install_tag":null}}