From db85fe3aecbc68192a4b933df8e15a0d9234b8b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 01:57:12 +0000 Subject: [PATCH] Update rand requirement from 0.9 to 0.10 Updates the requirements on [rand](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.9.1...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- example-service/Cargo.toml | 2 +- tarpc/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example-service/Cargo.toml b/example-service/Cargo.toml index 2d63f443d..cb1cb4cb9 100644 --- a/example-service/Cargo.toml +++ b/example-service/Cargo.toml @@ -20,7 +20,7 @@ log = "0.4" futures = "0.3" opentelemetry = { version = "0.31" } opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic"] } -rand = "0.9" +rand = "0.10" tarpc = { version = "0.37", path = "../tarpc", features = ["full"] } tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] } tracing = { version = "0.1" } diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 5ac0fde48..b42d08d18 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -46,7 +46,7 @@ fnv = "1.0" futures = "0.3" humantime = "2.3" pin-project = "1.1" -rand = "0.9" +rand = "0.10" serde = { optional = true, version = "1.0", features = ["derive"] } static_assertions = "1.1" tarpc-plugins = { path = "../plugins", version = "0.14" }