[package]
edition = "2021"
rust-version = "1.70"
name = "hedl-csv"
version = "2.0.0"
authors = ["marcflp <marc@dweve.com>"]
build = false
include = [
"Cargo.toml",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG*",
"src/**",
"tests/**",
"benches/**",
"examples/**",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HEDL to/from CSV conversion"
homepage = "https://dweve.com"
documentation = "https://docs.rs/hedl-csv"
readme = "README.md"
keywords = [
"hedl",
"data-format",
"serialization",
"parser",
"token-efficient",
]
categories = [
"encoding",
"parser-implementations",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/dweve-ai/hedl"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[features]
default = []
[lib]
name = "hedl_csv"
path = "src/lib.rs"
[[example]]
name = "csv_conversion"
path = "examples/csv_conversion.rs"
[[example]]
name = "custom_pluralization"
path = "examples/custom_pluralization.rs"
[[test]]
name = "csv_conversion_tests"
path = "tests/csv_conversion_tests.rs"
[[test]]
name = "delimiter_tests"
path = "tests/delimiter_tests.rs"
[[test]]
name = "error_handling_red_tests"
path = "tests/error_handling_red_tests.rs"
[[test]]
name = "error_recovery_tests"
path = "tests/error_recovery_tests.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "large_file_tests"
path = "tests/large_file_tests.rs"
[[test]]
name = "list_value_tests"
path = "tests/list_value_tests.rs"
[[test]]
name = "quote_escaping_tests"
path = "tests/quote_escaping_tests.rs"
[[test]]
name = "reader_and_parser_tests"
path = "tests/reader_and_parser_tests.rs"
[[test]]
name = "schema_inference"
path = "tests/schema_inference.rs"
[dependencies.csv]
version = "1.3"
[dependencies.hedl-core]
version = "2.0.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.hedl-core]
version = "2.0.0"
[dev-dependencies.hedl-test]
version = "2.0.0"
[lints.clippy]
all = "warn"
[lints.rust]
unused_must_use = "allow"
warnings = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]