Add csv module and core functionality for CSV reading

This commit is contained in:
Palash Tyagi 2025-08-07 22:38:18 +01:00
parent df8c1d2a12
commit 23367c7ca3
2 changed files with 6 additions and 0 deletions

3
src/csv/mod.rs Normal file
View File

@ -0,0 +1,3 @@
pub mod csv_core;
pub use csv_core::CsvReader;

View File

@ -14,3 +14,6 @@ pub mod compute;
/// Documentation for the [`crate::random`] module. /// Documentation for the [`crate::random`] module.
pub mod random; pub mod random;
/// Documentation for the [`crate::csv`] module.
pub mod csv;