commit | 0a8972bd5ba982cf68ce4aa18f6e8d949529b456 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Mon Feb 27 02:10:01 2017 -0800 |
committer | David Tolnay <dtolnay@gmail.com> | Mon Feb 27 02:10:10 2017 -0800 |
tree | 063b91f3fe2e21fa0a6bc09b1a8d873dfc2092e9 | |
parent | 1bf19134bd136894d7b0ae1195f629e28e6827e2 [diff] [blame] |
Re-export IResult @SergioBenitez: It'd be nice to not have to depend on `synom` as well.
diff --git a/src/lib.rs b/src/lib.rs index b80934b..65ad6df 100644 --- a/src/lib.rs +++ b/src/lib.rs
@@ -178,6 +178,8 @@ //! `IResult::Incomplete` variant. The `synom` crate should be used instead //! of `nom` when working with the parsers in this module. + pub use synom::IResult; + #[cfg(feature = "full")] pub use item::parsing::item;