1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-14 22:15:13 +02:00

Implementing core functionality.

Initially experimenting with crossbeam to manage synchronization.
This commit is contained in:
Andrew Gallant
2016-08-28 01:37:12 -04:00
parent 065c449980
commit 1c8379f55a
9 changed files with 652 additions and 146 deletions

View File

@ -12,7 +12,7 @@ use std::error;
use std::fmt;
use std::result;
pub use search::{Grep, GrepBuilder};
pub use search::{Grep, GrepBuilder, Iter, Match};
mod literals;
mod nonl;