mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-06 13:18:00 +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>
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[package]
|
|
name = "pbs-tape"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "LTO tape support"
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bitflags.workspace = true
|
|
endian_trait.workspace = true
|
|
hex.workspace = true
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
nix.workspace = true
|
|
openssl.workspace = true
|
|
regex.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
udev.workspace = true
|
|
|
|
proxmox-io.workspace = true
|
|
proxmox-lang.workspace=true
|
|
proxmox-log.workspace=true
|
|
proxmox-sys.workspace = true
|
|
proxmox-time.workspace = true
|
|
proxmox-uuid.workspace = true
|
|
|
|
# api-macro is only used by the binaries, so maybe we should split them out
|
|
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
|
|
|
|
# router::cli is only used by binaries, so maybe we should split them out
|
|
proxmox-router = { workspace = true, features = ["cli", "server"] }
|
|
|
|
pbs-api-types.workspace = true
|
|
pbs-buildcfg.workspace = true
|
|
pbs-config.workspace = true
|