waki

Crates.iowaki
lib.rswaki
version0.5.0
sourcesrc
created_at2024-06-05 08:32:23.853581
updated_at2024-11-20 03:07:03.157878
descriptionHTTP client and server library for WASI
homepage
repositoryhttps://github.com/wacker-dev/waki
max_upload_size
id1262555
size191,294
Xinzhao Xu (iawia002)

documentation

README

waki

HTTP client and server library for WASI.

Send a request:

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

println!("status code: {}", resp.status_code());

Writing an HTTP component:

use waki::{handler, ErrorCode, Request, Response};

#[handler]
fn hello(req: Request) -> Result<Response, ErrorCode> {
    Response::builder().body(b"Hello, WASI!").build()
}
Commit count: 67

cargo fmt