Add dependency: serde_json

This commit is contained in:
Matthias Beyer 2016-08-06 11:31:49 +02:00
parent 6d14212042
commit 6222aac837
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@ task-hookrs = "0.2"
uuid = "0.2.0"
toml = "0.1.28"
log = "0.3.6"
serde_json = "0.7.3"
[dependencies.libimagstore]
path = "../libimagstore"

View file

@ -2,6 +2,7 @@ extern crate semver;
extern crate uuid;
extern crate toml;
#[macro_use] extern crate log;
extern crate serde_json;
#[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror;