cairo-lang-defs 2.18.0

Handling of definitions of language items in Cairo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Representation and queries for definitions of module-level Cairo language elements.
//! For example, identifier resolution at the module level is handled here.

pub mod cache;
pub mod db;
pub mod diagnostic_utils;
pub mod ids;
pub mod patcher;
pub mod plugin;
pub mod plugin_utils;
#[cfg(test)]
mod test;