distributed 2.3.0

CQRS/ES framework for Rust using Plain Old Rust Structs — append-only events, replay, snapshots, outbox, service bus, and pluggable infrastructure
Documentation
1
2
3
4
5
6
mod aggregate;
mod repository;

pub use aggregate::{hydrate, Aggregate};
pub(crate) use repository::SnapshotPolicy;
pub use repository::{AggregateBuilder, AggregateRepository};