batpak 0.8.2

Event sourcing with causal graphs and caller-defined gates. Sync API, no async runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Compile-fail: #[derive(EventPayload)] without the required #[batpak(...)] attribute.

use batpak::EventPayload;

#[derive(serde::Serialize, serde::Deserialize, EventPayload)]
struct NoAttr {
    value: u64,
}

fn main() {}