Add new required dependencies

This commit is contained in:
Matthias Beyer 2017-11-03 20:18:26 +01:00
parent d0ec7e26dc
commit ab8c8e4e41
2 changed files with 10 additions and 1 deletions

View file

@ -22,6 +22,7 @@ toml-query = "^0.3.1"
handlebars = "0.29" handlebars = "0.29"
vobject = { git = 'https://github.com/matthiasbeyer/rust-vobject', branch = "next" } vobject = { git = 'https://github.com/matthiasbeyer/rust-vobject', branch = "next" }
walkdir = "1" walkdir = "1"
uuid = { version = "0.5", features = ["v4"] }
libimagrt = { version = "0.5.0", path = "../../../lib/core/libimagrt" } libimagrt = { version = "0.5.0", path = "../../../lib/core/libimagrt" }
libimagstore = { version = "0.5.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.5.0", path = "../../../lib/core/libimagstore" }
@ -29,5 +30,9 @@ libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" }
libimagcontact = { version = "0.5.0", path = "../../../lib/domain/libimagcontact" } libimagcontact = { version = "0.5.0", path = "../../../lib/domain/libimagcontact" }
libimagutil = { version = "0.5.0", path = "../../../lib/etc/libimagutil" } libimagutil = { version = "0.5.0", path = "../../../lib/etc/libimagutil" }
libimagentryref = { version = "0.5.0", path = "../../../lib/entry/libimagentryref" } libimagentryref = { version = "0.5.0", path = "../../../lib/entry/libimagentryref" }
libimagentryedit = { version = "0.5.0", path = "../../../lib/entry/libimagentryedit" }
libimaginteraction = { version = "0.5.0", path = "../../../lib/etc/libimaginteraction" } libimaginteraction = { version = "0.5.0", path = "../../../lib/etc/libimaginteraction" }
[dev-dependencies]
regex = "0.2"

View file

@ -32,14 +32,17 @@
while_true, while_true,
)] )]
#[cfg(test)] extern crate regex;
extern crate clap; extern crate clap;
#[macro_use] extern crate log; #[macro_use] extern crate log;
#[macro_use] extern crate version; #[macro_use] extern crate version;
#[macro_use] extern crate vobject;
extern crate toml; extern crate toml;
extern crate toml_query; extern crate toml_query;
extern crate handlebars; extern crate handlebars;
extern crate vobject;
extern crate walkdir; extern crate walkdir;
extern crate uuid;
extern crate libimagcontact; extern crate libimagcontact;
extern crate libimagstore; extern crate libimagstore;
@ -48,6 +51,7 @@ extern crate libimagerror;
extern crate libimagutil; extern crate libimagutil;
extern crate libimaginteraction; extern crate libimaginteraction;
extern crate libimagentryref; extern crate libimagentryref;
extern crate libimagentryedit;
use std::process::exit; use std::process::exit;
use std::collections::BTreeMap; use std::collections::BTreeMap;