dmc-core 0.2.0

Engine, CLI, watch mode, and collection builds for the dmc MDX compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Orchestrator: lex -> parse -> transform -> codegen pipeline plus a
//! multi-file engine that processes whole collections per a velite-style
//! config. See [`Compiler::compile`] for single-source use; [`Engine::run`]
//! for batch builds.

pub mod cli;
pub mod engine;
pub mod loaders;

pub use dmc_parser::{ast, parse};
pub use engine::Engine;