cairo_lang_sierra_to_casm/lib.rs
1//! CASM backend. Compiles from Sierra down to CASM. See [cairo_lang_sierra] and [cairo_lang_casm]
2
3pub mod annotations;
4pub mod circuit;
5pub mod compiler;
6pub mod environment;
7pub mod invocations;
8pub mod metadata;
9pub mod references;
10pub mod relocations;
11#[cfg(any(feature = "testing", test))]
12pub mod test_utils;