enm 0.1.0

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.
data/Cargo.lock ADDED
@@ -0,0 +1,1030 @@
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.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 = "anyhow"
16
+ version = "1.0.102"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
19
+
20
+ [[package]]
21
+ name = "bindgen"
22
+ version = "0.66.1"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
25
+ dependencies = [
26
+ "bitflags",
27
+ "cexpr",
28
+ "clang-sys",
29
+ "lazy_static",
30
+ "lazycell",
31
+ "log",
32
+ "peeking_take_while",
33
+ "prettyplease",
34
+ "proc-macro2",
35
+ "quote",
36
+ "regex",
37
+ "rustc-hash",
38
+ "shlex",
39
+ "syn",
40
+ "which",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "bindgen"
45
+ version = "0.69.5"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
48
+ dependencies = [
49
+ "bitflags",
50
+ "cexpr",
51
+ "clang-sys",
52
+ "itertools 0.12.1",
53
+ "lazy_static",
54
+ "lazycell",
55
+ "proc-macro2",
56
+ "quote",
57
+ "regex",
58
+ "rustc-hash",
59
+ "shlex",
60
+ "syn",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "bitflags"
65
+ version = "2.11.0"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
68
+ dependencies = [
69
+ "serde_core",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "bytes"
74
+ version = "1.11.1"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
77
+
78
+ [[package]]
79
+ name = "cc"
80
+ version = "1.2.57"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
83
+ dependencies = [
84
+ "find-msvc-tools",
85
+ "shlex",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "cexpr"
90
+ version = "0.6.0"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
93
+ dependencies = [
94
+ "nom",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "cfg-if"
99
+ version = "1.0.4"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
102
+
103
+ [[package]]
104
+ name = "clang-sys"
105
+ version = "1.8.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
108
+ dependencies = [
109
+ "glob",
110
+ "libc",
111
+ "libloading",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "either"
116
+ version = "1.15.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
119
+
120
+ [[package]]
121
+ name = "enm"
122
+ version = "0.1.0"
123
+ dependencies = [
124
+ "anyhow",
125
+ "magnus",
126
+ "pgenum_parser",
127
+ "rb-sys",
128
+ "rb-sys-env",
129
+ "rb-sys-test-helpers",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "equivalent"
134
+ version = "1.0.2"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
137
+
138
+ [[package]]
139
+ name = "errno"
140
+ version = "0.3.14"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
143
+ dependencies = [
144
+ "libc",
145
+ "windows-sys 0.61.2",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "fastrand"
150
+ version = "2.3.0"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
153
+
154
+ [[package]]
155
+ name = "find-msvc-tools"
156
+ version = "0.1.9"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
159
+
160
+ [[package]]
161
+ name = "fixedbitset"
162
+ version = "0.5.7"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
165
+
166
+ [[package]]
167
+ name = "foldhash"
168
+ version = "0.1.5"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
171
+
172
+ [[package]]
173
+ name = "fs_extra"
174
+ version = "1.3.0"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
177
+
178
+ [[package]]
179
+ name = "getrandom"
180
+ version = "0.4.2"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
183
+ dependencies = [
184
+ "cfg-if",
185
+ "libc",
186
+ "r-efi",
187
+ "wasip2",
188
+ "wasip3",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "glob"
193
+ version = "0.3.3"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
196
+
197
+ [[package]]
198
+ name = "hashbrown"
199
+ version = "0.15.5"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
202
+ dependencies = [
203
+ "foldhash",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "hashbrown"
208
+ version = "0.16.1"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
211
+
212
+ [[package]]
213
+ name = "heck"
214
+ version = "0.5.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
217
+
218
+ [[package]]
219
+ name = "home"
220
+ version = "0.5.12"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
223
+ dependencies = [
224
+ "windows-sys 0.61.2",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "id-arena"
229
+ version = "2.3.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
232
+
233
+ [[package]]
234
+ name = "indexmap"
235
+ version = "2.13.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
238
+ dependencies = [
239
+ "equivalent",
240
+ "hashbrown 0.16.1",
241
+ "serde",
242
+ "serde_core",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "itertools"
247
+ version = "0.10.5"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
250
+ dependencies = [
251
+ "either",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "itertools"
256
+ version = "0.12.1"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
259
+ dependencies = [
260
+ "either",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "itoa"
265
+ version = "1.0.18"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
268
+
269
+ [[package]]
270
+ name = "lazy_static"
271
+ version = "1.5.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
274
+
275
+ [[package]]
276
+ name = "lazycell"
277
+ version = "1.3.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
280
+
281
+ [[package]]
282
+ name = "leb128fmt"
283
+ version = "0.1.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
286
+
287
+ [[package]]
288
+ name = "libc"
289
+ version = "0.2.183"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
292
+
293
+ [[package]]
294
+ name = "libloading"
295
+ version = "0.8.9"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
298
+ dependencies = [
299
+ "cfg-if",
300
+ "windows-link",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "linux-raw-sys"
305
+ version = "0.4.15"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
308
+
309
+ [[package]]
310
+ name = "linux-raw-sys"
311
+ version = "0.12.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
314
+
315
+ [[package]]
316
+ name = "log"
317
+ version = "0.4.29"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
320
+
321
+ [[package]]
322
+ name = "magnus"
323
+ version = "0.8.2"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
326
+ dependencies = [
327
+ "magnus-macros",
328
+ "rb-sys",
329
+ "rb-sys-env",
330
+ "seq-macro",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "magnus-macros"
335
+ version = "0.8.0"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
338
+ dependencies = [
339
+ "proc-macro2",
340
+ "quote",
341
+ "syn",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "memchr"
346
+ version = "2.8.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
349
+
350
+ [[package]]
351
+ name = "minimal-lexical"
352
+ version = "0.2.1"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
355
+
356
+ [[package]]
357
+ name = "multimap"
358
+ version = "0.10.1"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
361
+
362
+ [[package]]
363
+ name = "nom"
364
+ version = "7.1.3"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
367
+ dependencies = [
368
+ "memchr",
369
+ "minimal-lexical",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "once_cell"
374
+ version = "1.21.4"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
377
+
378
+ [[package]]
379
+ name = "peeking_take_while"
380
+ version = "0.1.2"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
383
+
384
+ [[package]]
385
+ name = "petgraph"
386
+ version = "0.7.1"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
389
+ dependencies = [
390
+ "fixedbitset",
391
+ "indexmap",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "pg_query"
396
+ version = "6.1.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "6ca6fdb8f9d32182abf17328789f87f305dd8c8ce5bf48c5aa2b5cffc94e1c04"
399
+ dependencies = [
400
+ "bindgen 0.66.1",
401
+ "cc",
402
+ "fs_extra",
403
+ "glob",
404
+ "itertools 0.10.5",
405
+ "prost",
406
+ "prost-build",
407
+ "serde",
408
+ "serde_json",
409
+ "thiserror 1.0.69",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "pgenum_parser"
414
+ version = "0.2.1"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "67c1c5e16972457e93290f6cd371010485e0d2d590f2d01916ae41963799eafe"
417
+ dependencies = [
418
+ "anyhow",
419
+ "pg_query",
420
+ "ron",
421
+ "serde",
422
+ "thiserror 2.0.18",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "prettyplease"
427
+ version = "0.2.37"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
430
+ dependencies = [
431
+ "proc-macro2",
432
+ "syn",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "proc-macro2"
437
+ version = "1.0.106"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
440
+ dependencies = [
441
+ "unicode-ident",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "prost"
446
+ version = "0.13.5"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
449
+ dependencies = [
450
+ "bytes",
451
+ "prost-derive",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "prost-build"
456
+ version = "0.13.5"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
459
+ dependencies = [
460
+ "heck",
461
+ "itertools 0.12.1",
462
+ "log",
463
+ "multimap",
464
+ "once_cell",
465
+ "petgraph",
466
+ "prettyplease",
467
+ "prost",
468
+ "prost-types",
469
+ "regex",
470
+ "syn",
471
+ "tempfile",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "prost-derive"
476
+ version = "0.13.5"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
479
+ dependencies = [
480
+ "anyhow",
481
+ "itertools 0.12.1",
482
+ "proc-macro2",
483
+ "quote",
484
+ "syn",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "prost-types"
489
+ version = "0.13.5"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
492
+ dependencies = [
493
+ "prost",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "quote"
498
+ version = "1.0.45"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
501
+ dependencies = [
502
+ "proc-macro2",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "r-efi"
507
+ version = "6.0.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
510
+
511
+ [[package]]
512
+ name = "rb-sys"
513
+ version = "0.9.124"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
516
+ dependencies = [
517
+ "rb-sys-build",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "rb-sys-build"
522
+ version = "0.9.124"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
525
+ dependencies = [
526
+ "bindgen 0.69.5",
527
+ "lazy_static",
528
+ "proc-macro2",
529
+ "quote",
530
+ "regex",
531
+ "shell-words",
532
+ "syn",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "rb-sys-env"
537
+ version = "0.2.3"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
540
+
541
+ [[package]]
542
+ name = "rb-sys-test-helpers"
543
+ version = "0.2.2"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "d6ccb543252549fc28f5d290322e041cd682bd199a8e1caaa813fb6e63dd221e"
546
+ dependencies = [
547
+ "rb-sys",
548
+ "rb-sys-env",
549
+ "rb-sys-test-helpers-macros",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "rb-sys-test-helpers-macros"
554
+ version = "0.2.2"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "1508caed999cb659ab1b3308e7b2985186b3b550ef5492dc18da71b560c55615"
557
+ dependencies = [
558
+ "quote",
559
+ "syn",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "regex"
564
+ version = "1.12.3"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
567
+ dependencies = [
568
+ "aho-corasick",
569
+ "memchr",
570
+ "regex-automata",
571
+ "regex-syntax",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "regex-automata"
576
+ version = "0.4.14"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
579
+ dependencies = [
580
+ "aho-corasick",
581
+ "memchr",
582
+ "regex-syntax",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "regex-syntax"
587
+ version = "0.8.10"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
590
+
591
+ [[package]]
592
+ name = "ron"
593
+ version = "0.12.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "fd490c5b18261893f14449cbd28cb9c0b637aebf161cd77900bfdedaff21ec32"
596
+ dependencies = [
597
+ "bitflags",
598
+ "once_cell",
599
+ "serde",
600
+ "serde_derive",
601
+ "typeid",
602
+ "unicode-ident",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "rustc-hash"
607
+ version = "1.1.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
610
+
611
+ [[package]]
612
+ name = "rustix"
613
+ version = "0.38.44"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
616
+ dependencies = [
617
+ "bitflags",
618
+ "errno",
619
+ "libc",
620
+ "linux-raw-sys 0.4.15",
621
+ "windows-sys 0.59.0",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "rustix"
626
+ version = "1.1.4"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
629
+ dependencies = [
630
+ "bitflags",
631
+ "errno",
632
+ "libc",
633
+ "linux-raw-sys 0.12.1",
634
+ "windows-sys 0.61.2",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "semver"
639
+ version = "1.0.27"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
642
+
643
+ [[package]]
644
+ name = "seq-macro"
645
+ version = "0.3.6"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
648
+
649
+ [[package]]
650
+ name = "serde"
651
+ version = "1.0.228"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
654
+ dependencies = [
655
+ "serde_core",
656
+ "serde_derive",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "serde_core"
661
+ version = "1.0.228"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
664
+ dependencies = [
665
+ "serde_derive",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "serde_derive"
670
+ version = "1.0.228"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
673
+ dependencies = [
674
+ "proc-macro2",
675
+ "quote",
676
+ "syn",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "serde_json"
681
+ version = "1.0.149"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
684
+ dependencies = [
685
+ "itoa",
686
+ "memchr",
687
+ "serde",
688
+ "serde_core",
689
+ "zmij",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "shell-words"
694
+ version = "1.1.1"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
697
+
698
+ [[package]]
699
+ name = "shlex"
700
+ version = "1.3.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
703
+
704
+ [[package]]
705
+ name = "syn"
706
+ version = "2.0.117"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
709
+ dependencies = [
710
+ "proc-macro2",
711
+ "quote",
712
+ "unicode-ident",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "tempfile"
717
+ version = "3.27.0"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
720
+ dependencies = [
721
+ "fastrand",
722
+ "getrandom",
723
+ "once_cell",
724
+ "rustix 1.1.4",
725
+ "windows-sys 0.61.2",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "thiserror"
730
+ version = "1.0.69"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
733
+ dependencies = [
734
+ "thiserror-impl 1.0.69",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "thiserror"
739
+ version = "2.0.18"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
742
+ dependencies = [
743
+ "thiserror-impl 2.0.18",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "thiserror-impl"
748
+ version = "1.0.69"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
751
+ dependencies = [
752
+ "proc-macro2",
753
+ "quote",
754
+ "syn",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "thiserror-impl"
759
+ version = "2.0.18"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
762
+ dependencies = [
763
+ "proc-macro2",
764
+ "quote",
765
+ "syn",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "typeid"
770
+ version = "1.0.3"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
773
+
774
+ [[package]]
775
+ name = "unicode-ident"
776
+ version = "1.0.24"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
779
+
780
+ [[package]]
781
+ name = "unicode-xid"
782
+ version = "0.2.6"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
785
+
786
+ [[package]]
787
+ name = "wasip2"
788
+ version = "1.0.2+wasi-0.2.9"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
791
+ dependencies = [
792
+ "wit-bindgen",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "wasip3"
797
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
800
+ dependencies = [
801
+ "wit-bindgen",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "wasm-encoder"
806
+ version = "0.244.0"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
809
+ dependencies = [
810
+ "leb128fmt",
811
+ "wasmparser",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "wasm-metadata"
816
+ version = "0.244.0"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
819
+ dependencies = [
820
+ "anyhow",
821
+ "indexmap",
822
+ "wasm-encoder",
823
+ "wasmparser",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "wasmparser"
828
+ version = "0.244.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
831
+ dependencies = [
832
+ "bitflags",
833
+ "hashbrown 0.15.5",
834
+ "indexmap",
835
+ "semver",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "which"
840
+ version = "4.4.2"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
843
+ dependencies = [
844
+ "either",
845
+ "home",
846
+ "once_cell",
847
+ "rustix 0.38.44",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "windows-link"
852
+ version = "0.2.1"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
855
+
856
+ [[package]]
857
+ name = "windows-sys"
858
+ version = "0.59.0"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
861
+ dependencies = [
862
+ "windows-targets",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "windows-sys"
867
+ version = "0.61.2"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
870
+ dependencies = [
871
+ "windows-link",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "windows-targets"
876
+ version = "0.52.6"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
879
+ dependencies = [
880
+ "windows_aarch64_gnullvm",
881
+ "windows_aarch64_msvc",
882
+ "windows_i686_gnu",
883
+ "windows_i686_gnullvm",
884
+ "windows_i686_msvc",
885
+ "windows_x86_64_gnu",
886
+ "windows_x86_64_gnullvm",
887
+ "windows_x86_64_msvc",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "windows_aarch64_gnullvm"
892
+ version = "0.52.6"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
895
+
896
+ [[package]]
897
+ name = "windows_aarch64_msvc"
898
+ version = "0.52.6"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
901
+
902
+ [[package]]
903
+ name = "windows_i686_gnu"
904
+ version = "0.52.6"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
907
+
908
+ [[package]]
909
+ name = "windows_i686_gnullvm"
910
+ version = "0.52.6"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
913
+
914
+ [[package]]
915
+ name = "windows_i686_msvc"
916
+ version = "0.52.6"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
919
+
920
+ [[package]]
921
+ name = "windows_x86_64_gnu"
922
+ version = "0.52.6"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
925
+
926
+ [[package]]
927
+ name = "windows_x86_64_gnullvm"
928
+ version = "0.52.6"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
931
+
932
+ [[package]]
933
+ name = "windows_x86_64_msvc"
934
+ version = "0.52.6"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
937
+
938
+ [[package]]
939
+ name = "wit-bindgen"
940
+ version = "0.51.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
943
+ dependencies = [
944
+ "wit-bindgen-rust-macro",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "wit-bindgen-core"
949
+ version = "0.51.0"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
952
+ dependencies = [
953
+ "anyhow",
954
+ "heck",
955
+ "wit-parser",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "wit-bindgen-rust"
960
+ version = "0.51.0"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
963
+ dependencies = [
964
+ "anyhow",
965
+ "heck",
966
+ "indexmap",
967
+ "prettyplease",
968
+ "syn",
969
+ "wasm-metadata",
970
+ "wit-bindgen-core",
971
+ "wit-component",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "wit-bindgen-rust-macro"
976
+ version = "0.51.0"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
979
+ dependencies = [
980
+ "anyhow",
981
+ "prettyplease",
982
+ "proc-macro2",
983
+ "quote",
984
+ "syn",
985
+ "wit-bindgen-core",
986
+ "wit-bindgen-rust",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "wit-component"
991
+ version = "0.244.0"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
994
+ dependencies = [
995
+ "anyhow",
996
+ "bitflags",
997
+ "indexmap",
998
+ "log",
999
+ "serde",
1000
+ "serde_derive",
1001
+ "serde_json",
1002
+ "wasm-encoder",
1003
+ "wasm-metadata",
1004
+ "wasmparser",
1005
+ "wit-parser",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "wit-parser"
1010
+ version = "0.244.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1013
+ dependencies = [
1014
+ "anyhow",
1015
+ "id-arena",
1016
+ "indexmap",
1017
+ "log",
1018
+ "semver",
1019
+ "serde",
1020
+ "serde_derive",
1021
+ "serde_json",
1022
+ "unicode-xid",
1023
+ "wasmparser",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "zmij"
1028
+ version = "1.0.21"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"