From 5f63ea4a1991159348c2e7d7f519c3ac6cd46454 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Fri, 29 Mar 2019 15:20:27 -0400 Subject: switch over to pest --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 177f726..1d1c6dd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,7 +18,8 @@ extern crate fnv; #[cfg_attr(test, macro_use)] extern crate itertools; #[macro_use] extern crate lazy_static; #[macro_use] extern crate log; -#[macro_use] extern crate nom; +extern crate pest; +#[macro_use] extern crate pest_derive; extern crate rand; extern crate regex; extern crate reqwest; -- cgit v1.3.1