crawlberg 0.0.1 → 1.0.0.pre.rc.2

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.
@@ -0,0 +1,3419 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "alloc-no-stdlib"
36
+ version = "2.0.4"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
39
+
40
+ [[package]]
41
+ name = "alloc-stdlib"
42
+ version = "0.2.4"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
45
+ dependencies = [
46
+ "alloc-no-stdlib",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "allocator-api2"
51
+ version = "0.2.21"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
54
+
55
+ [[package]]
56
+ name = "android_system_properties"
57
+ version = "0.1.5"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
60
+ dependencies = [
61
+ "libc",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "arc-swap"
66
+ version = "1.9.1"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
69
+ dependencies = [
70
+ "rustversion",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "arrayref"
75
+ version = "0.3.9"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
78
+
79
+ [[package]]
80
+ name = "arrayvec"
81
+ version = "0.7.7"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "f02882884d3e1bc524fb12c79f107f6ad0e1cfd498c536ffb494301740995dfe"
84
+
85
+ [[package]]
86
+ name = "astral-tl"
87
+ version = "0.7.11"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "d90933ffb0f97e2fc2e0de21da9d3f20597b804012d199843a6fe7c2810d28f3"
90
+ dependencies = [
91
+ "memchr",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "async-compression"
96
+ version = "0.4.42"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
99
+ dependencies = [
100
+ "compression-codecs",
101
+ "compression-core",
102
+ "pin-project-lite",
103
+ "tokio",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "async-trait"
108
+ version = "0.1.89"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
111
+ dependencies = [
112
+ "proc-macro2",
113
+ "quote",
114
+ "syn",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "async-tungstenite"
119
+ version = "0.32.1"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "8acc405d38be14342132609f06f02acaf825ddccfe76c4824a69281e0458ebd4"
122
+ dependencies = [
123
+ "atomic-waker",
124
+ "futures-core",
125
+ "futures-io",
126
+ "futures-task",
127
+ "futures-util",
128
+ "log",
129
+ "pin-project-lite",
130
+ "tokio",
131
+ "tungstenite",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "atomic-waker"
136
+ version = "1.1.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
139
+
140
+ [[package]]
141
+ name = "autocfg"
142
+ version = "1.5.1"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
145
+
146
+ [[package]]
147
+ name = "aws-lc-rs"
148
+ version = "1.17.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
151
+ dependencies = [
152
+ "aws-lc-sys",
153
+ "zeroize",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "aws-lc-sys"
158
+ version = "0.41.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
161
+ dependencies = [
162
+ "cc",
163
+ "cmake",
164
+ "dunce",
165
+ "fs_extra",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "base64"
170
+ version = "0.22.1"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
173
+
174
+ [[package]]
175
+ name = "bindgen"
176
+ version = "0.72.1"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
179
+ dependencies = [
180
+ "bitflags",
181
+ "cexpr",
182
+ "clang-sys",
183
+ "itertools",
184
+ "proc-macro2",
185
+ "quote",
186
+ "regex",
187
+ "rustc-hash",
188
+ "shlex 1.3.0",
189
+ "syn",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "bitflags"
194
+ version = "2.13.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
197
+
198
+ [[package]]
199
+ name = "blake3"
200
+ version = "1.8.4"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "4d2d5991425dfd0785aed03aedcf0b321d61975c9b5b3689c774a2610ae0b51e"
203
+ dependencies = [
204
+ "arrayref",
205
+ "arrayvec",
206
+ "cc",
207
+ "cfg-if",
208
+ "constant_time_eq",
209
+ "cpufeatures 0.3.0",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "block-buffer"
214
+ version = "0.10.4"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
217
+ dependencies = [
218
+ "generic-array",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "block-buffer"
223
+ version = "0.12.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
226
+ dependencies = [
227
+ "hybrid-array",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "brotli"
232
+ version = "8.0.4"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
235
+ dependencies = [
236
+ "alloc-no-stdlib",
237
+ "alloc-stdlib",
238
+ "brotli-decompressor",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "brotli-decompressor"
243
+ version = "5.0.3"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
246
+ dependencies = [
247
+ "alloc-no-stdlib",
248
+ "alloc-stdlib",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "bumpalo"
253
+ version = "3.20.3"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
256
+
257
+ [[package]]
258
+ name = "bytemuck"
259
+ version = "1.25.0"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
262
+
263
+ [[package]]
264
+ name = "byteorder-lite"
265
+ version = "0.1.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
268
+
269
+ [[package]]
270
+ name = "bytes"
271
+ version = "1.12.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
274
+
275
+ [[package]]
276
+ name = "cc"
277
+ version = "1.2.65"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
280
+ dependencies = [
281
+ "find-msvc-tools",
282
+ "jobserver",
283
+ "libc",
284
+ "shlex 2.0.1",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "cexpr"
289
+ version = "0.6.0"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
292
+ dependencies = [
293
+ "nom",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "cfg-if"
298
+ version = "1.0.4"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
301
+
302
+ [[package]]
303
+ name = "cfg_aliases"
304
+ version = "0.2.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
307
+
308
+ [[package]]
309
+ name = "chromiumoxide"
310
+ version = "0.9.1"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "26ed067eb6c1f660bdb87c05efb964421d2ca262bae0296cdfe38cf0cd949a3e"
313
+ dependencies = [
314
+ "async-tungstenite",
315
+ "base64",
316
+ "chromiumoxide_cdp",
317
+ "chromiumoxide_types",
318
+ "dunce",
319
+ "fnv",
320
+ "futures",
321
+ "futures-timer",
322
+ "pin-project-lite",
323
+ "reqwest",
324
+ "serde",
325
+ "serde_json",
326
+ "thiserror",
327
+ "tokio",
328
+ "tracing",
329
+ "url",
330
+ "which",
331
+ "windows-registry",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "chromiumoxide_cdp"
336
+ version = "0.9.1"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "68a6a03a7ebac4ea85308f285d6959a3e6b2ce32a0c9465dc7a7b1db0144eec7"
339
+ dependencies = [
340
+ "chromiumoxide_pdl",
341
+ "chromiumoxide_types",
342
+ "serde",
343
+ "serde_json",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "chromiumoxide_pdl"
348
+ version = "0.9.1"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "c602dea92337bc4d824668d78c5b79c3b4ddb29b40dd7218282bbe8fd3fc2091"
351
+ dependencies = [
352
+ "chromiumoxide_types",
353
+ "either",
354
+ "heck",
355
+ "once_cell",
356
+ "proc-macro2",
357
+ "quote",
358
+ "regex",
359
+ "serde_json",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "chromiumoxide_types"
364
+ version = "0.9.1"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "678d5146e74f16fc4a41978b275af572cd913de1f10270d2b93b6c276bc57d80"
367
+ dependencies = [
368
+ "serde",
369
+ "serde_json",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "chrono"
374
+ version = "0.4.45"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
377
+ dependencies = [
378
+ "iana-time-zone",
379
+ "js-sys",
380
+ "num-traits",
381
+ "serde",
382
+ "wasm-bindgen",
383
+ "windows-link",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "clang-sys"
388
+ version = "1.8.1"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
391
+ dependencies = [
392
+ "glob",
393
+ "libc",
394
+ "libloading",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "cmake"
399
+ version = "0.1.58"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
402
+ dependencies = [
403
+ "cc",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "color_quant"
408
+ version = "1.1.0"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
411
+
412
+ [[package]]
413
+ name = "combine"
414
+ version = "4.6.7"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
417
+ dependencies = [
418
+ "bytes",
419
+ "memchr",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "compression-codecs"
424
+ version = "0.4.38"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
427
+ dependencies = [
428
+ "brotli",
429
+ "compression-core",
430
+ "flate2",
431
+ "memchr",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "compression-core"
436
+ version = "0.4.32"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
439
+
440
+ [[package]]
441
+ name = "const-oid"
442
+ version = "0.10.2"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
445
+
446
+ [[package]]
447
+ name = "const-random"
448
+ version = "0.1.18"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
451
+ dependencies = [
452
+ "const-random-macro",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "const-random-macro"
457
+ version = "0.1.16"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
460
+ dependencies = [
461
+ "getrandom 0.2.17",
462
+ "once_cell",
463
+ "tiny-keccak",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "constant_time_eq"
468
+ version = "0.4.2"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
471
+
472
+ [[package]]
473
+ name = "cookie"
474
+ version = "0.18.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
477
+ dependencies = [
478
+ "percent-encoding",
479
+ "time",
480
+ "version_check",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "cookie_store"
485
+ version = "0.22.1"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
488
+ dependencies = [
489
+ "cookie",
490
+ "document-features",
491
+ "idna",
492
+ "log",
493
+ "publicsuffix",
494
+ "serde",
495
+ "serde_derive",
496
+ "serde_json",
497
+ "time",
498
+ "url",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "core-foundation"
503
+ version = "0.9.4"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
506
+ dependencies = [
507
+ "core-foundation-sys",
508
+ "libc",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "core-foundation"
513
+ version = "0.10.1"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
516
+ dependencies = [
517
+ "core-foundation-sys",
518
+ "libc",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "core-foundation-sys"
523
+ version = "0.8.7"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
526
+
527
+ [[package]]
528
+ name = "cpufeatures"
529
+ version = "0.2.17"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
532
+ dependencies = [
533
+ "libc",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "cpufeatures"
538
+ version = "0.3.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
541
+ dependencies = [
542
+ "libc",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "crawlberg"
547
+ version = "1.0.0-rc.2"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "663d8f606c5763873f25f2ecd00a1ee67f3150b13463e24b555757470523e6f0"
550
+ dependencies = [
551
+ "ahash",
552
+ "aho-corasick",
553
+ "arc-swap",
554
+ "astral-tl",
555
+ "async-trait",
556
+ "blake3",
557
+ "chromiumoxide",
558
+ "chrono",
559
+ "dashmap",
560
+ "dirs",
561
+ "encoding_rs",
562
+ "flate2",
563
+ "futures",
564
+ "getrandom 0.3.4",
565
+ "getrandom 0.4.3",
566
+ "html-to-markdown-rs",
567
+ "ipnet",
568
+ "memchr",
569
+ "notify",
570
+ "opentelemetry",
571
+ "opentelemetry-semantic-conventions",
572
+ "quick-xml",
573
+ "regex",
574
+ "reqwest",
575
+ "serde",
576
+ "serde_json",
577
+ "sha2",
578
+ "thiserror",
579
+ "tokio",
580
+ "tokio-stream",
581
+ "toml",
582
+ "tower",
583
+ "tracing",
584
+ "url",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "crawlberg-rb"
589
+ version = "1.0.0-rc.2"
590
+ dependencies = [
591
+ "crawlberg",
592
+ "futures",
593
+ "magnus",
594
+ "rb-sys",
595
+ "serde",
596
+ "serde_json",
597
+ "tokio",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "crc32fast"
602
+ version = "1.5.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
605
+ dependencies = [
606
+ "cfg-if",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "crossbeam-utils"
611
+ version = "0.8.21"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
614
+
615
+ [[package]]
616
+ name = "crunchy"
617
+ version = "0.2.4"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
620
+
621
+ [[package]]
622
+ name = "crypto-common"
623
+ version = "0.1.7"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
626
+ dependencies = [
627
+ "generic-array",
628
+ "typenum",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "crypto-common"
633
+ version = "0.2.1"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
636
+ dependencies = [
637
+ "hybrid-array",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "dashmap"
642
+ version = "6.2.1"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
645
+ dependencies = [
646
+ "cfg-if",
647
+ "crossbeam-utils",
648
+ "hashbrown 0.14.5",
649
+ "lock_api",
650
+ "once_cell",
651
+ "parking_lot_core",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "data-encoding"
656
+ version = "2.11.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
659
+
660
+ [[package]]
661
+ name = "deranged"
662
+ version = "0.5.8"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
665
+
666
+ [[package]]
667
+ name = "digest"
668
+ version = "0.10.7"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
671
+ dependencies = [
672
+ "block-buffer 0.10.4",
673
+ "crypto-common 0.1.7",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "digest"
678
+ version = "0.11.2"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
681
+ dependencies = [
682
+ "block-buffer 0.12.0",
683
+ "const-oid",
684
+ "crypto-common 0.2.1",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "dirs"
689
+ version = "6.0.0"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
692
+ dependencies = [
693
+ "dirs-sys",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "dirs-sys"
698
+ version = "0.5.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
701
+ dependencies = [
702
+ "libc",
703
+ "option-ext",
704
+ "redox_users",
705
+ "windows-sys 0.61.2",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "displaydoc"
710
+ version = "0.2.6"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
713
+ dependencies = [
714
+ "proc-macro2",
715
+ "quote",
716
+ "syn",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "document-features"
721
+ version = "0.2.12"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
724
+ dependencies = [
725
+ "litrs",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "dunce"
730
+ version = "1.0.5"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
733
+
734
+ [[package]]
735
+ name = "either"
736
+ version = "1.16.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
739
+
740
+ [[package]]
741
+ name = "encoding_rs"
742
+ version = "0.8.35"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
745
+ dependencies = [
746
+ "cfg-if",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "equivalent"
751
+ version = "1.0.2"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
754
+
755
+ [[package]]
756
+ name = "errno"
757
+ version = "0.3.14"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
760
+ dependencies = [
761
+ "libc",
762
+ "windows-sys 0.61.2",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "fastrand"
767
+ version = "2.4.1"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
770
+
771
+ [[package]]
772
+ name = "fdeflate"
773
+ version = "0.3.7"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
776
+ dependencies = [
777
+ "simd-adler32",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "find-msvc-tools"
782
+ version = "0.1.9"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
785
+
786
+ [[package]]
787
+ name = "flate2"
788
+ version = "1.1.9"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
791
+ dependencies = [
792
+ "crc32fast",
793
+ "miniz_oxide",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "fnv"
798
+ version = "1.0.7"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
801
+
802
+ [[package]]
803
+ name = "foldhash"
804
+ version = "0.2.0"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
807
+
808
+ [[package]]
809
+ name = "form_urlencoded"
810
+ version = "1.2.2"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
813
+ dependencies = [
814
+ "percent-encoding",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "fs_extra"
819
+ version = "1.3.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
822
+
823
+ [[package]]
824
+ name = "fsevent-sys"
825
+ version = "4.1.0"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
828
+ dependencies = [
829
+ "libc",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "futures"
834
+ version = "0.3.32"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
837
+ dependencies = [
838
+ "futures-channel",
839
+ "futures-core",
840
+ "futures-executor",
841
+ "futures-io",
842
+ "futures-sink",
843
+ "futures-task",
844
+ "futures-util",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "futures-channel"
849
+ version = "0.3.32"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
852
+ dependencies = [
853
+ "futures-core",
854
+ "futures-sink",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "futures-core"
859
+ version = "0.3.32"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
862
+
863
+ [[package]]
864
+ name = "futures-executor"
865
+ version = "0.3.32"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
868
+ dependencies = [
869
+ "futures-core",
870
+ "futures-task",
871
+ "futures-util",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "futures-io"
876
+ version = "0.3.32"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
879
+
880
+ [[package]]
881
+ name = "futures-macro"
882
+ version = "0.3.32"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
885
+ dependencies = [
886
+ "proc-macro2",
887
+ "quote",
888
+ "syn",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "futures-sink"
893
+ version = "0.3.32"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
896
+
897
+ [[package]]
898
+ name = "futures-task"
899
+ version = "0.3.32"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
902
+
903
+ [[package]]
904
+ name = "futures-timer"
905
+ version = "3.0.3"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
908
+
909
+ [[package]]
910
+ name = "futures-util"
911
+ version = "0.3.32"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
914
+ dependencies = [
915
+ "futures-channel",
916
+ "futures-core",
917
+ "futures-io",
918
+ "futures-macro",
919
+ "futures-sink",
920
+ "futures-task",
921
+ "memchr",
922
+ "pin-project-lite",
923
+ "slab",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "generic-array"
928
+ version = "0.14.7"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
931
+ dependencies = [
932
+ "typenum",
933
+ "version_check",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "getrandom"
938
+ version = "0.2.17"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
941
+ dependencies = [
942
+ "cfg-if",
943
+ "js-sys",
944
+ "libc",
945
+ "wasi",
946
+ "wasm-bindgen",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "getrandom"
951
+ version = "0.3.4"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
954
+ dependencies = [
955
+ "cfg-if",
956
+ "js-sys",
957
+ "libc",
958
+ "r-efi 5.3.0",
959
+ "wasip2",
960
+ "wasm-bindgen",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "getrandom"
965
+ version = "0.4.3"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
968
+ dependencies = [
969
+ "cfg-if",
970
+ "js-sys",
971
+ "libc",
972
+ "r-efi 6.0.0",
973
+ "wasm-bindgen",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "gif"
978
+ version = "0.14.2"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
981
+ dependencies = [
982
+ "color_quant",
983
+ "weezl",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "glob"
988
+ version = "0.3.3"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
991
+
992
+ [[package]]
993
+ name = "h2"
994
+ version = "0.4.15"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
997
+ dependencies = [
998
+ "atomic-waker",
999
+ "bytes",
1000
+ "fnv",
1001
+ "futures-core",
1002
+ "futures-sink",
1003
+ "http",
1004
+ "indexmap",
1005
+ "slab",
1006
+ "tokio",
1007
+ "tokio-util",
1008
+ "tracing",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "hashbrown"
1013
+ version = "0.14.5"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1016
+
1017
+ [[package]]
1018
+ name = "hashbrown"
1019
+ version = "0.17.1"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1022
+ dependencies = [
1023
+ "allocator-api2",
1024
+ "equivalent",
1025
+ "foldhash",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "heck"
1030
+ version = "0.5.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1033
+
1034
+ [[package]]
1035
+ name = "html-escape"
1036
+ version = "0.2.13"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
1039
+ dependencies = [
1040
+ "utf8-width",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "html-to-markdown-rs"
1045
+ version = "3.7.2"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "e80e5d74dbe02fc52264d6a1d21c12bbc0cb062bca64caa295e4703590f1aabe"
1048
+ dependencies = [
1049
+ "ahash",
1050
+ "astral-tl",
1051
+ "base64",
1052
+ "bitflags",
1053
+ "html-escape",
1054
+ "html5ever",
1055
+ "image",
1056
+ "lru",
1057
+ "memchr",
1058
+ "once_cell",
1059
+ "phf",
1060
+ "regex",
1061
+ "serde",
1062
+ "serde_json",
1063
+ "thiserror",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "html5ever"
1068
+ version = "0.39.0"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
1071
+ dependencies = [
1072
+ "log",
1073
+ "markup5ever",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "http"
1078
+ version = "1.4.2"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1081
+ dependencies = [
1082
+ "bytes",
1083
+ "itoa",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "http-body"
1088
+ version = "1.0.1"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1091
+ dependencies = [
1092
+ "bytes",
1093
+ "http",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "http-body-util"
1098
+ version = "0.1.3"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1101
+ dependencies = [
1102
+ "bytes",
1103
+ "futures-core",
1104
+ "http",
1105
+ "http-body",
1106
+ "pin-project-lite",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "httparse"
1111
+ version = "1.10.1"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1114
+
1115
+ [[package]]
1116
+ name = "hybrid-array"
1117
+ version = "0.4.10"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
1120
+ dependencies = [
1121
+ "typenum",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "hyper"
1126
+ version = "1.10.1"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1129
+ dependencies = [
1130
+ "atomic-waker",
1131
+ "bytes",
1132
+ "futures-channel",
1133
+ "futures-core",
1134
+ "h2",
1135
+ "http",
1136
+ "http-body",
1137
+ "httparse",
1138
+ "itoa",
1139
+ "pin-project-lite",
1140
+ "smallvec",
1141
+ "tokio",
1142
+ "want",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "hyper-rustls"
1147
+ version = "0.27.9"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1150
+ dependencies = [
1151
+ "http",
1152
+ "hyper",
1153
+ "hyper-util",
1154
+ "rustls",
1155
+ "tokio",
1156
+ "tokio-rustls",
1157
+ "tower-service",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "hyper-util"
1162
+ version = "0.1.20"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1165
+ dependencies = [
1166
+ "base64",
1167
+ "bytes",
1168
+ "futures-channel",
1169
+ "futures-util",
1170
+ "http",
1171
+ "http-body",
1172
+ "hyper",
1173
+ "ipnet",
1174
+ "libc",
1175
+ "percent-encoding",
1176
+ "pin-project-lite",
1177
+ "socket2",
1178
+ "system-configuration",
1179
+ "tokio",
1180
+ "tower-service",
1181
+ "tracing",
1182
+ "windows-registry",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "iana-time-zone"
1187
+ version = "0.1.65"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1190
+ dependencies = [
1191
+ "android_system_properties",
1192
+ "core-foundation-sys",
1193
+ "iana-time-zone-haiku",
1194
+ "js-sys",
1195
+ "log",
1196
+ "wasm-bindgen",
1197
+ "windows-core",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "iana-time-zone-haiku"
1202
+ version = "0.1.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1205
+ dependencies = [
1206
+ "cc",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "icu_collections"
1211
+ version = "2.2.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1214
+ dependencies = [
1215
+ "displaydoc",
1216
+ "potential_utf",
1217
+ "utf8_iter",
1218
+ "yoke",
1219
+ "zerofrom",
1220
+ "zerovec",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "icu_locale_core"
1225
+ version = "2.2.0"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1228
+ dependencies = [
1229
+ "displaydoc",
1230
+ "litemap",
1231
+ "tinystr",
1232
+ "writeable",
1233
+ "zerovec",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "icu_normalizer"
1238
+ version = "2.2.0"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1241
+ dependencies = [
1242
+ "icu_collections",
1243
+ "icu_normalizer_data",
1244
+ "icu_properties",
1245
+ "icu_provider",
1246
+ "smallvec",
1247
+ "zerovec",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "icu_normalizer_data"
1252
+ version = "2.2.0"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1255
+
1256
+ [[package]]
1257
+ name = "icu_properties"
1258
+ version = "2.2.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1261
+ dependencies = [
1262
+ "icu_collections",
1263
+ "icu_locale_core",
1264
+ "icu_properties_data",
1265
+ "icu_provider",
1266
+ "zerotrie",
1267
+ "zerovec",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "icu_properties_data"
1272
+ version = "2.2.0"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1275
+
1276
+ [[package]]
1277
+ name = "icu_provider"
1278
+ version = "2.2.0"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1281
+ dependencies = [
1282
+ "displaydoc",
1283
+ "icu_locale_core",
1284
+ "writeable",
1285
+ "yoke",
1286
+ "zerofrom",
1287
+ "zerotrie",
1288
+ "zerovec",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "idna"
1293
+ version = "1.1.0"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1296
+ dependencies = [
1297
+ "idna_adapter",
1298
+ "smallvec",
1299
+ "utf8_iter",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "idna_adapter"
1304
+ version = "1.2.2"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1307
+ dependencies = [
1308
+ "icu_normalizer",
1309
+ "icu_properties",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "image"
1314
+ version = "0.25.10"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1317
+ dependencies = [
1318
+ "bytemuck",
1319
+ "byteorder-lite",
1320
+ "color_quant",
1321
+ "gif",
1322
+ "image-webp",
1323
+ "moxcms",
1324
+ "num-traits",
1325
+ "png",
1326
+ "zune-core",
1327
+ "zune-jpeg",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "image-webp"
1332
+ version = "0.2.4"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1335
+ dependencies = [
1336
+ "byteorder-lite",
1337
+ "quick-error",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "indexmap"
1342
+ version = "2.14.0"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1345
+ dependencies = [
1346
+ "equivalent",
1347
+ "hashbrown 0.17.1",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "inotify"
1352
+ version = "0.11.2"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "533e68a5842e734946fe159fb03fc9bbbb254f590dd0d8ad321ae5ff7beca2c1"
1355
+ dependencies = [
1356
+ "bitflags",
1357
+ "inotify-sys",
1358
+ "libc",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "inotify-sys"
1363
+ version = "0.1.5"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1366
+ dependencies = [
1367
+ "libc",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "ipnet"
1372
+ version = "2.12.0"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1375
+
1376
+ [[package]]
1377
+ name = "itertools"
1378
+ version = "0.13.0"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1381
+ dependencies = [
1382
+ "either",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "itoa"
1387
+ version = "1.0.18"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1390
+
1391
+ [[package]]
1392
+ name = "jni"
1393
+ version = "0.22.4"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1396
+ dependencies = [
1397
+ "cfg-if",
1398
+ "combine",
1399
+ "jni-macros",
1400
+ "jni-sys",
1401
+ "log",
1402
+ "simd_cesu8",
1403
+ "thiserror",
1404
+ "walkdir",
1405
+ "windows-link",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "jni-macros"
1410
+ version = "0.22.4"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1413
+ dependencies = [
1414
+ "proc-macro2",
1415
+ "quote",
1416
+ "rustc_version",
1417
+ "simd_cesu8",
1418
+ "syn",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "jni-sys"
1423
+ version = "0.4.1"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1426
+ dependencies = [
1427
+ "jni-sys-macros",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "jni-sys-macros"
1432
+ version = "0.4.1"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1435
+ dependencies = [
1436
+ "quote",
1437
+ "syn",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "jobserver"
1442
+ version = "0.1.34"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1445
+ dependencies = [
1446
+ "getrandom 0.3.4",
1447
+ "libc",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "js-sys"
1452
+ version = "0.3.103"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1455
+ dependencies = [
1456
+ "cfg-if",
1457
+ "futures-util",
1458
+ "wasm-bindgen",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "kqueue"
1463
+ version = "1.1.1"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
1466
+ dependencies = [
1467
+ "kqueue-sys",
1468
+ "libc",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "kqueue-sys"
1473
+ version = "1.1.2"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
1476
+ dependencies = [
1477
+ "bitflags",
1478
+ "libc",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "lazy_static"
1483
+ version = "1.5.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1486
+
1487
+ [[package]]
1488
+ name = "libc"
1489
+ version = "0.2.186"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1492
+
1493
+ [[package]]
1494
+ name = "libloading"
1495
+ version = "0.8.9"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1498
+ dependencies = [
1499
+ "cfg-if",
1500
+ "windows-link",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "libredox"
1505
+ version = "0.1.16"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
1508
+ dependencies = [
1509
+ "libc",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "litemap"
1514
+ version = "0.8.2"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1517
+
1518
+ [[package]]
1519
+ name = "litrs"
1520
+ version = "1.0.0"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1523
+
1524
+ [[package]]
1525
+ name = "lock_api"
1526
+ version = "0.4.14"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1529
+ dependencies = [
1530
+ "scopeguard",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "log"
1535
+ version = "0.4.33"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1538
+
1539
+ [[package]]
1540
+ name = "lru"
1541
+ version = "0.18.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
1544
+ dependencies = [
1545
+ "hashbrown 0.17.1",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "lru-slab"
1550
+ version = "0.1.2"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1553
+
1554
+ [[package]]
1555
+ name = "magnus"
1556
+ version = "0.8.2"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1559
+ dependencies = [
1560
+ "magnus-macros",
1561
+ "rb-sys",
1562
+ "rb-sys-env",
1563
+ "seq-macro",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "magnus-macros"
1568
+ version = "0.8.0"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1571
+ dependencies = [
1572
+ "proc-macro2",
1573
+ "quote",
1574
+ "syn",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "markup5ever"
1579
+ version = "0.39.0"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
1582
+ dependencies = [
1583
+ "log",
1584
+ "tendril",
1585
+ "web_atoms",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "memchr"
1590
+ version = "2.8.2"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1593
+
1594
+ [[package]]
1595
+ name = "mime"
1596
+ version = "0.3.17"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1599
+
1600
+ [[package]]
1601
+ name = "minimal-lexical"
1602
+ version = "0.2.1"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1605
+
1606
+ [[package]]
1607
+ name = "miniz_oxide"
1608
+ version = "0.8.9"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1611
+ dependencies = [
1612
+ "adler2",
1613
+ "simd-adler32",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "mio"
1618
+ version = "1.2.1"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1621
+ dependencies = [
1622
+ "libc",
1623
+ "log",
1624
+ "wasi",
1625
+ "windows-sys 0.61.2",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "moxcms"
1630
+ version = "0.8.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1633
+ dependencies = [
1634
+ "num-traits",
1635
+ "pxfm",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "new_debug_unreachable"
1640
+ version = "1.0.6"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1643
+
1644
+ [[package]]
1645
+ name = "nom"
1646
+ version = "7.1.3"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1649
+ dependencies = [
1650
+ "memchr",
1651
+ "minimal-lexical",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "notify"
1656
+ version = "8.2.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
1659
+ dependencies = [
1660
+ "bitflags",
1661
+ "fsevent-sys",
1662
+ "inotify",
1663
+ "kqueue",
1664
+ "libc",
1665
+ "log",
1666
+ "mio",
1667
+ "notify-types",
1668
+ "walkdir",
1669
+ "windows-sys 0.60.2",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "notify-types"
1674
+ version = "2.1.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
1677
+ dependencies = [
1678
+ "bitflags",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "num-conv"
1683
+ version = "0.2.2"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1686
+
1687
+ [[package]]
1688
+ name = "num-traits"
1689
+ version = "0.2.19"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1692
+ dependencies = [
1693
+ "autocfg",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "once_cell"
1698
+ version = "1.21.4"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1701
+
1702
+ [[package]]
1703
+ name = "openssl-probe"
1704
+ version = "0.2.1"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1707
+
1708
+ [[package]]
1709
+ name = "opentelemetry"
1710
+ version = "0.32.0"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "b0142c63252a9e054e68a4c61a5778f7b14f576274d593f8ce883d191a099682"
1713
+ dependencies = [
1714
+ "futures-core",
1715
+ "futures-sink",
1716
+ "js-sys",
1717
+ "pin-project-lite",
1718
+ "thiserror",
1719
+ "tracing",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "opentelemetry-semantic-conventions"
1724
+ version = "0.32.0"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "6ca2f98a0437b427b4b08f19f1caa3c44db885a202bc12cfea13d6c702243d68"
1727
+
1728
+ [[package]]
1729
+ name = "option-ext"
1730
+ version = "0.2.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1733
+
1734
+ [[package]]
1735
+ name = "parking_lot"
1736
+ version = "0.12.5"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1739
+ dependencies = [
1740
+ "lock_api",
1741
+ "parking_lot_core",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "parking_lot_core"
1746
+ version = "0.9.12"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1749
+ dependencies = [
1750
+ "cfg-if",
1751
+ "libc",
1752
+ "redox_syscall",
1753
+ "smallvec",
1754
+ "windows-link",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "percent-encoding"
1759
+ version = "2.3.2"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1762
+
1763
+ [[package]]
1764
+ name = "phf"
1765
+ version = "0.13.1"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1768
+ dependencies = [
1769
+ "phf_macros",
1770
+ "phf_shared",
1771
+ "serde",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "phf_codegen"
1776
+ version = "0.13.1"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
1779
+ dependencies = [
1780
+ "phf_generator",
1781
+ "phf_shared",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "phf_generator"
1786
+ version = "0.13.1"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
1789
+ dependencies = [
1790
+ "fastrand",
1791
+ "phf_shared",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "phf_macros"
1796
+ version = "0.13.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
1799
+ dependencies = [
1800
+ "phf_generator",
1801
+ "phf_shared",
1802
+ "proc-macro2",
1803
+ "quote",
1804
+ "syn",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "phf_shared"
1809
+ version = "0.13.1"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1812
+ dependencies = [
1813
+ "siphasher",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "pin-project-lite"
1818
+ version = "0.2.17"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1821
+
1822
+ [[package]]
1823
+ name = "png"
1824
+ version = "0.18.1"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1827
+ dependencies = [
1828
+ "bitflags",
1829
+ "crc32fast",
1830
+ "fdeflate",
1831
+ "flate2",
1832
+ "miniz_oxide",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "potential_utf"
1837
+ version = "0.1.5"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1840
+ dependencies = [
1841
+ "zerovec",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "powerfmt"
1846
+ version = "0.2.0"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1849
+
1850
+ [[package]]
1851
+ name = "ppv-lite86"
1852
+ version = "0.2.21"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1855
+ dependencies = [
1856
+ "zerocopy",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "precomputed-hash"
1861
+ version = "0.1.1"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1864
+
1865
+ [[package]]
1866
+ name = "proc-macro2"
1867
+ version = "1.0.106"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1870
+ dependencies = [
1871
+ "unicode-ident",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "psl-types"
1876
+ version = "2.0.11"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
1879
+
1880
+ [[package]]
1881
+ name = "publicsuffix"
1882
+ version = "2.3.0"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
1885
+ dependencies = [
1886
+ "idna",
1887
+ "psl-types",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "pxfm"
1892
+ version = "0.1.29"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
1895
+
1896
+ [[package]]
1897
+ name = "quick-error"
1898
+ version = "2.0.1"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1901
+
1902
+ [[package]]
1903
+ name = "quick-xml"
1904
+ version = "0.40.1"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "2474bd2e5029e7ccb6abb2ba48cf2383a333851dedf495901544281590c7da7f"
1907
+ dependencies = [
1908
+ "memchr",
1909
+ ]
1910
+
1911
+ [[package]]
1912
+ name = "quinn"
1913
+ version = "0.11.11"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
1916
+ dependencies = [
1917
+ "bytes",
1918
+ "cfg_aliases",
1919
+ "pin-project-lite",
1920
+ "quinn-proto",
1921
+ "quinn-udp",
1922
+ "rustc-hash",
1923
+ "rustls",
1924
+ "socket2",
1925
+ "thiserror",
1926
+ "tokio",
1927
+ "tracing",
1928
+ "web-time",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "quinn-proto"
1933
+ version = "0.11.15"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e"
1936
+ dependencies = [
1937
+ "aws-lc-rs",
1938
+ "bytes",
1939
+ "getrandom 0.3.4",
1940
+ "lru-slab",
1941
+ "rand",
1942
+ "ring",
1943
+ "rustc-hash",
1944
+ "rustls",
1945
+ "rustls-pki-types",
1946
+ "slab",
1947
+ "thiserror",
1948
+ "tinyvec",
1949
+ "tracing",
1950
+ "web-time",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "quinn-udp"
1955
+ version = "0.5.14"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1958
+ dependencies = [
1959
+ "cfg_aliases",
1960
+ "libc",
1961
+ "once_cell",
1962
+ "socket2",
1963
+ "tracing",
1964
+ "windows-sys 0.60.2",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "quote"
1969
+ version = "1.0.46"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1972
+ dependencies = [
1973
+ "proc-macro2",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "r-efi"
1978
+ version = "5.3.0"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1981
+
1982
+ [[package]]
1983
+ name = "r-efi"
1984
+ version = "6.0.0"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1987
+
1988
+ [[package]]
1989
+ name = "rand"
1990
+ version = "0.9.4"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1993
+ dependencies = [
1994
+ "rand_chacha",
1995
+ "rand_core",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "rand_chacha"
2000
+ version = "0.9.0"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2003
+ dependencies = [
2004
+ "ppv-lite86",
2005
+ "rand_core",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "rand_core"
2010
+ version = "0.9.5"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2013
+ dependencies = [
2014
+ "getrandom 0.3.4",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "rb-sys"
2019
+ version = "0.9.127"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "d7d7c9560fe42dcffa576941394075f18a17dce89fcf718a2fa90b7dc2134d12"
2022
+ dependencies = [
2023
+ "rb-sys-build",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "rb-sys-build"
2028
+ version = "0.9.128"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
2031
+ dependencies = [
2032
+ "bindgen",
2033
+ "lazy_static",
2034
+ "proc-macro2",
2035
+ "quote",
2036
+ "regex",
2037
+ "shell-words",
2038
+ "syn",
2039
+ ]
2040
+
2041
+ [[package]]
2042
+ name = "rb-sys-env"
2043
+ version = "0.2.3"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
2046
+
2047
+ [[package]]
2048
+ name = "redox_syscall"
2049
+ version = "0.5.18"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2052
+ dependencies = [
2053
+ "bitflags",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "redox_users"
2058
+ version = "0.5.2"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2061
+ dependencies = [
2062
+ "getrandom 0.2.17",
2063
+ "libredox",
2064
+ "thiserror",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "regex"
2069
+ version = "1.12.4"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2072
+ dependencies = [
2073
+ "aho-corasick",
2074
+ "memchr",
2075
+ "regex-automata",
2076
+ "regex-syntax",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "regex-automata"
2081
+ version = "0.4.14"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2084
+ dependencies = [
2085
+ "aho-corasick",
2086
+ "memchr",
2087
+ "regex-syntax",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "regex-syntax"
2092
+ version = "0.8.11"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2095
+
2096
+ [[package]]
2097
+ name = "reqwest"
2098
+ version = "0.13.4"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
2101
+ dependencies = [
2102
+ "base64",
2103
+ "bytes",
2104
+ "cookie",
2105
+ "cookie_store",
2106
+ "encoding_rs",
2107
+ "futures-core",
2108
+ "h2",
2109
+ "http",
2110
+ "http-body",
2111
+ "http-body-util",
2112
+ "hyper",
2113
+ "hyper-rustls",
2114
+ "hyper-util",
2115
+ "js-sys",
2116
+ "log",
2117
+ "mime",
2118
+ "percent-encoding",
2119
+ "pin-project-lite",
2120
+ "quinn",
2121
+ "rustls",
2122
+ "rustls-pki-types",
2123
+ "rustls-platform-verifier",
2124
+ "sync_wrapper",
2125
+ "tokio",
2126
+ "tokio-rustls",
2127
+ "tower",
2128
+ "tower-http",
2129
+ "tower-service",
2130
+ "url",
2131
+ "wasm-bindgen",
2132
+ "wasm-bindgen-futures",
2133
+ "web-sys",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "ring"
2138
+ version = "0.17.14"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2141
+ dependencies = [
2142
+ "cc",
2143
+ "cfg-if",
2144
+ "getrandom 0.2.17",
2145
+ "libc",
2146
+ "untrusted",
2147
+ "windows-sys 0.52.0",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "rustc-hash"
2152
+ version = "2.1.2"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2155
+
2156
+ [[package]]
2157
+ name = "rustc_version"
2158
+ version = "0.4.1"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2161
+ dependencies = [
2162
+ "semver",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "rustls"
2167
+ version = "0.23.41"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
2170
+ dependencies = [
2171
+ "aws-lc-rs",
2172
+ "once_cell",
2173
+ "rustls-pki-types",
2174
+ "rustls-webpki",
2175
+ "subtle",
2176
+ "zeroize",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "rustls-native-certs"
2181
+ version = "0.8.4"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2184
+ dependencies = [
2185
+ "openssl-probe",
2186
+ "rustls-pki-types",
2187
+ "schannel",
2188
+ "security-framework",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "rustls-pki-types"
2193
+ version = "1.14.1"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
2196
+ dependencies = [
2197
+ "web-time",
2198
+ "zeroize",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "rustls-platform-verifier"
2203
+ version = "0.7.0"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
2206
+ dependencies = [
2207
+ "core-foundation 0.10.1",
2208
+ "core-foundation-sys",
2209
+ "jni",
2210
+ "log",
2211
+ "once_cell",
2212
+ "rustls",
2213
+ "rustls-native-certs",
2214
+ "rustls-platform-verifier-android",
2215
+ "rustls-webpki",
2216
+ "security-framework",
2217
+ "security-framework-sys",
2218
+ "webpki-root-certs",
2219
+ "windows-sys 0.61.2",
2220
+ ]
2221
+
2222
+ [[package]]
2223
+ name = "rustls-platform-verifier-android"
2224
+ version = "0.1.1"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2227
+
2228
+ [[package]]
2229
+ name = "rustls-webpki"
2230
+ version = "0.103.13"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2233
+ dependencies = [
2234
+ "aws-lc-rs",
2235
+ "ring",
2236
+ "rustls-pki-types",
2237
+ "untrusted",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "rustversion"
2242
+ version = "1.0.22"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2245
+
2246
+ [[package]]
2247
+ name = "same-file"
2248
+ version = "1.0.6"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2251
+ dependencies = [
2252
+ "winapi-util",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "schannel"
2257
+ version = "0.1.29"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2260
+ dependencies = [
2261
+ "windows-sys 0.61.2",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "scopeguard"
2266
+ version = "1.2.0"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2269
+
2270
+ [[package]]
2271
+ name = "security-framework"
2272
+ version = "3.7.0"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2275
+ dependencies = [
2276
+ "bitflags",
2277
+ "core-foundation 0.10.1",
2278
+ "core-foundation-sys",
2279
+ "libc",
2280
+ "security-framework-sys",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "security-framework-sys"
2285
+ version = "2.17.0"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2288
+ dependencies = [
2289
+ "core-foundation-sys",
2290
+ "libc",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "semver"
2295
+ version = "1.0.28"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2298
+
2299
+ [[package]]
2300
+ name = "seq-macro"
2301
+ version = "0.3.6"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2304
+
2305
+ [[package]]
2306
+ name = "serde"
2307
+ version = "1.0.228"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2310
+ dependencies = [
2311
+ "serde_core",
2312
+ "serde_derive",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "serde_core"
2317
+ version = "1.0.228"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2320
+ dependencies = [
2321
+ "serde_derive",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "serde_derive"
2326
+ version = "1.0.228"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2329
+ dependencies = [
2330
+ "proc-macro2",
2331
+ "quote",
2332
+ "syn",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "serde_json"
2337
+ version = "1.0.150"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2340
+ dependencies = [
2341
+ "itoa",
2342
+ "memchr",
2343
+ "serde",
2344
+ "serde_core",
2345
+ "zmij",
2346
+ ]
2347
+
2348
+ [[package]]
2349
+ name = "serde_spanned"
2350
+ version = "1.1.1"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2353
+ dependencies = [
2354
+ "serde_core",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "sha1"
2359
+ version = "0.10.6"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2362
+ dependencies = [
2363
+ "cfg-if",
2364
+ "cpufeatures 0.2.17",
2365
+ "digest 0.10.7",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "sha2"
2370
+ version = "0.11.0"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2373
+ dependencies = [
2374
+ "cfg-if",
2375
+ "cpufeatures 0.3.0",
2376
+ "digest 0.11.2",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "shell-words"
2381
+ version = "1.1.1"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2384
+
2385
+ [[package]]
2386
+ name = "shlex"
2387
+ version = "1.3.0"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2390
+
2391
+ [[package]]
2392
+ name = "shlex"
2393
+ version = "2.0.1"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2396
+
2397
+ [[package]]
2398
+ name = "signal-hook-registry"
2399
+ version = "1.4.8"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2402
+ dependencies = [
2403
+ "errno",
2404
+ "libc",
2405
+ ]
2406
+
2407
+ [[package]]
2408
+ name = "simd-adler32"
2409
+ version = "0.3.9"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2412
+
2413
+ [[package]]
2414
+ name = "simd_cesu8"
2415
+ version = "1.1.1"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
2418
+ dependencies = [
2419
+ "rustc_version",
2420
+ "simdutf8",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "simdutf8"
2425
+ version = "0.1.5"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2428
+
2429
+ [[package]]
2430
+ name = "siphasher"
2431
+ version = "1.0.3"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2434
+
2435
+ [[package]]
2436
+ name = "slab"
2437
+ version = "0.4.12"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2440
+
2441
+ [[package]]
2442
+ name = "smallvec"
2443
+ version = "1.15.2"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2446
+
2447
+ [[package]]
2448
+ name = "socket2"
2449
+ version = "0.6.4"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2452
+ dependencies = [
2453
+ "libc",
2454
+ "windows-sys 0.61.2",
2455
+ ]
2456
+
2457
+ [[package]]
2458
+ name = "stable_deref_trait"
2459
+ version = "1.2.1"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2462
+
2463
+ [[package]]
2464
+ name = "string_cache"
2465
+ version = "0.9.0"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
2468
+ dependencies = [
2469
+ "new_debug_unreachable",
2470
+ "parking_lot",
2471
+ "phf_shared",
2472
+ "precomputed-hash",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "string_cache_codegen"
2477
+ version = "0.6.1"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
2480
+ dependencies = [
2481
+ "phf_generator",
2482
+ "phf_shared",
2483
+ "proc-macro2",
2484
+ "quote",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "subtle"
2489
+ version = "2.6.1"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2492
+
2493
+ [[package]]
2494
+ name = "syn"
2495
+ version = "2.0.118"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2498
+ dependencies = [
2499
+ "proc-macro2",
2500
+ "quote",
2501
+ "unicode-ident",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "sync_wrapper"
2506
+ version = "1.0.2"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2509
+ dependencies = [
2510
+ "futures-core",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "synstructure"
2515
+ version = "0.13.2"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2518
+ dependencies = [
2519
+ "proc-macro2",
2520
+ "quote",
2521
+ "syn",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "system-configuration"
2526
+ version = "0.7.0"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2529
+ dependencies = [
2530
+ "bitflags",
2531
+ "core-foundation 0.9.4",
2532
+ "system-configuration-sys",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "system-configuration-sys"
2537
+ version = "0.6.0"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2540
+ dependencies = [
2541
+ "core-foundation-sys",
2542
+ "libc",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "tendril"
2547
+ version = "0.5.0"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
2550
+ dependencies = [
2551
+ "new_debug_unreachable",
2552
+ "utf-8",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "thiserror"
2557
+ version = "2.0.18"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2560
+ dependencies = [
2561
+ "thiserror-impl",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "thiserror-impl"
2566
+ version = "2.0.18"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2569
+ dependencies = [
2570
+ "proc-macro2",
2571
+ "quote",
2572
+ "syn",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "time"
2577
+ version = "0.3.51"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "85c17d80feb7334b40c484e45ed1a5273dfd8bfda537c3be2e74a06a6686f327"
2580
+ dependencies = [
2581
+ "deranged",
2582
+ "num-conv",
2583
+ "powerfmt",
2584
+ "serde_core",
2585
+ "time-core",
2586
+ "time-macros",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "time-core"
2591
+ version = "0.1.9"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
2594
+
2595
+ [[package]]
2596
+ name = "time-macros"
2597
+ version = "0.2.30"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "dcef1a61bdb119096e153208ec5cbec23944ce8bca13be5c7f60c634f7403935"
2600
+ dependencies = [
2601
+ "num-conv",
2602
+ "time-core",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "tiny-keccak"
2607
+ version = "2.0.2"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2610
+ dependencies = [
2611
+ "crunchy",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "tinystr"
2616
+ version = "0.8.3"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2619
+ dependencies = [
2620
+ "displaydoc",
2621
+ "zerovec",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "tinyvec"
2626
+ version = "1.11.0"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2629
+ dependencies = [
2630
+ "tinyvec_macros",
2631
+ ]
2632
+
2633
+ [[package]]
2634
+ name = "tinyvec_macros"
2635
+ version = "0.1.1"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2638
+
2639
+ [[package]]
2640
+ name = "tokio"
2641
+ version = "1.52.3"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2644
+ dependencies = [
2645
+ "bytes",
2646
+ "libc",
2647
+ "mio",
2648
+ "pin-project-lite",
2649
+ "signal-hook-registry",
2650
+ "socket2",
2651
+ "tokio-macros",
2652
+ "windows-sys 0.61.2",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "tokio-macros"
2657
+ version = "2.7.0"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2660
+ dependencies = [
2661
+ "proc-macro2",
2662
+ "quote",
2663
+ "syn",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "tokio-rustls"
2668
+ version = "0.26.4"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2671
+ dependencies = [
2672
+ "rustls",
2673
+ "tokio",
2674
+ ]
2675
+
2676
+ [[package]]
2677
+ name = "tokio-stream"
2678
+ version = "0.1.18"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2681
+ dependencies = [
2682
+ "futures-core",
2683
+ "pin-project-lite",
2684
+ "tokio",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "tokio-util"
2689
+ version = "0.7.18"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2692
+ dependencies = [
2693
+ "bytes",
2694
+ "futures-core",
2695
+ "futures-sink",
2696
+ "pin-project-lite",
2697
+ "tokio",
2698
+ ]
2699
+
2700
+ [[package]]
2701
+ name = "toml"
2702
+ version = "1.1.2+spec-1.1.0"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
2705
+ dependencies = [
2706
+ "indexmap",
2707
+ "serde_core",
2708
+ "serde_spanned",
2709
+ "toml_datetime",
2710
+ "toml_parser",
2711
+ "toml_writer",
2712
+ "winnow",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "toml_datetime"
2717
+ version = "1.1.1+spec-1.1.0"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2720
+ dependencies = [
2721
+ "serde_core",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "toml_parser"
2726
+ version = "1.1.2+spec-1.1.0"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2729
+ dependencies = [
2730
+ "winnow",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "toml_writer"
2735
+ version = "1.1.1+spec-1.1.0"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2738
+
2739
+ [[package]]
2740
+ name = "tower"
2741
+ version = "0.5.3"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2744
+ dependencies = [
2745
+ "futures-core",
2746
+ "futures-util",
2747
+ "pin-project-lite",
2748
+ "sync_wrapper",
2749
+ "tokio",
2750
+ "tokio-util",
2751
+ "tower-layer",
2752
+ "tower-service",
2753
+ "tracing",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "tower-http"
2758
+ version = "0.6.11"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2761
+ dependencies = [
2762
+ "async-compression",
2763
+ "bitflags",
2764
+ "bytes",
2765
+ "futures-core",
2766
+ "futures-util",
2767
+ "http",
2768
+ "http-body",
2769
+ "http-body-util",
2770
+ "pin-project-lite",
2771
+ "tokio",
2772
+ "tokio-util",
2773
+ "tower",
2774
+ "tower-layer",
2775
+ "tower-service",
2776
+ "url",
2777
+ ]
2778
+
2779
+ [[package]]
2780
+ name = "tower-layer"
2781
+ version = "0.3.3"
2782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2784
+
2785
+ [[package]]
2786
+ name = "tower-service"
2787
+ version = "0.3.3"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2790
+
2791
+ [[package]]
2792
+ name = "tracing"
2793
+ version = "0.1.44"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2796
+ dependencies = [
2797
+ "pin-project-lite",
2798
+ "tracing-attributes",
2799
+ "tracing-core",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "tracing-attributes"
2804
+ version = "0.1.31"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2807
+ dependencies = [
2808
+ "proc-macro2",
2809
+ "quote",
2810
+ "syn",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "tracing-core"
2815
+ version = "0.1.36"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2818
+ dependencies = [
2819
+ "once_cell",
2820
+ ]
2821
+
2822
+ [[package]]
2823
+ name = "try-lock"
2824
+ version = "0.2.5"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2827
+
2828
+ [[package]]
2829
+ name = "tungstenite"
2830
+ version = "0.28.0"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
2833
+ dependencies = [
2834
+ "bytes",
2835
+ "data-encoding",
2836
+ "http",
2837
+ "httparse",
2838
+ "log",
2839
+ "rand",
2840
+ "sha1",
2841
+ "thiserror",
2842
+ "utf-8",
2843
+ ]
2844
+
2845
+ [[package]]
2846
+ name = "typenum"
2847
+ version = "1.20.0"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2850
+
2851
+ [[package]]
2852
+ name = "unicode-ident"
2853
+ version = "1.0.24"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2856
+
2857
+ [[package]]
2858
+ name = "untrusted"
2859
+ version = "0.9.0"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2862
+
2863
+ [[package]]
2864
+ name = "url"
2865
+ version = "2.5.8"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2868
+ dependencies = [
2869
+ "form_urlencoded",
2870
+ "idna",
2871
+ "percent-encoding",
2872
+ "serde",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "utf-8"
2877
+ version = "0.7.6"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2880
+
2881
+ [[package]]
2882
+ name = "utf8-width"
2883
+ version = "0.1.8"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
2886
+
2887
+ [[package]]
2888
+ name = "utf8_iter"
2889
+ version = "1.0.4"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2892
+
2893
+ [[package]]
2894
+ name = "version_check"
2895
+ version = "0.9.5"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2898
+
2899
+ [[package]]
2900
+ name = "walkdir"
2901
+ version = "2.5.0"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2904
+ dependencies = [
2905
+ "same-file",
2906
+ "winapi-util",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "want"
2911
+ version = "0.3.1"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2914
+ dependencies = [
2915
+ "try-lock",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "wasi"
2920
+ version = "0.11.1+wasi-snapshot-preview1"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2923
+
2924
+ [[package]]
2925
+ name = "wasip2"
2926
+ version = "1.0.4+wasi-0.2.12"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2929
+ dependencies = [
2930
+ "wit-bindgen",
2931
+ ]
2932
+
2933
+ [[package]]
2934
+ name = "wasm-bindgen"
2935
+ version = "0.2.126"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2938
+ dependencies = [
2939
+ "cfg-if",
2940
+ "once_cell",
2941
+ "rustversion",
2942
+ "wasm-bindgen-macro",
2943
+ "wasm-bindgen-shared",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "wasm-bindgen-futures"
2948
+ version = "0.4.76"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
2951
+ dependencies = [
2952
+ "js-sys",
2953
+ "wasm-bindgen",
2954
+ ]
2955
+
2956
+ [[package]]
2957
+ name = "wasm-bindgen-macro"
2958
+ version = "0.2.126"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2961
+ dependencies = [
2962
+ "quote",
2963
+ "wasm-bindgen-macro-support",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "wasm-bindgen-macro-support"
2968
+ version = "0.2.126"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2971
+ dependencies = [
2972
+ "bumpalo",
2973
+ "proc-macro2",
2974
+ "quote",
2975
+ "syn",
2976
+ "wasm-bindgen-shared",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "wasm-bindgen-shared"
2981
+ version = "0.2.126"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2984
+ dependencies = [
2985
+ "unicode-ident",
2986
+ ]
2987
+
2988
+ [[package]]
2989
+ name = "web-sys"
2990
+ version = "0.3.103"
2991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
2993
+ dependencies = [
2994
+ "js-sys",
2995
+ "wasm-bindgen",
2996
+ ]
2997
+
2998
+ [[package]]
2999
+ name = "web-time"
3000
+ version = "1.1.0"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3003
+ dependencies = [
3004
+ "js-sys",
3005
+ "wasm-bindgen",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "web_atoms"
3010
+ version = "0.2.5"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "075474b12bcb3d2e3d4546580e9de478eeeead668a1761e2a8860c836b7ef297"
3013
+ dependencies = [
3014
+ "phf",
3015
+ "phf_codegen",
3016
+ "string_cache",
3017
+ "string_cache_codegen",
3018
+ ]
3019
+
3020
+ [[package]]
3021
+ name = "webpki-root-certs"
3022
+ version = "1.0.8"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
3025
+ dependencies = [
3026
+ "rustls-pki-types",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "weezl"
3031
+ version = "0.1.12"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
3034
+
3035
+ [[package]]
3036
+ name = "which"
3037
+ version = "8.0.2"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "81995fafaaaf6ae47a7d0cc83c67caf92aeb7e5331650ae6ff856f7c0c60c459"
3040
+ dependencies = [
3041
+ "libc",
3042
+ ]
3043
+
3044
+ [[package]]
3045
+ name = "winapi-util"
3046
+ version = "0.1.11"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3049
+ dependencies = [
3050
+ "windows-sys 0.61.2",
3051
+ ]
3052
+
3053
+ [[package]]
3054
+ name = "windows-core"
3055
+ version = "0.62.2"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3058
+ dependencies = [
3059
+ "windows-implement",
3060
+ "windows-interface",
3061
+ "windows-link",
3062
+ "windows-result",
3063
+ "windows-strings",
3064
+ ]
3065
+
3066
+ [[package]]
3067
+ name = "windows-implement"
3068
+ version = "0.60.2"
3069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3070
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3071
+ dependencies = [
3072
+ "proc-macro2",
3073
+ "quote",
3074
+ "syn",
3075
+ ]
3076
+
3077
+ [[package]]
3078
+ name = "windows-interface"
3079
+ version = "0.59.3"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3082
+ dependencies = [
3083
+ "proc-macro2",
3084
+ "quote",
3085
+ "syn",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "windows-link"
3090
+ version = "0.2.1"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3093
+
3094
+ [[package]]
3095
+ name = "windows-registry"
3096
+ version = "0.6.1"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3099
+ dependencies = [
3100
+ "windows-link",
3101
+ "windows-result",
3102
+ "windows-strings",
3103
+ ]
3104
+
3105
+ [[package]]
3106
+ name = "windows-result"
3107
+ version = "0.4.1"
3108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3109
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3110
+ dependencies = [
3111
+ "windows-link",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "windows-strings"
3116
+ version = "0.5.1"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3119
+ dependencies = [
3120
+ "windows-link",
3121
+ ]
3122
+
3123
+ [[package]]
3124
+ name = "windows-sys"
3125
+ version = "0.52.0"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3128
+ dependencies = [
3129
+ "windows-targets 0.52.6",
3130
+ ]
3131
+
3132
+ [[package]]
3133
+ name = "windows-sys"
3134
+ version = "0.60.2"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3137
+ dependencies = [
3138
+ "windows-targets 0.53.5",
3139
+ ]
3140
+
3141
+ [[package]]
3142
+ name = "windows-sys"
3143
+ version = "0.61.2"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3146
+ dependencies = [
3147
+ "windows-link",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "windows-targets"
3152
+ version = "0.52.6"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3155
+ dependencies = [
3156
+ "windows_aarch64_gnullvm 0.52.6",
3157
+ "windows_aarch64_msvc 0.52.6",
3158
+ "windows_i686_gnu 0.52.6",
3159
+ "windows_i686_gnullvm 0.52.6",
3160
+ "windows_i686_msvc 0.52.6",
3161
+ "windows_x86_64_gnu 0.52.6",
3162
+ "windows_x86_64_gnullvm 0.52.6",
3163
+ "windows_x86_64_msvc 0.52.6",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "windows-targets"
3168
+ version = "0.53.5"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3171
+ dependencies = [
3172
+ "windows-link",
3173
+ "windows_aarch64_gnullvm 0.53.1",
3174
+ "windows_aarch64_msvc 0.53.1",
3175
+ "windows_i686_gnu 0.53.1",
3176
+ "windows_i686_gnullvm 0.53.1",
3177
+ "windows_i686_msvc 0.53.1",
3178
+ "windows_x86_64_gnu 0.53.1",
3179
+ "windows_x86_64_gnullvm 0.53.1",
3180
+ "windows_x86_64_msvc 0.53.1",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "windows_aarch64_gnullvm"
3185
+ version = "0.52.6"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3188
+
3189
+ [[package]]
3190
+ name = "windows_aarch64_gnullvm"
3191
+ version = "0.53.1"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3194
+
3195
+ [[package]]
3196
+ name = "windows_aarch64_msvc"
3197
+ version = "0.52.6"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3200
+
3201
+ [[package]]
3202
+ name = "windows_aarch64_msvc"
3203
+ version = "0.53.1"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3206
+
3207
+ [[package]]
3208
+ name = "windows_i686_gnu"
3209
+ version = "0.52.6"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3212
+
3213
+ [[package]]
3214
+ name = "windows_i686_gnu"
3215
+ version = "0.53.1"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3218
+
3219
+ [[package]]
3220
+ name = "windows_i686_gnullvm"
3221
+ version = "0.52.6"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3224
+
3225
+ [[package]]
3226
+ name = "windows_i686_gnullvm"
3227
+ version = "0.53.1"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3230
+
3231
+ [[package]]
3232
+ name = "windows_i686_msvc"
3233
+ version = "0.52.6"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3236
+
3237
+ [[package]]
3238
+ name = "windows_i686_msvc"
3239
+ version = "0.53.1"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3242
+
3243
+ [[package]]
3244
+ name = "windows_x86_64_gnu"
3245
+ version = "0.52.6"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3248
+
3249
+ [[package]]
3250
+ name = "windows_x86_64_gnu"
3251
+ version = "0.53.1"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3254
+
3255
+ [[package]]
3256
+ name = "windows_x86_64_gnullvm"
3257
+ version = "0.52.6"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3260
+
3261
+ [[package]]
3262
+ name = "windows_x86_64_gnullvm"
3263
+ version = "0.53.1"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3266
+
3267
+ [[package]]
3268
+ name = "windows_x86_64_msvc"
3269
+ version = "0.52.6"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3272
+
3273
+ [[package]]
3274
+ name = "windows_x86_64_msvc"
3275
+ version = "0.53.1"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3278
+
3279
+ [[package]]
3280
+ name = "winnow"
3281
+ version = "1.0.3"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
3284
+
3285
+ [[package]]
3286
+ name = "wit-bindgen"
3287
+ version = "0.57.1"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3290
+
3291
+ [[package]]
3292
+ name = "writeable"
3293
+ version = "0.6.3"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3296
+
3297
+ [[package]]
3298
+ name = "yoke"
3299
+ version = "0.8.3"
3300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3301
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3302
+ dependencies = [
3303
+ "stable_deref_trait",
3304
+ "yoke-derive",
3305
+ "zerofrom",
3306
+ ]
3307
+
3308
+ [[package]]
3309
+ name = "yoke-derive"
3310
+ version = "0.8.2"
3311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3312
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3313
+ dependencies = [
3314
+ "proc-macro2",
3315
+ "quote",
3316
+ "syn",
3317
+ "synstructure",
3318
+ ]
3319
+
3320
+ [[package]]
3321
+ name = "zerocopy"
3322
+ version = "0.8.52"
3323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3324
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
3325
+ dependencies = [
3326
+ "zerocopy-derive",
3327
+ ]
3328
+
3329
+ [[package]]
3330
+ name = "zerocopy-derive"
3331
+ version = "0.8.52"
3332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3333
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
3334
+ dependencies = [
3335
+ "proc-macro2",
3336
+ "quote",
3337
+ "syn",
3338
+ ]
3339
+
3340
+ [[package]]
3341
+ name = "zerofrom"
3342
+ version = "0.1.8"
3343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3344
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3345
+ dependencies = [
3346
+ "zerofrom-derive",
3347
+ ]
3348
+
3349
+ [[package]]
3350
+ name = "zerofrom-derive"
3351
+ version = "0.1.7"
3352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3353
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3354
+ dependencies = [
3355
+ "proc-macro2",
3356
+ "quote",
3357
+ "syn",
3358
+ "synstructure",
3359
+ ]
3360
+
3361
+ [[package]]
3362
+ name = "zeroize"
3363
+ version = "1.9.0"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3366
+
3367
+ [[package]]
3368
+ name = "zerotrie"
3369
+ version = "0.2.4"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3372
+ dependencies = [
3373
+ "displaydoc",
3374
+ "yoke",
3375
+ "zerofrom",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "zerovec"
3380
+ version = "0.11.6"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3383
+ dependencies = [
3384
+ "yoke",
3385
+ "zerofrom",
3386
+ "zerovec-derive",
3387
+ ]
3388
+
3389
+ [[package]]
3390
+ name = "zerovec-derive"
3391
+ version = "0.11.3"
3392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3393
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3394
+ dependencies = [
3395
+ "proc-macro2",
3396
+ "quote",
3397
+ "syn",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "zmij"
3402
+ version = "1.0.21"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3405
+
3406
+ [[package]]
3407
+ name = "zune-core"
3408
+ version = "0.5.1"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
3411
+
3412
+ [[package]]
3413
+ name = "zune-jpeg"
3414
+ version = "0.5.15"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
3417
+ dependencies = [
3418
+ "zune-core",
3419
+ ]