simd-csv 0.12.0

Specialized Rust CSV readers/writers leveraging SIMD instructions.
Documentation
shell(
  "/usr/bin/time -f %e wc -l {} 2>&1".fmt(path)
).split("\n")[-1] as wc,

shell(
  "/usr/bin/time -f %e ./target/release/examples/count baseline {} 2>&1".fmt(path)
).split("\n")[-1] as baseline,

shell(
  "/usr/bin/time -f %e ./target/release/examples/count split {} 2>&1".fmt(path)
).split("\n")[-1] as split,

shell(
  "/usr/bin/time -f %e ./target/release/examples/count zero-copy {} 2>&1".fmt(path)
).split("\n")[-1] as zero_copy,

shell(
  "/usr/bin/time -f %e ./target/release/examples/count copy {} 2>&1".fmt(path)
).split("\n")[-1] as copy