code-search-please 0.1.4

Hybrid code search for agents — core library (Rust rewrite of MinishLab/semble).
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Indexing. Port of `src/indexing/*` (← semble `index/`).
//!
//! Phase 1 lands the pure BM25 scoring core (`sparse`). File walking, dense
//! embeddings, the content-hash cache, and on-disk persistence arrive in
//! Phase 3.

pub mod cache;
pub mod create;
pub mod dense;
pub mod file_walker;
pub mod files;
pub mod index;
pub mod sparse;