rustbrain_core/ast/mod.rs
1//! Tree-sitter Rust symbol extraction and BLAKE3 hashing.
2//!
3//! Gated by the `ast` feature (default). Used during workspace sync to create
4//! `symbol/…` graph nodes and `symbol_anchors` rows.
5
6pub mod parser;
7pub mod symbol;
8
9pub use parser::CodeAstParser;
10pub use symbol::{compute_symbol_hash, AstError, SymbolAnchor};