chumsky VS winnow

Compare chumsky vs winnow and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
chumsky winnow
54 8
3,327 401
- 3.5%
8.8 9.6
7 days ago 1 day ago
Rust Rust
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

chumsky

Posts with mentions or reviews of chumsky. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-24.

winnow

Posts with mentions or reviews of winnow. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-06.
  • nom > regex
    10 projects | /r/rust | 6 Dec 2023
    I truly love Nom, it made parsing really fun. I suggest trying out https://docs.rs/winnow which is a fork of Nom with a lot of nice features, I find it much more usable.
  • What Vale Taught Me About Linear Types, Borrowing, and Memory Safety
    2 projects | news.ycombinator.com | 3 Jun 2023
    I feel like I'll have to read up some more to have the background to fully understand the article but one thing I wanted to point out is a difference between `fn rand_int(rand: &mut Random) -> i64` and `fn rand_int(ran: Random) -> (i64, Random)`, at least in Rust. With the version that moves `Random`, the return type is bigger and may spill over from registers to the stack which may cause a significant slow down, more than the code of Vale's generation check, I suspect.

    I've run into this with my parser combinator library, winnow [0], and am considering switching from the nicer functional model of moving to the more imperative model of `&mut` [1].

    [0]: https://docs.rs/winnow/latest/winnow/

    [1]: https://github.com/winnow-rs/winnow/issues/72

  • `nom-derive` Derive parser from structure definition
    2 projects | /r/rust | 17 Apr 2023
    Done. For people that want to follow this, here is the link.
  • easy way to produce a parser
    2 projects | /r/rust | 27 Mar 2023
    winnow, fork of nom
  • winnow = toml_edit + combine + nom
    6 projects | /r/rust | 22 Feb 2023
    What are your thoughts on https://github.com/winnow-rs/winnow/pull/199 ?

What are some alternatives?

When comparing chumsky and winnow you can also consider the following projects:

nom - Rust parser combinator framework

pest - The Elegant Parser

electrolysis - Simple verification of Rust programs via functional purification in Lean 2(!)

pom - PEG parser combinators using operator overloading without macros.

lalrpop - LR(1) parser generator for Rust

instaparse

combine - A parser combinator library for Rust

ariadne - Python library for implementing GraphQL servers using schema-first approach.

ariadne - A fancy diagnostics & error reporting crate

redis-rs - Redis library for rust