scnr2 0.4.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.
Files changed (41) hide show
  1. scnr2-0.4.0/Cargo.lock +1495 -0
  2. scnr2-0.4.0/Cargo.toml +20 -0
  3. scnr2-0.4.0/PKG-INFO +14 -0
  4. scnr2-0.4.0/py.typed +0 -0
  5. scnr2-0.4.0/pyproject.toml +30 -0
  6. scnr2-0.4.0/scnr2/Cargo.toml +15 -0
  7. scnr2-0.4.0/scnr2/README.md +160 -0
  8. scnr2-0.4.0/scnr2/src/internals/char_iter/item.rs +26 -0
  9. scnr2-0.4.0/scnr2/src/internals/char_iter/iter.rs +62 -0
  10. scnr2-0.4.0/scnr2/src/internals/char_iter/iter_with_position.rs +92 -0
  11. scnr2-0.4.0/scnr2/src/internals/char_iter.rs +5 -0
  12. scnr2-0.4.0/scnr2/src/internals/find_matches.rs +479 -0
  13. scnr2-0.4.0/scnr2/src/internals/match_types.rs +113 -0
  14. scnr2-0.4.0/scnr2/src/internals/mod.rs +13 -0
  15. scnr2-0.4.0/scnr2/src/internals/position.rs +60 -0
  16. scnr2-0.4.0/scnr2/src/internals/scanner_impl.rs +216 -0
  17. scnr2-0.4.0/scnr2/src/lib.rs +106 -0
  18. scnr2-0.4.0/scnr2-python/Cargo.toml +20 -0
  19. scnr2-0.4.0/scnr2-python/README.md +93 -0
  20. scnr2-0.4.0/scnr2-python/py.typed +0 -0
  21. scnr2-0.4.0/scnr2-python/scnr2.pyi +26 -0
  22. scnr2-0.4.0/scnr2-python/src/lib.rs +269 -0
  23. scnr2-0.4.0/scnr2-python/test_scnr2.py +101 -0
  24. scnr2-0.4.0/scnr2-python/uv.lock +8 -0
  25. scnr2-0.4.0/scnr2.pyi +26 -0
  26. scnr2-0.4.0/scnr2_generate/Cargo.toml +23 -0
  27. scnr2-0.4.0/scnr2_generate/README.md +160 -0
  28. scnr2-0.4.0/scnr2_generate/data/expected_generated_code.rs +2493 -0
  29. scnr2-0.4.0/scnr2_generate/src/character_classes.rs +408 -0
  30. scnr2-0.4.0/scnr2_generate/src/dfa.rs +368 -0
  31. scnr2-0.4.0/scnr2_generate/src/generate.rs +330 -0
  32. scnr2-0.4.0/scnr2_generate/src/ids.rs +124 -0
  33. scnr2-0.4.0/scnr2_generate/src/lib.rs +56 -0
  34. scnr2-0.4.0/scnr2_generate/src/minimizer.rs +556 -0
  35. scnr2-0.4.0/scnr2_generate/src/nfa.rs +878 -0
  36. scnr2-0.4.0/scnr2_generate/src/pattern.rs +312 -0
  37. scnr2-0.4.0/scnr2_generate/src/scanner_data.rs +416 -0
  38. scnr2-0.4.0/scnr2_generate/src/scanner_mode.rs +57 -0
  39. scnr2-0.4.0/scnr2_macro/Cargo.toml +18 -0
  40. scnr2-0.4.0/scnr2_macro/README.md +160 -0
  41. scnr2-0.4.0/scnr2_macro/src/lib.rs +6 -0
scnr2-0.4.0/Cargo.lock ADDED
@@ -0,0 +1,1495 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "0.6.21"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.13"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "0.2.7"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.4"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
64
+ dependencies = [
65
+ "windows-sys 0.60.2",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.10"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys 0.60.2",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anyhow"
81
+ version = "1.0.100"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
84
+
85
+ [[package]]
86
+ name = "approx"
87
+ version = "0.5.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
90
+ dependencies = [
91
+ "num-traits",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "autocfg"
96
+ version = "1.5.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
99
+
100
+ [[package]]
101
+ name = "bitflags"
102
+ version = "2.9.4"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
105
+
106
+ [[package]]
107
+ name = "bumpalo"
108
+ version = "3.19.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
111
+
112
+ [[package]]
113
+ name = "cast"
114
+ version = "0.3.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
117
+
118
+ [[package]]
119
+ name = "cc"
120
+ version = "1.2.41"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
123
+ dependencies = [
124
+ "find-msvc-tools",
125
+ "shlex",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "cfg-if"
130
+ version = "1.0.4"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
133
+
134
+ [[package]]
135
+ name = "cfg_aliases"
136
+ version = "0.2.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
139
+
140
+ [[package]]
141
+ name = "ciborium"
142
+ version = "0.2.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
145
+ dependencies = [
146
+ "ciborium-io",
147
+ "ciborium-ll",
148
+ "serde",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "ciborium-io"
153
+ version = "0.2.2"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
156
+
157
+ [[package]]
158
+ name = "ciborium-ll"
159
+ version = "0.2.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
162
+ dependencies = [
163
+ "ciborium-io",
164
+ "half",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "clap"
169
+ version = "4.5.49"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f"
172
+ dependencies = [
173
+ "clap_builder",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "clap_builder"
178
+ version = "4.5.49"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730"
181
+ dependencies = [
182
+ "anstyle",
183
+ "clap_lex",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "clap_lex"
188
+ version = "0.7.6"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
191
+
192
+ [[package]]
193
+ name = "codspeed"
194
+ version = "4.2.1"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "5f0d98d97fd75ca4489a1a0997820a6521531085e7c8a98941bd0e1264d567dd"
197
+ dependencies = [
198
+ "anyhow",
199
+ "cc",
200
+ "colored",
201
+ "getrandom 0.2.16",
202
+ "glob",
203
+ "libc",
204
+ "nix",
205
+ "serde",
206
+ "serde_json",
207
+ "statrs",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "codspeed-criterion-compat"
212
+ version = "4.2.1"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "d16fe2db207123f7b3a3b5cfff0c22f99469f7534145f3573f57f4c8a5653c2c"
215
+ dependencies = [
216
+ "clap",
217
+ "codspeed",
218
+ "codspeed-criterion-compat-walltime",
219
+ "colored",
220
+ "regex",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "codspeed-criterion-compat-walltime"
225
+ version = "4.2.1"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "b035c7f9846b143aeabb3833f5b584023eb97b43ecbff3d997db74c4372df2bd"
228
+ dependencies = [
229
+ "anes",
230
+ "cast",
231
+ "ciborium",
232
+ "clap",
233
+ "codspeed",
234
+ "criterion-plot 0.5.0",
235
+ "is-terminal",
236
+ "itertools 0.10.5",
237
+ "num-traits",
238
+ "once_cell",
239
+ "oorandom",
240
+ "plotters",
241
+ "rayon",
242
+ "regex",
243
+ "serde",
244
+ "serde_derive",
245
+ "serde_json",
246
+ "tinytemplate",
247
+ "walkdir",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "colorchoice"
252
+ version = "1.0.4"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
255
+
256
+ [[package]]
257
+ name = "colored"
258
+ version = "2.2.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
261
+ dependencies = [
262
+ "lazy_static",
263
+ "windows-sys 0.59.0",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "criterion"
268
+ version = "0.8.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
271
+ dependencies = [
272
+ "alloca",
273
+ "anes",
274
+ "cast",
275
+ "ciborium",
276
+ "clap",
277
+ "criterion-plot 0.8.1",
278
+ "itertools 0.13.0",
279
+ "num-traits",
280
+ "oorandom",
281
+ "page_size",
282
+ "plotters",
283
+ "rayon",
284
+ "regex",
285
+ "serde",
286
+ "serde_json",
287
+ "tinytemplate",
288
+ "walkdir",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "criterion-plot"
293
+ version = "0.5.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
296
+ dependencies = [
297
+ "cast",
298
+ "itertools 0.10.5",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "criterion-plot"
303
+ version = "0.8.1"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
306
+ dependencies = [
307
+ "cast",
308
+ "itertools 0.13.0",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "crossbeam-deque"
313
+ version = "0.8.6"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
316
+ dependencies = [
317
+ "crossbeam-epoch",
318
+ "crossbeam-utils",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "crossbeam-epoch"
323
+ version = "0.9.18"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
326
+ dependencies = [
327
+ "crossbeam-utils",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "crossbeam-utils"
332
+ version = "0.8.21"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
335
+
336
+ [[package]]
337
+ name = "crunchy"
338
+ version = "0.2.4"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
341
+
342
+ [[package]]
343
+ name = "either"
344
+ version = "1.15.0"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
347
+
348
+ [[package]]
349
+ name = "env_filter"
350
+ version = "0.1.4"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
353
+ dependencies = [
354
+ "log",
355
+ "regex",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "env_logger"
360
+ version = "0.11.8"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
363
+ dependencies = [
364
+ "anstream",
365
+ "anstyle",
366
+ "env_filter",
367
+ "jiff",
368
+ "log",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "equivalent"
373
+ version = "1.0.2"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
376
+
377
+ [[package]]
378
+ name = "errno"
379
+ version = "0.3.14"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
382
+ dependencies = [
383
+ "libc",
384
+ "windows-sys 0.61.2",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "fastrand"
389
+ version = "2.3.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
392
+
393
+ [[package]]
394
+ name = "find-msvc-tools"
395
+ version = "0.1.4"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
398
+
399
+ [[package]]
400
+ name = "futures-core"
401
+ version = "0.3.31"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
404
+
405
+ [[package]]
406
+ name = "futures-macro"
407
+ version = "0.3.31"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
410
+ dependencies = [
411
+ "proc-macro2",
412
+ "quote",
413
+ "syn",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "futures-task"
418
+ version = "0.3.31"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
421
+
422
+ [[package]]
423
+ name = "futures-timer"
424
+ version = "3.0.3"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
427
+
428
+ [[package]]
429
+ name = "futures-util"
430
+ version = "0.3.31"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
433
+ dependencies = [
434
+ "futures-core",
435
+ "futures-macro",
436
+ "futures-task",
437
+ "pin-project-lite",
438
+ "pin-utils",
439
+ "slab",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "getrandom"
444
+ version = "0.2.16"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
447
+ dependencies = [
448
+ "cfg-if",
449
+ "libc",
450
+ "wasi",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "getrandom"
455
+ version = "0.3.4"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
458
+ dependencies = [
459
+ "cfg-if",
460
+ "libc",
461
+ "r-efi",
462
+ "wasip2",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "glob"
467
+ version = "0.3.3"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
470
+
471
+ [[package]]
472
+ name = "half"
473
+ version = "2.7.1"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
476
+ dependencies = [
477
+ "cfg-if",
478
+ "crunchy",
479
+ "zerocopy",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "hashbrown"
484
+ version = "0.16.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
487
+
488
+ [[package]]
489
+ name = "heck"
490
+ version = "0.5.0"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
493
+
494
+ [[package]]
495
+ name = "hermit-abi"
496
+ version = "0.5.2"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
499
+
500
+ [[package]]
501
+ name = "indexmap"
502
+ version = "2.12.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
505
+ dependencies = [
506
+ "equivalent",
507
+ "hashbrown",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "indoc"
512
+ version = "2.0.7"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
515
+ dependencies = [
516
+ "rustversion",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "is-terminal"
521
+ version = "0.4.16"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
524
+ dependencies = [
525
+ "hermit-abi",
526
+ "libc",
527
+ "windows-sys 0.59.0",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "is_terminal_polyfill"
532
+ version = "1.70.1"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
535
+
536
+ [[package]]
537
+ name = "itertools"
538
+ version = "0.10.5"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
541
+ dependencies = [
542
+ "either",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "itertools"
547
+ version = "0.13.0"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
550
+ dependencies = [
551
+ "either",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "itoa"
556
+ version = "1.0.15"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
559
+
560
+ [[package]]
561
+ name = "jiff"
562
+ version = "0.2.15"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
565
+ dependencies = [
566
+ "jiff-static",
567
+ "log",
568
+ "portable-atomic",
569
+ "portable-atomic-util",
570
+ "serde",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "jiff-static"
575
+ version = "0.2.15"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
578
+ dependencies = [
579
+ "proc-macro2",
580
+ "quote",
581
+ "syn",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "js-sys"
586
+ version = "0.3.81"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
589
+ dependencies = [
590
+ "once_cell",
591
+ "wasm-bindgen",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "lazy_static"
596
+ version = "1.5.0"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
599
+
600
+ [[package]]
601
+ name = "libc"
602
+ version = "0.2.177"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
605
+
606
+ [[package]]
607
+ name = "linux-raw-sys"
608
+ version = "0.11.0"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
611
+
612
+ [[package]]
613
+ name = "log"
614
+ version = "0.4.29"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
617
+
618
+ [[package]]
619
+ name = "memchr"
620
+ version = "2.7.6"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
623
+
624
+ [[package]]
625
+ name = "memoffset"
626
+ version = "0.9.1"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
629
+ dependencies = [
630
+ "autocfg",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "nix"
635
+ version = "0.30.1"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
638
+ dependencies = [
639
+ "bitflags",
640
+ "cfg-if",
641
+ "cfg_aliases",
642
+ "libc",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "num-traits"
647
+ version = "0.2.19"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
650
+ dependencies = [
651
+ "autocfg",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "once_cell"
656
+ version = "1.21.3"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
659
+
660
+ [[package]]
661
+ name = "once_cell_polyfill"
662
+ version = "1.70.1"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
665
+
666
+ [[package]]
667
+ name = "oorandom"
668
+ version = "11.1.5"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
671
+
672
+ [[package]]
673
+ name = "page_size"
674
+ version = "0.6.0"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
677
+ dependencies = [
678
+ "libc",
679
+ "winapi",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "pin-project-lite"
684
+ version = "0.2.16"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
687
+
688
+ [[package]]
689
+ name = "pin-utils"
690
+ version = "0.1.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
693
+
694
+ [[package]]
695
+ name = "plotters"
696
+ version = "0.3.7"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
699
+ dependencies = [
700
+ "num-traits",
701
+ "plotters-backend",
702
+ "plotters-svg",
703
+ "wasm-bindgen",
704
+ "web-sys",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "plotters-backend"
709
+ version = "0.3.7"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
712
+
713
+ [[package]]
714
+ name = "plotters-svg"
715
+ version = "0.3.7"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
718
+ dependencies = [
719
+ "plotters-backend",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "portable-atomic"
724
+ version = "1.11.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
727
+
728
+ [[package]]
729
+ name = "portable-atomic-util"
730
+ version = "0.2.4"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
733
+ dependencies = [
734
+ "portable-atomic",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "proc-macro-crate"
739
+ version = "3.4.0"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
742
+ dependencies = [
743
+ "toml_edit",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "proc-macro2"
748
+ version = "1.0.105"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
751
+ dependencies = [
752
+ "unicode-ident",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "pyo3"
757
+ version = "0.27.2"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
760
+ dependencies = [
761
+ "indoc",
762
+ "libc",
763
+ "memoffset",
764
+ "once_cell",
765
+ "portable-atomic",
766
+ "pyo3-build-config",
767
+ "pyo3-ffi",
768
+ "pyo3-macros",
769
+ "unindent",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "pyo3-build-config"
774
+ version = "0.27.2"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
777
+ dependencies = [
778
+ "target-lexicon",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "pyo3-ffi"
783
+ version = "0.27.2"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
786
+ dependencies = [
787
+ "libc",
788
+ "pyo3-build-config",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "pyo3-macros"
793
+ version = "0.27.2"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
796
+ dependencies = [
797
+ "proc-macro2",
798
+ "pyo3-macros-backend",
799
+ "quote",
800
+ "syn",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "pyo3-macros-backend"
805
+ version = "0.27.2"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
808
+ dependencies = [
809
+ "heck",
810
+ "proc-macro2",
811
+ "pyo3-build-config",
812
+ "quote",
813
+ "syn",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "quote"
818
+ version = "1.0.43"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
821
+ dependencies = [
822
+ "proc-macro2",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "r-efi"
827
+ version = "5.3.0"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
830
+
831
+ [[package]]
832
+ name = "rayon"
833
+ version = "1.11.0"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
836
+ dependencies = [
837
+ "either",
838
+ "rayon-core",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "rayon-core"
843
+ version = "1.13.0"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
846
+ dependencies = [
847
+ "crossbeam-deque",
848
+ "crossbeam-utils",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "regex"
853
+ version = "1.12.2"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
856
+ dependencies = [
857
+ "aho-corasick",
858
+ "memchr",
859
+ "regex-automata",
860
+ "regex-syntax",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "regex-automata"
865
+ version = "0.4.13"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
868
+ dependencies = [
869
+ "aho-corasick",
870
+ "memchr",
871
+ "regex-syntax",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "regex-syntax"
876
+ version = "0.8.8"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
879
+
880
+ [[package]]
881
+ name = "relative-path"
882
+ version = "1.9.3"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
885
+
886
+ [[package]]
887
+ name = "rstest"
888
+ version = "0.26.1"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
891
+ dependencies = [
892
+ "futures-timer",
893
+ "futures-util",
894
+ "rstest_macros",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "rstest_macros"
899
+ version = "0.26.1"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
902
+ dependencies = [
903
+ "cfg-if",
904
+ "glob",
905
+ "proc-macro-crate",
906
+ "proc-macro2",
907
+ "quote",
908
+ "regex",
909
+ "relative-path",
910
+ "rustc_version",
911
+ "syn",
912
+ "unicode-ident",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "rustc-hash"
917
+ version = "2.1.1"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
920
+
921
+ [[package]]
922
+ name = "rustc_version"
923
+ version = "0.4.1"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
926
+ dependencies = [
927
+ "semver",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "rustix"
932
+ version = "1.1.3"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
935
+ dependencies = [
936
+ "bitflags",
937
+ "errno",
938
+ "libc",
939
+ "linux-raw-sys",
940
+ "windows-sys 0.61.2",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "rustversion"
945
+ version = "1.0.22"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
948
+
949
+ [[package]]
950
+ name = "ryu"
951
+ version = "1.0.20"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
954
+
955
+ [[package]]
956
+ name = "same-file"
957
+ version = "1.0.6"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
960
+ dependencies = [
961
+ "winapi-util",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "scnr2"
966
+ version = "0.4.0"
967
+ dependencies = [
968
+ "log",
969
+ "scnr2_macro",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "scnr2-python"
974
+ version = "0.4.0"
975
+ dependencies = [
976
+ "proc-macro2",
977
+ "pyo3",
978
+ "quote",
979
+ "scnr2",
980
+ "scnr2_generate",
981
+ "syn",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "scnr2_generate"
986
+ version = "0.4.0"
987
+ dependencies = [
988
+ "log",
989
+ "proc-macro2",
990
+ "quote",
991
+ "regex-syntax",
992
+ "rstest",
993
+ "rustc-hash",
994
+ "syn",
995
+ "tempfile",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "scnr2_macro"
1000
+ version = "0.4.0"
1001
+ dependencies = [
1002
+ "scnr2_generate",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "semver"
1007
+ version = "1.0.27"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1010
+
1011
+ [[package]]
1012
+ name = "serde"
1013
+ version = "1.0.228"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1016
+ dependencies = [
1017
+ "serde_core",
1018
+ "serde_derive",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "serde_core"
1023
+ version = "1.0.228"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1026
+ dependencies = [
1027
+ "serde_derive",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "serde_derive"
1032
+ version = "1.0.228"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1035
+ dependencies = [
1036
+ "proc-macro2",
1037
+ "quote",
1038
+ "syn",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "serde_json"
1043
+ version = "1.0.145"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1046
+ dependencies = [
1047
+ "itoa",
1048
+ "memchr",
1049
+ "ryu",
1050
+ "serde",
1051
+ "serde_core",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "shlex"
1056
+ version = "1.3.0"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1059
+
1060
+ [[package]]
1061
+ name = "slab"
1062
+ version = "0.4.11"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1065
+
1066
+ [[package]]
1067
+ name = "statrs"
1068
+ version = "0.18.0"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
1071
+ dependencies = [
1072
+ "approx",
1073
+ "num-traits",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "syn"
1078
+ version = "2.0.114"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1081
+ dependencies = [
1082
+ "proc-macro2",
1083
+ "quote",
1084
+ "unicode-ident",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "target-lexicon"
1089
+ version = "0.13.4"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
1092
+
1093
+ [[package]]
1094
+ name = "tempfile"
1095
+ version = "3.24.0"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1098
+ dependencies = [
1099
+ "fastrand",
1100
+ "getrandom 0.3.4",
1101
+ "once_cell",
1102
+ "rustix",
1103
+ "windows-sys 0.61.2",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "tests"
1108
+ version = "0.1.0"
1109
+ dependencies = [
1110
+ "codspeed-criterion-compat",
1111
+ "criterion",
1112
+ "env_logger",
1113
+ "scnr2",
1114
+ "scnr2_generate",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "tinytemplate"
1119
+ version = "1.2.1"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1122
+ dependencies = [
1123
+ "serde",
1124
+ "serde_json",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "toml_datetime"
1129
+ version = "0.7.3"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
1132
+ dependencies = [
1133
+ "serde_core",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "toml_edit"
1138
+ version = "0.23.7"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
1141
+ dependencies = [
1142
+ "indexmap",
1143
+ "toml_datetime",
1144
+ "toml_parser",
1145
+ "winnow",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "toml_parser"
1150
+ version = "1.0.4"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
1153
+ dependencies = [
1154
+ "winnow",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "unicode-ident"
1159
+ version = "1.0.19"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
1162
+
1163
+ [[package]]
1164
+ name = "unindent"
1165
+ version = "0.2.4"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1168
+
1169
+ [[package]]
1170
+ name = "utf8parse"
1171
+ version = "0.2.2"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1174
+
1175
+ [[package]]
1176
+ name = "walkdir"
1177
+ version = "2.5.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1180
+ dependencies = [
1181
+ "same-file",
1182
+ "winapi-util",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "wasi"
1187
+ version = "0.11.1+wasi-snapshot-preview1"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1190
+
1191
+ [[package]]
1192
+ name = "wasip2"
1193
+ version = "1.0.1+wasi-0.2.4"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1196
+ dependencies = [
1197
+ "wit-bindgen",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "wasm-bindgen"
1202
+ version = "0.2.104"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
1205
+ dependencies = [
1206
+ "cfg-if",
1207
+ "once_cell",
1208
+ "rustversion",
1209
+ "wasm-bindgen-macro",
1210
+ "wasm-bindgen-shared",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "wasm-bindgen-backend"
1215
+ version = "0.2.104"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
1218
+ dependencies = [
1219
+ "bumpalo",
1220
+ "log",
1221
+ "proc-macro2",
1222
+ "quote",
1223
+ "syn",
1224
+ "wasm-bindgen-shared",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "wasm-bindgen-macro"
1229
+ version = "0.2.104"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
1232
+ dependencies = [
1233
+ "quote",
1234
+ "wasm-bindgen-macro-support",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "wasm-bindgen-macro-support"
1239
+ version = "0.2.104"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
1242
+ dependencies = [
1243
+ "proc-macro2",
1244
+ "quote",
1245
+ "syn",
1246
+ "wasm-bindgen-backend",
1247
+ "wasm-bindgen-shared",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "wasm-bindgen-shared"
1252
+ version = "0.2.104"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
1255
+ dependencies = [
1256
+ "unicode-ident",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "web-sys"
1261
+ version = "0.3.81"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
1264
+ dependencies = [
1265
+ "js-sys",
1266
+ "wasm-bindgen",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "winapi"
1271
+ version = "0.3.9"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1274
+ dependencies = [
1275
+ "winapi-i686-pc-windows-gnu",
1276
+ "winapi-x86_64-pc-windows-gnu",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "winapi-i686-pc-windows-gnu"
1281
+ version = "0.4.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1284
+
1285
+ [[package]]
1286
+ name = "winapi-util"
1287
+ version = "0.1.11"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1290
+ dependencies = [
1291
+ "windows-sys 0.61.2",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "winapi-x86_64-pc-windows-gnu"
1296
+ version = "0.4.0"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1299
+
1300
+ [[package]]
1301
+ name = "windows-link"
1302
+ version = "0.2.1"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1305
+
1306
+ [[package]]
1307
+ name = "windows-sys"
1308
+ version = "0.59.0"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1311
+ dependencies = [
1312
+ "windows-targets 0.52.6",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "windows-sys"
1317
+ version = "0.60.2"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1320
+ dependencies = [
1321
+ "windows-targets 0.53.5",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "windows-sys"
1326
+ version = "0.61.2"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1329
+ dependencies = [
1330
+ "windows-link",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "windows-targets"
1335
+ version = "0.52.6"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1338
+ dependencies = [
1339
+ "windows_aarch64_gnullvm 0.52.6",
1340
+ "windows_aarch64_msvc 0.52.6",
1341
+ "windows_i686_gnu 0.52.6",
1342
+ "windows_i686_gnullvm 0.52.6",
1343
+ "windows_i686_msvc 0.52.6",
1344
+ "windows_x86_64_gnu 0.52.6",
1345
+ "windows_x86_64_gnullvm 0.52.6",
1346
+ "windows_x86_64_msvc 0.52.6",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "windows-targets"
1351
+ version = "0.53.5"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1354
+ dependencies = [
1355
+ "windows-link",
1356
+ "windows_aarch64_gnullvm 0.53.1",
1357
+ "windows_aarch64_msvc 0.53.1",
1358
+ "windows_i686_gnu 0.53.1",
1359
+ "windows_i686_gnullvm 0.53.1",
1360
+ "windows_i686_msvc 0.53.1",
1361
+ "windows_x86_64_gnu 0.53.1",
1362
+ "windows_x86_64_gnullvm 0.53.1",
1363
+ "windows_x86_64_msvc 0.53.1",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "windows_aarch64_gnullvm"
1368
+ version = "0.52.6"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1371
+
1372
+ [[package]]
1373
+ name = "windows_aarch64_gnullvm"
1374
+ version = "0.53.1"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1377
+
1378
+ [[package]]
1379
+ name = "windows_aarch64_msvc"
1380
+ version = "0.52.6"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1383
+
1384
+ [[package]]
1385
+ name = "windows_aarch64_msvc"
1386
+ version = "0.53.1"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1389
+
1390
+ [[package]]
1391
+ name = "windows_i686_gnu"
1392
+ version = "0.52.6"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1395
+
1396
+ [[package]]
1397
+ name = "windows_i686_gnu"
1398
+ version = "0.53.1"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1401
+
1402
+ [[package]]
1403
+ name = "windows_i686_gnullvm"
1404
+ version = "0.52.6"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1407
+
1408
+ [[package]]
1409
+ name = "windows_i686_gnullvm"
1410
+ version = "0.53.1"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1413
+
1414
+ [[package]]
1415
+ name = "windows_i686_msvc"
1416
+ version = "0.52.6"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1419
+
1420
+ [[package]]
1421
+ name = "windows_i686_msvc"
1422
+ version = "0.53.1"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1425
+
1426
+ [[package]]
1427
+ name = "windows_x86_64_gnu"
1428
+ version = "0.52.6"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1431
+
1432
+ [[package]]
1433
+ name = "windows_x86_64_gnu"
1434
+ version = "0.53.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1437
+
1438
+ [[package]]
1439
+ name = "windows_x86_64_gnullvm"
1440
+ version = "0.52.6"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1443
+
1444
+ [[package]]
1445
+ name = "windows_x86_64_gnullvm"
1446
+ version = "0.53.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1449
+
1450
+ [[package]]
1451
+ name = "windows_x86_64_msvc"
1452
+ version = "0.52.6"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1455
+
1456
+ [[package]]
1457
+ name = "windows_x86_64_msvc"
1458
+ version = "0.53.1"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1461
+
1462
+ [[package]]
1463
+ name = "winnow"
1464
+ version = "0.7.13"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
1467
+ dependencies = [
1468
+ "memchr",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "wit-bindgen"
1473
+ version = "0.46.0"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1476
+
1477
+ [[package]]
1478
+ name = "zerocopy"
1479
+ version = "0.8.27"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
1482
+ dependencies = [
1483
+ "zerocopy-derive",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "zerocopy-derive"
1488
+ version = "0.8.27"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
1491
+ dependencies = [
1492
+ "proc-macro2",
1493
+ "quote",
1494
+ "syn",
1495
+ ]