repotoire 0.3.47

Graph-powered code analysis CLI. 81 detectors for security, architecture, and code quality.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Graph database for code analysis
//!
//! Pure Rust implementation using petgraph + sled.
//! No C++ dependencies - builds everywhere!

pub mod store;

pub use store::{CodeEdge, CodeNode, EdgeKind, GraphStore, NodeKind};

// Legacy Kuzu modules (kept for reference but not used)
// mod client;
// pub mod queries;
// pub mod schema;