4个版本 (2个重大更改)
0.3.1 | 2024年7月19日 |
---|---|
0.3.0 | 2024年6月14日 |
0.2.0 | 2024年6月7日 |
0.1.0 | 2024年6月5日 |
#149 在 #handler
每月551次下载
在 waki 中使用
4KB
waki
WASI的HTTP客户端和服务器库。
发送请求
let resp = Client::new()
.post("https://httpbin.org/post")
.connect_timeout(Duration::from_secs(5))
.send()?;
println!("status code: {}", resp.status_code());
编写HTTP组件
use waki::{handler, ErrorCode, Request, Response};
#[handler]
fn hello(req: Request) -> Result<Response, ErrorCode> {
Response::builder().body(b"Hello, WASI!").build()
}
依赖项
~260–710KB
~17K SLoC