lavende 0.1.13__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 (75) hide show
  1. lavende-0.1.13/Cargo.lock +4411 -0
  2. lavende-0.1.13/Cargo.toml +3 -0
  3. lavende-0.1.13/PKG-INFO +21 -0
  4. lavende-0.1.13/lavende/__init__.py +528 -0
  5. lavende-0.1.13/lavende/constants.py +247 -0
  6. lavende-0.1.13/lavende/lavende.pdb +0 -0
  7. lavende-0.1.13/library/Cargo.lock +3984 -0
  8. lavende-0.1.13/library/Cargo.toml +69 -0
  9. lavende-0.1.13/library/README.md +393 -0
  10. lavende-0.1.13/library/src/audio/buffer.rs +322 -0
  11. lavende-0.1.13/library/src/audio/codec.rs +137 -0
  12. lavende-0.1.13/library/src/audio/constants.rs +39 -0
  13. lavende-0.1.13/library/src/audio/demux.rs +192 -0
  14. lavende-0.1.13/library/src/audio/effects.rs +516 -0
  15. lavende-0.1.13/library/src/audio/engine.rs +134 -0
  16. lavende-0.1.13/library/src/audio/error.rs +8 -0
  17. lavende-0.1.13/library/src/audio/filters.rs +2481 -0
  18. lavende-0.1.13/library/src/audio/flow.rs +141 -0
  19. lavende-0.1.13/library/src/audio/frame.rs +23 -0
  20. lavende-0.1.13/library/src/audio/mix.rs +336 -0
  21. lavende-0.1.13/library/src/audio/mod.rs +20 -0
  22. lavende-0.1.13/library/src/audio/playback.rs +168 -0
  23. lavende-0.1.13/library/src/audio/processor.rs +317 -0
  24. lavende-0.1.13/library/src/audio/resample.rs +356 -0
  25. lavende-0.1.13/library/src/audio/source.rs +838 -0
  26. lavende-0.1.13/library/src/common.rs +887 -0
  27. lavende-0.1.13/library/src/config.rs +1326 -0
  28. lavende-0.1.13/library/src/events.rs +33 -0
  29. lavende-0.1.13/library/src/gateway.rs +2087 -0
  30. lavende-0.1.13/library/src/lib.rs +69 -0
  31. lavende-0.1.13/library/src/pipeline.rs +232 -0
  32. lavende-0.1.13/library/src/player.rs +450 -0
  33. lavende-0.1.13/library/src/protocol.rs +669 -0
  34. lavende-0.1.13/library/src/routeplanner.rs +224 -0
  35. lavende-0.1.13/library/src/sources/amazonmusic.rs +2915 -0
  36. lavende-0.1.13/library/src/sources/anghami.rs +703 -0
  37. lavende-0.1.13/library/src/sources/applemusic.rs +846 -0
  38. lavende-0.1.13/library/src/sources/audiomack.rs +668 -0
  39. lavende-0.1.13/library/src/sources/audius.rs +372 -0
  40. lavende-0.1.13/library/src/sources/bandcamp.rs +342 -0
  41. lavende-0.1.13/library/src/sources/deezer.rs +1509 -0
  42. lavende-0.1.13/library/src/sources/flowery.rs +164 -0
  43. lavende-0.1.13/library/src/sources/gaana.rs +746 -0
  44. lavende-0.1.13/library/src/sources/google_tts.rs +113 -0
  45. lavende-0.1.13/library/src/sources/http.rs +233 -0
  46. lavende-0.1.13/library/src/sources/jiosaavn.rs +1003 -0
  47. lavende-0.1.13/library/src/sources/lastfm.rs +693 -0
  48. lavende-0.1.13/library/src/sources/local.rs +227 -0
  49. lavende-0.1.13/library/src/sources/manager.rs +984 -0
  50. lavende-0.1.13/library/src/sources/mixcloud.rs +567 -0
  51. lavende-0.1.13/library/src/sources/mod.rs +32 -0
  52. lavende-0.1.13/library/src/sources/netease.rs +920 -0
  53. lavende-0.1.13/library/src/sources/pandora.rs +962 -0
  54. lavende-0.1.13/library/src/sources/playable_track.rs +87 -0
  55. lavende-0.1.13/library/src/sources/plugin.rs +48 -0
  56. lavende-0.1.13/library/src/sources/qobuz.rs +842 -0
  57. lavende-0.1.13/library/src/sources/reddit.rs +251 -0
  58. lavende-0.1.13/library/src/sources/shazam.rs +420 -0
  59. lavende-0.1.13/library/src/sources/soundcloud.rs +1434 -0
  60. lavende-0.1.13/library/src/sources/spotify.rs +1467 -0
  61. lavende-0.1.13/library/src/sources/tidal.rs +939 -0
  62. lavende-0.1.13/library/src/sources/twitch.rs +589 -0
  63. lavende-0.1.13/library/src/sources/vkmusic.rs +710 -0
  64. lavende-0.1.13/library/src/sources/yandexmusic.rs +569 -0
  65. lavende-0.1.13/library/src/sources/youtube/clients.rs +3527 -0
  66. lavende-0.1.13/library/src/sources/youtube/hls.rs +889 -0
  67. lavende-0.1.13/library/src/sources/youtube/mod.rs +1879 -0
  68. lavende-0.1.13/library/src/transport.rs +135 -0
  69. lavende-0.1.13/library/src/utils.rs +8 -0
  70. lavende-0.1.13/pyproject.toml +36 -0
  71. lavende-0.1.13/src/python/.gitignore +44 -0
  72. lavende-0.1.13/src/python/Cargo.toml +17 -0
  73. lavende-0.1.13/src/python/requirements.txt +4 -0
  74. lavende-0.1.13/src/python/src/lib.rs +21 -0
  75. lavende-0.1.13/src/python/src/player.rs +117 -0
@@ -0,0 +1,4411 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common 0.1.7",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher 0.4.4",
29
+ "cpufeatures 0.2.17",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher 0.4.4",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "aho-corasick"
48
+ version = "1.1.4"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
51
+ dependencies = [
52
+ "memchr",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anstream"
57
+ version = "1.0.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
60
+ dependencies = [
61
+ "anstyle",
62
+ "anstyle-parse",
63
+ "anstyle-query",
64
+ "anstyle-wincon",
65
+ "colorchoice",
66
+ "is_terminal_polyfill",
67
+ "utf8parse",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anstyle"
72
+ version = "1.0.14"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
75
+
76
+ [[package]]
77
+ name = "anstyle-parse"
78
+ version = "1.0.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
81
+ dependencies = [
82
+ "utf8parse",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anstyle-query"
87
+ version = "1.1.5"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
90
+ dependencies = [
91
+ "windows-sys 0.61.2",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anstyle-wincon"
96
+ version = "3.0.11"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
99
+ dependencies = [
100
+ "anstyle",
101
+ "once_cell_polyfill",
102
+ "windows-sys 0.61.2",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "arrayvec"
107
+ version = "0.7.8"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
110
+
111
+ [[package]]
112
+ name = "async-compression"
113
+ version = "0.4.42"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
116
+ dependencies = [
117
+ "compression-codecs",
118
+ "compression-core",
119
+ "pin-project-lite",
120
+ "tokio",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "async-trait"
125
+ version = "0.1.89"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
128
+ dependencies = [
129
+ "proc-macro2",
130
+ "quote",
131
+ "syn",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "atomic-waker"
136
+ version = "1.1.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
139
+
140
+ [[package]]
141
+ name = "audiopus"
142
+ version = "0.3.0-rc.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "ab55eb0e56d7c6de3d59f544e5db122d7725ec33be6a276ee8241f3be6473955"
145
+ dependencies = [
146
+ "audiopus_sys",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "audiopus_sys"
151
+ version = "0.2.2"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "62314a1546a2064e033665d658e88c620a62904be945f8147e6b16c3db9f8651"
154
+ dependencies = [
155
+ "cmake",
156
+ "log",
157
+ "pkg-config",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "autocfg"
162
+ version = "1.5.1"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
165
+
166
+ [[package]]
167
+ name = "base16ct"
168
+ version = "0.2.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
171
+
172
+ [[package]]
173
+ name = "base64"
174
+ version = "0.22.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
177
+
178
+ [[package]]
179
+ name = "base64ct"
180
+ version = "1.8.3"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
183
+
184
+ [[package]]
185
+ name = "bitflags"
186
+ version = "1.3.2"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
189
+
190
+ [[package]]
191
+ name = "bitflags"
192
+ version = "2.13.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
195
+
196
+ [[package]]
197
+ name = "block-buffer"
198
+ version = "0.10.4"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
201
+ dependencies = [
202
+ "generic-array",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "block-padding"
207
+ version = "0.3.3"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
210
+ dependencies = [
211
+ "generic-array",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "block-padding"
216
+ version = "0.4.2"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "710f1dd022ef4e93f8a438b4ba958de7f64308434fa6a87104481645cc30068b"
219
+ dependencies = [
220
+ "hybrid-array",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "blowfish"
225
+ version = "0.9.1"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
228
+ dependencies = [
229
+ "byteorder",
230
+ "cipher 0.4.4",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "bumpalo"
235
+ version = "3.20.3"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
238
+
239
+ [[package]]
240
+ name = "bytemuck"
241
+ version = "1.25.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
244
+
245
+ [[package]]
246
+ name = "byteorder"
247
+ version = "1.5.0"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
250
+
251
+ [[package]]
252
+ name = "bytes"
253
+ version = "1.12.0"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
256
+
257
+ [[package]]
258
+ name = "cbc"
259
+ version = "0.1.2"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
262
+ dependencies = [
263
+ "cipher 0.4.4",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "cbindgen"
268
+ version = "0.27.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "3fce8dd7fcfcbf3a0a87d8f515194b49d6135acab73e18bd380d1d93bb1a15eb"
271
+ dependencies = [
272
+ "clap",
273
+ "heck 0.4.1",
274
+ "indexmap",
275
+ "log",
276
+ "proc-macro2",
277
+ "quote",
278
+ "serde",
279
+ "serde_json",
280
+ "syn",
281
+ "tempfile",
282
+ "toml 0.8.23",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "cc"
287
+ version = "1.2.65"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
290
+ dependencies = [
291
+ "find-msvc-tools",
292
+ "shlex",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "cfg-if"
297
+ version = "1.0.4"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
300
+
301
+ [[package]]
302
+ name = "cfg_aliases"
303
+ version = "0.2.1"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
306
+
307
+ [[package]]
308
+ name = "chacha20"
309
+ version = "0.9.1"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
312
+ dependencies = [
313
+ "cfg-if",
314
+ "cipher 0.4.4",
315
+ "cpufeatures 0.2.17",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "chacha20"
320
+ version = "0.10.1"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
323
+ dependencies = [
324
+ "cfg-if",
325
+ "cpufeatures 0.3.0",
326
+ "rand_core 0.10.1",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "chacha20poly1305"
331
+ version = "0.10.1"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
334
+ dependencies = [
335
+ "aead",
336
+ "chacha20 0.9.1",
337
+ "cipher 0.4.4",
338
+ "poly1305",
339
+ "zeroize",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "cipher"
344
+ version = "0.4.4"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
347
+ dependencies = [
348
+ "crypto-common 0.1.7",
349
+ "inout 0.1.4",
350
+ "zeroize",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "cipher"
355
+ version = "0.5.2"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
358
+ dependencies = [
359
+ "crypto-common 0.2.2",
360
+ "inout 0.2.2",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "clap"
365
+ version = "4.6.1"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
368
+ dependencies = [
369
+ "clap_builder",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "clap_builder"
374
+ version = "4.6.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
377
+ dependencies = [
378
+ "anstream",
379
+ "anstyle",
380
+ "clap_lex",
381
+ "strsim",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "clap_lex"
386
+ version = "1.1.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
389
+
390
+ [[package]]
391
+ name = "cmake"
392
+ version = "0.1.58"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
395
+ dependencies = [
396
+ "cc",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "colorchoice"
401
+ version = "1.0.5"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
404
+
405
+ [[package]]
406
+ name = "compression-codecs"
407
+ version = "0.4.38"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
410
+ dependencies = [
411
+ "compression-core",
412
+ "flate2",
413
+ "memchr",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "compression-core"
418
+ version = "0.4.32"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
421
+
422
+ [[package]]
423
+ name = "const-oid"
424
+ version = "0.9.6"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
427
+
428
+ [[package]]
429
+ name = "convert_case"
430
+ version = "0.6.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
433
+ dependencies = [
434
+ "unicode-segmentation",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "cookie"
439
+ version = "0.18.1"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
442
+ dependencies = [
443
+ "percent-encoding",
444
+ "time",
445
+ "version_check",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "cookie_store"
450
+ version = "0.22.0"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "3fc4bff745c9b4c7fb1e97b25d13153da2bc7796260141df62378998d070207f"
453
+ dependencies = [
454
+ "cookie",
455
+ "document-features",
456
+ "idna",
457
+ "log",
458
+ "publicsuffix",
459
+ "serde",
460
+ "serde_derive",
461
+ "serde_json",
462
+ "time",
463
+ "url",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "core-foundation"
468
+ version = "0.9.4"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
471
+ dependencies = [
472
+ "core-foundation-sys",
473
+ "libc",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "core-foundation-sys"
478
+ version = "0.8.7"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
481
+
482
+ [[package]]
483
+ name = "core-models"
484
+ version = "0.0.5"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "657f625ff361906f779745d08375ae3cc9fef87a35fba5f22874cf773010daf4"
487
+ dependencies = [
488
+ "hax-lib",
489
+ "pastey",
490
+ "rand 0.9.4",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "cpufeatures"
495
+ version = "0.2.17"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
498
+ dependencies = [
499
+ "libc",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "cpufeatures"
504
+ version = "0.3.0"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
507
+ dependencies = [
508
+ "libc",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "crc32fast"
513
+ version = "1.5.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
516
+ dependencies = [
517
+ "cfg-if",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "crossbeam-deque"
522
+ version = "0.8.6"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
525
+ dependencies = [
526
+ "crossbeam-epoch",
527
+ "crossbeam-utils",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "crossbeam-epoch"
532
+ version = "0.9.18"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
535
+ dependencies = [
536
+ "crossbeam-utils",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "crossbeam-utils"
541
+ version = "0.8.21"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
544
+
545
+ [[package]]
546
+ name = "crypto-bigint"
547
+ version = "0.5.5"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
550
+ dependencies = [
551
+ "generic-array",
552
+ "rand_core 0.6.4",
553
+ "subtle",
554
+ "zeroize",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "crypto-common"
559
+ version = "0.1.7"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
562
+ dependencies = [
563
+ "generic-array",
564
+ "rand_core 0.6.4",
565
+ "typenum",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "crypto-common"
570
+ version = "0.2.2"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
573
+ dependencies = [
574
+ "hybrid-array",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "ctor"
579
+ version = "0.2.9"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
582
+ dependencies = [
583
+ "quote",
584
+ "syn",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "ctr"
589
+ version = "0.9.2"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
592
+ dependencies = [
593
+ "cipher 0.4.4",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "curve25519-dalek"
598
+ version = "4.1.3"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
601
+ dependencies = [
602
+ "cfg-if",
603
+ "cpufeatures 0.2.17",
604
+ "curve25519-dalek-derive",
605
+ "digest",
606
+ "fiat-crypto",
607
+ "rustc_version",
608
+ "subtle",
609
+ "zeroize",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "curve25519-dalek-derive"
614
+ version = "0.1.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
617
+ dependencies = [
618
+ "proc-macro2",
619
+ "quote",
620
+ "syn",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "dashmap"
625
+ version = "6.2.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
628
+ dependencies = [
629
+ "cfg-if",
630
+ "crossbeam-utils",
631
+ "hashbrown 0.14.5",
632
+ "lock_api",
633
+ "once_cell",
634
+ "parking_lot_core 0.9.12",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "data-encoding"
639
+ version = "2.11.0"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
642
+
643
+ [[package]]
644
+ name = "davey"
645
+ version = "0.1.4"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "25028cc2ec8cd43138ca0d2c71d7f6019196238ebd6edea11dd35276fa85b860"
648
+ dependencies = [
649
+ "aead",
650
+ "aes",
651
+ "cipher 0.4.4",
652
+ "ctr",
653
+ "ghash",
654
+ "hex-literal",
655
+ "hmac",
656
+ "num-derive",
657
+ "num-traits",
658
+ "openmls",
659
+ "openmls_basic_credential",
660
+ "openmls_rust_crypto",
661
+ "p256",
662
+ "rand 0.8.6",
663
+ "scrypt",
664
+ "sha2",
665
+ "subtle",
666
+ "thiserror 2.0.18",
667
+ "tracing",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "der"
672
+ version = "0.7.10"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
675
+ dependencies = [
676
+ "const-oid",
677
+ "pem-rfc7468",
678
+ "zeroize",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "deranged"
683
+ version = "0.3.11"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
686
+ dependencies = [
687
+ "powerfmt",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "des"
692
+ version = "0.8.1"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e"
695
+ dependencies = [
696
+ "cipher 0.4.4",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "digest"
701
+ version = "0.10.7"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
704
+ dependencies = [
705
+ "block-buffer",
706
+ "const-oid",
707
+ "crypto-common 0.1.7",
708
+ "subtle",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "displaydoc"
713
+ version = "0.2.6"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
716
+ dependencies = [
717
+ "proc-macro2",
718
+ "quote",
719
+ "syn",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "document-features"
724
+ version = "0.2.12"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
727
+ dependencies = [
728
+ "litrs",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "ecdsa"
733
+ version = "0.16.9"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
736
+ dependencies = [
737
+ "der",
738
+ "digest",
739
+ "elliptic-curve",
740
+ "rfc6979",
741
+ "signature",
742
+ "spki",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "ed25519"
747
+ version = "2.2.3"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
750
+ dependencies = [
751
+ "pkcs8",
752
+ "signature",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "ed25519-dalek"
757
+ version = "2.2.0"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
760
+ dependencies = [
761
+ "curve25519-dalek",
762
+ "ed25519",
763
+ "rand_core 0.6.4",
764
+ "serde",
765
+ "sha2",
766
+ "subtle",
767
+ "zeroize",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "either"
772
+ version = "1.16.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
775
+
776
+ [[package]]
777
+ name = "elliptic-curve"
778
+ version = "0.13.8"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
781
+ dependencies = [
782
+ "base16ct",
783
+ "crypto-bigint",
784
+ "digest",
785
+ "ff",
786
+ "generic-array",
787
+ "group",
788
+ "hkdf",
789
+ "pem-rfc7468",
790
+ "pkcs8",
791
+ "rand_core 0.6.4",
792
+ "sec1",
793
+ "subtle",
794
+ "zeroize",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "encoding_rs"
799
+ version = "0.8.35"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
802
+ dependencies = [
803
+ "cfg-if",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "equivalent"
808
+ version = "1.0.2"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
811
+
812
+ [[package]]
813
+ name = "errno"
814
+ version = "0.3.14"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
817
+ dependencies = [
818
+ "libc",
819
+ "windows-sys 0.61.2",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "extended"
824
+ version = "0.1.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365"
827
+
828
+ [[package]]
829
+ name = "fastrand"
830
+ version = "2.4.1"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
833
+
834
+ [[package]]
835
+ name = "ff"
836
+ version = "0.13.1"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
839
+ dependencies = [
840
+ "rand_core 0.6.4",
841
+ "subtle",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "fiat-crypto"
846
+ version = "0.2.9"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
849
+
850
+ [[package]]
851
+ name = "find-msvc-tools"
852
+ version = "0.1.9"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
855
+
856
+ [[package]]
857
+ name = "flate2"
858
+ version = "1.1.9"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
861
+ dependencies = [
862
+ "crc32fast",
863
+ "miniz_oxide",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "flume"
868
+ version = "0.11.1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
871
+ dependencies = [
872
+ "futures-core",
873
+ "futures-sink",
874
+ "nanorand",
875
+ "spin",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "fluvio-wasm-timer"
880
+ version = "0.2.5"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "b768c170dc045fa587a8f948c91f9bcfb87f774930477c6215addf54317f137f"
883
+ dependencies = [
884
+ "futures",
885
+ "js-sys",
886
+ "parking_lot 0.11.2",
887
+ "pin-utils",
888
+ "wasm-bindgen",
889
+ "wasm-bindgen-futures",
890
+ "web-sys",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "form_urlencoded"
895
+ version = "1.2.2"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
898
+ dependencies = [
899
+ "percent-encoding",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "futures"
904
+ version = "0.3.32"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
907
+ dependencies = [
908
+ "futures-channel",
909
+ "futures-core",
910
+ "futures-executor",
911
+ "futures-io",
912
+ "futures-sink",
913
+ "futures-task",
914
+ "futures-util",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "futures-channel"
919
+ version = "0.3.32"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
922
+ dependencies = [
923
+ "futures-core",
924
+ "futures-sink",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "futures-core"
929
+ version = "0.3.32"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
932
+
933
+ [[package]]
934
+ name = "futures-executor"
935
+ version = "0.3.32"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
938
+ dependencies = [
939
+ "futures-core",
940
+ "futures-task",
941
+ "futures-util",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "futures-io"
946
+ version = "0.3.32"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
949
+
950
+ [[package]]
951
+ name = "futures-macro"
952
+ version = "0.3.32"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
955
+ dependencies = [
956
+ "proc-macro2",
957
+ "quote",
958
+ "syn",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "futures-sink"
963
+ version = "0.3.32"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
966
+
967
+ [[package]]
968
+ name = "futures-task"
969
+ version = "0.3.32"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
972
+
973
+ [[package]]
974
+ name = "futures-util"
975
+ version = "0.3.32"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
978
+ dependencies = [
979
+ "futures-channel",
980
+ "futures-core",
981
+ "futures-io",
982
+ "futures-macro",
983
+ "futures-sink",
984
+ "futures-task",
985
+ "memchr",
986
+ "pin-project-lite",
987
+ "slab",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "generic-array"
992
+ version = "0.14.7"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
995
+ dependencies = [
996
+ "typenum",
997
+ "version_check",
998
+ "zeroize",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "getrandom"
1003
+ version = "0.2.17"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1006
+ dependencies = [
1007
+ "cfg-if",
1008
+ "js-sys",
1009
+ "libc",
1010
+ "wasi",
1011
+ "wasm-bindgen",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "getrandom"
1016
+ version = "0.3.4"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1019
+ dependencies = [
1020
+ "cfg-if",
1021
+ "js-sys",
1022
+ "libc",
1023
+ "r-efi 5.3.0",
1024
+ "wasip2",
1025
+ "wasm-bindgen",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "getrandom"
1030
+ version = "0.4.3"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1033
+ dependencies = [
1034
+ "cfg-if",
1035
+ "libc",
1036
+ "r-efi 6.0.0",
1037
+ "rand_core 0.10.1",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "ghash"
1042
+ version = "0.5.1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1045
+ dependencies = [
1046
+ "opaque-debug",
1047
+ "polyval",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "group"
1052
+ version = "0.13.0"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1055
+ dependencies = [
1056
+ "ff",
1057
+ "rand_core 0.6.4",
1058
+ "subtle",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "hashbrown"
1063
+ version = "0.14.5"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1066
+
1067
+ [[package]]
1068
+ name = "hashbrown"
1069
+ version = "0.17.1"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1072
+
1073
+ [[package]]
1074
+ name = "hax-lib"
1075
+ version = "0.3.6"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "543f93241d32b3f00569201bfce9d7a93c92c6421b23c77864ac929dc947b9fc"
1078
+ dependencies = [
1079
+ "hax-lib-macros",
1080
+ "num-bigint",
1081
+ "num-traits",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "hax-lib-macros"
1086
+ version = "0.3.6"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "f8755751e760b11021765bb04cb4a6c4e24742688d9f3aa14c2079638f537b0f"
1089
+ dependencies = [
1090
+ "hax-lib-macros-types",
1091
+ "proc-macro-error2",
1092
+ "proc-macro2",
1093
+ "quote",
1094
+ "syn",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "hax-lib-macros-types"
1099
+ version = "0.3.6"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "f177c9ae8ea456e2f71ff3c1ea47bf4464f772a05133fcbba56cd5ba169035a2"
1102
+ dependencies = [
1103
+ "proc-macro2",
1104
+ "quote",
1105
+ "serde",
1106
+ "serde_json",
1107
+ "uuid",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "heck"
1112
+ version = "0.4.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1115
+
1116
+ [[package]]
1117
+ name = "heck"
1118
+ version = "0.5.0"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1121
+
1122
+ [[package]]
1123
+ name = "hex"
1124
+ version = "0.4.3"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1127
+
1128
+ [[package]]
1129
+ name = "hex-literal"
1130
+ version = "0.3.4"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
1133
+
1134
+ [[package]]
1135
+ name = "hkdf"
1136
+ version = "0.12.4"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1139
+ dependencies = [
1140
+ "hmac",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "hmac"
1145
+ version = "0.12.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1148
+ dependencies = [
1149
+ "digest",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "hpke-rs"
1154
+ version = "0.6.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "b6ad6a58eb3e0ee30be8bfc7a9770ae98adcfa1d9bc820a5847732ce84f70837"
1157
+ dependencies = [
1158
+ "hpke-rs-crypto",
1159
+ "hpke-rs-libcrux",
1160
+ "hpke-rs-rust-crypto",
1161
+ "libcrux-sha3",
1162
+ "log",
1163
+ "rand_core 0.9.5",
1164
+ "serde",
1165
+ "subtle",
1166
+ "tls_codec",
1167
+ "zeroize",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "hpke-rs-crypto"
1172
+ version = "0.6.1"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "0a73a99d9008010d73289f41335a3f6e14fb8c04eaf60e9111b450463b1bbc7f"
1175
+ dependencies = [
1176
+ "rand_core 0.9.5",
1177
+ "zeroize",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "hpke-rs-libcrux"
1182
+ version = "0.6.1"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "c0ce6b7e54aebe540faee869c67ee253bede44ea6cb67c6e72c7847d6c59f1df"
1185
+ dependencies = [
1186
+ "hpke-rs-crypto",
1187
+ "libcrux-aead",
1188
+ "libcrux-ecdh",
1189
+ "libcrux-hkdf",
1190
+ "libcrux-kem",
1191
+ "libcrux-traits",
1192
+ "rand 0.10.2",
1193
+ "rand_chacha 0.10.0",
1194
+ "rand_core 0.10.1",
1195
+ "zeroize",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "hpke-rs-rust-crypto"
1200
+ version = "0.6.1"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "14b28be6cba9081c7feda2651d51c2a900029798e78b4c1e093e792f4571a870"
1203
+ dependencies = [
1204
+ "aes-gcm",
1205
+ "chacha20poly1305",
1206
+ "hkdf",
1207
+ "hpke-rs-crypto",
1208
+ "k256",
1209
+ "p256",
1210
+ "p384",
1211
+ "rand 0.8.6",
1212
+ "rand_chacha 0.3.1",
1213
+ "rand_core 0.10.1",
1214
+ "rand_core 0.6.4",
1215
+ "sha2",
1216
+ "subtle",
1217
+ "x25519-dalek",
1218
+ "zeroize",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "http"
1223
+ version = "1.4.2"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1226
+ dependencies = [
1227
+ "bytes",
1228
+ "itoa",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "http-body"
1233
+ version = "1.0.1"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1236
+ dependencies = [
1237
+ "bytes",
1238
+ "http",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "http-body-util"
1243
+ version = "0.1.3"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1246
+ dependencies = [
1247
+ "bytes",
1248
+ "futures-core",
1249
+ "http",
1250
+ "http-body",
1251
+ "pin-project-lite",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "httparse"
1256
+ version = "1.10.1"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1259
+
1260
+ [[package]]
1261
+ name = "hybrid-array"
1262
+ version = "0.4.13"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
1265
+ dependencies = [
1266
+ "typenum",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "hyper"
1271
+ version = "1.10.1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1274
+ dependencies = [
1275
+ "atomic-waker",
1276
+ "bytes",
1277
+ "futures-channel",
1278
+ "futures-core",
1279
+ "http",
1280
+ "http-body",
1281
+ "httparse",
1282
+ "itoa",
1283
+ "pin-project-lite",
1284
+ "smallvec",
1285
+ "tokio",
1286
+ "want",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "hyper-rustls"
1291
+ version = "0.27.9"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1294
+ dependencies = [
1295
+ "http",
1296
+ "hyper",
1297
+ "hyper-util",
1298
+ "rustls 0.23.41",
1299
+ "tokio",
1300
+ "tokio-rustls 0.26.4",
1301
+ "tower-service",
1302
+ "webpki-roots",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "hyper-util"
1307
+ version = "0.1.20"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1310
+ dependencies = [
1311
+ "base64",
1312
+ "bytes",
1313
+ "futures-channel",
1314
+ "futures-util",
1315
+ "http",
1316
+ "http-body",
1317
+ "hyper",
1318
+ "ipnet",
1319
+ "libc",
1320
+ "percent-encoding",
1321
+ "pin-project-lite",
1322
+ "socket2",
1323
+ "tokio",
1324
+ "tower-service",
1325
+ "tracing",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "icu_collections"
1330
+ version = "2.2.0"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1333
+ dependencies = [
1334
+ "displaydoc",
1335
+ "potential_utf",
1336
+ "utf8_iter",
1337
+ "yoke",
1338
+ "zerofrom",
1339
+ "zerovec",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "icu_locale_core"
1344
+ version = "2.2.0"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1347
+ dependencies = [
1348
+ "displaydoc",
1349
+ "litemap",
1350
+ "tinystr",
1351
+ "writeable",
1352
+ "zerovec",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "icu_normalizer"
1357
+ version = "2.2.0"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1360
+ dependencies = [
1361
+ "icu_collections",
1362
+ "icu_normalizer_data",
1363
+ "icu_properties",
1364
+ "icu_provider",
1365
+ "smallvec",
1366
+ "zerovec",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "icu_normalizer_data"
1371
+ version = "2.2.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1374
+
1375
+ [[package]]
1376
+ name = "icu_properties"
1377
+ version = "2.2.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1380
+ dependencies = [
1381
+ "icu_collections",
1382
+ "icu_locale_core",
1383
+ "icu_properties_data",
1384
+ "icu_provider",
1385
+ "zerotrie",
1386
+ "zerovec",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "icu_properties_data"
1391
+ version = "2.2.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1394
+
1395
+ [[package]]
1396
+ name = "icu_provider"
1397
+ version = "2.2.0"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1400
+ dependencies = [
1401
+ "displaydoc",
1402
+ "icu_locale_core",
1403
+ "writeable",
1404
+ "yoke",
1405
+ "zerofrom",
1406
+ "zerotrie",
1407
+ "zerovec",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "idna"
1412
+ version = "1.1.0"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1415
+ dependencies = [
1416
+ "idna_adapter",
1417
+ "smallvec",
1418
+ "utf8_iter",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "idna_adapter"
1423
+ version = "1.2.2"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1426
+ dependencies = [
1427
+ "icu_normalizer",
1428
+ "icu_properties",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "indexmap"
1433
+ version = "2.14.0"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1436
+ dependencies = [
1437
+ "equivalent",
1438
+ "hashbrown 0.17.1",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "indoc"
1443
+ version = "2.0.7"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1446
+ dependencies = [
1447
+ "rustversion",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "inout"
1452
+ version = "0.1.4"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1455
+ dependencies = [
1456
+ "block-padding 0.3.3",
1457
+ "generic-array",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "inout"
1462
+ version = "0.2.2"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
1465
+ dependencies = [
1466
+ "hybrid-array",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "instant"
1471
+ version = "0.1.13"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1474
+ dependencies = [
1475
+ "cfg-if",
1476
+ "js-sys",
1477
+ "wasm-bindgen",
1478
+ "web-sys",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "ipnet"
1483
+ version = "2.12.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1486
+
1487
+ [[package]]
1488
+ name = "is_terminal_polyfill"
1489
+ version = "1.70.2"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1492
+
1493
+ [[package]]
1494
+ name = "itoa"
1495
+ version = "1.0.18"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1498
+
1499
+ [[package]]
1500
+ name = "js-sys"
1501
+ version = "0.3.103"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1504
+ dependencies = [
1505
+ "cfg-if",
1506
+ "futures-util",
1507
+ "wasm-bindgen",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "k256"
1512
+ version = "0.13.4"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
1515
+ dependencies = [
1516
+ "cfg-if",
1517
+ "elliptic-curve",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "lavende"
1522
+ version = "0.1.13"
1523
+ dependencies = [
1524
+ "async-trait",
1525
+ "dashmap",
1526
+ "futures",
1527
+ "lavende-core",
1528
+ "rand 0.10.2",
1529
+ "serde",
1530
+ "serde_json",
1531
+ "thiserror 2.0.18",
1532
+ "tokio",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "lavende-core"
1537
+ version = "0.1.6"
1538
+ dependencies = [
1539
+ "aes",
1540
+ "async-trait",
1541
+ "audiopus",
1542
+ "base64",
1543
+ "block-padding 0.4.2",
1544
+ "blowfish",
1545
+ "byteorder",
1546
+ "bytes",
1547
+ "cbc",
1548
+ "cipher 0.5.2",
1549
+ "ctr",
1550
+ "dashmap",
1551
+ "davey",
1552
+ "des",
1553
+ "flume",
1554
+ "futures",
1555
+ "futures-util",
1556
+ "hex",
1557
+ "hmac",
1558
+ "ipnet",
1559
+ "md-5",
1560
+ "parking_lot 0.12.5",
1561
+ "rand 0.8.6",
1562
+ "regex",
1563
+ "reqwest",
1564
+ "serde",
1565
+ "serde_json",
1566
+ "sha1",
1567
+ "sha2",
1568
+ "symphonia",
1569
+ "thiserror 2.0.18",
1570
+ "time",
1571
+ "tokio",
1572
+ "tokio-tungstenite",
1573
+ "tokio-util",
1574
+ "toml 1.1.2+spec-1.1.0",
1575
+ "tracing",
1576
+ "tracing-log",
1577
+ "tracing-subscriber",
1578
+ "urlencoding",
1579
+ "uuid",
1580
+ "xsalsa20poly1305",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "lavende-node"
1585
+ version = "0.1.0"
1586
+ dependencies = [
1587
+ "lavende-core",
1588
+ "napi",
1589
+ "napi-build",
1590
+ "napi-derive",
1591
+ "serde_json",
1592
+ "tokio",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "lavende-python"
1597
+ version = "0.1.13"
1598
+ dependencies = [
1599
+ "lavende-core",
1600
+ "pyo3",
1601
+ "pyo3-async-runtimes",
1602
+ "serde_json",
1603
+ "tokio",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "lavende_go"
1608
+ version = "0.1.13"
1609
+ dependencies = [
1610
+ "cbindgen",
1611
+ "lavende",
1612
+ "libc",
1613
+ "once_cell",
1614
+ "serde_json",
1615
+ "tokio",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "lazy_static"
1620
+ version = "1.5.0"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1623
+
1624
+ [[package]]
1625
+ name = "libc"
1626
+ version = "0.2.186"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1629
+
1630
+ [[package]]
1631
+ name = "libcrux-aead"
1632
+ version = "0.0.7"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "13297ce29869a5c0edab0378837b0fc5f88bf99a843712d9201c3b1150b3b476"
1635
+ dependencies = [
1636
+ "libcrux-aesgcm",
1637
+ "libcrux-chacha20poly1305",
1638
+ "libcrux-secrets",
1639
+ "libcrux-traits",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "libcrux-aesgcm"
1644
+ version = "0.0.7"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "99f2a019dab4097585a7d4f5b9deebe46cd1e628b16a5bc4cb0ce35e1da334e6"
1647
+ dependencies = [
1648
+ "libcrux-intrinsics",
1649
+ "libcrux-platform",
1650
+ "libcrux-secrets",
1651
+ "libcrux-traits",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "libcrux-chacha20poly1305"
1656
+ version = "0.0.7"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "cc08d044676af21343b32b988411fa98dbb5cf65a03c9df478ced221bbdfdb1b"
1659
+ dependencies = [
1660
+ "libcrux-hacl-rs",
1661
+ "libcrux-macros",
1662
+ "libcrux-poly1305",
1663
+ "libcrux-secrets",
1664
+ "libcrux-traits",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "libcrux-curve25519"
1669
+ version = "0.0.6"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "bb1e5fd8476a6ed609d24ef42aee5ab6f99f7c65d054f92412da9f499e423299"
1672
+ dependencies = [
1673
+ "libcrux-hacl-rs",
1674
+ "libcrux-macros",
1675
+ "libcrux-secrets",
1676
+ "libcrux-traits",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "libcrux-ecdh"
1681
+ version = "0.0.6"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "b65f73ce79337c762eb38bbac91e4c9b9e60cf318e8501b812750c640814d45e"
1684
+ dependencies = [
1685
+ "libcrux-curve25519",
1686
+ "libcrux-p256",
1687
+ "rand 0.9.4",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "libcrux-hacl-rs"
1692
+ version = "0.0.4"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "2637dc87d158e1f1b550fd9b226443e84153fded4de69028d897b534d16d22e6"
1695
+ dependencies = [
1696
+ "libcrux-macros",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "libcrux-hkdf"
1701
+ version = "0.0.6"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "8c1a89ca0c89be3a268a921e47105fb7873badf7267f5e3ebf4ea46baedd73ef"
1704
+ dependencies = [
1705
+ "libcrux-hacl-rs",
1706
+ "libcrux-hmac",
1707
+ "libcrux-secrets",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "libcrux-hmac"
1712
+ version = "0.0.6"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "8a7a242707d65960770bd7e14e4f18a92bdf0b967777dd404887db8d087a643b"
1715
+ dependencies = [
1716
+ "libcrux-hacl-rs",
1717
+ "libcrux-macros",
1718
+ "libcrux-sha2",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "libcrux-intrinsics"
1723
+ version = "0.0.6"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "b1b5db005ff8001e026b73a6842ee81bbef8ec5ff0e1915a67ae65fd2a9fafa5"
1726
+ dependencies = [
1727
+ "core-models",
1728
+ "hax-lib",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "libcrux-kem"
1733
+ version = "0.0.7"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "12631592f491d22fd1a176d32b2c6edfb673998fd3987e9d95f8fa79ad2a737b"
1736
+ dependencies = [
1737
+ "libcrux-curve25519",
1738
+ "libcrux-ecdh",
1739
+ "libcrux-ml-kem",
1740
+ "libcrux-p256",
1741
+ "libcrux-sha3",
1742
+ "libcrux-traits",
1743
+ "rand 0.9.4",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "libcrux-macros"
1748
+ version = "0.0.3"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "ffd6aa2dcd5be681662001b81d493f1569c6d49a32361f470b0c955465cd0338"
1751
+ dependencies = [
1752
+ "quote",
1753
+ "syn",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "libcrux-ml-kem"
1758
+ version = "0.0.8"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "a14ab3e477de9df6ee1273a114018ff62c4996ca9220070c4e5cb1743f94a67d"
1761
+ dependencies = [
1762
+ "hax-lib",
1763
+ "libcrux-intrinsics",
1764
+ "libcrux-platform",
1765
+ "libcrux-secrets",
1766
+ "libcrux-sha3",
1767
+ "libcrux-traits",
1768
+ "rand 0.9.4",
1769
+ "tls_codec",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "libcrux-p256"
1774
+ version = "0.0.6"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "f4778ba25cb08bb8a96bd100e19ed9aecf78337198fd176036e21042b2dd99bc"
1777
+ dependencies = [
1778
+ "libcrux-hacl-rs",
1779
+ "libcrux-macros",
1780
+ "libcrux-secrets",
1781
+ "libcrux-sha2",
1782
+ "libcrux-traits",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "libcrux-platform"
1787
+ version = "0.0.3"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "1d9e21d7ed31a92ac539bd69a8c970b183ee883872d2d19ce27036e24cb8ecc4"
1790
+ dependencies = [
1791
+ "libc",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "libcrux-poly1305"
1796
+ version = "0.0.5"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "02491808ee5b9db8cb65fad64ae0be812db64beef179d945c00c7787dc7dfcf9"
1799
+ dependencies = [
1800
+ "libcrux-hacl-rs",
1801
+ "libcrux-macros",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "libcrux-secrets"
1806
+ version = "0.0.5"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "1ce650f3041b44ba40d4263852347d007cd2cd9d1cc856a6f6c8b2e10c3fd40b"
1809
+ dependencies = [
1810
+ "hax-lib",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "libcrux-sha2"
1815
+ version = "0.0.6"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "e9d253473f259fc74a280c43f29c464f7e374abdf28b4942234dc707f529d4b7"
1818
+ dependencies = [
1819
+ "libcrux-hacl-rs",
1820
+ "libcrux-macros",
1821
+ "libcrux-traits",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "libcrux-sha3"
1826
+ version = "0.0.8"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "b1ae0b7d0e1cc4793a609fd0ff2ca3b3a3fabae523770c619a3d4bc86417b0d7"
1829
+ dependencies = [
1830
+ "hax-lib",
1831
+ "libcrux-intrinsics",
1832
+ "libcrux-platform",
1833
+ "libcrux-traits",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "libcrux-traits"
1838
+ version = "0.0.6"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "812e4fa89f3f5e34b47f928b22b1b78395a0d4ec23b1f583db635f128159d65f"
1841
+ dependencies = [
1842
+ "libcrux-secrets",
1843
+ "rand 0.9.4",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "libloading"
1848
+ version = "0.8.9"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1851
+ dependencies = [
1852
+ "cfg-if",
1853
+ "windows-link",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "linux-raw-sys"
1858
+ version = "0.12.1"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1861
+
1862
+ [[package]]
1863
+ name = "litemap"
1864
+ version = "0.8.2"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1867
+
1868
+ [[package]]
1869
+ name = "litrs"
1870
+ version = "1.0.0"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1873
+
1874
+ [[package]]
1875
+ name = "lock_api"
1876
+ version = "0.4.14"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1879
+ dependencies = [
1880
+ "scopeguard",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "log"
1885
+ version = "0.4.33"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1888
+
1889
+ [[package]]
1890
+ name = "lru-slab"
1891
+ version = "0.1.2"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1894
+
1895
+ [[package]]
1896
+ name = "matchers"
1897
+ version = "0.2.0"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1900
+ dependencies = [
1901
+ "regex-automata",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "md-5"
1906
+ version = "0.10.6"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1909
+ dependencies = [
1910
+ "cfg-if",
1911
+ "digest",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "memchr"
1916
+ version = "2.8.2"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1919
+
1920
+ [[package]]
1921
+ name = "memoffset"
1922
+ version = "0.9.1"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1925
+ dependencies = [
1926
+ "autocfg",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "miniz_oxide"
1931
+ version = "0.8.9"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1934
+ dependencies = [
1935
+ "adler2",
1936
+ "simd-adler32",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "mio"
1941
+ version = "1.2.1"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1944
+ dependencies = [
1945
+ "libc",
1946
+ "wasi",
1947
+ "windows-sys 0.61.2",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "nanorand"
1952
+ version = "0.7.0"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
1955
+ dependencies = [
1956
+ "getrandom 0.2.17",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "napi"
1961
+ version = "2.16.17"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
1964
+ dependencies = [
1965
+ "bitflags 2.13.0",
1966
+ "ctor",
1967
+ "napi-derive",
1968
+ "napi-sys",
1969
+ "once_cell",
1970
+ "tokio",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "napi-build"
1975
+ version = "2.3.2"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
1978
+
1979
+ [[package]]
1980
+ name = "napi-derive"
1981
+ version = "2.16.13"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
1984
+ dependencies = [
1985
+ "cfg-if",
1986
+ "convert_case",
1987
+ "napi-derive-backend",
1988
+ "proc-macro2",
1989
+ "quote",
1990
+ "syn",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "napi-derive-backend"
1995
+ version = "1.0.75"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
1998
+ dependencies = [
1999
+ "convert_case",
2000
+ "once_cell",
2001
+ "proc-macro2",
2002
+ "quote",
2003
+ "regex",
2004
+ "semver",
2005
+ "syn",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "napi-sys"
2010
+ version = "2.4.0"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
2013
+ dependencies = [
2014
+ "libloading",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "nu-ansi-term"
2019
+ version = "0.50.3"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2022
+ dependencies = [
2023
+ "windows-sys 0.61.2",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "num-bigint"
2028
+ version = "0.4.7"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "c863e9ab5e7bf9c99ba75e1050f1e4d624ae87ed3532d6238ffbdc7b585dbbe6"
2031
+ dependencies = [
2032
+ "num-integer",
2033
+ "num-traits",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "num-conv"
2038
+ version = "0.1.0"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2041
+
2042
+ [[package]]
2043
+ name = "num-derive"
2044
+ version = "0.4.2"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
2047
+ dependencies = [
2048
+ "proc-macro2",
2049
+ "quote",
2050
+ "syn",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "num-integer"
2055
+ version = "0.1.46"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2058
+ dependencies = [
2059
+ "num-traits",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "num-traits"
2064
+ version = "0.2.19"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2067
+ dependencies = [
2068
+ "autocfg",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "num_threads"
2073
+ version = "0.1.7"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2076
+ dependencies = [
2077
+ "libc",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "once_cell"
2082
+ version = "1.21.4"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2085
+
2086
+ [[package]]
2087
+ name = "once_cell_polyfill"
2088
+ version = "1.70.2"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2091
+
2092
+ [[package]]
2093
+ name = "opaque-debug"
2094
+ version = "0.3.1"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
2097
+
2098
+ [[package]]
2099
+ name = "openmls"
2100
+ version = "0.8.1"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "dcb512bfe6a55777518853ea535c6241f069cb0e8984678c117151d2a1e7e903"
2103
+ dependencies = [
2104
+ "fluvio-wasm-timer",
2105
+ "getrandom 0.3.4",
2106
+ "log",
2107
+ "openmls_traits",
2108
+ "rayon",
2109
+ "serde",
2110
+ "serde_bytes",
2111
+ "thiserror 2.0.18",
2112
+ "tls_codec",
2113
+ "zeroize",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "openmls_basic_credential"
2118
+ version = "0.5.0"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "983e8be1457dd6f316f409292cec334af3b57b49a19deadc925c83c3c35e15b6"
2121
+ dependencies = [
2122
+ "ed25519-dalek",
2123
+ "openmls_traits",
2124
+ "p256",
2125
+ "rand 0.8.6",
2126
+ "serde",
2127
+ "tls_codec",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "openmls_memory_storage"
2132
+ version = "0.5.0"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "1a52c927ddb9940acb96d51aebd54b8b9c601c7119e6609622fb3f2cbe16abe3"
2135
+ dependencies = [
2136
+ "log",
2137
+ "openmls_traits",
2138
+ "serde",
2139
+ "serde_json",
2140
+ "thiserror 2.0.18",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "openmls_rust_crypto"
2145
+ version = "0.5.1"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "fafcc8a3552b10fbb3ab757cccaf1a34081e826ca819f49aa7e6645b1d95c00f"
2148
+ dependencies = [
2149
+ "aes-gcm",
2150
+ "chacha20poly1305",
2151
+ "ed25519-dalek",
2152
+ "hkdf",
2153
+ "hmac",
2154
+ "hpke-rs",
2155
+ "hpke-rs-crypto",
2156
+ "hpke-rs-rust-crypto",
2157
+ "openmls_memory_storage",
2158
+ "openmls_traits",
2159
+ "p256",
2160
+ "rand 0.8.6",
2161
+ "rand_chacha 0.3.1",
2162
+ "serde",
2163
+ "sha2",
2164
+ "thiserror 2.0.18",
2165
+ "tls_codec",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "openmls_traits"
2170
+ version = "0.5.0"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "4f88ccdd53448dfdbfa5b8da8ba4e527c418fdb966418172bace2e3b41eedd56"
2173
+ dependencies = [
2174
+ "serde",
2175
+ "tls_codec",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "openssl-probe"
2180
+ version = "0.1.6"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2183
+
2184
+ [[package]]
2185
+ name = "p256"
2186
+ version = "0.13.2"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2189
+ dependencies = [
2190
+ "ecdsa",
2191
+ "elliptic-curve",
2192
+ "primeorder",
2193
+ "sha2",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "p384"
2198
+ version = "0.13.1"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2201
+ dependencies = [
2202
+ "elliptic-curve",
2203
+ "primeorder",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "parking_lot"
2208
+ version = "0.11.2"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2211
+ dependencies = [
2212
+ "instant",
2213
+ "lock_api",
2214
+ "parking_lot_core 0.8.6",
2215
+ ]
2216
+
2217
+ [[package]]
2218
+ name = "parking_lot"
2219
+ version = "0.12.5"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2222
+ dependencies = [
2223
+ "lock_api",
2224
+ "parking_lot_core 0.9.12",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "parking_lot_core"
2229
+ version = "0.8.6"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2232
+ dependencies = [
2233
+ "cfg-if",
2234
+ "instant",
2235
+ "libc",
2236
+ "redox_syscall 0.2.16",
2237
+ "smallvec",
2238
+ "winapi",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "parking_lot_core"
2243
+ version = "0.9.12"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2246
+ dependencies = [
2247
+ "cfg-if",
2248
+ "libc",
2249
+ "redox_syscall 0.5.18",
2250
+ "smallvec",
2251
+ "windows-link",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "pastey"
2256
+ version = "0.2.3"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
2259
+
2260
+ [[package]]
2261
+ name = "pbkdf2"
2262
+ version = "0.12.2"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2265
+ dependencies = [
2266
+ "digest",
2267
+ "hmac",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "pem-rfc7468"
2272
+ version = "0.7.0"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2275
+ dependencies = [
2276
+ "base64ct",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "percent-encoding"
2281
+ version = "2.3.2"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2284
+
2285
+ [[package]]
2286
+ name = "pin-project-lite"
2287
+ version = "0.2.17"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2290
+
2291
+ [[package]]
2292
+ name = "pin-utils"
2293
+ version = "0.1.0"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2296
+
2297
+ [[package]]
2298
+ name = "pkcs8"
2299
+ version = "0.10.2"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2302
+ dependencies = [
2303
+ "der",
2304
+ "spki",
2305
+ ]
2306
+
2307
+ [[package]]
2308
+ name = "pkg-config"
2309
+ version = "0.3.33"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2312
+
2313
+ [[package]]
2314
+ name = "poly1305"
2315
+ version = "0.8.0"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
2318
+ dependencies = [
2319
+ "cpufeatures 0.2.17",
2320
+ "opaque-debug",
2321
+ "universal-hash",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "polyval"
2326
+ version = "0.6.2"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
2329
+ dependencies = [
2330
+ "cfg-if",
2331
+ "cpufeatures 0.2.17",
2332
+ "opaque-debug",
2333
+ "universal-hash",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "portable-atomic"
2338
+ version = "1.13.1"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2341
+
2342
+ [[package]]
2343
+ name = "potential_utf"
2344
+ version = "0.1.5"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2347
+ dependencies = [
2348
+ "zerovec",
2349
+ ]
2350
+
2351
+ [[package]]
2352
+ name = "powerfmt"
2353
+ version = "0.2.0"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2356
+
2357
+ [[package]]
2358
+ name = "ppv-lite86"
2359
+ version = "0.2.21"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2362
+ dependencies = [
2363
+ "zerocopy",
2364
+ ]
2365
+
2366
+ [[package]]
2367
+ name = "primeorder"
2368
+ version = "0.13.6"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2371
+ dependencies = [
2372
+ "elliptic-curve",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "proc-macro-error-attr2"
2377
+ version = "2.0.0"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
2380
+ dependencies = [
2381
+ "proc-macro2",
2382
+ "quote",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "proc-macro-error2"
2387
+ version = "2.0.1"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
2390
+ dependencies = [
2391
+ "proc-macro-error-attr2",
2392
+ "proc-macro2",
2393
+ "quote",
2394
+ "syn",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "proc-macro2"
2399
+ version = "1.0.106"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2402
+ dependencies = [
2403
+ "unicode-ident",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "psl-types"
2408
+ version = "2.0.11"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
2411
+
2412
+ [[package]]
2413
+ name = "publicsuffix"
2414
+ version = "2.3.0"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
2417
+ dependencies = [
2418
+ "idna",
2419
+ "psl-types",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "pyo3"
2424
+ version = "0.22.6"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2427
+ dependencies = [
2428
+ "cfg-if",
2429
+ "indoc",
2430
+ "libc",
2431
+ "memoffset",
2432
+ "once_cell",
2433
+ "portable-atomic",
2434
+ "pyo3-build-config",
2435
+ "pyo3-ffi",
2436
+ "pyo3-macros",
2437
+ "unindent",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "pyo3-async-runtimes"
2442
+ version = "0.22.0"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "2529f0be73ffd2be0cc43c013a640796558aa12d7ca0aab5cc14f375b4733031"
2445
+ dependencies = [
2446
+ "futures",
2447
+ "once_cell",
2448
+ "pin-project-lite",
2449
+ "pyo3",
2450
+ "tokio",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "pyo3-build-config"
2455
+ version = "0.22.6"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2458
+ dependencies = [
2459
+ "once_cell",
2460
+ "target-lexicon",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "pyo3-ffi"
2465
+ version = "0.22.6"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2468
+ dependencies = [
2469
+ "libc",
2470
+ "pyo3-build-config",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "pyo3-macros"
2475
+ version = "0.22.6"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2478
+ dependencies = [
2479
+ "proc-macro2",
2480
+ "pyo3-macros-backend",
2481
+ "quote",
2482
+ "syn",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "pyo3-macros-backend"
2487
+ version = "0.22.6"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2490
+ dependencies = [
2491
+ "heck 0.5.0",
2492
+ "proc-macro2",
2493
+ "pyo3-build-config",
2494
+ "quote",
2495
+ "syn",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "quinn"
2500
+ version = "0.11.11"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2503
+ dependencies = [
2504
+ "bytes",
2505
+ "cfg_aliases",
2506
+ "pin-project-lite",
2507
+ "quinn-proto",
2508
+ "quinn-udp",
2509
+ "rustc-hash",
2510
+ "rustls 0.23.41",
2511
+ "socket2",
2512
+ "thiserror 2.0.18",
2513
+ "tokio",
2514
+ "tracing",
2515
+ "web-time",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "quinn-proto"
2520
+ version = "0.11.15"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e"
2523
+ dependencies = [
2524
+ "bytes",
2525
+ "getrandom 0.3.4",
2526
+ "lru-slab",
2527
+ "rand 0.9.4",
2528
+ "ring",
2529
+ "rustc-hash",
2530
+ "rustls 0.23.41",
2531
+ "rustls-pki-types",
2532
+ "slab",
2533
+ "thiserror 2.0.18",
2534
+ "tinyvec",
2535
+ "tracing",
2536
+ "web-time",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "quinn-udp"
2541
+ version = "0.5.14"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2544
+ dependencies = [
2545
+ "cfg_aliases",
2546
+ "libc",
2547
+ "once_cell",
2548
+ "socket2",
2549
+ "tracing",
2550
+ "windows-sys 0.60.2",
2551
+ ]
2552
+
2553
+ [[package]]
2554
+ name = "quote"
2555
+ version = "1.0.46"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2558
+ dependencies = [
2559
+ "proc-macro2",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "r-efi"
2564
+ version = "5.3.0"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2567
+
2568
+ [[package]]
2569
+ name = "r-efi"
2570
+ version = "6.0.0"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2573
+
2574
+ [[package]]
2575
+ name = "rand"
2576
+ version = "0.8.6"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2579
+ dependencies = [
2580
+ "libc",
2581
+ "rand_chacha 0.3.1",
2582
+ "rand_core 0.6.4",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "rand"
2587
+ version = "0.9.4"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2590
+ dependencies = [
2591
+ "rand_chacha 0.9.0",
2592
+ "rand_core 0.9.5",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "rand"
2597
+ version = "0.10.2"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2600
+ dependencies = [
2601
+ "chacha20 0.10.1",
2602
+ "getrandom 0.4.3",
2603
+ "rand_core 0.10.1",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "rand_chacha"
2608
+ version = "0.3.1"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2611
+ dependencies = [
2612
+ "ppv-lite86",
2613
+ "rand_core 0.6.4",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "rand_chacha"
2618
+ version = "0.9.0"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2621
+ dependencies = [
2622
+ "ppv-lite86",
2623
+ "rand_core 0.9.5",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "rand_chacha"
2628
+ version = "0.10.0"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
2631
+ dependencies = [
2632
+ "ppv-lite86",
2633
+ "rand_core 0.10.1",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "rand_core"
2638
+ version = "0.6.4"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2641
+ dependencies = [
2642
+ "getrandom 0.2.17",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "rand_core"
2647
+ version = "0.9.5"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2650
+ dependencies = [
2651
+ "getrandom 0.3.4",
2652
+ ]
2653
+
2654
+ [[package]]
2655
+ name = "rand_core"
2656
+ version = "0.10.1"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2659
+
2660
+ [[package]]
2661
+ name = "rayon"
2662
+ version = "1.12.0"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2665
+ dependencies = [
2666
+ "either",
2667
+ "rayon-core",
2668
+ ]
2669
+
2670
+ [[package]]
2671
+ name = "rayon-core"
2672
+ version = "1.13.0"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2675
+ dependencies = [
2676
+ "crossbeam-deque",
2677
+ "crossbeam-utils",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "redox_syscall"
2682
+ version = "0.2.16"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2685
+ dependencies = [
2686
+ "bitflags 1.3.2",
2687
+ ]
2688
+
2689
+ [[package]]
2690
+ name = "redox_syscall"
2691
+ version = "0.5.18"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2694
+ dependencies = [
2695
+ "bitflags 2.13.0",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "regex"
2700
+ version = "1.12.4"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2703
+ dependencies = [
2704
+ "aho-corasick",
2705
+ "memchr",
2706
+ "regex-automata",
2707
+ "regex-syntax",
2708
+ ]
2709
+
2710
+ [[package]]
2711
+ name = "regex-automata"
2712
+ version = "0.4.14"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2715
+ dependencies = [
2716
+ "aho-corasick",
2717
+ "memchr",
2718
+ "regex-syntax",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "regex-syntax"
2723
+ version = "0.8.11"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2726
+
2727
+ [[package]]
2728
+ name = "reqwest"
2729
+ version = "0.12.28"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2732
+ dependencies = [
2733
+ "base64",
2734
+ "bytes",
2735
+ "cookie",
2736
+ "cookie_store",
2737
+ "futures-core",
2738
+ "futures-util",
2739
+ "http",
2740
+ "http-body",
2741
+ "http-body-util",
2742
+ "hyper",
2743
+ "hyper-rustls",
2744
+ "hyper-util",
2745
+ "js-sys",
2746
+ "log",
2747
+ "percent-encoding",
2748
+ "pin-project-lite",
2749
+ "quinn",
2750
+ "rustls 0.23.41",
2751
+ "rustls-pki-types",
2752
+ "serde",
2753
+ "serde_json",
2754
+ "serde_urlencoded",
2755
+ "sync_wrapper",
2756
+ "tokio",
2757
+ "tokio-rustls 0.26.4",
2758
+ "tokio-util",
2759
+ "tower",
2760
+ "tower-http",
2761
+ "tower-service",
2762
+ "url",
2763
+ "wasm-bindgen",
2764
+ "wasm-bindgen-futures",
2765
+ "wasm-streams",
2766
+ "web-sys",
2767
+ "webpki-roots",
2768
+ ]
2769
+
2770
+ [[package]]
2771
+ name = "rfc6979"
2772
+ version = "0.4.0"
2773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2774
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
2775
+ dependencies = [
2776
+ "hmac",
2777
+ "subtle",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "ring"
2782
+ version = "0.17.14"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2785
+ dependencies = [
2786
+ "cc",
2787
+ "cfg-if",
2788
+ "getrandom 0.2.17",
2789
+ "libc",
2790
+ "untrusted",
2791
+ "windows-sys 0.52.0",
2792
+ ]
2793
+
2794
+ [[package]]
2795
+ name = "rustc-hash"
2796
+ version = "2.1.3"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2799
+
2800
+ [[package]]
2801
+ name = "rustc_version"
2802
+ version = "0.4.1"
2803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2804
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2805
+ dependencies = [
2806
+ "semver",
2807
+ ]
2808
+
2809
+ [[package]]
2810
+ name = "rustix"
2811
+ version = "1.1.4"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2814
+ dependencies = [
2815
+ "bitflags 2.13.0",
2816
+ "errno",
2817
+ "libc",
2818
+ "linux-raw-sys",
2819
+ "windows-sys 0.61.2",
2820
+ ]
2821
+
2822
+ [[package]]
2823
+ name = "rustls"
2824
+ version = "0.22.4"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
2827
+ dependencies = [
2828
+ "log",
2829
+ "ring",
2830
+ "rustls-pki-types",
2831
+ "rustls-webpki 0.102.8",
2832
+ "subtle",
2833
+ "zeroize",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "rustls"
2838
+ version = "0.23.41"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
2841
+ dependencies = [
2842
+ "once_cell",
2843
+ "ring",
2844
+ "rustls-pki-types",
2845
+ "rustls-webpki 0.103.13",
2846
+ "subtle",
2847
+ "zeroize",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "rustls-native-certs"
2852
+ version = "0.7.3"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
2855
+ dependencies = [
2856
+ "openssl-probe",
2857
+ "rustls-pemfile",
2858
+ "rustls-pki-types",
2859
+ "schannel",
2860
+ "security-framework",
2861
+ ]
2862
+
2863
+ [[package]]
2864
+ name = "rustls-pemfile"
2865
+ version = "2.2.0"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2868
+ dependencies = [
2869
+ "rustls-pki-types",
2870
+ ]
2871
+
2872
+ [[package]]
2873
+ name = "rustls-pki-types"
2874
+ version = "1.15.0"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2877
+ dependencies = [
2878
+ "web-time",
2879
+ "zeroize",
2880
+ ]
2881
+
2882
+ [[package]]
2883
+ name = "rustls-webpki"
2884
+ version = "0.102.8"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2887
+ dependencies = [
2888
+ "ring",
2889
+ "rustls-pki-types",
2890
+ "untrusted",
2891
+ ]
2892
+
2893
+ [[package]]
2894
+ name = "rustls-webpki"
2895
+ version = "0.103.13"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2898
+ dependencies = [
2899
+ "ring",
2900
+ "rustls-pki-types",
2901
+ "untrusted",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "rustversion"
2906
+ version = "1.0.22"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2909
+
2910
+ [[package]]
2911
+ name = "ryu"
2912
+ version = "1.0.23"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2915
+
2916
+ [[package]]
2917
+ name = "salsa20"
2918
+ version = "0.10.2"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
2921
+ dependencies = [
2922
+ "cipher 0.4.4",
2923
+ ]
2924
+
2925
+ [[package]]
2926
+ name = "schannel"
2927
+ version = "0.1.29"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2930
+ dependencies = [
2931
+ "windows-sys 0.61.2",
2932
+ ]
2933
+
2934
+ [[package]]
2935
+ name = "scopeguard"
2936
+ version = "1.2.0"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2939
+
2940
+ [[package]]
2941
+ name = "scrypt"
2942
+ version = "0.11.0"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
2945
+ dependencies = [
2946
+ "pbkdf2",
2947
+ "salsa20",
2948
+ "sha2",
2949
+ ]
2950
+
2951
+ [[package]]
2952
+ name = "sec1"
2953
+ version = "0.7.3"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2956
+ dependencies = [
2957
+ "base16ct",
2958
+ "der",
2959
+ "generic-array",
2960
+ "pkcs8",
2961
+ "subtle",
2962
+ "zeroize",
2963
+ ]
2964
+
2965
+ [[package]]
2966
+ name = "security-framework"
2967
+ version = "2.11.1"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2970
+ dependencies = [
2971
+ "bitflags 2.13.0",
2972
+ "core-foundation",
2973
+ "core-foundation-sys",
2974
+ "libc",
2975
+ "security-framework-sys",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "security-framework-sys"
2980
+ version = "2.17.0"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2983
+ dependencies = [
2984
+ "core-foundation-sys",
2985
+ "libc",
2986
+ ]
2987
+
2988
+ [[package]]
2989
+ name = "semver"
2990
+ version = "1.0.28"
2991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2993
+
2994
+ [[package]]
2995
+ name = "serde"
2996
+ version = "1.0.228"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2999
+ dependencies = [
3000
+ "serde_core",
3001
+ "serde_derive",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "serde_bytes"
3006
+ version = "0.11.19"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
3009
+ dependencies = [
3010
+ "serde",
3011
+ "serde_core",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "serde_core"
3016
+ version = "1.0.228"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3019
+ dependencies = [
3020
+ "serde_derive",
3021
+ ]
3022
+
3023
+ [[package]]
3024
+ name = "serde_derive"
3025
+ version = "1.0.228"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3028
+ dependencies = [
3029
+ "proc-macro2",
3030
+ "quote",
3031
+ "syn",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "serde_json"
3036
+ version = "1.0.150"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
3039
+ dependencies = [
3040
+ "itoa",
3041
+ "memchr",
3042
+ "serde",
3043
+ "serde_core",
3044
+ "zmij",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "serde_spanned"
3049
+ version = "0.6.9"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
3052
+ dependencies = [
3053
+ "serde",
3054
+ ]
3055
+
3056
+ [[package]]
3057
+ name = "serde_spanned"
3058
+ version = "1.1.1"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
3061
+ dependencies = [
3062
+ "serde_core",
3063
+ ]
3064
+
3065
+ [[package]]
3066
+ name = "serde_urlencoded"
3067
+ version = "0.7.1"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3070
+ dependencies = [
3071
+ "form_urlencoded",
3072
+ "itoa",
3073
+ "ryu",
3074
+ "serde",
3075
+ ]
3076
+
3077
+ [[package]]
3078
+ name = "sha1"
3079
+ version = "0.10.6"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3082
+ dependencies = [
3083
+ "cfg-if",
3084
+ "cpufeatures 0.2.17",
3085
+ "digest",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "sha2"
3090
+ version = "0.10.9"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3093
+ dependencies = [
3094
+ "cfg-if",
3095
+ "cpufeatures 0.2.17",
3096
+ "digest",
3097
+ ]
3098
+
3099
+ [[package]]
3100
+ name = "sharded-slab"
3101
+ version = "0.1.7"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3104
+ dependencies = [
3105
+ "lazy_static",
3106
+ ]
3107
+
3108
+ [[package]]
3109
+ name = "shlex"
3110
+ version = "2.0.1"
3111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3112
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3113
+
3114
+ [[package]]
3115
+ name = "signature"
3116
+ version = "2.2.0"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3119
+ dependencies = [
3120
+ "digest",
3121
+ "rand_core 0.6.4",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "simd-adler32"
3126
+ version = "0.3.9"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3129
+
3130
+ [[package]]
3131
+ name = "slab"
3132
+ version = "0.4.12"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3135
+
3136
+ [[package]]
3137
+ name = "smallvec"
3138
+ version = "1.15.2"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3141
+
3142
+ [[package]]
3143
+ name = "socket2"
3144
+ version = "0.6.4"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3147
+ dependencies = [
3148
+ "libc",
3149
+ "windows-sys 0.61.2",
3150
+ ]
3151
+
3152
+ [[package]]
3153
+ name = "spin"
3154
+ version = "0.9.8"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3157
+ dependencies = [
3158
+ "lock_api",
3159
+ ]
3160
+
3161
+ [[package]]
3162
+ name = "spki"
3163
+ version = "0.7.3"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3166
+ dependencies = [
3167
+ "base64ct",
3168
+ "der",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "stable_deref_trait"
3173
+ version = "1.2.1"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3176
+
3177
+ [[package]]
3178
+ name = "strsim"
3179
+ version = "0.11.1"
3180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3181
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3182
+
3183
+ [[package]]
3184
+ name = "subtle"
3185
+ version = "2.6.1"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3188
+
3189
+ [[package]]
3190
+ name = "symphonia"
3191
+ version = "0.5.5"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039"
3194
+ dependencies = [
3195
+ "lazy_static",
3196
+ "symphonia-bundle-flac",
3197
+ "symphonia-bundle-mp3",
3198
+ "symphonia-codec-aac",
3199
+ "symphonia-codec-adpcm",
3200
+ "symphonia-codec-pcm",
3201
+ "symphonia-codec-vorbis",
3202
+ "symphonia-core",
3203
+ "symphonia-format-isomp4",
3204
+ "symphonia-format-mkv",
3205
+ "symphonia-format-ogg",
3206
+ "symphonia-format-riff",
3207
+ "symphonia-metadata",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "symphonia-bundle-flac"
3212
+ version = "0.5.5"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "c91565e180aea25d9b80a910c546802526ffd0072d0b8974e3ebe59b686c9976"
3215
+ dependencies = [
3216
+ "log",
3217
+ "symphonia-core",
3218
+ "symphonia-metadata",
3219
+ "symphonia-utils-xiph",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "symphonia-bundle-mp3"
3224
+ version = "0.5.5"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed"
3227
+ dependencies = [
3228
+ "lazy_static",
3229
+ "log",
3230
+ "symphonia-core",
3231
+ "symphonia-metadata",
3232
+ ]
3233
+
3234
+ [[package]]
3235
+ name = "symphonia-codec-aac"
3236
+ version = "0.5.5"
3237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3238
+ checksum = "4c263845aa86881416849c1729a54c7f55164f8b96111dba59de46849e73a790"
3239
+ dependencies = [
3240
+ "lazy_static",
3241
+ "log",
3242
+ "symphonia-core",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "symphonia-codec-adpcm"
3247
+ version = "0.5.5"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "2dddc50e2bbea4cfe027441eece77c46b9f319748605ab8f3443350129ddd07f"
3250
+ dependencies = [
3251
+ "log",
3252
+ "symphonia-core",
3253
+ ]
3254
+
3255
+ [[package]]
3256
+ name = "symphonia-codec-pcm"
3257
+ version = "0.5.5"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "4e89d716c01541ad3ebe7c91ce4c8d38a7cf266a3f7b2f090b108fb0cb031d95"
3260
+ dependencies = [
3261
+ "log",
3262
+ "symphonia-core",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "symphonia-codec-vorbis"
3267
+ version = "0.5.5"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "f025837c309cd69ffef572750b4a2257b59552c5399a5e49707cc5b1b85d1c73"
3270
+ dependencies = [
3271
+ "log",
3272
+ "symphonia-core",
3273
+ "symphonia-utils-xiph",
3274
+ ]
3275
+
3276
+ [[package]]
3277
+ name = "symphonia-core"
3278
+ version = "0.5.5"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af"
3281
+ dependencies = [
3282
+ "arrayvec",
3283
+ "bitflags 1.3.2",
3284
+ "bytemuck",
3285
+ "lazy_static",
3286
+ "log",
3287
+ ]
3288
+
3289
+ [[package]]
3290
+ name = "symphonia-format-isomp4"
3291
+ version = "0.5.5"
3292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3293
+ checksum = "243739585d11f81daf8dac8d9f3d18cc7898f6c09a259675fc364b382c30e0a5"
3294
+ dependencies = [
3295
+ "encoding_rs",
3296
+ "log",
3297
+ "symphonia-core",
3298
+ "symphonia-metadata",
3299
+ "symphonia-utils-xiph",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "symphonia-format-mkv"
3304
+ version = "0.5.5"
3305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3306
+ checksum = "122d786d2c43a49beb6f397551b4a050d8229eaa54c7ddf9ee4b98899b8742d0"
3307
+ dependencies = [
3308
+ "lazy_static",
3309
+ "log",
3310
+ "symphonia-core",
3311
+ "symphonia-metadata",
3312
+ "symphonia-utils-xiph",
3313
+ ]
3314
+
3315
+ [[package]]
3316
+ name = "symphonia-format-ogg"
3317
+ version = "0.5.5"
3318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3319
+ checksum = "2b4955c67c1ed3aa8ae8428d04ca8397fbef6a19b2b051e73b5da8b1435639cb"
3320
+ dependencies = [
3321
+ "log",
3322
+ "symphonia-core",
3323
+ "symphonia-metadata",
3324
+ "symphonia-utils-xiph",
3325
+ ]
3326
+
3327
+ [[package]]
3328
+ name = "symphonia-format-riff"
3329
+ version = "0.5.5"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "c2d7c3df0e7d94efb68401d81906eae73c02b40d5ec1a141962c592d0f11a96f"
3332
+ dependencies = [
3333
+ "extended",
3334
+ "log",
3335
+ "symphonia-core",
3336
+ "symphonia-metadata",
3337
+ ]
3338
+
3339
+ [[package]]
3340
+ name = "symphonia-metadata"
3341
+ version = "0.5.5"
3342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3343
+ checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16"
3344
+ dependencies = [
3345
+ "encoding_rs",
3346
+ "lazy_static",
3347
+ "log",
3348
+ "symphonia-core",
3349
+ ]
3350
+
3351
+ [[package]]
3352
+ name = "symphonia-utils-xiph"
3353
+ version = "0.5.5"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "ee27c85ab799a338446b68eec77abf42e1a6f1bb490656e121c6e27bfbab9f16"
3356
+ dependencies = [
3357
+ "symphonia-core",
3358
+ "symphonia-metadata",
3359
+ ]
3360
+
3361
+ [[package]]
3362
+ name = "syn"
3363
+ version = "2.0.118"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
3366
+ dependencies = [
3367
+ "proc-macro2",
3368
+ "quote",
3369
+ "unicode-ident",
3370
+ ]
3371
+
3372
+ [[package]]
3373
+ name = "sync_wrapper"
3374
+ version = "1.0.2"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3377
+ dependencies = [
3378
+ "futures-core",
3379
+ ]
3380
+
3381
+ [[package]]
3382
+ name = "synstructure"
3383
+ version = "0.13.2"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3386
+ dependencies = [
3387
+ "proc-macro2",
3388
+ "quote",
3389
+ "syn",
3390
+ ]
3391
+
3392
+ [[package]]
3393
+ name = "target-lexicon"
3394
+ version = "0.12.16"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3397
+
3398
+ [[package]]
3399
+ name = "tempfile"
3400
+ version = "3.27.0"
3401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3402
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3403
+ dependencies = [
3404
+ "fastrand",
3405
+ "getrandom 0.4.3",
3406
+ "once_cell",
3407
+ "rustix",
3408
+ "windows-sys 0.61.2",
3409
+ ]
3410
+
3411
+ [[package]]
3412
+ name = "thiserror"
3413
+ version = "1.0.69"
3414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3415
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3416
+ dependencies = [
3417
+ "thiserror-impl 1.0.69",
3418
+ ]
3419
+
3420
+ [[package]]
3421
+ name = "thiserror"
3422
+ version = "2.0.18"
3423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3424
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3425
+ dependencies = [
3426
+ "thiserror-impl 2.0.18",
3427
+ ]
3428
+
3429
+ [[package]]
3430
+ name = "thiserror-impl"
3431
+ version = "1.0.69"
3432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3433
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3434
+ dependencies = [
3435
+ "proc-macro2",
3436
+ "quote",
3437
+ "syn",
3438
+ ]
3439
+
3440
+ [[package]]
3441
+ name = "thiserror-impl"
3442
+ version = "2.0.18"
3443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3444
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3445
+ dependencies = [
3446
+ "proc-macro2",
3447
+ "quote",
3448
+ "syn",
3449
+ ]
3450
+
3451
+ [[package]]
3452
+ name = "thread_local"
3453
+ version = "1.1.9"
3454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3455
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3456
+ dependencies = [
3457
+ "cfg-if",
3458
+ ]
3459
+
3460
+ [[package]]
3461
+ name = "time"
3462
+ version = "0.3.36"
3463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3465
+ dependencies = [
3466
+ "deranged",
3467
+ "itoa",
3468
+ "libc",
3469
+ "num-conv",
3470
+ "num_threads",
3471
+ "powerfmt",
3472
+ "serde",
3473
+ "time-core",
3474
+ "time-macros",
3475
+ ]
3476
+
3477
+ [[package]]
3478
+ name = "time-core"
3479
+ version = "0.1.2"
3480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3481
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3482
+
3483
+ [[package]]
3484
+ name = "time-macros"
3485
+ version = "0.2.18"
3486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3487
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
3488
+ dependencies = [
3489
+ "num-conv",
3490
+ "time-core",
3491
+ ]
3492
+
3493
+ [[package]]
3494
+ name = "tinystr"
3495
+ version = "0.8.3"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3498
+ dependencies = [
3499
+ "displaydoc",
3500
+ "zerovec",
3501
+ ]
3502
+
3503
+ [[package]]
3504
+ name = "tinyvec"
3505
+ version = "1.11.0"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3508
+ dependencies = [
3509
+ "tinyvec_macros",
3510
+ ]
3511
+
3512
+ [[package]]
3513
+ name = "tinyvec_macros"
3514
+ version = "0.1.1"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3517
+
3518
+ [[package]]
3519
+ name = "tls_codec"
3520
+ version = "0.4.2"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
3523
+ dependencies = [
3524
+ "serde",
3525
+ "tls_codec_derive",
3526
+ "zeroize",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "tls_codec_derive"
3531
+ version = "0.4.2"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
3534
+ dependencies = [
3535
+ "proc-macro2",
3536
+ "quote",
3537
+ "syn",
3538
+ ]
3539
+
3540
+ [[package]]
3541
+ name = "tokio"
3542
+ version = "1.52.3"
3543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3544
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3545
+ dependencies = [
3546
+ "bytes",
3547
+ "libc",
3548
+ "mio",
3549
+ "pin-project-lite",
3550
+ "socket2",
3551
+ "tokio-macros",
3552
+ "windows-sys 0.61.2",
3553
+ ]
3554
+
3555
+ [[package]]
3556
+ name = "tokio-macros"
3557
+ version = "2.7.0"
3558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3559
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3560
+ dependencies = [
3561
+ "proc-macro2",
3562
+ "quote",
3563
+ "syn",
3564
+ ]
3565
+
3566
+ [[package]]
3567
+ name = "tokio-rustls"
3568
+ version = "0.25.0"
3569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3570
+ checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
3571
+ dependencies = [
3572
+ "rustls 0.22.4",
3573
+ "rustls-pki-types",
3574
+ "tokio",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "tokio-rustls"
3579
+ version = "0.26.4"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3582
+ dependencies = [
3583
+ "rustls 0.23.41",
3584
+ "tokio",
3585
+ ]
3586
+
3587
+ [[package]]
3588
+ name = "tokio-tungstenite"
3589
+ version = "0.21.0"
3590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3591
+ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
3592
+ dependencies = [
3593
+ "futures-util",
3594
+ "log",
3595
+ "rustls 0.22.4",
3596
+ "rustls-native-certs",
3597
+ "rustls-pki-types",
3598
+ "tokio",
3599
+ "tokio-rustls 0.25.0",
3600
+ "tungstenite",
3601
+ ]
3602
+
3603
+ [[package]]
3604
+ name = "tokio-util"
3605
+ version = "0.7.18"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3608
+ dependencies = [
3609
+ "bytes",
3610
+ "futures-core",
3611
+ "futures-sink",
3612
+ "pin-project-lite",
3613
+ "tokio",
3614
+ ]
3615
+
3616
+ [[package]]
3617
+ name = "toml"
3618
+ version = "0.8.23"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3621
+ dependencies = [
3622
+ "serde",
3623
+ "serde_spanned 0.6.9",
3624
+ "toml_datetime 0.6.11",
3625
+ "toml_edit",
3626
+ ]
3627
+
3628
+ [[package]]
3629
+ name = "toml"
3630
+ version = "1.1.2+spec-1.1.0"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
3633
+ dependencies = [
3634
+ "indexmap",
3635
+ "serde_core",
3636
+ "serde_spanned 1.1.1",
3637
+ "toml_datetime 1.1.1+spec-1.1.0",
3638
+ "toml_parser",
3639
+ "toml_writer",
3640
+ "winnow 1.0.3",
3641
+ ]
3642
+
3643
+ [[package]]
3644
+ name = "toml_datetime"
3645
+ version = "0.6.11"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3648
+ dependencies = [
3649
+ "serde",
3650
+ ]
3651
+
3652
+ [[package]]
3653
+ name = "toml_datetime"
3654
+ version = "1.1.1+spec-1.1.0"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3657
+ dependencies = [
3658
+ "serde_core",
3659
+ ]
3660
+
3661
+ [[package]]
3662
+ name = "toml_edit"
3663
+ version = "0.22.27"
3664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3665
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3666
+ dependencies = [
3667
+ "indexmap",
3668
+ "serde",
3669
+ "serde_spanned 0.6.9",
3670
+ "toml_datetime 0.6.11",
3671
+ "toml_write",
3672
+ "winnow 0.7.15",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "toml_parser"
3677
+ version = "1.1.2+spec-1.1.0"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3680
+ dependencies = [
3681
+ "winnow 1.0.3",
3682
+ ]
3683
+
3684
+ [[package]]
3685
+ name = "toml_write"
3686
+ version = "0.1.2"
3687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3688
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3689
+
3690
+ [[package]]
3691
+ name = "toml_writer"
3692
+ version = "1.1.1+spec-1.1.0"
3693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3694
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
3695
+
3696
+ [[package]]
3697
+ name = "tower"
3698
+ version = "0.5.3"
3699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3700
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3701
+ dependencies = [
3702
+ "futures-core",
3703
+ "futures-util",
3704
+ "pin-project-lite",
3705
+ "sync_wrapper",
3706
+ "tokio",
3707
+ "tower-layer",
3708
+ "tower-service",
3709
+ ]
3710
+
3711
+ [[package]]
3712
+ name = "tower-http"
3713
+ version = "0.6.11"
3714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3715
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3716
+ dependencies = [
3717
+ "async-compression",
3718
+ "bitflags 2.13.0",
3719
+ "bytes",
3720
+ "futures-core",
3721
+ "futures-util",
3722
+ "http",
3723
+ "http-body",
3724
+ "http-body-util",
3725
+ "pin-project-lite",
3726
+ "tokio",
3727
+ "tokio-util",
3728
+ "tower",
3729
+ "tower-layer",
3730
+ "tower-service",
3731
+ "url",
3732
+ ]
3733
+
3734
+ [[package]]
3735
+ name = "tower-layer"
3736
+ version = "0.3.3"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3739
+
3740
+ [[package]]
3741
+ name = "tower-service"
3742
+ version = "0.3.3"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3745
+
3746
+ [[package]]
3747
+ name = "tracing"
3748
+ version = "0.1.44"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3751
+ dependencies = [
3752
+ "pin-project-lite",
3753
+ "tracing-attributes",
3754
+ "tracing-core",
3755
+ ]
3756
+
3757
+ [[package]]
3758
+ name = "tracing-attributes"
3759
+ version = "0.1.31"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3762
+ dependencies = [
3763
+ "proc-macro2",
3764
+ "quote",
3765
+ "syn",
3766
+ ]
3767
+
3768
+ [[package]]
3769
+ name = "tracing-core"
3770
+ version = "0.1.36"
3771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3772
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3773
+ dependencies = [
3774
+ "once_cell",
3775
+ "valuable",
3776
+ ]
3777
+
3778
+ [[package]]
3779
+ name = "tracing-log"
3780
+ version = "0.2.0"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3783
+ dependencies = [
3784
+ "log",
3785
+ "once_cell",
3786
+ "tracing-core",
3787
+ ]
3788
+
3789
+ [[package]]
3790
+ name = "tracing-subscriber"
3791
+ version = "0.3.23"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3794
+ dependencies = [
3795
+ "matchers",
3796
+ "nu-ansi-term",
3797
+ "once_cell",
3798
+ "regex-automata",
3799
+ "sharded-slab",
3800
+ "smallvec",
3801
+ "thread_local",
3802
+ "tracing",
3803
+ "tracing-core",
3804
+ "tracing-log",
3805
+ ]
3806
+
3807
+ [[package]]
3808
+ name = "try-lock"
3809
+ version = "0.2.5"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3812
+
3813
+ [[package]]
3814
+ name = "tungstenite"
3815
+ version = "0.21.0"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
3818
+ dependencies = [
3819
+ "byteorder",
3820
+ "bytes",
3821
+ "data-encoding",
3822
+ "http",
3823
+ "httparse",
3824
+ "log",
3825
+ "rand 0.8.6",
3826
+ "rustls 0.22.4",
3827
+ "rustls-pki-types",
3828
+ "sha1",
3829
+ "thiserror 1.0.69",
3830
+ "url",
3831
+ "utf-8",
3832
+ ]
3833
+
3834
+ [[package]]
3835
+ name = "typenum"
3836
+ version = "1.20.1"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3839
+
3840
+ [[package]]
3841
+ name = "unicode-ident"
3842
+ version = "1.0.24"
3843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3844
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3845
+
3846
+ [[package]]
3847
+ name = "unicode-segmentation"
3848
+ version = "1.13.3"
3849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3850
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
3851
+
3852
+ [[package]]
3853
+ name = "unindent"
3854
+ version = "0.2.4"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3857
+
3858
+ [[package]]
3859
+ name = "universal-hash"
3860
+ version = "0.5.1"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3863
+ dependencies = [
3864
+ "crypto-common 0.1.7",
3865
+ "subtle",
3866
+ ]
3867
+
3868
+ [[package]]
3869
+ name = "untrusted"
3870
+ version = "0.9.0"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3873
+
3874
+ [[package]]
3875
+ name = "url"
3876
+ version = "2.5.8"
3877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3878
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3879
+ dependencies = [
3880
+ "form_urlencoded",
3881
+ "idna",
3882
+ "percent-encoding",
3883
+ "serde",
3884
+ ]
3885
+
3886
+ [[package]]
3887
+ name = "urlencoding"
3888
+ version = "2.1.3"
3889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3890
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3891
+
3892
+ [[package]]
3893
+ name = "utf-8"
3894
+ version = "0.7.6"
3895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3896
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3897
+
3898
+ [[package]]
3899
+ name = "utf8_iter"
3900
+ version = "1.0.4"
3901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3902
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3903
+
3904
+ [[package]]
3905
+ name = "utf8parse"
3906
+ version = "0.2.2"
3907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3908
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3909
+
3910
+ [[package]]
3911
+ name = "uuid"
3912
+ version = "1.23.4"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
3915
+ dependencies = [
3916
+ "getrandom 0.4.3",
3917
+ "js-sys",
3918
+ "wasm-bindgen",
3919
+ ]
3920
+
3921
+ [[package]]
3922
+ name = "valuable"
3923
+ version = "0.1.1"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3926
+
3927
+ [[package]]
3928
+ name = "version_check"
3929
+ version = "0.9.5"
3930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3931
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3932
+
3933
+ [[package]]
3934
+ name = "want"
3935
+ version = "0.3.1"
3936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3937
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3938
+ dependencies = [
3939
+ "try-lock",
3940
+ ]
3941
+
3942
+ [[package]]
3943
+ name = "wasi"
3944
+ version = "0.11.1+wasi-snapshot-preview1"
3945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3946
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3947
+
3948
+ [[package]]
3949
+ name = "wasip2"
3950
+ version = "1.0.4+wasi-0.2.12"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3953
+ dependencies = [
3954
+ "wit-bindgen",
3955
+ ]
3956
+
3957
+ [[package]]
3958
+ name = "wasm-bindgen"
3959
+ version = "0.2.126"
3960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3961
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
3962
+ dependencies = [
3963
+ "cfg-if",
3964
+ "once_cell",
3965
+ "rustversion",
3966
+ "wasm-bindgen-macro",
3967
+ "wasm-bindgen-shared",
3968
+ ]
3969
+
3970
+ [[package]]
3971
+ name = "wasm-bindgen-futures"
3972
+ version = "0.4.76"
3973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3974
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
3975
+ dependencies = [
3976
+ "js-sys",
3977
+ "wasm-bindgen",
3978
+ ]
3979
+
3980
+ [[package]]
3981
+ name = "wasm-bindgen-macro"
3982
+ version = "0.2.126"
3983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3984
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
3985
+ dependencies = [
3986
+ "quote",
3987
+ "wasm-bindgen-macro-support",
3988
+ ]
3989
+
3990
+ [[package]]
3991
+ name = "wasm-bindgen-macro-support"
3992
+ version = "0.2.126"
3993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3994
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
3995
+ dependencies = [
3996
+ "bumpalo",
3997
+ "proc-macro2",
3998
+ "quote",
3999
+ "syn",
4000
+ "wasm-bindgen-shared",
4001
+ ]
4002
+
4003
+ [[package]]
4004
+ name = "wasm-bindgen-shared"
4005
+ version = "0.2.126"
4006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4007
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
4008
+ dependencies = [
4009
+ "unicode-ident",
4010
+ ]
4011
+
4012
+ [[package]]
4013
+ name = "wasm-streams"
4014
+ version = "0.4.2"
4015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4016
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4017
+ dependencies = [
4018
+ "futures-util",
4019
+ "js-sys",
4020
+ "wasm-bindgen",
4021
+ "wasm-bindgen-futures",
4022
+ "web-sys",
4023
+ ]
4024
+
4025
+ [[package]]
4026
+ name = "web-sys"
4027
+ version = "0.3.103"
4028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4029
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
4030
+ dependencies = [
4031
+ "js-sys",
4032
+ "wasm-bindgen",
4033
+ ]
4034
+
4035
+ [[package]]
4036
+ name = "web-time"
4037
+ version = "1.1.0"
4038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4039
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4040
+ dependencies = [
4041
+ "js-sys",
4042
+ "wasm-bindgen",
4043
+ ]
4044
+
4045
+ [[package]]
4046
+ name = "webpki-roots"
4047
+ version = "1.0.8"
4048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4049
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
4050
+ dependencies = [
4051
+ "rustls-pki-types",
4052
+ ]
4053
+
4054
+ [[package]]
4055
+ name = "winapi"
4056
+ version = "0.3.9"
4057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4058
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4059
+ dependencies = [
4060
+ "winapi-i686-pc-windows-gnu",
4061
+ "winapi-x86_64-pc-windows-gnu",
4062
+ ]
4063
+
4064
+ [[package]]
4065
+ name = "winapi-i686-pc-windows-gnu"
4066
+ version = "0.4.0"
4067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4068
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4069
+
4070
+ [[package]]
4071
+ name = "winapi-x86_64-pc-windows-gnu"
4072
+ version = "0.4.0"
4073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4074
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4075
+
4076
+ [[package]]
4077
+ name = "windows-link"
4078
+ version = "0.2.1"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4081
+
4082
+ [[package]]
4083
+ name = "windows-sys"
4084
+ version = "0.52.0"
4085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4086
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4087
+ dependencies = [
4088
+ "windows-targets 0.52.6",
4089
+ ]
4090
+
4091
+ [[package]]
4092
+ name = "windows-sys"
4093
+ version = "0.60.2"
4094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4095
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4096
+ dependencies = [
4097
+ "windows-targets 0.53.5",
4098
+ ]
4099
+
4100
+ [[package]]
4101
+ name = "windows-sys"
4102
+ version = "0.61.2"
4103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4104
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4105
+ dependencies = [
4106
+ "windows-link",
4107
+ ]
4108
+
4109
+ [[package]]
4110
+ name = "windows-targets"
4111
+ version = "0.52.6"
4112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4113
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4114
+ dependencies = [
4115
+ "windows_aarch64_gnullvm 0.52.6",
4116
+ "windows_aarch64_msvc 0.52.6",
4117
+ "windows_i686_gnu 0.52.6",
4118
+ "windows_i686_gnullvm 0.52.6",
4119
+ "windows_i686_msvc 0.52.6",
4120
+ "windows_x86_64_gnu 0.52.6",
4121
+ "windows_x86_64_gnullvm 0.52.6",
4122
+ "windows_x86_64_msvc 0.52.6",
4123
+ ]
4124
+
4125
+ [[package]]
4126
+ name = "windows-targets"
4127
+ version = "0.53.5"
4128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4129
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4130
+ dependencies = [
4131
+ "windows-link",
4132
+ "windows_aarch64_gnullvm 0.53.1",
4133
+ "windows_aarch64_msvc 0.53.1",
4134
+ "windows_i686_gnu 0.53.1",
4135
+ "windows_i686_gnullvm 0.53.1",
4136
+ "windows_i686_msvc 0.53.1",
4137
+ "windows_x86_64_gnu 0.53.1",
4138
+ "windows_x86_64_gnullvm 0.53.1",
4139
+ "windows_x86_64_msvc 0.53.1",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "windows_aarch64_gnullvm"
4144
+ version = "0.52.6"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4147
+
4148
+ [[package]]
4149
+ name = "windows_aarch64_gnullvm"
4150
+ version = "0.53.1"
4151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4152
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4153
+
4154
+ [[package]]
4155
+ name = "windows_aarch64_msvc"
4156
+ version = "0.52.6"
4157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4158
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4159
+
4160
+ [[package]]
4161
+ name = "windows_aarch64_msvc"
4162
+ version = "0.53.1"
4163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4164
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4165
+
4166
+ [[package]]
4167
+ name = "windows_i686_gnu"
4168
+ version = "0.52.6"
4169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4170
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4171
+
4172
+ [[package]]
4173
+ name = "windows_i686_gnu"
4174
+ version = "0.53.1"
4175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4176
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4177
+
4178
+ [[package]]
4179
+ name = "windows_i686_gnullvm"
4180
+ version = "0.52.6"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4183
+
4184
+ [[package]]
4185
+ name = "windows_i686_gnullvm"
4186
+ version = "0.53.1"
4187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4188
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4189
+
4190
+ [[package]]
4191
+ name = "windows_i686_msvc"
4192
+ version = "0.52.6"
4193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4194
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4195
+
4196
+ [[package]]
4197
+ name = "windows_i686_msvc"
4198
+ version = "0.53.1"
4199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4200
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4201
+
4202
+ [[package]]
4203
+ name = "windows_x86_64_gnu"
4204
+ version = "0.52.6"
4205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4206
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4207
+
4208
+ [[package]]
4209
+ name = "windows_x86_64_gnu"
4210
+ version = "0.53.1"
4211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4212
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4213
+
4214
+ [[package]]
4215
+ name = "windows_x86_64_gnullvm"
4216
+ version = "0.52.6"
4217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4218
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4219
+
4220
+ [[package]]
4221
+ name = "windows_x86_64_gnullvm"
4222
+ version = "0.53.1"
4223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4224
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4225
+
4226
+ [[package]]
4227
+ name = "windows_x86_64_msvc"
4228
+ version = "0.52.6"
4229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4230
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4231
+
4232
+ [[package]]
4233
+ name = "windows_x86_64_msvc"
4234
+ version = "0.53.1"
4235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4236
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4237
+
4238
+ [[package]]
4239
+ name = "winnow"
4240
+ version = "0.7.15"
4241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4242
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4243
+ dependencies = [
4244
+ "memchr",
4245
+ ]
4246
+
4247
+ [[package]]
4248
+ name = "winnow"
4249
+ version = "1.0.3"
4250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4251
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4252
+
4253
+ [[package]]
4254
+ name = "wit-bindgen"
4255
+ version = "0.57.1"
4256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4257
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4258
+
4259
+ [[package]]
4260
+ name = "writeable"
4261
+ version = "0.6.3"
4262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4263
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4264
+
4265
+ [[package]]
4266
+ name = "x25519-dalek"
4267
+ version = "2.0.1"
4268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4269
+ checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
4270
+ dependencies = [
4271
+ "curve25519-dalek",
4272
+ "rand_core 0.6.4",
4273
+ "serde",
4274
+ "zeroize",
4275
+ ]
4276
+
4277
+ [[package]]
4278
+ name = "xsalsa20poly1305"
4279
+ version = "0.9.1"
4280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4281
+ checksum = "02a6dad357567f81cd78ee75f7c61f1b30bb2fe4390be8fb7c69e2ac8dffb6c7"
4282
+ dependencies = [
4283
+ "aead",
4284
+ "poly1305",
4285
+ "salsa20",
4286
+ "subtle",
4287
+ "zeroize",
4288
+ ]
4289
+
4290
+ [[package]]
4291
+ name = "yoke"
4292
+ version = "0.8.3"
4293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4294
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4295
+ dependencies = [
4296
+ "stable_deref_trait",
4297
+ "yoke-derive",
4298
+ "zerofrom",
4299
+ ]
4300
+
4301
+ [[package]]
4302
+ name = "yoke-derive"
4303
+ version = "0.8.2"
4304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4305
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4306
+ dependencies = [
4307
+ "proc-macro2",
4308
+ "quote",
4309
+ "syn",
4310
+ "synstructure",
4311
+ ]
4312
+
4313
+ [[package]]
4314
+ name = "zerocopy"
4315
+ version = "0.8.52"
4316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4317
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
4318
+ dependencies = [
4319
+ "zerocopy-derive",
4320
+ ]
4321
+
4322
+ [[package]]
4323
+ name = "zerocopy-derive"
4324
+ version = "0.8.52"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
4327
+ dependencies = [
4328
+ "proc-macro2",
4329
+ "quote",
4330
+ "syn",
4331
+ ]
4332
+
4333
+ [[package]]
4334
+ name = "zerofrom"
4335
+ version = "0.1.8"
4336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4337
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4338
+ dependencies = [
4339
+ "zerofrom-derive",
4340
+ ]
4341
+
4342
+ [[package]]
4343
+ name = "zerofrom-derive"
4344
+ version = "0.1.7"
4345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4346
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4347
+ dependencies = [
4348
+ "proc-macro2",
4349
+ "quote",
4350
+ "syn",
4351
+ "synstructure",
4352
+ ]
4353
+
4354
+ [[package]]
4355
+ name = "zeroize"
4356
+ version = "1.9.0"
4357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4358
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4359
+ dependencies = [
4360
+ "zeroize_derive",
4361
+ ]
4362
+
4363
+ [[package]]
4364
+ name = "zeroize_derive"
4365
+ version = "1.5.0"
4366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4367
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
4368
+ dependencies = [
4369
+ "proc-macro2",
4370
+ "quote",
4371
+ "syn",
4372
+ ]
4373
+
4374
+ [[package]]
4375
+ name = "zerotrie"
4376
+ version = "0.2.4"
4377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4378
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4379
+ dependencies = [
4380
+ "displaydoc",
4381
+ "yoke",
4382
+ "zerofrom",
4383
+ ]
4384
+
4385
+ [[package]]
4386
+ name = "zerovec"
4387
+ version = "0.11.6"
4388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4389
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4390
+ dependencies = [
4391
+ "yoke",
4392
+ "zerofrom",
4393
+ "zerovec-derive",
4394
+ ]
4395
+
4396
+ [[package]]
4397
+ name = "zerovec-derive"
4398
+ version = "0.11.3"
4399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4400
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4401
+ dependencies = [
4402
+ "proc-macro2",
4403
+ "quote",
4404
+ "syn",
4405
+ ]
4406
+
4407
+ [[package]]
4408
+ name = "zmij"
4409
+ version = "1.0.21"
4410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4411
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"