#![cfg_attr(docsrs, feature(doc_auto_cfg))]1#![cfg_attr(feature = "nightly", allow(clippy::needless_pass_by_ref_mut))] // remove once stable2#![cfg_attr(feature = "nightly", allow(clippy::blocks_in_conditions))] // Remove once stable.3#![cfg_attr(4feature = "allow_unused",5allow(unused, dead_code, irrefutable_let_patterns)6)] // Maybe be caused by some feature7// combinations8extern crate core;910pub mod callback;11#[cfg(feature = "polars_cloud_client")]12pub mod client;13pub mod constants;14pub mod dsl;15pub mod frame;16pub mod plans;17pub mod prelude;18pub mod utils;192021