http_req 0.14.4

simple and lightweight HTTP client with built-in HTTPS support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use http_req::request;

fn main() {
    // Container for body of a response.
    let mut body = Vec::new();

    // Sends a HTTP GET request and processes the response. Saves body of the response to `body` variable.
    let res = request::get("https://www.rust-lang.org/learn", &mut body).unwrap();

    //Prints details about the response.
    println!("Status: {} {}", res.status_code(), res.reason());
    println!("Headers: {}", res.headers());
    //println!("{}", String::from_utf8_lossy(&body));
}