summaryrefslogtreecommitdiffstats
path: root/libimagtodo
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-08-06 11:31:49 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-08-06 11:35:02 +0200
commit6222aac83774ac3da2ca5c0e9cf892e359839beb (patch)
treeedd454fd82b3e1c29af01e7487da348f9853eb7e /libimagtodo
parent6d14212042a28ca73a783d3e87e44d25a7046313 (diff)
Add dependency: serde_json
Diffstat (limited to 'libimagtodo')
-rw-r--r--libimagtodo/Cargo.toml1
-rw-r--r--libimagtodo/src/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/libimagtodo/Cargo.toml b/libimagtodo/Cargo.toml
index 7dcb5516..7ef12711 100644
--- a/libimagtodo/Cargo.toml
+++ b/libimagtodo/Cargo.toml
@@ -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"
diff --git a/libimagtodo/src/lib.rs b/libimagtodo/src/lib.rs
index 169f0748..3189021d 100644
--- a/libimagtodo/src/lib.rs
+++ b/libimagtodo/src/lib.rs
@@ -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;