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
//! AXON Runtime primitives (§λ-L-E Fases 3 + 5; §Fase 13.f.2 typed channels).
//!
//! Direct port of `axon/runtime/` sub-modules (lease_kernel, reconcile_loop,
//! ensemble_aggregator, immune kernels). Fase 13.f.2 adds the typed
//! channels runtime (`channels::typed::TypedEventBus`) — the Rust-runtime
//! parity for the Python `axon/runtime/channels/typed.py` module.

pub mod channels;
pub mod ensemble_aggregator;
pub mod immune;
pub mod lease_kernel;
pub mod reconcile_loop;