2018-10-30 12:04:30 +03:00
[ package ]
2018-12-20 12:32:49 +03:00
name = "proxmox-backup"
2020-07-09 15:28:44 +03:00
version = "0.8.4"
2018-10-30 12:04:30 +03:00
authors = [ "Dietmar Maurer <dietmar@proxmox.com>" ]
2018-11-01 16:42:27 +03:00
edition = "2018"
2020-01-15 12:29:57 +03:00
license = "AGPL-3"
description = "Proxmox Backup"
homepage = "https://www.proxmox.com"
exclude = [ "build" , "debian" , "tests/catar_data/test_symlink/symlink1" ]
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 ]
2020-05-18 10:06:44 +03:00
base64 = "0.12"
2020-05-05 11:14:41 +03:00
bitflags = "1.2.1"
2019-12-12 17:27:07 +03:00
bytes = "0.5"
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" ] }
2020-04-17 15:11:25 +03:00
anyhow = "1.0"
2019-12-12 17:27:07 +03:00
futures = "0.3"
h2 = { version = "0.2" , features = [ "stream" ] }
2020-04-29 12:59:31 +03:00
handlebars = "3.0"
2019-12-12 17:27:07 +03:00
http = "0.2"
hyper = "0.13"
2019-12-18 12:47:30 +03:00
lazy_static = "1.4"
2018-12-19 11:51:33 +03:00
libc = "0.2"
2019-08-23 13:20:33 +03:00
log = "0.4"
2019-12-19 11:29:44 +03:00
nix = "0.16"
2020-06-09 11:01:12 +03:00
num-traits = "0.2"
2020-05-05 11:14:41 +03:00
once_cell = "1.3.1"
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"
2019-12-13 13:55:52 +03:00
percent-encoding = "2.1"
2020-05-14 12:46:05 +03:00
pin-utils = "0.1.0"
2020-07-09 15:33:07 +03:00
pathpatterns = "0.1.2"
2020-07-03 17:45:47 +03:00
proxmox = { version = "0.1.42" , features = [ "sortable-macro" , "api-macro" ] }
2020-01-08 17:12:37 +03:00
#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
2020-06-09 12:16:28 +03:00
#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro" ] }
2020-04-23 13:26:14 +03:00
proxmox-fuse = "0.1.0"
2020-06-25 10:46:24 +03:00
pxar = { version = "0.2.0" , features = [ "tokio-io" , "futures-io" ] }
2020-04-23 13:26:14 +03:00
#pxar = { path = "../pxar", features = [ "tokio-io", "futures-io" ] }
2019-12-18 12:47:30 +03:00
regex = "1.2"
2020-05-18 10:06:44 +03:00
rustyline = "6"
2019-08-23 13:20:33 +03:00
serde = { version = "1.0" , features = [ "derive" ] }
serde_json = "1.0"
2018-12-28 21:50:07 +03:00
siphasher = "0.3"
2019-08-23 13:20:33 +03:00
syslog = "4.0"
2020-01-16 15:23:24 +03:00
tokio = { version = "0.2.9" , features = [ "blocking" , "fs" , "io-util" , "macros" , "rt-threaded" , "signal" , "stream" , "tcp" , "time" , "uds" ] }
2019-12-12 17:27:07 +03:00
tokio-openssl = "0.4.0"
2020-05-18 10:06:44 +03:00
tokio-util = { version = "0.3" , features = [ "codec" ] }
2019-12-12 17:27:07 +03:00
tower-service = "0.3.0"
2020-05-05 11:14:41 +03:00
udev = "0.3"
2019-12-13 13:55:52 +03:00
url = "2.1"
2020-01-15 12:29:57 +03:00
#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
2019-01-18 14:24:58 +03:00
walkdir = "2"
2019-03-06 12:23:56 +03:00
xdg = "2.2"
2019-12-18 14:23:10 +03:00
zstd = { version = "0.4" , features = [ "bindgen" ] }
2020-05-14 13:17:20 +03:00
nom = "5.1"
2019-05-22 15:43:24 +03:00
[ features ]
default = [ ]
2020-01-15 12:29:57 +03:00
#valgrind = ["valgrind_request"]