mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-04-28 13:11:17 +00:00

Add tracing logger to all client binaries and remove env_logger. The reason for this change is twofold: our migration to tracing, and the behavior when the client calls an api handler directly. Currently the proxmox-backup-manager calls the api handlers directly for some commands. This results in no output (on console and task log), as no tracing logger is instantiated. Signed-off-by: Gabriel Goller <g.goller@proxmox.com>
31 lines
717 B
TOML
31 lines
717 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-log.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
|