2 unstable releases
0.2.0 | May 31, 2022 |
---|---|
0.1.0 | May 17, 2022 |
#863 in HTTP server
26 downloads per month
49KB
1K
SLoC
Puzz
一个简单且强大的网络框架
例子
use puzz::{service_fn, Server};
#[tokio::main]
async fn main() {
Server::new(|| service_fn(|_| async { Ok("Hello, World!!!") }))
.bind(([127, 0, 0, 1], 80))
.run()
.await
.unwrap();
}
Dependencies
~2–12MB
~159K SLoC