[package]
edition = "2024"
name = "csv-nose"
version = "0.7.0"
authors = ["Joel Natividad <joel@datHere.com>"]
build = false
exclude = ["tests/data/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CSV dialect sniffer using Garcia's Table Uniformity Method"
readme = "README.md"
keywords = [
"csv",
"sniffer",
"dialect",
"detection",
]
categories = [
"command-line-utilities",
"parsing",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jqnatividad/csv-nose"
[features]
cli = ["clap"]
default = ["cli"]
generic-simd = ["bytecount/generic-simd"]
http = ["ureq"]
runtime-dispatch-simd = ["bytecount/runtime-dispatch-simd"]
[lib]
name = "csv_nose"
path = "src/lib.rs"
[[bin]]
name = "csv-nose"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "benchmark_accuracy"
path = "tests/benchmark_accuracy.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.bytecount]
version = "0.6"
[dependencies.chardetng]
version = "0.1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true
[dependencies.csv]
version = "1"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.foldhash]
version = "0.2"
[dependencies.regex]
version = "1"
[dependencies.simdutf8]
version = "0.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.ureq]
version = "3"
optional = true
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
codegen-units = 1
strip = true