From 375cbb8f2404372ed7bc936189a3044e9769f16a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 05:10:46 +0000 Subject: [PATCH] Update rand_chacha requirement from 0.9 to 0.10 Updates the requirements on [rand_chacha](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/0.9.0...0.10.0) --- updated-dependencies: - dependency-name: rand_chacha dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/geo_filters/Cargo.toml | 4 ++-- crates/string-offsets/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/geo_filters/Cargo.toml b/crates/geo_filters/Cargo.toml index 2e11184..c4c9cbc 100644 --- a/crates/geo_filters/Cargo.toml +++ b/crates/geo_filters/Cargo.toml @@ -34,13 +34,13 @@ rand = { version = "0.9", optional = true } rayon = { version = "1.7", optional = true } regex = { version = "1", optional = true } serde = { version = "1.0", default-features = false, optional = true } -rand_chacha = { version = "0.9", optional = true } +rand_chacha = { version = "0.10", optional = true } [dev-dependencies] criterion = "0.8" geo_filters = { path = ".", features = ["evaluation"] } rand = "0.9" -rand_chacha = "0.9" +rand_chacha = "0.10" rayon = "1.7" [[bench]] diff --git a/crates/string-offsets/Cargo.toml b/crates/string-offsets/Cargo.toml index cdac009..8094e6f 100644 --- a/crates/string-offsets/Cargo.toml +++ b/crates/string-offsets/Cargo.toml @@ -21,7 +21,7 @@ wasm-bindgen = { version = "0.2", optional = true } [dev-dependencies] rand = "0.9" -rand_chacha = "0.9" +rand_chacha = "0.10" criterion = "0.8" [[bench]]