mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 06:45:13 +01:00
39 lines
889 B
TOML
39 lines
889 B
TOML
# See https://github.com/matklad/cargo-xtask
|
|
# This is an implementation detail of bootc
|
|
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "xtask"
|
|
path = "src/xtask.rs"
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
anyhow = { workspace = true }
|
|
anstream = { workspace = true }
|
|
camino = { workspace = true }
|
|
chrono = { workspace = true, features = ["std"] }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
fn-error-context = { workspace = true }
|
|
owo-colors = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
toml = { workspace = true }
|
|
xshell = { workspace = true }
|
|
|
|
# Crate-specific dependencies
|
|
cargo_metadata = "0.23"
|
|
mandown = "1.1.0"
|
|
rand = "0.9"
|
|
serde_yaml = "0.9"
|
|
tar = "0.4"
|
|
itertools = "0.14.0"
|
|
|
|
[lints]
|
|
workspace = true
|