graphcal_compiler/lib.rs
1//! Graphcal Compiler: syntax, registry, IR, and TIR.
2#![expect(
3 clippy::result_large_err,
4 reason = "GraphcalError is inherently large and only constructed on the error path"
5)]
6
7pub mod dag_id;
8pub mod desugar;
9pub mod hir;
10pub mod ir;
11pub mod registry;
12pub mod stack;
13pub mod syntax;
14pub mod tir;