json-builder-macro 0.0.2

A lightweight macro for generating JSON objects
Documentation
1
2
3
4
5
6
7
8
9
10
11
A simple macro for *generating* JSON

```rust
let object = json! {
    x: 78u32,
    y: 72.4f64,
    z: "thing"
};
assert_eq!(object, r#"{"x":78,"y":72.4,"z":"thing"}"#);
```