csv-parser 0.1.1

CSV reader/parser, allowing for commas and new lines in quoted text
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 9.82 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 262.55 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • paul-aspinall/csv-parser
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • paul-aspinall

A CSV Parser/Reader (UTF-8 & ASCII only) library for Rust.

Three functions are exposed:

read(filename) This reads a file and returns a Vec of the raw data

parse(buf) This takes a Vec and parses the data as either UTF-8/ASCII into a row/col Vec<Vec>

to_lines(row_cols) This takes a row/col of a Vec<Vec> and returns a Vec with a dynamic column size for all columns