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
//! AXON Runtime — Typed Channels (Fase 13.f.2).
//!
//! Native Rust port of the Python reference module
//! `axon/runtime/channels/typed.py` (Fase 13.d). Closes the runtime gap
//! left open by Fase 13's release v1.4.2: the frontend was at parity but
//! `axon-rs` had no executor for the new `channel`/`emit`/`publish`/
//! `discover` surface. End-to-end programs running on the Rust runtime
//! now get the same typed-channel guarantees the Python runtime offers.
//!
//! Surface re-exports: see `typed`.

pub mod typed;
pub mod executor;

pub use typed::{
    Capability, ShieldComplianceFn, TypedChannelError, TypedChannelHandle,
    TypedChannelRegistry, TypedEvent, TypedEventBus, TypedPayload,
};
pub use executor::{
    DispatchError, RunContext, RunValue,
    dispatch_emit, dispatch_publish, dispatch_discover, dispatch_listen,
};