camber 0.1.4

Opinionated async Rust for IO-bound services on top of Tokio
Documentation
1
2
3
4
5
6
7
8
9
mod error;
#[cfg(feature = "nats")]
pub mod nats;
#[cfg(feature = "sqs")]
pub mod sqs;

#[cfg(any(feature = "nats", feature = "sqs"))]
pub(crate) use crate::runtime::block_on;
pub(crate) use error::mq_error;