2 releases

0.1.1 Feb 13, 2024
0.1.0 Feb 13, 2024

#2105 in Network programming

MIT license

26KB
552 lines

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);

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)

No runtime deps