rust-csv
rust-csv copied to clipboard
A CSV parser for Rust, with Serde support.
Thank you for taking the time to file a bug report. The following describes some guidelines to creating a minimally useful ticket. Above all else: do not describe your problem,...
This PR is to add fuzzing support, and I want to integrate into [OSS-Fuzz](https://github.com/google/oss-fuzz). This is a free service by Google where they perform continuous fuzzing of open-source projects used...
i had problem with write data to any CSV column that i want without overwrite old csv data just add more text in any coloum bcoz i had too many...
#### What version of the `csv` crate are you using? `1.1.3` #### Briefly describe the question, bug or feature request. `Reader` reasonably skips blank lines, and the reported position following...
I apologize if this is a somewhat basic question, but is there an easy way to direct rust-csv or serde from rust-csv to deserialize a set of fields as a...
#### What version of the `csv` crate are you using? `csv 1.1.3` #### Briefly describe the question, bug or feature request. I'm trying to implement the common pattern of accepting...
Called "the simplest solution" in #161. I concur the API is a bit weird, but the catches are documented and a small example was added . There are probably more...
This is important to justify the use of `unsafe` when reading `StringRecord`s. Theoretically, if there were no performance difference between doing two UTF-8 validity checks versus doing only one, then...
When reading CSV files without a special header row , the line number of each record is inaccurate. (As a sidenote, the documentation for `Position::line` is a bit unclear whether...