diff --git a/Cargo.lock b/Cargo.lock index d9b88fa9a..f72ab8b59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -214,7 +214,7 @@ dependencies = [ "base64 0.23.0", "bcvk-qemu", "bootc-internal-mount", - "bootc-internal-utils", + "bootc-internal-utils 1.16.3", "camino", "cap-std-ext", "cfg-if", @@ -311,11 +311,11 @@ dependencies = [ [[package]] name = "bootc-internal-mount" -version = "1.16.3" -source = "git+https://github.com/bootc-dev/bootc?rev=54768712ee0308c51ccd27e8d7772d9c9f9aad39#54768712ee0308c51ccd27e8d7772d9c9f9aad39" +version = "1.16.8" +source = "git+https://github.com/bootc-dev/bootc?rev=bb674f115fd9f23ec2c4ca4f186e6f65f9111c26#bb674f115fd9f23ec2c4ca4f186e6f65f9111c26" dependencies = [ "anyhow", - "bootc-internal-utils", + "bootc-internal-utils 1.16.8", "camino", "cap-std-ext", "fn-error-context", @@ -347,6 +347,27 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "bootc-internal-utils" +version = "1.16.8" +source = "git+https://github.com/bootc-dev/bootc?rev=bb674f115fd9f23ec2c4ca4f186e6f65f9111c26#bb674f115fd9f23ec2c4ca4f186e6f65f9111c26" +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 a8d793054..56f5cd579 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 = "54768712ee0308c51ccd27e8d7772d9c9f9aad39" } +bootc-mount = { package = "bootc-internal-mount", git = "https://github.com/bootc-dev/bootc", rev = "bb674f115fd9f23ec2c4ca4f186e6f65f9111c26" } bootc-utils = { package = "bootc-internal-utils", git = "https://github.com/bootc-dev/bootc", rev = "54768712ee0308c51ccd27e8d7772d9c9f9aad39" } rustix = { version = "1", features = ["thread", "net", "fs", "pipe", "system", "process", "mount"] } vsock = "0.5"