2 个版本
0.1.2 | 2020 年 4 月 18 日 |
---|---|
0.1.1 | 2020 年 4 月 18 日 |
#306 in 无标准库
25KB
746 行
simple-json2
使用 Rust 编写的简单 JSON 解析器。Wasm / no_std 准备就绪。
# Build this project in `no_std` env:
just build
# Running test in `no_std` env:
just test
# Run this project in cli (a sample for parsing) in `std` env:
just run
用法
将字符串解析为 JSON 对象
use simple_json2::{ self, parse_json, impls::SimpleError };
fn parse_simple() -> Result<(), SimpleError> {
let json_str = r#"{"data":{"id":"bitcoin","symbol":"BTC"},"timestamp":1574224303089}"#;
// To parse a string to JSON object
let json: JsonValue = parse_json(&json_str)?;
// To get a value out from the JSON object
let json_obj = &json.get_object()?[0];
// We use vec of char because in `no_std` env, there is no `String`
assert_eq!(json_obj.0, "data".chars().collect::<Vec<char>>());
let inner_obj = &json_obj.1.get_object()?[0];
assert_eq!(inner_obj.0, "id".chars().collect::<Vec<char>>());
// If we are in `std` env, we can retrieve value back as `String`
assert_eq!(inner_obj.1.get_string()?, "bitcoin");
// -- snip
}
致谢
本项目源于 xlc/lite-json
依赖
~165KB