batpak 0.1.0

Event sourcing with causal graphs and policy gates. Sync API, zero async.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
msrv = "1.75"
cognitive-complexity-threshold = 25
too-many-arguments-threshold = 7

# Banned methods: enforce API discipline at the clippy level.
# These complement build.rs checks with clippy's full semantic understanding.
[[disallowed-methods]]
path = "std::thread::spawn"
reason = "Use std::thread::Builder::new().name(...).spawn() for fallible thread creation (Bug 7 post-mortem)"

[[disallowed-methods]]
path = "std::process::exit"
reason = "Use proper error propagation. process::exit skips Drop impls and loses data (LAW-001)"

[[disallowed-methods]]
path = "std::mem::forget"
reason = "Leaking resources is a bug, not a feature. Use ManuallyDrop if truly needed (BANNED-002)"