rust_bus 3.0.6

bus — Lightweight CQRS Library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod dispatch_in_memory;
pub mod registration;

#[cfg(feature = "_db_any")]
pub mod dispatch_db;

#[cfg(feature = "sea-orm-postgres")]
pub mod dispatch_db_sea_postgres;

#[cfg(feature = "sea-orm-mysql")]
pub mod dispatch_db_sea_mysql;

#[cfg(feature = "sqlx-mysql")]
pub mod dispatch_db_sqlx_mysql;

#[cfg(feature = "sqlx-postgres")]
pub mod dispatch_db_sqlx_postgres;