first commit

This commit is contained in:
robojerk 2025-09-09 18:11:55 -07:00
commit f8dbd22c4f
5 changed files with 1921 additions and 0 deletions

24
Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[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"