-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This code has been forked between bootupd and coreos-installer and here. This is prep for having bootupd pull it from bootc's git so we can deduplicate. Signed-off-by: Colin Walters <[email protected]>
- Loading branch information
Showing
9 changed files
with
102 additions
and
68 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[package] | ||
description = "Internal blockdev code" | ||
# Should never be published to crates.io | ||
publish = false | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
name = "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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.