opencodesearch 0.1.1

Largescale MCP server for codebase search with background indexing and automatic updating to git commits in rust
1
2
3
4
5
6
7
8
9
10
11
12
//! Core library for the `opencodesearch` MCP code search server.

// Keep modules small and focused so each process can reuse the same logic.
pub mod chunking;
pub mod config;
pub mod indexing;
pub mod mcp;
pub mod orchestrator;
pub mod qdrant_store;
pub mod quickwit;
pub mod types;
pub mod watchdog;