polars_plan/lib.rs
1#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2#![cfg_attr(feature = "nightly", allow(clippy::needless_pass_by_ref_mut))] // remove once stable
3#![cfg_attr(feature = "nightly", allow(clippy::blocks_in_conditions))] // Remove once stable.
4
5extern crate core;
6
7#[cfg(feature = "polars_cloud")]
8pub mod client;
9pub mod constants;
10pub mod dsl;
11pub mod frame;
12pub mod global;
13pub mod plans;
14pub mod prelude;
15pub mod utils;