via 1.0.1

An async multi-threaded web framework for people who appreciate simplicity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod decode;

mod param;
mod path_params;
mod query_param;
mod query_parser;

pub use param::Param;
pub use query_param::{QueryParam, QueryParamIter};

pub(crate) use path_params::PathParams;

use decode::{DecodeParam, NoopDecode, PercentDecode};