Horticulteur

Horticulteur is a simple CSV parser that is made to be RFC4180-compliant.

How to use

This crates exports only one function: parse_csv.

```rust use horticulteur::*;

fn main() -> Result<(), Error> { let csvstring: &'static str = "1,2,3\r\n4,5,6"; let parsedcsv: CSV = parsecsv(csvstring)?; // CSV is an alias for Vec let firstrecord: &CSVRecord = parsedcsv.get(0).unwrap(); // CSVRecord is an alias for Vec let firstfield: &CSVField = firstrecord.get(0).unwrap(); // CSVField is an alias for String asserteq!(firstfield, "1"); Ok(()) } ```