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
//! Chunking. Port of `src/chunking/*` (← semble `chunking/`).
//!
//! `core` holds the AST/line chunking algorithm (generic over [`core::AstNode`]);
//! `source` is the public entry point producing [`crate::types::Chunk`] values.

pub mod core;
pub mod source;