composable_tower_http/
lib.rs

1#![deny(unsafe_code, missing_debug_implementations)]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3
4//! Highly costumizable http utilities built on top of [tower](https://docs.rs/tower/latest/tower/).
5
6pub mod authorize;
7pub mod error;
8pub mod extension;
9pub mod extract;
10pub mod modify;
11
12#[cfg(test)]
13mod test;