plotlars_core/io/mod.rs
1mod error;
2pub use error::PlotlarsError;
3
4mod csv;
5pub use self::csv::CsvReader;
6
7mod parquet;
8pub use parquet::ParquetReader;
9
10#[cfg(feature = "format-json")]
11mod json;
12#[cfg(feature = "format-json")]
13pub use json::JsonReader;
14
15#[cfg(feature = "format-excel")]
16mod excel;
17#[cfg(feature = "format-excel")]
18pub use excel::ExcelReader;