Attempt to parse JSON in Rust. Based on: https://lihautan.com/json-parser-with-javascript/
Go to file
Timothy Warren fe19b61803
All checks were successful
timw4mail/json-parser/master This commit looks good
More documentation
2020-02-12 12:14:15 -05:00
src More documentation 2020-02-12 12:14:15 -05:00
tests Add some more documentation 2020-02-12 11:38:37 -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
Jenkinsfile Attempt to automate tests with Jenkins take 2 2020-02-12 09:58:54 -05:00
README.md Add readme 2020-02-10 19:34:27 -05:00

Naive JSON Parser

A Rust JSON parser with no dependencies

Based on a JavaScript implementation