Nom is a well established parser-combinator library. Without it, it seems like the best course of action is to reinvent your own Nom (which is what I ended up doing in this challenge), which detracts from the main high-level learning opportunities, learning about communication protocols, storage solutions etc.
Hey @Pablo1785, you can run cargo add nom
to update your Cargo.toml
and Cargo.lock
. Our tester should pick it up automatically.
Let me know if you run into any issues with that.
Oh, thank you! The comments in Cargo.toml suggested that the tester might break if new deps are added. I will try that then!
1 Like
Ah, looks like your repo was created before we supported arbitrary dependencies. The current starter code no longer includes those restrictions, so you’re good to go.