mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
See https://github.com/coreos/bootupd/pull/963 Basically I just want a way to keep these in sync with bootupd; we're not attempting to make a truly public library. Signed-off-by: Colin Walters <walters@verbum.org>
23 lines
658 B
TOML
23 lines
658 B
TOML
[package]
|
|
description = "Internal implementation component of bootc; do not use"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
name = "bootc-internal-blockdev"
|
|
repository = "https://github.com/bootc-dev/bootc"
|
|
version = "0.0.0"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.0.0" }
|
|
camino = { workspace = true, features = ["serde1"] }
|
|
fn-error-context = { workspace = true }
|
|
regex = "1.10.4"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
indoc = "2.0.5"
|
|
|
|
[lib]
|
|
path = "src/blockdev.rs" |