Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 766 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 766 Bytes

quickhttp

A simple HTTP client for Rust, with no dependencies.

GitHub Actions crates.io thetime on docs.rs

Example

let res = Builder::new()
    .uri("http://httpbin.org/ip".to_string())
    .method("GET".to_string())
    .build()
    .unwrap()
    .send()
    .unwrap();


println!("{:?}", res.body);