rfgrep 0.5.0

Advanced recursive file grep utility with comprehensive file type classification - search, list, and analyze 153+ file formats with intelligent filtering and safety policies
Documentation
1
2
3
4
5
6
7
8
9
/// Application submodules for rfgrep
///
/// This module contains the decomposed components of the main application,
/// separated by responsibility for better maintainability and testability.
pub mod filters;
pub mod stdin;

pub use filters::{FileFilter, FileFilterOptions};
pub use stdin::StdinSearcher;