maproom 0.1.0

Semantic code search powered by embeddings and SQLite
Documentation
//! Maproom library - Code indexing and semantic search.
//!
//! This library provides code indexing, database access, and embedding services
//! for the Maproom semantic code search system.

pub mod ab_testing;
pub mod cache;
pub mod cli;
pub mod config;
pub mod content_hash;
pub mod context;
pub mod daemon;
pub mod db;
pub mod embedding;
pub mod encoding_progress;
pub mod evaluation;
pub mod git;
pub mod incremental;
pub mod indexer;
pub mod memory;
pub mod metrics;
pub mod migrate;
pub mod profiling;
pub mod progress;
pub mod search;
pub mod status;
pub mod upsert;