fuzzgpu 0.1.3__tar.gz → 0.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/Cargo.lock +943 -316
  2. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/Cargo.toml +1 -1
  3. fuzzgpu-0.1.5/PKG-INFO +559 -0
  4. fuzzgpu-0.1.5/README.md +529 -0
  5. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/crates/fuzzgpu-core/Cargo.toml +12 -1
  6. fuzzgpu-0.1.5/crates/fuzzgpu-core/benches/bench.rs +306 -0
  7. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/damerau.rs +787 -0
  8. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/crates/fuzzgpu-core/src/fuzz.rs +90 -35
  9. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/gpu.rs +693 -0
  10. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/jaro.rs +1322 -0
  11. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/levenshtein.rs +1825 -0
  12. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/lib.rs +91 -0
  13. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/needleman.rs +1030 -0
  14. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/damerau.wgsl +132 -0
  15. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/damerau_matrix.wgsl +110 -0
  16. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/jaro.wgsl +155 -0
  17. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/crates/fuzzgpu-core/src/shaders/jaro_matrix.wgsl +32 -29
  18. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/levenshtein_cdist_myers.wgsl +145 -0
  19. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/levenshtein_myers.wgsl +145 -0
  20. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/levenshtein_short.wgsl +78 -0
  21. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/needleman_affine.wgsl +112 -0
  22. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/shaders/needleman_wavefront.wgsl +150 -0
  23. fuzzgpu-0.1.5/crates/fuzzgpu-core/src/simd.rs +1551 -0
  24. fuzzgpu-0.1.5/crates/fuzzgpu-core/tests/differential.proptest-regressions +7 -0
  25. fuzzgpu-0.1.5/crates/fuzzgpu-core/tests/differential.rs +1039 -0
  26. fuzzgpu-0.1.5/crates/fuzzgpu-core/tests/fixtures/broken.wgsl +9 -0
  27. fuzzgpu-0.1.5/crates/fuzzgpu-core/tests/kernel_registration.rs +81 -0
  28. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/crates/fuzzgpu-python/Cargo.toml +5 -3
  29. fuzzgpu-0.1.5/crates/fuzzgpu-python/src/lib.rs +946 -0
  30. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/crates/fuzzgpu-wasm/Cargo.toml +4 -1
  31. fuzzgpu-0.1.5/crates/fuzzgpu-wasm/src/lib.rs +155 -0
  32. fuzzgpu-0.1.5/crates/fuzzgpu-wasm/tests/differential_harness.js +237 -0
  33. fuzzgpu-0.1.5/crates/fuzzgpu-wasm/tests/js_api.test.cjs +63 -0
  34. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/pyproject.toml +2 -3
  35. fuzzgpu-0.1.5/python/fuzzgpu/__init__.py +178 -0
  36. fuzzgpu-0.1.5/python/fuzzgpu/__init__.pyi +107 -0
  37. fuzzgpu-0.1.5/python/fuzzgpu/distance/DamerauLevenshtein.py +43 -0
  38. fuzzgpu-0.1.5/python/fuzzgpu/distance/Hamming.py +37 -0
  39. fuzzgpu-0.1.5/python/fuzzgpu/distance/Indel.py +42 -0
  40. fuzzgpu-0.1.5/python/fuzzgpu/distance/Jaro.py +24 -0
  41. fuzzgpu-0.1.5/python/fuzzgpu/distance/JaroWinkler.py +26 -0
  42. fuzzgpu-0.1.5/python/fuzzgpu/distance/Levenshtein.py +111 -0
  43. fuzzgpu-0.1.5/python/fuzzgpu/distance/OSA.py +48 -0
  44. fuzzgpu-0.1.5/python/fuzzgpu/distance/__init__.py +5 -0
  45. fuzzgpu-0.1.5/python/fuzzgpu/distance/_common.py +6 -0
  46. fuzzgpu-0.1.5/python/fuzzgpu/fuzz.py +105 -0
  47. fuzzgpu-0.1.5/python/fuzzgpu/fuzz.pyi +36 -0
  48. fuzzgpu-0.1.5/python/fuzzgpu/process.py +232 -0
  49. fuzzgpu-0.1.5/python/fuzzgpu/process.pyi +55 -0
  50. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/tests/test_basic.py +7 -1
  51. fuzzgpu-0.1.5/tests/test_out_buffers.py +160 -0
  52. fuzzgpu-0.1.5/tests/test_rapidfuzz_compat.py +43 -0
  53. fuzzgpu-0.1.5/tests/wasm_python_differential.py +171 -0
  54. fuzzgpu-0.1.3/PKG-INFO +0 -256
  55. fuzzgpu-0.1.3/README.md +0 -225
  56. fuzzgpu-0.1.3/assets/banner.svg +0 -66
  57. fuzzgpu-0.1.3/assets/github-stats.svg +0 -51
  58. fuzzgpu-0.1.3/assets/logo.svg +0 -46
  59. fuzzgpu-0.1.3/assets/top-languages.svg +0 -62
  60. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/damerau.rs +0 -193
  61. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/gpu.rs +0 -146
  62. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/jaro.rs +0 -545
  63. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/levenshtein.rs +0 -493
  64. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/lib.rs +0 -22
  65. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/needleman.rs +0 -178
  66. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/shaders/jaro.wgsl +0 -123
  67. fuzzgpu-0.1.3/crates/fuzzgpu-core/src/simd.rs +0 -282
  68. fuzzgpu-0.1.3/crates/fuzzgpu-python/src/lib.rs +0 -465
  69. fuzzgpu-0.1.3/crates/fuzzgpu-wasm/src/lib.rs +0 -92
  70. fuzzgpu-0.1.3/python/fuzzgpu/__init__.py +0 -109
  71. fuzzgpu-0.1.3/python/fuzzgpu/fuzz.py +0 -29
  72. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/LICENSE +0 -0
  73. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/assets/logo.png +0 -0
  74. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/crates/fuzzgpu-core/src/shaders/levenshtein.wgsl +0 -0
  75. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/crates/fuzzgpu-core/src/shaders/levenshtein_matrix.wgsl +0 -0
  76. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/tests/test_api_signatures.py +0 -0
  77. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/tests/test_concurrency.py +0 -0
  78. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/tests/test_edge_cases.py +0 -0
  79. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/tests/test_invariants.py +0 -0
  80. {fuzzgpu-0.1.3 → fuzzgpu-0.1.5}/tests/test_stress.py +0 -0
@@ -2,6 +2,21 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
5
20
  [[package]]
6
21
  name = "android_system_properties"
7
22
  version = "0.1.6"
@@ -11,6 +26,18 @@ dependencies = [
11
26
  "libc",
12
27
  ]
13
28
 
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
14
41
  [[package]]
15
42
  name = "arrayvec"
16
43
  version = "0.7.8"
@@ -38,7 +65,16 @@ version = "0.8.0"
38
65
  source = "registry+https://github.com/rust-lang/crates.io-index"
39
66
  checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
40
67
  dependencies = [
41
- "bit-vec",
68
+ "bit-vec 0.8.0",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "bit-set"
73
+ version = "0.10.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "09ec2f926cc3060f09db9ebc5b52823d85268d24bb917e472c0c4bea35780a7d"
76
+ dependencies = [
77
+ "bit-vec 0.9.1",
42
78
  ]
43
79
 
44
80
  [[package]]
@@ -48,25 +84,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
48
84
  checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
49
85
 
50
86
  [[package]]
51
- name = "bitflags"
52
- version = "1.3.2"
87
+ name = "bit-vec"
88
+ version = "0.9.1"
53
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
54
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
90
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
55
91
 
56
92
  [[package]]
57
93
  name = "bitflags"
58
94
  version = "2.13.1"
59
95
  source = "registry+https://github.com/rust-lang/crates.io-index"
60
96
  checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
61
- dependencies = [
62
- "serde_core",
63
- ]
64
97
 
65
98
  [[package]]
66
- name = "block"
67
- version = "0.1.6"
99
+ name = "block2"
100
+ version = "0.6.2"
68
101
  source = "registry+https://github.com/rust-lang/crates.io-index"
69
- checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
102
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
103
+ dependencies = [
104
+ "objc2",
105
+ ]
70
106
 
71
107
  [[package]]
72
108
  name = "bumpalo"
@@ -94,6 +130,12 @@ dependencies = [
94
130
  "syn 3.0.3",
95
131
  ]
96
132
 
133
+ [[package]]
134
+ name = "cast"
135
+ version = "0.3.0"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
138
+
97
139
  [[package]]
98
140
  name = "cfg-if"
99
141
  version = "1.0.4"
@@ -107,40 +149,102 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
107
149
  checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
108
150
 
109
151
  [[package]]
110
- name = "codespan-reporting"
111
- version = "0.11.1"
152
+ name = "ciborium"
153
+ version = "0.2.2"
112
154
  source = "registry+https://github.com/rust-lang/crates.io-index"
113
- checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
155
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
114
156
  dependencies = [
115
- "termcolor",
116
- "unicode-width",
157
+ "ciborium-io",
158
+ "ciborium-ll",
159
+ "serde",
117
160
  ]
118
161
 
119
162
  [[package]]
120
- name = "core-foundation"
121
- version = "0.9.4"
163
+ name = "ciborium-io"
164
+ version = "0.2.2"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
167
+
168
+ [[package]]
169
+ name = "ciborium-ll"
170
+ version = "0.2.2"
122
171
  source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
172
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
124
173
  dependencies = [
125
- "core-foundation-sys",
126
- "libc",
174
+ "ciborium-io",
175
+ "half",
127
176
  ]
128
177
 
129
178
  [[package]]
130
- name = "core-foundation-sys"
131
- version = "0.8.7"
179
+ name = "clap"
180
+ version = "4.6.6"
132
181
  source = "registry+https://github.com/rust-lang/crates.io-index"
133
- checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
182
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
183
+ dependencies = [
184
+ "clap_builder",
185
+ ]
134
186
 
135
187
  [[package]]
136
- name = "core-graphics-types"
137
- version = "0.1.3"
188
+ name = "clap_builder"
189
+ version = "4.6.6"
138
190
  source = "registry+https://github.com/rust-lang/crates.io-index"
139
- checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
191
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
140
192
  dependencies = [
141
- "bitflags 1.3.2",
142
- "core-foundation",
143
- "libc",
193
+ "anstyle",
194
+ "clap_lex",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "clap_lex"
199
+ version = "1.1.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
202
+
203
+ [[package]]
204
+ name = "codespan-reporting"
205
+ version = "0.13.1"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
208
+ dependencies = [
209
+ "serde",
210
+ "termcolor",
211
+ "unicode-width",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "criterion"
216
+ version = "0.5.1"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
219
+ dependencies = [
220
+ "anes",
221
+ "cast",
222
+ "ciborium",
223
+ "clap",
224
+ "criterion-plot",
225
+ "is-terminal",
226
+ "itertools",
227
+ "num-traits",
228
+ "once_cell",
229
+ "oorandom",
230
+ "plotters",
231
+ "rayon",
232
+ "regex",
233
+ "serde",
234
+ "serde_derive",
235
+ "serde_json",
236
+ "tinytemplate",
237
+ "walkdir",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "criterion-plot"
242
+ version = "0.5.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
245
+ dependencies = [
246
+ "cast",
247
+ "itertools",
144
248
  ]
145
249
 
146
250
  [[package]]
@@ -168,6 +272,31 @@ version = "0.8.22"
168
272
  source = "registry+https://github.com/rust-lang/crates.io-index"
169
273
  checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
170
274
 
275
+ [[package]]
276
+ name = "crunchy"
277
+ version = "0.2.4"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
280
+
281
+ [[package]]
282
+ name = "dispatch2"
283
+ version = "0.3.1"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
286
+ dependencies = [
287
+ "bitflags",
288
+ "objc2",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "dlib"
293
+ version = "0.5.3"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
296
+ dependencies = [
297
+ "libloading",
298
+ ]
299
+
171
300
  [[package]]
172
301
  name = "document-features"
173
302
  version = "0.2.12"
@@ -190,37 +319,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
190
319
  checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
191
320
 
192
321
  [[package]]
193
- name = "foldhash"
194
- version = "0.1.5"
322
+ name = "errno"
323
+ version = "0.3.14"
195
324
  source = "registry+https://github.com/rust-lang/crates.io-index"
196
- checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
325
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
326
+ dependencies = [
327
+ "libc",
328
+ "windows-sys",
329
+ ]
197
330
 
198
331
  [[package]]
199
- name = "foreign-types"
200
- version = "0.5.0"
332
+ name = "fastrand"
333
+ version = "2.5.0"
201
334
  source = "registry+https://github.com/rust-lang/crates.io-index"
202
- checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
203
- dependencies = [
204
- "foreign-types-macros",
205
- "foreign-types-shared",
206
- ]
335
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
207
336
 
208
337
  [[package]]
209
- name = "foreign-types-macros"
210
- version = "0.2.4"
338
+ name = "fnv"
339
+ version = "1.0.7"
211
340
  source = "registry+https://github.com/rust-lang/crates.io-index"
212
- checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
213
- dependencies = [
214
- "proc-macro2",
215
- "quote",
216
- "syn 3.0.3",
217
- ]
341
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
218
342
 
219
343
  [[package]]
220
- name = "foreign-types-shared"
221
- version = "0.3.1"
344
+ name = "foldhash"
345
+ version = "0.2.0"
222
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
223
- checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
347
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
224
348
 
225
349
  [[package]]
226
350
  name = "futures-core"
@@ -248,25 +372,52 @@ dependencies = [
248
372
 
249
373
  [[package]]
250
374
  name = "fuzzgpu-core"
251
- version = "0.1.3"
375
+ version = "0.1.5"
252
376
  dependencies = [
253
377
  "bytemuck",
378
+ "criterion",
254
379
  "log",
255
380
  "pollster",
381
+ "proptest",
256
382
  "rayon",
257
- "thiserror 2.0.20",
383
+ "thiserror",
258
384
  "wgpu",
259
385
  ]
260
386
 
261
387
  [[package]]
262
388
  name = "fuzzgpu-python"
263
- version = "0.1.3"
389
+ version = "0.1.5"
264
390
  dependencies = [
265
391
  "fuzzgpu-core",
392
+ "log",
393
+ "numpy",
266
394
  "pollster",
267
395
  "pyo3",
268
396
  ]
269
397
 
398
+ [[package]]
399
+ name = "getrandom"
400
+ version = "0.3.4"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
403
+ dependencies = [
404
+ "cfg-if",
405
+ "libc",
406
+ "r-efi 5.3.0",
407
+ "wasip2",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "getrandom"
412
+ version = "0.4.3"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
415
+ dependencies = [
416
+ "cfg-if",
417
+ "libc",
418
+ "r-efi 6.0.0",
419
+ ]
420
+
270
421
  [[package]]
271
422
  name = "gl_generator"
272
423
  version = "0.14.0"
@@ -280,9 +431,9 @@ dependencies = [
280
431
 
281
432
  [[package]]
282
433
  name = "glow"
283
- version = "0.16.0"
434
+ version = "0.17.0"
284
435
  source = "registry+https://github.com/rust-lang/crates.io-index"
285
- checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08"
436
+ checksum = "29038e1c483364cc6bb3cf78feee1816002e127c331a1eec55a4d202b9e1adb5"
286
437
  dependencies = [
287
438
  "js-sys",
288
439
  "slotmap",
@@ -299,63 +450,40 @@ dependencies = [
299
450
  "gl_generator",
300
451
  ]
301
452
 
302
- [[package]]
303
- name = "gpu-alloc"
304
- version = "0.6.2"
305
- source = "registry+https://github.com/rust-lang/crates.io-index"
306
- checksum = "45cf04b2726f02df5508c6de726acdc90cdf97ac771a9a0ffd8ba10a6e696bf9"
307
- dependencies = [
308
- "bitflags 2.13.1",
309
- "gpu-alloc-types",
310
- ]
311
-
312
- [[package]]
313
- name = "gpu-alloc-types"
314
- version = "0.3.1"
315
- source = "registry+https://github.com/rust-lang/crates.io-index"
316
- checksum = "b2bbed164dd10ed526c2e4fe3e721ca4a71c61730e5aafac6844b417b3227058"
317
- dependencies = [
318
- "bitflags 2.13.1",
319
- ]
320
-
321
453
  [[package]]
322
454
  name = "gpu-allocator"
323
- version = "0.27.0"
455
+ version = "0.28.0"
324
456
  source = "registry+https://github.com/rust-lang/crates.io-index"
325
- checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
457
+ checksum = "51255ea7cfaadb6c5f1528d43e92a82acb2b96c43365989a28b2d44ee38f8795"
326
458
  dependencies = [
459
+ "ash",
460
+ "hashbrown 0.16.1",
327
461
  "log",
328
462
  "presser",
329
- "thiserror 1.0.69",
463
+ "thiserror",
330
464
  "windows",
331
465
  ]
332
466
 
333
467
  [[package]]
334
- name = "gpu-descriptor"
335
- version = "0.3.2"
336
- source = "registry+https://github.com/rust-lang/crates.io-index"
337
- checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
338
- dependencies = [
339
- "bitflags 2.13.1",
340
- "gpu-descriptor-types",
341
- "hashbrown 0.15.5",
342
- ]
343
-
344
- [[package]]
345
- name = "gpu-descriptor-types"
346
- version = "0.2.0"
468
+ name = "half"
469
+ version = "2.7.1"
347
470
  source = "registry+https://github.com/rust-lang/crates.io-index"
348
- checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
471
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
349
472
  dependencies = [
350
- "bitflags 2.13.1",
473
+ "cfg-if",
474
+ "crunchy",
475
+ "num-traits",
476
+ "zerocopy",
351
477
  ]
352
478
 
353
479
  [[package]]
354
480
  name = "hashbrown"
355
- version = "0.15.5"
481
+ version = "0.16.1"
356
482
  source = "registry+https://github.com/rust-lang/crates.io-index"
357
- checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
483
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
358
484
  dependencies = [
485
+ "allocator-api2",
486
+ "equivalent",
359
487
  "foldhash",
360
488
  ]
361
489
 
@@ -364,6 +492,9 @@ name = "hashbrown"
364
492
  version = "0.17.1"
365
493
  source = "registry+https://github.com/rust-lang/crates.io-index"
366
494
  checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
495
+ dependencies = [
496
+ "foldhash",
497
+ ]
367
498
 
368
499
  [[package]]
369
500
  name = "heck"
@@ -372,10 +503,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
372
503
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
373
504
 
374
505
  [[package]]
375
- name = "hexf-parse"
376
- version = "0.2.1"
506
+ name = "hermit-abi"
507
+ version = "0.5.2"
377
508
  source = "registry+https://github.com/rust-lang/crates.io-index"
378
- checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
509
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
379
510
 
380
511
  [[package]]
381
512
  name = "indexmap"
@@ -396,6 +527,32 @@ dependencies = [
396
527
  "rustversion",
397
528
  ]
398
529
 
530
+ [[package]]
531
+ name = "is-terminal"
532
+ version = "0.4.17"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
535
+ dependencies = [
536
+ "hermit-abi",
537
+ "libc",
538
+ "windows-sys",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "itertools"
543
+ version = "0.10.5"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
546
+ dependencies = [
547
+ "either",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "itoa"
552
+ version = "1.0.18"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
555
+
399
556
  [[package]]
400
557
  name = "jni-sys"
401
558
  version = "0.3.1"
@@ -468,6 +625,18 @@ dependencies = [
468
625
  "windows-link",
469
626
  ]
470
627
 
628
+ [[package]]
629
+ name = "libm"
630
+ version = "0.2.16"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
633
+
634
+ [[package]]
635
+ name = "linux-raw-sys"
636
+ version = "0.12.1"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
639
+
471
640
  [[package]]
472
641
  name = "litrs"
473
642
  version = "1.0.0"
@@ -490,14 +659,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
490
659
  checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
491
660
 
492
661
  [[package]]
493
- name = "malloc_buf"
494
- version = "0.0.6"
662
+ name = "matrixmultiply"
663
+ version = "0.3.11"
495
664
  source = "registry+https://github.com/rust-lang/crates.io-index"
496
- checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
665
+ checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
497
666
  dependencies = [
498
- "libc",
667
+ "autocfg",
668
+ "rawpointer",
499
669
  ]
500
670
 
671
+ [[package]]
672
+ name = "memchr"
673
+ version = "2.8.3"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
676
+
501
677
  [[package]]
502
678
  name = "memoffset"
503
679
  version = "0.9.1"
@@ -507,141 +683,314 @@ dependencies = [
507
683
  "autocfg",
508
684
  ]
509
685
 
510
- [[package]]
511
- name = "metal"
512
- version = "0.31.0"
513
- source = "registry+https://github.com/rust-lang/crates.io-index"
514
- checksum = "f569fb946490b5743ad69813cb19629130ce9374034abe31614a36402d18f99e"
515
- dependencies = [
516
- "bitflags 2.13.1",
517
- "block",
518
- "core-graphics-types",
519
- "foreign-types",
520
- "log",
521
- "objc",
522
- "paste",
523
- ]
524
-
525
686
  [[package]]
526
687
  name = "naga"
527
- version = "24.0.0"
688
+ version = "30.0.0"
528
689
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "e380993072e52eef724eddfcde0ed013b0c023c3f0417336ed041aa9f076994e"
690
+ checksum = "23bf0a141a9ab6f07dbb492db53245e464bc9db42f407772d9ae03d83a2c1033"
530
691
  dependencies = [
531
692
  "arrayvec",
532
- "bit-set",
533
- "bitflags 2.13.1",
693
+ "bit-set 0.10.0",
694
+ "bitflags",
695
+ "cfg-if",
534
696
  "cfg_aliases",
535
697
  "codespan-reporting",
536
- "hexf-parse",
698
+ "half",
699
+ "hashbrown 0.17.1",
537
700
  "indexmap",
701
+ "libm",
538
702
  "log",
539
- "rustc-hash",
703
+ "naga-types",
704
+ "num-traits",
705
+ "once_cell",
706
+ "rustc-hash 1.1.0",
540
707
  "spirv",
541
- "strum",
542
- "termcolor",
543
- "thiserror 2.0.20",
544
- "unicode-xid",
708
+ "thiserror",
709
+ "unicode-ident",
545
710
  ]
546
711
 
547
712
  [[package]]
548
- name = "ndk-sys"
549
- version = "0.5.0+25.2.9519653"
713
+ name = "naga-types"
714
+ version = "30.0.0"
550
715
  source = "registry+https://github.com/rust-lang/crates.io-index"
551
- checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
716
+ checksum = "658200ddc25c6c7b860747516d132d1b284c0fafb7a380233acee9a72fb30e11"
552
717
  dependencies = [
553
- "jni-sys 0.3.1",
718
+ "hashbrown 0.17.1",
719
+ "indexmap",
720
+ "rustc-hash 1.1.0",
721
+ "thiserror",
554
722
  ]
555
723
 
556
724
  [[package]]
557
- name = "num-traits"
558
- version = "0.2.19"
725
+ name = "ndarray"
726
+ version = "0.16.1"
559
727
  source = "registry+https://github.com/rust-lang/crates.io-index"
560
- checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
728
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
561
729
  dependencies = [
562
- "autocfg",
730
+ "matrixmultiply",
731
+ "num-complex",
732
+ "num-integer",
733
+ "num-traits",
734
+ "portable-atomic",
735
+ "portable-atomic-util",
736
+ "rawpointer",
563
737
  ]
564
738
 
565
739
  [[package]]
566
- name = "objc"
567
- version = "0.2.7"
740
+ name = "ndk-sys"
741
+ version = "0.6.0+11769913"
568
742
  source = "registry+https://github.com/rust-lang/crates.io-index"
569
- checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
743
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
570
744
  dependencies = [
571
- "malloc_buf",
745
+ "jni-sys 0.3.1",
572
746
  ]
573
747
 
574
748
  [[package]]
575
- name = "once_cell"
576
- version = "1.21.4"
749
+ name = "num-complex"
750
+ version = "0.4.6"
577
751
  source = "registry+https://github.com/rust-lang/crates.io-index"
578
- checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
752
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
753
+ dependencies = [
754
+ "num-traits",
755
+ ]
579
756
 
580
757
  [[package]]
581
- name = "ordered-float"
582
- version = "4.6.0"
758
+ name = "num-integer"
759
+ version = "0.1.47"
583
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
584
- checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
761
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
585
762
  dependencies = [
586
763
  "num-traits",
587
764
  ]
588
765
 
589
766
  [[package]]
590
- name = "parking_lot"
591
- version = "0.12.5"
767
+ name = "num-traits"
768
+ version = "0.2.19"
592
769
  source = "registry+https://github.com/rust-lang/crates.io-index"
593
- checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
770
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
594
771
  dependencies = [
595
- "lock_api",
596
- "parking_lot_core",
772
+ "autocfg",
773
+ "libm",
597
774
  ]
598
775
 
599
776
  [[package]]
600
- name = "parking_lot_core"
601
- version = "0.9.12"
777
+ name = "numpy"
778
+ version = "0.23.0"
602
779
  source = "registry+https://github.com/rust-lang/crates.io-index"
603
- checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
780
+ checksum = "b94caae805f998a07d33af06e6a3891e38556051b8045c615470a71590e13e78"
604
781
  dependencies = [
605
- "cfg-if",
606
782
  "libc",
607
- "redox_syscall",
608
- "smallvec",
609
- "windows-link",
783
+ "ndarray",
784
+ "num-complex",
785
+ "num-integer",
786
+ "num-traits",
787
+ "pyo3",
788
+ "rustc-hash 2.1.3",
610
789
  ]
611
790
 
612
791
  [[package]]
613
- name = "paste"
614
- version = "1.0.15"
792
+ name = "objc2"
793
+ version = "0.6.4"
615
794
  source = "registry+https://github.com/rust-lang/crates.io-index"
616
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
795
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
796
+ dependencies = [
797
+ "objc2-encode",
798
+ ]
617
799
 
618
800
  [[package]]
619
- name = "pin-project-lite"
620
- version = "0.2.17"
801
+ name = "objc2-core-foundation"
802
+ version = "0.3.2"
621
803
  source = "registry+https://github.com/rust-lang/crates.io-index"
622
- checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
804
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
805
+ dependencies = [
806
+ "bitflags",
807
+ "dispatch2",
808
+ "objc2",
809
+ ]
623
810
 
624
811
  [[package]]
625
- name = "pkg-config"
626
- version = "0.3.34"
812
+ name = "objc2-core-graphics"
813
+ version = "0.3.2"
627
814
  source = "registry+https://github.com/rust-lang/crates.io-index"
628
- checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
815
+ checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
816
+ dependencies = [
817
+ "dispatch2",
818
+ "objc2",
819
+ "objc2-core-foundation",
820
+ "objc2-io-surface",
821
+ ]
629
822
 
630
823
  [[package]]
631
- name = "pollster"
632
- version = "0.4.0"
824
+ name = "objc2-encode"
825
+ version = "4.1.0"
633
826
  source = "registry+https://github.com/rust-lang/crates.io-index"
634
- checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
827
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
635
828
 
636
829
  [[package]]
637
- name = "portable-atomic"
638
- version = "1.15.0"
830
+ name = "objc2-foundation"
831
+ version = "0.3.2"
639
832
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
- checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
833
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
834
+ dependencies = [
835
+ "bitflags",
836
+ "objc2",
837
+ "objc2-core-foundation",
838
+ ]
641
839
 
642
840
  [[package]]
643
- name = "presser"
644
- version = "0.3.1"
841
+ name = "objc2-io-surface"
842
+ version = "0.3.2"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
845
+ dependencies = [
846
+ "bitflags",
847
+ "objc2",
848
+ "objc2-core-foundation",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "objc2-metal"
853
+ version = "0.3.2"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
856
+ dependencies = [
857
+ "bitflags",
858
+ "block2",
859
+ "objc2",
860
+ "objc2-foundation",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "objc2-quartz-core"
865
+ version = "0.3.2"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
868
+ dependencies = [
869
+ "bitflags",
870
+ "objc2",
871
+ "objc2-core-foundation",
872
+ "objc2-core-graphics",
873
+ "objc2-foundation",
874
+ "objc2-metal",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "once_cell"
879
+ version = "1.21.4"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
882
+
883
+ [[package]]
884
+ name = "oorandom"
885
+ version = "11.1.5"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
888
+
889
+ [[package]]
890
+ name = "ordered-float"
891
+ version = "5.3.0"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
894
+ dependencies = [
895
+ "num-traits",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "parking_lot"
900
+ version = "0.12.5"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
903
+ dependencies = [
904
+ "lock_api",
905
+ "parking_lot_core",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "parking_lot_core"
910
+ version = "0.9.12"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
913
+ dependencies = [
914
+ "cfg-if",
915
+ "libc",
916
+ "redox_syscall",
917
+ "smallvec",
918
+ "windows-link",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "pin-project-lite"
923
+ version = "0.2.17"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
926
+
927
+ [[package]]
928
+ name = "pkg-config"
929
+ version = "0.3.34"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
932
+
933
+ [[package]]
934
+ name = "plotters"
935
+ version = "0.3.7"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
938
+ dependencies = [
939
+ "num-traits",
940
+ "plotters-backend",
941
+ "plotters-svg",
942
+ "wasm-bindgen",
943
+ "web-sys",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "plotters-backend"
948
+ version = "0.3.7"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
951
+
952
+ [[package]]
953
+ name = "plotters-svg"
954
+ version = "0.3.7"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
957
+ dependencies = [
958
+ "plotters-backend",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "pollster"
963
+ version = "0.4.0"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
966
+
967
+ [[package]]
968
+ name = "portable-atomic"
969
+ version = "1.15.0"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
972
+
973
+ [[package]]
974
+ name = "portable-atomic-util"
975
+ version = "0.2.7"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
978
+ dependencies = [
979
+ "portable-atomic",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "ppv-lite86"
984
+ version = "0.2.21"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
987
+ dependencies = [
988
+ "zerocopy",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "presser"
993
+ version = "0.3.1"
645
994
  source = "registry+https://github.com/rust-lang/crates.io-index"
646
995
  checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
647
996
 
@@ -660,6 +1009,25 @@ version = "1.0.18"
660
1009
  source = "registry+https://github.com/rust-lang/crates.io-index"
661
1010
  checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
662
1011
 
1012
+ [[package]]
1013
+ name = "proptest"
1014
+ version = "1.11.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1017
+ dependencies = [
1018
+ "bit-set 0.8.0",
1019
+ "bit-vec 0.8.0",
1020
+ "bitflags",
1021
+ "num-traits",
1022
+ "rand",
1023
+ "rand_chacha",
1024
+ "rand_xorshift",
1025
+ "regex-syntax",
1026
+ "rusty-fork",
1027
+ "tempfile",
1028
+ "unarray",
1029
+ ]
1030
+
663
1031
  [[package]]
664
1032
  name = "pyo3"
665
1033
  version = "0.23.5"
@@ -723,6 +1091,12 @@ dependencies = [
723
1091
  "syn 2.0.119",
724
1092
  ]
725
1093
 
1094
+ [[package]]
1095
+ name = "quick-error"
1096
+ version = "1.2.3"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1099
+
726
1100
  [[package]]
727
1101
  name = "quote"
728
1102
  version = "1.0.47"
@@ -732,6 +1106,56 @@ dependencies = [
732
1106
  "proc-macro2",
733
1107
  ]
734
1108
 
1109
+ [[package]]
1110
+ name = "r-efi"
1111
+ version = "5.3.0"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1114
+
1115
+ [[package]]
1116
+ name = "r-efi"
1117
+ version = "6.0.0"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1120
+
1121
+ [[package]]
1122
+ name = "rand"
1123
+ version = "0.9.5"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1126
+ dependencies = [
1127
+ "rand_chacha",
1128
+ "rand_core",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "rand_chacha"
1133
+ version = "0.9.0"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1136
+ dependencies = [
1137
+ "ppv-lite86",
1138
+ "rand_core",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "rand_core"
1143
+ version = "0.9.5"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1146
+ dependencies = [
1147
+ "getrandom 0.3.4",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "rand_xorshift"
1152
+ version = "0.4.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1155
+ dependencies = [
1156
+ "rand_core",
1157
+ ]
1158
+
735
1159
  [[package]]
736
1160
  name = "range-alloc"
737
1161
  version = "0.1.5"
@@ -744,6 +1168,24 @@ version = "0.6.2"
744
1168
  source = "registry+https://github.com/rust-lang/crates.io-index"
745
1169
  checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
746
1170
 
1171
+ [[package]]
1172
+ name = "raw-window-metal"
1173
+ version = "1.1.0"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "40d213455a5f1dc59214213c7330e074ddf8114c9a42411eb890c767357ce135"
1176
+ dependencies = [
1177
+ "objc2",
1178
+ "objc2-core-foundation",
1179
+ "objc2-foundation",
1180
+ "objc2-quartz-core",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "rawpointer"
1185
+ version = "0.2.1"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1188
+
747
1189
  [[package]]
748
1190
  name = "rayon"
749
1191
  version = "1.12.0"
@@ -770,9 +1212,38 @@ version = "0.5.18"
770
1212
  source = "registry+https://github.com/rust-lang/crates.io-index"
771
1213
  checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
772
1214
  dependencies = [
773
- "bitflags 2.13.1",
1215
+ "bitflags",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "regex"
1220
+ version = "1.13.1"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1223
+ dependencies = [
1224
+ "aho-corasick",
1225
+ "memchr",
1226
+ "regex-automata",
1227
+ "regex-syntax",
774
1228
  ]
775
1229
 
1230
+ [[package]]
1231
+ name = "regex-automata"
1232
+ version = "0.4.18"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1235
+ dependencies = [
1236
+ "aho-corasick",
1237
+ "memchr",
1238
+ "regex-syntax",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "regex-syntax"
1243
+ version = "0.8.11"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1246
+
776
1247
  [[package]]
777
1248
  name = "renderdoc-sys"
778
1249
  version = "1.1.0"
@@ -785,18 +1256,68 @@ version = "1.1.0"
785
1256
  source = "registry+https://github.com/rust-lang/crates.io-index"
786
1257
  checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
787
1258
 
1259
+ [[package]]
1260
+ name = "rustc-hash"
1261
+ version = "2.1.3"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1264
+
1265
+ [[package]]
1266
+ name = "rustix"
1267
+ version = "1.1.4"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1270
+ dependencies = [
1271
+ "bitflags",
1272
+ "errno",
1273
+ "libc",
1274
+ "linux-raw-sys",
1275
+ "windows-sys",
1276
+ ]
1277
+
788
1278
  [[package]]
789
1279
  name = "rustversion"
790
1280
  version = "1.0.23"
791
1281
  source = "registry+https://github.com/rust-lang/crates.io-index"
792
1282
  checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
793
1283
 
1284
+ [[package]]
1285
+ name = "rusty-fork"
1286
+ version = "0.3.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1289
+ dependencies = [
1290
+ "fnv",
1291
+ "quick-error",
1292
+ "tempfile",
1293
+ "wait-timeout",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "same-file"
1298
+ version = "1.0.6"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1301
+ dependencies = [
1302
+ "winapi-util",
1303
+ ]
1304
+
794
1305
  [[package]]
795
1306
  name = "scopeguard"
796
1307
  version = "1.2.0"
797
1308
  source = "registry+https://github.com/rust-lang/crates.io-index"
798
1309
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
799
1310
 
1311
+ [[package]]
1312
+ name = "serde"
1313
+ version = "1.0.229"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1316
+ dependencies = [
1317
+ "serde_core",
1318
+ "serde_derive",
1319
+ ]
1320
+
800
1321
  [[package]]
801
1322
  name = "serde_core"
802
1323
  version = "1.0.229"
@@ -817,6 +1338,19 @@ dependencies = [
817
1338
  "syn 3.0.3",
818
1339
  ]
819
1340
 
1341
+ [[package]]
1342
+ name = "serde_json"
1343
+ version = "1.0.151"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1346
+ dependencies = [
1347
+ "itoa",
1348
+ "memchr",
1349
+ "serde",
1350
+ "serde_core",
1351
+ "zmij",
1352
+ ]
1353
+
820
1354
  [[package]]
821
1355
  name = "slab"
822
1356
  version = "0.4.12"
@@ -840,11 +1374,11 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
840
1374
 
841
1375
  [[package]]
842
1376
  name = "spirv"
843
- version = "0.3.0+sdk-1.3.268.0"
1377
+ version = "0.4.0+sdk-1.4.341.0"
844
1378
  source = "registry+https://github.com/rust-lang/crates.io-index"
845
- checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
1379
+ checksum = "d9571ea910ebd84c86af4b3ed27f9dbdc6ad06f17c5f96146b2b671e2976744f"
846
1380
  dependencies = [
847
- "bitflags 2.13.1",
1381
+ "bitflags",
848
1382
  ]
849
1383
 
850
1384
  [[package]]
@@ -853,28 +1387,6 @@ version = "1.1.0"
853
1387
  source = "registry+https://github.com/rust-lang/crates.io-index"
854
1388
  checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
855
1389
 
856
- [[package]]
857
- name = "strum"
858
- version = "0.26.3"
859
- source = "registry+https://github.com/rust-lang/crates.io-index"
860
- checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
861
- dependencies = [
862
- "strum_macros",
863
- ]
864
-
865
- [[package]]
866
- name = "strum_macros"
867
- version = "0.26.4"
868
- source = "registry+https://github.com/rust-lang/crates.io-index"
869
- checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
870
- dependencies = [
871
- "heck",
872
- "proc-macro2",
873
- "quote",
874
- "rustversion",
875
- "syn 2.0.119",
876
- ]
877
-
878
1390
  [[package]]
879
1391
  name = "syn"
880
1392
  version = "2.0.119"
@@ -904,21 +1416,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
904
1416
  checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
905
1417
 
906
1418
  [[package]]
907
- name = "termcolor"
908
- version = "1.4.1"
1419
+ name = "tempfile"
1420
+ version = "3.27.0"
909
1421
  source = "registry+https://github.com/rust-lang/crates.io-index"
910
- checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1422
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
911
1423
  dependencies = [
912
- "winapi-util",
1424
+ "fastrand",
1425
+ "getrandom 0.4.3",
1426
+ "once_cell",
1427
+ "rustix",
1428
+ "windows-sys",
913
1429
  ]
914
1430
 
915
1431
  [[package]]
916
- name = "thiserror"
917
- version = "1.0.69"
1432
+ name = "termcolor"
1433
+ version = "1.4.1"
918
1434
  source = "registry+https://github.com/rust-lang/crates.io-index"
919
- checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1435
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
920
1436
  dependencies = [
921
- "thiserror-impl 1.0.69",
1437
+ "winapi-util",
922
1438
  ]
923
1439
 
924
1440
  [[package]]
@@ -927,31 +1443,36 @@ version = "2.0.20"
927
1443
  source = "registry+https://github.com/rust-lang/crates.io-index"
928
1444
  checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
929
1445
  dependencies = [
930
- "thiserror-impl 2.0.20",
1446
+ "thiserror-impl",
931
1447
  ]
932
1448
 
933
1449
  [[package]]
934
1450
  name = "thiserror-impl"
935
- version = "1.0.69"
1451
+ version = "2.0.20"
936
1452
  source = "registry+https://github.com/rust-lang/crates.io-index"
937
- checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1453
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
938
1454
  dependencies = [
939
1455
  "proc-macro2",
940
1456
  "quote",
941
- "syn 2.0.119",
1457
+ "syn 3.0.3",
942
1458
  ]
943
1459
 
944
1460
  [[package]]
945
- name = "thiserror-impl"
946
- version = "2.0.20"
1461
+ name = "tinytemplate"
1462
+ version = "1.2.1"
947
1463
  source = "registry+https://github.com/rust-lang/crates.io-index"
948
- checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1464
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
949
1465
  dependencies = [
950
- "proc-macro2",
951
- "quote",
952
- "syn 3.0.3",
1466
+ "serde",
1467
+ "serde_json",
953
1468
  ]
954
1469
 
1470
+ [[package]]
1471
+ name = "unarray"
1472
+ version = "0.1.4"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1475
+
955
1476
  [[package]]
956
1477
  name = "unicode-ident"
957
1478
  version = "1.0.24"
@@ -960,15 +1481,9 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
960
1481
 
961
1482
  [[package]]
962
1483
  name = "unicode-width"
963
- version = "0.1.14"
964
- source = "registry+https://github.com/rust-lang/crates.io-index"
965
- checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
966
-
967
- [[package]]
968
- name = "unicode-xid"
969
- version = "0.2.6"
1484
+ version = "0.2.2"
970
1485
  source = "registry+https://github.com/rust-lang/crates.io-index"
971
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1486
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
972
1487
 
973
1488
  [[package]]
974
1489
  name = "unindent"
@@ -982,6 +1497,34 @@ version = "0.9.5"
982
1497
  source = "registry+https://github.com/rust-lang/crates.io-index"
983
1498
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
984
1499
 
1500
+ [[package]]
1501
+ name = "wait-timeout"
1502
+ version = "0.2.1"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1505
+ dependencies = [
1506
+ "libc",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "walkdir"
1511
+ version = "2.5.0"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1514
+ dependencies = [
1515
+ "same-file",
1516
+ "winapi-util",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "wasip2"
1521
+ version = "1.0.4+wasi-0.2.12"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1524
+ dependencies = [
1525
+ "wit-bindgen",
1526
+ ]
1527
+
985
1528
  [[package]]
986
1529
  name = "wasm-bindgen"
987
1530
  version = "0.2.127"
@@ -1037,6 +1580,18 @@ dependencies = [
1037
1580
  "unicode-ident",
1038
1581
  ]
1039
1582
 
1583
+ [[package]]
1584
+ name = "wayland-sys"
1585
+ version = "0.31.11"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
1588
+ dependencies = [
1589
+ "dlib",
1590
+ "log",
1591
+ "once_cell",
1592
+ "pkg-config",
1593
+ ]
1594
+
1040
1595
  [[package]]
1041
1596
  name = "web-sys"
1042
1597
  version = "0.3.104"
@@ -1049,18 +1604,22 @@ dependencies = [
1049
1604
 
1050
1605
  [[package]]
1051
1606
  name = "wgpu"
1052
- version = "24.0.5"
1607
+ version = "30.0.0"
1053
1608
  source = "registry+https://github.com/rust-lang/crates.io-index"
1054
- checksum = "6b0b3436f0729f6cdf2e6e9201f3d39dc95813fad61d826c1ed07918b4539353"
1609
+ checksum = "6d8f4bd44d92da5270f03409dba9f952dab24f128e05d6a554926101d1bf9114"
1055
1610
  dependencies = [
1056
1611
  "arrayvec",
1057
- "bitflags 2.13.1",
1612
+ "bitflags",
1613
+ "bytemuck",
1614
+ "cfg-if",
1058
1615
  "cfg_aliases",
1059
1616
  "document-features",
1617
+ "hashbrown 0.17.1",
1060
1618
  "js-sys",
1061
1619
  "log",
1062
1620
  "naga",
1063
1621
  "parking_lot",
1622
+ "portable-atomic",
1064
1623
  "profiling",
1065
1624
  "raw-window-handle",
1066
1625
  "smallvec",
@@ -1075,84 +1634,144 @@ dependencies = [
1075
1634
 
1076
1635
  [[package]]
1077
1636
  name = "wgpu-core"
1078
- version = "24.0.5"
1637
+ version = "30.0.0"
1079
1638
  source = "registry+https://github.com/rust-lang/crates.io-index"
1080
- checksum = "7f0aa306497a238d169b9dc70659105b4a096859a34894544ca81719242e1499"
1639
+ checksum = "08763620e76fc980bca7bf84de82568614487a53172dd968d89187282eb87fa2"
1081
1640
  dependencies = [
1082
1641
  "arrayvec",
1083
- "bit-vec",
1084
- "bitflags 2.13.1",
1642
+ "bit-set 0.10.0",
1643
+ "bit-vec 0.9.1",
1644
+ "bitflags",
1645
+ "bytemuck",
1085
1646
  "cfg_aliases",
1086
1647
  "document-features",
1648
+ "hashbrown 0.17.1",
1087
1649
  "indexmap",
1088
1650
  "log",
1089
1651
  "naga",
1652
+ "naga-types",
1090
1653
  "once_cell",
1091
1654
  "parking_lot",
1655
+ "portable-atomic",
1092
1656
  "profiling",
1093
1657
  "raw-window-handle",
1094
- "rustc-hash",
1658
+ "rustc-hash 1.1.0",
1095
1659
  "smallvec",
1096
- "thiserror 2.0.20",
1660
+ "thiserror",
1661
+ "wgpu-core-deps-apple",
1662
+ "wgpu-core-deps-emscripten",
1663
+ "wgpu-core-deps-windows-linux-android",
1097
1664
  "wgpu-hal",
1665
+ "wgpu-naga-bridge",
1098
1666
  "wgpu-types",
1099
1667
  ]
1100
1668
 
1669
+ [[package]]
1670
+ name = "wgpu-core-deps-apple"
1671
+ version = "30.0.0"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "3283b6da70d7fc892de95840215aa36381b5d0cbc479e88ee2b173c7b992b225"
1674
+ dependencies = [
1675
+ "wgpu-hal",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "wgpu-core-deps-emscripten"
1680
+ version = "30.0.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "85dcf2b2e5c2afb9eda64c570a87a4e570304bf39e52eddbaaf222d655b656ad"
1683
+ dependencies = [
1684
+ "wgpu-hal",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "wgpu-core-deps-windows-linux-android"
1689
+ version = "30.0.0"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "f76bc9c1c186ff3d9054e0d224c93c8c1c79d6653907c5249a5c1ea1a2cb1e43"
1692
+ dependencies = [
1693
+ "wgpu-hal",
1694
+ ]
1695
+
1101
1696
  [[package]]
1102
1697
  name = "wgpu-hal"
1103
- version = "24.0.4"
1698
+ version = "30.0.0"
1104
1699
  source = "registry+https://github.com/rust-lang/crates.io-index"
1105
- checksum = "f112f464674ca69f3533248508ee30cb84c67cf06c25ff6800685f5e0294e259"
1700
+ checksum = "cf765132d8d5f50e192e7880464890c13f4e7457aafe8e5466e8174586e9f101"
1106
1701
  dependencies = [
1107
1702
  "android_system_properties",
1108
1703
  "arrayvec",
1109
1704
  "ash",
1110
- "bit-set",
1111
- "bitflags 2.13.1",
1112
- "block",
1705
+ "bit-set 0.10.0",
1706
+ "bitflags",
1707
+ "block2",
1113
1708
  "bytemuck",
1709
+ "cfg-if",
1114
1710
  "cfg_aliases",
1115
- "core-graphics-types",
1116
1711
  "glow",
1117
1712
  "glutin_wgl_sys",
1118
- "gpu-alloc",
1119
1713
  "gpu-allocator",
1120
- "gpu-descriptor",
1714
+ "hashbrown 0.17.1",
1121
1715
  "js-sys",
1122
1716
  "khronos-egl",
1123
1717
  "libc",
1124
1718
  "libloading",
1125
1719
  "log",
1126
- "metal",
1127
1720
  "naga",
1721
+ "naga-types",
1128
1722
  "ndk-sys",
1129
- "objc",
1723
+ "objc2",
1724
+ "objc2-core-foundation",
1725
+ "objc2-core-graphics",
1726
+ "objc2-foundation",
1727
+ "objc2-metal",
1728
+ "objc2-quartz-core",
1130
1729
  "once_cell",
1131
1730
  "ordered-float",
1132
1731
  "parking_lot",
1732
+ "portable-atomic",
1733
+ "portable-atomic-util",
1133
1734
  "profiling",
1134
1735
  "range-alloc",
1135
1736
  "raw-window-handle",
1737
+ "raw-window-metal",
1136
1738
  "renderdoc-sys",
1137
- "rustc-hash",
1138
1739
  "smallvec",
1139
- "thiserror 2.0.20",
1740
+ "static_assertions",
1741
+ "thiserror",
1140
1742
  "wasm-bindgen",
1743
+ "wayland-sys",
1141
1744
  "web-sys",
1745
+ "wgpu-naga-bridge",
1142
1746
  "wgpu-types",
1143
1747
  "windows",
1144
1748
  "windows-core",
1749
+ "windows-result",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "wgpu-naga-bridge"
1754
+ version = "30.0.0"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "c9eaac644e5008925c78567d272b9d66ef83da55a53cc17fc7daade7bb6e66e5"
1757
+ dependencies = [
1758
+ "naga",
1759
+ "wgpu-types",
1145
1760
  ]
1146
1761
 
1147
1762
  [[package]]
1148
1763
  name = "wgpu-types"
1149
- version = "24.0.0"
1764
+ version = "30.0.0"
1150
1765
  source = "registry+https://github.com/rust-lang/crates.io-index"
1151
- checksum = "50ac044c0e76c03a0378e7786ac505d010a873665e2d51383dcff8dd227dc69c"
1766
+ checksum = "1a9c93c2b35edde326df60ffdee4c0f5864eac3011d6768b70d43f028ad93565"
1152
1767
  dependencies = [
1153
- "bitflags 2.13.1",
1768
+ "bitflags",
1769
+ "bytemuck",
1154
1770
  "js-sys",
1155
1771
  "log",
1772
+ "naga-types",
1773
+ "raw-window-handle",
1774
+ "static_assertions",
1156
1775
  "web-sys",
1157
1776
  ]
1158
1777
 
@@ -1167,32 +1786,54 @@ dependencies = [
1167
1786
 
1168
1787
  [[package]]
1169
1788
  name = "windows"
1170
- version = "0.58.0"
1789
+ version = "0.62.2"
1171
1790
  source = "registry+https://github.com/rust-lang/crates.io-index"
1172
- checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
1791
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
1792
+ dependencies = [
1793
+ "windows-collections",
1794
+ "windows-core",
1795
+ "windows-future",
1796
+ "windows-numerics",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "windows-collections"
1801
+ version = "0.3.2"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
1173
1804
  dependencies = [
1174
1805
  "windows-core",
1175
- "windows-targets",
1176
1806
  ]
1177
1807
 
1178
1808
  [[package]]
1179
1809
  name = "windows-core"
1180
- version = "0.58.0"
1810
+ version = "0.62.2"
1181
1811
  source = "registry+https://github.com/rust-lang/crates.io-index"
1182
- checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
1812
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1183
1813
  dependencies = [
1184
1814
  "windows-implement",
1185
1815
  "windows-interface",
1816
+ "windows-link",
1186
1817
  "windows-result",
1187
1818
  "windows-strings",
1188
- "windows-targets",
1819
+ ]
1820
+
1821
+ [[package]]
1822
+ name = "windows-future"
1823
+ version = "0.3.2"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
1826
+ dependencies = [
1827
+ "windows-core",
1828
+ "windows-link",
1829
+ "windows-threading",
1189
1830
  ]
1190
1831
 
1191
1832
  [[package]]
1192
1833
  name = "windows-implement"
1193
- version = "0.58.0"
1834
+ version = "0.60.2"
1194
1835
  source = "registry+https://github.com/rust-lang/crates.io-index"
1195
- checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
1836
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1196
1837
  dependencies = [
1197
1838
  "proc-macro2",
1198
1839
  "quote",
@@ -1201,9 +1842,9 @@ dependencies = [
1201
1842
 
1202
1843
  [[package]]
1203
1844
  name = "windows-interface"
1204
- version = "0.58.0"
1845
+ version = "0.59.3"
1205
1846
  source = "registry+https://github.com/rust-lang/crates.io-index"
1206
- checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
1847
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1207
1848
  dependencies = [
1208
1849
  "proc-macro2",
1209
1850
  "quote",
@@ -1216,23 +1857,32 @@ version = "0.2.1"
1216
1857
  source = "registry+https://github.com/rust-lang/crates.io-index"
1217
1858
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1218
1859
 
1860
+ [[package]]
1861
+ name = "windows-numerics"
1862
+ version = "0.3.1"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
1865
+ dependencies = [
1866
+ "windows-core",
1867
+ "windows-link",
1868
+ ]
1869
+
1219
1870
  [[package]]
1220
1871
  name = "windows-result"
1221
- version = "0.2.0"
1872
+ version = "0.4.1"
1222
1873
  source = "registry+https://github.com/rust-lang/crates.io-index"
1223
- checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
1874
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1224
1875
  dependencies = [
1225
- "windows-targets",
1876
+ "windows-link",
1226
1877
  ]
1227
1878
 
1228
1879
  [[package]]
1229
1880
  name = "windows-strings"
1230
- version = "0.1.0"
1881
+ version = "0.5.1"
1231
1882
  source = "registry+https://github.com/rust-lang/crates.io-index"
1232
- checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
1883
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1233
1884
  dependencies = [
1234
- "windows-result",
1235
- "windows-targets",
1885
+ "windows-link",
1236
1886
  ]
1237
1887
 
1238
1888
  [[package]]
@@ -1245,71 +1895,48 @@ dependencies = [
1245
1895
  ]
1246
1896
 
1247
1897
  [[package]]
1248
- name = "windows-targets"
1249
- version = "0.52.6"
1898
+ name = "windows-threading"
1899
+ version = "0.2.1"
1250
1900
  source = "registry+https://github.com/rust-lang/crates.io-index"
1251
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1901
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
1252
1902
  dependencies = [
1253
- "windows_aarch64_gnullvm",
1254
- "windows_aarch64_msvc",
1255
- "windows_i686_gnu",
1256
- "windows_i686_gnullvm",
1257
- "windows_i686_msvc",
1258
- "windows_x86_64_gnu",
1259
- "windows_x86_64_gnullvm",
1260
- "windows_x86_64_msvc",
1903
+ "windows-link",
1261
1904
  ]
1262
1905
 
1263
1906
  [[package]]
1264
- name = "windows_aarch64_gnullvm"
1265
- version = "0.52.6"
1266
- source = "registry+https://github.com/rust-lang/crates.io-index"
1267
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1268
-
1269
- [[package]]
1270
- name = "windows_aarch64_msvc"
1271
- version = "0.52.6"
1907
+ name = "wit-bindgen"
1908
+ version = "0.57.1"
1272
1909
  source = "registry+https://github.com/rust-lang/crates.io-index"
1273
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1910
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1274
1911
 
1275
1912
  [[package]]
1276
- name = "windows_i686_gnu"
1277
- version = "0.52.6"
1278
- source = "registry+https://github.com/rust-lang/crates.io-index"
1279
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1280
-
1281
- [[package]]
1282
- name = "windows_i686_gnullvm"
1283
- version = "0.52.6"
1284
- source = "registry+https://github.com/rust-lang/crates.io-index"
1285
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1286
-
1287
- [[package]]
1288
- name = "windows_i686_msvc"
1289
- version = "0.52.6"
1290
- source = "registry+https://github.com/rust-lang/crates.io-index"
1291
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1292
-
1293
- [[package]]
1294
- name = "windows_x86_64_gnu"
1295
- version = "0.52.6"
1913
+ name = "xml-rs"
1914
+ version = "0.8.29"
1296
1915
  source = "registry+https://github.com/rust-lang/crates.io-index"
1297
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1916
+ checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"
1298
1917
 
1299
1918
  [[package]]
1300
- name = "windows_x86_64_gnullvm"
1301
- version = "0.52.6"
1919
+ name = "zerocopy"
1920
+ version = "0.8.56"
1302
1921
  source = "registry+https://github.com/rust-lang/crates.io-index"
1303
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1922
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1923
+ dependencies = [
1924
+ "zerocopy-derive",
1925
+ ]
1304
1926
 
1305
1927
  [[package]]
1306
- name = "windows_x86_64_msvc"
1307
- version = "0.52.6"
1928
+ name = "zerocopy-derive"
1929
+ version = "0.8.56"
1308
1930
  source = "registry+https://github.com/rust-lang/crates.io-index"
1309
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1931
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1932
+ dependencies = [
1933
+ "proc-macro2",
1934
+ "quote",
1935
+ "syn 2.0.119",
1936
+ ]
1310
1937
 
1311
1938
  [[package]]
1312
- name = "xml-rs"
1313
- version = "0.8.29"
1939
+ name = "zmij"
1940
+ version = "1.0.23"
1314
1941
  source = "registry+https://github.com/rust-lang/crates.io-index"
1315
- checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"
1942
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"