mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 06:45:13 +01:00
As part of the tracing-subscriber CVE I did a quick audit for usages of `tracing::error!` and I noticed when we updated the `main()` function in the primary crate we missed also doing the same for system-reinstall-bootc. Move the handling of that to utils. xref: https://bugzilla.redhat.com/show_bug.cgi?id=2392017 Signed-off-by: Colin Walters <walters@verbum.org>
31 lines
898 B
TOML
31 lines
898 B
TOML
[package]
|
|
name = "bootc-internal-utils"
|
|
description = "Internal implementation component of bootc; do not use"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/bootc-dev/bootc"
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
anstream = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true, features = ["std"] }
|
|
owo-colors = { workspace = true }
|
|
rustix = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
shlex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, features = ["process", "rt", "macros"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tracing-journald = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
similar-asserts = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|