2 releases
0.1.1 | Feb 13, 2024 |
---|---|
0.1.0 | Feb 13, 2024 |
#60 in #async-http-client
26KB
552 lines
quickhttp
A simple HTTP client for Rust, with no dependencies.
Example
let res = Builder::new()
.uri("http://httpbin.org/ip".to_string())
.method("GET".to_string())
.build()
.unwrap()
.send()
.unwrap();
println!("{:?}", res.body);
lib.rs
:
http-client
A small library for making HTTP requests Designed to be a small, simple, and easy to use library for making HTTP requests. Supports all key features of HTTP Can be used synchronously or asynchronously (for example with
tokio
)