Hacker News new | ask | show | jobs
by wtetzner 656 days ago
Out-of-the-box you can add serde_json to your Cargo.toml file in a single line and have JSON parsing.

    serde_json = "*"
I'm not sure I see the problem.
1 comments

If you have a vaguely modern Rust, you can just "cargo add serde_json" and Cargo will make the change for you.