Adds support for using `bootc` as the preferred method for booting from a locally created image. This new method gets rid of the need to create a tarball and move it to the correct place and instead it will make use of `podman scp` which copies the image to the root `containers-storage` and then has `rpm-ostree` and `bootc` boot from that store. Closes #418 Closes #200
24 lines
642 B
TOML
24 lines
642 B
TOML
[package]
|
|
name = "blue-build-template"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
askama = { version = "0.14", features = ["serde_json"] }
|
|
blue-build-recipe = { version = "=0.9.22", path = "../recipe" }
|
|
blue-build-utils = { version = "=0.9.22", path = "../utils" }
|
|
oci-distribution.workspace = true
|
|
|
|
chrono.workspace = true
|
|
log.workspace = true
|
|
colored.workspace = true
|
|
bon.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|