diff options
author | Nadrieril | 2019-04-14 23:32:09 +0200 |
---|---|---|
committer | Nadrieril | 2019-04-14 23:32:09 +0200 |
commit | 2cf1fcbafce4cb27c08d16cc5b8c5943299ed707 (patch) | |
tree | 8d3fef3905a2860d11fb34760f4f62f01b4d397f /abnf_to_pest | |
parent | 19c9838a7b0a945696880c240a4d1317daf787f9 (diff) |
abnf_to_pest: Document roughly
Diffstat (limited to '')
-rw-r--r-- | abnf_to_pest/src/lib.rs | 3 |
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, |