usehpx::Proxy;#[tokio::main]
async fnmain()->hpx::Result<()>{// Use the API you're already familiar with
let resp =hpx::get("https://api.ip.sb/ip").proxy(Proxy::all("socks5h://localhost:6153")?).send().await?;println!("{}", resp.text().await?);Ok(())}