diff options
| author | Nathan Perry <avaglir@gmail.com> | 2019-03-29 15:20:27 -0400 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2019-03-29 15:20:27 -0400 |
| commit | 5f63ea4a1991159348c2e7d7f519c3ac6cd46454 (patch) | |
| tree | 4af4ba0814287dd4ce6e7144c614f7def495c162 /src/main.rs | |
| parent | 2685e6028dd775bcd618a3d8d2b22e32730454a3 (diff) | |
switch over to pest
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
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; |
