diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-27 01:47:54 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-27 01:47:54 +0100 |
commit | 3cc7df2954a6f1d69922ba1a4c0129db73a09327 (patch) | |
tree | db30c0af70dc5ea68586072f3da0b1a21723dbf4 /client/Cargo.toml | |
parent | 724e6e4d97f608282e891742565b1036f3e970d5 (diff) | |
download | weareserver-3cc7df2954a6f1d69922ba1a4c0129db73a09327.tar weareserver-3cc7df2954a6f1d69922ba1a4c0129db73a09327.tar.bz2 weareserver-3cc7df2954a6f1d69922ba1a4c0129db73a09327.tar.zst |
parallel texture loading which deadlocks wgpu -_-
Diffstat (limited to 'client/Cargo.toml')
-rw-r--r-- | client/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/Cargo.toml b/client/Cargo.toml index 762e711..4a22bf6 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -23,3 +23,8 @@ bytemuck = "1.21.0" xdg = "2.5.2" nnnoiseless = "0.5.1" humansize = "2.1.3" +rayon = "1.10.0" +parking_lot = "0.12.3" + +[features] +deadlock_detection = ["parking_lot/deadlock_detection"] |