Attempt to parse JSON in Rust. Based on: https://lihautan.com/json-parser-with-javascript/
Go to file
Timothy Warren a3b16acb13 Merge branch 'master' of git.timshomepage.net:timw4mail/json-parser 2020-02-11 10:58:03 -05:00
src Merge branch 'master' of git.timshomepage.net:timw4mail/json-parser 2020-02-11 10:58:03 -05:00
.gitignore First commit, still need to handle strings and numbers 2020-02-07 16:23:51 -05:00
Cargo.toml First commit, still need to handle strings and numbers 2020-02-07 16:23:51 -05:00
README.md Add readme 2020-02-10 19:34:27 -05:00

README.md

Naive JSON Parser

A Rust JSON parser with no dependencies

Based on a JavaScript implementation