diff --git a/Cargo.lock b/Cargo.lock index fc8e6333..aa1c0028 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -493,9 +493,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rand" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", "rand_chacha", diff --git a/api/Cargo.toml b/api/Cargo.toml index 45145d36..3c00624b 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -11,4 +11,4 @@ description = "Makes a kernel compatible with the bootloader crate" [dependencies] [dev-dependencies] -rand = "0.8.4" +rand = "0.8.6" diff --git a/common/Cargo.toml b/common/Cargo.toml index 4fcc2ff6..a3217ca5 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -17,7 +17,7 @@ usize_conversions = "0.2.0" x86_64 = { version = "0.15.2" } xmas-elf = "0.8.0" raw-cpuid = "10.2.0" -rand = { version = "0.8.4", default-features = false } +rand = { version = "0.8.6", default-features = false } rand_hc = "0.3.1" uart_16550 = "0.3.2" log = "0.4.17"