hjkl-bonsai 0.5.4

Tree-sitter grammar registry + highlighter for the hjkl editor stack
Documentation
//! Runtime grammar loader (Phase 2.x).
//!
//! Reads the `bonsai.toml` manifest and resolves a path or language name to a
//! [`LangSpec`]. Source acquisition, compilation, and dynamic loading land in
//! later phases; this module currently only handles the lookup tables.
//!
//! The default registry is built from the embedded `bonsai.toml` shipped with
//! the crate via [`GrammarRegistry::embedded`].

pub mod async_loader;
mod compile;
mod grammar;
mod loader;
mod manifest;
mod registry;
mod source;
mod xdg;

pub use async_loader::{AsyncGrammarLoader, LoadError, LoadHandle};
pub use compile::GrammarCompiler;
pub use grammar::Grammar;
pub use loader::GrammarLoader;
pub use manifest::{LangSpec, Manifest, ManifestMeta, QuerySource};
pub use registry::GrammarRegistry;
pub use source::{QuerySourceCache, SourceCache};