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