onoma 0.0.7

A fast, language-agnostic semantic symbol indexer and typo-resistant fuzzy finder, enabling real-time search across virtually unlimited code symbols without the need for language servers.
Documentation
//! A language-agnostic set of models which represent an index, complete with symbols, kinds, ranges, and occurrences which have
//! been parsed from source files.

mod index;

mod language;
mod symbol;
mod symbol_kind;
mod symbol_occurrence;
mod symbol_range;
mod symbol_role;

pub use index::*;
pub use language::*;
pub use symbol::*;
pub use symbol_kind::*;
pub use symbol_occurrence::*;
pub use symbol_range::*;
pub use symbol_role::*;