distributed 1.5.1

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
7
8
9
mod in_memory;
mod repository;
mod snapshottable;
mod store;

pub use in_memory::InMemorySnapshotStore;
pub use repository::hydrate_from_snapshot;
pub use snapshottable::Snapshottable;
pub use store::SnapshotRecord;