2019-02-15 19:23:40 +00:00
|
|
|
[package]
|
|
|
|
name = "imag-header"
|
|
|
|
version = "0.10.0"
|
|
|
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
|
|
|
|
2019-07-28 11:14:34 +00:00
|
|
|
description = "Part of the imag core distribution: imag-header command"
|
2019-02-15 19:23:40 +00:00
|
|
|
|
|
|
|
keywords = ["imag", "PIM", "personal", "information", "management"]
|
|
|
|
readme = "../../../README.md"
|
|
|
|
license = "LGPL-2.1"
|
|
|
|
|
|
|
|
documentation = "https://imag-pim.org/doc/"
|
|
|
|
repository = "https://github.com/matthiasbeyer/imag"
|
|
|
|
homepage = "http://imag-pim.org"
|
|
|
|
|
|
|
|
[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" }
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-30 14:44:23 +00:00
|
|
|
log = "0.4.6"
|
|
|
|
version = "3.0.0"
|
|
|
|
toml = "0.5.1"
|
|
|
|
toml-query = "0.9.2"
|
|
|
|
filters = "0.3.0"
|
|
|
|
failure = "0.1.5"
|
2019-10-26 14:31:56 +00:00
|
|
|
resiter = "0.4.0"
|
2019-02-15 19:23:40 +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" }
|
|
|
|
libimagutil = { version = "0.10.0", path = "../../../lib/etc/libimagutil" }
|
|
|
|
libimagentryedit = { version = "0.10.0", path = "../../../lib/entry/libimagentryedit" }
|
|
|
|
libimagentryview = { version = "0.10.0", path = "../../../lib/entry/libimagentryview" }
|
|
|
|
|
|
|
|
[dependencies.clap]
|
2019-06-30 14:44:23 +00:00
|
|
|
version = "2.33.0"
|
2019-02-15 19:23:40 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["color", "suggestions", "wrap_help"]
|
|
|
|
|
|
|
|
[dev-dependencies.libimagrt]
|
|
|
|
version = "0.10.0"
|
|
|
|
path = "../../../lib/core/libimagrt"
|
|
|
|
default-features = false
|
|
|
|
features = ["testing"]
|
|
|
|
|
2019-09-14 16:41:51 +00:00
|
|
|
[lib]
|
|
|
|
name = "libimagheadercmd"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "imag-header"
|
|
|
|
path = "src/bin.rs"
|