mimir-syntax 0.14.0

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

pub mod extract;
pub mod languages;