Matthias Beyer
c18c0bbbe4
This way we can control whether "out" output goes to stdout or stderr without the user of the functionality knowing. This is useful for later when we use libimagrt to automatically read and write the store from and to stdout/in depending on whether we are talking to a TTY or a pipe.
55 lines
1.6 KiB
TOML
55 lines
1.6 KiB
TOML
[package]
|
|
name = "libimagrt"
|
|
version = "0.7.0"
|
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
|
|
|
description = "Library for the imag core distribution"
|
|
|
|
keywords = ["imag", "PIM", "personal", "information", "management"]
|
|
readme = "../../../README.md"
|
|
license = "LGPL-2.1"
|
|
|
|
documentation = "https://matthiasbeyer.github.io/imag/imag_documentation/index.html"
|
|
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]
|
|
env_logger = "0.5"
|
|
toml = "0.4"
|
|
xdg-basedir = "1.0"
|
|
itertools = "0.7"
|
|
ansi_term = "0.10"
|
|
is-match = "0.1"
|
|
toml-query = "0.6"
|
|
error-chain = "0.11"
|
|
handlebars = "0.29.0"
|
|
atty = "0.2"
|
|
|
|
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" }
|
|
libimaginteraction = { version = "0.7.0", path = "../../../lib/etc/libimaginteraction" }
|
|
|
|
[dependencies.clap]
|
|
version = ">=2.29"
|
|
default-features = false
|
|
features = ["suggestions", "color"]
|
|
|
|
[dependencies.log]
|
|
version = "0.4.0-rc.1"
|
|
default-features = false
|
|
features = ["std"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Enable testing functionality. Used for building the libimagrt for testing CLI
|
|
# apps. Do not use in production!
|
|
testing = []
|
|
|