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
#[path = "support/http.rs"]
pub mod http;
#[path = "support/runtime.rs"]
pub mod runtime_support;

pub mod common {
    pub use crate::runtime_support::*;
}

#[path = "external_feature_services/resources.rs"]
pub mod resources;

#[path = "external_feature_services/live_dns01.rs"]
mod external_dns01;
#[path = "external_feature_services/live_nats.rs"]
mod external_nats;