use std::{ collections::HashMap, sync::LazyLock, }; pub struct Parser { pub url: &'static str, pub branch: Option<&'static str>, pub revision: Option<&'static str>, pub files: &'static [&'static str], pub generate_requires_npm: bool, pub requires_generate_from_grammar: bool, pub location: Option<&'static str>, pub use_makefile: bool, pub cxx_standard: Option<&'static str>, } include!(concat!(env!("OUT_DIR"), "/_parsers.rs")); include!(concat!(env!("OUT_DIR"), "/_queries.rs"));