2023-08-28 21:16:02 +03:00
|
|
|
#![doc = include_str!("../README.md")]
|
|
|
|
|
|
2024-04-15 22:41:54 -04:00
|
|
|
pub mod fuzz;
|
2019-02-01 14:39:37 -08:00
|
|
|
pub mod generate;
|
2019-02-19 11:24:50 -08:00
|
|
|
pub mod highlight;
|
2019-02-01 14:39:37 -08:00
|
|
|
pub mod logger;
|
|
|
|
|
pub mod parse;
|
2021-09-22 01:43:32 +03:00
|
|
|
pub mod playground;
|
2019-09-11 14:44:49 -07:00
|
|
|
pub mod query;
|
2020-10-26 14:27:33 -04:00
|
|
|
pub mod query_testing;
|
2020-03-04 14:27:31 -08:00
|
|
|
pub mod tags;
|
2019-02-01 14:39:37 -08:00
|
|
|
pub mod test;
|
2019-10-24 12:01:27 -07:00
|
|
|
pub mod test_highlight;
|
2021-12-18 09:44:59 -06:00
|
|
|
pub mod test_tags;
|
2019-02-01 14:39:37 -08:00
|
|
|
pub mod util;
|
2019-04-23 14:29:46 -07:00
|
|
|
pub mod wasm;
|
2019-02-01 14:39:37 -08:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests;
|
2023-08-02 21:37:11 +03:00
|
|
|
|
|
|
|
|
// To run compile fail tests
|
|
|
|
|
#[cfg(doctest)]
|
|
|
|
|
mod tests;
|