distributed 1.5.5

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
13
14
15
16
mod committable;
mod entity;
mod event;
mod event_record;
mod local_event;
mod upcaster;

pub use committable::Committable;
pub use entity::Entity;
pub use event::Event;
pub use event_record::{
    BitcodePayloadCodec, EventRecord, EventRecordError, PayloadCodec, BITCODE_PAYLOAD_CODEC,
    BITCODE_PAYLOAD_CODEC_VERSION,
};
pub use local_event::LocalEvent;
pub use upcaster::{upcast_events, upcast_payload, EventUpcaster, UpcastError};