1 2 3 4 5 6 7 8 9 10 11 12 13
use static_automata::grammar; pub(crate) mod parse; mod path; mod port; mod scheme; #[grammar(file = "grammar.abnf", export("scheme", "port"))] mod grammar {} pub use path::*; pub use port::*; pub use scheme::*;