imag/bin/core/imag-store/Cargo.toml

46 lines
1.3 KiB
TOML
Raw Normal View History

2016-01-23 14:35:31 +00:00
[package]
name = "imag-store"
2017-09-23 20:26:52 +00:00
version = "0.5.0"
2016-01-23 14:35:31 +00:00
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
2016-10-18 08:56:12 +00:00
description = "Part of the imag core distribution: imag-store command"
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"
documentation = "https://matthiasbeyer.github.io/imag/imag_documentation/index.html"
repository = "https://github.com/matthiasbeyer/imag"
homepage = "http://imag-pim.org"
2016-10-18 08:56:12 +00:00
2016-01-23 14:35:31 +00:00
[dependencies]
clap = ">=2.17"
2016-05-10 15:54:47 +00:00
log = "0.3"
version = "2.0.1"
toml = "0.4"
error-chain = "0.10"
2016-01-23 14:38:14 +00:00
2017-09-23 20:26:52 +00:00
libimagstore = { version = "0.5.0", path = "../../../lib/core/libimagstore", features = ["verify"] }
libimagrt = { version = "0.5.0", path = "../../../lib/core/libimagrt" }
libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" }
libimagutil = { version = "0.5.0", path = "../../../lib/etc/libimagutil" }
[features]
early-panic = [ "libimagstore/early-panic" ]
2017-09-03 20:00:34 +00:00
[dev-dependencies.libimagutil]
2017-09-23 20:26:52 +00:00
version = "0.5.0"
2017-09-03 20:00:34 +00:00
path = "../../../lib/etc/libimagutil"
default-features = false
features = ["testing"]
[dev-dependencies.libimagrt]
2017-09-23 20:26:52 +00:00
version = "0.5.0"
2017-09-03 20:00:34 +00:00
path = "../../../lib/core/libimagrt"
default-features = false
features = ["testing"]
[dev-dependencies.toml-query]
version = "^0.3.1"
2017-09-03 20:00:34 +00:00