imag/libimagstore/Cargo.toml

77 lines
1.6 KiB
TOML
Raw Normal View History

2016-01-09 22:51:31 +00:00
[package]
name = "libimagstore"
2017-02-04 11:17:48 +00:00
version = "0.3.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"]
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"
2016-01-12 17:10:16 +00:00
[dependencies]
2016-11-30 08:36:45 +00:00
fs2 = "0.4"
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.5"
2017-05-03 15:39:50 +00:00
toml = "^0.4"
version = "2.0.1"
crossbeam = "0.2.*"
2016-11-30 08:36:45 +00:00
walkdir = "1.0.*"
2017-05-03 19:40:05 +00:00
itertools = "0.6.*"
2017-05-04 13:57:27 +00:00
is-match = "0.1"
2017-06-17 17:38:52 +00:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2016-01-22 17:44:35 +00:00
2016-05-15 14:39:52 +00:00
[dependencies.libimagerror]
path = "../libimagerror"
[dependencies.libimagutil]
path = "../libimagutil"
2016-01-22 17:44:35 +00:00
[dev-dependencies]
tempdir = "0.3.4"
2016-02-11 14:15:31 +00:00
env_logger = "0.3"
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 = []