// src/lib.rs
// 1. Export runtime modules
// The code generated by the macro refers to `syn_grammar::rt`.
// Therefore, this module must be publicly available.
/// Utilities for testing parsers.
pub use testing;
// 3. Re-export the macro
// This allows the user to write: `use syn_grammar::grammar;`
pub use grammar;
pub use include_grammar;
// Export portable types
pub use ;