aster/search/mod.rs
1//! 代码搜索模块
2//!
3//! 提供 ripgrep 集成的代码搜索功能
4
5mod ripgrep;
6
7pub use ripgrep::{
8 download_vendored_rg, ensure_ripgrep_available, get_rg_path, get_ripgrep_version,
9 get_system_rg_path, get_vendored_rg_path, is_ripgrep_available, list_files, search,
10 search_sync, RipgrepMatch, RipgrepOptions, RipgrepResult, RG_VERSION,
11};