camber 0.4.2

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

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