1#![doc = include_str!("../README.md")]
3#![warn(missing_docs)]
4#![no_std]
5
6#[cfg(feature = "std")]
7extern crate std;
8
9#[cfg_attr(test, macro_use)]
10extern crate alloc;
11
12pub mod basicdf;
13pub use basicdf::*;
14
15#[allow(missing_docs)]
16pub mod staticdf;
17pub use staticdf::*;
18
19#[allow(missing_docs)]
20#[cfg(feature = "arrow")]
21pub mod arrow;
22#[cfg(feature = "arrow")]
23pub use arrow::*;
24
25#[allow(missing_docs)]
26#[cfg(feature = "polars")]
27pub mod polars;
28#[cfg(feature = "polars")]
29pub use polars::*;
30
31#[allow(missing_docs)]
32#[cfg(feature = "sample_data")]
33pub mod sample_data;
34
35#[allow(missing_docs)]
36#[cfg(feature = "std")]
37pub mod stdlib;
38#[cfg(feature = "std")]
39pub use stdlib::*;
40
41