Registry / serialization / arrow-csv

arrow-csv

JSON →
library58.2.0rscratesunverified

Support for parsing CSV format to and from the Arrow format.

# Cargo.toml [dependencies] arrow-csv = "58.2.0"
INSTALL
IMPORT
SIG · ARROW-CSV
A
arrow-csv
serializationrustv58.2.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.

ReaderBuilder
use arrow_csv::ReaderBuilder;

Minimal example reading CSV data into Arrow records.

use arrow_csv::ReaderBuilder; use std::io::Cursor; fn main() { let data = "a,b\n1,2\n3,4"; let cursor = Cursor::new(data); let reader = ReaderBuilder::new().build(cursor).unwrap(); for record in reader.records() { println!("{:?}", record.unwrap()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
58.2.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
10
OpenAI (training)
1
Resources
arrow-csv — cargo add arrow-csv · libregistry