agentpal 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,2155 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "agentpal-host"
7
+ version = "0.1.0"
8
+ dependencies = [
9
+ "agentpal-protocol",
10
+ "anyhow",
11
+ "clap",
12
+ "futures-util",
13
+ "local-ip-address",
14
+ "qrcode",
15
+ "serde",
16
+ "serde_json",
17
+ "time",
18
+ "tokio",
19
+ "tokio-tungstenite",
20
+ "url",
21
+ "uuid",
22
+ ]
23
+
24
+ [[package]]
25
+ name = "agentpal-protocol"
26
+ version = "0.1.0"
27
+ dependencies = [
28
+ "serde",
29
+ "serde_json",
30
+ "time",
31
+ "uuid",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "agentpal-relay"
36
+ version = "0.1.0"
37
+ dependencies = [
38
+ "agentpal-protocol",
39
+ "anyhow",
40
+ "async-trait",
41
+ "axum",
42
+ "clap",
43
+ "futures-util",
44
+ "redis",
45
+ "serde",
46
+ "serde_json",
47
+ "sha2",
48
+ "time",
49
+ "tokio",
50
+ "tracing",
51
+ "tracing-subscriber",
52
+ "uuid",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "aho-corasick"
57
+ version = "1.1.4"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
60
+ dependencies = [
61
+ "memchr",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstream"
66
+ version = "1.0.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
69
+ dependencies = [
70
+ "anstyle",
71
+ "anstyle-parse",
72
+ "anstyle-query",
73
+ "anstyle-wincon",
74
+ "colorchoice",
75
+ "is_terminal_polyfill",
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle"
81
+ version = "1.0.14"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
84
+
85
+ [[package]]
86
+ name = "anstyle-parse"
87
+ version = "1.0.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
90
+ dependencies = [
91
+ "utf8parse",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anstyle-query"
96
+ version = "1.1.5"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
99
+ dependencies = [
100
+ "windows-sys",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstyle-wincon"
105
+ version = "3.0.11"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
108
+ dependencies = [
109
+ "anstyle",
110
+ "once_cell_polyfill",
111
+ "windows-sys",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "anyhow"
116
+ version = "1.0.102"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
119
+
120
+ [[package]]
121
+ name = "arc-swap"
122
+ version = "1.9.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
125
+ dependencies = [
126
+ "rustversion",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "arcstr"
131
+ version = "1.2.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d"
134
+
135
+ [[package]]
136
+ name = "async-lock"
137
+ version = "3.4.2"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
140
+ dependencies = [
141
+ "event-listener",
142
+ "event-listener-strategy",
143
+ "pin-project-lite",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "async-trait"
148
+ version = "0.1.89"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
151
+ dependencies = [
152
+ "proc-macro2",
153
+ "quote",
154
+ "syn",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "atomic-waker"
159
+ version = "1.1.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
162
+
163
+ [[package]]
164
+ name = "autocfg"
165
+ version = "1.5.1"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
168
+
169
+ [[package]]
170
+ name = "axum"
171
+ version = "0.8.9"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
174
+ dependencies = [
175
+ "axum-core",
176
+ "base64",
177
+ "bytes",
178
+ "form_urlencoded",
179
+ "futures-util",
180
+ "http",
181
+ "http-body",
182
+ "http-body-util",
183
+ "hyper",
184
+ "hyper-util",
185
+ "itoa",
186
+ "matchit",
187
+ "memchr",
188
+ "mime",
189
+ "percent-encoding",
190
+ "pin-project-lite",
191
+ "serde_core",
192
+ "serde_json",
193
+ "serde_path_to_error",
194
+ "serde_urlencoded",
195
+ "sha1",
196
+ "sync_wrapper",
197
+ "tokio",
198
+ "tokio-tungstenite",
199
+ "tower",
200
+ "tower-layer",
201
+ "tower-service",
202
+ "tracing",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "axum-core"
207
+ version = "0.5.6"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
210
+ dependencies = [
211
+ "bytes",
212
+ "futures-core",
213
+ "http",
214
+ "http-body",
215
+ "http-body-util",
216
+ "mime",
217
+ "pin-project-lite",
218
+ "sync_wrapper",
219
+ "tower-layer",
220
+ "tower-service",
221
+ "tracing",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "backon"
226
+ version = "1.6.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
229
+ dependencies = [
230
+ "fastrand",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "base64"
235
+ version = "0.22.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
238
+
239
+ [[package]]
240
+ name = "bitflags"
241
+ version = "2.11.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
244
+
245
+ [[package]]
246
+ name = "block-buffer"
247
+ version = "0.10.4"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
250
+ dependencies = [
251
+ "generic-array",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "block-buffer"
256
+ version = "0.12.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
259
+ dependencies = [
260
+ "hybrid-array",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "bumpalo"
265
+ version = "3.20.3"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
268
+
269
+ [[package]]
270
+ name = "byteorder"
271
+ version = "1.5.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
274
+
275
+ [[package]]
276
+ name = "bytes"
277
+ version = "1.11.1"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
280
+
281
+ [[package]]
282
+ name = "cfg-if"
283
+ version = "1.0.4"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
286
+
287
+ [[package]]
288
+ name = "clap"
289
+ version = "4.6.1"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
292
+ dependencies = [
293
+ "clap_builder",
294
+ "clap_derive",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "clap_builder"
299
+ version = "4.6.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
302
+ dependencies = [
303
+ "anstream",
304
+ "anstyle",
305
+ "clap_lex",
306
+ "strsim",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "clap_derive"
311
+ version = "4.6.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
314
+ dependencies = [
315
+ "heck",
316
+ "proc-macro2",
317
+ "quote",
318
+ "syn",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "clap_lex"
323
+ version = "1.1.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
326
+
327
+ [[package]]
328
+ name = "colorchoice"
329
+ version = "1.0.5"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
332
+
333
+ [[package]]
334
+ name = "combine"
335
+ version = "4.6.7"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
338
+ dependencies = [
339
+ "bytes",
340
+ "futures-core",
341
+ "memchr",
342
+ "pin-project-lite",
343
+ "tokio",
344
+ "tokio-util",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "concurrent-queue"
349
+ version = "2.5.0"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
352
+ dependencies = [
353
+ "crossbeam-utils",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "const-oid"
358
+ version = "0.10.2"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
361
+
362
+ [[package]]
363
+ name = "cpufeatures"
364
+ version = "0.2.17"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
367
+ dependencies = [
368
+ "libc",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "cpufeatures"
373
+ version = "0.3.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
376
+ dependencies = [
377
+ "libc",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "crossbeam-utils"
382
+ version = "0.8.21"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
385
+
386
+ [[package]]
387
+ name = "crypto-common"
388
+ version = "0.1.7"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
391
+ dependencies = [
392
+ "generic-array",
393
+ "typenum",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "crypto-common"
398
+ version = "0.2.2"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
401
+ dependencies = [
402
+ "hybrid-array",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "darling"
407
+ version = "0.20.11"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
410
+ dependencies = [
411
+ "darling_core",
412
+ "darling_macro",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "darling_core"
417
+ version = "0.20.11"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
420
+ dependencies = [
421
+ "fnv",
422
+ "ident_case",
423
+ "proc-macro2",
424
+ "quote",
425
+ "strsim",
426
+ "syn",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "darling_macro"
431
+ version = "0.20.11"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
434
+ dependencies = [
435
+ "darling_core",
436
+ "quote",
437
+ "syn",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "data-encoding"
442
+ version = "2.11.0"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
445
+
446
+ [[package]]
447
+ name = "deranged"
448
+ version = "0.5.8"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
451
+ dependencies = [
452
+ "powerfmt",
453
+ "serde_core",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "derive_builder"
458
+ version = "0.20.2"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
461
+ dependencies = [
462
+ "derive_builder_macro",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "derive_builder_core"
467
+ version = "0.20.2"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
470
+ dependencies = [
471
+ "darling",
472
+ "proc-macro2",
473
+ "quote",
474
+ "syn",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "derive_builder_macro"
479
+ version = "0.20.2"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
482
+ dependencies = [
483
+ "derive_builder_core",
484
+ "syn",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "digest"
489
+ version = "0.10.7"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
492
+ dependencies = [
493
+ "block-buffer 0.10.4",
494
+ "crypto-common 0.1.7",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "digest"
499
+ version = "0.11.3"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
502
+ dependencies = [
503
+ "block-buffer 0.12.0",
504
+ "const-oid",
505
+ "crypto-common 0.2.2",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "displaydoc"
510
+ version = "0.2.6"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
513
+ dependencies = [
514
+ "proc-macro2",
515
+ "quote",
516
+ "syn",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "either"
521
+ version = "1.16.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
524
+
525
+ [[package]]
526
+ name = "equivalent"
527
+ version = "1.0.2"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
530
+
531
+ [[package]]
532
+ name = "errno"
533
+ version = "0.3.14"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
536
+ dependencies = [
537
+ "libc",
538
+ "windows-sys",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "event-listener"
543
+ version = "5.4.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
546
+ dependencies = [
547
+ "concurrent-queue",
548
+ "parking",
549
+ "pin-project-lite",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "event-listener-strategy"
554
+ version = "0.5.4"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
557
+ dependencies = [
558
+ "event-listener",
559
+ "pin-project-lite",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "fastrand"
564
+ version = "2.4.1"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
567
+
568
+ [[package]]
569
+ name = "fnv"
570
+ version = "1.0.7"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
573
+
574
+ [[package]]
575
+ name = "foldhash"
576
+ version = "0.1.5"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
579
+
580
+ [[package]]
581
+ name = "form_urlencoded"
582
+ version = "1.2.2"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
585
+ dependencies = [
586
+ "percent-encoding",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "futures-channel"
591
+ version = "0.3.32"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
594
+ dependencies = [
595
+ "futures-core",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "futures-core"
600
+ version = "0.3.32"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
603
+
604
+ [[package]]
605
+ name = "futures-macro"
606
+ version = "0.3.32"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
609
+ dependencies = [
610
+ "proc-macro2",
611
+ "quote",
612
+ "syn",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "futures-sink"
617
+ version = "0.3.32"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
620
+
621
+ [[package]]
622
+ name = "futures-task"
623
+ version = "0.3.32"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
626
+
627
+ [[package]]
628
+ name = "futures-util"
629
+ version = "0.3.32"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
632
+ dependencies = [
633
+ "futures-core",
634
+ "futures-macro",
635
+ "futures-sink",
636
+ "futures-task",
637
+ "pin-project-lite",
638
+ "slab",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "generic-array"
643
+ version = "0.14.7"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
646
+ dependencies = [
647
+ "typenum",
648
+ "version_check",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "getrandom"
653
+ version = "0.3.4"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
656
+ dependencies = [
657
+ "cfg-if",
658
+ "libc",
659
+ "r-efi 5.3.0",
660
+ "wasip2",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "getrandom"
665
+ version = "0.4.2"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
668
+ dependencies = [
669
+ "cfg-if",
670
+ "libc",
671
+ "r-efi 6.0.0",
672
+ "wasip2",
673
+ "wasip3",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "getset"
678
+ version = "0.1.6"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
681
+ dependencies = [
682
+ "proc-macro-error2",
683
+ "proc-macro2",
684
+ "quote",
685
+ "syn",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "hashbrown"
690
+ version = "0.15.5"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
693
+ dependencies = [
694
+ "foldhash",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "hashbrown"
699
+ version = "0.17.1"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
702
+
703
+ [[package]]
704
+ name = "heck"
705
+ version = "0.5.0"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
708
+
709
+ [[package]]
710
+ name = "http"
711
+ version = "1.4.1"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
714
+ dependencies = [
715
+ "bytes",
716
+ "itoa",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "http-body"
721
+ version = "1.0.1"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
724
+ dependencies = [
725
+ "bytes",
726
+ "http",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "http-body-util"
731
+ version = "0.1.3"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
734
+ dependencies = [
735
+ "bytes",
736
+ "futures-core",
737
+ "http",
738
+ "http-body",
739
+ "pin-project-lite",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "httparse"
744
+ version = "1.10.1"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
747
+
748
+ [[package]]
749
+ name = "httpdate"
750
+ version = "1.0.3"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
753
+
754
+ [[package]]
755
+ name = "hybrid-array"
756
+ version = "0.4.12"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
759
+ dependencies = [
760
+ "typenum",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "hyper"
765
+ version = "1.10.1"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
768
+ dependencies = [
769
+ "atomic-waker",
770
+ "bytes",
771
+ "futures-channel",
772
+ "futures-core",
773
+ "http",
774
+ "http-body",
775
+ "httparse",
776
+ "httpdate",
777
+ "itoa",
778
+ "pin-project-lite",
779
+ "smallvec",
780
+ "tokio",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "hyper-util"
785
+ version = "0.1.20"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
788
+ dependencies = [
789
+ "bytes",
790
+ "http",
791
+ "http-body",
792
+ "hyper",
793
+ "pin-project-lite",
794
+ "tokio",
795
+ "tower-service",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "icu_collections"
800
+ version = "2.2.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
803
+ dependencies = [
804
+ "displaydoc",
805
+ "potential_utf",
806
+ "utf8_iter",
807
+ "yoke",
808
+ "zerofrom",
809
+ "zerovec",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "icu_locale_core"
814
+ version = "2.2.0"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
817
+ dependencies = [
818
+ "displaydoc",
819
+ "litemap",
820
+ "tinystr",
821
+ "writeable",
822
+ "zerovec",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "icu_normalizer"
827
+ version = "2.2.0"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
830
+ dependencies = [
831
+ "icu_collections",
832
+ "icu_normalizer_data",
833
+ "icu_properties",
834
+ "icu_provider",
835
+ "smallvec",
836
+ "zerovec",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "icu_normalizer_data"
841
+ version = "2.2.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
844
+
845
+ [[package]]
846
+ name = "icu_properties"
847
+ version = "2.2.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
850
+ dependencies = [
851
+ "icu_collections",
852
+ "icu_locale_core",
853
+ "icu_properties_data",
854
+ "icu_provider",
855
+ "zerotrie",
856
+ "zerovec",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "icu_properties_data"
861
+ version = "2.2.0"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
864
+
865
+ [[package]]
866
+ name = "icu_provider"
867
+ version = "2.2.0"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
870
+ dependencies = [
871
+ "displaydoc",
872
+ "icu_locale_core",
873
+ "writeable",
874
+ "yoke",
875
+ "zerofrom",
876
+ "zerotrie",
877
+ "zerovec",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "id-arena"
882
+ version = "2.3.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
885
+
886
+ [[package]]
887
+ name = "ident_case"
888
+ version = "1.0.1"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
891
+
892
+ [[package]]
893
+ name = "idna"
894
+ version = "1.1.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
897
+ dependencies = [
898
+ "idna_adapter",
899
+ "smallvec",
900
+ "utf8_iter",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "idna_adapter"
905
+ version = "1.2.2"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
908
+ dependencies = [
909
+ "icu_normalizer",
910
+ "icu_properties",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "indexmap"
915
+ version = "2.14.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
918
+ dependencies = [
919
+ "equivalent",
920
+ "hashbrown 0.17.1",
921
+ "serde",
922
+ "serde_core",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "is_terminal_polyfill"
927
+ version = "1.70.2"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
930
+
931
+ [[package]]
932
+ name = "itoa"
933
+ version = "1.0.18"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
936
+
937
+ [[package]]
938
+ name = "js-sys"
939
+ version = "0.3.99"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
942
+ dependencies = [
943
+ "cfg-if",
944
+ "futures-util",
945
+ "once_cell",
946
+ "wasm-bindgen",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "lazy_static"
951
+ version = "1.5.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
954
+
955
+ [[package]]
956
+ name = "leb128fmt"
957
+ version = "0.1.0"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
960
+
961
+ [[package]]
962
+ name = "libc"
963
+ version = "0.2.186"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
966
+
967
+ [[package]]
968
+ name = "litemap"
969
+ version = "0.8.2"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
972
+
973
+ [[package]]
974
+ name = "local-ip-address"
975
+ version = "0.6.13"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "aa08fb2b1ec3ea84575e94b489d06d4ce0cbf052d12acd515838f50e3c3d63e3"
978
+ dependencies = [
979
+ "libc",
980
+ "neli",
981
+ "windows-sys",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "lock_api"
986
+ version = "0.4.14"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
989
+ dependencies = [
990
+ "scopeguard",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "log"
995
+ version = "0.4.30"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
998
+
999
+ [[package]]
1000
+ name = "matchers"
1001
+ version = "0.2.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1004
+ dependencies = [
1005
+ "regex-automata",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "matchit"
1010
+ version = "0.8.4"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1013
+
1014
+ [[package]]
1015
+ name = "memchr"
1016
+ version = "2.8.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1019
+
1020
+ [[package]]
1021
+ name = "mime"
1022
+ version = "0.3.17"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1025
+
1026
+ [[package]]
1027
+ name = "mio"
1028
+ version = "1.2.1"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1031
+ dependencies = [
1032
+ "libc",
1033
+ "wasi",
1034
+ "windows-sys",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "neli"
1039
+ version = "0.7.4"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "22f9786d56d972959e1408b6a93be6af13b9c1392036c5c1fafa08a1b0c6ee87"
1042
+ dependencies = [
1043
+ "bitflags",
1044
+ "byteorder",
1045
+ "derive_builder",
1046
+ "getset",
1047
+ "libc",
1048
+ "log",
1049
+ "neli-proc-macros",
1050
+ "parking_lot",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "neli-proc-macros"
1055
+ version = "0.2.2"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "05d8d08c6e98f20a62417478ebf7be8e1425ec9acecc6f63e22da633f6b71609"
1058
+ dependencies = [
1059
+ "either",
1060
+ "proc-macro2",
1061
+ "quote",
1062
+ "serde",
1063
+ "syn",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "nu-ansi-term"
1068
+ version = "0.50.3"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1071
+ dependencies = [
1072
+ "windows-sys",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "num-bigint"
1077
+ version = "0.4.6"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1080
+ dependencies = [
1081
+ "num-integer",
1082
+ "num-traits",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "num-conv"
1087
+ version = "0.2.2"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1090
+
1091
+ [[package]]
1092
+ name = "num-integer"
1093
+ version = "0.1.46"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1096
+ dependencies = [
1097
+ "num-traits",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "num-traits"
1102
+ version = "0.2.19"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1105
+ dependencies = [
1106
+ "autocfg",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "once_cell"
1111
+ version = "1.21.4"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1114
+
1115
+ [[package]]
1116
+ name = "once_cell_polyfill"
1117
+ version = "1.70.2"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1120
+
1121
+ [[package]]
1122
+ name = "parking"
1123
+ version = "2.2.1"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1126
+
1127
+ [[package]]
1128
+ name = "parking_lot"
1129
+ version = "0.12.5"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1132
+ dependencies = [
1133
+ "lock_api",
1134
+ "parking_lot_core",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "parking_lot_core"
1139
+ version = "0.9.12"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1142
+ dependencies = [
1143
+ "cfg-if",
1144
+ "libc",
1145
+ "redox_syscall",
1146
+ "smallvec",
1147
+ "windows-link",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "percent-encoding"
1152
+ version = "2.3.2"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1155
+
1156
+ [[package]]
1157
+ name = "pin-project-lite"
1158
+ version = "0.2.17"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1161
+
1162
+ [[package]]
1163
+ name = "potential_utf"
1164
+ version = "0.1.5"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1167
+ dependencies = [
1168
+ "zerovec",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "powerfmt"
1173
+ version = "0.2.0"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1176
+
1177
+ [[package]]
1178
+ name = "ppv-lite86"
1179
+ version = "0.2.21"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1182
+ dependencies = [
1183
+ "zerocopy",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "prettyplease"
1188
+ version = "0.2.37"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1191
+ dependencies = [
1192
+ "proc-macro2",
1193
+ "syn",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "proc-macro-error-attr2"
1198
+ version = "2.0.0"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1201
+ dependencies = [
1202
+ "proc-macro2",
1203
+ "quote",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "proc-macro-error2"
1208
+ version = "2.0.1"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1211
+ dependencies = [
1212
+ "proc-macro-error-attr2",
1213
+ "proc-macro2",
1214
+ "quote",
1215
+ "syn",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "proc-macro2"
1220
+ version = "1.0.106"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1223
+ dependencies = [
1224
+ "unicode-ident",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "qrcode"
1229
+ version = "0.14.1"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "d68782463e408eb1e668cf6152704bd856c78c5b6417adaee3203d8f4c1fc9ec"
1232
+
1233
+ [[package]]
1234
+ name = "quote"
1235
+ version = "1.0.45"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1238
+ dependencies = [
1239
+ "proc-macro2",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "r-efi"
1244
+ version = "5.3.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1247
+
1248
+ [[package]]
1249
+ name = "r-efi"
1250
+ version = "6.0.0"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1253
+
1254
+ [[package]]
1255
+ name = "rand"
1256
+ version = "0.9.4"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1259
+ dependencies = [
1260
+ "rand_chacha",
1261
+ "rand_core",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "rand_chacha"
1266
+ version = "0.9.0"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1269
+ dependencies = [
1270
+ "ppv-lite86",
1271
+ "rand_core",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "rand_core"
1276
+ version = "0.9.5"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1279
+ dependencies = [
1280
+ "getrandom 0.3.4",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "redis"
1285
+ version = "1.2.2"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "a12e6b5f4d8ef33944e833e2b1859ad478deab6e431d7337b30ee2efe21f7543"
1288
+ dependencies = [
1289
+ "arc-swap",
1290
+ "arcstr",
1291
+ "async-lock",
1292
+ "backon",
1293
+ "bytes",
1294
+ "cfg-if",
1295
+ "combine",
1296
+ "futures-channel",
1297
+ "futures-util",
1298
+ "itoa",
1299
+ "num-bigint",
1300
+ "percent-encoding",
1301
+ "pin-project-lite",
1302
+ "ryu",
1303
+ "sha1_smol",
1304
+ "socket2",
1305
+ "tokio",
1306
+ "tokio-util",
1307
+ "url",
1308
+ "xxhash-rust",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "redox_syscall"
1313
+ version = "0.5.18"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1316
+ dependencies = [
1317
+ "bitflags",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "regex-automata"
1322
+ version = "0.4.14"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1325
+ dependencies = [
1326
+ "aho-corasick",
1327
+ "memchr",
1328
+ "regex-syntax",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "regex-syntax"
1333
+ version = "0.8.10"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1336
+
1337
+ [[package]]
1338
+ name = "rustversion"
1339
+ version = "1.0.22"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1342
+
1343
+ [[package]]
1344
+ name = "ryu"
1345
+ version = "1.0.23"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1348
+
1349
+ [[package]]
1350
+ name = "scopeguard"
1351
+ version = "1.2.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1354
+
1355
+ [[package]]
1356
+ name = "semver"
1357
+ version = "1.0.28"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1360
+
1361
+ [[package]]
1362
+ name = "serde"
1363
+ version = "1.0.228"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1366
+ dependencies = [
1367
+ "serde_core",
1368
+ "serde_derive",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "serde_core"
1373
+ version = "1.0.228"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1376
+ dependencies = [
1377
+ "serde_derive",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "serde_derive"
1382
+ version = "1.0.228"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1385
+ dependencies = [
1386
+ "proc-macro2",
1387
+ "quote",
1388
+ "syn",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "serde_json"
1393
+ version = "1.0.150"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1396
+ dependencies = [
1397
+ "itoa",
1398
+ "memchr",
1399
+ "serde",
1400
+ "serde_core",
1401
+ "zmij",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "serde_path_to_error"
1406
+ version = "0.1.20"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1409
+ dependencies = [
1410
+ "itoa",
1411
+ "serde",
1412
+ "serde_core",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "serde_urlencoded"
1417
+ version = "0.7.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1420
+ dependencies = [
1421
+ "form_urlencoded",
1422
+ "itoa",
1423
+ "ryu",
1424
+ "serde",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "sha1"
1429
+ version = "0.10.6"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1432
+ dependencies = [
1433
+ "cfg-if",
1434
+ "cpufeatures 0.2.17",
1435
+ "digest 0.10.7",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "sha1_smol"
1440
+ version = "1.0.1"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
1443
+
1444
+ [[package]]
1445
+ name = "sha2"
1446
+ version = "0.11.0"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1449
+ dependencies = [
1450
+ "cfg-if",
1451
+ "cpufeatures 0.3.0",
1452
+ "digest 0.11.3",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "sharded-slab"
1457
+ version = "0.1.7"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1460
+ dependencies = [
1461
+ "lazy_static",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "signal-hook-registry"
1466
+ version = "1.4.8"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1469
+ dependencies = [
1470
+ "errno",
1471
+ "libc",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "slab"
1476
+ version = "0.4.12"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1479
+
1480
+ [[package]]
1481
+ name = "smallvec"
1482
+ version = "1.15.1"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1485
+
1486
+ [[package]]
1487
+ name = "socket2"
1488
+ version = "0.6.4"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1491
+ dependencies = [
1492
+ "libc",
1493
+ "windows-sys",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "stable_deref_trait"
1498
+ version = "1.2.1"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1501
+
1502
+ [[package]]
1503
+ name = "strsim"
1504
+ version = "0.11.1"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1507
+
1508
+ [[package]]
1509
+ name = "syn"
1510
+ version = "2.0.117"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1513
+ dependencies = [
1514
+ "proc-macro2",
1515
+ "quote",
1516
+ "unicode-ident",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "sync_wrapper"
1521
+ version = "1.0.2"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1524
+
1525
+ [[package]]
1526
+ name = "synstructure"
1527
+ version = "0.13.2"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1530
+ dependencies = [
1531
+ "proc-macro2",
1532
+ "quote",
1533
+ "syn",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "thiserror"
1538
+ version = "2.0.18"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1541
+ dependencies = [
1542
+ "thiserror-impl",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "thiserror-impl"
1547
+ version = "2.0.18"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1550
+ dependencies = [
1551
+ "proc-macro2",
1552
+ "quote",
1553
+ "syn",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "thread_local"
1558
+ version = "1.1.9"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1561
+ dependencies = [
1562
+ "cfg-if",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "time"
1567
+ version = "0.3.47"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1570
+ dependencies = [
1571
+ "deranged",
1572
+ "itoa",
1573
+ "num-conv",
1574
+ "powerfmt",
1575
+ "serde_core",
1576
+ "time-core",
1577
+ "time-macros",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "time-core"
1582
+ version = "0.1.8"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1585
+
1586
+ [[package]]
1587
+ name = "time-macros"
1588
+ version = "0.2.27"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
1591
+ dependencies = [
1592
+ "num-conv",
1593
+ "time-core",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "tinystr"
1598
+ version = "0.8.3"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1601
+ dependencies = [
1602
+ "displaydoc",
1603
+ "zerovec",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "tokio"
1608
+ version = "1.52.3"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1611
+ dependencies = [
1612
+ "bytes",
1613
+ "libc",
1614
+ "mio",
1615
+ "pin-project-lite",
1616
+ "signal-hook-registry",
1617
+ "socket2",
1618
+ "tokio-macros",
1619
+ "windows-sys",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "tokio-macros"
1624
+ version = "2.7.0"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1627
+ dependencies = [
1628
+ "proc-macro2",
1629
+ "quote",
1630
+ "syn",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "tokio-tungstenite"
1635
+ version = "0.29.0"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
1638
+ dependencies = [
1639
+ "futures-util",
1640
+ "log",
1641
+ "tokio",
1642
+ "tungstenite",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "tokio-util"
1647
+ version = "0.7.18"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1650
+ dependencies = [
1651
+ "bytes",
1652
+ "futures-core",
1653
+ "futures-sink",
1654
+ "pin-project-lite",
1655
+ "tokio",
1656
+ ]
1657
+
1658
+ [[package]]
1659
+ name = "tower"
1660
+ version = "0.5.3"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1663
+ dependencies = [
1664
+ "futures-core",
1665
+ "futures-util",
1666
+ "pin-project-lite",
1667
+ "sync_wrapper",
1668
+ "tokio",
1669
+ "tower-layer",
1670
+ "tower-service",
1671
+ "tracing",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "tower-layer"
1676
+ version = "0.3.3"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1679
+
1680
+ [[package]]
1681
+ name = "tower-service"
1682
+ version = "0.3.3"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1685
+
1686
+ [[package]]
1687
+ name = "tracing"
1688
+ version = "0.1.44"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1691
+ dependencies = [
1692
+ "log",
1693
+ "pin-project-lite",
1694
+ "tracing-attributes",
1695
+ "tracing-core",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "tracing-attributes"
1700
+ version = "0.1.31"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1703
+ dependencies = [
1704
+ "proc-macro2",
1705
+ "quote",
1706
+ "syn",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "tracing-core"
1711
+ version = "0.1.36"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1714
+ dependencies = [
1715
+ "once_cell",
1716
+ "valuable",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "tracing-log"
1721
+ version = "0.2.0"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1724
+ dependencies = [
1725
+ "log",
1726
+ "once_cell",
1727
+ "tracing-core",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "tracing-subscriber"
1732
+ version = "0.3.23"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1735
+ dependencies = [
1736
+ "matchers",
1737
+ "nu-ansi-term",
1738
+ "once_cell",
1739
+ "regex-automata",
1740
+ "sharded-slab",
1741
+ "smallvec",
1742
+ "thread_local",
1743
+ "tracing",
1744
+ "tracing-core",
1745
+ "tracing-log",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "tungstenite"
1750
+ version = "0.29.0"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
1753
+ dependencies = [
1754
+ "bytes",
1755
+ "data-encoding",
1756
+ "http",
1757
+ "httparse",
1758
+ "log",
1759
+ "rand",
1760
+ "sha1",
1761
+ "thiserror",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "typenum"
1766
+ version = "1.20.1"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1769
+
1770
+ [[package]]
1771
+ name = "unicode-ident"
1772
+ version = "1.0.24"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1775
+
1776
+ [[package]]
1777
+ name = "unicode-xid"
1778
+ version = "0.2.6"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1781
+
1782
+ [[package]]
1783
+ name = "url"
1784
+ version = "2.5.8"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1787
+ dependencies = [
1788
+ "form_urlencoded",
1789
+ "idna",
1790
+ "percent-encoding",
1791
+ "serde",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "utf8_iter"
1796
+ version = "1.0.4"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1799
+
1800
+ [[package]]
1801
+ name = "utf8parse"
1802
+ version = "0.2.2"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1805
+
1806
+ [[package]]
1807
+ name = "uuid"
1808
+ version = "1.23.2"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
1811
+ dependencies = [
1812
+ "getrandom 0.4.2",
1813
+ "js-sys",
1814
+ "serde_core",
1815
+ "wasm-bindgen",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "valuable"
1820
+ version = "0.1.1"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1823
+
1824
+ [[package]]
1825
+ name = "version_check"
1826
+ version = "0.9.5"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1829
+
1830
+ [[package]]
1831
+ name = "wasi"
1832
+ version = "0.11.1+wasi-snapshot-preview1"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1835
+
1836
+ [[package]]
1837
+ name = "wasip2"
1838
+ version = "1.0.3+wasi-0.2.9"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1841
+ dependencies = [
1842
+ "wit-bindgen 0.57.1",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "wasip3"
1847
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1850
+ dependencies = [
1851
+ "wit-bindgen 0.51.0",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "wasm-bindgen"
1856
+ version = "0.2.122"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1859
+ dependencies = [
1860
+ "cfg-if",
1861
+ "once_cell",
1862
+ "rustversion",
1863
+ "wasm-bindgen-macro",
1864
+ "wasm-bindgen-shared",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "wasm-bindgen-macro"
1869
+ version = "0.2.122"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1872
+ dependencies = [
1873
+ "quote",
1874
+ "wasm-bindgen-macro-support",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "wasm-bindgen-macro-support"
1879
+ version = "0.2.122"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1882
+ dependencies = [
1883
+ "bumpalo",
1884
+ "proc-macro2",
1885
+ "quote",
1886
+ "syn",
1887
+ "wasm-bindgen-shared",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "wasm-bindgen-shared"
1892
+ version = "0.2.122"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1895
+ dependencies = [
1896
+ "unicode-ident",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "wasm-encoder"
1901
+ version = "0.244.0"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1904
+ dependencies = [
1905
+ "leb128fmt",
1906
+ "wasmparser",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "wasm-metadata"
1911
+ version = "0.244.0"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1914
+ dependencies = [
1915
+ "anyhow",
1916
+ "indexmap",
1917
+ "wasm-encoder",
1918
+ "wasmparser",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "wasmparser"
1923
+ version = "0.244.0"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1926
+ dependencies = [
1927
+ "bitflags",
1928
+ "hashbrown 0.15.5",
1929
+ "indexmap",
1930
+ "semver",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "windows-link"
1935
+ version = "0.2.1"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1938
+
1939
+ [[package]]
1940
+ name = "windows-sys"
1941
+ version = "0.61.2"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1944
+ dependencies = [
1945
+ "windows-link",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "wit-bindgen"
1950
+ version = "0.51.0"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1953
+ dependencies = [
1954
+ "wit-bindgen-rust-macro",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "wit-bindgen"
1959
+ version = "0.57.1"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1962
+
1963
+ [[package]]
1964
+ name = "wit-bindgen-core"
1965
+ version = "0.51.0"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1968
+ dependencies = [
1969
+ "anyhow",
1970
+ "heck",
1971
+ "wit-parser",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "wit-bindgen-rust"
1976
+ version = "0.51.0"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1979
+ dependencies = [
1980
+ "anyhow",
1981
+ "heck",
1982
+ "indexmap",
1983
+ "prettyplease",
1984
+ "syn",
1985
+ "wasm-metadata",
1986
+ "wit-bindgen-core",
1987
+ "wit-component",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "wit-bindgen-rust-macro"
1992
+ version = "0.51.0"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1995
+ dependencies = [
1996
+ "anyhow",
1997
+ "prettyplease",
1998
+ "proc-macro2",
1999
+ "quote",
2000
+ "syn",
2001
+ "wit-bindgen-core",
2002
+ "wit-bindgen-rust",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "wit-component"
2007
+ version = "0.244.0"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2010
+ dependencies = [
2011
+ "anyhow",
2012
+ "bitflags",
2013
+ "indexmap",
2014
+ "log",
2015
+ "serde",
2016
+ "serde_derive",
2017
+ "serde_json",
2018
+ "wasm-encoder",
2019
+ "wasm-metadata",
2020
+ "wasmparser",
2021
+ "wit-parser",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "wit-parser"
2026
+ version = "0.244.0"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2029
+ dependencies = [
2030
+ "anyhow",
2031
+ "id-arena",
2032
+ "indexmap",
2033
+ "log",
2034
+ "semver",
2035
+ "serde",
2036
+ "serde_derive",
2037
+ "serde_json",
2038
+ "unicode-xid",
2039
+ "wasmparser",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "writeable"
2044
+ version = "0.6.3"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2047
+
2048
+ [[package]]
2049
+ name = "xxhash-rust"
2050
+ version = "0.8.15"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
2053
+
2054
+ [[package]]
2055
+ name = "yoke"
2056
+ version = "0.8.2"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2059
+ dependencies = [
2060
+ "stable_deref_trait",
2061
+ "yoke-derive",
2062
+ "zerofrom",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "yoke-derive"
2067
+ version = "0.8.2"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2070
+ dependencies = [
2071
+ "proc-macro2",
2072
+ "quote",
2073
+ "syn",
2074
+ "synstructure",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "zerocopy"
2079
+ version = "0.8.50"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
2082
+ dependencies = [
2083
+ "zerocopy-derive",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "zerocopy-derive"
2088
+ version = "0.8.50"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
2091
+ dependencies = [
2092
+ "proc-macro2",
2093
+ "quote",
2094
+ "syn",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "zerofrom"
2099
+ version = "0.1.8"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2102
+ dependencies = [
2103
+ "zerofrom-derive",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "zerofrom-derive"
2108
+ version = "0.1.7"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2111
+ dependencies = [
2112
+ "proc-macro2",
2113
+ "quote",
2114
+ "syn",
2115
+ "synstructure",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "zerotrie"
2120
+ version = "0.2.4"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2123
+ dependencies = [
2124
+ "displaydoc",
2125
+ "yoke",
2126
+ "zerofrom",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "zerovec"
2131
+ version = "0.11.6"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2134
+ dependencies = [
2135
+ "yoke",
2136
+ "zerofrom",
2137
+ "zerovec-derive",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "zerovec-derive"
2142
+ version = "0.11.3"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2145
+ dependencies = [
2146
+ "proc-macro2",
2147
+ "quote",
2148
+ "syn",
2149
+ ]
2150
+
2151
+ [[package]]
2152
+ name = "zmij"
2153
+ version = "1.0.21"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"