composable-tower-http 0.3.1

Highly customizable http utilities built on top of tower.
Documentation
1
2
3
4
5
6
7
8
pub fn init_tracing() {
    tracing::subscriber::set_global_default(
        tracing_subscriber::fmt::Subscriber::builder()
            .with_max_level(tracing::Level::TRACE)
            .finish(),
    )
    .ok();
}