agm_core/lib.rs
1//! agm-core: parsing, validation, loading, rendering, and graph operations for AGM files.
2
3pub mod diff;
4pub mod error;
5pub mod graph;
6pub mod import;
7pub mod loader;
8pub mod memory;
9pub mod model;
10pub mod parser;
11pub mod renderer;
12pub mod schema;
13pub mod validator;
14
15#[cfg(feature = "compiler")]
16pub mod compiler;