quickhttp

Crates.ioquickhttp
lib.rsquickhttp
version0.1.1
sourcesrc
created_at2024-02-13 10:17:14.823983
updated_at2024-02-13 10:29:59.270522
descriptionA simple HTTP client
homepagehttps://github.com/werdl/quickhttp
repositoryhttps://github.com/werdl/quickhttp
max_upload_size
id1138337
size27,001
werdl (werdl)

documentation

https://docs.rs/quickhttp

README

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);
Commit count: 0

cargo fmt