From 04d5af8d509114ff2f6edcbc7787e7c3946a5bd8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 8 Nov 2017 18:10:58 +0100 Subject: [PATCH] Switch to upstream rust-vobject --- bin/domain/imag-contact/Cargo.toml | 2 +- bin/domain/imag-contact/src/create.rs | 2 -- lib/domain/libimagcontact/Cargo.toml | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/bin/domain/imag-contact/Cargo.toml b/bin/domain/imag-contact/Cargo.toml index 054b3440..dbc4a64b 100644 --- a/bin/domain/imag-contact/Cargo.toml +++ b/bin/domain/imag-contact/Cargo.toml @@ -20,7 +20,7 @@ version = "2.0.1" toml = "0.4" toml-query = "^0.3.1" handlebars = "0.29" -vobject = { git = 'https://github.com/matthiasbeyer/rust-vobject', branch = "next" } +vobject = "0.4" walkdir = "1" uuid = { version = "0.5", features = ["v4"] } diff --git a/bin/domain/imag-contact/src/create.rs b/bin/domain/imag-contact/src/create.rs index ac1542bf..06140159 100644 --- a/bin/domain/imag-contact/src/create.rs +++ b/bin/domain/imag-contact/src/create.rs @@ -116,8 +116,6 @@ pub fn create(rt: &Runtime) { Ok(None) => continue, Ok(Some(vcard)) => { - debug!("Parsed:\n{:#?}", vcard); - if template == TEMPLATE || template.is_empty() { if ::libimaginteraction::ask::ask_bool("Abort contact creating", Some(false)) { exit(1); diff --git a/lib/domain/libimagcontact/Cargo.toml b/lib/domain/libimagcontact/Cargo.toml index acc420aa..17a2d433 100644 --- a/lib/domain/libimagcontact/Cargo.toml +++ b/lib/domain/libimagcontact/Cargo.toml @@ -18,7 +18,7 @@ error-chain = "0.11" log = "0.3" toml = "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" } libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" }