diff --git a/Cargo.lock b/Cargo.lock index 5cf0ab183..14b6931b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ "base64 0.23.1", "bcvk-qemu", "bootc-internal-mount", - "bootc-internal-utils", + "bootc-internal-utils 1.16.11", "camino", "cap-std-ext", "cfg-if", @@ -288,11 +288,11 @@ dependencies = [ [[package]] name = "bootc-internal-mount" -version = "1.16.11" -source = "git+https://github.com/bootc-dev/bootc?rev=add7a909584c832c563bdc3a45c61e42f736ecf2#add7a909584c832c563bdc3a45c61e42f736ecf2" +version = "1.16.12" +source = "git+https://github.com/bootc-dev/bootc?rev=db1f3ef3266415bc91aa845ee9f806ffb53136d6#db1f3ef3266415bc91aa845ee9f806ffb53136d6" dependencies = [ "anyhow", - "bootc-internal-utils", + "bootc-internal-utils 1.16.12", "camino", "cap-std-ext", "fn-error-context", @@ -324,6 +324,27 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "bootc-internal-utils" +version = "1.16.12" +source = "git+https://github.com/bootc-dev/bootc?rev=db1f3ef3266415bc91aa845ee9f806ffb53136d6#db1f3ef3266415bc91aa845ee9f806ffb53136d6" +dependencies = [ + "anstream", + "anyhow", + "cap-std-ext", + "chrono", + "owo-colors", + "rustix", + "serde", + "serde_json", + "shlex", + "tempfile", + "tokio", + "tracing", + "tracing-journald", + "tracing-subscriber", +] + [[package]] name = "bstr" version = "1.12.0" diff --git a/crates/kit/Cargo.toml b/crates/kit/Cargo.toml index 202900ca3..2c906e0f6 100644 --- a/crates/kit/Cargo.toml +++ b/crates/kit/Cargo.toml @@ -48,7 +48,7 @@ cpio = "0.4" [target.'cfg(target_os = "linux")'.dependencies] bcvk-qemu = { path = "../bcvk-qemu" } cap-std-ext = { workspace = true } -bootc-mount = { package = "bootc-internal-mount", git = "https://github.com/bootc-dev/bootc", rev = "add7a909584c832c563bdc3a45c61e42f736ecf2" } +bootc-mount = { package = "bootc-internal-mount", git = "https://github.com/bootc-dev/bootc", rev = "db1f3ef3266415bc91aa845ee9f806ffb53136d6" } bootc-utils = { package = "bootc-internal-utils", git = "https://github.com/bootc-dev/bootc", rev = "add7a909584c832c563bdc3a45c61e42f736ecf2" } rustix = { version = "1", features = ["thread", "net", "fs", "pipe", "system", "process", "mount"] } vsock = "0.5"