fix(lockfile): idk why but it insisted

This commit is contained in:
Nova
2025-09-21 00:44:29 -07:00
parent 76fc1bfab5
commit 3e4be41d3f

56
Cargo.lock generated
View File

@@ -1074,7 +1074,7 @@ dependencies = [
"glam",
"itertools 0.14.0",
"libm",
"rand",
"rand 0.8.5",
"rand_distr",
"serde",
"smallvec",
@@ -2868,7 +2868,7 @@ dependencies = [
"bytemuck",
"libm",
"mint",
"rand",
"rand 0.8.5",
"serde",
]
@@ -3864,7 +3864,7 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
dependencies = [
"rand",
"rand 0.8.5",
]
[[package]]
@@ -4555,7 +4555,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
dependencies = [
"phf_shared",
"rand",
"rand 0.8.5",
]
[[package]]
@@ -4846,8 +4846,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
"rand_chacha 0.3.1",
"rand_core 0.6.4",
]
[[package]]
name = "rand"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
dependencies = [
"rand_chacha 0.9.0",
"rand_core 0.9.3",
]
[[package]]
@@ -4857,7 +4867,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
"rand_core 0.6.4",
]
[[package]]
name = "rand_chacha"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
dependencies = [
"ppv-lite86",
"rand_core 0.9.3",
]
[[package]]
@@ -4869,6 +4889,15 @@ dependencies = [
"getrandom 0.2.16",
]
[[package]]
name = "rand_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
dependencies = [
"getrandom 0.3.3",
]
[[package]]
name = "rand_distr"
version = "0.4.3"
@@ -4876,7 +4905,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
dependencies = [
"num-traits",
"rand",
"rand 0.8.5",
]
[[package]]
@@ -5493,7 +5522,7 @@ dependencies = [
"nanoid",
"openxr",
"parking_lot 0.12.4",
"rand",
"rand 0.9.2",
"rustc-hash 2.1.1",
"rustix 1.1.2",
"serde",
@@ -5988,7 +6017,7 @@ dependencies = [
"indexmap 1.9.3",
"pin-project",
"pin-project-lite",
"rand",
"rand 0.8.5",
"slab",
"tokio",
"tokio-util",
@@ -6553,17 +6582,20 @@ dependencies = [
[[package]]
name = "waynest"
version = "0.0.26"
source = "git+https://github.com/technobaboo/waynest.git?branch=fix%2Ffd_clear#d3a1a9d849107f12f26991b327b8d3769381a3cb"
source = "git+https://github.com/verdiwm/waynest.git?branch=codec-test#d03960abdd585d923cb068297487932511d997cb"
dependencies = [
"async-trait",
"bitflags 2.9.4",
"bytes",
"futures-core",
"futures-sink",
"futures-util",
"pin-project-lite",
"rustix 1.1.2",
"thiserror 2.0.16",
"tokio",
"tokio-stream",
"tokio-util",
"tracing",
"waynest-macros",
]
@@ -6571,7 +6603,7 @@ dependencies = [
[[package]]
name = "waynest-macros"
version = "0.0.26"
source = "git+https://github.com/technobaboo/waynest.git?branch=fix%2Ffd_clear#d3a1a9d849107f12f26991b327b8d3769381a3cb"
source = "git+https://github.com/verdiwm/waynest.git?branch=codec-test#d03960abdd585d923cb068297487932511d997cb"
dependencies = [
"quote",
"syn 2.0.104",