Switch to upstream rust-vobject

This commit is contained in:
Matthias Beyer 2017-11-08 18:10:58 +01:00
parent 521d661f1c
commit 04d5af8d50
3 changed files with 2 additions and 4 deletions

View file

@ -20,7 +20,7 @@ version = "2.0.1"
toml = "0.4" toml = "0.4"
toml-query = "^0.3.1" toml-query = "^0.3.1"
handlebars = "0.29" handlebars = "0.29"
vobject = { git = 'https://github.com/matthiasbeyer/rust-vobject', branch = "next" } vobject = "0.4"
walkdir = "1" walkdir = "1"
uuid = { version = "0.5", features = ["v4"] } uuid = { version = "0.5", features = ["v4"] }

View file

@ -116,8 +116,6 @@ pub fn create(rt: &Runtime) {
Ok(None) => continue, Ok(None) => continue,
Ok(Some(vcard)) => { Ok(Some(vcard)) => {
debug!("Parsed:\n{:#?}", vcard);
if template == TEMPLATE || template.is_empty() { if template == TEMPLATE || template.is_empty() {
if ::libimaginteraction::ask::ask_bool("Abort contact creating", Some(false)) { if ::libimaginteraction::ask::ask_bool("Abort contact creating", Some(false)) {
exit(1); exit(1);

View file

@ -18,7 +18,7 @@ error-chain = "0.11"
log = "0.3" log = "0.3"
toml = "0.4" toml = "0.4"
toml-query = "0.4" toml-query = "0.4"
vobject = { git = 'https://github.com/matthiasbeyer/rust-vobject', branch = "next" } vobject = "0.4"
libimagstore = { version = "0.5.0", path = "../../../lib/core/libimagstore" } libimagstore = { version = "0.5.0", path = "../../../lib/core/libimagstore" }
libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" }