cairo_lang_defs/
lib.rs

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