5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-03 01:18:02 +03:00
proxmox-backup/pxar-bin/Cargo.toml
Christian Ebner 33031f9835 pxar: bin: use dedicated api type for restore pattern
Instead of taking a plain string as input parameter, use the
corresponding api type performing additional input validation.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
2024-11-25 11:57:07 +01:00

31 lines
727 B
TOML

[package]
name = "pxar-bin"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
[[bin]]
name = "pxar"
path = "src/main.rs"
[dependencies]
anyhow.workspace = true
futures.workspace = true
nix.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = [ "rt", "rt-multi-thread" ] }
pathpatterns.workspace = true
pxar.workspace = true
proxmox-async.workspace = true
proxmox-human-byte.workspace = true
proxmox-log.workspace = true
proxmox-router = { workspace = true, features = ["cli", "server"] }
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
proxmox-sys.workspace = true
pbs-api-types.workspace = true
pbs-client.workspace = true
pbs-pxar-fuse.workspace = true