Add readme

This commit is contained in:
Timothy Warren 2020-02-10 19:34:27 -05:00
parent ecb3e231ee
commit d94aaf2fc4
2 changed files with 5 additions and 14 deletions

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# Naive JSON Parser
A Rust JSON parser with no dependencies
Based on a JavaScript [implementation](https://lihautan.com/json-parser-with-javascript/)

View File

@ -1,14 +0,0 @@
[{
"a": 1,
"b": 4e3,
"c": [1, 2, 3],
"d": "foo",
"e": {
"f": {
"g": {
"h": null
}
}
},
"i": ["\"", "\\", "/", "\b", "\f", "\n", "\r", "\t", "\u0001", "\uface"]
}]