diff --git a/Cargo.lock b/Cargo.lock index 2f1340ffa..f686c17bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -170,7 +170,7 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "bcvk-qemu" version = "0.1.0" -source = "git+https://github.com/bootc-dev/bcvk?rev=f4dd05a74ccb54084093c9167317a14356ca53e4#f4dd05a74ccb54084093c9167317a14356ca53e4" +source = "git+https://github.com/bootc-dev/bcvk?rev=a422cde52bf28d1e4280ed6b72889d3fa41800da#a422cde52bf28d1e4280ed6b72889d3fa41800da" dependencies = [ "camino", "cap-std-ext 5.1.2", @@ -827,7 +827,7 @@ dependencies = [ "async-compression", "bytes", "composefs", - "containers-image-proxy", + "containers-image-proxy 0.9.2", "fn-error-context", "hex", "indicatif 0.17.11", @@ -924,6 +924,25 @@ dependencies = [ "tracing", ] +[[package]] +name = "containers-image-proxy" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a00f7ac9ad66c570e37fcbf7644d678dcfabb50a4d8e85136ceb2fa45335597c" +dependencies = [ + "cap-std-ext 5.1.2", + "futures-util", + "itertools", + "oci-spec 0.9.0", + "rustix", + "semver", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tracing", +] + [[package]] name = "convert_case" version = "0.10.0" @@ -2185,7 +2204,7 @@ dependencies = [ "clap", "clap_mangen", "comfy-table", - "containers-image-proxy", + "containers-image-proxy 0.10.0", "flate2", "fn-error-context", "futures-util", diff --git a/crates/ostree-ext/Cargo.toml b/crates/ostree-ext/Cargo.toml index b2566dcfd..46cc4527c 100644 --- a/crates/ostree-ext/Cargo.toml +++ b/crates/ostree-ext/Cargo.toml @@ -39,7 +39,7 @@ xshell = { workspace = true, optional = true } # Crate-specific dependencies comfy-table = "7.1.1" -containers-image-proxy = "0.9.2" +containers-image-proxy = "0.10.0" flate2 = { features = ["zlib"], default-features = false, version = "1.0.20" } futures-util = "0.3.13" gvariant = "0.5.0" diff --git a/crates/tests-integration/Cargo.toml b/crates/tests-integration/Cargo.toml index 0ae7e4346..dd866ceab 100644 --- a/crates/tests-integration/Cargo.toml +++ b/crates/tests-integration/Cargo.toml @@ -30,7 +30,7 @@ bootc-kernel-cmdline = { path = "../kernel_cmdline", version = "0.0.0" } # This is a git dependency — not published to crates.io. # When updating, also check the bcvk-qemu Cargo.toml for its own # dependency versions (cap-std-ext, etc.) to avoid conflicts. -bcvk-qemu = { git = "https://github.com/bootc-dev/bcvk", rev = "f4dd05a74ccb54084093c9167317a14356ca53e4" } +bcvk-qemu = { git = "https://github.com/bootc-dev/bcvk", rev = "a422cde52bf28d1e4280ed6b72889d3fa41800da" } data-encoding = "2.9" indicatif = { workspace = true } libtest-mimic = "0.8.0"