cqrs-rust-lib 0.4.0

An opinionated implementation of CQRS/Event Sourcing with pluggable storage backends (InMemory, PostgreSQL, MongoDB)
Documentation
mod aggregate;
pub use aggregate::*;
mod engine;
pub use engine::*;

mod denormalizer;
pub use denormalizer::*;

mod errors;
#[allow(deprecated)]
pub use errors::*;

mod event;
pub use event::*;

mod event_store;
pub use event_store::*;

pub mod es;
pub mod read;

#[cfg(feature = "utoipa")]
pub mod rest;

mod context;
pub use context::*;
mod snapshot;

pub use snapshot::*;
pub mod dispatchers;

#[cfg(test)]
pub mod testing;