#nom #utilities

nom-supreme

A collection of excellent utilities for nom

19 releases (7 breaking)

0.8.0 Apr 21, 2022
0.7.0 Mar 5, 2022
0.6.0 Aug 24, 2021
0.4.4 Jun 8, 2021
0.4.1 Dec 23, 2020

#177 in Parser implementations

Download history 22695/week @ 2023-11-20 18465/week @ 2023-11-27 19746/week @ 2023-12-04 18077/week @ 2023-12-11 12356/week @ 2023-12-18 4662/week @ 2023-12-25 15196/week @ 2024-01-01 18919/week @ 2024-01-08 21069/week @ 2024-01-15 21312/week @ 2024-01-22 27794/week @ 2024-01-29 22503/week @ 2024-02-05 30049/week @ 2024-02-12 27574/week @ 2024-02-19 36260/week @ 2024-02-26 32455/week @ 2024-03-04

127,279 downloads per month
Used in 77 crates (28 directly)

MPL-2.0 license

125KB
1.5K SLoC

nom-supreme

A collection of utilities for a superior nom experience. See docs.rs for details.


lib.rs:

A collection of excellent utilities for nom, including:

  • ParserExt, a trait which makes available many common nom parser combinators as postfix methods, to complement those already available on nom::Parser.
  • ErrorTree, a nom error which retains as much information and context as possible about the details of the failed parse, with an excellent indenting formatter for printing these failures. Integrates with the extra error features of nom-supreme.
  • Improved [tag] parsers, which attach the mismatched the error in the event of a parse failure, similar to char.
  • parse_separated_terminated, the perfected folding parser for building parse loops.
  • final_parser, which serves as a bridge between nom-style IResult parsers and more typical rust results. It decorates a nom parser, requiring it to parse all of its input, not return Incomplete. It also uses an ExtractContext trait to convert the error locations in nom errors, which are usually just suffixes of the input, into more useful locations, such as a line and column number.

Dependencies

~2MB
~41K SLoC