#json #macro #pure #compiler #deprecated #rust-serialize

json_macro

纯Rust 2015版json宏,无需编译器特性。

2个版本

使用旧Rust 2015

0.1.1 2015年12月12日
0.1.0 2015年12月7日

#109 in #已弃用


way-cooler中使用

MIT/Apache

3KB
73

json_macro

使用标准宏规则(不需要编译器特性)实现的rust_serialize crate的宏。

依赖项

将以下内容添加到您的Cargo.toml

[dependencies]
json_macro = "*"

并添加到您的crate根目录

#[macro_use]
extern crate json_macro;

使用方法

使用宏的方式如下

let s = json!("string");
let f = json!(3.1f64);
let a = json!([1,2,3,4,5]);
let o = json!({
	"one" => 1,
	"sub" => (json!({
		"two" => 2
	}))
});

依赖项

~225KB