Add new deps: toml, toml_query

This commit is contained in:
Matthias Beyer 2017-09-14 18:58:17 +02:00
parent e4036c531b
commit ea982204b9
2 changed files with 4 additions and 0 deletions

View file

@ -18,6 +18,8 @@ chrono = "0.4"
version = "2.0" version = "2.0"
clap = "2.*" clap = "2.*"
log = "0.3" log = "0.3"
toml = "0.4"
toml-query = "0.3.1"
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }

View file

@ -36,6 +36,8 @@
#[macro_use] extern crate version; #[macro_use] extern crate version;
extern crate clap; extern crate clap;
extern crate chrono; extern crate chrono;
extern crate toml;
extern crate toml_query;
extern crate libimagdiary; extern crate libimagdiary;
extern crate libimagentryedit; extern crate libimagentryedit;