cqrs-rust-lib 0.7.0

An opinionated implementation of CQRS/Event Sourcing with pluggable storage backends (InMemory, PostgreSQL, MongoDB, SurrealDB)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod sorter;
pub use sorter::*;
mod paged;
pub use paged::*;

mod memory;
pub use memory::*;

#[cfg(feature = "mongodb")]
pub mod mongodb;
#[cfg(feature = "postgres")]
pub mod postgres;
pub mod storage;
#[cfg(feature = "surrealdb")]
pub mod surrealdb;