#http-request #http #request #client

http_req

simple and lightweight HTTP client with built-in HTTPS support

44 releases

0.13.0 Oct 14, 2024
0.11.1 Jul 28, 2024
0.10.2 Dec 1, 2023
0.10.1 Oct 29, 2023
0.3.1 Nov 21, 2018

#38 in HTTP client

Download history 2143/week @ 2024-07-31 2196/week @ 2024-08-07 2374/week @ 2024-08-14 1757/week @ 2024-08-21 1561/week @ 2024-08-28 1632/week @ 2024-09-04 2790/week @ 2024-09-11 2346/week @ 2024-09-18 2071/week @ 2024-09-25 1935/week @ 2024-10-02 2328/week @ 2024-10-09 2121/week @ 2024-10-16 1671/week @ 2024-10-23 1848/week @ 2024-10-30 2191/week @ 2024-11-06 1788/week @ 2024-11-13

7,825 downloads per month
Used in 48 crates (25 directly)

MIT license

135KB
3K SLoC

http_req

Rust Crates.io Docs.rs

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

  • HTTP and HTTPS via rust-native-tls (or optionally rus-tls)
  • Small binary size (0.7 MB for basic GET request in default configuration)
  • Minimal amount of dependencies

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

Usage

Default configuration

In order to use http_req with default configuration, add the following lines to Cargo.toml:

[dependencies]
http_req = "^0.13"

Rustls

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

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

License

Licensed under MIT.

Dependencies

~0.6–11MB
~150K SLoC