Lines Matching full:csv
1 csv-core
3 A fast CSV reader and write for use in a `no_std` context. This crate will
6 … status](https://api.travis-ci.org/BurntSushi/rust-csv.png)](https://travis-ci.org/BurntSushi/rust…
7 …api/projects/status/github/BurntSushi/rust-csv?svg=true)](https://ci.appveyor.com/project/BurntSus…
8 [](https://crates.io/crates/csv-core)
14 https://docs.rs/csv-core
22 csv-core = "0.1.6"
28 Disabling this feature will drop `csv-core`'s dependency on `libc`.
31 ### Example: reading CSV
33 This example shows how to count the number of fields and records in CSV data.
69 ### Example: writing CSV
71 This example shows how to use the `Writer` API to write valid CSV data. Proper
77 // This is where we'll write out CSV data.
81 // Create a CSV writer with a default configuration.