1 个不稳定版本
0.0.1 | 2024年7月17日 |
---|
#75 在 #utils
每月120次 下载
4KB
cdumay_core
cdumay_core 是其他库使用的工具集合。
快速入门
Cargo.toml:
[dependencies]
cdumay_core = "0.3"
serde_json = "1.0"
main.rs:
extern crate cdumay_core;
extern crate serde_json;
use cdumay_core::{Value, Uuid};
fn main() {
let data = r#"
{
"name": "John Doe",
"age": 43
}"#;
let v: Value = serde_json::from_str(data).unwrap();
assert_eq!(v["name"], "John Doe");
assert_eq!(v["age"], 43);
let uuid = Uuid::new_v4();
println!("{}", serde_json::to_string_pretty(&uuid).unwrap());
}
依赖
~0.7–1.2MB
~24K SLoC