You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to follow example on nickel-org site for json decoding and it referenced using rustc-serialize. According to the interwebs, rustc-serialize is now deprecated and they recommend using serde (see https://github.com/rust-lang-deprecated/rustc-serialize). Would it be worth updating these docs to use serde as well?
Trying to follow example on nickel-org site for json decoding and it referenced using rustc-serialize. According to the interwebs, rustc-serialize is now deprecated and they recommend using serde (see https://github.com/rust-lang-deprecated/rustc-serialize). Would it be worth updating these docs to use serde as well?
Should be the following changes:
Add two dependencies to Cargo.toml:
then in the example, the rust code should
use
:derive updates to serde's impl:
and the rest should be the same...
The text was updated successfully, but these errors were encountered: