2018-10-30 12:04:30 +03:00
[ package ]
2018-12-20 12:32:49 +03:00
name = "proxmox-backup"
2018-10-30 12:04:30 +03:00
version = "0.1.0"
authors = [ "Dietmar Maurer <dietmar@proxmox.com>" ]
2018-11-01 16:42:27 +03:00
edition = "2018"
2018-10-30 12:40:05 +03:00
[ lib ]
2018-12-20 12:32:49 +03:00
name = "proxmox_backup"
2018-10-30 12:40:05 +03:00
path = "src/lib.rs"
2018-10-30 12:04:30 +03:00
[ dependencies ]
2019-08-23 13:20:33 +03:00
base64 = "0.10"
2019-04-29 12:57:58 +03:00
bytes = "0.4"
2019-08-23 13:20:33 +03:00
chrono = "0.4" # Date and time library for Rust
crc32fast = "1"
endian_trait = { version = "0.6" , features = [ "arrays" ] }
failure = "0.1"
futures-preview = "0.3.0-alpha"
h2 = { version = "0.2.0-alpha" , git = "https://github.com/hyperium/h2" , features = [ "stream" ] }
2019-01-20 12:06:29 +03:00
http = "0.1"
2019-08-23 13:20:33 +03:00
hyper = { version = "0.13.0-a.0" , git = "https://github.com/hyperium/hyper" }
lazy_static = "1.3"
2018-12-19 11:51:33 +03:00
libc = "0.2"
2019-08-23 13:20:33 +03:00
log = "0.4"
md5 = "0.6"
mio = "0.6"
native-tls = "0.2"
2019-08-21 13:25:49 +03:00
nix = "0.15"
2019-01-20 12:06:29 +03:00
openssl = "0.10"
2019-08-23 13:20:33 +03:00
pam = "0.7"
pam-sys = "0.5"
pin-utils = "0.1.0-alpha"
proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox" , version = "0.1" }
regex = "1.0"
serde = { version = "1.0" , features = [ "derive" ] }
serde_json = "1.0"
shellwords = "1.0"
2018-12-28 21:50:07 +03:00
siphasher = "0.3"
2019-08-23 13:20:33 +03:00
syslog = "4.0"
textwrap = "0.11"
2019-09-02 16:16:21 +03:00
tokio = { version = "0.2.0-alpha.4" }
tokio-executor = { version = "0.2.0-alpha.4" }
tokio-net = { version = "0.2.0-alpha.4" , features = [ "signal" ] }
2019-08-23 13:20:33 +03:00
tokio-openssl = "0.4.0-alpha.2"
tower-service = "0.3.0-alpha.1"
url = "1.7"
uuid = { version = "0.7" , features = [ "v4" ] }
valgrind_request = { version = "1.1" , optional = true }
2019-01-18 14:24:58 +03:00
walkdir = "2"
2019-03-06 12:23:56 +03:00
xdg = "2.2"
2019-08-23 13:20:33 +03:00
zstd = "0.4"
2019-05-22 15:43:24 +03:00
[ features ]
default = [ ]
valgrind = [ "valgrind_request" ]
2019-03-07 13:50:32 +03:00
[ replace ]
2019-09-02 12:40:22 +03:00
"zstd-sys:1.4.13" = { path = "zstd-sys" }