cairo_lang_defs/
lib.rs

1//! Representation and queries for definitions of module-level Cairo language elements.
2//! For example, resolving identifiers in the module level is done here.
3
4pub mod db;
5pub mod diagnostic_utils;
6pub mod ids;
7pub mod patcher;
8pub mod plugin;
9pub mod plugin_utils;
10#[cfg(test)]
11mod test;