9 releases (4 breaking)

new 0.5.0 Nov 20, 2024
0.4.2 Oct 31, 2024
0.3.2 Oct 12, 2024
0.3.1 Jul 19, 2024
0.1.0 Jun 5, 2024

#424 in WebAssembly

Download history 188/week @ 2024-07-29 80/week @ 2024-08-05 59/week @ 2024-08-12 59/week @ 2024-08-19 92/week @ 2024-08-26 182/week @ 2024-09-02 149/week @ 2024-09-09 123/week @ 2024-09-16 206/week @ 2024-09-23 110/week @ 2024-09-30 261/week @ 2024-10-07 102/week @ 2024-10-14 264/week @ 2024-10-21 418/week @ 2024-10-28 143/week @ 2024-11-04 146/week @ 2024-11-11

973 downloads per month

Apache-2.0

43KB
945 lines

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()
}

lib.rs:

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()
}

Dependencies

~1.1–2.1MB
~43K SLoC