Registry / utility / csv-core

csv-core

JSON →
library0.1.13rscratesunverified

Bare bones CSV parsing with no_std support.

# Cargo.toml [dependencies] csv-core = "0.1.13"
INSTALL
IMPORT
SIG · CSV-CORE
C
csv-core
utilityrustv0.1.13
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_core::Reader;

Parses a simple CSV record.

use csv_core::Reader; fn main() { let data = b"a,b,c\n1,2,3"; let mut reader = Reader::new(); let mut out = [0u8; 1024]; let (res, _, _) = reader.read_record(data, &mut out); println!("{:?}", res); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.13latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
3
Amazon
1
Resources
csv-core — cargo add csv-core · libregistry