Comment on Parsing Text with NomparentComments−maleldil4yI use Serde when it's a common format that already has implementations for Serialize/Deserialize, and nom/peg when it's a custom format.
Comments
I use Serde when it's a common format that already has implementations for Serialize/Deserialize, and nom/peg when it's a custom format.