mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
Literally just find and replace github.com/containers/bootc with github.com/bootc-dev/bootc We have the redirect in place so none of this is really important, but I figure removing as many instances of the old repo and replacing them with the current can't hurt for things like search engine optimization. Plus some non-zero number of people might assume one is a fork of the other or something. Signed-off-by: John Eckersberg <jeckersb@redhat.com>
25 lines
621 B
TOML
25 lines
621 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/bootc-dev/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" |