2017-10-12 20:46:47 +00:00
|
|
|
[package]
|
|
|
|
name = "imag-diagnostics"
|
2018-11-10 10:36:29 +00:00
|
|
|
version = "0.10.0"
|
2017-10-12 20:46:47 +00:00
|
|
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
|
|
|
|
2018-08-01 04:20:08 +00:00
|
|
|
description = "Part of the imag core distribution: imag-diagnostics command"
|
2017-10-12 20:46:47 +00:00
|
|
|
|
|
|
|
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-12 20:46:47 +00:00
|
|
|
repository = "https://github.com/matthiasbeyer/imag"
|
|
|
|
homepage = "http://imag-pim.org"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-30 14:44:23 +00:00
|
|
|
log = "0.4.6"
|
|
|
|
toml = "0.5.1"
|
|
|
|
toml-query = "0.9.2"
|
2019-10-07 16:06:29 +00:00
|
|
|
indicatif = "0.12.0"
|
2019-06-30 14:44:23 +00:00
|
|
|
failure = "0.1.5"
|
2019-10-26 14:31:56 +00:00
|
|
|
resiter = "0.4.0"
|
2017-10-12 20:46:47 +00:00
|
|
|
|
2018-11-10 10:36:29 +00:00
|
|
|
libimagstore = { version = "0.10.0", path = "../../../lib/core/libimagstore" }
|
|
|
|
libimagrt = { version = "0.10.0", path = "../../../lib/core/libimagrt" }
|
|
|
|
libimagerror = { version = "0.10.0", path = "../../../lib/core/libimagerror" }
|
|
|
|
libimagentrylink = { version = "0.10.0", path = "../../../lib/entry/libimagentrylink" }
|
2017-10-12 20:46:47 +00:00
|
|
|
|
2018-02-07 20:04:29 +00:00
|
|
|
[dependencies.clap]
|
2019-06-30 14:44:23 +00:00
|
|
|
version = "2.33.0"
|
2018-02-07 20:04:29 +00:00
|
|
|
default-features = false
|
2018-04-13 14:19:10 +00:00
|
|
|
features = ["suggestions", "color", "wrap_help"]
|
2018-02-07 20:04:29 +00:00
|
|
|
|
2019-09-14 16:28:39 +00:00
|
|
|
[lib]
|
|
|
|
name = "libimagdiagnosticscmd"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "imag-diagnostics"
|
|
|
|
path = "src/bin.rs"
|