Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-io/src/lib.rs
6939 views
1
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2
#![cfg_attr(feature = "simd", feature(portable_simd))]
3
#![cfg_attr(
4
feature = "allow_unused",
5
allow(unused, dead_code, irrefutable_let_patterns)
6
)] // Maybe be caused by some feature
7
#![allow(ambiguous_glob_reexports)]
8
extern crate core;
9
10
#[cfg(feature = "avro")]
11
pub mod avro;
12
#[cfg(feature = "catalog")]
13
pub mod catalog;
14
pub mod cloud;
15
#[cfg(any(feature = "csv", feature = "json"))]
16
pub mod csv;
17
#[cfg(feature = "file_cache")]
18
pub mod file_cache;
19
#[cfg(any(feature = "ipc", feature = "ipc_streaming"))]
20
pub mod ipc;
21
#[cfg(feature = "json")]
22
pub mod json;
23
pub mod mmap;
24
#[cfg(feature = "json")]
25
pub mod ndjson;
26
mod options;
27
#[cfg(feature = "parquet")]
28
pub mod parquet;
29
#[cfg(feature = "parquet")]
30
pub mod partition;
31
pub mod path_utils;
32
#[cfg(feature = "async")]
33
pub mod pl_async;
34
pub mod predicates;
35
pub mod prelude;
36
mod shared;
37
pub mod utils;
38
39
#[cfg(feature = "cloud")]
40
pub use cloud::glob as async_glob;
41
pub use options::*;
42
pub use path_utils::*;
43
pub use shared::*;
44
45
pub mod hive;
46
47