mirror of
https://github.com/containers/bootc.git
synced 2026-02-06 18:46:25 +01:00
To make a bit clearer this is an internal-to-bootc thing; but also because other projects like bootupd may start referencing it. Signed-off-by: Colin Walters <walters@verbum.org>
25 lines
622 B
TOML
25 lines
622 B
TOML
[package]
|
|
description = "Internal blockdev code"
|
|
# Should never be published to crates.io
|
|
publish = false
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
name = "bootc-blockdev"
|
|
repository = "https://github.com/containers/bootc"
|
|
version = "0.0.0"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bootc-utils = { path = "../utils" }
|
|
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" |