gitlab-glaz 0.0.2 → 1.0.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,2094 @@
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 = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anyhow"
25
+ version = "1.0.102"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
28
+
29
+ [[package]]
30
+ name = "ar_archive_writer"
31
+ version = "0.5.1"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
34
+ dependencies = [
35
+ "object",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "arrayvec"
40
+ version = "0.5.2"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
43
+
44
+ [[package]]
45
+ name = "ascii-canvas"
46
+ version = "4.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "ef1e3e699d84ab1b0911a1010c5c106aa34ae89aeac103be5ce0c3859db1e891"
49
+ dependencies = [
50
+ "term",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "async-trait"
55
+ version = "0.1.89"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
58
+ dependencies = [
59
+ "proc-macro2",
60
+ "quote",
61
+ "syn",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "autocfg"
66
+ version = "1.5.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
69
+
70
+ [[package]]
71
+ name = "base64"
72
+ version = "0.22.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
75
+
76
+ [[package]]
77
+ name = "bindgen"
78
+ version = "0.72.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
81
+ dependencies = [
82
+ "bitflags",
83
+ "cexpr",
84
+ "clang-sys",
85
+ "itertools 0.13.0",
86
+ "proc-macro2",
87
+ "quote",
88
+ "regex",
89
+ "rustc-hash",
90
+ "shlex",
91
+ "syn",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bit-set"
96
+ version = "0.8.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
99
+ dependencies = [
100
+ "bit-vec",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "bit-vec"
105
+ version = "0.8.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
108
+
109
+ [[package]]
110
+ name = "bitflags"
111
+ version = "2.11.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
114
+
115
+ [[package]]
116
+ name = "block-buffer"
117
+ version = "0.10.4"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
120
+ dependencies = [
121
+ "generic-array",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "borsh"
126
+ version = "1.6.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
129
+ dependencies = [
130
+ "bytes",
131
+ "cfg_aliases",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "bumpalo"
136
+ version = "3.20.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
139
+
140
+ [[package]]
141
+ name = "bytes"
142
+ version = "1.11.1"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
145
+
146
+ [[package]]
147
+ name = "cc"
148
+ version = "1.2.59"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
151
+ dependencies = [
152
+ "find-msvc-tools",
153
+ "shlex",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "cedar-policy"
158
+ version = "4.9.1"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "50368b44367cd7664627bbee9bfe5721d10ab2433daf77645833645e8eb746da"
161
+ dependencies = [
162
+ "cedar-policy-core",
163
+ "cedar-policy-formatter",
164
+ "itertools 0.14.0",
165
+ "linked-hash-map",
166
+ "miette",
167
+ "ref-cast",
168
+ "semver",
169
+ "serde",
170
+ "serde_json",
171
+ "serde_with",
172
+ "smol_str",
173
+ "thiserror",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "cedar-policy-core"
178
+ version = "4.9.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "c9700d95c08701d5e43d30756ab0ec791649c2a93dee1274fac0fe8a17c7b24f"
181
+ dependencies = [
182
+ "chrono",
183
+ "educe",
184
+ "either",
185
+ "itertools 0.14.0",
186
+ "lalrpop",
187
+ "lalrpop-util",
188
+ "linked-hash-map",
189
+ "linked_hash_set",
190
+ "miette",
191
+ "nonempty",
192
+ "ref-cast",
193
+ "regex",
194
+ "rustc-literal-escaper",
195
+ "serde",
196
+ "serde_json",
197
+ "serde_with",
198
+ "smol_str",
199
+ "stacker",
200
+ "thiserror",
201
+ "unicode-security",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "cedar-policy-formatter"
206
+ version = "4.9.1"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "18c03e1d143e1c222d2ea48453ab4f4b11e545ac5a268a15bb163769fe568b90"
209
+ dependencies = [
210
+ "cedar-policy-core",
211
+ "itertools 0.14.0",
212
+ "logos",
213
+ "miette",
214
+ "pretty",
215
+ "regex",
216
+ "smol_str",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "cexpr"
221
+ version = "0.6.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
224
+ dependencies = [
225
+ "nom",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "cfg-if"
230
+ version = "1.0.4"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
233
+
234
+ [[package]]
235
+ name = "cfg_aliases"
236
+ version = "0.2.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
239
+
240
+ [[package]]
241
+ name = "chrono"
242
+ version = "0.4.44"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
245
+ dependencies = [
246
+ "iana-time-zone",
247
+ "num-traits",
248
+ "serde",
249
+ "windows-link",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "clang-sys"
254
+ version = "1.8.1"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
257
+ dependencies = [
258
+ "glob",
259
+ "libc",
260
+ "libloading",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "core-foundation-sys"
265
+ version = "0.8.7"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
268
+
269
+ [[package]]
270
+ name = "cpufeatures"
271
+ version = "0.2.17"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
274
+ dependencies = [
275
+ "libc",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "crypto-common"
280
+ version = "0.1.7"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
283
+ dependencies = [
284
+ "generic-array",
285
+ "typenum",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "darling"
290
+ version = "0.23.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
293
+ dependencies = [
294
+ "darling_core",
295
+ "darling_macro",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "darling_core"
300
+ version = "0.23.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
303
+ dependencies = [
304
+ "ident_case",
305
+ "proc-macro2",
306
+ "quote",
307
+ "strsim",
308
+ "syn",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "darling_macro"
313
+ version = "0.23.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
316
+ dependencies = [
317
+ "darling_core",
318
+ "quote",
319
+ "syn",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "deranged"
324
+ version = "0.5.8"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
327
+ dependencies = [
328
+ "powerfmt",
329
+ "serde_core",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "digest"
334
+ version = "0.10.7"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
337
+ dependencies = [
338
+ "block-buffer",
339
+ "crypto-common",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "dyn-clone"
344
+ version = "1.0.20"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
347
+
348
+ [[package]]
349
+ name = "educe"
350
+ version = "0.6.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417"
353
+ dependencies = [
354
+ "enum-ordinalize",
355
+ "proc-macro2",
356
+ "quote",
357
+ "syn",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "either"
362
+ version = "1.15.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
365
+
366
+ [[package]]
367
+ name = "ena"
368
+ version = "0.14.4"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1"
371
+ dependencies = [
372
+ "log",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "enum-ordinalize"
377
+ version = "4.3.2"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0"
380
+ dependencies = [
381
+ "enum-ordinalize-derive",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "enum-ordinalize-derive"
386
+ version = "4.3.2"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631"
389
+ dependencies = [
390
+ "proc-macro2",
391
+ "quote",
392
+ "syn",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "equivalent"
397
+ version = "1.0.2"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
400
+
401
+ [[package]]
402
+ name = "errno"
403
+ version = "0.3.14"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
406
+ dependencies = [
407
+ "libc",
408
+ "windows-sys 0.61.2",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "fastrand"
413
+ version = "2.4.1"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
416
+
417
+ [[package]]
418
+ name = "find-msvc-tools"
419
+ version = "0.1.9"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
422
+
423
+ [[package]]
424
+ name = "fixedbitset"
425
+ version = "0.5.7"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
428
+
429
+ [[package]]
430
+ name = "fnv"
431
+ version = "1.0.7"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
434
+
435
+ [[package]]
436
+ name = "foldhash"
437
+ version = "0.1.5"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
440
+
441
+ [[package]]
442
+ name = "generic-array"
443
+ version = "0.14.7"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
446
+ dependencies = [
447
+ "typenum",
448
+ "version_check",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "getrandom"
453
+ version = "0.4.2"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
456
+ dependencies = [
457
+ "cfg-if",
458
+ "libc",
459
+ "r-efi",
460
+ "wasip2",
461
+ "wasip3",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "glaz"
466
+ version = "1.0.0"
467
+ dependencies = [
468
+ "glaz-module",
469
+ "glaz-roles",
470
+ "magnus",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "glaz-module"
475
+ version = "0.1.0"
476
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=13a32ad3f0e6490384afb6ba6a3c3e2a6439901a#13a32ad3f0e6490384afb6ba6a3c3e2a6439901a"
477
+ dependencies = [
478
+ "glaz-policy",
479
+ "glaz-proto",
480
+ "prost",
481
+ "thiserror",
482
+ "tokio",
483
+ "uuid",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "glaz-policy"
488
+ version = "0.1.0"
489
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=13a32ad3f0e6490384afb6ba6a3c3e2a6439901a#13a32ad3f0e6490384afb6ba6a3c3e2a6439901a"
490
+ dependencies = [
491
+ "async-trait",
492
+ "cedar-policy",
493
+ "glaz-proto",
494
+ "serde_json",
495
+ "thiserror",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "glaz-proto"
500
+ version = "0.1.0"
501
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=13a32ad3f0e6490384afb6ba6a3c3e2a6439901a#13a32ad3f0e6490384afb6ba6a3c3e2a6439901a"
502
+ dependencies = [
503
+ "prost",
504
+ "prost-build",
505
+ "prost-types",
506
+ "protoc-bin-vendored",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "glaz-roles"
511
+ version = "0.1.0"
512
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=13a32ad3f0e6490384afb6ba6a3c3e2a6439901a#13a32ad3f0e6490384afb6ba6a3c3e2a6439901a"
513
+ dependencies = [
514
+ "serde",
515
+ "serde_yaml",
516
+ "thiserror",
517
+ "uuid",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "glob"
522
+ version = "0.3.3"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
525
+
526
+ [[package]]
527
+ name = "hashbrown"
528
+ version = "0.12.3"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
531
+
532
+ [[package]]
533
+ name = "hashbrown"
534
+ version = "0.15.5"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
537
+ dependencies = [
538
+ "foldhash",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "hashbrown"
543
+ version = "0.16.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
546
+
547
+ [[package]]
548
+ name = "heck"
549
+ version = "0.5.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
552
+
553
+ [[package]]
554
+ name = "hex"
555
+ version = "0.4.3"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
558
+
559
+ [[package]]
560
+ name = "iana-time-zone"
561
+ version = "0.1.65"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
564
+ dependencies = [
565
+ "android_system_properties",
566
+ "core-foundation-sys",
567
+ "iana-time-zone-haiku",
568
+ "js-sys",
569
+ "log",
570
+ "wasm-bindgen",
571
+ "windows-core",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "iana-time-zone-haiku"
576
+ version = "0.1.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
579
+ dependencies = [
580
+ "cc",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "id-arena"
585
+ version = "2.3.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
588
+
589
+ [[package]]
590
+ name = "ident_case"
591
+ version = "1.0.1"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
594
+
595
+ [[package]]
596
+ name = "indexmap"
597
+ version = "1.9.3"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
600
+ dependencies = [
601
+ "autocfg",
602
+ "hashbrown 0.12.3",
603
+ "serde",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "indexmap"
608
+ version = "2.13.1"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
611
+ dependencies = [
612
+ "equivalent",
613
+ "hashbrown 0.16.1",
614
+ "serde",
615
+ "serde_core",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "itertools"
620
+ version = "0.13.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
623
+ dependencies = [
624
+ "either",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "itertools"
629
+ version = "0.14.0"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
632
+ dependencies = [
633
+ "either",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "itoa"
638
+ version = "1.0.18"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
641
+
642
+ [[package]]
643
+ name = "js-sys"
644
+ version = "0.3.94"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
647
+ dependencies = [
648
+ "once_cell",
649
+ "wasm-bindgen",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "keccak"
654
+ version = "0.1.6"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
657
+ dependencies = [
658
+ "cpufeatures",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "lalrpop"
663
+ version = "0.22.2"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "ba4ebbd48ce411c1d10fb35185f5a51a7bfa3d8b24b4e330d30c9e3a34129501"
666
+ dependencies = [
667
+ "ascii-canvas",
668
+ "bit-set",
669
+ "ena",
670
+ "itertools 0.14.0",
671
+ "lalrpop-util",
672
+ "petgraph 0.7.1",
673
+ "pico-args",
674
+ "regex",
675
+ "regex-syntax",
676
+ "sha3",
677
+ "string_cache",
678
+ "term",
679
+ "unicode-xid",
680
+ "walkdir",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "lalrpop-util"
685
+ version = "0.22.2"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "b5baa5e9ff84f1aefd264e6869907646538a52147a755d494517a8007fb48733"
688
+ dependencies = [
689
+ "regex-automata",
690
+ "rustversion",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "lazy_static"
695
+ version = "1.5.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
698
+
699
+ [[package]]
700
+ name = "leb128fmt"
701
+ version = "0.1.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
704
+
705
+ [[package]]
706
+ name = "libc"
707
+ version = "0.2.184"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
710
+
711
+ [[package]]
712
+ name = "libloading"
713
+ version = "0.8.9"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
716
+ dependencies = [
717
+ "cfg-if",
718
+ "windows-link",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "linked-hash-map"
723
+ version = "0.5.6"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
726
+ dependencies = [
727
+ "serde",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "linked_hash_set"
732
+ version = "0.1.6"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "984fb35d06508d1e69fc91050cceba9c0b748f983e6739fa2c7a9237154c52c8"
735
+ dependencies = [
736
+ "linked-hash-map",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "linux-raw-sys"
741
+ version = "0.12.1"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
744
+
745
+ [[package]]
746
+ name = "lock_api"
747
+ version = "0.4.14"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
750
+ dependencies = [
751
+ "scopeguard",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "log"
756
+ version = "0.4.29"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
759
+
760
+ [[package]]
761
+ name = "logos"
762
+ version = "0.16.1"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "eb2c55a318a87600ea870ff8c2012148b44bf18b74fad48d0f835c38c7d07c5f"
765
+ dependencies = [
766
+ "logos-derive",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "logos-codegen"
771
+ version = "0.16.1"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "58b3ffaa284e1350d017a57d04ada118c4583cf260c8fb01e0fe28a2e9cf8970"
774
+ dependencies = [
775
+ "fnv",
776
+ "proc-macro2",
777
+ "quote",
778
+ "regex-automata",
779
+ "regex-syntax",
780
+ "syn",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "logos-derive"
785
+ version = "0.16.1"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "52d3a9855747c17eaf4383823f135220716ab49bea5fbea7dd42cc9a92f8aa31"
788
+ dependencies = [
789
+ "logos-codegen",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "magnus"
794
+ version = "0.8.2"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
797
+ dependencies = [
798
+ "magnus-macros",
799
+ "rb-sys",
800
+ "rb-sys-env",
801
+ "seq-macro",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "magnus-macros"
806
+ version = "0.8.0"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
809
+ dependencies = [
810
+ "proc-macro2",
811
+ "quote",
812
+ "syn",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "memchr"
817
+ version = "2.8.0"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
820
+
821
+ [[package]]
822
+ name = "miette"
823
+ version = "7.6.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
826
+ dependencies = [
827
+ "cfg-if",
828
+ "miette-derive",
829
+ "serde",
830
+ "unicode-width 0.1.14",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "miette-derive"
835
+ version = "7.6.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
838
+ dependencies = [
839
+ "proc-macro2",
840
+ "quote",
841
+ "syn",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "minimal-lexical"
846
+ version = "0.2.1"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
849
+
850
+ [[package]]
851
+ name = "mio"
852
+ version = "1.2.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
855
+ dependencies = [
856
+ "libc",
857
+ "wasi",
858
+ "windows-sys 0.61.2",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "multimap"
863
+ version = "0.10.1"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
866
+
867
+ [[package]]
868
+ name = "new_debug_unreachable"
869
+ version = "1.0.6"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
872
+
873
+ [[package]]
874
+ name = "nom"
875
+ version = "7.1.3"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
878
+ dependencies = [
879
+ "memchr",
880
+ "minimal-lexical",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "nonempty"
885
+ version = "0.12.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "9737e026353e5cd0736f98eddae28665118eb6f6600902a7f50db585621fecb6"
888
+ dependencies = [
889
+ "serde",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "num-conv"
894
+ version = "0.2.1"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
897
+
898
+ [[package]]
899
+ name = "num-traits"
900
+ version = "0.2.19"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
903
+ dependencies = [
904
+ "autocfg",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "object"
909
+ version = "0.37.3"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
912
+ dependencies = [
913
+ "memchr",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "once_cell"
918
+ version = "1.21.4"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
921
+
922
+ [[package]]
923
+ name = "parking_lot"
924
+ version = "0.12.5"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
927
+ dependencies = [
928
+ "lock_api",
929
+ "parking_lot_core",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "parking_lot_core"
934
+ version = "0.9.12"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
937
+ dependencies = [
938
+ "cfg-if",
939
+ "libc",
940
+ "redox_syscall",
941
+ "smallvec",
942
+ "windows-link",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "petgraph"
947
+ version = "0.7.1"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
950
+ dependencies = [
951
+ "fixedbitset",
952
+ "indexmap 2.13.1",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "petgraph"
957
+ version = "0.8.3"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
960
+ dependencies = [
961
+ "fixedbitset",
962
+ "hashbrown 0.15.5",
963
+ "indexmap 2.13.1",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "phf_shared"
968
+ version = "0.11.3"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
971
+ dependencies = [
972
+ "siphasher",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "pico-args"
977
+ version = "0.5.0"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
980
+
981
+ [[package]]
982
+ name = "pin-project-lite"
983
+ version = "0.2.17"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
986
+
987
+ [[package]]
988
+ name = "powerfmt"
989
+ version = "0.2.0"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
992
+
993
+ [[package]]
994
+ name = "precomputed-hash"
995
+ version = "0.1.1"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
998
+
999
+ [[package]]
1000
+ name = "pretty"
1001
+ version = "0.12.5"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "0d22152487193190344590e4f30e219cf3fe140d9e7a3fdb683d82aa2c5f4156"
1004
+ dependencies = [
1005
+ "arrayvec",
1006
+ "typed-arena",
1007
+ "unicode-width 0.2.2",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "prettyplease"
1012
+ version = "0.2.37"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1015
+ dependencies = [
1016
+ "proc-macro2",
1017
+ "syn",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "proc-macro2"
1022
+ version = "1.0.106"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1025
+ dependencies = [
1026
+ "unicode-ident",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "prost"
1031
+ version = "0.14.4"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
1034
+ dependencies = [
1035
+ "bytes",
1036
+ "prost-derive",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "prost-build"
1041
+ version = "0.14.4"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042"
1044
+ dependencies = [
1045
+ "heck",
1046
+ "itertools 0.13.0",
1047
+ "log",
1048
+ "multimap",
1049
+ "petgraph 0.8.3",
1050
+ "prettyplease",
1051
+ "prost",
1052
+ "prost-types",
1053
+ "regex",
1054
+ "syn",
1055
+ "tempfile",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "prost-derive"
1060
+ version = "0.14.4"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
1063
+ dependencies = [
1064
+ "anyhow",
1065
+ "itertools 0.13.0",
1066
+ "proc-macro2",
1067
+ "quote",
1068
+ "syn",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "prost-types"
1073
+ version = "0.14.4"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
1076
+ dependencies = [
1077
+ "prost",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "protoc-bin-vendored"
1082
+ version = "3.2.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "d1c381df33c98266b5f08186583660090a4ffa0889e76c7e9a5e175f645a67fa"
1085
+ dependencies = [
1086
+ "protoc-bin-vendored-linux-aarch_64",
1087
+ "protoc-bin-vendored-linux-ppcle_64",
1088
+ "protoc-bin-vendored-linux-s390_64",
1089
+ "protoc-bin-vendored-linux-x86_32",
1090
+ "protoc-bin-vendored-linux-x86_64",
1091
+ "protoc-bin-vendored-macos-aarch_64",
1092
+ "protoc-bin-vendored-macos-x86_64",
1093
+ "protoc-bin-vendored-win32",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "protoc-bin-vendored-linux-aarch_64"
1098
+ version = "3.2.0"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "c350df4d49b5b9e3ca79f7e646fde2377b199e13cfa87320308397e1f37e1a4c"
1101
+
1102
+ [[package]]
1103
+ name = "protoc-bin-vendored-linux-ppcle_64"
1104
+ version = "3.2.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "a55a63e6c7244f19b5c6393f025017eb5d793fd5467823a099740a7a4222440c"
1107
+
1108
+ [[package]]
1109
+ name = "protoc-bin-vendored-linux-s390_64"
1110
+ version = "3.2.0"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "1dba5565db4288e935d5330a07c264a4ee8e4a5b4a4e6f4e83fad824cc32f3b0"
1113
+
1114
+ [[package]]
1115
+ name = "protoc-bin-vendored-linux-x86_32"
1116
+ version = "3.2.0"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "8854774b24ee28b7868cd71dccaae8e02a2365e67a4a87a6cd11ee6cdbdf9cf5"
1119
+
1120
+ [[package]]
1121
+ name = "protoc-bin-vendored-linux-x86_64"
1122
+ version = "3.2.0"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "b38b07546580df720fa464ce124c4b03630a6fb83e05c336fea2a241df7e5d78"
1125
+
1126
+ [[package]]
1127
+ name = "protoc-bin-vendored-macos-aarch_64"
1128
+ version = "3.2.0"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "89278a9926ce312e51f1d999fee8825d324d603213344a9a706daa009f1d8092"
1131
+
1132
+ [[package]]
1133
+ name = "protoc-bin-vendored-macos-x86_64"
1134
+ version = "3.2.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "81745feda7ccfb9471d7a4de888f0652e806d5795b61480605d4943176299756"
1137
+
1138
+ [[package]]
1139
+ name = "protoc-bin-vendored-win32"
1140
+ version = "3.2.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "95067976aca6421a523e491fce939a3e65249bac4b977adee0ee9771568e8aa3"
1143
+
1144
+ [[package]]
1145
+ name = "psm"
1146
+ version = "0.1.30"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
1149
+ dependencies = [
1150
+ "ar_archive_writer",
1151
+ "cc",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "quote"
1156
+ version = "1.0.45"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1159
+ dependencies = [
1160
+ "proc-macro2",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "r-efi"
1165
+ version = "6.0.0"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1168
+
1169
+ [[package]]
1170
+ name = "rb-sys"
1171
+ version = "0.9.128"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
1174
+ dependencies = [
1175
+ "rb-sys-build",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "rb-sys-build"
1180
+ version = "0.9.128"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
1183
+ dependencies = [
1184
+ "bindgen",
1185
+ "lazy_static",
1186
+ "proc-macro2",
1187
+ "quote",
1188
+ "regex",
1189
+ "shell-words",
1190
+ "syn",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "rb-sys-env"
1195
+ version = "0.2.3"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
1198
+
1199
+ [[package]]
1200
+ name = "redox_syscall"
1201
+ version = "0.5.18"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1204
+ dependencies = [
1205
+ "bitflags",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "ref-cast"
1210
+ version = "1.0.25"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1213
+ dependencies = [
1214
+ "ref-cast-impl",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "ref-cast-impl"
1219
+ version = "1.0.25"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1222
+ dependencies = [
1223
+ "proc-macro2",
1224
+ "quote",
1225
+ "syn",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "regex"
1230
+ version = "1.12.3"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1233
+ dependencies = [
1234
+ "aho-corasick",
1235
+ "memchr",
1236
+ "regex-automata",
1237
+ "regex-syntax",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "regex-automata"
1242
+ version = "0.4.14"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1245
+ dependencies = [
1246
+ "aho-corasick",
1247
+ "memchr",
1248
+ "regex-syntax",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "regex-syntax"
1253
+ version = "0.8.10"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1256
+
1257
+ [[package]]
1258
+ name = "rustc-hash"
1259
+ version = "2.1.2"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1262
+
1263
+ [[package]]
1264
+ name = "rustc-literal-escaper"
1265
+ version = "0.0.7"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "8be87abb9e40db7466e0681dc8ecd9dcfd40360cb10b4c8fe24a7c4c3669b198"
1268
+
1269
+ [[package]]
1270
+ name = "rustix"
1271
+ version = "1.1.4"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1274
+ dependencies = [
1275
+ "bitflags",
1276
+ "errno",
1277
+ "libc",
1278
+ "linux-raw-sys",
1279
+ "windows-sys 0.61.2",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "rustversion"
1284
+ version = "1.0.22"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1287
+
1288
+ [[package]]
1289
+ name = "ryu"
1290
+ version = "1.0.23"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1293
+
1294
+ [[package]]
1295
+ name = "same-file"
1296
+ version = "1.0.6"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1299
+ dependencies = [
1300
+ "winapi-util",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "schemars"
1305
+ version = "0.9.0"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
1308
+ dependencies = [
1309
+ "dyn-clone",
1310
+ "ref-cast",
1311
+ "serde",
1312
+ "serde_json",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "schemars"
1317
+ version = "1.2.1"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
1320
+ dependencies = [
1321
+ "dyn-clone",
1322
+ "ref-cast",
1323
+ "serde",
1324
+ "serde_json",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "scopeguard"
1329
+ version = "1.2.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1332
+
1333
+ [[package]]
1334
+ name = "semver"
1335
+ version = "1.0.28"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1338
+
1339
+ [[package]]
1340
+ name = "seq-macro"
1341
+ version = "0.3.6"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1344
+
1345
+ [[package]]
1346
+ name = "serde"
1347
+ version = "1.0.228"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1350
+ dependencies = [
1351
+ "serde_core",
1352
+ "serde_derive",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "serde_core"
1357
+ version = "1.0.228"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1360
+ dependencies = [
1361
+ "serde_derive",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "serde_derive"
1366
+ version = "1.0.228"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1369
+ dependencies = [
1370
+ "proc-macro2",
1371
+ "quote",
1372
+ "syn",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "serde_json"
1377
+ version = "1.0.149"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1380
+ dependencies = [
1381
+ "indexmap 2.13.1",
1382
+ "itoa",
1383
+ "memchr",
1384
+ "serde",
1385
+ "serde_core",
1386
+ "zmij",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "serde_with"
1391
+ version = "3.18.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f"
1394
+ dependencies = [
1395
+ "base64",
1396
+ "chrono",
1397
+ "hex",
1398
+ "indexmap 1.9.3",
1399
+ "indexmap 2.13.1",
1400
+ "schemars 0.9.0",
1401
+ "schemars 1.2.1",
1402
+ "serde_core",
1403
+ "serde_json",
1404
+ "serde_with_macros",
1405
+ "time",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "serde_with_macros"
1410
+ version = "3.18.0"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65"
1413
+ dependencies = [
1414
+ "darling",
1415
+ "proc-macro2",
1416
+ "quote",
1417
+ "syn",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "serde_yaml"
1422
+ version = "0.9.34+deprecated"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1425
+ dependencies = [
1426
+ "indexmap 2.13.1",
1427
+ "itoa",
1428
+ "ryu",
1429
+ "serde",
1430
+ "unsafe-libyaml",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "sha3"
1435
+ version = "0.10.8"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
1438
+ dependencies = [
1439
+ "digest",
1440
+ "keccak",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "shell-words"
1445
+ version = "1.1.1"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1448
+
1449
+ [[package]]
1450
+ name = "shlex"
1451
+ version = "1.3.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1454
+
1455
+ [[package]]
1456
+ name = "signal-hook-registry"
1457
+ version = "1.4.8"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1460
+ dependencies = [
1461
+ "errno",
1462
+ "libc",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "siphasher"
1467
+ version = "1.0.2"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1470
+
1471
+ [[package]]
1472
+ name = "smallvec"
1473
+ version = "1.15.1"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1476
+
1477
+ [[package]]
1478
+ name = "smol_str"
1479
+ version = "0.3.6"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523"
1482
+ dependencies = [
1483
+ "borsh",
1484
+ "serde_core",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "socket2"
1489
+ version = "0.6.3"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1492
+ dependencies = [
1493
+ "libc",
1494
+ "windows-sys 0.61.2",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "stacker"
1499
+ version = "0.1.23"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013"
1502
+ dependencies = [
1503
+ "cc",
1504
+ "cfg-if",
1505
+ "libc",
1506
+ "psm",
1507
+ "windows-sys 0.59.0",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "string_cache"
1512
+ version = "0.8.9"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
1515
+ dependencies = [
1516
+ "new_debug_unreachable",
1517
+ "parking_lot",
1518
+ "phf_shared",
1519
+ "precomputed-hash",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "strsim"
1524
+ version = "0.11.1"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1527
+
1528
+ [[package]]
1529
+ name = "syn"
1530
+ version = "2.0.117"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1533
+ dependencies = [
1534
+ "proc-macro2",
1535
+ "quote",
1536
+ "unicode-ident",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "tempfile"
1541
+ version = "3.27.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1544
+ dependencies = [
1545
+ "fastrand",
1546
+ "once_cell",
1547
+ "rustix",
1548
+ "windows-sys 0.61.2",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "term"
1553
+ version = "1.2.1"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "d8c27177b12a6399ffc08b98f76f7c9a1f4fe9fc967c784c5a071fa8d93cf7e1"
1556
+ dependencies = [
1557
+ "windows-sys 0.61.2",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "thiserror"
1562
+ version = "2.0.18"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1565
+ dependencies = [
1566
+ "thiserror-impl",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "thiserror-impl"
1571
+ version = "2.0.18"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1574
+ dependencies = [
1575
+ "proc-macro2",
1576
+ "quote",
1577
+ "syn",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "time"
1582
+ version = "0.3.47"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1585
+ dependencies = [
1586
+ "deranged",
1587
+ "itoa",
1588
+ "num-conv",
1589
+ "powerfmt",
1590
+ "serde_core",
1591
+ "time-core",
1592
+ "time-macros",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "time-core"
1597
+ version = "0.1.8"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1600
+
1601
+ [[package]]
1602
+ name = "time-macros"
1603
+ version = "0.2.27"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
1606
+ dependencies = [
1607
+ "num-conv",
1608
+ "time-core",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "tinyvec"
1613
+ version = "1.11.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1616
+ dependencies = [
1617
+ "tinyvec_macros",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "tinyvec_macros"
1622
+ version = "0.1.1"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1625
+
1626
+ [[package]]
1627
+ name = "tokio"
1628
+ version = "1.51.1"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
1631
+ dependencies = [
1632
+ "bytes",
1633
+ "libc",
1634
+ "mio",
1635
+ "parking_lot",
1636
+ "pin-project-lite",
1637
+ "signal-hook-registry",
1638
+ "socket2",
1639
+ "tokio-macros",
1640
+ "windows-sys 0.61.2",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "tokio-macros"
1645
+ version = "2.7.0"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1648
+ dependencies = [
1649
+ "proc-macro2",
1650
+ "quote",
1651
+ "syn",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "typed-arena"
1656
+ version = "2.0.2"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1659
+
1660
+ [[package]]
1661
+ name = "typenum"
1662
+ version = "1.19.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1665
+
1666
+ [[package]]
1667
+ name = "unicode-ident"
1668
+ version = "1.0.24"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1671
+
1672
+ [[package]]
1673
+ name = "unicode-normalization"
1674
+ version = "0.1.25"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1677
+ dependencies = [
1678
+ "tinyvec",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "unicode-script"
1683
+ version = "0.5.8"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
1686
+
1687
+ [[package]]
1688
+ name = "unicode-security"
1689
+ version = "0.1.2"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "2e4ddba1535dd35ed8b61c52166b7155d7f4e4b8847cec6f48e71dc66d8b5e50"
1692
+ dependencies = [
1693
+ "unicode-normalization",
1694
+ "unicode-script",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "unicode-width"
1699
+ version = "0.1.14"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1702
+
1703
+ [[package]]
1704
+ name = "unicode-width"
1705
+ version = "0.2.2"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1708
+
1709
+ [[package]]
1710
+ name = "unicode-xid"
1711
+ version = "0.2.6"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1714
+
1715
+ [[package]]
1716
+ name = "unsafe-libyaml"
1717
+ version = "0.2.11"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1720
+
1721
+ [[package]]
1722
+ name = "uuid"
1723
+ version = "1.23.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
1726
+ dependencies = [
1727
+ "getrandom",
1728
+ "js-sys",
1729
+ "serde_core",
1730
+ "wasm-bindgen",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "version_check"
1735
+ version = "0.9.5"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1738
+
1739
+ [[package]]
1740
+ name = "walkdir"
1741
+ version = "2.5.0"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1744
+ dependencies = [
1745
+ "same-file",
1746
+ "winapi-util",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "wasi"
1751
+ version = "0.11.1+wasi-snapshot-preview1"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1754
+
1755
+ [[package]]
1756
+ name = "wasip2"
1757
+ version = "1.0.2+wasi-0.2.9"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1760
+ dependencies = [
1761
+ "wit-bindgen",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "wasip3"
1766
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1769
+ dependencies = [
1770
+ "wit-bindgen",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "wasm-bindgen"
1775
+ version = "0.2.117"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
1778
+ dependencies = [
1779
+ "cfg-if",
1780
+ "once_cell",
1781
+ "rustversion",
1782
+ "wasm-bindgen-macro",
1783
+ "wasm-bindgen-shared",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "wasm-bindgen-macro"
1788
+ version = "0.2.117"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
1791
+ dependencies = [
1792
+ "quote",
1793
+ "wasm-bindgen-macro-support",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "wasm-bindgen-macro-support"
1798
+ version = "0.2.117"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
1801
+ dependencies = [
1802
+ "bumpalo",
1803
+ "proc-macro2",
1804
+ "quote",
1805
+ "syn",
1806
+ "wasm-bindgen-shared",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "wasm-bindgen-shared"
1811
+ version = "0.2.117"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
1814
+ dependencies = [
1815
+ "unicode-ident",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "wasm-encoder"
1820
+ version = "0.244.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1823
+ dependencies = [
1824
+ "leb128fmt",
1825
+ "wasmparser",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "wasm-metadata"
1830
+ version = "0.244.0"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1833
+ dependencies = [
1834
+ "anyhow",
1835
+ "indexmap 2.13.1",
1836
+ "wasm-encoder",
1837
+ "wasmparser",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "wasmparser"
1842
+ version = "0.244.0"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1845
+ dependencies = [
1846
+ "bitflags",
1847
+ "hashbrown 0.15.5",
1848
+ "indexmap 2.13.1",
1849
+ "semver",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "winapi-util"
1854
+ version = "0.1.11"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1857
+ dependencies = [
1858
+ "windows-sys 0.61.2",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "windows-core"
1863
+ version = "0.62.2"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1866
+ dependencies = [
1867
+ "windows-implement",
1868
+ "windows-interface",
1869
+ "windows-link",
1870
+ "windows-result",
1871
+ "windows-strings",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "windows-implement"
1876
+ version = "0.60.2"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1879
+ dependencies = [
1880
+ "proc-macro2",
1881
+ "quote",
1882
+ "syn",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "windows-interface"
1887
+ version = "0.59.3"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1890
+ dependencies = [
1891
+ "proc-macro2",
1892
+ "quote",
1893
+ "syn",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "windows-link"
1898
+ version = "0.2.1"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1901
+
1902
+ [[package]]
1903
+ name = "windows-result"
1904
+ version = "0.4.1"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1907
+ dependencies = [
1908
+ "windows-link",
1909
+ ]
1910
+
1911
+ [[package]]
1912
+ name = "windows-strings"
1913
+ version = "0.5.1"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1916
+ dependencies = [
1917
+ "windows-link",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "windows-sys"
1922
+ version = "0.59.0"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1925
+ dependencies = [
1926
+ "windows-targets",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "windows-sys"
1931
+ version = "0.61.2"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1934
+ dependencies = [
1935
+ "windows-link",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "windows-targets"
1940
+ version = "0.52.6"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1943
+ dependencies = [
1944
+ "windows_aarch64_gnullvm",
1945
+ "windows_aarch64_msvc",
1946
+ "windows_i686_gnu",
1947
+ "windows_i686_gnullvm",
1948
+ "windows_i686_msvc",
1949
+ "windows_x86_64_gnu",
1950
+ "windows_x86_64_gnullvm",
1951
+ "windows_x86_64_msvc",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "windows_aarch64_gnullvm"
1956
+ version = "0.52.6"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1959
+
1960
+ [[package]]
1961
+ name = "windows_aarch64_msvc"
1962
+ version = "0.52.6"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1965
+
1966
+ [[package]]
1967
+ name = "windows_i686_gnu"
1968
+ version = "0.52.6"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1971
+
1972
+ [[package]]
1973
+ name = "windows_i686_gnullvm"
1974
+ version = "0.52.6"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1977
+
1978
+ [[package]]
1979
+ name = "windows_i686_msvc"
1980
+ version = "0.52.6"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1983
+
1984
+ [[package]]
1985
+ name = "windows_x86_64_gnu"
1986
+ version = "0.52.6"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1989
+
1990
+ [[package]]
1991
+ name = "windows_x86_64_gnullvm"
1992
+ version = "0.52.6"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1995
+
1996
+ [[package]]
1997
+ name = "windows_x86_64_msvc"
1998
+ version = "0.52.6"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2001
+
2002
+ [[package]]
2003
+ name = "wit-bindgen"
2004
+ version = "0.51.0"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2007
+ dependencies = [
2008
+ "wit-bindgen-rust-macro",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "wit-bindgen-core"
2013
+ version = "0.51.0"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2016
+ dependencies = [
2017
+ "anyhow",
2018
+ "heck",
2019
+ "wit-parser",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "wit-bindgen-rust"
2024
+ version = "0.51.0"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2027
+ dependencies = [
2028
+ "anyhow",
2029
+ "heck",
2030
+ "indexmap 2.13.1",
2031
+ "prettyplease",
2032
+ "syn",
2033
+ "wasm-metadata",
2034
+ "wit-bindgen-core",
2035
+ "wit-component",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "wit-bindgen-rust-macro"
2040
+ version = "0.51.0"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2043
+ dependencies = [
2044
+ "anyhow",
2045
+ "prettyplease",
2046
+ "proc-macro2",
2047
+ "quote",
2048
+ "syn",
2049
+ "wit-bindgen-core",
2050
+ "wit-bindgen-rust",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "wit-component"
2055
+ version = "0.244.0"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2058
+ dependencies = [
2059
+ "anyhow",
2060
+ "bitflags",
2061
+ "indexmap 2.13.1",
2062
+ "log",
2063
+ "serde",
2064
+ "serde_derive",
2065
+ "serde_json",
2066
+ "wasm-encoder",
2067
+ "wasm-metadata",
2068
+ "wasmparser",
2069
+ "wit-parser",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "wit-parser"
2074
+ version = "0.244.0"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2077
+ dependencies = [
2078
+ "anyhow",
2079
+ "id-arena",
2080
+ "indexmap 2.13.1",
2081
+ "log",
2082
+ "semver",
2083
+ "serde",
2084
+ "serde_derive",
2085
+ "serde_json",
2086
+ "unicode-xid",
2087
+ "wasmparser",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "zmij"
2092
+ version = "1.0.21"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"