Skip to content

Commit f6af497

Browse files
fix(deps): update rust (#2068)
1 parent 05725d8 commit f6af497

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tests-integration/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ bootc-kernel-cmdline = { path = "../kernel_cmdline", version = "0.0.0" }
3030
# This is a git dependency — not published to crates.io.
3131
# When updating, also check the bcvk-qemu Cargo.toml for its own
3232
# dependency versions (cap-std-ext, etc.) to avoid conflicts.
33-
bcvk-qemu = { git = "https://github.com/bootc-dev/bcvk", rev = "d4be4933e09796f355076ad6daa60d570e64cec8" }
33+
bcvk-qemu = { git = "https://github.com/bootc-dev/bcvk", rev = "3b4dc84453d7ebac9e544d15931f0a9cd3d26215" }
3434
data-encoding = "2.9"
3535
indicatif = { workspace = true }
3636
libtest-mimic = "0.8.0"
3737
oci-spec = "0.9.0"
38-
rand = "0.9"
38+
rand = "0.10"
3939
rexpect = "0.6"
4040
scopeguard = "1.2.0"
4141
tar = "0.4"

crates/tests-integration/src/container.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ fn test_variant_base_crosscheck() -> Result<()> {
191191
/// Verify exported tar has correct size/mode/content vs source.
192192
/// Checks all critical paths (kernel, boot) plus ~10% random sample.
193193
pub(crate) fn test_container_export_tar() -> Result<()> {
194-
use rand::{Rng, SeedableRng};
194+
use rand::{RngExt, SeedableRng};
195195
use std::io::Read;
196196
use std::os::unix::fs::MetadataExt;
197197

0 commit comments

Comments
 (0)