hedwig 7.2.0

A simple message bus for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
/// The Google Pub/Sub backend
#[cfg(feature = "google")]
pub mod googlepubsub;

#[cfg(any(test, feature = "mock"))]
pub mod mock;

/// The Redis backend
#[cfg(feature = "redis")]
pub mod redis;