This library is used to encode/decode the TileJson
format as it described in TileJson spec 2.2.0
This library is very simple wrapper on top of serde. Examples are available here.
Usage is very simple:
let tilejson = TileJson::default();
let json = encode(&tilejson);
let json = fs::read_to_string(&args[1]).unwrap();
let tile = decode(&json);