9 releases (5 breaking)
0.6.0 | Jul 24, 2024 |
---|---|
0.5.0 | May 22, 2024 |
0.4.1 | Mar 31, 2024 |
0.3.0 | Feb 16, 2024 |
0.1.0 | Dec 29, 2023 |
#583 in HTTP server
459 downloads per month
Used in 2 crates
700KB
20K
SLoC
http library for xitca
lib.rs
:
Http module for Service trait oriented http handling.
This crate tries to serve both low overhead and ease of use purpose. All http protocols can be used separately with corresponding feature flag or work together for handling different protocols in one place.
Examples
use std::convert::Infallible;
use xitca_http::{
http::{IntoResponse, Request, RequestExt, Response},
HttpServiceBuilder,
RequestBody,
ResponseBody
};
use xitca_service::{fn_service, Service, ServiceExt};
// xitca-http has to run inside a tcp/udp server.
xitca_server::Builder::new()
// create http service with given name, socket address and service logic.
.bind("xitca-http", "localhost:0",
// a simple async function service produce hello world string as http response.
fn_service(|req: Request<RequestExt<RequestBody>>| async {
Ok::<Response<ResponseBody>, Infallible>(req.into_response("Hello,World!"))
})
// http service builder is a middleware take control of above function service
// and bridge tcp/udp transport with the http service.
.enclosed(HttpServiceBuilder::new())
)?
.build()
Dependencies
~0.9–13MB
~186K SLoC