rustbrain-core 0.3.10

Core engine for rustbrain: SQLite knowledge graph, ranked FTS, CSR mmap cache, and graph-aware AI context
Documentation
1
2
3
4
5
6
7
8
9
10
//! Tree-sitter Rust symbol extraction and BLAKE3 hashing.
//!
//! Gated by the `ast` feature (default). Used during workspace sync to create
//! `symbol/…` graph nodes and `symbol_anchors` rows.

pub mod parser;
pub mod symbol;

pub use parser::CodeAstParser;
pub use symbol::{compute_symbol_hash, AstError, SymbolAnchor};