]> git.proxmox.com Git - proxmox-backup.git/blame - pxar-bin/Cargo.toml
cleanup schema function calls
[proxmox-backup.git] / pxar-bin / Cargo.toml
CommitLineData
58a3fae7
WB
1[package]
2name = "pxar-bin"
3version = "0.1.0"
4authors = ["Proxmox Support Team <support@proxmox.com>"]
5edition = "2018"
6
7[[bin]]
8name = "pxar"
9path = "src/main.rs"
10
11[dependencies]
12anyhow = "1.0"
13futures = "0.3"
14nix = "0.19.1"
15serde_json = "1.0"
16tokio = { version = "1.6", features = [ "rt", "rt-multi-thread" ] }
17
18pathpatterns = "0.1.2"
25877d05
DM
19#proxmox = "0.15.3"
20proxmox-async = "0.3"
821aa8ea 21proxmox-schema = { version = "1.1", features = [ "api-macro" ] }
b3f279e2 22proxmox-router = "1.1"
25877d05 23proxmox-sys = "0.2"
58a3fae7
WB
24pxar = { version = "0.10.1", features = [ "tokio-io" ] }
25
26pbs-client = { path = "../pbs-client" }
58a3fae7 27pbs-tools = { path = "../pbs-tools" }