2017-10-06 09:23:07 +00:00
|
|
|
[package]
|
|
|
|
name = "imag-contact"
|
2018-02-10 15:51:31 +00:00
|
|
|
version = "0.7.0"
|
2017-10-06 09:23:07 +00:00
|
|
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
|
|
|
|
|
|
|
description = "Part of the imag core distribution: imag-contact command"
|
|
|
|
|
|
|
|
keywords = ["imag", "PIM", "personal", "information", "management"]
|
|
|
|
readme = "../../../README.md"
|
|
|
|
license = "LGPL-2.1"
|
|
|
|
|
2018-04-17 13:55:08 +00:00
|
|
|
documentation = "https://imag-pim.org/doc/"
|
2017-10-06 09:23:07 +00:00
|
|
|
repository = "https://github.com/matthiasbeyer/imag"
|
|
|
|
homepage = "http://imag-pim.org"
|
|
|
|
|
2018-01-31 10:09:00 +00:00
|
|
|
build = "../../../build.rs"
|
|
|
|
|
2018-02-10 13:09:25 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "matthiasbeyer/imag" }
|
|
|
|
is-it-maintained-issue-resolution = { repository = "matthiasbeyer/imag" }
|
|
|
|
is-it-maintained-open-issues = { repository = "matthiasbeyer/imag" }
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
2017-10-06 09:23:07 +00:00
|
|
|
[dependencies]
|
2018-01-01 19:51:01 +00:00
|
|
|
log = "0.4.0"
|
2017-10-06 09:23:07 +00:00
|
|
|
toml = "0.4"
|
2018-01-11 20:28:55 +00:00
|
|
|
toml-query = "0.6"
|
2017-10-10 16:48:21 +00:00
|
|
|
handlebars = "0.29"
|
2017-11-08 17:10:58 +00:00
|
|
|
vobject = "0.4"
|
2017-10-10 16:48:21 +00:00
|
|
|
walkdir = "1"
|
2018-02-14 11:38:00 +00:00
|
|
|
uuid = { version = "0.6", features = ["v4"] }
|
2018-03-12 16:46:06 +00:00
|
|
|
serde_json = "1"
|
2017-10-06 09:23:07 +00:00
|
|
|
|
2018-02-10 15:51:31 +00:00
|
|
|
libimagrt = { version = "0.7.0", path = "../../../lib/core/libimagrt" }
|
|
|
|
libimagstore = { version = "0.7.0", path = "../../../lib/core/libimagstore" }
|
|
|
|
libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror" }
|
|
|
|
libimagutil = { version = "0.7.0", path = "../../../lib/etc/libimagutil" }
|
|
|
|
libimagentryref = { version = "0.7.0", path = "../../../lib/entry/libimagentryref" }
|
|
|
|
libimagentryedit = { version = "0.7.0", path = "../../../lib/entry/libimagentryedit" }
|
|
|
|
libimaginteraction = { version = "0.7.0", path = "../../../lib/etc/libimaginteraction" }
|
2017-10-10 16:48:21 +00:00
|
|
|
|
2018-03-12 16:46:06 +00:00
|
|
|
[dependencies.libimagcontact]
|
|
|
|
version = "0.7.0"
|
|
|
|
path = "../../../lib/domain/libimagcontact"
|
|
|
|
default-features = false
|
|
|
|
features = ["deser"]
|
|
|
|
|
2018-02-07 20:04:29 +00:00
|
|
|
[dependencies.clap]
|
2018-04-13 14:17:43 +00:00
|
|
|
version = "^2.29"
|
2018-02-07 20:04:29 +00:00
|
|
|
default-features = false
|
2018-04-13 14:19:10 +00:00
|
|
|
features = ["color", "suggestions", "wrap_help"]
|
2018-02-07 20:04:29 +00:00
|
|
|
|