From 1dea8baed3169db240b7f6f41e89ecf5bec47a30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 18:08:33 +0000 Subject: [PATCH] build(deps): update rand requirement from 0.8 to 0.9 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.0...0.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- dc/s2n-quic-dc/Cargo.toml | 2 +- quic/s2n-quic-qns/Cargo.toml | 2 +- quic/s2n-quic-sim/Cargo.toml | 2 +- quic/s2n-quic/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dc/s2n-quic-dc/Cargo.toml b/dc/s2n-quic-dc/Cargo.toml index a84da682c4..7e9ee9d020 100644 --- a/dc/s2n-quic-dc/Cargo.toml +++ b/dc/s2n-quic-dc/Cargo.toml @@ -31,7 +31,7 @@ libc = "0.2" num-rational = { version = "0.4", default-features = false } once_cell = "1" pin-project-lite = "0.2" -rand = { version = "0.8", features = ["small_rng"] } +rand = { version = "0.9", features = ["small_rng"] } rand_chacha = "0.3" s2n-codec = { version = "=0.53.0", path = "../../common/s2n-codec", default-features = false } s2n-quic-core = { version = "=0.53.0", path = "../../quic/s2n-quic-core", default-features = false } diff --git a/quic/s2n-quic-qns/Cargo.toml b/quic/s2n-quic-qns/Cargo.toml index 52250103f4..f197807d97 100644 --- a/quic/s2n-quic-qns/Cargo.toml +++ b/quic/s2n-quic-qns/Cargo.toml @@ -22,7 +22,7 @@ futures = "0.3" http = "1.0" humansize = "2" lru = "0.12" -rand = "0.8" +rand = "0.9" s2n-codec = { path = "../../common/s2n-codec" } s2n-quic-core = { path = "../s2n-quic-core", features = ["testing"] } s2n-quic-h3 = { path = "../s2n-quic-h3" } diff --git a/quic/s2n-quic-sim/Cargo.toml b/quic/s2n-quic-sim/Cargo.toml index 03b41d4f0c..cfc8e86698 100644 --- a/quic/s2n-quic-sim/Cargo.toml +++ b/quic/s2n-quic-sim/Cargo.toml @@ -17,7 +17,7 @@ humantime = "2" indicatif = { version = "0.17", features = ["rayon"] } once_cell = "1" prost = "0.13" -rand = "0.8" +rand = "0.9" rayon = "1" s2n-quic = { path = "../s2n-quic", features = ["unstable-provider-io-testing", "provider-event-tracing"] } s2n-quic-core = { path = "../s2n-quic-core", features = ["testing"] } diff --git a/quic/s2n-quic/Cargo.toml b/quic/s2n-quic/Cargo.toml index 8794024e70..a7d5d0fd48 100644 --- a/quic/s2n-quic/Cargo.toml +++ b/quic/s2n-quic/Cargo.toml @@ -69,7 +69,7 @@ cuckoofilter = { version = "0.5", optional = true } futures = { version = "0.3", default-features = false, features = ["std"] } hash_hasher = { version = "2", optional = true } humansize = { version = "2", optional = true } -rand = "0.8" +rand = "0.9" rand_chacha = "0.3" s2n-codec = { version = "=0.53.0", path = "../../common/s2n-codec" } s2n-quic-core = { version = "=0.53.0", path = "../s2n-quic-core" }