]> git.proxmox.com Git - proxmox-backup.git/blob - pxar-bin/Cargo.toml
use new fsync parameter to replace_file and atomic_open_or_create
[proxmox-backup.git] / pxar-bin / Cargo.toml
1 [package]
2 name = "pxar-bin"
3 version = "0.1.0"
4 authors = ["Proxmox Support Team <support@proxmox.com>"]
5 edition = "2018"
6
7 [[bin]]
8 name = "pxar"
9 path = "src/main.rs"
10
11 [dependencies]
12 anyhow = "1.0"
13 futures = "0.3"
14 nix = "0.19.1"
15 serde_json = "1.0"
16 tokio = { version = "1.6", features = [ "rt", "rt-multi-thread" ] }
17
18 pathpatterns = "0.1.2"
19 proxmox = "0.15.0"
20 proxmox-schema = { version = "1", features = [ "api-macro" ] }
21 proxmox-router = "1.1"
22 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
23
24 pbs-client = { path = "../pbs-client" }
25 pbs-runtime = { path = "../pbs-runtime" }
26 pbs-tools = { path = "../pbs-tools" }