voidcrawl 0.1.9__tar.gz

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