#![doc = include_str!("../README.md")]
#![warn(missing_docs)]
#![no_std]
#[cfg(feature = "std")]
extern crate std;
#[cfg_attr(test, macro_use)]
extern crate alloc;
pub mod basicdf;
pub use basicdf::*;
#[allow(missing_docs)]
pub mod staticdf;
pub use staticdf::*;
#[allow(missing_docs)]
#[cfg(feature = "arrow")]
pub mod arrow;
#[cfg(feature = "arrow")]
pub use arrow::*;
#[allow(missing_docs)]
#[cfg(feature = "polars")]
pub mod polars;
#[cfg(feature = "polars")]
pub use polars::*;
#[allow(missing_docs)]
#[cfg(feature = "sample_data")]
pub mod sample_data;
#[allow(missing_docs)]
#[cfg(feature = "std")]
pub mod stdlib;
#[cfg(feature = "std")]
pub use stdlib::*;