An open API service indexing awesome lists of open source software.

https://github.com/prosumma/rs-parsimonious

A parser combinator crate written in Rust purely as a learning exercise
https://github.com/prosumma/rs-parsimonious

Last synced: 8 months ago
JSON representation

A parser combinator crate written in Rust purely as a learning exercise

Awesome Lists containing this project

README

          

# Parsimonious

A parser combinator crate written in Rust.

## Purpose

Don't use this. It works well and is easy to use, but there are much more performant and Rusty parsers out there like [nom](https://docs.rs/nom/latest/nom/).

The purpose of this is to teach myself some of the more advanced features of Rust, like generics, traits, and the semantics of closures.