Add new required dependencies
This commit is contained in:
parent
d0ec7e26dc
commit
ab8c8e4e41
2 changed files with 10 additions and 1 deletions
|
@ -22,6 +22,7 @@ toml-query = "^0.3.1"
|
|||
handlebars = "0.29"
|
||||
vobject = { git = 'https://github.com/matthiasbeyer/rust-vobject', branch = "next" }
|
||||
walkdir = "1"
|
||||
uuid = { version = "0.5", features = ["v4"] }
|
||||
|
||||
libimagrt = { version = "0.5.0", path = "../../../lib/core/libimagrt" }
|
||||
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" }
|
||||
libimagutil = { version = "0.5.0", path = "../../../lib/etc/libimagutil" }
|
||||
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" }
|
||||
|
||||
[dev-dependencies]
|
||||
regex = "0.2"
|
||||
|
||||
|
|
|
@ -32,14 +32,17 @@
|
|||
while_true,
|
||||
)]
|
||||
|
||||
#[cfg(test)] extern crate regex;
|
||||
|
||||
extern crate clap;
|
||||
#[macro_use] extern crate log;
|
||||
#[macro_use] extern crate version;
|
||||
#[macro_use] extern crate vobject;
|
||||
extern crate toml;
|
||||
extern crate toml_query;
|
||||
extern crate handlebars;
|
||||
extern crate vobject;
|
||||
extern crate walkdir;
|
||||
extern crate uuid;
|
||||
|
||||
extern crate libimagcontact;
|
||||
extern crate libimagstore;
|
||||
|
@ -48,6 +51,7 @@ extern crate libimagerror;
|
|||
extern crate libimagutil;
|
||||
extern crate libimaginteraction;
|
||||
extern crate libimagentryref;
|
||||
extern crate libimagentryedit;
|
||||
|
||||
use std::process::exit;
|
||||
use std::collections::BTreeMap;
|
||||
|
|
Loading…
Reference in a new issue