camber 0.2.0

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
16
17
pub mod common;

#[path = "component_runtime_resources/circuit_breaker.rs"]
mod circuit_breaker;
#[path = "component_runtime_resources/health_resources.rs"]
mod health_resources;
#[path = "component_runtime_resources/resource_lifecycle.rs"]
mod resource_lifecycle;
#[path = "component_runtime_resources/runtime_builder.rs"]
mod runtime_builder;
#[cfg(unix)]
#[path = "component_runtime_resources/runtime_signals.rs"]
mod runtime_signals;
#[path = "component_runtime_resources/shutdown_behavior.rs"]
mod shutdown_behavior;
#[path = "component_runtime_resources/worker_pool.rs"]
mod worker_pool;