Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-plan/src/lib.rs
6939 views
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
#![cfg_attr(
5
feature = "allow_unused",
6
allow(unused, dead_code, irrefutable_let_patterns)
7
)] // Maybe be caused by some feature
8
// combinations
9
extern crate core;
10
11
pub mod callback;
12
#[cfg(feature = "polars_cloud_client")]
13
pub mod client;
14
pub mod constants;
15
pub mod dsl;
16
pub mod frame;
17
pub mod plans;
18
pub mod prelude;
19
pub mod utils;
20
21