mini-serve 0.7.0

An HTTP server: trie router, middleware, CORS, optional TLS. Built on hyper + tokio.
Documentation
#![doc = include_str!("../README.md")]

mod app;
mod body;
mod cors;
mod error;
mod extract;
mod handler;
mod response;
mod router;
mod state;

pub use app::{App, RouteBuilder};
pub use body::{json_body, MaxBodySize, DEFAULT_MAX_BODY_SIZE};
pub use cors::{CorsConfig, CorsConfigBuilder, CorsConfigError};
pub use error::ServeError;
pub use extract::path_params;
pub use handler::{body, handler, BodyError, Handler, ResponseBody};
pub use response::json;
pub use router::{PathParams, QueryParams};
pub use state::State;