2016-01-09 22:51:24 +00:00
|
|
|
[package]
|
|
|
|
name = "libimagrt"
|
2018-11-10 10:36:29 +00:00
|
|
|
version = "0.10.0"
|
2016-01-09 22:51:24 +00:00
|
|
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
2016-01-10 14:03:56 +00:00
|
|
|
|
2016-10-18 08:56:12 +00:00
|
|
|
description = "Library for the imag core distribution"
|
|
|
|
|
|
|
|
keywords = ["imag", "PIM", "personal", "information", "management"]
|
2017-09-01 16:48:02 +00:00
|
|
|
readme = "../../../README.md"
|
2016-10-18 08:56:12 +00:00
|
|
|
license = "LGPL-2.1"
|
|
|
|
|
2018-04-17 13:55:08 +00:00
|
|
|
documentation = "https://imag-pim.org/doc/"
|
2016-10-18 08:56:12 +00:00
|
|
|
repository = "https://github.com/matthiasbeyer/imag"
|
2016-10-20 12:14:18 +00:00
|
|
|
homepage = "http://imag-pim.org"
|
2016-10-18 08:56:12 +00:00
|
|
|
|
2017-10-21 14:35:57 +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" }
|
|
|
|
|
2016-01-10 14:03:56 +00:00
|
|
|
[dependencies]
|
2019-10-07 16:07:53 +00:00
|
|
|
env_logger = "0.7"
|
2019-06-30 14:44:23 +00:00
|
|
|
toml = "0.5.1"
|
|
|
|
xdg-basedir = "1.0.0"
|
|
|
|
itertools = "0.8.0"
|
2019-10-07 16:11:55 +00:00
|
|
|
ansi_term = "0.12"
|
2019-06-30 14:44:23 +00:00
|
|
|
atty = "0.2.11"
|
|
|
|
failure = "0.1.5"
|
|
|
|
failure_derive = "0.1.5"
|
|
|
|
serde_derive = "1.0.94"
|
|
|
|
serde = "1.0.94"
|
2016-01-10 14:03:56 +00:00
|
|
|
|
2018-11-10 10:36:29 +00:00
|
|
|
libimagstore = { version = "0.10.0", path = "../../../lib/core/libimagstore" }
|
|
|
|
libimagerror = { version = "0.10.0", path = "../../../lib/core/libimagerror" }
|
|
|
|
libimagutil = { version = "0.10.0", path = "../../../lib/etc/libimagutil" }
|
|
|
|
libimaginteraction = { version = "0.10.0", path = "../../../lib/etc/libimaginteraction" }
|
2017-09-02 08:29:10 +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
|
|
|
|
2017-12-06 17:08:25 +00:00
|
|
|
[dependencies.log]
|
2019-06-30 14:44:23 +00:00
|
|
|
version = "0.4.6"
|
2017-12-06 17:08:25 +00:00
|
|
|
default-features = false
|
2019-04-26 23:17:25 +00:00
|
|
|
features = ["std", "serde"]
|
2017-12-06 17:08:25 +00:00
|
|
|
|
2018-10-04 14:11:11 +00:00
|
|
|
[dependencies.handlebars]
|
2019-10-07 16:10:59 +00:00
|
|
|
version = "2"
|
2018-10-04 14:11:11 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["no_logging"]
|
|
|
|
|
2019-05-31 09:47:23 +00:00
|
|
|
[dependencies.toml-query]
|
2019-06-30 14:44:23 +00:00
|
|
|
version = "0.9.2"
|
2019-05-31 09:47:23 +00:00
|
|
|
default-features = false
|
|
|
|
features = [ "typed" ]
|
|
|
|
|
2017-09-02 08:29:10 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
2018-10-31 22:01:52 +00:00
|
|
|
# Make logger initialization inside `runtime::Runtime` public.
|
|
|
|
# This feature is _only_ used for the `imag` binary itself. You do not need this
|
|
|
|
# feature and if you think you do you're doing it wrong.
|
|
|
|
pub_logging_initialization = []
|
|
|
|
|
2017-09-02 08:29:10 +00:00
|
|
|
# Enable testing functionality. Used for building the libimagrt for testing CLI
|
|
|
|
# apps. Do not use in production!
|
|
|
|
testing = []
|
|
|
|
|