apt-ostree-builder/Cargo.toml
2025-09-09 18:11:55 -07:00

24 lines
568 B
TOML

[package]
name = "bootc-image-builder"
version = "0.1.0"
edition = "2021"
authors = ["apt-ostree team"]
description = "A tool to convert bootc container images to bootable disk images"
license = "MIT"
repository = "https://github.com/apt-ostree/bootc-image-builder"
[dependencies]
clap = { version = "4", features = ["derive"] }
anyhow = "1.0"
tempfile = "3.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
pretty_env_logger = "0.5"
[dev-dependencies]
tempfile = "3.10"
[[bin]]
name = "bootc-image-builder"
path = "src/main.rs"