headson 0.7.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.

Potentially problematic release.


This version of headson might be problematic. Click here for more details.

Files changed (73) hide show
  1. headson-0.7.0/Cargo.lock +1182 -0
  2. headson-0.7.0/Cargo.toml +115 -0
  3. headson-0.7.0/PKG-INFO +276 -0
  4. headson-0.7.0/README.md +261 -0
  5. headson-0.7.0/docs/assets/algorithm.svg +81 -0
  6. headson-0.7.0/docs/assets/logo.png +0 -0
  7. headson-0.7.0/docs/assets/logo.svg +83 -0
  8. headson-0.7.0/docs/assets/tapes/demo.gif +0 -0
  9. headson-0.7.0/pyproject.toml +47 -0
  10. headson-0.7.0/python/Cargo.lock +938 -0
  11. headson-0.7.0/python/Cargo.toml +15 -0
  12. headson-0.7.0/python/README.md +57 -0
  13. headson-0.7.0/python/headson/__init__.py +11 -0
  14. headson-0.7.0/python/src/lib.rs +135 -0
  15. headson-0.7.0/src/debug.rs +416 -0
  16. headson-0.7.0/src/format.rs +68 -0
  17. headson-0.7.0/src/ingest/fileset.rs +140 -0
  18. headson-0.7.0/src/ingest/formats/json/builder.rs +275 -0
  19. headson-0.7.0/src/ingest/formats/json/mod.rs +117 -0
  20. headson-0.7.0/src/ingest/formats/json/samplers/default.rs +215 -0
  21. headson-0.7.0/src/ingest/formats/json/samplers/head.rs +80 -0
  22. headson-0.7.0/src/ingest/formats/json/samplers/mod.rs +35 -0
  23. headson-0.7.0/src/ingest/formats/json/samplers/tail.rs +110 -0
  24. headson-0.7.0/src/ingest/formats/mod.rs +9 -0
  25. headson-0.7.0/src/ingest/formats/text/mod.rs +548 -0
  26. headson-0.7.0/src/ingest/formats/yaml/mod.rs +338 -0
  27. headson-0.7.0/src/ingest/mod.rs +75 -0
  28. headson-0.7.0/src/ingest/sampling/mod.rs +142 -0
  29. headson-0.7.0/src/lib.rs +452 -0
  30. headson-0.7.0/src/main.rs +611 -0
  31. headson-0.7.0/src/order/build.rs +750 -0
  32. headson-0.7.0/src/order/mod.rs +9 -0
  33. headson-0.7.0/src/order/scoring.rs +34 -0
  34. headson-0.7.0/src/order/snapshots/headson__order__build__tests__order_empty_array_order.snap +6 -0
  35. headson-0.7.0/src/order/snapshots/headson__order__build__tests__order_single_string_array_order.snap +9 -0
  36. headson-0.7.0/src/order/types.rs +156 -0
  37. headson-0.7.0/src/serialization/color.rs +106 -0
  38. headson-0.7.0/src/serialization/fileset.rs +116 -0
  39. headson-0.7.0/src/serialization/highlight.rs +147 -0
  40. headson-0.7.0/src/serialization/mod.rs +1696 -0
  41. headson-0.7.0/src/serialization/output.rs +101 -0
  42. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__arena_render_empty.snap +5 -0
  43. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__arena_render_empty_yaml.snap +6 -0
  44. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__arena_render_single.snap +7 -0
  45. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__arena_render_single_yaml.snap +5 -0
  46. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__array_internal_gaps_yaml.snap +9 -0
  47. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_js_head.snap +9 -0
  48. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_js_tail.snap +9 -0
  49. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_pseudo_head.snap +9 -0
  50. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_pseudo_tail.snap +9 -0
  51. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_yaml_head.snap +7 -0
  52. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__array_omitted_yaml_tail.snap +7 -0
  53. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__inline_open_array_in_object_json.snap +10 -0
  54. headson-0.7.0/src/serialization/snapshots/headson__serialization__tests__inline_open_array_in_object_yaml.snap +9 -0
  55. headson-0.7.0/src/serialization/templates/code.rs +107 -0
  56. headson-0.7.0/src/serialization/templates/core.rs +130 -0
  57. headson-0.7.0/src/serialization/templates/js.rs +108 -0
  58. headson-0.7.0/src/serialization/templates/json.rs +32 -0
  59. headson-0.7.0/src/serialization/templates/mod.rs +70 -0
  60. headson-0.7.0/src/serialization/templates/pseudo.rs +90 -0
  61. headson-0.7.0/src/serialization/templates/text.rs +43 -0
  62. headson-0.7.0/src/serialization/templates/yaml.rs +269 -0
  63. headson-0.7.0/src/serialization/types.rs +64 -0
  64. headson-0.7.0/src/utils/extensions.rs +41 -0
  65. headson-0.7.0/src/utils/graph.rs +80 -0
  66. headson-0.7.0/src/utils/json.rs +11 -0
  67. headson-0.7.0/src/utils/measure.rs +50 -0
  68. headson-0.7.0/src/utils/mod.rs +7 -0
  69. headson-0.7.0/src/utils/search.rs +18 -0
  70. headson-0.7.0/src/utils/text.rs +14 -0
  71. headson-0.7.0/src/utils/tree_arena.rs +62 -0
  72. headson-0.7.0/tests/fixtures/json/JSONTestSuite/LICENSE +21 -0
  73. headson-0.7.0/tests/fixtures/json/JSONTestSuite/README.md +3 -0
@@ -0,0 +1,1182 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "allocator-api2"
13
+ version = "0.2.21"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
16
+
17
+ [[package]]
18
+ name = "anstream"
19
+ version = "0.6.21"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
22
+ dependencies = [
23
+ "anstyle",
24
+ "anstyle-parse",
25
+ "anstyle-query",
26
+ "anstyle-wincon",
27
+ "colorchoice",
28
+ "is_terminal_polyfill",
29
+ "utf8parse",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "anstyle"
34
+ version = "1.0.13"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
37
+
38
+ [[package]]
39
+ name = "anstyle-parse"
40
+ version = "0.2.7"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
43
+ dependencies = [
44
+ "utf8parse",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "anstyle-query"
49
+ version = "1.1.4"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
52
+ dependencies = [
53
+ "windows-sys 0.60.2",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-wincon"
58
+ version = "3.0.10"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
61
+ dependencies = [
62
+ "anstyle",
63
+ "once_cell_polyfill",
64
+ "windows-sys 0.60.2",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "anyhow"
69
+ version = "1.0.100"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
72
+
73
+ [[package]]
74
+ name = "arraydeque"
75
+ version = "0.5.1"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
78
+
79
+ [[package]]
80
+ name = "assert_cmd"
81
+ version = "2.1.1"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
84
+ dependencies = [
85
+ "anstyle",
86
+ "bstr",
87
+ "libc",
88
+ "predicates",
89
+ "predicates-core",
90
+ "predicates-tree",
91
+ "wait-timeout",
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 = "base64"
102
+ version = "0.22.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
105
+
106
+ [[package]]
107
+ name = "bincode"
108
+ version = "1.3.3"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
111
+ dependencies = [
112
+ "serde",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "bitflags"
117
+ version = "2.10.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
120
+
121
+ [[package]]
122
+ name = "bstr"
123
+ version = "1.12.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
126
+ dependencies = [
127
+ "memchr",
128
+ "regex-automata",
129
+ "serde",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "cc"
134
+ version = "1.2.45"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
137
+ dependencies = [
138
+ "find-msvc-tools",
139
+ "shlex",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "cfg-if"
144
+ version = "1.0.4"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
147
+
148
+ [[package]]
149
+ name = "clap"
150
+ version = "4.5.51"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
153
+ dependencies = [
154
+ "clap_builder",
155
+ "clap_derive",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "clap_builder"
160
+ version = "4.5.51"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
163
+ dependencies = [
164
+ "anstream",
165
+ "anstyle",
166
+ "clap_lex",
167
+ "strsim",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "clap_derive"
172
+ version = "4.5.49"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
175
+ dependencies = [
176
+ "heck",
177
+ "proc-macro2",
178
+ "quote",
179
+ "syn",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "clap_lex"
184
+ version = "0.7.6"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
187
+
188
+ [[package]]
189
+ name = "colorchoice"
190
+ version = "1.0.4"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
193
+
194
+ [[package]]
195
+ name = "console"
196
+ version = "0.15.11"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
199
+ dependencies = [
200
+ "encode_unicode",
201
+ "libc",
202
+ "once_cell",
203
+ "windows-sys 0.59.0",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "content_inspector"
208
+ version = "0.2.4"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
211
+ dependencies = [
212
+ "memchr",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "crc32fast"
217
+ version = "1.5.0"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
220
+ dependencies = [
221
+ "cfg-if",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "deranged"
226
+ version = "0.5.5"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
229
+ dependencies = [
230
+ "powerfmt",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "difflib"
235
+ version = "0.4.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
238
+
239
+ [[package]]
240
+ name = "encode_unicode"
241
+ version = "1.0.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
244
+
245
+ [[package]]
246
+ name = "encoding_rs"
247
+ version = "0.8.35"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
250
+ dependencies = [
251
+ "cfg-if",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "equivalent"
256
+ version = "1.0.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
259
+
260
+ [[package]]
261
+ name = "errno"
262
+ version = "0.3.14"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
265
+ dependencies = [
266
+ "libc",
267
+ "windows-sys 0.60.2",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "fastrand"
272
+ version = "2.3.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
275
+
276
+ [[package]]
277
+ name = "find-msvc-tools"
278
+ version = "0.1.4"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
281
+
282
+ [[package]]
283
+ name = "flate2"
284
+ version = "1.1.5"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
287
+ dependencies = [
288
+ "crc32fast",
289
+ "miniz_oxide",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "float-cmp"
294
+ version = "0.10.0"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
297
+ dependencies = [
298
+ "num-traits",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "fnv"
303
+ version = "1.0.7"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
306
+
307
+ [[package]]
308
+ name = "foldhash"
309
+ version = "0.1.5"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
312
+
313
+ [[package]]
314
+ name = "foldhash"
315
+ version = "0.2.0"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
318
+
319
+ [[package]]
320
+ name = "getrandom"
321
+ version = "0.3.4"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
324
+ dependencies = [
325
+ "cfg-if",
326
+ "libc",
327
+ "r-efi",
328
+ "wasip2",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "halfbrown"
333
+ version = "0.4.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
336
+ dependencies = [
337
+ "hashbrown 0.16.0",
338
+ "serde",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "hashbrown"
343
+ version = "0.15.5"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
346
+ dependencies = [
347
+ "foldhash 0.1.5",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "hashbrown"
352
+ version = "0.16.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
355
+ dependencies = [
356
+ "allocator-api2",
357
+ "equivalent",
358
+ "foldhash 0.2.0",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "hashlink"
363
+ version = "0.10.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
366
+ dependencies = [
367
+ "hashbrown 0.15.5",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "headson"
372
+ version = "0.7.0"
373
+ dependencies = [
374
+ "anyhow",
375
+ "assert_cmd",
376
+ "clap",
377
+ "content_inspector",
378
+ "insta",
379
+ "once_cell",
380
+ "rand",
381
+ "rand_chacha",
382
+ "serde",
383
+ "serde_json",
384
+ "serde_yaml",
385
+ "simd-json",
386
+ "syntect",
387
+ "tempfile",
388
+ "test_each_file",
389
+ "unicode-segmentation",
390
+ "yaml-rust2",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "heck"
395
+ version = "0.5.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
398
+
399
+ [[package]]
400
+ name = "indexmap"
401
+ version = "2.12.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
404
+ dependencies = [
405
+ "equivalent",
406
+ "hashbrown 0.16.0",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "insta"
411
+ version = "1.43.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
414
+ dependencies = [
415
+ "console",
416
+ "once_cell",
417
+ "similar",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "is_terminal_polyfill"
422
+ version = "1.70.2"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
425
+
426
+ [[package]]
427
+ name = "itoa"
428
+ version = "1.0.15"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
431
+
432
+ [[package]]
433
+ name = "libc"
434
+ version = "0.2.177"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
437
+
438
+ [[package]]
439
+ name = "linked-hash-map"
440
+ version = "0.5.6"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
443
+
444
+ [[package]]
445
+ name = "linux-raw-sys"
446
+ version = "0.11.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
449
+
450
+ [[package]]
451
+ name = "memchr"
452
+ version = "2.7.6"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
455
+
456
+ [[package]]
457
+ name = "miniz_oxide"
458
+ version = "0.8.9"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
461
+ dependencies = [
462
+ "adler2",
463
+ "simd-adler32",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "num-conv"
468
+ version = "0.1.0"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
471
+
472
+ [[package]]
473
+ name = "num-traits"
474
+ version = "0.2.19"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
477
+ dependencies = [
478
+ "autocfg",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "once_cell"
483
+ version = "1.21.3"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
486
+
487
+ [[package]]
488
+ name = "once_cell_polyfill"
489
+ version = "1.70.2"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
492
+
493
+ [[package]]
494
+ name = "onig"
495
+ version = "6.5.1"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
498
+ dependencies = [
499
+ "bitflags",
500
+ "libc",
501
+ "once_cell",
502
+ "onig_sys",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "onig_sys"
507
+ version = "69.9.1"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
510
+ dependencies = [
511
+ "cc",
512
+ "pkg-config",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "pkg-config"
517
+ version = "0.3.32"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
520
+
521
+ [[package]]
522
+ name = "plist"
523
+ version = "1.8.0"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
526
+ dependencies = [
527
+ "base64",
528
+ "indexmap",
529
+ "quick-xml",
530
+ "serde",
531
+ "time",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "powerfmt"
536
+ version = "0.2.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
539
+
540
+ [[package]]
541
+ name = "ppv-lite86"
542
+ version = "0.2.21"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
545
+ dependencies = [
546
+ "zerocopy",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "predicates"
551
+ version = "3.1.3"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
554
+ dependencies = [
555
+ "anstyle",
556
+ "difflib",
557
+ "predicates-core",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "predicates-core"
562
+ version = "1.0.9"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
565
+
566
+ [[package]]
567
+ name = "predicates-tree"
568
+ version = "1.0.12"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
571
+ dependencies = [
572
+ "predicates-core",
573
+ "termtree",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "proc-macro2"
578
+ version = "1.0.103"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
581
+ dependencies = [
582
+ "unicode-ident",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "quick-xml"
587
+ version = "0.38.3"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
590
+ dependencies = [
591
+ "memchr",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "quote"
596
+ version = "1.0.41"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
599
+ dependencies = [
600
+ "proc-macro2",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "r-efi"
605
+ version = "5.3.0"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
608
+
609
+ [[package]]
610
+ name = "rand"
611
+ version = "0.9.2"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
614
+ dependencies = [
615
+ "rand_chacha",
616
+ "rand_core",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "rand_chacha"
621
+ version = "0.9.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
624
+ dependencies = [
625
+ "ppv-lite86",
626
+ "rand_core",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "rand_core"
631
+ version = "0.9.3"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
634
+ dependencies = [
635
+ "getrandom",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "ref-cast"
640
+ version = "1.0.25"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
643
+ dependencies = [
644
+ "ref-cast-impl",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "ref-cast-impl"
649
+ version = "1.0.25"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
652
+ dependencies = [
653
+ "proc-macro2",
654
+ "quote",
655
+ "syn",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "regex-automata"
660
+ version = "0.4.13"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
663
+
664
+ [[package]]
665
+ name = "regex-syntax"
666
+ version = "0.8.8"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
669
+
670
+ [[package]]
671
+ name = "rustix"
672
+ version = "1.1.2"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
675
+ dependencies = [
676
+ "bitflags",
677
+ "errno",
678
+ "libc",
679
+ "linux-raw-sys",
680
+ "windows-sys 0.60.2",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "ryu"
685
+ version = "1.0.20"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
688
+
689
+ [[package]]
690
+ name = "same-file"
691
+ version = "1.0.6"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
694
+ dependencies = [
695
+ "winapi-util",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "serde"
700
+ version = "1.0.228"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
703
+ dependencies = [
704
+ "serde_core",
705
+ "serde_derive",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "serde_core"
710
+ version = "1.0.228"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
713
+ dependencies = [
714
+ "serde_derive",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "serde_derive"
719
+ version = "1.0.228"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
722
+ dependencies = [
723
+ "proc-macro2",
724
+ "quote",
725
+ "syn",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "serde_json"
730
+ version = "1.0.145"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
733
+ dependencies = [
734
+ "itoa",
735
+ "memchr",
736
+ "ryu",
737
+ "serde",
738
+ "serde_core",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "serde_yaml"
743
+ version = "0.9.34+deprecated"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
746
+ dependencies = [
747
+ "indexmap",
748
+ "itoa",
749
+ "ryu",
750
+ "serde",
751
+ "unsafe-libyaml",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "shlex"
756
+ version = "1.3.0"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
759
+
760
+ [[package]]
761
+ name = "simd-adler32"
762
+ version = "0.3.7"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
765
+
766
+ [[package]]
767
+ name = "simd-json"
768
+ version = "0.17.0"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
771
+ dependencies = [
772
+ "halfbrown",
773
+ "ref-cast",
774
+ "serde",
775
+ "serde_json",
776
+ "simdutf8",
777
+ "value-trait",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "simdutf8"
782
+ version = "0.1.5"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
785
+
786
+ [[package]]
787
+ name = "similar"
788
+ version = "2.7.0"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
791
+
792
+ [[package]]
793
+ name = "strsim"
794
+ version = "0.11.1"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
797
+
798
+ [[package]]
799
+ name = "syn"
800
+ version = "2.0.108"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
803
+ dependencies = [
804
+ "proc-macro2",
805
+ "quote",
806
+ "unicode-ident",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "syntect"
811
+ version = "5.3.0"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
814
+ dependencies = [
815
+ "bincode",
816
+ "flate2",
817
+ "fnv",
818
+ "once_cell",
819
+ "onig",
820
+ "plist",
821
+ "regex-syntax",
822
+ "serde",
823
+ "serde_derive",
824
+ "serde_json",
825
+ "thiserror",
826
+ "walkdir",
827
+ "yaml-rust",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "tempfile"
832
+ version = "3.23.0"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
835
+ dependencies = [
836
+ "fastrand",
837
+ "getrandom",
838
+ "once_cell",
839
+ "rustix",
840
+ "windows-sys 0.60.2",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "termtree"
845
+ version = "0.5.1"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
848
+
849
+ [[package]]
850
+ name = "test_each_file"
851
+ version = "0.3.6"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "2de773517ee4367314c7918f6c9ef69c201ba72bfdbffb00234c22c50a153b73"
854
+ dependencies = [
855
+ "proc-macro2",
856
+ "quote",
857
+ "syn",
858
+ "unicode-ident",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "thiserror"
863
+ version = "2.0.17"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
866
+ dependencies = [
867
+ "thiserror-impl",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "thiserror-impl"
872
+ version = "2.0.17"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
875
+ dependencies = [
876
+ "proc-macro2",
877
+ "quote",
878
+ "syn",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "time"
883
+ version = "0.3.44"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
886
+ dependencies = [
887
+ "deranged",
888
+ "itoa",
889
+ "num-conv",
890
+ "powerfmt",
891
+ "serde",
892
+ "time-core",
893
+ "time-macros",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "time-core"
898
+ version = "0.1.6"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
901
+
902
+ [[package]]
903
+ name = "time-macros"
904
+ version = "0.2.24"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
907
+ dependencies = [
908
+ "num-conv",
909
+ "time-core",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "unicode-ident"
914
+ version = "1.0.20"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
917
+
918
+ [[package]]
919
+ name = "unicode-segmentation"
920
+ version = "1.12.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
923
+
924
+ [[package]]
925
+ name = "unsafe-libyaml"
926
+ version = "0.2.11"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
929
+
930
+ [[package]]
931
+ name = "utf8parse"
932
+ version = "0.2.2"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
935
+
936
+ [[package]]
937
+ name = "value-trait"
938
+ version = "0.12.1"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "8e80f0c733af0720a501b3905d22e2f97662d8eacfe082a75ed7ffb5ab08cb59"
941
+ dependencies = [
942
+ "float-cmp",
943
+ "halfbrown",
944
+ "itoa",
945
+ "ryu",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "wait-timeout"
950
+ version = "0.2.1"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
953
+ dependencies = [
954
+ "libc",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "walkdir"
959
+ version = "2.5.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
962
+ dependencies = [
963
+ "same-file",
964
+ "winapi-util",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "wasip2"
969
+ version = "1.0.1+wasi-0.2.4"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
972
+ dependencies = [
973
+ "wit-bindgen",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "winapi-util"
978
+ version = "0.1.11"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
981
+ dependencies = [
982
+ "windows-sys 0.60.2",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "windows-link"
987
+ version = "0.2.1"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
990
+
991
+ [[package]]
992
+ name = "windows-sys"
993
+ version = "0.59.0"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
996
+ dependencies = [
997
+ "windows-targets 0.52.6",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "windows-sys"
1002
+ version = "0.60.2"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1005
+ dependencies = [
1006
+ "windows-targets 0.53.5",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "windows-targets"
1011
+ version = "0.52.6"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1014
+ dependencies = [
1015
+ "windows_aarch64_gnullvm 0.52.6",
1016
+ "windows_aarch64_msvc 0.52.6",
1017
+ "windows_i686_gnu 0.52.6",
1018
+ "windows_i686_gnullvm 0.52.6",
1019
+ "windows_i686_msvc 0.52.6",
1020
+ "windows_x86_64_gnu 0.52.6",
1021
+ "windows_x86_64_gnullvm 0.52.6",
1022
+ "windows_x86_64_msvc 0.52.6",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "windows-targets"
1027
+ version = "0.53.5"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1030
+ dependencies = [
1031
+ "windows-link",
1032
+ "windows_aarch64_gnullvm 0.53.1",
1033
+ "windows_aarch64_msvc 0.53.1",
1034
+ "windows_i686_gnu 0.53.1",
1035
+ "windows_i686_gnullvm 0.53.1",
1036
+ "windows_i686_msvc 0.53.1",
1037
+ "windows_x86_64_gnu 0.53.1",
1038
+ "windows_x86_64_gnullvm 0.53.1",
1039
+ "windows_x86_64_msvc 0.53.1",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "windows_aarch64_gnullvm"
1044
+ version = "0.52.6"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1047
+
1048
+ [[package]]
1049
+ name = "windows_aarch64_gnullvm"
1050
+ version = "0.53.1"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1053
+
1054
+ [[package]]
1055
+ name = "windows_aarch64_msvc"
1056
+ version = "0.52.6"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1059
+
1060
+ [[package]]
1061
+ name = "windows_aarch64_msvc"
1062
+ version = "0.53.1"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1065
+
1066
+ [[package]]
1067
+ name = "windows_i686_gnu"
1068
+ version = "0.52.6"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1071
+
1072
+ [[package]]
1073
+ name = "windows_i686_gnu"
1074
+ version = "0.53.1"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1077
+
1078
+ [[package]]
1079
+ name = "windows_i686_gnullvm"
1080
+ version = "0.52.6"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1083
+
1084
+ [[package]]
1085
+ name = "windows_i686_gnullvm"
1086
+ version = "0.53.1"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1089
+
1090
+ [[package]]
1091
+ name = "windows_i686_msvc"
1092
+ version = "0.52.6"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1095
+
1096
+ [[package]]
1097
+ name = "windows_i686_msvc"
1098
+ version = "0.53.1"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1101
+
1102
+ [[package]]
1103
+ name = "windows_x86_64_gnu"
1104
+ version = "0.52.6"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1107
+
1108
+ [[package]]
1109
+ name = "windows_x86_64_gnu"
1110
+ version = "0.53.1"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1113
+
1114
+ [[package]]
1115
+ name = "windows_x86_64_gnullvm"
1116
+ version = "0.52.6"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1119
+
1120
+ [[package]]
1121
+ name = "windows_x86_64_gnullvm"
1122
+ version = "0.53.1"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1125
+
1126
+ [[package]]
1127
+ name = "windows_x86_64_msvc"
1128
+ version = "0.52.6"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1131
+
1132
+ [[package]]
1133
+ name = "windows_x86_64_msvc"
1134
+ version = "0.53.1"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1137
+
1138
+ [[package]]
1139
+ name = "wit-bindgen"
1140
+ version = "0.46.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1143
+
1144
+ [[package]]
1145
+ name = "yaml-rust"
1146
+ version = "0.4.5"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
1149
+ dependencies = [
1150
+ "linked-hash-map",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "yaml-rust2"
1155
+ version = "0.10.4"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9"
1158
+ dependencies = [
1159
+ "arraydeque",
1160
+ "encoding_rs",
1161
+ "hashlink",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "zerocopy"
1166
+ version = "0.8.27"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
1169
+ dependencies = [
1170
+ "zerocopy-derive",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "zerocopy-derive"
1175
+ version = "0.8.27"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
1178
+ dependencies = [
1179
+ "proc-macro2",
1180
+ "quote",
1181
+ "syn",
1182
+ ]