py_matheval 0.1.0__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.
@@ -0,0 +1,1911 @@
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.7.8"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
10
+ dependencies = [
11
+ "getrandom 0.2.17",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "aho-corasick"
18
+ version = "1.1.4"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
21
+ dependencies = [
22
+ "memchr",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "android_system_properties"
27
+ version = "0.1.5"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
30
+ dependencies = [
31
+ "libc",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "anyhow"
36
+ version = "1.0.102"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
39
+
40
+ [[package]]
41
+ name = "arrayvec"
42
+ version = "0.7.6"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
45
+
46
+ [[package]]
47
+ name = "ascii-canvas"
48
+ version = "4.0.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "ef1e3e699d84ab1b0911a1010c5c106aa34ae89aeac103be5ce0c3859db1e891"
51
+ dependencies = [
52
+ "term",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "autocfg"
57
+ version = "1.5.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
60
+
61
+ [[package]]
62
+ name = "bit-set"
63
+ version = "0.9.1"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "34ddef2995421ab6a5c779542c81ee77c115206f4ad9d5a8e05f4ff49716a3dd"
66
+ dependencies = [
67
+ "bit-vec",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "bit-vec"
72
+ version = "0.9.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
75
+
76
+ [[package]]
77
+ name = "bitflags"
78
+ version = "2.11.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
81
+
82
+ [[package]]
83
+ name = "bitvec"
84
+ version = "1.0.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
87
+ dependencies = [
88
+ "funty",
89
+ "radium",
90
+ "tap",
91
+ "wyz",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "block-buffer"
96
+ version = "0.10.4"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
99
+ dependencies = [
100
+ "generic-array",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "borsh"
105
+ version = "1.6.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
108
+ dependencies = [
109
+ "borsh-derive",
110
+ "bytes",
111
+ "cfg_aliases",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "borsh-derive"
116
+ version = "1.6.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59"
119
+ dependencies = [
120
+ "once_cell",
121
+ "proc-macro-crate",
122
+ "proc-macro2",
123
+ "quote",
124
+ "syn 2.0.117",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "bumpalo"
129
+ version = "3.20.2"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
132
+
133
+ [[package]]
134
+ name = "bytecheck"
135
+ version = "0.6.12"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
138
+ dependencies = [
139
+ "bytecheck_derive",
140
+ "ptr_meta",
141
+ "simdutf8",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "bytecheck_derive"
146
+ version = "0.6.12"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
149
+ dependencies = [
150
+ "proc-macro2",
151
+ "quote",
152
+ "syn 1.0.109",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "bytes"
157
+ version = "1.11.1"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
160
+
161
+ [[package]]
162
+ name = "cc"
163
+ version = "1.2.61"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
166
+ dependencies = [
167
+ "find-msvc-tools",
168
+ "shlex",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "cfg-if"
173
+ version = "1.0.4"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
176
+
177
+ [[package]]
178
+ name = "cfg_aliases"
179
+ version = "0.2.1"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
182
+
183
+ [[package]]
184
+ name = "chrono"
185
+ version = "0.4.44"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
188
+ dependencies = [
189
+ "iana-time-zone",
190
+ "js-sys",
191
+ "num-traits",
192
+ "wasm-bindgen",
193
+ "windows-link",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "core-foundation-sys"
198
+ version = "0.8.7"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
201
+
202
+ [[package]]
203
+ name = "cpufeatures"
204
+ version = "0.2.17"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
207
+ dependencies = [
208
+ "libc",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "crunchy"
213
+ version = "0.2.4"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
216
+
217
+ [[package]]
218
+ name = "crypto-common"
219
+ version = "0.1.7"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
222
+ dependencies = [
223
+ "generic-array",
224
+ "typenum",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "deranged"
229
+ version = "0.5.8"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
232
+ dependencies = [
233
+ "powerfmt",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "digest"
238
+ version = "0.10.7"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
241
+ dependencies = [
242
+ "block-buffer",
243
+ "crypto-common",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "either"
248
+ version = "1.15.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
251
+
252
+ [[package]]
253
+ name = "ena"
254
+ version = "0.14.4"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1"
257
+ dependencies = [
258
+ "log",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "equivalent"
263
+ version = "1.0.2"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
266
+
267
+ [[package]]
268
+ name = "find-msvc-tools"
269
+ version = "0.1.9"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
272
+
273
+ [[package]]
274
+ name = "fixedbitset"
275
+ version = "0.5.7"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
278
+
279
+ [[package]]
280
+ name = "foldhash"
281
+ version = "0.1.5"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
284
+
285
+ [[package]]
286
+ name = "funty"
287
+ version = "2.0.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
290
+
291
+ [[package]]
292
+ name = "futures-core"
293
+ version = "0.3.32"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
296
+
297
+ [[package]]
298
+ name = "futures-task"
299
+ version = "0.3.32"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
302
+
303
+ [[package]]
304
+ name = "futures-util"
305
+ version = "0.3.32"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
308
+ dependencies = [
309
+ "futures-core",
310
+ "futures-task",
311
+ "pin-project-lite",
312
+ "slab",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "generic-array"
317
+ version = "0.14.7"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
320
+ dependencies = [
321
+ "typenum",
322
+ "version_check",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "getopts"
327
+ version = "0.2.24"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
330
+ dependencies = [
331
+ "unicode-width",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "getrandom"
336
+ version = "0.2.17"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
339
+ dependencies = [
340
+ "cfg-if",
341
+ "libc",
342
+ "wasi",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "getrandom"
347
+ version = "0.4.2"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
350
+ dependencies = [
351
+ "cfg-if",
352
+ "libc",
353
+ "r-efi",
354
+ "wasip2",
355
+ "wasip3",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "hashbrown"
360
+ version = "0.12.3"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
363
+ dependencies = [
364
+ "ahash",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "hashbrown"
369
+ version = "0.15.5"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
372
+ dependencies = [
373
+ "foldhash",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "hashbrown"
378
+ version = "0.17.0"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
381
+
382
+ [[package]]
383
+ name = "heck"
384
+ version = "0.5.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
387
+
388
+ [[package]]
389
+ name = "iana-time-zone"
390
+ version = "0.1.65"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
393
+ dependencies = [
394
+ "android_system_properties",
395
+ "core-foundation-sys",
396
+ "iana-time-zone-haiku",
397
+ "js-sys",
398
+ "log",
399
+ "wasm-bindgen",
400
+ "windows-core",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "iana-time-zone-haiku"
405
+ version = "0.1.2"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
408
+ dependencies = [
409
+ "cc",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "id-arena"
414
+ version = "2.3.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
417
+
418
+ [[package]]
419
+ name = "indexmap"
420
+ version = "2.14.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
423
+ dependencies = [
424
+ "equivalent",
425
+ "hashbrown 0.17.0",
426
+ "serde",
427
+ "serde_core",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "inventory"
432
+ version = "0.3.24"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
435
+ dependencies = [
436
+ "rustversion",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "is-macro"
441
+ version = "0.3.7"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
444
+ dependencies = [
445
+ "heck",
446
+ "proc-macro2",
447
+ "quote",
448
+ "syn 2.0.117",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "itertools"
453
+ version = "0.11.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
456
+ dependencies = [
457
+ "either",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "itertools"
462
+ version = "0.14.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
465
+ dependencies = [
466
+ "either",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "itoa"
471
+ version = "1.0.18"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
474
+
475
+ [[package]]
476
+ name = "js-sys"
477
+ version = "0.3.97"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
480
+ dependencies = [
481
+ "cfg-if",
482
+ "futures-util",
483
+ "once_cell",
484
+ "wasm-bindgen",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "keccak"
489
+ version = "0.1.6"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
492
+ dependencies = [
493
+ "cpufeatures",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "lalrpop"
498
+ version = "0.23.1"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "98a80a963123205c7157323c99611bc4abb65dcbd62ef46dc4bac74a3941bc75"
501
+ dependencies = [
502
+ "ascii-canvas",
503
+ "bit-set",
504
+ "ena",
505
+ "itertools 0.14.0",
506
+ "lalrpop-util 0.23.1",
507
+ "petgraph",
508
+ "pico-args",
509
+ "regex",
510
+ "regex-syntax",
511
+ "sha3",
512
+ "string_cache",
513
+ "term",
514
+ "unicode-xid",
515
+ "walkdir",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "lalrpop-util"
520
+ version = "0.20.2"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
523
+
524
+ [[package]]
525
+ name = "lalrpop-util"
526
+ version = "0.23.1"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "884f3e747ed2dcee867cda1b0c31a048f9e20de2d916a248949319921a2e666e"
529
+ dependencies = [
530
+ "regex-automata",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "leb128fmt"
535
+ version = "0.1.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
538
+
539
+ [[package]]
540
+ name = "libc"
541
+ version = "0.2.186"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
544
+
545
+ [[package]]
546
+ name = "lock_api"
547
+ version = "0.4.14"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
550
+ dependencies = [
551
+ "scopeguard",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "log"
556
+ version = "0.4.29"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
559
+
560
+ [[package]]
561
+ name = "maplit"
562
+ version = "1.0.2"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
565
+
566
+ [[package]]
567
+ name = "matrixmultiply"
568
+ version = "0.3.10"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
571
+ dependencies = [
572
+ "autocfg",
573
+ "rawpointer",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "memchr"
578
+ version = "2.8.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
581
+
582
+ [[package]]
583
+ name = "ndarray"
584
+ version = "0.17.2"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
587
+ dependencies = [
588
+ "matrixmultiply",
589
+ "num-complex",
590
+ "num-integer",
591
+ "num-traits",
592
+ "portable-atomic",
593
+ "portable-atomic-util",
594
+ "rawpointer",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "new_debug_unreachable"
599
+ version = "1.0.6"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
602
+
603
+ [[package]]
604
+ name = "num-bigint"
605
+ version = "0.4.6"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
608
+ dependencies = [
609
+ "num-integer",
610
+ "num-traits",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "num-complex"
615
+ version = "0.4.6"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
618
+ dependencies = [
619
+ "num-traits",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "num-conv"
624
+ version = "0.2.1"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
627
+
628
+ [[package]]
629
+ name = "num-integer"
630
+ version = "0.1.46"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
633
+ dependencies = [
634
+ "num-traits",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "num-traits"
639
+ version = "0.2.19"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
642
+ dependencies = [
643
+ "autocfg",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "numpy"
648
+ version = "0.28.0"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
651
+ dependencies = [
652
+ "libc",
653
+ "ndarray",
654
+ "num-complex",
655
+ "num-integer",
656
+ "num-traits",
657
+ "pyo3",
658
+ "pyo3-build-config",
659
+ "rustc-hash 2.1.2",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "once_cell"
664
+ version = "1.21.4"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
667
+
668
+ [[package]]
669
+ name = "ordered-float"
670
+ version = "5.3.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
673
+ dependencies = [
674
+ "num-traits",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "parking_lot"
679
+ version = "0.12.5"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
682
+ dependencies = [
683
+ "lock_api",
684
+ "parking_lot_core",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "parking_lot_core"
689
+ version = "0.9.12"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
692
+ dependencies = [
693
+ "cfg-if",
694
+ "libc",
695
+ "redox_syscall",
696
+ "smallvec",
697
+ "windows-link",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "petgraph"
702
+ version = "0.8.3"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
705
+ dependencies = [
706
+ "fixedbitset",
707
+ "hashbrown 0.15.5",
708
+ "indexmap",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "phf"
713
+ version = "0.11.3"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
716
+ dependencies = [
717
+ "phf_shared 0.11.3",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "phf_codegen"
722
+ version = "0.11.3"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
725
+ dependencies = [
726
+ "phf_generator",
727
+ "phf_shared 0.11.3",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "phf_generator"
732
+ version = "0.11.3"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
735
+ dependencies = [
736
+ "phf_shared 0.11.3",
737
+ "rand",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "phf_shared"
742
+ version = "0.11.3"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
745
+ dependencies = [
746
+ "siphasher",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "phf_shared"
751
+ version = "0.13.1"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
754
+ dependencies = [
755
+ "siphasher",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "pico-args"
760
+ version = "0.5.0"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
763
+
764
+ [[package]]
765
+ name = "pin-project-lite"
766
+ version = "0.2.17"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
769
+
770
+ [[package]]
771
+ name = "portable-atomic"
772
+ version = "1.13.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
775
+
776
+ [[package]]
777
+ name = "portable-atomic-util"
778
+ version = "0.2.7"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
781
+ dependencies = [
782
+ "portable-atomic",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "powerfmt"
787
+ version = "0.2.0"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
790
+
791
+ [[package]]
792
+ name = "ppv-lite86"
793
+ version = "0.2.21"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
796
+ dependencies = [
797
+ "zerocopy",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "precomputed-hash"
802
+ version = "0.1.1"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
805
+
806
+ [[package]]
807
+ name = "prettyplease"
808
+ version = "0.2.37"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
811
+ dependencies = [
812
+ "proc-macro2",
813
+ "syn 2.0.117",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "proc-macro-crate"
818
+ version = "3.5.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
821
+ dependencies = [
822
+ "toml_edit",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "proc-macro2"
827
+ version = "1.0.106"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
830
+ dependencies = [
831
+ "unicode-ident",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "ptr_meta"
836
+ version = "0.1.4"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
839
+ dependencies = [
840
+ "ptr_meta_derive",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "ptr_meta_derive"
845
+ version = "0.1.4"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
848
+ dependencies = [
849
+ "proc-macro2",
850
+ "quote",
851
+ "syn 1.0.109",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "py_matheval"
856
+ version = "0.1.0"
857
+ dependencies = [
858
+ "lalrpop",
859
+ "lalrpop-util 0.23.1",
860
+ "pyo3",
861
+ "pyo3-stub-gen",
862
+ "rust_decimal",
863
+ "serde",
864
+ "serde_json",
865
+ "uuid",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "pyo3"
870
+ version = "0.28.3"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
873
+ dependencies = [
874
+ "libc",
875
+ "once_cell",
876
+ "portable-atomic",
877
+ "pyo3-build-config",
878
+ "pyo3-ffi",
879
+ "pyo3-macros",
880
+ "rust_decimal",
881
+ "uuid",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "pyo3-build-config"
886
+ version = "0.28.3"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
889
+ dependencies = [
890
+ "target-lexicon",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "pyo3-ffi"
895
+ version = "0.28.3"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
898
+ dependencies = [
899
+ "libc",
900
+ "pyo3-build-config",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "pyo3-macros"
905
+ version = "0.28.3"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
908
+ dependencies = [
909
+ "proc-macro2",
910
+ "pyo3-macros-backend",
911
+ "quote",
912
+ "syn 2.0.117",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "pyo3-macros-backend"
917
+ version = "0.28.3"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
920
+ dependencies = [
921
+ "heck",
922
+ "proc-macro2",
923
+ "pyo3-build-config",
924
+ "quote",
925
+ "syn 2.0.117",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "pyo3-stub-gen"
930
+ version = "0.22.2"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "b695173a33bec37b6acd288efe74f902f123f5891e5ff5ad53ff429e18833c14"
933
+ dependencies = [
934
+ "anyhow",
935
+ "chrono",
936
+ "either",
937
+ "indexmap",
938
+ "inventory",
939
+ "itertools 0.14.0",
940
+ "log",
941
+ "maplit",
942
+ "num-complex",
943
+ "numpy",
944
+ "ordered-float",
945
+ "pyo3",
946
+ "pyo3-stub-gen-derive",
947
+ "rust_decimal",
948
+ "rustpython-parser",
949
+ "serde",
950
+ "serde_json",
951
+ "time",
952
+ "toml",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "pyo3-stub-gen-derive"
957
+ version = "0.22.2"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "c2f901834d55c74f36be3353994062e3c3b3d47fda25572f5535e99434612ac8"
960
+ dependencies = [
961
+ "heck",
962
+ "indexmap",
963
+ "proc-macro2",
964
+ "quote",
965
+ "rustpython-parser",
966
+ "syn 2.0.117",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "quote"
971
+ version = "1.0.45"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
974
+ dependencies = [
975
+ "proc-macro2",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "r-efi"
980
+ version = "6.0.0"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
983
+
984
+ [[package]]
985
+ name = "radium"
986
+ version = "0.7.0"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
989
+
990
+ [[package]]
991
+ name = "rand"
992
+ version = "0.8.6"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
995
+ dependencies = [
996
+ "libc",
997
+ "rand_chacha",
998
+ "rand_core",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "rand_chacha"
1003
+ version = "0.3.1"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1006
+ dependencies = [
1007
+ "ppv-lite86",
1008
+ "rand_core",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "rand_core"
1013
+ version = "0.6.4"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1016
+ dependencies = [
1017
+ "getrandom 0.2.17",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "rawpointer"
1022
+ version = "0.2.1"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1025
+
1026
+ [[package]]
1027
+ name = "redox_syscall"
1028
+ version = "0.5.18"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1031
+ dependencies = [
1032
+ "bitflags",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "regex"
1037
+ version = "1.12.3"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1040
+ dependencies = [
1041
+ "aho-corasick",
1042
+ "memchr",
1043
+ "regex-automata",
1044
+ "regex-syntax",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "regex-automata"
1049
+ version = "0.4.14"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1052
+ dependencies = [
1053
+ "aho-corasick",
1054
+ "memchr",
1055
+ "regex-syntax",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "regex-syntax"
1060
+ version = "0.8.10"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1063
+
1064
+ [[package]]
1065
+ name = "rend"
1066
+ version = "0.4.2"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
1069
+ dependencies = [
1070
+ "bytecheck",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "rkyv"
1075
+ version = "0.7.46"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
1078
+ dependencies = [
1079
+ "bitvec",
1080
+ "bytecheck",
1081
+ "bytes",
1082
+ "hashbrown 0.12.3",
1083
+ "ptr_meta",
1084
+ "rend",
1085
+ "rkyv_derive",
1086
+ "seahash",
1087
+ "tinyvec",
1088
+ "uuid",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "rkyv_derive"
1093
+ version = "0.7.46"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
1096
+ dependencies = [
1097
+ "proc-macro2",
1098
+ "quote",
1099
+ "syn 1.0.109",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "rust_decimal"
1104
+ version = "1.41.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "2ce901f9a19d251159075a4c37af514c3b8ef99c22e02dd8c19161cf397ee94a"
1107
+ dependencies = [
1108
+ "arrayvec",
1109
+ "borsh",
1110
+ "bytes",
1111
+ "num-traits",
1112
+ "rand",
1113
+ "rkyv",
1114
+ "serde",
1115
+ "serde_json",
1116
+ "wasm-bindgen",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "rustc-hash"
1121
+ version = "1.1.0"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1124
+
1125
+ [[package]]
1126
+ name = "rustc-hash"
1127
+ version = "2.1.2"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1130
+
1131
+ [[package]]
1132
+ name = "rustpython-ast"
1133
+ version = "0.4.0"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
1136
+ dependencies = [
1137
+ "is-macro",
1138
+ "num-bigint",
1139
+ "rustpython-parser-core",
1140
+ "static_assertions",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "rustpython-parser"
1145
+ version = "0.4.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
1148
+ dependencies = [
1149
+ "anyhow",
1150
+ "is-macro",
1151
+ "itertools 0.11.0",
1152
+ "lalrpop-util 0.20.2",
1153
+ "log",
1154
+ "num-bigint",
1155
+ "num-traits",
1156
+ "phf",
1157
+ "phf_codegen",
1158
+ "rustc-hash 1.1.0",
1159
+ "rustpython-ast",
1160
+ "rustpython-parser-core",
1161
+ "tiny-keccak",
1162
+ "unic-emoji-char",
1163
+ "unic-ucd-ident",
1164
+ "unicode_names2",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "rustpython-parser-core"
1169
+ version = "0.4.0"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
1172
+ dependencies = [
1173
+ "is-macro",
1174
+ "memchr",
1175
+ "rustpython-parser-vendored",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "rustpython-parser-vendored"
1180
+ version = "0.4.0"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
1183
+ dependencies = [
1184
+ "memchr",
1185
+ "once_cell",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "rustversion"
1190
+ version = "1.0.22"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1193
+
1194
+ [[package]]
1195
+ name = "same-file"
1196
+ version = "1.0.6"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1199
+ dependencies = [
1200
+ "winapi-util",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "scopeguard"
1205
+ version = "1.2.0"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1208
+
1209
+ [[package]]
1210
+ name = "seahash"
1211
+ version = "4.1.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1214
+
1215
+ [[package]]
1216
+ name = "semver"
1217
+ version = "1.0.28"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1220
+
1221
+ [[package]]
1222
+ name = "serde"
1223
+ version = "1.0.228"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1226
+ dependencies = [
1227
+ "serde_core",
1228
+ "serde_derive",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "serde_core"
1233
+ version = "1.0.228"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1236
+ dependencies = [
1237
+ "serde_derive",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "serde_derive"
1242
+ version = "1.0.228"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1245
+ dependencies = [
1246
+ "proc-macro2",
1247
+ "quote",
1248
+ "syn 2.0.117",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "serde_json"
1253
+ version = "1.0.149"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1256
+ dependencies = [
1257
+ "itoa",
1258
+ "memchr",
1259
+ "serde",
1260
+ "serde_core",
1261
+ "zmij",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "serde_spanned"
1266
+ version = "1.1.1"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1269
+ dependencies = [
1270
+ "serde_core",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "sha3"
1275
+ version = "0.10.9"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
1278
+ dependencies = [
1279
+ "digest",
1280
+ "keccak",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "shlex"
1285
+ version = "1.3.0"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1288
+
1289
+ [[package]]
1290
+ name = "simdutf8"
1291
+ version = "0.1.5"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1294
+
1295
+ [[package]]
1296
+ name = "siphasher"
1297
+ version = "1.0.2"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1300
+
1301
+ [[package]]
1302
+ name = "slab"
1303
+ version = "0.4.12"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1306
+
1307
+ [[package]]
1308
+ name = "smallvec"
1309
+ version = "1.15.1"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1312
+
1313
+ [[package]]
1314
+ name = "static_assertions"
1315
+ version = "1.1.0"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1318
+
1319
+ [[package]]
1320
+ name = "string_cache"
1321
+ version = "0.9.0"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
1324
+ dependencies = [
1325
+ "new_debug_unreachable",
1326
+ "parking_lot",
1327
+ "phf_shared 0.13.1",
1328
+ "precomputed-hash",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "syn"
1333
+ version = "1.0.109"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1336
+ dependencies = [
1337
+ "proc-macro2",
1338
+ "quote",
1339
+ "unicode-ident",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "syn"
1344
+ version = "2.0.117"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1347
+ dependencies = [
1348
+ "proc-macro2",
1349
+ "quote",
1350
+ "unicode-ident",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "tap"
1355
+ version = "1.0.1"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1358
+
1359
+ [[package]]
1360
+ name = "target-lexicon"
1361
+ version = "0.13.5"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1364
+
1365
+ [[package]]
1366
+ name = "term"
1367
+ version = "1.2.1"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "d8c27177b12a6399ffc08b98f76f7c9a1f4fe9fc967c784c5a071fa8d93cf7e1"
1370
+ dependencies = [
1371
+ "windows-sys",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "time"
1376
+ version = "0.3.47"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1379
+ dependencies = [
1380
+ "deranged",
1381
+ "num-conv",
1382
+ "powerfmt",
1383
+ "serde_core",
1384
+ "time-core",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "time-core"
1389
+ version = "0.1.8"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1392
+
1393
+ [[package]]
1394
+ name = "tiny-keccak"
1395
+ version = "2.0.2"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1398
+ dependencies = [
1399
+ "crunchy",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "tinyvec"
1404
+ version = "1.11.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1407
+ dependencies = [
1408
+ "tinyvec_macros",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "tinyvec_macros"
1413
+ version = "0.1.1"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1416
+
1417
+ [[package]]
1418
+ name = "toml"
1419
+ version = "1.1.2+spec-1.1.0"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
1422
+ dependencies = [
1423
+ "indexmap",
1424
+ "serde_core",
1425
+ "serde_spanned",
1426
+ "toml_datetime",
1427
+ "toml_parser",
1428
+ "toml_writer",
1429
+ "winnow",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "toml_datetime"
1434
+ version = "1.1.1+spec-1.1.0"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1437
+ dependencies = [
1438
+ "serde_core",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "toml_edit"
1443
+ version = "0.25.11+spec-1.1.0"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
1446
+ dependencies = [
1447
+ "indexmap",
1448
+ "toml_datetime",
1449
+ "toml_parser",
1450
+ "winnow",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "toml_parser"
1455
+ version = "1.1.2+spec-1.1.0"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1458
+ dependencies = [
1459
+ "winnow",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "toml_writer"
1464
+ version = "1.1.1+spec-1.1.0"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1467
+
1468
+ [[package]]
1469
+ name = "typenum"
1470
+ version = "1.20.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1473
+
1474
+ [[package]]
1475
+ name = "unic-char-property"
1476
+ version = "0.9.0"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
1479
+ dependencies = [
1480
+ "unic-char-range",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "unic-char-range"
1485
+ version = "0.9.0"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
1488
+
1489
+ [[package]]
1490
+ name = "unic-common"
1491
+ version = "0.9.0"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
1494
+
1495
+ [[package]]
1496
+ name = "unic-emoji-char"
1497
+ version = "0.9.0"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
1500
+ dependencies = [
1501
+ "unic-char-property",
1502
+ "unic-char-range",
1503
+ "unic-ucd-version",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "unic-ucd-ident"
1508
+ version = "0.9.0"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
1511
+ dependencies = [
1512
+ "unic-char-property",
1513
+ "unic-char-range",
1514
+ "unic-ucd-version",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "unic-ucd-version"
1519
+ version = "0.9.0"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
1522
+ dependencies = [
1523
+ "unic-common",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "unicode-ident"
1528
+ version = "1.0.24"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1531
+
1532
+ [[package]]
1533
+ name = "unicode-width"
1534
+ version = "0.2.2"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1537
+
1538
+ [[package]]
1539
+ name = "unicode-xid"
1540
+ version = "0.2.6"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1543
+
1544
+ [[package]]
1545
+ name = "unicode_names2"
1546
+ version = "1.3.0"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
1549
+ dependencies = [
1550
+ "phf",
1551
+ "unicode_names2_generator",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "unicode_names2_generator"
1556
+ version = "1.3.0"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
1559
+ dependencies = [
1560
+ "getopts",
1561
+ "log",
1562
+ "phf_codegen",
1563
+ "rand",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "uuid"
1568
+ version = "1.23.1"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
1571
+ dependencies = [
1572
+ "getrandom 0.4.2",
1573
+ "js-sys",
1574
+ "serde_core",
1575
+ "wasm-bindgen",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "version_check"
1580
+ version = "0.9.5"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1583
+
1584
+ [[package]]
1585
+ name = "walkdir"
1586
+ version = "2.5.0"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1589
+ dependencies = [
1590
+ "same-file",
1591
+ "winapi-util",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "wasi"
1596
+ version = "0.11.1+wasi-snapshot-preview1"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1599
+
1600
+ [[package]]
1601
+ name = "wasip2"
1602
+ version = "1.0.3+wasi-0.2.9"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1605
+ dependencies = [
1606
+ "wit-bindgen 0.57.1",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "wasip3"
1611
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1614
+ dependencies = [
1615
+ "wit-bindgen 0.51.0",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "wasm-bindgen"
1620
+ version = "0.2.120"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
1623
+ dependencies = [
1624
+ "cfg-if",
1625
+ "once_cell",
1626
+ "rustversion",
1627
+ "serde",
1628
+ "wasm-bindgen-macro",
1629
+ "wasm-bindgen-shared",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "wasm-bindgen-macro"
1634
+ version = "0.2.120"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
1637
+ dependencies = [
1638
+ "quote",
1639
+ "wasm-bindgen-macro-support",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "wasm-bindgen-macro-support"
1644
+ version = "0.2.120"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
1647
+ dependencies = [
1648
+ "bumpalo",
1649
+ "proc-macro2",
1650
+ "quote",
1651
+ "syn 2.0.117",
1652
+ "wasm-bindgen-shared",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "wasm-bindgen-shared"
1657
+ version = "0.2.120"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
1660
+ dependencies = [
1661
+ "unicode-ident",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "wasm-encoder"
1666
+ version = "0.244.0"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1669
+ dependencies = [
1670
+ "leb128fmt",
1671
+ "wasmparser",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "wasm-metadata"
1676
+ version = "0.244.0"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1679
+ dependencies = [
1680
+ "anyhow",
1681
+ "indexmap",
1682
+ "wasm-encoder",
1683
+ "wasmparser",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "wasmparser"
1688
+ version = "0.244.0"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1691
+ dependencies = [
1692
+ "bitflags",
1693
+ "hashbrown 0.15.5",
1694
+ "indexmap",
1695
+ "semver",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "winapi-util"
1700
+ version = "0.1.11"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1703
+ dependencies = [
1704
+ "windows-sys",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "windows-core"
1709
+ version = "0.62.2"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1712
+ dependencies = [
1713
+ "windows-implement",
1714
+ "windows-interface",
1715
+ "windows-link",
1716
+ "windows-result",
1717
+ "windows-strings",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "windows-implement"
1722
+ version = "0.60.2"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1725
+ dependencies = [
1726
+ "proc-macro2",
1727
+ "quote",
1728
+ "syn 2.0.117",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "windows-interface"
1733
+ version = "0.59.3"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1736
+ dependencies = [
1737
+ "proc-macro2",
1738
+ "quote",
1739
+ "syn 2.0.117",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "windows-link"
1744
+ version = "0.2.1"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1747
+
1748
+ [[package]]
1749
+ name = "windows-result"
1750
+ version = "0.4.1"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1753
+ dependencies = [
1754
+ "windows-link",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "windows-strings"
1759
+ version = "0.5.1"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1762
+ dependencies = [
1763
+ "windows-link",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "windows-sys"
1768
+ version = "0.61.2"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1771
+ dependencies = [
1772
+ "windows-link",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "winnow"
1777
+ version = "1.0.2"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
1780
+ dependencies = [
1781
+ "memchr",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "wit-bindgen"
1786
+ version = "0.51.0"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1789
+ dependencies = [
1790
+ "wit-bindgen-rust-macro",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "wit-bindgen"
1795
+ version = "0.57.1"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1798
+
1799
+ [[package]]
1800
+ name = "wit-bindgen-core"
1801
+ version = "0.51.0"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1804
+ dependencies = [
1805
+ "anyhow",
1806
+ "heck",
1807
+ "wit-parser",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "wit-bindgen-rust"
1812
+ version = "0.51.0"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1815
+ dependencies = [
1816
+ "anyhow",
1817
+ "heck",
1818
+ "indexmap",
1819
+ "prettyplease",
1820
+ "syn 2.0.117",
1821
+ "wasm-metadata",
1822
+ "wit-bindgen-core",
1823
+ "wit-component",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "wit-bindgen-rust-macro"
1828
+ version = "0.51.0"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1831
+ dependencies = [
1832
+ "anyhow",
1833
+ "prettyplease",
1834
+ "proc-macro2",
1835
+ "quote",
1836
+ "syn 2.0.117",
1837
+ "wit-bindgen-core",
1838
+ "wit-bindgen-rust",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "wit-component"
1843
+ version = "0.244.0"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1846
+ dependencies = [
1847
+ "anyhow",
1848
+ "bitflags",
1849
+ "indexmap",
1850
+ "log",
1851
+ "serde",
1852
+ "serde_derive",
1853
+ "serde_json",
1854
+ "wasm-encoder",
1855
+ "wasm-metadata",
1856
+ "wasmparser",
1857
+ "wit-parser",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "wit-parser"
1862
+ version = "0.244.0"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1865
+ dependencies = [
1866
+ "anyhow",
1867
+ "id-arena",
1868
+ "indexmap",
1869
+ "log",
1870
+ "semver",
1871
+ "serde",
1872
+ "serde_derive",
1873
+ "serde_json",
1874
+ "unicode-xid",
1875
+ "wasmparser",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "wyz"
1880
+ version = "0.5.1"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1883
+ dependencies = [
1884
+ "tap",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "zerocopy"
1889
+ version = "0.8.48"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1892
+ dependencies = [
1893
+ "zerocopy-derive",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "zerocopy-derive"
1898
+ version = "0.8.48"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1901
+ dependencies = [
1902
+ "proc-macro2",
1903
+ "quote",
1904
+ "syn 2.0.117",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "zmij"
1909
+ version = "1.0.21"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"