grepme 0.1.0

Grep with support for advanced regex features and automatic directory recursion.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Grepme
//!
//! A library that provides utilities necessary for grep-like operations.
//!
//! The crate is organised into a few focused modules:
//!
//! - [`config`] — parsing of command-line arguments into a [`Config`], plus
//!   the CLI help text.
//! - [`targets`] — expanding file/directory arguments into a flat list of
//!   files to search.
//! - [`search`] — running a compiled regex against file contents.
pub mod config;
pub mod search;
pub mod targets;

pub use targets::ExpansionFailed;