chore(deps): update rust crate nanorand to 0.8 (#7772)

This commit is contained in:
renovate[bot] 2025-06-09 04:10:11 +00:00 committed by GitHub
parent 8e7b87bee8
commit d09c730c02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 15 additions and 6 deletions

View File

@ -15,6 +15,9 @@ skip-tree = [
{ name = "capacity_builder", version = "0.1.3" },
]
skip = [
# Flume uses an old version
{ name = "nanorand", version = "0.7.0" },
# Deno uses an old version
{ name = "which", version = "6.0.3" },

14
Cargo.lock generated
View File

@ -1459,7 +1459,7 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"nanorand 0.7.0",
"spin",
]
@ -2523,6 +2523,12 @@ dependencies = [
"getrandom 0.2.16",
]
[[package]]
name = "nanorand"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e3d189da485332e96ba8a5ef646a311871abd7915bf06ac848a9117f19cf6e4"
[[package]]
name = "nanoserde"
version = "0.2.1"
@ -4782,7 +4788,7 @@ dependencies = [
"bytemuck",
"criterion",
"naga",
"nanorand",
"nanorand 0.8.0",
"pollster",
"profiling",
"rayon",
@ -4894,7 +4900,7 @@ dependencies = [
"glam",
"ktx2",
"log",
"nanorand",
"nanorand 0.8.0",
"noise",
"obj",
"png",
@ -5009,7 +5015,7 @@ dependencies = [
"js-sys",
"libtest-mimic",
"log",
"nanorand",
"nanorand 0.8.0",
"nv-flip",
"parking_lot",
"png",

View File

@ -139,7 +139,7 @@ libm = { version = "0.2.6", default-features = false }
libtest-mimic = "0.8"
log = "0.4.21"
nanoserde = "0.2"
nanorand = { version = "0.7", default-features = false, features = ["wyrand"] }
nanorand = { version = "0.8", default-features = false, features = ["wyrand"] }
noise = "0.9"
num_cpus = "1"
# `half` requires 0.2.16 for `FromBytes` and `ToBytes`.

View File

@ -38,7 +38,7 @@ flume.workspace = true
glam = { workspace = true, features = ["bytemuck"] }
ktx2.workspace = true
log.workspace = true
nanorand.workspace = true
nanorand = { workspace = true, features = ["tls"] }
noise.workspace = true
obj.workspace = true
png.workspace = true