Skip to content

Commit

Permalink
build(deps): update rand requirement from 0.8 to 0.9
Browse files Browse the repository at this point in the history
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](rust-random/rand@0.8.0...0.9.0)

---
updated-dependencies:
- dependency-name: rand
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Feb 6, 2025
1 parent b871ad0 commit 1dea8ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dc/s2n-quic-dc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-qns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-sim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit 1dea8ba

Please sign in to comment.