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
- Host: GitHub
- URL: https://github.com/prosumma/rs-parsimonious
- Owner: Prosumma
- License: mit
- Created: 2025-01-20T20:39:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-19T00:33:14.000Z (about 1 year ago)
- Last Synced: 2025-03-19T01:29:40.119Z (about 1 year ago)
- Language: Rust
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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.