1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![cfg_attr(feature = "nightly", allow(clippy::needless_pass_by_ref_mut))] // remove once stable
#![cfg_attr(feature = "nightly", allow(clippy::blocks_in_conditions))] // Remove once stable.

pub mod constants;
pub mod dot;
pub mod dsl;
pub mod frame;
pub mod global;
pub mod logical_plan;
pub mod prelude;
pub mod utils;