summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorGreg <gregory.mkv@gmail.com>2018-12-29 02:17:04 -0500
committerGreg <gregory.mkv@gmail.com>2018-12-29 02:17:04 -0500
commit65b1aa57dac4bbb7117ed1adb3a31e5ff69ca271 (patch)
tree02aa439762af280d1e7a95726815f46536069a89 /src/main.rs
parent49302882e5d2ad7e9d9a5095f85c0386385e1ae5 (diff)
Rewrite pipeline
Do away with `Stream`. The new replacer implementation will be far more efficient for multi-file replacements in the future.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index feb315c..eb0b12f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -5,7 +5,7 @@ pub(crate) mod utils;
pub(crate) use {
crate::error::Error,
- crate::input::{Source, Stream},
+ crate::input::{Replacer, Source},
};
fn main() -> Result<(), Error> {