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"
2022-05-16 15:02:07 +02:00
log = "0.4.17"
2022-06-02 13:10:33 +02:00
nix = "0.24"
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"
2022-06-02 09:40:54 +02:00
tokio-util = { version = "0.7" , features = [ "codec" , "io" ] }
2021-09-21 07:58:52 +02:00
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-10-11 15:27:47 +02:00
proxmox-rest-server = "0.2"
2022-09-07 09:21:41 +02:00
proxmox-router = { version = "1.3.0" , features = [ "cli" , "server" ] }
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"
2022-07-28 13:40:07 +02:00
proxmox-sys = { version = "0.4" , 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" }
pbs-client = { path = "../pbs-client" }