2021-09-21 07:58:52 +02:00
[ package ]
name = "proxmox-restore-daemon"
version = "0.1.0"
authors = [ "Proxmox Support Team <support@proxmox.com>" ]
edition = "2018"
description = "Proxmox Restore Daemon"
[ dependencies ]
anyhow = "1.0"
2021-11-18 14:12:59 +01:00
base64 = "0.13"
2021-11-29 14:10:04 +01:00
env_logger = "0.9"
2021-09-21 07:58:52 +02:00
futures = "0.3"
http = "0.2"
hyper = { version = "0.14" , features = [ "full" ] }
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
nix = "0.19.1"
2021-12-16 11:12:17 +01:00
regex = "1.5"
2021-09-21 07:58:52 +02:00
serde = { version = "1.0" , features = [ "derive" ] }
serde_json = "1.0"
tokio = { version = "1.6" , features = [ "parking_lot" , "sync" ] }
tokio-stream = "0.1.0"
tokio-util = { version = "0.6" , features = [ "codec" , "io" ] }
pathpatterns = "0.1.2"
pxar = { version = "0.10.1" , features = [ "tokio-io" ] }
2022-02-21 14:25:29 +01:00
proxmox-async = "0.4"
2022-04-13 09:37:20 +02:00
proxmox-compression = "0.1.1"
2022-04-13 08:17:08 +02:00
proxmox-router = { version = "1.2" , features = [ "cli" ] }
2022-04-13 08:20:27 +02:00
proxmox-schema = { version = "1.3.1" , features = [ "api-macro" ] }
2021-10-08 11:19:37 +02:00
proxmox-time = "1"
2021-11-23 17:57:00 +01:00
proxmox-sys = { version = "0.2" , features = [ "sortable-macro" ] }
2021-09-21 07:58:52 +02:00
pbs-api-types = { path = "../pbs-api-types" }
pbs-tools = { path = "../pbs-tools" }
pbs-datastore = { path = "../pbs-datastore" }
proxmox-rest-server = { path = "../proxmox-rest-server" }
pbs-client = { path = "../pbs-client" }