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