a2httpc 0.30.0

Small and lightweight HTTP client
Documentation
1
2
3
4
5
6
7
fn main() -> Result<(), a2httpc::Error> {
    env_logger::init();

    let resp = a2httpc::get("https://rust-lang.org/").send()?;
    println!("{}", resp.text()?);
    Ok(())
}