jsonify-0.2.0 has been yanked.
JSONify
A simple library to convert structs to JSON.
Quick Example
extern crate jsonify;
use Serializable;
What is going on here?
Import JSONify and Serializable trait
extern crate jsonify;
use Serializable;
Create struct Foo
Implement Serializable trait
Calls json! macro to create JSON string
/*
Usage:
json!(
key => value,
key2 => value2
)
*/
json!
Create instance of Foo and serialize it