1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-06 18:46:25 +01:00
Files
bootc/blockdev/Cargo.toml
Colin Walters fa4c2b50dd Rename internal blockdev crate to bootc-blockdev
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>
2025-01-24 13:14:53 -05:00

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"