From 5d75dc3b0303f009429ccbfa5c1b09065eb0ca86 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 17:35:47 +0000 Subject: [PATCH] Update rand_core requirement from 0.6.4 to 0.9.0 Updates the requirements on [rand_core](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/rand_core-0.6.4...rand_core-0.6.4) --- updated-dependencies: - dependency-name: rand_core dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- qmdb/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmdb/Cargo.toml b/qmdb/Cargo.toml index 0059cf2..61311eb 100644 --- a/qmdb/Cargo.toml +++ b/qmdb/Cargo.toml @@ -23,7 +23,7 @@ byteorder = "1.5.0" xxhash-rust = { version = "0.8.10", features = ["xxh32", "xxh3"] } threadpool = "1.8.1" atomptr = "1.4.1" -rand_core = { version = "0.6.4", features = ["getrandom"] } +rand_core = { version = "0.9.0", features = ["getrandom"] } time = "0.3.36" rayon = "1.10.0" dashmap = "6.0.0-rc.1"