wasi-http-client

Crates.iowasi-http-client
lib.rswasi-http-client
version0.2.1
sourcesrc
created_at2024-05-11 08:21:44.662781
updated_at2024-05-20 09:39:14.977108
descriptionHTTP client library for WASI
homepage
repositoryhttps://github.com/wacker-dev/wasi-http-client
max_upload_size
id1236729
size31,944
Xinzhao Xu (iawia002)

documentation

README

wasi-http-client

HTTP client library for WASI Preview 2, making it easier to send http(s) requests in WASI components.

let resp = Client::new()
    .post("https://httpbin.org/post")
    .connect_timeout(Duration::from_secs(5))
    .send()?;

println!("status code: {}", resp.status());
Commit count: 30

cargo fmt