gitlab-glaz 0.0.2 → 0.0.3

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