rust-csv icon indicating copy to clipboard operation
rust-csv copied to clipboard

A CSV parser for Rust, with Serde support.

Results 100 rust-csv issues
Sort by recently updated
recently updated
newest added

#### Version Tested on both `v1.1.6` and `master` branch. #### Briefly describe the bug. Deserializing a struct with a flattened tagged enum field does not seem to work. #### Include...

Hi! We have a use case for serializing maps using your library. Consider the following structure: ```Rust struct Inner { inner_a: i32, inner_b: i32, } struct Middle { #[serde(flatten)] inner:...

Update URLs, version number listing, and link to latest version of doc pages. Closes #194, fixes #248.

#### What version of the `csv` crate are you using? csv = "1.1.6" #### Briefly describe the question, bug or feature request. The header line is parsed as the rest...

doc

The docs for `QuoteStyle::Never` say: > This _never_ writes quotes, even if it would produce invalid CSV data. Based on that, I would expect the following program to output a...

bug

#### What version of the `csv` crate are you using? 1.0.2 #### Briefly describe the question, bug or feature request. When deserializing a TSV file, if a boolean column's values...

enhancement
question

### Problem: When deserializing a CSV file with only headers without any other rows into a struct (with serde), It doesn't give any error, and the records count is 0....

version: `1.1.6` ### Problem When deserializing a CSV file without headers into a struct (with serde), a UTF-8 error is returned, even though I think the file is valid UTF-8....

I got a cool bug report on a project of mine that uses the csv crate: https://github.com/LPGhatguy/rojo/issues/145 I deserialize files into a `Vec` of a struct with a shape like...

doc