distributed 3.2.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
7
8
9
10
11
12
mod entity;
mod event_record;
mod upcaster;

pub use entity::Entity;
pub use event_record::{
    BitcodePayloadCodec, EventRecord, EventRecordError, PayloadCodec, BITCODE_PAYLOAD_CODEC,
    BITCODE_PAYLOAD_CODEC_VERSION,
};
pub use upcaster::{
    upcast_events, upcast_events_for_replay, upcast_payload, EventUpcaster, UpcastError,
};