axon-lang 2.11.0

AXON — the formal cognitive language: a deterministic, proof-carrying AI runtime. Native Rust lexer/parser/type-checker/IR generator (re-exported from axon-frontend) plus the runtime: typed channels (π-calculus mobility, capability extrusion), algebraic effects via Free Monad CPS handlers, lease kernel + reconcile loop, the Epistemic Security Kernel, Trust Types, Proof-Carrying Code (independently verifiable proof objects), and the closed-catalog extension mechanism. Crate publishes as `axon-lang`; library import is `use axon::*` so existing call sites keep working unchanged.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Network ingest paths that deposit bytes directly into
//! [`crate::buffer::ZeroCopyBuffer`]s.
//!
//! §λ-L-E Fase 11.b. Two primary sources today:
//!
//! - [`multipart`] — `multipart/form-data` from HTTP uploads, parsed
//!   field-by-field into per-field `BufferMut`s that freeze at end
//!   of part.
//! - [`ws_binary`] — WebSocket binary frame accumulator. Fragmented
//!   frames are stitched into a single contiguous buffer.

pub mod multipart;
pub mod ws_binary;