trueno-graph 0.1.18

GPU-first embedded graph database for code analysis (call graphs, dependencies, AST traversals)
1
2
3
4
5
6
7
8
9
10
//! Graph storage layer
//!
//! Provides CSR (Compressed Sparse Row) graph representation and Parquet persistence.

pub mod csr;

#[cfg(feature = "storage")]
pub mod parquet;

pub use csr::{CsrGraph, NodeId};