Registry / serialization / csv
library1.4.0rscratesunverified

Fast CSV parsing and writing with optional serde support for automatic deserialization.

# Cargo.toml [dependencies] csv = "1.4.0"
INSTALL
IMPORT
SIG · CSV
C
csv
serializationrustv1.4.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Reader
use csv::Reader;

Reads CSV data from a string and iterates over records.

use csv::Reader; let data = "name,age\nAlice,30\nBob,25"; let mut reader = Reader::from_reader(data.as_bytes()); for result in reader.records() { let record = result.unwrap(); println!("{:?}", record); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.4.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
Resources
csv — cargo add csv · libregistry