rust_bus 3.0.6

bus — Lightweight CQRS Library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "_db_sea_orm")]
mod sea;

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

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

#[cfg(not(feature = "_db_any"))]
mod no_db;