3 unstable releases
new 0.2.1 | Jan 2, 2025 |
---|---|
0.2.0 | Jan 2, 2025 |
0.1.0 | Dec 28, 2024 |
#133 in Parser tooling
204 downloads per month
32KB
592 lines
Komb
A primitive parser combinator library, inspired by nom and winnow.
Unlike the latter, Komb operates on borrowed slices (i.e. &str
or
[u8]
) instead of iterators. This slightly simplifies zero-copy
parsing and parser creation at the cost of lesser flexibility and
inability to do streaming.