CSV Scout
CSV Scout is a Rust library for inferring basic CSV metadata — currently focused on detecting the delimiter and quote character.
This is a fork of (qsv-reader)
📦 Usage
cargo add csv-scout
Or directly to to Cargo.toml
[]
= "*"
Import it in your crate:
use csv_scout;
Example
use csv_scout;
🔬 Feature Flags
runtime-dispatch-simd– enables runtime SIMD detection for x86/x86_64 (SSE2, AVX2)generic-simd– enables architecture-independent SIMD (requires Rust nightly)
These features are mutually exclusive and improve performance when sampling large files.