0.2.0 |
|
---|---|
0.1.0 |
|
#169 in #request-response
25KB
516 lines
Voidy
A library to handle HTTP/2 requests asynchronously.
Status:
- In development
use voidy::{
Server,
Result,
http::{Request, Response, StatusCode},
};
#[async_std::main]
async fn main() -> Result {
let server = Server::bind("localhost:8000").await?;
server
.handle(|mut req: Request| async move {
if req.path() == "/ok" {
let response = Response::from(StatusCode::Ok);
req.respond(response).await?;
} else {
let response = Response::from(StatusCode::NotFound);
req.respond(response).await?;
}
})
.await?;
Ok(())
}
lib.rs
:
Voidy
A library to handle HTTP/2 requests asynchronously.
Dependencies
~4–13MB
~165K SLoC