culler 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.
Files changed (71) hide show
  1. culler-0.1.0/Cargo.lock +1106 -0
  2. culler-0.1.0/Cargo.toml +29 -0
  3. culler-0.1.0/LICENSE +21 -0
  4. culler-0.1.0/PKG-INFO +356 -0
  5. culler-0.1.0/README.md +325 -0
  6. culler-0.1.0/crates/culler-cli/Cargo.toml +21 -0
  7. culler-0.1.0/crates/culler-cli/src/main.rs +674 -0
  8. culler-0.1.0/crates/culler-cli/tests/check.rs +529 -0
  9. culler-0.1.0/crates/culler-core/Cargo.toml +12 -0
  10. culler-0.1.0/crates/culler-core/src/diagnostic.rs +53 -0
  11. culler-0.1.0/crates/culler-core/src/ids.rs +36 -0
  12. culler-0.1.0/crates/culler-core/src/ir.rs +43 -0
  13. culler-0.1.0/crates/culler-core/src/lib.rs +40 -0
  14. culler-0.1.0/crates/culler-core/src/output.rs +818 -0
  15. culler-0.1.0/crates/culler-core/src/semantic.rs +839 -0
  16. culler-0.1.0/crates/culler-core/src/source.rs +143 -0
  17. culler-0.1.0/crates/culler-python/Cargo.toml +25 -0
  18. culler-0.1.0/crates/culler-python/src/analysis.rs +399 -0
  19. culler-0.1.0/crates/culler-python/src/check.rs +7294 -0
  20. culler-0.1.0/crates/culler-python/src/config.rs +359 -0
  21. culler-0.1.0/crates/culler-python/src/decode.rs +236 -0
  22. culler-0.1.0/crates/culler-python/src/definition_effects.rs +565 -0
  23. culler-0.1.0/crates/culler-python/src/discovery.rs +441 -0
  24. culler-0.1.0/crates/culler-python/src/flow_analysis.rs +2247 -0
  25. culler-0.1.0/crates/culler-python/src/frontend.rs +23 -0
  26. culler-0.1.0/crates/culler-python/src/lib.rs +31 -0
  27. culler-0.1.0/crates/culler-python/src/module_namespace.rs +328 -0
  28. culler-0.1.0/crates/culler-python/src/paths.rs +17 -0
  29. culler-0.1.0/crates/culler-python/src/ruff_frontend.rs +307 -0
  30. culler-0.1.0/crates/culler-python/src/semantic_inventory.rs +2751 -0
  31. culler-0.1.0/crates/culler-python/tests/annotation_evidence.rs +698 -0
  32. culler-0.1.0/crates/culler-python/tests/bindings.rs +145 -0
  33. culler-0.1.0/crates/culler-python/tests/fixtures/annotation_evidence/final/pyproject.toml +4 -0
  34. culler-0.1.0/crates/culler-python/tests/fixtures/annotation_evidence/final/src/pkg/__init__.py +1 -0
  35. culler-0.1.0/crates/culler-python/tests/fixtures/annotation_evidence/final/src/pkg/annotations.py +71 -0
  36. culler-0.1.0/crates/culler-python/tests/fixtures/annotation_evidence/final/tests/test_annotations.py +5 -0
  37. culler-0.1.0/crates/culler-python/tests/fixtures/bindings/bindings/pyproject.toml +3 -0
  38. culler-0.1.0/crates/culler-python/tests/fixtures/bindings/bindings/src/pkg/__init__.py +1 -0
  39. culler-0.1.0/crates/culler-python/tests/fixtures/bindings/bindings/src/pkg/sample.py +25 -0
  40. culler-0.1.0/crates/culler-python/tests/fixtures/flow/flow/pyproject.toml +3 -0
  41. culler-0.1.0/crates/culler-python/tests/fixtures/flow/flow/src/pkg/__init__.py +1 -0
  42. culler-0.1.0/crates/culler-python/tests/fixtures/flow/flow/src/pkg/flow.py +93 -0
  43. culler-0.1.0/crates/culler-python/tests/fixtures/frontend/basic/pyproject.toml +3 -0
  44. culler-0.1.0/crates/culler-python/tests/fixtures/frontend/basic/src/acme/__init__.py +1 -0
  45. culler-0.1.0/crates/culler-python/tests/fixtures/frontend/basic/src/acme/cache.py +17 -0
  46. culler-0.1.0/crates/culler-python/tests/fixtures/frontend/flatpkg/pkg/__init__.py +1 -0
  47. culler-0.1.0/crates/culler-python/tests/fixtures/frontend/flatpkg/pkg/mod.py +2 -0
  48. culler-0.1.0/crates/culler-python/tests/fixtures/references/declarations/pyproject.toml +3 -0
  49. culler-0.1.0/crates/culler-python/tests/fixtures/references/declarations/src/pkg/__init__.py +1 -0
  50. culler-0.1.0/crates/culler-python/tests/fixtures/references/declarations/src/pkg/scopes.py +24 -0
  51. culler-0.1.0/crates/culler-python/tests/fixtures/references/invalid_declarations/pyproject.toml +3 -0
  52. culler-0.1.0/crates/culler-python/tests/fixtures/references/invalid_declarations/src/pkg/__init__.py +1 -0
  53. culler-0.1.0/crates/culler-python/tests/fixtures/references/invalid_declarations/src/pkg/bad.py +26 -0
  54. culler-0.1.0/crates/culler-python/tests/fixtures/references/references/pyproject.toml +3 -0
  55. culler-0.1.0/crates/culler-python/tests/fixtures/references/references/src/pkg/__init__.py +1 -0
  56. culler-0.1.0/crates/culler-python/tests/fixtures/references/references/src/pkg/refs.py +28 -0
  57. culler-0.1.0/crates/culler-python/tests/flow.rs +280 -0
  58. culler-0.1.0/crates/culler-python/tests/frontend.rs +161 -0
  59. culler-0.1.0/crates/culler-python/tests/project_graph.rs +415 -0
  60. culler-0.1.0/crates/culler-python/tests/reachability.rs +694 -0
  61. culler-0.1.0/crates/culler-python/tests/references.rs +302 -0
  62. culler-0.1.0/crates/culler-python/tests/snapshots/annotation_evidence_debug_references.json +3446 -0
  63. culler-0.1.0/crates/culler-python/tests/snapshots/bindings_debug_bindings.json +710 -0
  64. culler-0.1.0/crates/culler-python/tests/snapshots/flow_debug_references.json +3776 -0
  65. culler-0.1.0/crates/culler-python/tests/snapshots/frontend_basic_debug_definitions.json +75 -0
  66. culler-0.1.0/crates/culler-python/tests/snapshots/frontend_flatpkg_debug_definitions.json +45 -0
  67. culler-0.1.0/crates/culler-python/tests/snapshots/references_debug_references.json +1892 -0
  68. culler-0.1.0/crates/culler-python/tests/support/cpython_definition_oracle.py +136 -0
  69. culler-0.1.0/crates/culler-python/tests/target_rules.rs +479 -0
  70. culler-0.1.0/crates/culler-python/tests/uncertainty.rs +459 -0
  71. culler-0.1.0/pyproject.toml +51 -0
@@ -0,0 +1,1106 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "arrayref"
66
+ version = "0.3.9"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
69
+
70
+ [[package]]
71
+ name = "arrayvec"
72
+ version = "0.7.7"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "f02882884d3e1bc524fb12c79f107f6ad0e1cfd498c536ffb494301740995dfe"
75
+
76
+ [[package]]
77
+ name = "attribute-derive"
78
+ version = "0.10.5"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
81
+ dependencies = [
82
+ "attribute-derive-macro",
83
+ "derive-where",
84
+ "manyhow",
85
+ "proc-macro2",
86
+ "quote",
87
+ "syn",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "attribute-derive-macro"
92
+ version = "0.10.5"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
95
+ dependencies = [
96
+ "collection_literals",
97
+ "interpolator",
98
+ "manyhow",
99
+ "proc-macro-utils",
100
+ "proc-macro2",
101
+ "quote",
102
+ "quote-use",
103
+ "syn",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "bitflags"
108
+ version = "2.13.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
111
+
112
+ [[package]]
113
+ name = "blake3"
114
+ version = "1.8.5"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
117
+ dependencies = [
118
+ "arrayref",
119
+ "arrayvec",
120
+ "cc",
121
+ "cfg-if",
122
+ "constant_time_eq",
123
+ "cpufeatures",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "bstr"
128
+ version = "1.12.3"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
131
+ dependencies = [
132
+ "memchr",
133
+ "regex-automata",
134
+ "serde_core",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "castaway"
139
+ version = "0.2.4"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
142
+ dependencies = [
143
+ "rustversion",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "cc"
148
+ version = "1.2.65"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
151
+ dependencies = [
152
+ "find-msvc-tools",
153
+ "shlex",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "cfg-if"
158
+ version = "1.0.4"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
161
+
162
+ [[package]]
163
+ name = "clap"
164
+ version = "4.6.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
167
+ dependencies = [
168
+ "clap_builder",
169
+ "clap_derive",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "clap_builder"
174
+ version = "4.6.0"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
177
+ dependencies = [
178
+ "anstream",
179
+ "anstyle",
180
+ "clap_lex",
181
+ "strsim",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "clap_derive"
186
+ version = "4.6.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
189
+ dependencies = [
190
+ "heck",
191
+ "proc-macro2",
192
+ "quote",
193
+ "syn",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "clap_lex"
198
+ version = "1.1.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
201
+
202
+ [[package]]
203
+ name = "collection_literals"
204
+ version = "1.0.3"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
207
+
208
+ [[package]]
209
+ name = "colorchoice"
210
+ version = "1.0.5"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
213
+
214
+ [[package]]
215
+ name = "compact_str"
216
+ version = "0.9.1"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
219
+ dependencies = [
220
+ "castaway",
221
+ "cfg-if",
222
+ "itoa",
223
+ "rustversion",
224
+ "ryu",
225
+ "static_assertions",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "constant_time_eq"
230
+ version = "0.4.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
233
+
234
+ [[package]]
235
+ name = "cpufeatures"
236
+ version = "0.3.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
239
+ dependencies = [
240
+ "libc",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "culler-cli"
245
+ version = "0.1.0"
246
+ dependencies = [
247
+ "clap",
248
+ "culler-core",
249
+ "culler-python",
250
+ "serde_json",
251
+ "tempfile",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "culler-core"
256
+ version = "0.1.0"
257
+ dependencies = [
258
+ "serde",
259
+ "thiserror",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "culler-python"
264
+ version = "0.1.0"
265
+ dependencies = [
266
+ "blake3",
267
+ "culler-core",
268
+ "data-encoding",
269
+ "globset",
270
+ "ruff_python_ast",
271
+ "ruff_python_parser",
272
+ "ruff_text_size",
273
+ "serde",
274
+ "serde_json",
275
+ "tempfile",
276
+ "thiserror",
277
+ "toml",
278
+ "walkdir",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "data-encoding"
283
+ version = "2.11.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
286
+
287
+ [[package]]
288
+ name = "derive-where"
289
+ version = "1.6.1"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
292
+ dependencies = [
293
+ "proc-macro2",
294
+ "quote",
295
+ "syn",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "either"
300
+ version = "1.16.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
303
+
304
+ [[package]]
305
+ name = "equivalent"
306
+ version = "1.0.2"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
309
+
310
+ [[package]]
311
+ name = "errno"
312
+ version = "0.3.14"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
315
+ dependencies = [
316
+ "libc",
317
+ "windows-sys",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "fastrand"
322
+ version = "2.4.1"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
325
+
326
+ [[package]]
327
+ name = "find-msvc-tools"
328
+ version = "0.1.9"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
331
+
332
+ [[package]]
333
+ name = "get-size-derive2"
334
+ version = "0.10.1"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "1da24fbda09ec01bca7cfa1797c0e520e75123bccb01dcdf9041f8aa65183bc2"
337
+ dependencies = [
338
+ "attribute-derive",
339
+ "quote",
340
+ "syn",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "get-size2"
345
+ version = "0.10.1"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "823645bc6404ae2915707777061a47d3a031a9ee0bff51b34ec973df3d8d2990"
348
+ dependencies = [
349
+ "compact_str",
350
+ "get-size-derive2",
351
+ "hashbrown",
352
+ "ordermap",
353
+ "smallvec",
354
+ "thin-vec",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "getopts"
359
+ version = "0.2.24"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
362
+ dependencies = [
363
+ "unicode-width",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "getrandom"
368
+ version = "0.2.17"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
371
+ dependencies = [
372
+ "cfg-if",
373
+ "libc",
374
+ "wasi",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "getrandom"
379
+ version = "0.4.3"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
382
+ dependencies = [
383
+ "cfg-if",
384
+ "libc",
385
+ "r-efi",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "globset"
390
+ version = "0.4.18"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
393
+ dependencies = [
394
+ "aho-corasick",
395
+ "bstr",
396
+ "log",
397
+ "regex-automata",
398
+ "regex-syntax",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "hashbrown"
403
+ version = "0.17.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
406
+
407
+ [[package]]
408
+ name = "heck"
409
+ version = "0.5.0"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
412
+
413
+ [[package]]
414
+ name = "indexmap"
415
+ version = "2.14.0"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
418
+ dependencies = [
419
+ "equivalent",
420
+ "hashbrown",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "interpolator"
425
+ version = "0.5.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
428
+
429
+ [[package]]
430
+ name = "is-macro"
431
+ version = "0.3.7"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
434
+ dependencies = [
435
+ "heck",
436
+ "proc-macro2",
437
+ "quote",
438
+ "syn",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "is_terminal_polyfill"
443
+ version = "1.70.2"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
446
+
447
+ [[package]]
448
+ name = "itertools"
449
+ version = "0.15.0"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
452
+ dependencies = [
453
+ "either",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "itoa"
458
+ version = "1.0.18"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
461
+
462
+ [[package]]
463
+ name = "libc"
464
+ version = "0.2.186"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
467
+
468
+ [[package]]
469
+ name = "linux-raw-sys"
470
+ version = "0.12.1"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
473
+
474
+ [[package]]
475
+ name = "log"
476
+ version = "0.4.33"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
479
+
480
+ [[package]]
481
+ name = "manyhow"
482
+ version = "0.11.4"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
485
+ dependencies = [
486
+ "manyhow-macros",
487
+ "proc-macro2",
488
+ "quote",
489
+ "syn",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "manyhow-macros"
494
+ version = "0.11.4"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
497
+ dependencies = [
498
+ "proc-macro-utils",
499
+ "proc-macro2",
500
+ "quote",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "memchr"
505
+ version = "2.8.2"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
508
+
509
+ [[package]]
510
+ name = "once_cell"
511
+ version = "1.21.4"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
514
+
515
+ [[package]]
516
+ name = "once_cell_polyfill"
517
+ version = "1.70.2"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
520
+
521
+ [[package]]
522
+ name = "ordermap"
523
+ version = "1.2.0"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "7f7476a5b122ff1fce7208e7ee9dccd0a516e835f5b8b19b8f3c98a34cf757c1"
526
+ dependencies = [
527
+ "indexmap",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "phf"
532
+ version = "0.11.3"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
535
+ dependencies = [
536
+ "phf_shared",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "phf_codegen"
541
+ version = "0.11.3"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
544
+ dependencies = [
545
+ "phf_generator",
546
+ "phf_shared",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "phf_generator"
551
+ version = "0.11.3"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
554
+ dependencies = [
555
+ "phf_shared",
556
+ "rand",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "phf_shared"
561
+ version = "0.11.3"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
564
+ dependencies = [
565
+ "siphasher",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "ppv-lite86"
570
+ version = "0.2.21"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
573
+ dependencies = [
574
+ "zerocopy",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "proc-macro-utils"
579
+ version = "0.10.0"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
582
+ dependencies = [
583
+ "proc-macro2",
584
+ "quote",
585
+ "smallvec",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "proc-macro2"
590
+ version = "1.0.106"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
593
+ dependencies = [
594
+ "unicode-ident",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "quote"
599
+ version = "1.0.46"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
602
+ dependencies = [
603
+ "proc-macro2",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "quote-use"
608
+ version = "0.8.4"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
611
+ dependencies = [
612
+ "quote",
613
+ "quote-use-macros",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "quote-use-macros"
618
+ version = "0.8.4"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
621
+ dependencies = [
622
+ "proc-macro-utils",
623
+ "proc-macro2",
624
+ "quote",
625
+ "syn",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "r-efi"
630
+ version = "6.0.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
633
+
634
+ [[package]]
635
+ name = "rand"
636
+ version = "0.8.6"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
639
+ dependencies = [
640
+ "libc",
641
+ "rand_chacha",
642
+ "rand_core",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "rand_chacha"
647
+ version = "0.3.1"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
650
+ dependencies = [
651
+ "ppv-lite86",
652
+ "rand_core",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "rand_core"
657
+ version = "0.6.4"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
660
+ dependencies = [
661
+ "getrandom 0.2.17",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "regex-automata"
666
+ version = "0.4.14"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
669
+ dependencies = [
670
+ "aho-corasick",
671
+ "memchr",
672
+ "regex-syntax",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "regex-syntax"
677
+ version = "0.8.11"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
680
+
681
+ [[package]]
682
+ name = "ruff_python_ast"
683
+ version = "0.0.3"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "a10ab966362319801f5e85ce5c6aeac69f0cf50936a31e888f5d004e9279f337"
686
+ dependencies = [
687
+ "aho-corasick",
688
+ "arrayvec",
689
+ "bitflags",
690
+ "compact_str",
691
+ "get-size2",
692
+ "is-macro",
693
+ "memchr",
694
+ "ruff_python_trivia",
695
+ "ruff_source_file",
696
+ "ruff_text_size",
697
+ "rustc-hash",
698
+ "thin-vec",
699
+ "thiserror",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "ruff_python_parser"
704
+ version = "0.0.3"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "4e3b8436fb010636ea79ce545acc3e391296ef4e804f7cef336dd5f9c8a4aa3a"
707
+ dependencies = [
708
+ "bitflags",
709
+ "bstr",
710
+ "compact_str",
711
+ "get-size2",
712
+ "memchr",
713
+ "ruff_python_ast",
714
+ "ruff_python_trivia",
715
+ "ruff_text_size",
716
+ "rustc-hash",
717
+ "static_assertions",
718
+ "thin-vec",
719
+ "unicode-ident",
720
+ "unicode-normalization",
721
+ "unicode_names2",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "ruff_python_trivia"
726
+ version = "0.0.3"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "969e4a14b2550818efea99b9e2361c714c72e4f1fb94799251d55aed20345189"
729
+ dependencies = [
730
+ "itertools",
731
+ "ruff_source_file",
732
+ "ruff_text_size",
733
+ "unicode-ident",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "ruff_source_file"
738
+ version = "0.0.3"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "c194e02d121e4a1744464ce3a982c4c196eb039bbf67532d18c8ce09f8da6381"
741
+ dependencies = [
742
+ "memchr",
743
+ "ruff_text_size",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "ruff_text_size"
748
+ version = "0.0.3"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "c91652ad39be604bc4d5299a5d19feccdd89e255609d89a031e7bb8e0d0aef9f"
751
+ dependencies = [
752
+ "get-size2",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "rustc-hash"
757
+ version = "2.1.2"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
760
+
761
+ [[package]]
762
+ name = "rustix"
763
+ version = "1.1.4"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
766
+ dependencies = [
767
+ "bitflags",
768
+ "errno",
769
+ "libc",
770
+ "linux-raw-sys",
771
+ "windows-sys",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "rustversion"
776
+ version = "1.0.22"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
779
+
780
+ [[package]]
781
+ name = "ryu"
782
+ version = "1.0.23"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
785
+
786
+ [[package]]
787
+ name = "same-file"
788
+ version = "1.0.6"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
791
+ dependencies = [
792
+ "winapi-util",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "serde"
797
+ version = "1.0.228"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
800
+ dependencies = [
801
+ "serde_core",
802
+ "serde_derive",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "serde_core"
807
+ version = "1.0.228"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
810
+ dependencies = [
811
+ "serde_derive",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "serde_derive"
816
+ version = "1.0.228"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
819
+ dependencies = [
820
+ "proc-macro2",
821
+ "quote",
822
+ "syn",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "serde_json"
827
+ version = "1.0.150"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
830
+ dependencies = [
831
+ "itoa",
832
+ "memchr",
833
+ "serde",
834
+ "serde_core",
835
+ "zmij",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "serde_spanned"
840
+ version = "1.1.1"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
843
+ dependencies = [
844
+ "serde_core",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "shlex"
849
+ version = "2.0.1"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
852
+
853
+ [[package]]
854
+ name = "siphasher"
855
+ version = "1.0.3"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
858
+
859
+ [[package]]
860
+ name = "smallvec"
861
+ version = "1.15.2"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
864
+
865
+ [[package]]
866
+ name = "static_assertions"
867
+ version = "1.1.0"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
870
+
871
+ [[package]]
872
+ name = "strsim"
873
+ version = "0.11.1"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
876
+
877
+ [[package]]
878
+ name = "syn"
879
+ version = "2.0.118"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
882
+ dependencies = [
883
+ "proc-macro2",
884
+ "quote",
885
+ "unicode-ident",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "tempfile"
890
+ version = "3.27.0"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
893
+ dependencies = [
894
+ "fastrand",
895
+ "getrandom 0.4.3",
896
+ "once_cell",
897
+ "rustix",
898
+ "windows-sys",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "thin-vec"
903
+ version = "0.2.18"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
906
+
907
+ [[package]]
908
+ name = "thiserror"
909
+ version = "2.0.18"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
912
+ dependencies = [
913
+ "thiserror-impl",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "thiserror-impl"
918
+ version = "2.0.18"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
921
+ dependencies = [
922
+ "proc-macro2",
923
+ "quote",
924
+ "syn",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "tinyvec"
929
+ version = "1.11.0"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
932
+ dependencies = [
933
+ "tinyvec_macros",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "tinyvec_macros"
938
+ version = "0.1.1"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
941
+
942
+ [[package]]
943
+ name = "toml"
944
+ version = "0.9.12+spec-1.1.0"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
947
+ dependencies = [
948
+ "indexmap",
949
+ "serde_core",
950
+ "serde_spanned",
951
+ "toml_datetime",
952
+ "toml_parser",
953
+ "toml_writer",
954
+ "winnow 0.7.15",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "toml_datetime"
959
+ version = "0.7.5+spec-1.1.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
962
+ dependencies = [
963
+ "serde_core",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "toml_parser"
968
+ version = "1.1.2+spec-1.1.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
971
+ dependencies = [
972
+ "winnow 1.0.3",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "toml_writer"
977
+ version = "1.1.1+spec-1.1.0"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
980
+
981
+ [[package]]
982
+ name = "unicode-ident"
983
+ version = "1.0.24"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
986
+
987
+ [[package]]
988
+ name = "unicode-normalization"
989
+ version = "0.1.25"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
992
+ dependencies = [
993
+ "tinyvec",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "unicode-width"
998
+ version = "0.2.2"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1001
+
1002
+ [[package]]
1003
+ name = "unicode_names2"
1004
+ version = "1.3.0"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
1007
+ dependencies = [
1008
+ "phf",
1009
+ "unicode_names2_generator",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "unicode_names2_generator"
1014
+ version = "1.3.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
1017
+ dependencies = [
1018
+ "getopts",
1019
+ "log",
1020
+ "phf_codegen",
1021
+ "rand",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "utf8parse"
1026
+ version = "0.2.2"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1029
+
1030
+ [[package]]
1031
+ name = "walkdir"
1032
+ version = "2.5.0"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1035
+ dependencies = [
1036
+ "same-file",
1037
+ "winapi-util",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "wasi"
1042
+ version = "0.11.1+wasi-snapshot-preview1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1045
+
1046
+ [[package]]
1047
+ name = "winapi-util"
1048
+ version = "0.1.11"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1051
+ dependencies = [
1052
+ "windows-sys",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "windows-link"
1057
+ version = "0.2.1"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1060
+
1061
+ [[package]]
1062
+ name = "windows-sys"
1063
+ version = "0.61.2"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1066
+ dependencies = [
1067
+ "windows-link",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "winnow"
1072
+ version = "0.7.15"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1075
+
1076
+ [[package]]
1077
+ name = "winnow"
1078
+ version = "1.0.3"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
1081
+
1082
+ [[package]]
1083
+ name = "zerocopy"
1084
+ version = "0.8.52"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
1087
+ dependencies = [
1088
+ "zerocopy-derive",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "zerocopy-derive"
1093
+ version = "0.8.52"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
1096
+ dependencies = [
1097
+ "proc-macro2",
1098
+ "quote",
1099
+ "syn",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "zmij"
1104
+ version = "1.0.21"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"