onoma 0.0.14

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
1
2
3
4
5
6
7
8
9
10
11
12
//! Low-level tooling for managing in-memory indexes using a persistent database.
//!
//! This _does not_ handle incremental updates, such as when files change. For that
//! capability, refer to [`crate::watcher`].

mod database_backed_indexer;
mod error;
mod types;

pub use database_backed_indexer::DatabaseBackedIndexer;
pub use error::Error;
pub use types::*;