hedl_csv/from_csv/mod.rs
1// Dweve HEDL - Hierarchical Entity Data Language
2//
3// Copyright (c) 2025 Dweve IP B.V. and individual contributors.
4//
5// SPDX-License-Identifier: Apache-2.0
6
7//! CSV to HEDL conversion
8
9mod config;
10mod conversion;
11mod parsing;
12mod schema_inference;
13mod validation;
14
15pub use config::{
16 FromCsvConfig, DEFAULT_MAX_CELL_SIZE, DEFAULT_MAX_COLUMNS, DEFAULT_MAX_HEADER_SIZE,
17 DEFAULT_MAX_ROWS, DEFAULT_MAX_TOTAL_SIZE,
18};
19pub use conversion::{
20 from_csv, from_csv_reader, from_csv_reader_with_config, from_csv_with_config,
21};
22
23#[cfg(test)]
24mod tests;