https://github.com/rust-bakery/generator_nom
example code for using nom parsers with the new Rust generator feature
https://github.com/rust-bakery/generator_nom
Last synced: 10 months ago
JSON representation
example code for using nom parsers with the new Rust generator feature
- Host: GitHub
- URL: https://github.com/rust-bakery/generator_nom
- Owner: rust-bakery
- Created: 2017-08-30T10:22:08.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-30T14:38:36.000Z (almost 9 years ago)
- Last Synced: 2025-08-10T00:39:57.633Z (10 months ago)
- Language: Rust
- Size: 566 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# example code for using nom parsers with the new Rust generator feature
[generators are now available in Rust nightly.](https://internals.rust-lang.org/t/help-test-async-await-generators-coroutines/5835)
They provide a good way to wrap a nom parser and its backing file or socket,
to produce parsed data.