#http-request #http #request #client

http_req

simple and lightweight HTTP client with built-in HTTPS support

40 releases

0.10.3 Apr 21, 2024
0.10.2 Dec 1, 2023
0.10.1 Oct 29, 2023
0.9.2 Jul 7, 2023
0.3.1 Nov 21, 2018

#65 in HTTP client

Download history 3324/week @ 2024-01-25 2911/week @ 2024-02-01 2066/week @ 2024-02-08 1965/week @ 2024-02-15 2031/week @ 2024-02-22 2554/week @ 2024-02-29 1607/week @ 2024-03-07 1524/week @ 2024-03-14 1982/week @ 2024-03-21 2438/week @ 2024-03-28 2221/week @ 2024-04-04 2103/week @ 2024-04-11 1807/week @ 2024-04-18 1855/week @ 2024-04-25 3262/week @ 2024-05-02 2162/week @ 2024-05-09

9,380 downloads per month
Used in 48 crates (24 directly)

MIT license

115KB
2.5K SLoC

http_req

Rust Crates.io Docs.rs

Simple and lightweight HTTP client with built-in HTTPS support.

Requirements

http_req by default uses rust-native-tls, which relies on TLS framework provided by OS on Windows and macOS, and OpenSSL on all other platforms. But it also supports rus-tls.

Example

Basic HTTP GET request

use http_req::request;

fn main() {
    let mut body = Vec::new(); //Container for body of a response.
    let res = request::get("https://doc.rust-lang.org/", &mut body).unwrap();

    println!("Status: {} {}", res.status_code(), res.reason());
}

Take a look at more examples

How to use with rustls:

In order to use http_req with rustls in your project, add the following lines to Cargo.toml:

[dependencies]
http_req  = {version="^0.10", default-features = false, features = ["rust-tls"]}

License

Licensed under MIT.

Dependencies

~0.2–11MB
~127K SLoC