hajimi-claw 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Cargo.lock ADDED
@@ -0,0 +1,2602 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
+ dependencies = [
11
+ "crypto-common",
12
+ "generic-array",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "aes"
17
+ version = "0.8.4"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
20
+ dependencies = [
21
+ "cfg-if",
22
+ "cipher",
23
+ "cpufeatures",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aes-gcm"
28
+ version = "0.10.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
31
+ dependencies = [
32
+ "aead",
33
+ "aes",
34
+ "cipher",
35
+ "ctr",
36
+ "ghash",
37
+ "subtle",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "ahash"
42
+ version = "0.8.12"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
45
+ dependencies = [
46
+ "cfg-if",
47
+ "once_cell",
48
+ "version_check",
49
+ "zerocopy",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "aho-corasick"
54
+ version = "1.1.4"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
57
+ dependencies = [
58
+ "memchr",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "android_system_properties"
63
+ version = "0.1.5"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
66
+ dependencies = [
67
+ "libc",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.102"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
75
+
76
+ [[package]]
77
+ name = "async-stream"
78
+ version = "0.3.6"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
81
+ dependencies = [
82
+ "async-stream-impl",
83
+ "futures-core",
84
+ "pin-project-lite",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "async-stream-impl"
89
+ version = "0.3.6"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
92
+ dependencies = [
93
+ "proc-macro2",
94
+ "quote",
95
+ "syn",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "async-trait"
100
+ version = "0.1.89"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
103
+ dependencies = [
104
+ "proc-macro2",
105
+ "quote",
106
+ "syn",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "atomic-waker"
111
+ version = "1.1.2"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
114
+
115
+ [[package]]
116
+ name = "autocfg"
117
+ version = "1.5.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
120
+
121
+ [[package]]
122
+ name = "base64"
123
+ version = "0.22.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
126
+
127
+ [[package]]
128
+ name = "bitflags"
129
+ version = "2.11.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
132
+
133
+ [[package]]
134
+ name = "block-buffer"
135
+ version = "0.10.4"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
138
+ dependencies = [
139
+ "generic-array",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "bumpalo"
144
+ version = "3.20.2"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
147
+
148
+ [[package]]
149
+ name = "bytes"
150
+ version = "1.11.1"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
153
+
154
+ [[package]]
155
+ name = "cc"
156
+ version = "1.2.57"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
159
+ dependencies = [
160
+ "find-msvc-tools",
161
+ "shlex",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "cfg-if"
166
+ version = "1.0.4"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
169
+
170
+ [[package]]
171
+ name = "cfg_aliases"
172
+ version = "0.2.1"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
175
+
176
+ [[package]]
177
+ name = "chrono"
178
+ version = "0.4.44"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
181
+ dependencies = [
182
+ "iana-time-zone",
183
+ "js-sys",
184
+ "num-traits",
185
+ "serde",
186
+ "wasm-bindgen",
187
+ "windows-link",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "cipher"
192
+ version = "0.4.4"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
195
+ dependencies = [
196
+ "crypto-common",
197
+ "inout",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "core-foundation-sys"
202
+ version = "0.8.7"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
205
+
206
+ [[package]]
207
+ name = "cpufeatures"
208
+ version = "0.2.17"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
211
+ dependencies = [
212
+ "libc",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "crypto-common"
217
+ version = "0.1.7"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
220
+ dependencies = [
221
+ "generic-array",
222
+ "rand_core 0.6.4",
223
+ "typenum",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "ctr"
228
+ version = "0.9.2"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
231
+ dependencies = [
232
+ "cipher",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "digest"
237
+ version = "0.10.7"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
240
+ dependencies = [
241
+ "block-buffer",
242
+ "crypto-common",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "displaydoc"
247
+ version = "0.2.5"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
250
+ dependencies = [
251
+ "proc-macro2",
252
+ "quote",
253
+ "syn",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "equivalent"
258
+ version = "1.0.2"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
261
+
262
+ [[package]]
263
+ name = "errno"
264
+ version = "0.3.14"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
267
+ dependencies = [
268
+ "libc",
269
+ "windows-sys 0.61.2",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "fallible-iterator"
274
+ version = "0.3.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
277
+
278
+ [[package]]
279
+ name = "fallible-streaming-iterator"
280
+ version = "0.1.9"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
283
+
284
+ [[package]]
285
+ name = "fastrand"
286
+ version = "2.3.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
289
+
290
+ [[package]]
291
+ name = "find-msvc-tools"
292
+ version = "0.1.9"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
295
+
296
+ [[package]]
297
+ name = "foldhash"
298
+ version = "0.1.5"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
301
+
302
+ [[package]]
303
+ name = "form_urlencoded"
304
+ version = "1.2.2"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
307
+ dependencies = [
308
+ "percent-encoding",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "futures"
313
+ version = "0.3.32"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
316
+ dependencies = [
317
+ "futures-channel",
318
+ "futures-core",
319
+ "futures-executor",
320
+ "futures-io",
321
+ "futures-sink",
322
+ "futures-task",
323
+ "futures-util",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "futures-channel"
328
+ version = "0.3.32"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
331
+ dependencies = [
332
+ "futures-core",
333
+ "futures-sink",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "futures-core"
338
+ version = "0.3.32"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
341
+
342
+ [[package]]
343
+ name = "futures-executor"
344
+ version = "0.3.32"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
347
+ dependencies = [
348
+ "futures-core",
349
+ "futures-task",
350
+ "futures-util",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "futures-io"
355
+ version = "0.3.32"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
358
+
359
+ [[package]]
360
+ name = "futures-macro"
361
+ version = "0.3.32"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
364
+ dependencies = [
365
+ "proc-macro2",
366
+ "quote",
367
+ "syn",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "futures-sink"
372
+ version = "0.3.32"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
375
+
376
+ [[package]]
377
+ name = "futures-task"
378
+ version = "0.3.32"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
381
+
382
+ [[package]]
383
+ name = "futures-util"
384
+ version = "0.3.32"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
387
+ dependencies = [
388
+ "futures-channel",
389
+ "futures-core",
390
+ "futures-io",
391
+ "futures-macro",
392
+ "futures-sink",
393
+ "futures-task",
394
+ "memchr",
395
+ "pin-project-lite",
396
+ "slab",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "generic-array"
401
+ version = "0.14.7"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
404
+ dependencies = [
405
+ "typenum",
406
+ "version_check",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "getrandom"
411
+ version = "0.2.17"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
414
+ dependencies = [
415
+ "cfg-if",
416
+ "js-sys",
417
+ "libc",
418
+ "wasi",
419
+ "wasm-bindgen",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "getrandom"
424
+ version = "0.3.4"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
427
+ dependencies = [
428
+ "cfg-if",
429
+ "js-sys",
430
+ "libc",
431
+ "r-efi 5.3.0",
432
+ "wasip2",
433
+ "wasm-bindgen",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "getrandom"
438
+ version = "0.4.2"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
441
+ dependencies = [
442
+ "cfg-if",
443
+ "libc",
444
+ "r-efi 6.0.0",
445
+ "wasip2",
446
+ "wasip3",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "ghash"
451
+ version = "0.5.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
454
+ dependencies = [
455
+ "opaque-debug",
456
+ "polyval",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "hajimi-claw"
461
+ version = "0.1.0"
462
+ dependencies = [
463
+ "anyhow",
464
+ "hajimi-claw-daemon",
465
+ "tokio",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "hajimi-claw-agent"
470
+ version = "0.1.0"
471
+ dependencies = [
472
+ "anyhow",
473
+ "chrono",
474
+ "futures",
475
+ "hajimi-claw-exec",
476
+ "hajimi-claw-llm",
477
+ "hajimi-claw-policy",
478
+ "hajimi-claw-store",
479
+ "hajimi-claw-tools",
480
+ "hajimi-claw-types",
481
+ "serde_json",
482
+ "tempfile",
483
+ "tokio",
484
+ "tracing",
485
+ "uuid",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "hajimi-claw-bot"
490
+ version = "0.1.0"
491
+ dependencies = [
492
+ "anyhow",
493
+ "chrono",
494
+ "hajimi-claw-gateway",
495
+ "hajimi-claw-store",
496
+ "hajimi-claw-types",
497
+ "reqwest",
498
+ "serde",
499
+ "serde_json",
500
+ "tokio",
501
+ "tracing",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "hajimi-claw-daemon"
506
+ version = "0.1.0"
507
+ dependencies = [
508
+ "anyhow",
509
+ "chrono",
510
+ "hajimi-claw-agent",
511
+ "hajimi-claw-bot",
512
+ "hajimi-claw-exec",
513
+ "hajimi-claw-gateway",
514
+ "hajimi-claw-llm",
515
+ "hajimi-claw-policy",
516
+ "hajimi-claw-store",
517
+ "hajimi-claw-tools",
518
+ "hajimi-claw-types",
519
+ "serde",
520
+ "tokio",
521
+ "toml",
522
+ "tracing",
523
+ "tracing-subscriber",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "hajimi-claw-exec"
528
+ version = "0.1.0"
529
+ dependencies = [
530
+ "anyhow",
531
+ "async-trait",
532
+ "chrono",
533
+ "hajimi-claw-policy",
534
+ "hajimi-claw-types",
535
+ "serde",
536
+ "tempfile",
537
+ "tokio",
538
+ "tracing",
539
+ "uuid",
540
+ "windows",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "hajimi-claw-gateway"
545
+ version = "0.1.0"
546
+ dependencies = [
547
+ "anyhow",
548
+ "async-trait",
549
+ "chrono",
550
+ "hajimi-claw-agent",
551
+ "hajimi-claw-exec",
552
+ "hajimi-claw-llm",
553
+ "hajimi-claw-policy",
554
+ "hajimi-claw-store",
555
+ "hajimi-claw-tools",
556
+ "hajimi-claw-types",
557
+ "reqwest",
558
+ "serde",
559
+ "tempfile",
560
+ "thiserror",
561
+ "tokio",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "hajimi-claw-llm"
566
+ version = "0.1.0"
567
+ dependencies = [
568
+ "anyhow",
569
+ "async-stream",
570
+ "async-trait",
571
+ "chrono",
572
+ "futures",
573
+ "hajimi-claw-store",
574
+ "hajimi-claw-types",
575
+ "reqwest",
576
+ "serde",
577
+ "serde_json",
578
+ "tokio",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "hajimi-claw-policy"
583
+ version = "0.1.0"
584
+ dependencies = [
585
+ "chrono",
586
+ "hajimi-claw-types",
587
+ "regex",
588
+ "serde",
589
+ "uuid",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "hajimi-claw-store"
594
+ version = "0.1.0"
595
+ dependencies = [
596
+ "aes-gcm",
597
+ "anyhow",
598
+ "base64",
599
+ "chrono",
600
+ "hajimi-claw-types",
601
+ "rusqlite",
602
+ "serde_json",
603
+ "sha2",
604
+ "uuid",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "hajimi-claw-tools"
609
+ version = "0.1.0"
610
+ dependencies = [
611
+ "anyhow",
612
+ "async-trait",
613
+ "hajimi-claw-exec",
614
+ "hajimi-claw-policy",
615
+ "hajimi-claw-types",
616
+ "regex",
617
+ "serde",
618
+ "serde_json",
619
+ "tempfile",
620
+ "tokio",
621
+ "uuid",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "hajimi-claw-types"
626
+ version = "0.1.0"
627
+ dependencies = [
628
+ "async-trait",
629
+ "chrono",
630
+ "futures",
631
+ "serde",
632
+ "serde_json",
633
+ "thiserror",
634
+ "uuid",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "hashbrown"
639
+ version = "0.14.5"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
642
+ dependencies = [
643
+ "ahash",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "hashbrown"
648
+ version = "0.15.5"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
651
+ dependencies = [
652
+ "foldhash",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "hashbrown"
657
+ version = "0.16.1"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
660
+
661
+ [[package]]
662
+ name = "hashlink"
663
+ version = "0.9.1"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
666
+ dependencies = [
667
+ "hashbrown 0.14.5",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "heck"
672
+ version = "0.5.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
675
+
676
+ [[package]]
677
+ name = "http"
678
+ version = "1.4.0"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
681
+ dependencies = [
682
+ "bytes",
683
+ "itoa",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "http-body"
688
+ version = "1.0.1"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
691
+ dependencies = [
692
+ "bytes",
693
+ "http",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "http-body-util"
698
+ version = "0.1.3"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
701
+ dependencies = [
702
+ "bytes",
703
+ "futures-core",
704
+ "http",
705
+ "http-body",
706
+ "pin-project-lite",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "httparse"
711
+ version = "1.10.1"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
714
+
715
+ [[package]]
716
+ name = "hyper"
717
+ version = "1.8.1"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
720
+ dependencies = [
721
+ "atomic-waker",
722
+ "bytes",
723
+ "futures-channel",
724
+ "futures-core",
725
+ "http",
726
+ "http-body",
727
+ "httparse",
728
+ "itoa",
729
+ "pin-project-lite",
730
+ "pin-utils",
731
+ "smallvec",
732
+ "tokio",
733
+ "want",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "hyper-rustls"
738
+ version = "0.27.7"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
741
+ dependencies = [
742
+ "http",
743
+ "hyper",
744
+ "hyper-util",
745
+ "rustls",
746
+ "rustls-pki-types",
747
+ "tokio",
748
+ "tokio-rustls",
749
+ "tower-service",
750
+ "webpki-roots",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "hyper-util"
755
+ version = "0.1.20"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
758
+ dependencies = [
759
+ "base64",
760
+ "bytes",
761
+ "futures-channel",
762
+ "futures-util",
763
+ "http",
764
+ "http-body",
765
+ "hyper",
766
+ "ipnet",
767
+ "libc",
768
+ "percent-encoding",
769
+ "pin-project-lite",
770
+ "socket2",
771
+ "tokio",
772
+ "tower-service",
773
+ "tracing",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "iana-time-zone"
778
+ version = "0.1.65"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
781
+ dependencies = [
782
+ "android_system_properties",
783
+ "core-foundation-sys",
784
+ "iana-time-zone-haiku",
785
+ "js-sys",
786
+ "log",
787
+ "wasm-bindgen",
788
+ "windows-core 0.62.2",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "iana-time-zone-haiku"
793
+ version = "0.1.2"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
796
+ dependencies = [
797
+ "cc",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "icu_collections"
802
+ version = "2.1.1"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
805
+ dependencies = [
806
+ "displaydoc",
807
+ "potential_utf",
808
+ "yoke",
809
+ "zerofrom",
810
+ "zerovec",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "icu_locale_core"
815
+ version = "2.1.1"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
818
+ dependencies = [
819
+ "displaydoc",
820
+ "litemap",
821
+ "tinystr",
822
+ "writeable",
823
+ "zerovec",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "icu_normalizer"
828
+ version = "2.1.1"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
831
+ dependencies = [
832
+ "icu_collections",
833
+ "icu_normalizer_data",
834
+ "icu_properties",
835
+ "icu_provider",
836
+ "smallvec",
837
+ "zerovec",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "icu_normalizer_data"
842
+ version = "2.1.1"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
845
+
846
+ [[package]]
847
+ name = "icu_properties"
848
+ version = "2.1.2"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
851
+ dependencies = [
852
+ "icu_collections",
853
+ "icu_locale_core",
854
+ "icu_properties_data",
855
+ "icu_provider",
856
+ "zerotrie",
857
+ "zerovec",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "icu_properties_data"
862
+ version = "2.1.2"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
865
+
866
+ [[package]]
867
+ name = "icu_provider"
868
+ version = "2.1.1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
871
+ dependencies = [
872
+ "displaydoc",
873
+ "icu_locale_core",
874
+ "writeable",
875
+ "yoke",
876
+ "zerofrom",
877
+ "zerotrie",
878
+ "zerovec",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "id-arena"
883
+ version = "2.3.0"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
886
+
887
+ [[package]]
888
+ name = "idna"
889
+ version = "1.1.0"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
892
+ dependencies = [
893
+ "idna_adapter",
894
+ "smallvec",
895
+ "utf8_iter",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "idna_adapter"
900
+ version = "1.2.1"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
903
+ dependencies = [
904
+ "icu_normalizer",
905
+ "icu_properties",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "indexmap"
910
+ version = "2.13.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
913
+ dependencies = [
914
+ "equivalent",
915
+ "hashbrown 0.16.1",
916
+ "serde",
917
+ "serde_core",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "inout"
922
+ version = "0.1.4"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
925
+ dependencies = [
926
+ "generic-array",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "ipnet"
931
+ version = "2.12.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
934
+
935
+ [[package]]
936
+ name = "iri-string"
937
+ version = "0.7.10"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
940
+ dependencies = [
941
+ "memchr",
942
+ "serde",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "itoa"
947
+ version = "1.0.17"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
950
+
951
+ [[package]]
952
+ name = "js-sys"
953
+ version = "0.3.91"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
956
+ dependencies = [
957
+ "once_cell",
958
+ "wasm-bindgen",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "lazy_static"
963
+ version = "1.5.0"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
966
+
967
+ [[package]]
968
+ name = "leb128fmt"
969
+ version = "0.1.0"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
972
+
973
+ [[package]]
974
+ name = "libc"
975
+ version = "0.2.183"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
978
+
979
+ [[package]]
980
+ name = "libsqlite3-sys"
981
+ version = "0.30.1"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
984
+ dependencies = [
985
+ "cc",
986
+ "pkg-config",
987
+ "vcpkg",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "linux-raw-sys"
992
+ version = "0.12.1"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
995
+
996
+ [[package]]
997
+ name = "litemap"
998
+ version = "0.8.1"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1001
+
1002
+ [[package]]
1003
+ name = "log"
1004
+ version = "0.4.29"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1007
+
1008
+ [[package]]
1009
+ name = "lru-slab"
1010
+ version = "0.1.2"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1013
+
1014
+ [[package]]
1015
+ name = "matchers"
1016
+ version = "0.2.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1019
+ dependencies = [
1020
+ "regex-automata",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "memchr"
1025
+ version = "2.8.0"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1028
+
1029
+ [[package]]
1030
+ name = "mio"
1031
+ version = "1.1.1"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1034
+ dependencies = [
1035
+ "libc",
1036
+ "wasi",
1037
+ "windows-sys 0.61.2",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "nu-ansi-term"
1042
+ version = "0.50.3"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1045
+ dependencies = [
1046
+ "windows-sys 0.61.2",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "num-traits"
1051
+ version = "0.2.19"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1054
+ dependencies = [
1055
+ "autocfg",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "once_cell"
1060
+ version = "1.21.4"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1063
+
1064
+ [[package]]
1065
+ name = "opaque-debug"
1066
+ version = "0.3.1"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1069
+
1070
+ [[package]]
1071
+ name = "percent-encoding"
1072
+ version = "2.3.2"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1075
+
1076
+ [[package]]
1077
+ name = "pin-project-lite"
1078
+ version = "0.2.17"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1081
+
1082
+ [[package]]
1083
+ name = "pin-utils"
1084
+ version = "0.1.0"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1087
+
1088
+ [[package]]
1089
+ name = "pkg-config"
1090
+ version = "0.3.32"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1093
+
1094
+ [[package]]
1095
+ name = "polyval"
1096
+ version = "0.6.2"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1099
+ dependencies = [
1100
+ "cfg-if",
1101
+ "cpufeatures",
1102
+ "opaque-debug",
1103
+ "universal-hash",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "potential_utf"
1108
+ version = "0.1.4"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1111
+ dependencies = [
1112
+ "zerovec",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "ppv-lite86"
1117
+ version = "0.2.21"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1120
+ dependencies = [
1121
+ "zerocopy",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "prettyplease"
1126
+ version = "0.2.37"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1129
+ dependencies = [
1130
+ "proc-macro2",
1131
+ "syn",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "proc-macro2"
1136
+ version = "1.0.106"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1139
+ dependencies = [
1140
+ "unicode-ident",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "quinn"
1145
+ version = "0.11.9"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1148
+ dependencies = [
1149
+ "bytes",
1150
+ "cfg_aliases",
1151
+ "pin-project-lite",
1152
+ "quinn-proto",
1153
+ "quinn-udp",
1154
+ "rustc-hash",
1155
+ "rustls",
1156
+ "socket2",
1157
+ "thiserror",
1158
+ "tokio",
1159
+ "tracing",
1160
+ "web-time",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "quinn-proto"
1165
+ version = "0.11.14"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1168
+ dependencies = [
1169
+ "bytes",
1170
+ "getrandom 0.3.4",
1171
+ "lru-slab",
1172
+ "rand",
1173
+ "ring",
1174
+ "rustc-hash",
1175
+ "rustls",
1176
+ "rustls-pki-types",
1177
+ "slab",
1178
+ "thiserror",
1179
+ "tinyvec",
1180
+ "tracing",
1181
+ "web-time",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "quinn-udp"
1186
+ version = "0.5.14"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1189
+ dependencies = [
1190
+ "cfg_aliases",
1191
+ "libc",
1192
+ "once_cell",
1193
+ "socket2",
1194
+ "tracing",
1195
+ "windows-sys 0.60.2",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "quote"
1200
+ version = "1.0.45"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1203
+ dependencies = [
1204
+ "proc-macro2",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "r-efi"
1209
+ version = "5.3.0"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1212
+
1213
+ [[package]]
1214
+ name = "r-efi"
1215
+ version = "6.0.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1218
+
1219
+ [[package]]
1220
+ name = "rand"
1221
+ version = "0.9.2"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1224
+ dependencies = [
1225
+ "rand_chacha",
1226
+ "rand_core 0.9.5",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "rand_chacha"
1231
+ version = "0.9.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1234
+ dependencies = [
1235
+ "ppv-lite86",
1236
+ "rand_core 0.9.5",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "rand_core"
1241
+ version = "0.6.4"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1244
+ dependencies = [
1245
+ "getrandom 0.2.17",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "rand_core"
1250
+ version = "0.9.5"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1253
+ dependencies = [
1254
+ "getrandom 0.3.4",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "regex"
1259
+ version = "1.12.3"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1262
+ dependencies = [
1263
+ "aho-corasick",
1264
+ "memchr",
1265
+ "regex-automata",
1266
+ "regex-syntax",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "regex-automata"
1271
+ version = "0.4.14"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1274
+ dependencies = [
1275
+ "aho-corasick",
1276
+ "memchr",
1277
+ "regex-syntax",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "regex-syntax"
1282
+ version = "0.8.10"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1285
+
1286
+ [[package]]
1287
+ name = "reqwest"
1288
+ version = "0.12.28"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1291
+ dependencies = [
1292
+ "base64",
1293
+ "bytes",
1294
+ "futures-core",
1295
+ "futures-util",
1296
+ "http",
1297
+ "http-body",
1298
+ "http-body-util",
1299
+ "hyper",
1300
+ "hyper-rustls",
1301
+ "hyper-util",
1302
+ "js-sys",
1303
+ "log",
1304
+ "percent-encoding",
1305
+ "pin-project-lite",
1306
+ "quinn",
1307
+ "rustls",
1308
+ "rustls-pki-types",
1309
+ "serde",
1310
+ "serde_json",
1311
+ "serde_urlencoded",
1312
+ "sync_wrapper",
1313
+ "tokio",
1314
+ "tokio-rustls",
1315
+ "tokio-util",
1316
+ "tower",
1317
+ "tower-http",
1318
+ "tower-service",
1319
+ "url",
1320
+ "wasm-bindgen",
1321
+ "wasm-bindgen-futures",
1322
+ "wasm-streams",
1323
+ "web-sys",
1324
+ "webpki-roots",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "ring"
1329
+ version = "0.17.14"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1332
+ dependencies = [
1333
+ "cc",
1334
+ "cfg-if",
1335
+ "getrandom 0.2.17",
1336
+ "libc",
1337
+ "untrusted",
1338
+ "windows-sys 0.52.0",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "rusqlite"
1343
+ version = "0.32.1"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
1346
+ dependencies = [
1347
+ "bitflags",
1348
+ "chrono",
1349
+ "fallible-iterator",
1350
+ "fallible-streaming-iterator",
1351
+ "hashlink",
1352
+ "libsqlite3-sys",
1353
+ "smallvec",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "rustc-hash"
1358
+ version = "2.1.1"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1361
+
1362
+ [[package]]
1363
+ name = "rustix"
1364
+ version = "1.1.4"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1367
+ dependencies = [
1368
+ "bitflags",
1369
+ "errno",
1370
+ "libc",
1371
+ "linux-raw-sys",
1372
+ "windows-sys 0.61.2",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "rustls"
1377
+ version = "0.23.37"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1380
+ dependencies = [
1381
+ "once_cell",
1382
+ "ring",
1383
+ "rustls-pki-types",
1384
+ "rustls-webpki",
1385
+ "subtle",
1386
+ "zeroize",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "rustls-pki-types"
1391
+ version = "1.14.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1394
+ dependencies = [
1395
+ "web-time",
1396
+ "zeroize",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "rustls-webpki"
1401
+ version = "0.103.9"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1404
+ dependencies = [
1405
+ "ring",
1406
+ "rustls-pki-types",
1407
+ "untrusted",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "rustversion"
1412
+ version = "1.0.22"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1415
+
1416
+ [[package]]
1417
+ name = "ryu"
1418
+ version = "1.0.23"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1421
+
1422
+ [[package]]
1423
+ name = "semver"
1424
+ version = "1.0.27"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1427
+
1428
+ [[package]]
1429
+ name = "serde"
1430
+ version = "1.0.228"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1433
+ dependencies = [
1434
+ "serde_core",
1435
+ "serde_derive",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "serde_core"
1440
+ version = "1.0.228"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1443
+ dependencies = [
1444
+ "serde_derive",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "serde_derive"
1449
+ version = "1.0.228"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1452
+ dependencies = [
1453
+ "proc-macro2",
1454
+ "quote",
1455
+ "syn",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "serde_json"
1460
+ version = "1.0.149"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1463
+ dependencies = [
1464
+ "itoa",
1465
+ "memchr",
1466
+ "serde",
1467
+ "serde_core",
1468
+ "zmij",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "serde_spanned"
1473
+ version = "0.6.9"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1476
+ dependencies = [
1477
+ "serde",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "serde_urlencoded"
1482
+ version = "0.7.1"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1485
+ dependencies = [
1486
+ "form_urlencoded",
1487
+ "itoa",
1488
+ "ryu",
1489
+ "serde",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "sha2"
1494
+ version = "0.10.9"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1497
+ dependencies = [
1498
+ "cfg-if",
1499
+ "cpufeatures",
1500
+ "digest",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "sharded-slab"
1505
+ version = "0.1.7"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1508
+ dependencies = [
1509
+ "lazy_static",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "shlex"
1514
+ version = "1.3.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1517
+
1518
+ [[package]]
1519
+ name = "signal-hook-registry"
1520
+ version = "1.4.8"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1523
+ dependencies = [
1524
+ "errno",
1525
+ "libc",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "slab"
1530
+ version = "0.4.12"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1533
+
1534
+ [[package]]
1535
+ name = "smallvec"
1536
+ version = "1.15.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1539
+
1540
+ [[package]]
1541
+ name = "socket2"
1542
+ version = "0.6.3"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1545
+ dependencies = [
1546
+ "libc",
1547
+ "windows-sys 0.61.2",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "stable_deref_trait"
1552
+ version = "1.2.1"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1555
+
1556
+ [[package]]
1557
+ name = "subtle"
1558
+ version = "2.6.1"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1561
+
1562
+ [[package]]
1563
+ name = "syn"
1564
+ version = "2.0.117"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1567
+ dependencies = [
1568
+ "proc-macro2",
1569
+ "quote",
1570
+ "unicode-ident",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "sync_wrapper"
1575
+ version = "1.0.2"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1578
+ dependencies = [
1579
+ "futures-core",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "synstructure"
1584
+ version = "0.13.2"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1587
+ dependencies = [
1588
+ "proc-macro2",
1589
+ "quote",
1590
+ "syn",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "tempfile"
1595
+ version = "3.27.0"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1598
+ dependencies = [
1599
+ "fastrand",
1600
+ "getrandom 0.4.2",
1601
+ "once_cell",
1602
+ "rustix",
1603
+ "windows-sys 0.61.2",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "thiserror"
1608
+ version = "2.0.18"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1611
+ dependencies = [
1612
+ "thiserror-impl",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "thiserror-impl"
1617
+ version = "2.0.18"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1620
+ dependencies = [
1621
+ "proc-macro2",
1622
+ "quote",
1623
+ "syn",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "thread_local"
1628
+ version = "1.1.9"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1631
+ dependencies = [
1632
+ "cfg-if",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "tinystr"
1637
+ version = "0.8.2"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1640
+ dependencies = [
1641
+ "displaydoc",
1642
+ "zerovec",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "tinyvec"
1647
+ version = "1.10.0"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1650
+ dependencies = [
1651
+ "tinyvec_macros",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "tinyvec_macros"
1656
+ version = "0.1.1"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1659
+
1660
+ [[package]]
1661
+ name = "tokio"
1662
+ version = "1.50.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
1665
+ dependencies = [
1666
+ "bytes",
1667
+ "libc",
1668
+ "mio",
1669
+ "pin-project-lite",
1670
+ "signal-hook-registry",
1671
+ "socket2",
1672
+ "tokio-macros",
1673
+ "windows-sys 0.61.2",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "tokio-macros"
1678
+ version = "2.6.1"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
1681
+ dependencies = [
1682
+ "proc-macro2",
1683
+ "quote",
1684
+ "syn",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "tokio-rustls"
1689
+ version = "0.26.4"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1692
+ dependencies = [
1693
+ "rustls",
1694
+ "tokio",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "tokio-util"
1699
+ version = "0.7.18"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1702
+ dependencies = [
1703
+ "bytes",
1704
+ "futures-core",
1705
+ "futures-sink",
1706
+ "pin-project-lite",
1707
+ "tokio",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "toml"
1712
+ version = "0.8.23"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1715
+ dependencies = [
1716
+ "serde",
1717
+ "serde_spanned",
1718
+ "toml_datetime",
1719
+ "toml_edit",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "toml_datetime"
1724
+ version = "0.6.11"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1727
+ dependencies = [
1728
+ "serde",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "toml_edit"
1733
+ version = "0.22.27"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1736
+ dependencies = [
1737
+ "indexmap",
1738
+ "serde",
1739
+ "serde_spanned",
1740
+ "toml_datetime",
1741
+ "toml_write",
1742
+ "winnow",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "toml_write"
1747
+ version = "0.1.2"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1750
+
1751
+ [[package]]
1752
+ name = "tower"
1753
+ version = "0.5.3"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1756
+ dependencies = [
1757
+ "futures-core",
1758
+ "futures-util",
1759
+ "pin-project-lite",
1760
+ "sync_wrapper",
1761
+ "tokio",
1762
+ "tower-layer",
1763
+ "tower-service",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "tower-http"
1768
+ version = "0.6.8"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1771
+ dependencies = [
1772
+ "bitflags",
1773
+ "bytes",
1774
+ "futures-util",
1775
+ "http",
1776
+ "http-body",
1777
+ "iri-string",
1778
+ "pin-project-lite",
1779
+ "tower",
1780
+ "tower-layer",
1781
+ "tower-service",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "tower-layer"
1786
+ version = "0.3.3"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1789
+
1790
+ [[package]]
1791
+ name = "tower-service"
1792
+ version = "0.3.3"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1795
+
1796
+ [[package]]
1797
+ name = "tracing"
1798
+ version = "0.1.44"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1801
+ dependencies = [
1802
+ "pin-project-lite",
1803
+ "tracing-attributes",
1804
+ "tracing-core",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "tracing-attributes"
1809
+ version = "0.1.31"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1812
+ dependencies = [
1813
+ "proc-macro2",
1814
+ "quote",
1815
+ "syn",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "tracing-core"
1820
+ version = "0.1.36"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1823
+ dependencies = [
1824
+ "once_cell",
1825
+ "valuable",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "tracing-log"
1830
+ version = "0.2.0"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1833
+ dependencies = [
1834
+ "log",
1835
+ "once_cell",
1836
+ "tracing-core",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "tracing-subscriber"
1841
+ version = "0.3.23"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1844
+ dependencies = [
1845
+ "matchers",
1846
+ "nu-ansi-term",
1847
+ "once_cell",
1848
+ "regex-automata",
1849
+ "sharded-slab",
1850
+ "smallvec",
1851
+ "thread_local",
1852
+ "tracing",
1853
+ "tracing-core",
1854
+ "tracing-log",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "try-lock"
1859
+ version = "0.2.5"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1862
+
1863
+ [[package]]
1864
+ name = "typenum"
1865
+ version = "1.19.0"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1868
+
1869
+ [[package]]
1870
+ name = "unicode-ident"
1871
+ version = "1.0.24"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1874
+
1875
+ [[package]]
1876
+ name = "unicode-xid"
1877
+ version = "0.2.6"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1880
+
1881
+ [[package]]
1882
+ name = "universal-hash"
1883
+ version = "0.5.1"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
1886
+ dependencies = [
1887
+ "crypto-common",
1888
+ "subtle",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "untrusted"
1893
+ version = "0.9.0"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1896
+
1897
+ [[package]]
1898
+ name = "url"
1899
+ version = "2.5.8"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1902
+ dependencies = [
1903
+ "form_urlencoded",
1904
+ "idna",
1905
+ "percent-encoding",
1906
+ "serde",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "utf8_iter"
1911
+ version = "1.0.4"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1914
+
1915
+ [[package]]
1916
+ name = "uuid"
1917
+ version = "1.22.0"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
1920
+ dependencies = [
1921
+ "getrandom 0.4.2",
1922
+ "js-sys",
1923
+ "serde_core",
1924
+ "wasm-bindgen",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "valuable"
1929
+ version = "0.1.1"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1932
+
1933
+ [[package]]
1934
+ name = "vcpkg"
1935
+ version = "0.2.15"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1938
+
1939
+ [[package]]
1940
+ name = "version_check"
1941
+ version = "0.9.5"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1944
+
1945
+ [[package]]
1946
+ name = "want"
1947
+ version = "0.3.1"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1950
+ dependencies = [
1951
+ "try-lock",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "wasi"
1956
+ version = "0.11.1+wasi-snapshot-preview1"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1959
+
1960
+ [[package]]
1961
+ name = "wasip2"
1962
+ version = "1.0.2+wasi-0.2.9"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1965
+ dependencies = [
1966
+ "wit-bindgen",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "wasip3"
1971
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1974
+ dependencies = [
1975
+ "wit-bindgen",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "wasm-bindgen"
1980
+ version = "0.2.114"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1983
+ dependencies = [
1984
+ "cfg-if",
1985
+ "once_cell",
1986
+ "rustversion",
1987
+ "wasm-bindgen-macro",
1988
+ "wasm-bindgen-shared",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "wasm-bindgen-futures"
1993
+ version = "0.4.64"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
1996
+ dependencies = [
1997
+ "cfg-if",
1998
+ "futures-util",
1999
+ "js-sys",
2000
+ "once_cell",
2001
+ "wasm-bindgen",
2002
+ "web-sys",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "wasm-bindgen-macro"
2007
+ version = "0.2.114"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
2010
+ dependencies = [
2011
+ "quote",
2012
+ "wasm-bindgen-macro-support",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "wasm-bindgen-macro-support"
2017
+ version = "0.2.114"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
2020
+ dependencies = [
2021
+ "bumpalo",
2022
+ "proc-macro2",
2023
+ "quote",
2024
+ "syn",
2025
+ "wasm-bindgen-shared",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "wasm-bindgen-shared"
2030
+ version = "0.2.114"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
2033
+ dependencies = [
2034
+ "unicode-ident",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "wasm-encoder"
2039
+ version = "0.244.0"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2042
+ dependencies = [
2043
+ "leb128fmt",
2044
+ "wasmparser",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "wasm-metadata"
2049
+ version = "0.244.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2052
+ dependencies = [
2053
+ "anyhow",
2054
+ "indexmap",
2055
+ "wasm-encoder",
2056
+ "wasmparser",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "wasm-streams"
2061
+ version = "0.4.2"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2064
+ dependencies = [
2065
+ "futures-util",
2066
+ "js-sys",
2067
+ "wasm-bindgen",
2068
+ "wasm-bindgen-futures",
2069
+ "web-sys",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "wasmparser"
2074
+ version = "0.244.0"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2077
+ dependencies = [
2078
+ "bitflags",
2079
+ "hashbrown 0.15.5",
2080
+ "indexmap",
2081
+ "semver",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "web-sys"
2086
+ version = "0.3.91"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
2089
+ dependencies = [
2090
+ "js-sys",
2091
+ "wasm-bindgen",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "web-time"
2096
+ version = "1.1.0"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2099
+ dependencies = [
2100
+ "js-sys",
2101
+ "wasm-bindgen",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "webpki-roots"
2106
+ version = "1.0.6"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
2109
+ dependencies = [
2110
+ "rustls-pki-types",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "windows"
2115
+ version = "0.58.0"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
2118
+ dependencies = [
2119
+ "windows-core 0.58.0",
2120
+ "windows-targets 0.52.6",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "windows-core"
2125
+ version = "0.58.0"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
2128
+ dependencies = [
2129
+ "windows-implement 0.58.0",
2130
+ "windows-interface 0.58.0",
2131
+ "windows-result 0.2.0",
2132
+ "windows-strings 0.1.0",
2133
+ "windows-targets 0.52.6",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "windows-core"
2138
+ version = "0.62.2"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2141
+ dependencies = [
2142
+ "windows-implement 0.60.2",
2143
+ "windows-interface 0.59.3",
2144
+ "windows-link",
2145
+ "windows-result 0.4.1",
2146
+ "windows-strings 0.5.1",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "windows-implement"
2151
+ version = "0.58.0"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
2154
+ dependencies = [
2155
+ "proc-macro2",
2156
+ "quote",
2157
+ "syn",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "windows-implement"
2162
+ version = "0.60.2"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2165
+ dependencies = [
2166
+ "proc-macro2",
2167
+ "quote",
2168
+ "syn",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "windows-interface"
2173
+ version = "0.58.0"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
2176
+ dependencies = [
2177
+ "proc-macro2",
2178
+ "quote",
2179
+ "syn",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "windows-interface"
2184
+ version = "0.59.3"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2187
+ dependencies = [
2188
+ "proc-macro2",
2189
+ "quote",
2190
+ "syn",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "windows-link"
2195
+ version = "0.2.1"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2198
+
2199
+ [[package]]
2200
+ name = "windows-result"
2201
+ version = "0.2.0"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
2204
+ dependencies = [
2205
+ "windows-targets 0.52.6",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "windows-result"
2210
+ version = "0.4.1"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2213
+ dependencies = [
2214
+ "windows-link",
2215
+ ]
2216
+
2217
+ [[package]]
2218
+ name = "windows-strings"
2219
+ version = "0.1.0"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
2222
+ dependencies = [
2223
+ "windows-result 0.2.0",
2224
+ "windows-targets 0.52.6",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "windows-strings"
2229
+ version = "0.5.1"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2232
+ dependencies = [
2233
+ "windows-link",
2234
+ ]
2235
+
2236
+ [[package]]
2237
+ name = "windows-sys"
2238
+ version = "0.52.0"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2241
+ dependencies = [
2242
+ "windows-targets 0.52.6",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "windows-sys"
2247
+ version = "0.60.2"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2250
+ dependencies = [
2251
+ "windows-targets 0.53.5",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "windows-sys"
2256
+ version = "0.61.2"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2259
+ dependencies = [
2260
+ "windows-link",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "windows-targets"
2265
+ version = "0.52.6"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2268
+ dependencies = [
2269
+ "windows_aarch64_gnullvm 0.52.6",
2270
+ "windows_aarch64_msvc 0.52.6",
2271
+ "windows_i686_gnu 0.52.6",
2272
+ "windows_i686_gnullvm 0.52.6",
2273
+ "windows_i686_msvc 0.52.6",
2274
+ "windows_x86_64_gnu 0.52.6",
2275
+ "windows_x86_64_gnullvm 0.52.6",
2276
+ "windows_x86_64_msvc 0.52.6",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "windows-targets"
2281
+ version = "0.53.5"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2284
+ dependencies = [
2285
+ "windows-link",
2286
+ "windows_aarch64_gnullvm 0.53.1",
2287
+ "windows_aarch64_msvc 0.53.1",
2288
+ "windows_i686_gnu 0.53.1",
2289
+ "windows_i686_gnullvm 0.53.1",
2290
+ "windows_i686_msvc 0.53.1",
2291
+ "windows_x86_64_gnu 0.53.1",
2292
+ "windows_x86_64_gnullvm 0.53.1",
2293
+ "windows_x86_64_msvc 0.53.1",
2294
+ ]
2295
+
2296
+ [[package]]
2297
+ name = "windows_aarch64_gnullvm"
2298
+ version = "0.52.6"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2301
+
2302
+ [[package]]
2303
+ name = "windows_aarch64_gnullvm"
2304
+ version = "0.53.1"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2307
+
2308
+ [[package]]
2309
+ name = "windows_aarch64_msvc"
2310
+ version = "0.52.6"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2313
+
2314
+ [[package]]
2315
+ name = "windows_aarch64_msvc"
2316
+ version = "0.53.1"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2319
+
2320
+ [[package]]
2321
+ name = "windows_i686_gnu"
2322
+ version = "0.52.6"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2325
+
2326
+ [[package]]
2327
+ name = "windows_i686_gnu"
2328
+ version = "0.53.1"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2331
+
2332
+ [[package]]
2333
+ name = "windows_i686_gnullvm"
2334
+ version = "0.52.6"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2337
+
2338
+ [[package]]
2339
+ name = "windows_i686_gnullvm"
2340
+ version = "0.53.1"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2343
+
2344
+ [[package]]
2345
+ name = "windows_i686_msvc"
2346
+ version = "0.52.6"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2349
+
2350
+ [[package]]
2351
+ name = "windows_i686_msvc"
2352
+ version = "0.53.1"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2355
+
2356
+ [[package]]
2357
+ name = "windows_x86_64_gnu"
2358
+ version = "0.52.6"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2361
+
2362
+ [[package]]
2363
+ name = "windows_x86_64_gnu"
2364
+ version = "0.53.1"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2367
+
2368
+ [[package]]
2369
+ name = "windows_x86_64_gnullvm"
2370
+ version = "0.52.6"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2373
+
2374
+ [[package]]
2375
+ name = "windows_x86_64_gnullvm"
2376
+ version = "0.53.1"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2379
+
2380
+ [[package]]
2381
+ name = "windows_x86_64_msvc"
2382
+ version = "0.52.6"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2385
+
2386
+ [[package]]
2387
+ name = "windows_x86_64_msvc"
2388
+ version = "0.53.1"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2391
+
2392
+ [[package]]
2393
+ name = "winnow"
2394
+ version = "0.7.15"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2397
+ dependencies = [
2398
+ "memchr",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "wit-bindgen"
2403
+ version = "0.51.0"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2406
+ dependencies = [
2407
+ "wit-bindgen-rust-macro",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "wit-bindgen-core"
2412
+ version = "0.51.0"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2415
+ dependencies = [
2416
+ "anyhow",
2417
+ "heck",
2418
+ "wit-parser",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "wit-bindgen-rust"
2423
+ version = "0.51.0"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2426
+ dependencies = [
2427
+ "anyhow",
2428
+ "heck",
2429
+ "indexmap",
2430
+ "prettyplease",
2431
+ "syn",
2432
+ "wasm-metadata",
2433
+ "wit-bindgen-core",
2434
+ "wit-component",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "wit-bindgen-rust-macro"
2439
+ version = "0.51.0"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2442
+ dependencies = [
2443
+ "anyhow",
2444
+ "prettyplease",
2445
+ "proc-macro2",
2446
+ "quote",
2447
+ "syn",
2448
+ "wit-bindgen-core",
2449
+ "wit-bindgen-rust",
2450
+ ]
2451
+
2452
+ [[package]]
2453
+ name = "wit-component"
2454
+ version = "0.244.0"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2457
+ dependencies = [
2458
+ "anyhow",
2459
+ "bitflags",
2460
+ "indexmap",
2461
+ "log",
2462
+ "serde",
2463
+ "serde_derive",
2464
+ "serde_json",
2465
+ "wasm-encoder",
2466
+ "wasm-metadata",
2467
+ "wasmparser",
2468
+ "wit-parser",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "wit-parser"
2473
+ version = "0.244.0"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2476
+ dependencies = [
2477
+ "anyhow",
2478
+ "id-arena",
2479
+ "indexmap",
2480
+ "log",
2481
+ "semver",
2482
+ "serde",
2483
+ "serde_derive",
2484
+ "serde_json",
2485
+ "unicode-xid",
2486
+ "wasmparser",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "writeable"
2491
+ version = "0.6.2"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2494
+
2495
+ [[package]]
2496
+ name = "yoke"
2497
+ version = "0.8.1"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2500
+ dependencies = [
2501
+ "stable_deref_trait",
2502
+ "yoke-derive",
2503
+ "zerofrom",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "yoke-derive"
2508
+ version = "0.8.1"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2511
+ dependencies = [
2512
+ "proc-macro2",
2513
+ "quote",
2514
+ "syn",
2515
+ "synstructure",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "zerocopy"
2520
+ version = "0.8.42"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
2523
+ dependencies = [
2524
+ "zerocopy-derive",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "zerocopy-derive"
2529
+ version = "0.8.42"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
2532
+ dependencies = [
2533
+ "proc-macro2",
2534
+ "quote",
2535
+ "syn",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "zerofrom"
2540
+ version = "0.1.6"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2543
+ dependencies = [
2544
+ "zerofrom-derive",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "zerofrom-derive"
2549
+ version = "0.1.6"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2552
+ dependencies = [
2553
+ "proc-macro2",
2554
+ "quote",
2555
+ "syn",
2556
+ "synstructure",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "zeroize"
2561
+ version = "1.8.2"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2564
+
2565
+ [[package]]
2566
+ name = "zerotrie"
2567
+ version = "0.2.3"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2570
+ dependencies = [
2571
+ "displaydoc",
2572
+ "yoke",
2573
+ "zerofrom",
2574
+ ]
2575
+
2576
+ [[package]]
2577
+ name = "zerovec"
2578
+ version = "0.11.5"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2581
+ dependencies = [
2582
+ "yoke",
2583
+ "zerofrom",
2584
+ "zerovec-derive",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "zerovec-derive"
2589
+ version = "0.11.2"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2592
+ dependencies = [
2593
+ "proc-macro2",
2594
+ "quote",
2595
+ "syn",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "zmij"
2600
+ version = "1.0.21"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"