awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com

Rust CSV Libraries

Ranking updated Jul 13, 2026

For a library for parsing csv in Rust, the first results are burntsushi/rust-csv (This library is the standard, high-performance choice for CSV processing in Rust, offering a robust streaming API, type-safe deserialization via Serde, and comprehensive support for both reading and writing data), geal/nom (This is a general-purpose parser combinator framework used to build custom parsers rather than a specialized library for handling CSV data formats) and zesterer/chumsky (Chumsky is a general-purpose parser combinator library for building custom grammars rather than a specialized tool for parsing and writing CSV data files). rust-bakery/nom and pest-parser/pest round out the shortlist. Compare the match explanations and check the project documentation against your requirements.

We curate open-source GitHub repositories matching “best rust csv libraries”. Results are ranked by relevance to your query — pick filters below to narrow, or refine with AI.

Rust CSV Libraries

Find the best repos with AI.We'll search the best matching repositories with AI.
  • burntsushi/rust-csvBurntSushi avatar

    BurntSushi/rust-csv

    1,913View on GitHub↗

    This library is the standard, high-performance choice for CSV processing in Rust, offering a robust streaming API, type-safe deserialization via Serde, and comprehensive support for both reading and writing data.

    RustData Serialization
    View on GitHub↗1,913
  • geal/nomGeal avatar

    Geal/nom

    10,422View on GitHub↗

    nom is a Rust parser combinator framework used to build complex parsers for binary and text data. It functions as an abstract syntax tree generator and a bit-level binary parser, allowing users to construct structured data by combining small, reusable parsing functions. The framework provides specialized support for zero-copy binary parsing, extracting data as slices from raw byte arrays to avoid memory allocations. It also includes a streaming data parser capable of processing partial input chunks from networks or files and signaling when additional input is required. The project covers a b

    This is a general-purpose parser combinator framework used to build custom parsers rather than a specialized library for handling CSV data formats.

    RustStreaming Parsers
    View on GitHub↗10,422
  • zesterer/chumskyzesterer avatar

    zesterer/chumsky

    4,545View on GitHub↗

    Chumsky is a parser combinator library used to build high-performance parsers by composing small parsing functions into complex grammars. It provides multiple parsing engines, including recursive descent and precedence-climbing implementations for resolving the order of operations in mathematical and logical expressions. The library is distinguished by its zero-copy text parsing, which minimizes memory allocations to increase throughput, and its ability to run without a standard library for use in embedded or resource-constrained environments. It also features an error-recovering parser that

    Chumsky is a general-purpose parser combinator library for building custom grammars rather than a specialized tool for parsing and writing CSV data files.

    RustZero-Copy Parsing
    View on GitHub↗4,545
  • rust-bakery/nomrust-bakery avatar

    rust-bakery/nom

    10,426View on GitHub↗

    nom is a parser combinator framework for Rust used to build complex parsers by combining small, reusable parsing functions. It functions as a zero-copy parsing tool that minimizes memory overhead by returning slices of the original input instead of allocating new memory. The framework is designed for diverse data formats, serving as a binary data parser with configurable endianness and a bitstream processing library capable of extracting values of arbitrary bit length. It also functions as a streaming data parser that can process data arriving in chunks and signal when additional input is req

    This is a general-purpose parser combinator framework used to build custom parsers rather than a specialized library for CSV data processing.

    RustZero-Copy Parsing
    View on GitHub↗10,426
  • pest-parser/pestpest-parser avatar

    pest-parser/pest

    5,355View on GitHub↗

    Pest is a Rust parsing library and automatic parser generator that transforms formal grammar definitions into functional parsers. It specializes in Parsing Expression Grammar to recognize and structure complex text patterns, providing a system for context-free grammar parsing. The library implements zero-copy tokenization and static grammar compilation to reduce runtime overhead. It supports no-std runtime compatibility, allowing the parser to be compiled for embedded or bare-metal environments where a standard library is unavailable. The project covers a range of parsing capabilities, inclu

    This is a general-purpose parser generator for formal grammars rather than a specialized library for CSV data processing, meaning you would have to build the CSV logic yourself using its tools.

    RustZero-Copy Parsing
    View on GitHub↗5,355
  • serde-rs/jsonserde-rs avatar

    serde-rs/json

    5,587View on GitHub↗

    This is a Rust serialization library for converting data structures to and from JSON strings and byte streams. It is built as a framework within the Serde ecosystem, providing both a strongly typed parser for compile-time safety and a recursive value tree for manipulating JSON data without a predefined schema. The project supports both typed and untyped processing. It can map JSON data into specific Rust types for schema conformity or parse input into a flexible, schemaless representation. It also includes macro-based utilities for the dynamic construction of JSON objects.

    This is a JSON serialization framework rather than a CSV processing library, though it provides the underlying Serde traits often used to implement type-safe deserialization for CSV data.

    RustZero-Copy Parsing
    View on GitHub↗5,587
  • duckdb/duckdbduckdb avatar

    duckdb/duckdb

    38,805View on GitHub↗

    DuckDB is an in-process analytical database engine designed to run directly within an application process. As a zero-dependency, embedded system, it provides enterprise-grade SQL data processing capabilities without the overhead of managing a dedicated database server. It is built to handle complex analytical and aggregation tasks by storing and retrieving information in columns, allowing for high-performance relational data manipulation. The engine distinguishes itself through a columnar vectorized execution model that maximizes CPU cache efficiency during query operations. It employs adapti

    DuckDB is an embedded analytical database engine that can ingest and query CSV files, but it is a full SQL database system rather than a specialized library for parsing and manipulating CSV data in Rust.

    C++Result Streaming APIs
    View on GitHub↗38,805
Compare the top 10 at a glance
RepositoryStarsLanguageLicenseLast push
burntsushi/rust-csv1.9KRustunlicenseOct 17, 2025
geal/nom10.4KRustMITAug 26, 2025
zesterer/chumsky
4.5K
Rust
MIT
Mar 27, 2026
rust-bakery/nom10.4KRustMITAug 26, 2025
pest-parser/pest5.4KRustApache-2.0Jun 9, 2026
serde-rs/json5.6KRustApache-2.0Jun 20, 2026
duckdb/duckdb38.8KC++MITJun 16, 2026

Related searches

  • a library for parsing csv in Go
  • a library for parsing csv in C#
  • a java library for parsing csv files
  • a javascript library for parsing csv files
  • a python library for processing csv files
  • a library for parsing YAML in Rust
  • a library for web scraping in Rust
  • a library for building Rust CLI applications