attohttp 0.26.2

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

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