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

I'm parsing some CSV files that use the "record delemiter"/terminator `\x02\n`. I can't use `\n` as terminator, since `\n` may occur in record field values. Another bug is that I...

I have a consumer that is generic over its input and expects an iterator of iterators of `AsRef` items. Using `csv 1.1.6`, I could map the `StringRecordsIter` and it's `StringRecord`...

enhancement
help-wanted

#### What version of the `csv` crate are you using? name = "csv" version = "1.1.1" #### Briefly describe the question, bug or feature request. Hi, this is not a...

According to this article: https://en.wikipedia.org/wiki/Tab-separated_values#Conventions_for_lossless_conversion_to_TSV characters `\n`, `\t`, `\r` and `\\` should be allowed to be escaped using '\' character. Is my understanding correct, that `rust-csv` only allows to use...

enhancement

Hey, thanks for the library. When I was using it I saw that a lot of time was spent in the trim method and stumbled over the comment about making...

This can serve as a replacement for the ceased Travis CI builds. The builds look like this when they are successful: https://github.com/striezel-stash/rust-csv/actions/runs/1641474135 The script part of the GitHub Actions workflow...

What I'm trying to do is deserialize a `StringRecord` but ignore some columns. The columns aren't known at compile time. It's easy to find their positions and grab the cells...

using clippy v0.1.57 for the following lints: * [redundant_static_lifetimes](https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes) * [redundant_field_names](https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names) * [assign_op_pattern](https://rust-lang.github.io/rust-clippy/master/index.html#assign_op_pattern) * [redundant imports](https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports) * [nonminimal_bool](https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool) * [manual_memcpy](https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy) * [map_clone](https://rust-lang.github.io/rust-clippy/master/index.html#map_clone) * [manual_strip](https://rust-lang.github.io/rust-clippy/master/index.html#manual_strip)

Hi, thanks for providing this great crate. Currently, when I am using the crate to serialise a vector inside a struct it will be flattened, so say I have: struct...