cross-stream 0.13.0

An event stream store for personal, local-first use, specializing in event sourcing.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Shared two-slot compaction state machine for actor / service / action
//! lifecycles. See ADR 0005 for the topic vocabulary and the algorithm
//! this implements.

mod slots;

#[cfg(test)]
mod tests;

pub use slots::{Event, Slots, ThresholdPick};