Crates.io | http_req |
lib.rs | http_req |
version | 0.13.0 |
source | src |
created_at | 2018-09-02 11:20:20.649976 |
updated_at | 2024-10-14 18:31:10.461137 |
description | simple and lightweight HTTP client with built-in HTTPS support |
homepage | |
repository | https://github.com/jayjamesjay/http_req |
max_upload_size | |
id | 82611 |
size | 672,782 |
Simple and lightweight HTTP client with built-in HTTPS support.
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.
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
In order to use http_req
with default configuration, add the following lines to Cargo.toml
:
[dependencies]
http_req = "^0.13"
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"] }
Licensed under MIT.