01
Plain C, no hidden runtime
Our libraries are C17 and link statically. There is no VM to install, no interpreter to ship next to your binary, and no code generator between you and the source you are reading.
02
Vendored dependencies
A fresh checkout builds on a fresh machine. We vendor what we depend on so that a build does not become an archaeology exercise two years from now.
03
Determinism over averages
Tail latency, allocation behaviour and resource ownership are designed first. An average throughput number hides exactly the failures that page somebody at three in the morning.
04
Benchmarks with their caveats attached
We publish run conditions, commit hashes and the shape of the distribution, not only the headline number. Where a competitor wins, we say so in the same table.
05
Readable by whoever operates it
Code is reviewed for whether an on-call engineer can follow it at speed. Clever wins that cost legibility do not get merged.
06
Public by default
Design discussion, issues and roadmaps happen in the open repositories. There is no private fork where the real work happens.