3 个版本
使用旧的 Rust 2015
0.1.2 | 2017年12月31日 |
---|---|
0.1.1 | 2016年12月28日 |
0.1.0 | 2016年12月28日 |
247 在 值格式化 中
每月下载量 1,336
在 3 个 存根中使用(直接使用2个)
6KB
136 行
json_pretty
Rust 语言简单的 JSON 格式化器。
安装
在 Cargo.toml 中
[dependencies]
json_pretty = "*"
示例
extern crate json_pretty;
use json_pretty::PrettyFormatter;
// ...
let s = r#"{"description": "string for test", "id" : 123, "true" : true}"#;
let formatter = PrettyFormatter::from_str(s);
let result = formatter.pretty();
println!("s: {}", result);