areev-cal 1.5.1

CAL (Context Assembly Language) lexer, parser, and executor for Areev.
Documentation
//! areev-cal — CAL (Context Assembly Language) for Areev.
//!
//! CAL implementation: lexer, parser, AST, executor,
//! ASSEMBLE engine, templates, saved queries, executed against the
//! embedded Turso store through `AreevFacade`. The Postgres facade and
//! recursive-SQL graph module are intentionally not ported.

pub mod assemble;
pub mod ast;
pub mod classify;
pub mod errors;
pub mod governance;
pub mod executor;
pub mod facade;
pub mod humanize;
pub mod json;
pub mod json_build;
pub mod lexer;
pub mod areev_facade;
pub mod parser;
pub mod queries;
pub mod relations;
pub mod render;
pub mod store_types;
pub mod templates;

pub use executor::{CalExecutor, CalExecutorConfig};
pub use facade::CalStoreFacade;
pub use areev_facade::AreevFacade;
pub use parser::parse;