proxmox-backup/pxar-bin/Cargo.toml
Gabriel Goller 1de4974eeb pxar-bin: remove log dependency, use tracing directly
When using the `log` to `tracing` translation layer, the messages get
padded with whitespaces. This bug will get fixed upstream [0], but in
the meantime we switch to the `tracing` macros.

[0]: https://github.com/tokio-rs/tracing/pull/3070

Tested-by: Christian Ebner <c.ebner@proxmox.com>
Reviewed-by: Christian Ebner <c.ebner@proxmox.com>
Signed-off-by: Gabriel Goller <g.goller@proxmox.com>
2024-09-05 14:00:46 +02:00

30 lines
696 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-client.workspace = true
pbs-pxar-fuse.workspace = true