camber 0.2.1

Opinionated async Rust for IO-bound services on top of Tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[path = "support/http.rs"]
pub mod http;
#[path = "support/runtime.rs"]
pub mod runtime_support;

#[path = "component_middleware/cross_origin.rs"]
mod cross_origin;
#[path = "component_middleware/middleware_execution.rs"]
mod middleware_execution;
#[path = "component_middleware/rate_limiting.rs"]
mod rate_limiting;
#[path = "component_middleware/request_validation.rs"]
mod request_validation;
#[path = "component_middleware/response_compression.rs"]
mod response_compression;