From 4f8ca86a659c70af0ac7537b5a728a2fecea5ed6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 18:44:34 +0000 Subject: [PATCH] Update rand requirement from 0.8.5 to 0.9.0 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/0.8.5...0.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- capnp-rpc/examples/streaming/Cargo.toml | 2 +- example/fill_random_values/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/capnp-rpc/examples/streaming/Cargo.toml b/capnp-rpc/examples/streaming/Cargo.toml index bc73685e8..6f86cd20f 100644 --- a/capnp-rpc/examples/streaming/Cargo.toml +++ b/capnp-rpc/examples/streaming/Cargo.toml @@ -15,7 +15,7 @@ capnpc = { path = "../../../capnpc" } [dependencies] capnp = { path = "../../../capnp" } futures = "0.3.0" -rand = "0.8.5" +rand = "0.9.0" sha2 = { version = "0.10.8" } base16 = { version = "0.2" } tokio = { version = "1.0.0", features = ["net", "rt", "macros"]} diff --git a/example/fill_random_values/Cargo.toml b/example/fill_random_values/Cargo.toml index e968b4d74..c85d815ea 100644 --- a/example/fill_random_values/Cargo.toml +++ b/example/fill_random_values/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" keywords = ["encoding", "protocol", "serialization"] [dependencies] -rand = "0.8.5" +rand = "0.9.0" [dependencies.capnp] path = "../../capnp"