]> git.proxmox.com Git - proxmox-backup.git/blame - proxmox-restore-daemon/Cargo.toml
use new fsync parameter to replace_file and atomic_open_or_create
[proxmox-backup.git] / proxmox-restore-daemon / Cargo.toml
CommitLineData
6523588c
DM
1[package]
2name = "proxmox-restore-daemon"
3version = "0.1.0"
4authors = ["Proxmox Support Team <support@proxmox.com>"]
5edition = "2018"
6description = "Proxmox Restore Daemon"
7
8[dependencies]
9anyhow = "1.0"
10base64 = "0.12"
11env_logger = "0.7"
12futures = "0.3"
13http = "0.2"
14hyper = { version = "0.14", features = [ "full" ] }
15lazy_static = "1.4"
16libc = "0.2"
17log = "0.4"
18nix = "0.19.1"
19regex = "1.2"
20serde = { version = "1.0", features = ["derive"] }
21serde_json = "1.0"
22tokio = { version = "1.6", features = ["parking_lot", "sync"] }
23tokio-stream = "0.1.0"
24tokio-util = { version = "0.6", features = [ "codec", "io" ] }
25
26pathpatterns = "0.1.2"
27pxar = { version = "0.10.1", features = [ "tokio-io" ] }
28
e0a19d33 29proxmox = { version = "0.15.0", features = [ "sortable-macro" ] }
b3f279e2 30proxmox-router = { version = "1.1", features = [ "cli" ] }
6ef1b649
WB
31proxmox-schema = { version = "1", features = [ "api-macro" ] }
32proxmox-time = "1"
6523588c
DM
33
34pbs-api-types = { path = "../pbs-api-types" }
35pbs-runtime = { path = "../pbs-runtime" }
36pbs-tools = { path = "../pbs-tools" }
37pbs-datastore = { path = "../pbs-datastore" }
38proxmox-rest-server = { path = "../proxmox-rest-server" }
39pbs-client = { path = "../pbs-client" }