summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--abnf_to_pest/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/abnf_to_pest/src/lib.rs b/abnf_to_pest/src/lib.rs
index 2924bf9..1b8fc9c 100644
--- a/abnf_to_pest/src/lib.rs
+++ b/abnf_to_pest/src/lib.rs
@@ -1,4 +1,7 @@
#![allow(clippy::implicit_hasher, clippy::or_fun_call)]
+
+//! A tiny crate that helps convert ABNF grammars to [pest][pest].
+
use abnf::abnf::Rule;
pub use abnf::abnf::{
Alternation, Concatenation, Element, Range, Repeat, Repetition,