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
14
15
16
17
18
//! `csp` — hybrid code-search core library.
//!
//! Rust rewrite of `@pleaseai/csp` (see ADR-0003). This crate is the **library
//! seam**: the Rust-native successor of the former TypeScript `CspIndex`, and
//! the future napi-rs binding surface should the JS library contract return.
//!
//! Phase 1 (pure core) modules land first; later phases add chunking, indexing,
//! and search per the ADR-0003 roadmap.

pub mod chunking;
pub mod indexing;
pub mod mcp;
pub mod ranking;
pub mod search;
pub mod stats;
pub mod tokens;
pub mod types;
pub mod utils;