sql_from_models_parser/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2#![allow(clippy::upper_case_acronyms)]
3
4#[cfg(not(feature = "std"))]
5extern crate alloc;
6
7pub mod ast;
8#[macro_use]
9pub mod dialect;
10pub mod parser;
11pub mod tokenizer;
12
13#[doc(hidden)]
14// This is required to make utilities accessible by both the crate-internal
15// unit-tests and by the integration tests <https://stackoverflow.com/a/44541071/1026>
16// External users are not supposed to rely on this module.
17pub mod test_utils;