http_req_wasi 0.11.1

HTTP client for the WasmEdge network socket API. Derived from the http_req library.
Documentation
1
2
3
4
5
6
7
8
use http_req::request;

fn main() {
    let res = request::head("https://httpbin.org/headers").unwrap();

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