mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-07 17:18:03 +03:00
1bec755b50
Do not list the pxar format version and the prelude entries in the output of pxar list, these are not regular entries. Do include them however when dumping with the debug environmet variable set. Since the prelude is arbitrary in size, only show the content size. Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
31 lines
715 B
TOML
31 lines
715 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
|
|
log.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-router = { workspace = true, features = ["cli", "server"] }
|
|
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
|
|
proxmox-sys.workspace = true
|
|
|
|
pbs-client.workspace = true
|
|
pbs-pxar-fuse.workspace = true
|
|
pbs-tools.workspace = true
|