diff --git a/Cargo.lock b/Cargo.lock index 59d6b50a6..f1173d3e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,7 @@ dependencies = [ "base64 0.23.0", "bcvk-qemu", "bootc-internal-mount", - "bootc-internal-utils", + "bootc-internal-utils 1.16.8", "camino", "cap-std-ext", "cfg-if", @@ -292,7 +292,7 @@ version = "1.16.3" source = "git+https://github.com/bootc-dev/bootc?rev=54768712ee0308c51ccd27e8d7772d9c9f9aad39#54768712ee0308c51ccd27e8d7772d9c9f9aad39" dependencies = [ "anyhow", - "bootc-internal-utils", + "bootc-internal-utils 1.16.3", "camino", "cap-std-ext", "fn-error-context", @@ -324,6 +324,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 eb89254bc..5c7af2bcd 100644 --- a/crates/kit/Cargo.toml +++ b/crates/kit/Cargo.toml @@ -49,7 +49,7 @@ cpio = "0.4" 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-utils = { package = "bootc-internal-utils", git = "https://github.com/bootc-dev/bootc", rev = "54768712ee0308c51ccd27e8d7772d9c9f9aad39" } +bootc-utils = { package = "bootc-internal-utils", git = "https://github.com/bootc-dev/bootc", rev = "bb674f115fd9f23ec2c4ca4f186e6f65f9111c26" } rustix = { version = "1", features = ["thread", "net", "fs", "pipe", "system", "process", "mount"] } vsock = "0.5" nix = { version = "0.31", features = ["socket"] }