1个不稳定版本
0.1.0 | 2024年4月16日 |
---|
#20 in #zero-dependency
用于jsode
12KB
221 代码行
JSON ❤️ Oxide = Jsode
[!警告] 此项目处于高度开发中,存在错误和未解决的问题问题。请考虑在用于生产时使用。
概述
简单、零拷贝且零依赖的JSON解析器
安装
cargo add jsode
入门指南
1. 指定JSON键
use jsode::prelude::*;
fn main() -> jsode::Result<()> {
let mut src = JsonParser::new("{ 'hello': 'world' }");
let ast = src.parse()?;
assert!(ast.index("hello").is_some());
assert!(ast.index("none_exist_key").is_none());
Ok(())
}
2. 获取/反序列化单个JSON属性
use jsode::prelude::*;
fn main() -> jsode::Result<()> {
let mut src = JsonParser::new("{ 'hello': 'world' }");
let ast = src.parse()?;
assert_eq!("world", ast.index("hello").unwrap().parse_into::<String>()?);
Ok(())
}
3. 反序列化到结构体
use jsode::prelude::*;
#[derive(Deserialize, PartialEq, Debug)]
struct Color {
#[prop = "r"]
red: u8,
#[prop = "b"]
blue: u8,
green: u8,
}
fn main() -> jsode::Result<()> {
let mut src = JsonParser::new(r#"{
'r': 255,
'b': 96,
'green': 0,
}"#);
let ast = src.parse()?;
let expected = Color {
red: 255,
blue: 96,
green: 0,
};
assert_eq!(expected, ast.parse_into::<Color>()?);
Ok(())
}
依赖
~300–760KB
~18K SLoC