summaryrefslogtreecommitdiffstats
path: root/grep
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-08-28 01:37:12 -0400
committerAndrew Gallant <jamslam@gmail.com>2016-08-28 01:37:12 -0400
commit1c8379f55a6f07df0d28dc294ff80ad56f06459f (patch)
treed46aa9ac078ba51bac419f36d3944b6737a0e79e /grep
parent065c44998092906746f6585090bafbf36d98342b (diff)
Implementing core functionality.
Initially experimenting with crossbeam to manage synchronization.
Diffstat (limited to 'grep')
-rw-r--r--grep/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/grep/src/lib.rs b/grep/src/lib.rs
index 2f225c61..d57b8fb0 100644
--- a/grep/src/lib.rs
+++ b/grep/src/lib.rs
@@ -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;