diff --git a/Cargo.lock b/Cargo.lock index d05743160..2e60287ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1557,14 +1557,13 @@ dependencies = [ [[package]] name = "rand" -version = "0.8.4" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", "rand_chacha", "rand_core", - "rand_hc", ] [[package]] @@ -1586,15 +1585,6 @@ dependencies = [ "getrandom", ] -[[package]] -name = "rand_hc" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" -dependencies = [ - "rand_core", -] - [[package]] name = "rayon" version = "1.5.1" diff --git a/crates/integration_test/Cargo.toml b/crates/integration_test/Cargo.toml index 4e193b21c..e98f23e40 100644 --- a/crates/integration_test/Cargo.toml +++ b/crates/integration_test/Cargo.toml @@ -16,7 +16,7 @@ oci-spec = { git = "https://github.com/containers/oci-spec-rs", rev = "54c5e386f once_cell = "1.9.0" pnet = "0.29.0" procfs = "0.12.0" -rand = "0.8.0" +rand = "0.8.5" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tar = "0.4" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index 94548acf7..ffde61fcd 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -38,4 +38,4 @@ wasmer-wasi = { version = "2.1.1", optional = true } oci-spec = { version = "0.5.3", features = ["proptests"] } quickcheck = "1" serial_test = "0.5.1" -rand = "0.8.4" +rand = "0.8.5"