valgebra 0.0.1__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 (33) hide show
  1. valgebra-0.0.1/Cargo.lock +1123 -0
  2. valgebra-0.0.1/Cargo.toml +50 -0
  3. valgebra-0.0.1/LICENSE-APACHE +202 -0
  4. valgebra-0.0.1/LICENSE-MIT +21 -0
  5. valgebra-0.0.1/PKG-INFO +262 -0
  6. valgebra-0.0.1/README.md +237 -0
  7. valgebra-0.0.1/crates/valgebra-core/Cargo.toml +28 -0
  8. valgebra-0.0.1/crates/valgebra-core/benches/core.rs +104 -0
  9. valgebra-0.0.1/crates/valgebra-core/examples/perf_workload.rs +120 -0
  10. valgebra-0.0.1/crates/valgebra-core/proptest-regressions/lib.txt +10 -0
  11. valgebra-0.0.1/crates/valgebra-core/src/decision.rs +1187 -0
  12. valgebra-0.0.1/crates/valgebra-core/src/ir.rs +791 -0
  13. valgebra-0.0.1/crates/valgebra-core/src/lib.rs +2421 -0
  14. valgebra-0.0.1/crates/valgebra-core/src/simplify.rs +300 -0
  15. valgebra-0.0.1/crates/valgebra-core/src/violation.rs +62 -0
  16. valgebra-0.0.1/crates/valgebra-core/tests/error_snapshots.rs +63 -0
  17. valgebra-0.0.1/crates/valgebra-core/tests/snapshots/error_snapshots__violation_message_format.snap +12 -0
  18. valgebra-0.0.1/crates/valgebra-py/Cargo.toml +51 -0
  19. valgebra-0.0.1/crates/valgebra-py/examples/binding_workload.rs +24 -0
  20. valgebra-0.0.1/crates/valgebra-py/src/build.rs +802 -0
  21. valgebra-0.0.1/crates/valgebra-py/src/check/index.rs +290 -0
  22. valgebra-0.0.1/crates/valgebra-py/src/check/violation.rs +81 -0
  23. valgebra-0.0.1/crates/valgebra-py/src/check/walk.rs +1130 -0
  24. valgebra-0.0.1/crates/valgebra-py/src/check.rs +74 -0
  25. valgebra-0.0.1/crates/valgebra-py/src/errors.rs +181 -0
  26. valgebra-0.0.1/crates/valgebra-py/src/input.rs +137 -0
  27. valgebra-0.0.1/crates/valgebra-py/src/lib.rs +897 -0
  28. valgebra-0.0.1/crates/valgebra-py/src/render.rs +164 -0
  29. valgebra-0.0.1/pyproject.toml +160 -0
  30. valgebra-0.0.1/python/valgebra/__init__.py +23 -0
  31. valgebra-0.0.1/python/valgebra/_markers.py +35 -0
  32. valgebra-0.0.1/python/valgebra/_valgebra.pyi +52 -0
  33. valgebra-0.0.1/python/valgebra/py.typed +0 -0
@@ -0,0 +1,1123 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "alloca"
29
+ version = "0.4.0"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
32
+ dependencies = [
33
+ "cc",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "anes"
38
+ version = "0.1.6"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
41
+
42
+ [[package]]
43
+ name = "anstyle"
44
+ version = "1.0.14"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
47
+
48
+ [[package]]
49
+ name = "autocfg"
50
+ version = "1.5.1"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
53
+
54
+ [[package]]
55
+ name = "bit-set"
56
+ version = "0.8.0"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
59
+ dependencies = [
60
+ "bit-vec",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "bit-vec"
65
+ version = "0.8.0"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
68
+
69
+ [[package]]
70
+ name = "bitflags"
71
+ version = "2.13.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
74
+
75
+ [[package]]
76
+ name = "bitvec"
77
+ version = "1.1.1"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
80
+ dependencies = [
81
+ "funty",
82
+ "radium",
83
+ "tap",
84
+ "wyz",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "bumpalo"
89
+ version = "3.20.3"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
92
+
93
+ [[package]]
94
+ name = "cast"
95
+ version = "0.3.0"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
98
+
99
+ [[package]]
100
+ name = "cc"
101
+ version = "1.2.65"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
104
+ dependencies = [
105
+ "find-msvc-tools",
106
+ "shlex",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "cfg-if"
111
+ version = "1.0.4"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
114
+
115
+ [[package]]
116
+ name = "ciborium"
117
+ version = "0.2.2"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
120
+ dependencies = [
121
+ "ciborium-io",
122
+ "ciborium-ll",
123
+ "serde",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "ciborium-io"
128
+ version = "0.2.2"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
131
+
132
+ [[package]]
133
+ name = "ciborium-ll"
134
+ version = "0.2.2"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
137
+ dependencies = [
138
+ "ciborium-io",
139
+ "half",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "clap"
144
+ version = "4.6.1"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
147
+ dependencies = [
148
+ "clap_builder",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "clap_builder"
153
+ version = "4.6.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
156
+ dependencies = [
157
+ "anstyle",
158
+ "clap_lex",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "clap_lex"
163
+ version = "1.1.0"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
166
+
167
+ [[package]]
168
+ name = "console"
169
+ version = "0.16.3"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
172
+ dependencies = [
173
+ "encode_unicode",
174
+ "libc",
175
+ "windows-sys",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "criterion"
180
+ version = "0.8.2"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
183
+ dependencies = [
184
+ "alloca",
185
+ "anes",
186
+ "cast",
187
+ "ciborium",
188
+ "clap",
189
+ "criterion-plot",
190
+ "itertools",
191
+ "num-traits",
192
+ "oorandom",
193
+ "page_size",
194
+ "plotters",
195
+ "rayon",
196
+ "regex",
197
+ "serde",
198
+ "serde_json",
199
+ "tinytemplate",
200
+ "walkdir",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "criterion-plot"
205
+ version = "0.8.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
208
+ dependencies = [
209
+ "cast",
210
+ "itertools",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "crossbeam-deque"
215
+ version = "0.8.6"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
218
+ dependencies = [
219
+ "crossbeam-epoch",
220
+ "crossbeam-utils",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "crossbeam-epoch"
225
+ version = "0.9.18"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
228
+ dependencies = [
229
+ "crossbeam-utils",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "crossbeam-utils"
234
+ version = "0.8.21"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
237
+
238
+ [[package]]
239
+ name = "crunchy"
240
+ version = "0.2.4"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
243
+
244
+ [[package]]
245
+ name = "either"
246
+ version = "1.16.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
249
+
250
+ [[package]]
251
+ name = "encode_unicode"
252
+ version = "1.0.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
255
+
256
+ [[package]]
257
+ name = "errno"
258
+ version = "0.3.14"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
261
+ dependencies = [
262
+ "libc",
263
+ "windows-sys",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "fastrand"
268
+ version = "2.4.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
271
+
272
+ [[package]]
273
+ name = "find-msvc-tools"
274
+ version = "0.1.9"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
277
+
278
+ [[package]]
279
+ name = "fnv"
280
+ version = "1.0.7"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
283
+
284
+ [[package]]
285
+ name = "funty"
286
+ version = "2.0.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
289
+
290
+ [[package]]
291
+ name = "futures-core"
292
+ version = "0.3.32"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
295
+
296
+ [[package]]
297
+ name = "futures-task"
298
+ version = "0.3.32"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
301
+
302
+ [[package]]
303
+ name = "futures-util"
304
+ version = "0.3.32"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
307
+ dependencies = [
308
+ "futures-core",
309
+ "futures-task",
310
+ "pin-project-lite",
311
+ "slab",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "getrandom"
316
+ version = "0.3.4"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
319
+ dependencies = [
320
+ "cfg-if",
321
+ "libc",
322
+ "r-efi 5.3.0",
323
+ "wasip2",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "getrandom"
328
+ version = "0.4.3"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
331
+ dependencies = [
332
+ "cfg-if",
333
+ "libc",
334
+ "r-efi 6.0.0",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "half"
339
+ version = "2.7.1"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
342
+ dependencies = [
343
+ "cfg-if",
344
+ "crunchy",
345
+ "zerocopy",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "heck"
350
+ version = "0.5.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
353
+
354
+ [[package]]
355
+ name = "insta"
356
+ version = "1.48.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "86f0f8fee8c926415c58d6ae43a08523a26faccb2323f5e6b644fe7dd4ef6b82"
359
+ dependencies = [
360
+ "console",
361
+ "once_cell",
362
+ "similar",
363
+ "tempfile",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "itertools"
368
+ version = "0.13.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
371
+ dependencies = [
372
+ "either",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "itoa"
377
+ version = "1.0.18"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
380
+
381
+ [[package]]
382
+ name = "jiter"
383
+ version = "0.16.0"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "820ddcacd75c9782308d3fa594f3885630ea3f49adba78a8a29abdfe4b81630c"
386
+ dependencies = [
387
+ "ahash",
388
+ "bitvec",
389
+ "lexical-parse-float",
390
+ "num-bigint",
391
+ "num-traits",
392
+ "pyo3",
393
+ "pyo3-build-config",
394
+ "smallvec",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "js-sys"
399
+ version = "0.3.103"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
402
+ dependencies = [
403
+ "cfg-if",
404
+ "futures-util",
405
+ "wasm-bindgen",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "lexical-parse-float"
410
+ version = "1.0.6"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
413
+ dependencies = [
414
+ "lexical-parse-integer",
415
+ "lexical-util",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "lexical-parse-integer"
420
+ version = "1.0.6"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
423
+ dependencies = [
424
+ "lexical-util",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "lexical-util"
429
+ version = "1.0.7"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
432
+
433
+ [[package]]
434
+ name = "libc"
435
+ version = "0.2.186"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
438
+
439
+ [[package]]
440
+ name = "linux-raw-sys"
441
+ version = "0.12.1"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
444
+
445
+ [[package]]
446
+ name = "memchr"
447
+ version = "2.8.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
450
+
451
+ [[package]]
452
+ name = "num-bigint"
453
+ version = "0.4.6"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
456
+ dependencies = [
457
+ "num-integer",
458
+ "num-traits",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "num-integer"
463
+ version = "0.1.46"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
466
+ dependencies = [
467
+ "num-traits",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "num-traits"
472
+ version = "0.2.19"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
475
+ dependencies = [
476
+ "autocfg",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "once_cell"
481
+ version = "1.21.4"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
484
+
485
+ [[package]]
486
+ name = "oorandom"
487
+ version = "11.1.5"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
490
+
491
+ [[package]]
492
+ name = "page_size"
493
+ version = "0.6.0"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
496
+ dependencies = [
497
+ "libc",
498
+ "winapi",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "pin-project-lite"
503
+ version = "0.2.17"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
506
+
507
+ [[package]]
508
+ name = "plotters"
509
+ version = "0.3.7"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
512
+ dependencies = [
513
+ "num-traits",
514
+ "plotters-backend",
515
+ "plotters-svg",
516
+ "wasm-bindgen",
517
+ "web-sys",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "plotters-backend"
522
+ version = "0.3.7"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
525
+
526
+ [[package]]
527
+ name = "plotters-svg"
528
+ version = "0.3.7"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
531
+ dependencies = [
532
+ "plotters-backend",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "portable-atomic"
537
+ version = "1.13.1"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
540
+
541
+ [[package]]
542
+ name = "ppv-lite86"
543
+ version = "0.2.21"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
546
+ dependencies = [
547
+ "zerocopy",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "proc-macro2"
552
+ version = "1.0.106"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
555
+ dependencies = [
556
+ "unicode-ident",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "proptest"
561
+ version = "1.11.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
564
+ dependencies = [
565
+ "bit-set",
566
+ "bit-vec",
567
+ "bitflags",
568
+ "num-traits",
569
+ "rand",
570
+ "rand_chacha",
571
+ "rand_xorshift",
572
+ "regex-syntax",
573
+ "rusty-fork",
574
+ "tempfile",
575
+ "unarray",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "pyo3"
580
+ version = "0.29.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
583
+ dependencies = [
584
+ "libc",
585
+ "num-bigint",
586
+ "num-traits",
587
+ "once_cell",
588
+ "portable-atomic",
589
+ "pyo3-build-config",
590
+ "pyo3-ffi",
591
+ "pyo3-macros",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "pyo3-build-config"
596
+ version = "0.29.0"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
599
+ dependencies = [
600
+ "target-lexicon",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "pyo3-ffi"
605
+ version = "0.29.0"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
608
+ dependencies = [
609
+ "libc",
610
+ "pyo3-build-config",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "pyo3-macros"
615
+ version = "0.29.0"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
618
+ dependencies = [
619
+ "proc-macro2",
620
+ "pyo3-macros-backend",
621
+ "quote",
622
+ "syn",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "pyo3-macros-backend"
627
+ version = "0.29.0"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
630
+ dependencies = [
631
+ "heck",
632
+ "proc-macro2",
633
+ "quote",
634
+ "syn",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "quick-error"
639
+ version = "1.2.3"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
642
+
643
+ [[package]]
644
+ name = "quote"
645
+ version = "1.0.46"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
648
+ dependencies = [
649
+ "proc-macro2",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "r-efi"
654
+ version = "5.3.0"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
657
+
658
+ [[package]]
659
+ name = "r-efi"
660
+ version = "6.0.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
663
+
664
+ [[package]]
665
+ name = "radium"
666
+ version = "0.7.0"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
669
+
670
+ [[package]]
671
+ name = "rand"
672
+ version = "0.9.4"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
675
+ dependencies = [
676
+ "rand_chacha",
677
+ "rand_core",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "rand_chacha"
682
+ version = "0.9.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
685
+ dependencies = [
686
+ "ppv-lite86",
687
+ "rand_core",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "rand_core"
692
+ version = "0.9.5"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
695
+ dependencies = [
696
+ "getrandom 0.3.4",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "rand_xorshift"
701
+ version = "0.4.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
704
+ dependencies = [
705
+ "rand_core",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "rayon"
710
+ version = "1.12.0"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
713
+ dependencies = [
714
+ "either",
715
+ "rayon-core",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "rayon-core"
720
+ version = "1.13.0"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
723
+ dependencies = [
724
+ "crossbeam-deque",
725
+ "crossbeam-utils",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "regex"
730
+ version = "1.12.4"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
733
+ dependencies = [
734
+ "aho-corasick",
735
+ "memchr",
736
+ "regex-automata",
737
+ "regex-syntax",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "regex-automata"
742
+ version = "0.4.14"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
745
+ dependencies = [
746
+ "aho-corasick",
747
+ "memchr",
748
+ "regex-syntax",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "regex-syntax"
753
+ version = "0.8.11"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
756
+
757
+ [[package]]
758
+ name = "rustc-hash"
759
+ version = "2.1.2"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
762
+
763
+ [[package]]
764
+ name = "rustix"
765
+ version = "1.1.4"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
768
+ dependencies = [
769
+ "bitflags",
770
+ "errno",
771
+ "libc",
772
+ "linux-raw-sys",
773
+ "windows-sys",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "rustversion"
778
+ version = "1.0.22"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
781
+
782
+ [[package]]
783
+ name = "rusty-fork"
784
+ version = "0.3.1"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
787
+ dependencies = [
788
+ "fnv",
789
+ "quick-error",
790
+ "tempfile",
791
+ "wait-timeout",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "same-file"
796
+ version = "1.0.6"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
799
+ dependencies = [
800
+ "winapi-util",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "serde"
805
+ version = "1.0.228"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
808
+ dependencies = [
809
+ "serde_core",
810
+ "serde_derive",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "serde_core"
815
+ version = "1.0.228"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
818
+ dependencies = [
819
+ "serde_derive",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "serde_derive"
824
+ version = "1.0.228"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
827
+ dependencies = [
828
+ "proc-macro2",
829
+ "quote",
830
+ "syn",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "serde_json"
835
+ version = "1.0.150"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
838
+ dependencies = [
839
+ "itoa",
840
+ "memchr",
841
+ "serde",
842
+ "serde_core",
843
+ "zmij",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "shlex"
848
+ version = "2.0.1"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
851
+
852
+ [[package]]
853
+ name = "similar"
854
+ version = "2.7.0"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
857
+
858
+ [[package]]
859
+ name = "slab"
860
+ version = "0.4.12"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
863
+
864
+ [[package]]
865
+ name = "smallvec"
866
+ version = "1.15.2"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
869
+
870
+ [[package]]
871
+ name = "syn"
872
+ version = "2.0.118"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
875
+ dependencies = [
876
+ "proc-macro2",
877
+ "quote",
878
+ "unicode-ident",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "tap"
883
+ version = "1.0.1"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
886
+
887
+ [[package]]
888
+ name = "target-lexicon"
889
+ version = "0.13.5"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
892
+
893
+ [[package]]
894
+ name = "tempfile"
895
+ version = "3.27.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
898
+ dependencies = [
899
+ "fastrand",
900
+ "getrandom 0.4.3",
901
+ "once_cell",
902
+ "rustix",
903
+ "windows-sys",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "tinytemplate"
908
+ version = "1.2.1"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
911
+ dependencies = [
912
+ "serde",
913
+ "serde_json",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "unarray"
918
+ version = "0.1.4"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
921
+
922
+ [[package]]
923
+ name = "unicode-ident"
924
+ version = "1.0.24"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
927
+
928
+ [[package]]
929
+ name = "valgebra-core"
930
+ version = "0.0.1"
931
+ dependencies = [
932
+ "criterion",
933
+ "insta",
934
+ "proptest",
935
+ "rustc-hash",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "valgebra-py"
940
+ version = "0.0.1"
941
+ dependencies = [
942
+ "jiter",
943
+ "pyo3",
944
+ "regex",
945
+ "rustc-hash",
946
+ "valgebra-core",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "version_check"
951
+ version = "0.9.5"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
954
+
955
+ [[package]]
956
+ name = "wait-timeout"
957
+ version = "0.2.1"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
960
+ dependencies = [
961
+ "libc",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "walkdir"
966
+ version = "2.5.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
969
+ dependencies = [
970
+ "same-file",
971
+ "winapi-util",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "wasip2"
976
+ version = "1.0.4+wasi-0.2.12"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
979
+ dependencies = [
980
+ "wit-bindgen",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "wasm-bindgen"
985
+ version = "0.2.126"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
988
+ dependencies = [
989
+ "cfg-if",
990
+ "once_cell",
991
+ "rustversion",
992
+ "wasm-bindgen-macro",
993
+ "wasm-bindgen-shared",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "wasm-bindgen-macro"
998
+ version = "0.2.126"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1001
+ dependencies = [
1002
+ "quote",
1003
+ "wasm-bindgen-macro-support",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "wasm-bindgen-macro-support"
1008
+ version = "0.2.126"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1011
+ dependencies = [
1012
+ "bumpalo",
1013
+ "proc-macro2",
1014
+ "quote",
1015
+ "syn",
1016
+ "wasm-bindgen-shared",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "wasm-bindgen-shared"
1021
+ version = "0.2.126"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1024
+ dependencies = [
1025
+ "unicode-ident",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "web-sys"
1030
+ version = "0.3.103"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1033
+ dependencies = [
1034
+ "js-sys",
1035
+ "wasm-bindgen",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "winapi"
1040
+ version = "0.3.9"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1043
+ dependencies = [
1044
+ "winapi-i686-pc-windows-gnu",
1045
+ "winapi-x86_64-pc-windows-gnu",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "winapi-i686-pc-windows-gnu"
1050
+ version = "0.4.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1053
+
1054
+ [[package]]
1055
+ name = "winapi-util"
1056
+ version = "0.1.11"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1059
+ dependencies = [
1060
+ "windows-sys",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "winapi-x86_64-pc-windows-gnu"
1065
+ version = "0.4.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1068
+
1069
+ [[package]]
1070
+ name = "windows-link"
1071
+ version = "0.2.1"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1074
+
1075
+ [[package]]
1076
+ name = "windows-sys"
1077
+ version = "0.61.2"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1080
+ dependencies = [
1081
+ "windows-link",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "wit-bindgen"
1086
+ version = "0.57.1"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1089
+
1090
+ [[package]]
1091
+ name = "wyz"
1092
+ version = "0.5.1"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1095
+ dependencies = [
1096
+ "tap",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "zerocopy"
1101
+ version = "0.8.52"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
1104
+ dependencies = [
1105
+ "zerocopy-derive",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "zerocopy-derive"
1110
+ version = "0.8.52"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
1113
+ dependencies = [
1114
+ "proc-macro2",
1115
+ "quote",
1116
+ "syn",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "zmij"
1121
+ version = "1.0.21"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"