Crates.io | json-parse |
lib.rs | json-parse |
version | 1.0.1 |
source | src |
created_at | 2024-07-28 17:52:42.159576 |
updated_at | 2024-07-29 09:04:49.214283 |
description | A low-level JSON parser for Rust with a simple API and full spec support. |
homepage | |
repository | https://github.com/agubelu/json-parse |
max_upload_size | |
id | 1318131 |
size | 46,634 |
A low-level JSON parser for Rust with a simple API and full spec support.
use json_parse::{parse, JsonElement::*};
let json = "[1, true, null]";
let parsed = parse(json).unwrap();
assert_eq!(parsed, Array(
vec![Number(1.0), Boolean(true), Null]
));
Consider using this library if:
This library may not be a good fit if: