Add dep: toml

This commit is contained in:
Matthias Beyer 2017-01-20 13:09:51 +01:00
parent f7df36c949
commit d617c5bcc9
2 changed files with 2 additions and 0 deletions

View file

@ -20,6 +20,7 @@ crate-type = ["dylib"]
ruru = "0.9" ruru = "0.9"
lazy_static = "0.2" lazy_static = "0.2"
log = "0.3" log = "0.3"
toml = "0.2"
[dependencies.libimagerror] [dependencies.libimagerror]
path = "../libimagerror" path = "../libimagerror"

View file

@ -20,6 +20,7 @@
#[macro_use] extern crate ruru; #[macro_use] extern crate ruru;
#[macro_use] extern crate lazy_static; #[macro_use] extern crate lazy_static;
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate toml;
#[macro_use] extern crate libimagerror; #[macro_use] extern crate libimagerror;
extern crate libimagstore; extern crate libimagstore;