-
Hello! I was trying to poke through the code to fix the issue myself and send a PR, but all the macro magic of old `nom` was really hurting my brain. Long story short `steamy-vdf` fails to parse
``…
-
Il faudrait parser l'équivalent de `/etc/passwd/` sur clipper pour en extraire Nom, prénom et email. Cf GestioCOF.
Le fichier `/etc/passwd` ne contient pas ces infos sur sas.
-
Hey mate,
Nom is a really powerful library and when it works well, it can do amazing things. But sometimes it can be extremely hard to find which of the many pieces of nom you need to use, and how …
-
While the Nom documentation briefly discusses streaming parsers, it's unclear how one would actually go about writing one. In particular, it's unclear how to deal with the case where additional data i…
-
I have written the parsers for my object files, which take `&str` as input and therefore the error type is `nom::error::Error` too. I want to implement the `TryFrom` trait on `AsRef` so I can generate…
-
Hello!
I spent some time cleaning up the old nom_benchmarks repository in a more general [parser_benchmarks](https://github.com/Geal/parser_benchmarks). Since we're reaching the point where the var…
-
Currently this is the missing piece for having a 100% documented library. To do that we need to parse the "@class" tag in the .tl file first.
-
The parser for matching `\r\n` has a streaming version. I would like to ask about the case where the input is exactly `\r`. This case is covered in unit test, and checks for an incomplete error contai…
-
Currently, when the buffer length is < 6, `None` is returned. Instead, the parser should return the minimum number of bytes needed to progress, similar to `nom`'s [`Err::Incomplete`](https://docs.rs/n…
-
Since we now support command line args in both backends (#156), perhaps we want to provide some features to easily parse these. C has `getopt(3)`, Go has the `flag` package in the standard library, Py…