minerva 0.2.0

Causal ordering for distributed systems
1
2
3
4
5
6
7
8
9
10
11
//! The register recipes over the in-tree payload store, plus the composed
//! keyed-register map and the store's own refusals.
//!
//! `Dotted<DotFun<&str>>` is the multi-value register: concurrent writes are
//! sibling dots, both readable via [`crate::metis::DotFun::values`]; a superseding write
//! collapses them. `Dotted<DotMap<u8, DotFun<&str>>>` is the keyed register
//! map, an editor's metadata shape (per-key registers).

mod map;
mod refusals;
mod register;