Skip to main content

mimir_syntax/
lib.rs

1//! Tree-sitter language adapters and symbol/call/import extraction.
2//!
3//! Deliberately dependency-free from mimir-core: mimir-graph (which depends
4//! on mimir-core to persist symbols/edges) and mimir-core (which depends on
5//! this crate to chunk source for recall — see mimir_core::index::chunker)
6//! both consume it, and mimir-core -> mimir-graph would be a cycle.
7
8pub mod extract;
9pub mod languages;