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