lspkit_treesitter/lib.rs
1//! `lspkit-treesitter` — pluggable tree-sitter parser registry with a
2//! content-hash-keyed parse cache. **No grammars are bundled** — consumers
3//! depend on whichever grammar crates they need and implement
4//! [`parser::LanguageParser`] for each.
5
6pub mod cache;
7pub mod parser;
8
9pub use crate::cache::{ContentHash, ParseCache};
10pub use crate::parser::{LanguageParser, ParserError};