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