summaryrefslogtreecommitdiffstats
path: root/bin/domain/imag-contact
diff options
context:
space:
mode:
Diffstat (limited to 'bin/domain/imag-contact')
-rw-r--r--bin/domain/imag-contact/Cargo.toml4
-rw-r--r--bin/domain/imag-contact/src/lib.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/domain/imag-contact/Cargo.toml b/bin/domain/imag-contact/Cargo.toml
index 12f6392e..9427c42e 100644
--- a/bin/domain/imag-contact/Cargo.toml
+++ b/bin/domain/imag-contact/Cargo.toml
@@ -23,9 +23,9 @@ maintenance = { status = "actively-developed" }
log = "0.4.6"
toml = "0.5.1"
vobject = "0.7.0"
-handlebars = "2"
+handlebars = "3"
walkdir = "2.2.8"
-uuid = { version = "0.7.4", features = ["v4"] }
+uuid = { version = "0.8", features = ["v4"] }
serde_json = "1.0.39"
anyhow = "1"
resiter = "0.4"
diff --git a/bin/domain/imag-contact/src/lib.rs b/bin/domain/imag-contact/src/lib.rs
index 13f17e0f..f7a4af90 100644
--- a/bin/domain/imag-contact/src/lib.rs
+++ b/bin/domain/imag-contact/src/lib.rs
@@ -380,7 +380,7 @@ fn find(rt: &Runtime) -> Result<()> {
}
}
-fn get_contact_print_format(config_value_path: &'static str, rt: &Runtime, scmd: &ArgMatches) -> Result<Handlebars> {
+fn get_contact_print_format<'rc>(config_value_path: &'static str, rt: &Runtime, scmd: &ArgMatches) -> Result<Handlebars<'rc>> {
let fmt = match scmd.value_of("format").map(String::from) {
Some(s) => Ok(s),
None => rt.config()