zvault/Cargo.toml

41 lines
722 B
TOML
Raw Normal View History

2017-03-10 11:43:32 +00:00
[package]
name = "zvault"
2017-05-11 08:57:54 +00:00
version = "0.3.2"
2017-04-04 11:59:57 +00:00
authors = ["Dennis Schwerdel <schwerdel@googlemail.com>"]
2017-03-18 16:22:11 +00:00
description = "Deduplicating backup tool"
2017-03-10 11:43:32 +00:00
[dependencies]
2017-04-27 11:35:48 +00:00
serde = "1.0"
rmp-serde = "0.13"
serde_yaml = "0.7"
serde_utils = "0.6"
serde_bytes = "0.10"
2017-03-10 11:43:32 +00:00
squash-sys = "0.9"
quick-error = "1.1"
2017-03-21 16:24:01 +00:00
blake2-rfc = "0.2"
murmurhash3 = "0.0.5"
2017-03-16 11:33:10 +00:00
chrono = "0.3"
2017-04-13 08:35:33 +00:00
clap = "2.23"
2017-03-17 10:03:07 +00:00
log = "0.3"
2017-03-18 14:41:59 +00:00
byteorder = "1.0"
2017-03-18 16:22:11 +00:00
ansi_term = "0.9"
2017-03-21 16:24:01 +00:00
sodiumoxide = "0.0.14"
2017-05-08 13:11:07 +00:00
libsodium-sys = "0.0.14"
2017-03-22 18:58:56 +00:00
filetime = "0.1"
2017-03-24 10:00:20 +00:00
regex = "0.2"
2017-03-26 09:34:16 +00:00
fuse = "0.3"
2017-03-31 16:44:27 +00:00
lazy_static = "0.2"
2017-04-02 18:45:35 +00:00
rand = "0.3"
2017-04-03 13:18:06 +00:00
tar = "0.4"
2017-04-04 11:59:57 +00:00
xattr = "0.1"
2017-04-10 06:53:55 +00:00
crossbeam = "0.2"
2017-04-13 08:35:33 +00:00
pbr = "1.0"
users = "0.5"
2017-03-26 09:34:16 +00:00
time = "*"
2017-04-27 11:35:48 +00:00
libc = "0.2"
index = {path="index"}
chunking = {path="chunking"}
2017-03-18 16:22:11 +00:00
[build-dependencies]
pkg-config = "0.3"