2021-09-21 05:58:52 +00: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 13:12:59 +00:00
|
|
|
base64 = "0.13"
|
2021-11-29 13:10:04 +00:00
|
|
|
env_logger = "0.9"
|
2021-09-21 05:58:52 +00: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 10:12:17 +00:00
|
|
|
regex = "1.5"
|
2021-09-21 05:58:52 +00: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 13:25:29 +00:00
|
|
|
proxmox-async = "0.4"
|
2022-02-21 10:39:17 +00:00
|
|
|
proxmox-compression = "0.1"
|
2021-10-13 10:55:51 +00:00
|
|
|
proxmox-router = { version = "1.1", features = [ "cli" ] }
|
2021-12-16 10:08:44 +00:00
|
|
|
proxmox-schema = { version = "1.1", features = [ "api-macro" ] }
|
2021-10-08 09:19:37 +00:00
|
|
|
proxmox-time = "1"
|
2021-11-23 16:57:00 +00:00
|
|
|
proxmox-sys = { version = "0.2", features = [ "sortable-macro" ] }
|
2021-09-21 05:58:52 +00: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" }
|