Skip to main content

llmy_codegraph/
lib.rs

1//! Tree-sitter based code indexing for smart contracts: call graphs and
2//! state graphs over Solidity, Rust (Anchor / CosmWasm) and Move (Aptos /
3//! Sui), plus agent-facing query tools.
4
5pub mod builder;
6pub mod extract;
7pub mod model;
8pub mod move_lang;
9pub mod rust_lang;
10pub mod solidity;
11pub mod store;
12pub mod tools;
13
14pub use builder::{BuildResult, CodeGraphBuilder};
15pub use model::CodeGraph;
16pub use store::CodeGraphStore;
17pub use tools::CodegraphContext;