agentpal 0.1.0 → 0.1.1

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