]> git.proxmox.com Git - proxmox-backup.git/blob - pxar-bin/Cargo.toml
tree-wide: bump edition to 2021
[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 = "2021"
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.24"
15 log = "0.4"
16 serde_json = "1.0"
17 tokio = { version = "1.6", features = [ "rt", "rt-multi-thread" ] }
18
19 pathpatterns = "0.1.2"
20 pxar = { version = "0.10.2", features = [ "tokio-io" ] }
21
22 proxmox-async = "0.4"
23 proxmox-router = "1.3.0"
24 proxmox-schema = { version = "1.3.1", features = [ "api-macro" ] }
25 proxmox-sys = "0.4.1"
26
27 pbs-client = { path = "../pbs-client" }
28 pbs-pxar-fuse = { path = "../pbs-pxar-fuse" }
29 pbs-tools = { path = "../pbs-tools" }