mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-18 06:03:59 +03:00
dc0de0db10
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>
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "proxmox-backup-client"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
hyper.workspace = true
|
|
log.workspace = true
|
|
nix.workspace = true
|
|
openssl.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio = { workspace = true, features = [ "rt", "rt-multi-thread" ] }
|
|
tokio-stream.workspace = true
|
|
tokio-util = { workspace = true, features = [ "codec" ] }
|
|
xdg.workspace = true
|
|
zstd.workspace = true
|
|
|
|
pathpatterns.workspace = true
|
|
pxar.workspace = true
|
|
|
|
proxmox-async.workspace = true
|
|
proxmox-human-byte.workspace = true
|
|
proxmox-log.workspace = true
|
|
proxmox-io.workspace = true
|
|
proxmox-router = { workspace = true, features = [ "cli" ] }
|
|
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
|
|
proxmox-sortable-macro.workspace = true
|
|
proxmox-sys.workspace = true
|
|
proxmox-systemd.workspace = true
|
|
proxmox-time.workspace = true
|
|
|
|
pbs-api-types.workspace = true
|
|
pbs-buildcfg.workspace = true
|
|
pbs-client.workspace = true
|
|
pbs-datastore.workspace = true
|
|
pbs-fuse-loop.workspace = true
|
|
pbs-key-config.workspace = true
|
|
pbs-pxar-fuse.workspace = true
|
|
pbs-tools.workspace = true
|