imag/lib/core/libimagstore/Cargo.toml

78 lines
1.9 KiB
TOML
Raw Normal View History

2016-01-09 22:51:31 +00:00
[package]
name = "libimagstore"
2017-09-23 20:26:52 +00:00
version = "0.5.0"
2016-01-09 22:51:31 +00:00
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
2016-01-12 17:10:16 +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"
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"
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-12 17:10:16 +00:00
[dependencies]
glob = "0.2.11"
lazy_static = "0.2"
2016-05-10 15:54:47 +00:00
log = "0.3"
2017-01-30 07:06:57 +00:00
regex = "0.2"
semver = "0.8"
toml = "0.4"
version = "2.0.1"
walkdir = "1"
2017-05-04 13:57:27 +00:00
is-match = "0.1"
serde = "1"
serde_json = "1"
serde_derive = "1"
error-chain = "0.11"
2016-01-22 17:44:35 +00:00
2017-09-23 20:26:52 +00:00
libimagerror = { version = "0.5.0", path = "../../../lib/core/libimagerror" }
libimagutil = { version = "0.5.0", path = "../../../lib/etc/libimagutil" }
2016-01-22 17:44:35 +00:00
[dev-dependencies]
tempdir = "0.3"
env_logger = "0.4"
2016-02-11 14:15:31 +00:00
2016-07-16 22:36:37 +00:00
[features]
default = []
verify = []
# Enable panic!()s if critical errors occur.
#
# # Howto
#
# To enable this, put
#
# ```toml
# [features]
# early-panic = [ "libimagstore/early-panic" ]
# ```
#
# In the crate depending on this library and compile your crate with
# `cargo build --features early-panic`. This way, the `libimagstore`
# implementation fails via `panic!()` instead of propagating errors which have
# to be printed somewhere to be visible.
#
# # WARNING
#
# The behaviour of the store implementation might be broken with this, resulting
# in partially written store entries and/or worse, so this is
#
# _NOT INTENDED FOR PRODUCTION USE_!
#
early-panic=[]
# File system locking
#
# Enable this feature to enable file-system locking in the store.
fs-locking = []