trueno-graph 0.1.0

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

pub mod csr;
pub mod parquet;

pub use csr::{CsrGraph, NodeId};