Hacker News new | ask | show | jobs
by steveklabnik 3480 days ago
Serde is short for "serialize/deserialize", nom is about parsing. Similar, but slightly different things.
1 comments

Serde creator here. Steve's right, serde is fundamentally a generic protocol that implements serialization. I didn't use nom for serde_json (because it didn't exist at the time) but it's definitely possible to use nom and other parser generators to implement the serde protocol.