skytale-sdk 0.1.0__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.
@@ -0,0 +1,3584 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
+ dependencies = [
11
+ "crypto-common",
12
+ "generic-array",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "aes"
17
+ version = "0.8.4"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
20
+ dependencies = [
21
+ "cfg-if",
22
+ "cipher",
23
+ "cpufeatures",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aes-gcm"
28
+ version = "0.10.3"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
31
+ dependencies = [
32
+ "aead",
33
+ "aes",
34
+ "cipher",
35
+ "ctr",
36
+ "ghash",
37
+ "subtle",
38
+ "zeroize",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "aho-corasick"
43
+ version = "1.1.4"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
46
+ dependencies = [
47
+ "memchr",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anyhow"
52
+ version = "1.0.102"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
55
+
56
+ [[package]]
57
+ name = "async-trait"
58
+ version = "0.1.89"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
61
+ dependencies = [
62
+ "proc-macro2",
63
+ "quote",
64
+ "syn 2.0.117",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "atomic-waker"
69
+ version = "1.1.2"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
72
+
73
+ [[package]]
74
+ name = "axum"
75
+ version = "0.8.8"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
78
+ dependencies = [
79
+ "axum-core",
80
+ "bytes",
81
+ "futures-util",
82
+ "http",
83
+ "http-body",
84
+ "http-body-util",
85
+ "itoa",
86
+ "matchit",
87
+ "memchr",
88
+ "mime",
89
+ "percent-encoding",
90
+ "pin-project-lite",
91
+ "serde_core",
92
+ "sync_wrapper",
93
+ "tower",
94
+ "tower-layer",
95
+ "tower-service",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "axum-core"
100
+ version = "0.5.6"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
103
+ dependencies = [
104
+ "bytes",
105
+ "futures-core",
106
+ "http",
107
+ "http-body",
108
+ "http-body-util",
109
+ "mime",
110
+ "pin-project-lite",
111
+ "sync_wrapper",
112
+ "tower-layer",
113
+ "tower-service",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "base16ct"
118
+ version = "0.2.0"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
121
+
122
+ [[package]]
123
+ name = "base64"
124
+ version = "0.22.1"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
127
+
128
+ [[package]]
129
+ name = "base64ct"
130
+ version = "1.8.3"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
133
+
134
+ [[package]]
135
+ name = "bitflags"
136
+ version = "2.11.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
139
+
140
+ [[package]]
141
+ name = "block-buffer"
142
+ version = "0.10.4"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
145
+ dependencies = [
146
+ "generic-array",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "bumpalo"
151
+ version = "3.20.2"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
154
+
155
+ [[package]]
156
+ name = "bytes"
157
+ version = "1.11.1"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
160
+
161
+ [[package]]
162
+ name = "cc"
163
+ version = "1.2.56"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
166
+ dependencies = [
167
+ "find-msvc-tools",
168
+ "shlex",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "cesu8"
173
+ version = "1.1.0"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
176
+
177
+ [[package]]
178
+ name = "cfg-if"
179
+ version = "1.0.4"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
182
+
183
+ [[package]]
184
+ name = "chacha20"
185
+ version = "0.9.1"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
188
+ dependencies = [
189
+ "cfg-if",
190
+ "cipher",
191
+ "cpufeatures",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "chacha20poly1305"
196
+ version = "0.10.1"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
199
+ dependencies = [
200
+ "aead",
201
+ "chacha20",
202
+ "cipher",
203
+ "poly1305",
204
+ "zeroize",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "cipher"
209
+ version = "0.4.4"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
212
+ dependencies = [
213
+ "crypto-common",
214
+ "inout",
215
+ "zeroize",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "combine"
220
+ version = "4.6.7"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
223
+ dependencies = [
224
+ "bytes",
225
+ "memchr",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "const-oid"
230
+ version = "0.9.6"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
233
+
234
+ [[package]]
235
+ name = "core-foundation"
236
+ version = "0.10.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
239
+ dependencies = [
240
+ "core-foundation-sys",
241
+ "libc",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "core-foundation-sys"
246
+ version = "0.8.7"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
249
+
250
+ [[package]]
251
+ name = "cpufeatures"
252
+ version = "0.2.17"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
255
+ dependencies = [
256
+ "libc",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "critical-section"
261
+ version = "1.2.0"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
264
+
265
+ [[package]]
266
+ name = "crossbeam-deque"
267
+ version = "0.8.6"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
270
+ dependencies = [
271
+ "crossbeam-epoch",
272
+ "crossbeam-utils",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "crossbeam-epoch"
277
+ version = "0.9.18"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
280
+ dependencies = [
281
+ "crossbeam-utils",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "crossbeam-utils"
286
+ version = "0.8.21"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
289
+
290
+ [[package]]
291
+ name = "crypto-bigint"
292
+ version = "0.5.5"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
295
+ dependencies = [
296
+ "generic-array",
297
+ "rand_core",
298
+ "subtle",
299
+ "zeroize",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "crypto-common"
304
+ version = "0.1.7"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
307
+ dependencies = [
308
+ "generic-array",
309
+ "rand_core",
310
+ "typenum",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "ctr"
315
+ version = "0.9.2"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
318
+ dependencies = [
319
+ "cipher",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "curve25519-dalek"
324
+ version = "4.1.3"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
327
+ dependencies = [
328
+ "cfg-if",
329
+ "cpufeatures",
330
+ "curve25519-dalek-derive",
331
+ "digest",
332
+ "fiat-crypto",
333
+ "rustc_version",
334
+ "subtle",
335
+ "zeroize",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "curve25519-dalek-derive"
340
+ version = "0.1.1"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
343
+ dependencies = [
344
+ "proc-macro2",
345
+ "quote",
346
+ "syn 2.0.117",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "darling"
351
+ version = "0.20.11"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
354
+ dependencies = [
355
+ "darling_core",
356
+ "darling_macro",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "darling_core"
361
+ version = "0.20.11"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
364
+ dependencies = [
365
+ "fnv",
366
+ "ident_case",
367
+ "proc-macro2",
368
+ "quote",
369
+ "strsim",
370
+ "syn 2.0.117",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "darling_macro"
375
+ version = "0.20.11"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
378
+ dependencies = [
379
+ "darling_core",
380
+ "quote",
381
+ "syn 2.0.117",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "dashmap"
386
+ version = "6.1.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
389
+ dependencies = [
390
+ "cfg-if",
391
+ "crossbeam-utils",
392
+ "hashbrown 0.14.5",
393
+ "lock_api",
394
+ "once_cell",
395
+ "parking_lot_core",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "debug_tree"
400
+ version = "0.4.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "2d1ec383f2d844902d3c34e4253ba11ae48513cdaddc565cf1a6518db09a8e57"
403
+ dependencies = [
404
+ "once_cell",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "der"
409
+ version = "0.7.10"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
412
+ dependencies = [
413
+ "const-oid",
414
+ "der_derive",
415
+ "flagset",
416
+ "pem-rfc7468",
417
+ "zeroize",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "der_derive"
422
+ version = "0.7.3"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
425
+ dependencies = [
426
+ "proc-macro2",
427
+ "quote",
428
+ "syn 2.0.117",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "digest"
433
+ version = "0.10.7"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
436
+ dependencies = [
437
+ "block-buffer",
438
+ "const-oid",
439
+ "crypto-common",
440
+ "subtle",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "displaydoc"
445
+ version = "0.2.5"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
448
+ dependencies = [
449
+ "proc-macro2",
450
+ "quote",
451
+ "syn 2.0.117",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "ecdsa"
456
+ version = "0.16.9"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
459
+ dependencies = [
460
+ "der",
461
+ "digest",
462
+ "elliptic-curve",
463
+ "rfc6979",
464
+ "signature",
465
+ "spki",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "ed25519"
470
+ version = "2.2.3"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
473
+ dependencies = [
474
+ "pkcs8",
475
+ "signature",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "ed25519-dalek"
480
+ version = "2.2.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
483
+ dependencies = [
484
+ "curve25519-dalek",
485
+ "ed25519",
486
+ "rand_core",
487
+ "serde",
488
+ "sha2",
489
+ "subtle",
490
+ "zeroize",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "either"
495
+ version = "1.15.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
498
+
499
+ [[package]]
500
+ name = "elliptic-curve"
501
+ version = "0.13.8"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
504
+ dependencies = [
505
+ "base16ct",
506
+ "crypto-bigint",
507
+ "digest",
508
+ "ff",
509
+ "generic-array",
510
+ "group",
511
+ "hkdf",
512
+ "pem-rfc7468",
513
+ "pkcs8",
514
+ "rand_core",
515
+ "sec1",
516
+ "subtle",
517
+ "zeroize",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "equivalent"
522
+ version = "1.0.2"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
525
+
526
+ [[package]]
527
+ name = "errno"
528
+ version = "0.3.14"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
531
+ dependencies = [
532
+ "libc",
533
+ "windows-sys 0.61.2",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "ext-trait"
538
+ version = "1.0.1"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "d772df1c1a777963712fb68e014235e80863d6a91a85c4e06ba2d16243a310e5"
541
+ dependencies = [
542
+ "ext-trait-proc_macros",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "ext-trait-proc_macros"
547
+ version = "1.0.1"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "1ab7934152eaf26aa5aa9f7371408ad5af4c31357073c9e84c3b9d7f11ad639a"
550
+ dependencies = [
551
+ "proc-macro2",
552
+ "quote",
553
+ "syn 1.0.109",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "extension-traits"
558
+ version = "1.0.1"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "a296e5a895621edf9fa8329c83aa1cb69a964643e36cf54d8d7a69b789089537"
561
+ dependencies = [
562
+ "ext-trait",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "extern-c"
567
+ version = "0.1.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "320bea982e85d42441eb25c49b41218e7eaa2657e8f90bc4eca7437376751e23"
570
+
571
+ [[package]]
572
+ name = "fallible-iterator"
573
+ version = "0.3.0"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
576
+
577
+ [[package]]
578
+ name = "fallible-streaming-iterator"
579
+ version = "0.1.9"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
582
+
583
+ [[package]]
584
+ name = "fastrand"
585
+ version = "2.3.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
588
+
589
+ [[package]]
590
+ name = "ff"
591
+ version = "0.13.1"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
594
+ dependencies = [
595
+ "rand_core",
596
+ "subtle",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "fiat-crypto"
601
+ version = "0.2.9"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
604
+
605
+ [[package]]
606
+ name = "find-msvc-tools"
607
+ version = "0.1.9"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
610
+
611
+ [[package]]
612
+ name = "fixedbitset"
613
+ version = "0.5.7"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
616
+
617
+ [[package]]
618
+ name = "flagset"
619
+ version = "0.4.7"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
622
+
623
+ [[package]]
624
+ name = "fnv"
625
+ version = "1.0.7"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
628
+
629
+ [[package]]
630
+ name = "foldhash"
631
+ version = "0.1.5"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
634
+
635
+ [[package]]
636
+ name = "form_urlencoded"
637
+ version = "1.2.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
640
+ dependencies = [
641
+ "percent-encoding",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "futures"
646
+ version = "0.3.32"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
649
+ dependencies = [
650
+ "futures-channel",
651
+ "futures-core",
652
+ "futures-io",
653
+ "futures-sink",
654
+ "futures-task",
655
+ "futures-util",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "futures-channel"
660
+ version = "0.3.32"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
663
+ dependencies = [
664
+ "futures-core",
665
+ "futures-sink",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "futures-core"
670
+ version = "0.3.32"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
673
+
674
+ [[package]]
675
+ name = "futures-io"
676
+ version = "0.3.32"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
679
+
680
+ [[package]]
681
+ name = "futures-sink"
682
+ version = "0.3.32"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
685
+
686
+ [[package]]
687
+ name = "futures-task"
688
+ version = "0.3.32"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
691
+
692
+ [[package]]
693
+ name = "futures-util"
694
+ version = "0.3.32"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
697
+ dependencies = [
698
+ "futures-channel",
699
+ "futures-core",
700
+ "futures-io",
701
+ "futures-sink",
702
+ "futures-task",
703
+ "memchr",
704
+ "pin-project-lite",
705
+ "slab",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "generic-array"
710
+ version = "0.14.7"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
713
+ dependencies = [
714
+ "typenum",
715
+ "version_check",
716
+ "zeroize",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "getrandom"
721
+ version = "0.2.17"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
724
+ dependencies = [
725
+ "cfg-if",
726
+ "js-sys",
727
+ "libc",
728
+ "wasi",
729
+ "wasm-bindgen",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "getrandom"
734
+ version = "0.4.1"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
737
+ dependencies = [
738
+ "cfg-if",
739
+ "libc",
740
+ "r-efi",
741
+ "wasip2",
742
+ "wasip3",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "ghash"
747
+ version = "0.5.1"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
750
+ dependencies = [
751
+ "opaque-debug",
752
+ "polyval",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "group"
757
+ version = "0.13.0"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
760
+ dependencies = [
761
+ "ff",
762
+ "rand_core",
763
+ "subtle",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "h2"
768
+ version = "0.4.13"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
771
+ dependencies = [
772
+ "atomic-waker",
773
+ "bytes",
774
+ "fnv",
775
+ "futures-core",
776
+ "futures-sink",
777
+ "http",
778
+ "indexmap",
779
+ "slab",
780
+ "tokio",
781
+ "tokio-util",
782
+ "tracing",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "hashbrown"
787
+ version = "0.14.5"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
790
+
791
+ [[package]]
792
+ name = "hashbrown"
793
+ version = "0.15.5"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
796
+ dependencies = [
797
+ "foldhash",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "hashbrown"
802
+ version = "0.16.1"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
805
+
806
+ [[package]]
807
+ name = "hashlink"
808
+ version = "0.10.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
811
+ dependencies = [
812
+ "hashbrown 0.15.5",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "heck"
817
+ version = "0.4.1"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
820
+
821
+ [[package]]
822
+ name = "heck"
823
+ version = "0.5.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
826
+
827
+ [[package]]
828
+ name = "hex"
829
+ version = "0.4.3"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
832
+ dependencies = [
833
+ "serde",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "hkdf"
838
+ version = "0.12.4"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
841
+ dependencies = [
842
+ "hmac",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "hmac"
847
+ version = "0.12.1"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
850
+ dependencies = [
851
+ "digest",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "http"
856
+ version = "1.4.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
859
+ dependencies = [
860
+ "bytes",
861
+ "itoa",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "http-body"
866
+ version = "1.0.1"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
869
+ dependencies = [
870
+ "bytes",
871
+ "http",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "http-body-util"
876
+ version = "0.1.3"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
879
+ dependencies = [
880
+ "bytes",
881
+ "futures-core",
882
+ "http",
883
+ "http-body",
884
+ "pin-project-lite",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "httparse"
889
+ version = "1.10.1"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
892
+
893
+ [[package]]
894
+ name = "httpdate"
895
+ version = "1.0.3"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
898
+
899
+ [[package]]
900
+ name = "hyper"
901
+ version = "1.8.1"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
904
+ dependencies = [
905
+ "atomic-waker",
906
+ "bytes",
907
+ "futures-channel",
908
+ "futures-core",
909
+ "h2",
910
+ "http",
911
+ "http-body",
912
+ "httparse",
913
+ "httpdate",
914
+ "itoa",
915
+ "pin-project-lite",
916
+ "pin-utils",
917
+ "smallvec",
918
+ "tokio",
919
+ "want",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "hyper-rustls"
924
+ version = "0.27.7"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
927
+ dependencies = [
928
+ "http",
929
+ "hyper",
930
+ "hyper-util",
931
+ "rustls",
932
+ "rustls-pki-types",
933
+ "tokio",
934
+ "tokio-rustls",
935
+ "tower-service",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "hyper-timeout"
940
+ version = "0.5.2"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
943
+ dependencies = [
944
+ "hyper",
945
+ "hyper-util",
946
+ "pin-project-lite",
947
+ "tokio",
948
+ "tower-service",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "hyper-util"
953
+ version = "0.1.20"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
956
+ dependencies = [
957
+ "base64",
958
+ "bytes",
959
+ "futures-channel",
960
+ "futures-util",
961
+ "http",
962
+ "http-body",
963
+ "hyper",
964
+ "ipnet",
965
+ "libc",
966
+ "percent-encoding",
967
+ "pin-project-lite",
968
+ "socket2",
969
+ "tokio",
970
+ "tower-service",
971
+ "tracing",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "icu_collections"
976
+ version = "2.1.1"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
979
+ dependencies = [
980
+ "displaydoc",
981
+ "potential_utf",
982
+ "yoke",
983
+ "zerofrom",
984
+ "zerovec",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "icu_locale_core"
989
+ version = "2.1.1"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
992
+ dependencies = [
993
+ "displaydoc",
994
+ "litemap",
995
+ "tinystr",
996
+ "writeable",
997
+ "zerovec",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "icu_normalizer"
1002
+ version = "2.1.1"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1005
+ dependencies = [
1006
+ "icu_collections",
1007
+ "icu_normalizer_data",
1008
+ "icu_properties",
1009
+ "icu_provider",
1010
+ "smallvec",
1011
+ "zerovec",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "icu_normalizer_data"
1016
+ version = "2.1.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1019
+
1020
+ [[package]]
1021
+ name = "icu_properties"
1022
+ version = "2.1.2"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1025
+ dependencies = [
1026
+ "icu_collections",
1027
+ "icu_locale_core",
1028
+ "icu_properties_data",
1029
+ "icu_provider",
1030
+ "zerotrie",
1031
+ "zerovec",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "icu_properties_data"
1036
+ version = "2.1.2"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1039
+
1040
+ [[package]]
1041
+ name = "icu_provider"
1042
+ version = "2.1.1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1045
+ dependencies = [
1046
+ "displaydoc",
1047
+ "icu_locale_core",
1048
+ "writeable",
1049
+ "yoke",
1050
+ "zerofrom",
1051
+ "zerotrie",
1052
+ "zerovec",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "id-arena"
1057
+ version = "2.3.0"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1060
+
1061
+ [[package]]
1062
+ name = "ident_case"
1063
+ version = "1.0.1"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1066
+
1067
+ [[package]]
1068
+ name = "idna"
1069
+ version = "1.1.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1072
+ dependencies = [
1073
+ "idna_adapter",
1074
+ "smallvec",
1075
+ "utf8_iter",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "idna_adapter"
1080
+ version = "1.2.1"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1083
+ dependencies = [
1084
+ "icu_normalizer",
1085
+ "icu_properties",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "indexmap"
1090
+ version = "2.13.0"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1093
+ dependencies = [
1094
+ "equivalent",
1095
+ "hashbrown 0.16.1",
1096
+ "serde",
1097
+ "serde_core",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "inout"
1102
+ version = "0.1.4"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1105
+ dependencies = [
1106
+ "generic-array",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "ipnet"
1111
+ version = "2.11.0"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1114
+
1115
+ [[package]]
1116
+ name = "iri-string"
1117
+ version = "0.7.10"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1120
+ dependencies = [
1121
+ "memchr",
1122
+ "serde",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "itertools"
1127
+ version = "0.14.0"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1130
+ dependencies = [
1131
+ "either",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "itoa"
1136
+ version = "1.0.17"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1139
+
1140
+ [[package]]
1141
+ name = "jni"
1142
+ version = "0.21.1"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1145
+ dependencies = [
1146
+ "cesu8",
1147
+ "cfg-if",
1148
+ "combine",
1149
+ "jni-sys",
1150
+ "log",
1151
+ "thiserror 1.0.69",
1152
+ "walkdir",
1153
+ "windows-sys 0.45.0",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "jni-sys"
1158
+ version = "0.3.0"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1161
+
1162
+ [[package]]
1163
+ name = "js-sys"
1164
+ version = "0.3.90"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "14dc6f6450b3f6d4ed5b16327f38fed626d375a886159ca555bd7822c0c3a5a6"
1167
+ dependencies = [
1168
+ "once_cell",
1169
+ "wasm-bindgen",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "leb128fmt"
1174
+ version = "0.1.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1177
+
1178
+ [[package]]
1179
+ name = "libc"
1180
+ version = "0.2.182"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1183
+
1184
+ [[package]]
1185
+ name = "libsqlite3-sys"
1186
+ version = "0.35.0"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f"
1189
+ dependencies = [
1190
+ "cc",
1191
+ "pkg-config",
1192
+ "vcpkg",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "linux-raw-sys"
1197
+ version = "0.12.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1200
+
1201
+ [[package]]
1202
+ name = "litemap"
1203
+ version = "0.8.1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1206
+
1207
+ [[package]]
1208
+ name = "lock_api"
1209
+ version = "0.4.14"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1212
+ dependencies = [
1213
+ "scopeguard",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "log"
1218
+ version = "0.4.29"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1221
+
1222
+ [[package]]
1223
+ name = "macro_rules_attribute"
1224
+ version = "0.1.3"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862"
1227
+ dependencies = [
1228
+ "macro_rules_attribute-proc_macro",
1229
+ "paste",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "macro_rules_attribute-proc_macro"
1234
+ version = "0.1.3"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d"
1237
+
1238
+ [[package]]
1239
+ name = "matchit"
1240
+ version = "0.8.4"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1243
+
1244
+ [[package]]
1245
+ name = "maybe-async"
1246
+ version = "0.2.10"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
1249
+ dependencies = [
1250
+ "proc-macro2",
1251
+ "quote",
1252
+ "syn 2.0.117",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "memchr"
1257
+ version = "2.8.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1260
+
1261
+ [[package]]
1262
+ name = "mime"
1263
+ version = "0.3.17"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1266
+
1267
+ [[package]]
1268
+ name = "mio"
1269
+ version = "1.1.1"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1272
+ dependencies = [
1273
+ "libc",
1274
+ "wasi",
1275
+ "windows-sys 0.61.2",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "mls-rs"
1280
+ version = "0.53.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "a719b5a7478a45d15336b2aa3310b5e4982ce0514af4967b61eb2563608a766a"
1283
+ dependencies = [
1284
+ "async-trait",
1285
+ "cfg-if",
1286
+ "debug_tree",
1287
+ "futures",
1288
+ "getrandom 0.2.17",
1289
+ "hex",
1290
+ "itertools",
1291
+ "maybe-async",
1292
+ "mls-rs-codec",
1293
+ "mls-rs-core",
1294
+ "mls-rs-identity-x509",
1295
+ "portable-atomic",
1296
+ "portable-atomic-util",
1297
+ "rand_core",
1298
+ "rayon",
1299
+ "safer-ffi-gen",
1300
+ "serde",
1301
+ "spin",
1302
+ "subtle",
1303
+ "thiserror 2.0.18",
1304
+ "wasm-bindgen",
1305
+ "zeroize",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "mls-rs-codec"
1310
+ version = "0.7.0"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "45bd834f164dc06c1fed805540ae307a460b7ed7c2769a35a376f1de577a0dc1"
1313
+ dependencies = [
1314
+ "itertools",
1315
+ "mls-rs-codec-derive",
1316
+ "thiserror 2.0.18",
1317
+ "wasm-bindgen",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "mls-rs-codec-derive"
1322
+ version = "0.2.0"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "c8b31fb579767147e96686889f1e7459d6bd41a131b11d7cd130776cffadb1c3"
1325
+ dependencies = [
1326
+ "darling",
1327
+ "proc-macro2",
1328
+ "quote",
1329
+ "syn 2.0.117",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "mls-rs-core"
1334
+ version = "0.25.0"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "0ab72d0a37c8c7947091a0dbebc051038b2cd306aee9b26a56a19c41c662c12e"
1337
+ dependencies = [
1338
+ "async-trait",
1339
+ "hex",
1340
+ "maybe-async",
1341
+ "mls-rs-codec",
1342
+ "safer-ffi-gen",
1343
+ "serde",
1344
+ "thiserror 2.0.18",
1345
+ "wasm-bindgen",
1346
+ "zeroize",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "mls-rs-crypto-hpke"
1351
+ version = "0.19.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "ff44e5af982010a33120f303ff4257ebef84240242cfa288e94261d07f17ece0"
1354
+ dependencies = [
1355
+ "async-trait",
1356
+ "cfg-if",
1357
+ "maybe-async",
1358
+ "mls-rs-core",
1359
+ "mls-rs-crypto-traits",
1360
+ "thiserror 2.0.18",
1361
+ "zeroize",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "mls-rs-crypto-rustcrypto"
1366
+ version = "0.20.0"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "f91335a7b1822030c23cf1147c5798e7138fb0f54511faa4b55b2e8142566eea"
1369
+ dependencies = [
1370
+ "aead",
1371
+ "aes-gcm",
1372
+ "async-trait",
1373
+ "chacha20poly1305",
1374
+ "ed25519-dalek",
1375
+ "generic-array",
1376
+ "getrandom 0.2.17",
1377
+ "hkdf",
1378
+ "hmac",
1379
+ "maybe-async",
1380
+ "mls-rs-core",
1381
+ "mls-rs-crypto-hpke",
1382
+ "mls-rs-crypto-traits",
1383
+ "mls-rs-identity-x509",
1384
+ "p256",
1385
+ "p384",
1386
+ "rand_core",
1387
+ "sec1",
1388
+ "sha2",
1389
+ "spki",
1390
+ "thiserror 2.0.18",
1391
+ "x25519-dalek",
1392
+ "x509-cert",
1393
+ "zeroize",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "mls-rs-crypto-traits"
1398
+ version = "0.20.0"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "69631273214ef898accfff4c9bc9aa93e2df53d3038bf3e20d40c33cdccb8826"
1401
+ dependencies = [
1402
+ "async-trait",
1403
+ "maybe-async",
1404
+ "mls-rs-core",
1405
+ "zeroize",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "mls-rs-identity-x509"
1410
+ version = "0.19.0"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "4dc915af05e492e1de8a37ea5aaf4e652f8b56d32c44a312645aeacb312958fb"
1413
+ dependencies = [
1414
+ "async-trait",
1415
+ "maybe-async",
1416
+ "mls-rs-core",
1417
+ "thiserror 2.0.18",
1418
+ "wasm-bindgen",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "mls-rs-provider-sqlite"
1423
+ version = "0.21.0"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "b266fe799ff0c9aae61b6f88d097e861fade70f0387f99e6b72ad457ffc83620"
1426
+ dependencies = [
1427
+ "async-trait",
1428
+ "hex",
1429
+ "maybe-async",
1430
+ "mls-rs-core",
1431
+ "rusqlite",
1432
+ "thiserror 2.0.18",
1433
+ "zeroize",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "multimap"
1438
+ version = "0.10.1"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1441
+
1442
+ [[package]]
1443
+ name = "once_cell"
1444
+ version = "1.21.3"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1447
+ dependencies = [
1448
+ "critical-section",
1449
+ "portable-atomic",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "opaque-debug"
1454
+ version = "0.3.1"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1457
+
1458
+ [[package]]
1459
+ name = "openssl-probe"
1460
+ version = "0.2.1"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1463
+
1464
+ [[package]]
1465
+ name = "p256"
1466
+ version = "0.13.2"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
1469
+ dependencies = [
1470
+ "ecdsa",
1471
+ "elliptic-curve",
1472
+ "primeorder",
1473
+ "sha2",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "p384"
1478
+ version = "0.13.1"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
1481
+ dependencies = [
1482
+ "ecdsa",
1483
+ "elliptic-curve",
1484
+ "primeorder",
1485
+ "sha2",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "parking_lot"
1490
+ version = "0.12.5"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1493
+ dependencies = [
1494
+ "lock_api",
1495
+ "parking_lot_core",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "parking_lot_core"
1500
+ version = "0.9.12"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1503
+ dependencies = [
1504
+ "cfg-if",
1505
+ "libc",
1506
+ "redox_syscall",
1507
+ "smallvec",
1508
+ "windows-link",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "paste"
1513
+ version = "1.0.15"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1516
+
1517
+ [[package]]
1518
+ name = "pem-rfc7468"
1519
+ version = "0.7.0"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1522
+ dependencies = [
1523
+ "base64ct",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "percent-encoding"
1528
+ version = "2.3.2"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1531
+
1532
+ [[package]]
1533
+ name = "petgraph"
1534
+ version = "0.8.3"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
1537
+ dependencies = [
1538
+ "fixedbitset",
1539
+ "hashbrown 0.15.5",
1540
+ "indexmap",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "pin-project"
1545
+ version = "1.1.11"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
1548
+ dependencies = [
1549
+ "pin-project-internal",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "pin-project-internal"
1554
+ version = "1.1.11"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
1557
+ dependencies = [
1558
+ "proc-macro2",
1559
+ "quote",
1560
+ "syn 2.0.117",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "pin-project-lite"
1565
+ version = "0.2.17"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1568
+
1569
+ [[package]]
1570
+ name = "pin-utils"
1571
+ version = "0.1.0"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1574
+
1575
+ [[package]]
1576
+ name = "pkcs8"
1577
+ version = "0.10.2"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1580
+ dependencies = [
1581
+ "der",
1582
+ "spki",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "pkg-config"
1587
+ version = "0.3.32"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1590
+
1591
+ [[package]]
1592
+ name = "poly1305"
1593
+ version = "0.8.0"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
1596
+ dependencies = [
1597
+ "cpufeatures",
1598
+ "opaque-debug",
1599
+ "universal-hash",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "polyval"
1604
+ version = "0.6.2"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1607
+ dependencies = [
1608
+ "cfg-if",
1609
+ "cpufeatures",
1610
+ "opaque-debug",
1611
+ "universal-hash",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "portable-atomic"
1616
+ version = "1.13.1"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1619
+ dependencies = [
1620
+ "critical-section",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "portable-atomic-util"
1625
+ version = "0.2.5"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
1628
+ dependencies = [
1629
+ "portable-atomic",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "potential_utf"
1634
+ version = "0.1.4"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1637
+ dependencies = [
1638
+ "zerovec",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "ppv-lite86"
1643
+ version = "0.2.21"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1646
+ dependencies = [
1647
+ "zerocopy",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "prettyplease"
1652
+ version = "0.1.25"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
1655
+ dependencies = [
1656
+ "proc-macro2",
1657
+ "syn 1.0.109",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "prettyplease"
1662
+ version = "0.2.37"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1665
+ dependencies = [
1666
+ "proc-macro2",
1667
+ "syn 2.0.117",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "primeorder"
1672
+ version = "0.13.6"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
1675
+ dependencies = [
1676
+ "elliptic-curve",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "proc-macro-crate"
1681
+ version = "3.4.0"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
1684
+ dependencies = [
1685
+ "toml_edit",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "proc-macro-error"
1690
+ version = "1.0.4"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1693
+ dependencies = [
1694
+ "proc-macro-error-attr",
1695
+ "proc-macro2",
1696
+ "quote",
1697
+ "syn 1.0.109",
1698
+ "version_check",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "proc-macro-error-attr"
1703
+ version = "1.0.4"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1706
+ dependencies = [
1707
+ "proc-macro2",
1708
+ "quote",
1709
+ "version_check",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "proc-macro2"
1714
+ version = "1.0.106"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1717
+ dependencies = [
1718
+ "unicode-ident",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "prost"
1723
+ version = "0.14.3"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
1726
+ dependencies = [
1727
+ "bytes",
1728
+ "prost-derive",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "prost-build"
1733
+ version = "0.14.3"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
1736
+ dependencies = [
1737
+ "heck 0.5.0",
1738
+ "itertools",
1739
+ "log",
1740
+ "multimap",
1741
+ "petgraph",
1742
+ "prettyplease 0.2.37",
1743
+ "prost",
1744
+ "prost-types",
1745
+ "pulldown-cmark",
1746
+ "pulldown-cmark-to-cmark",
1747
+ "regex",
1748
+ "syn 2.0.117",
1749
+ "tempfile",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "prost-derive"
1754
+ version = "0.14.3"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
1757
+ dependencies = [
1758
+ "anyhow",
1759
+ "itertools",
1760
+ "proc-macro2",
1761
+ "quote",
1762
+ "syn 2.0.117",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "prost-types"
1767
+ version = "0.14.3"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
1770
+ dependencies = [
1771
+ "prost",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "pulldown-cmark"
1776
+ version = "0.13.1"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "83c41efbf8f90ac44de7f3a868f0867851d261b56291732d0cbf7cceaaeb55a6"
1779
+ dependencies = [
1780
+ "bitflags",
1781
+ "memchr",
1782
+ "unicase",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "pulldown-cmark-to-cmark"
1787
+ version = "22.0.0"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
1790
+ dependencies = [
1791
+ "pulldown-cmark",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "pyo3"
1796
+ version = "0.28.2"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
1799
+ dependencies = [
1800
+ "libc",
1801
+ "once_cell",
1802
+ "portable-atomic",
1803
+ "pyo3-build-config",
1804
+ "pyo3-ffi",
1805
+ "pyo3-macros",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "pyo3-build-config"
1810
+ version = "0.28.2"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
1813
+ dependencies = [
1814
+ "target-lexicon",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "pyo3-ffi"
1819
+ version = "0.28.2"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
1822
+ dependencies = [
1823
+ "libc",
1824
+ "pyo3-build-config",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "pyo3-macros"
1829
+ version = "0.28.2"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
1832
+ dependencies = [
1833
+ "proc-macro2",
1834
+ "pyo3-macros-backend",
1835
+ "quote",
1836
+ "syn 2.0.117",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "pyo3-macros-backend"
1841
+ version = "0.28.2"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
1844
+ dependencies = [
1845
+ "heck 0.5.0",
1846
+ "proc-macro2",
1847
+ "pyo3-build-config",
1848
+ "quote",
1849
+ "syn 2.0.117",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "quote"
1854
+ version = "1.0.44"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1857
+ dependencies = [
1858
+ "proc-macro2",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "r-efi"
1863
+ version = "5.3.0"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1866
+
1867
+ [[package]]
1868
+ name = "rand"
1869
+ version = "0.8.5"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1872
+ dependencies = [
1873
+ "libc",
1874
+ "rand_chacha",
1875
+ "rand_core",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "rand_chacha"
1880
+ version = "0.3.1"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1883
+ dependencies = [
1884
+ "ppv-lite86",
1885
+ "rand_core",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "rand_core"
1890
+ version = "0.6.4"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1893
+ dependencies = [
1894
+ "getrandom 0.2.17",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "rayon"
1899
+ version = "1.11.0"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1902
+ dependencies = [
1903
+ "either",
1904
+ "rayon-core",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "rayon-core"
1909
+ version = "1.13.0"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1912
+ dependencies = [
1913
+ "crossbeam-deque",
1914
+ "crossbeam-utils",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "redox_syscall"
1919
+ version = "0.5.18"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1922
+ dependencies = [
1923
+ "bitflags",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "regex"
1928
+ version = "1.12.3"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1931
+ dependencies = [
1932
+ "aho-corasick",
1933
+ "memchr",
1934
+ "regex-automata",
1935
+ "regex-syntax",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "regex-automata"
1940
+ version = "0.4.14"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1943
+ dependencies = [
1944
+ "aho-corasick",
1945
+ "memchr",
1946
+ "regex-syntax",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "regex-syntax"
1951
+ version = "0.8.10"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1954
+
1955
+ [[package]]
1956
+ name = "reqwest"
1957
+ version = "0.13.2"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
1960
+ dependencies = [
1961
+ "base64",
1962
+ "bytes",
1963
+ "futures-core",
1964
+ "http",
1965
+ "http-body",
1966
+ "http-body-util",
1967
+ "hyper",
1968
+ "hyper-rustls",
1969
+ "hyper-util",
1970
+ "js-sys",
1971
+ "log",
1972
+ "percent-encoding",
1973
+ "pin-project-lite",
1974
+ "rustls",
1975
+ "rustls-pki-types",
1976
+ "rustls-platform-verifier",
1977
+ "serde",
1978
+ "serde_json",
1979
+ "sync_wrapper",
1980
+ "tokio",
1981
+ "tokio-rustls",
1982
+ "tower",
1983
+ "tower-http",
1984
+ "tower-service",
1985
+ "url",
1986
+ "wasm-bindgen",
1987
+ "wasm-bindgen-futures",
1988
+ "web-sys",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "rfc6979"
1993
+ version = "0.4.0"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
1996
+ dependencies = [
1997
+ "hmac",
1998
+ "subtle",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "ring"
2003
+ version = "0.17.14"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2006
+ dependencies = [
2007
+ "cc",
2008
+ "cfg-if",
2009
+ "getrandom 0.2.17",
2010
+ "libc",
2011
+ "untrusted",
2012
+ "windows-sys 0.52.0",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "rusqlite"
2017
+ version = "0.37.0"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f"
2020
+ dependencies = [
2021
+ "bitflags",
2022
+ "fallible-iterator",
2023
+ "fallible-streaming-iterator",
2024
+ "hashlink",
2025
+ "libsqlite3-sys",
2026
+ "smallvec",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "rustc_version"
2031
+ version = "0.4.1"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2034
+ dependencies = [
2035
+ "semver",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "rustix"
2040
+ version = "1.1.4"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2043
+ dependencies = [
2044
+ "bitflags",
2045
+ "errno",
2046
+ "libc",
2047
+ "linux-raw-sys",
2048
+ "windows-sys 0.61.2",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "rustls"
2053
+ version = "0.23.37"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2056
+ dependencies = [
2057
+ "log",
2058
+ "once_cell",
2059
+ "ring",
2060
+ "rustls-pki-types",
2061
+ "rustls-webpki",
2062
+ "subtle",
2063
+ "zeroize",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "rustls-native-certs"
2068
+ version = "0.8.3"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2071
+ dependencies = [
2072
+ "openssl-probe",
2073
+ "rustls-pki-types",
2074
+ "schannel",
2075
+ "security-framework",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "rustls-pki-types"
2080
+ version = "1.14.0"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2083
+ dependencies = [
2084
+ "zeroize",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "rustls-platform-verifier"
2089
+ version = "0.6.2"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
2092
+ dependencies = [
2093
+ "core-foundation",
2094
+ "core-foundation-sys",
2095
+ "jni",
2096
+ "log",
2097
+ "once_cell",
2098
+ "rustls",
2099
+ "rustls-native-certs",
2100
+ "rustls-platform-verifier-android",
2101
+ "rustls-webpki",
2102
+ "security-framework",
2103
+ "security-framework-sys",
2104
+ "webpki-root-certs",
2105
+ "windows-sys 0.61.2",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "rustls-platform-verifier-android"
2110
+ version = "0.1.1"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2113
+
2114
+ [[package]]
2115
+ name = "rustls-webpki"
2116
+ version = "0.103.9"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2119
+ dependencies = [
2120
+ "ring",
2121
+ "rustls-pki-types",
2122
+ "untrusted",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "rustversion"
2127
+ version = "1.0.22"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2130
+
2131
+ [[package]]
2132
+ name = "safer-ffi"
2133
+ version = "0.1.13"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "435fdd58b61a6f1d8545274c1dfa458e905ff68c166e65e294a0130ef5e675bd"
2136
+ dependencies = [
2137
+ "extern-c",
2138
+ "libc",
2139
+ "macro_rules_attribute",
2140
+ "paste",
2141
+ "safer_ffi-proc_macros",
2142
+ "scopeguard",
2143
+ "stabby",
2144
+ "uninit",
2145
+ "unwind_safe",
2146
+ "with_builtin_macros",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "safer-ffi-gen"
2151
+ version = "0.9.2"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "bdc3e72a8e99de537461ab5e9331d32c08dd558493e844cb70753a9890fdbc48"
2154
+ dependencies = [
2155
+ "once_cell",
2156
+ "safer-ffi",
2157
+ "safer-ffi-gen-macro",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "safer-ffi-gen-macro"
2162
+ version = "0.9.2"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "836aa8cd7b269dcdd3d81cca1ddc136aa1d2b05f30b6a34c0ff075152b2e3771"
2165
+ dependencies = [
2166
+ "heck 0.4.1",
2167
+ "proc-macro-error",
2168
+ "proc-macro2",
2169
+ "quote",
2170
+ "syn 2.0.117",
2171
+ "thiserror 1.0.69",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "safer_ffi-proc_macros"
2176
+ version = "0.1.13"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "f0f25be5ba5f319542edb31925517e0380245ae37df50a9752cdbc05ef948156"
2179
+ dependencies = [
2180
+ "macro_rules_attribute",
2181
+ "prettyplease 0.1.25",
2182
+ "proc-macro2",
2183
+ "quote",
2184
+ "syn 1.0.109",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "same-file"
2189
+ version = "1.0.6"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2192
+ dependencies = [
2193
+ "winapi-util",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "schannel"
2198
+ version = "0.1.28"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2201
+ dependencies = [
2202
+ "windows-sys 0.61.2",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "scopeguard"
2207
+ version = "1.2.0"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2210
+
2211
+ [[package]]
2212
+ name = "sec1"
2213
+ version = "0.7.3"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2216
+ dependencies = [
2217
+ "base16ct",
2218
+ "der",
2219
+ "generic-array",
2220
+ "pkcs8",
2221
+ "subtle",
2222
+ "zeroize",
2223
+ ]
2224
+
2225
+ [[package]]
2226
+ name = "security-framework"
2227
+ version = "3.7.0"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2230
+ dependencies = [
2231
+ "bitflags",
2232
+ "core-foundation",
2233
+ "core-foundation-sys",
2234
+ "libc",
2235
+ "security-framework-sys",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "security-framework-sys"
2240
+ version = "2.17.0"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2243
+ dependencies = [
2244
+ "core-foundation-sys",
2245
+ "libc",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "semver"
2250
+ version = "1.0.27"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2253
+
2254
+ [[package]]
2255
+ name = "serde"
2256
+ version = "1.0.228"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2259
+ dependencies = [
2260
+ "serde_core",
2261
+ "serde_derive",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "serde_core"
2266
+ version = "1.0.228"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2269
+ dependencies = [
2270
+ "serde_derive",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "serde_derive"
2275
+ version = "1.0.228"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2278
+ dependencies = [
2279
+ "proc-macro2",
2280
+ "quote",
2281
+ "syn 2.0.117",
2282
+ ]
2283
+
2284
+ [[package]]
2285
+ name = "serde_json"
2286
+ version = "1.0.149"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2289
+ dependencies = [
2290
+ "itoa",
2291
+ "memchr",
2292
+ "serde",
2293
+ "serde_core",
2294
+ "zmij",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "sha2"
2299
+ version = "0.10.9"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2302
+ dependencies = [
2303
+ "cfg-if",
2304
+ "cpufeatures",
2305
+ "digest",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "sha2-const-stable"
2310
+ version = "0.1.0"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "5f179d4e11094a893b82fff208f74d448a7512f99f5a0acbd5c679b705f83ed9"
2313
+
2314
+ [[package]]
2315
+ name = "shlex"
2316
+ version = "1.3.0"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2319
+
2320
+ [[package]]
2321
+ name = "signal-hook-registry"
2322
+ version = "1.4.8"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2325
+ dependencies = [
2326
+ "errno",
2327
+ "libc",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "signature"
2332
+ version = "2.2.0"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2335
+ dependencies = [
2336
+ "digest",
2337
+ "rand_core",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "skytale-sdk"
2342
+ version = "0.1.0"
2343
+ dependencies = [
2344
+ "anyhow",
2345
+ "dashmap",
2346
+ "hex",
2347
+ "mls-rs",
2348
+ "mls-rs-crypto-rustcrypto",
2349
+ "mls-rs-provider-sqlite",
2350
+ "prost",
2351
+ "pyo3",
2352
+ "reqwest",
2353
+ "rustls",
2354
+ "serde",
2355
+ "serde_json",
2356
+ "sha2",
2357
+ "thiserror 2.0.18",
2358
+ "tokio",
2359
+ "tokio-stream",
2360
+ "tonic",
2361
+ "tonic-build",
2362
+ "tonic-prost",
2363
+ "tonic-prost-build",
2364
+ "tracing",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "slab"
2369
+ version = "0.4.12"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2372
+
2373
+ [[package]]
2374
+ name = "smallvec"
2375
+ version = "1.15.1"
2376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2377
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2378
+
2379
+ [[package]]
2380
+ name = "socket2"
2381
+ version = "0.6.2"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2384
+ dependencies = [
2385
+ "libc",
2386
+ "windows-sys 0.60.2",
2387
+ ]
2388
+
2389
+ [[package]]
2390
+ name = "spin"
2391
+ version = "0.10.0"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
2394
+ dependencies = [
2395
+ "portable-atomic",
2396
+ ]
2397
+
2398
+ [[package]]
2399
+ name = "spki"
2400
+ version = "0.7.3"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2403
+ dependencies = [
2404
+ "base64ct",
2405
+ "der",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "stabby"
2410
+ version = "36.2.2"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "89b7e94eaf470c2e76b5f15fb2fb49714471a36cc512df5ee231e62e82ec79f8"
2413
+ dependencies = [
2414
+ "rustversion",
2415
+ "stabby-abi",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "stabby-abi"
2420
+ version = "36.2.2"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "0dc7a63b8276b54e51bfffe3d85da56e7906b2dcfcb29018a8ab666c06734c1a"
2423
+ dependencies = [
2424
+ "rustc_version",
2425
+ "rustversion",
2426
+ "sha2-const-stable",
2427
+ "stabby-macros",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "stabby-macros"
2432
+ version = "36.2.2"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "eecb7ec5611ec93ec79d120fbe55f31bea234dc1bed1001d4a071bb688651615"
2435
+ dependencies = [
2436
+ "proc-macro-crate",
2437
+ "proc-macro2",
2438
+ "quote",
2439
+ "rand",
2440
+ "syn 1.0.109",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "stable_deref_trait"
2445
+ version = "1.2.1"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2448
+
2449
+ [[package]]
2450
+ name = "strsim"
2451
+ version = "0.11.1"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2454
+
2455
+ [[package]]
2456
+ name = "subtle"
2457
+ version = "2.6.1"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2460
+
2461
+ [[package]]
2462
+ name = "syn"
2463
+ version = "1.0.109"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2466
+ dependencies = [
2467
+ "proc-macro2",
2468
+ "quote",
2469
+ "unicode-ident",
2470
+ ]
2471
+
2472
+ [[package]]
2473
+ name = "syn"
2474
+ version = "2.0.117"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2477
+ dependencies = [
2478
+ "proc-macro2",
2479
+ "quote",
2480
+ "unicode-ident",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "sync_wrapper"
2485
+ version = "1.0.2"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2488
+ dependencies = [
2489
+ "futures-core",
2490
+ ]
2491
+
2492
+ [[package]]
2493
+ name = "synstructure"
2494
+ version = "0.13.2"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2497
+ dependencies = [
2498
+ "proc-macro2",
2499
+ "quote",
2500
+ "syn 2.0.117",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "target-lexicon"
2505
+ version = "0.13.5"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2508
+
2509
+ [[package]]
2510
+ name = "tempfile"
2511
+ version = "3.26.0"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
2514
+ dependencies = [
2515
+ "fastrand",
2516
+ "getrandom 0.4.1",
2517
+ "once_cell",
2518
+ "rustix",
2519
+ "windows-sys 0.61.2",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "thiserror"
2524
+ version = "1.0.69"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2527
+ dependencies = [
2528
+ "thiserror-impl 1.0.69",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "thiserror"
2533
+ version = "2.0.18"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2536
+ dependencies = [
2537
+ "thiserror-impl 2.0.18",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "thiserror-impl"
2542
+ version = "1.0.69"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2545
+ dependencies = [
2546
+ "proc-macro2",
2547
+ "quote",
2548
+ "syn 2.0.117",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "thiserror-impl"
2553
+ version = "2.0.18"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2556
+ dependencies = [
2557
+ "proc-macro2",
2558
+ "quote",
2559
+ "syn 2.0.117",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "tinystr"
2564
+ version = "0.8.2"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2567
+ dependencies = [
2568
+ "displaydoc",
2569
+ "zerovec",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "tls_codec"
2574
+ version = "0.4.2"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
2577
+ dependencies = [
2578
+ "tls_codec_derive",
2579
+ "zeroize",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "tls_codec_derive"
2584
+ version = "0.4.2"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
2587
+ dependencies = [
2588
+ "proc-macro2",
2589
+ "quote",
2590
+ "syn 2.0.117",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "tokio"
2595
+ version = "1.49.0"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2598
+ dependencies = [
2599
+ "bytes",
2600
+ "libc",
2601
+ "mio",
2602
+ "parking_lot",
2603
+ "pin-project-lite",
2604
+ "signal-hook-registry",
2605
+ "socket2",
2606
+ "tokio-macros",
2607
+ "windows-sys 0.61.2",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "tokio-macros"
2612
+ version = "2.6.0"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2615
+ dependencies = [
2616
+ "proc-macro2",
2617
+ "quote",
2618
+ "syn 2.0.117",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "tokio-rustls"
2623
+ version = "0.26.4"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2626
+ dependencies = [
2627
+ "rustls",
2628
+ "tokio",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "tokio-stream"
2633
+ version = "0.1.18"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2636
+ dependencies = [
2637
+ "futures-core",
2638
+ "pin-project-lite",
2639
+ "tokio",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "tokio-util"
2644
+ version = "0.7.18"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2647
+ dependencies = [
2648
+ "bytes",
2649
+ "futures-core",
2650
+ "futures-sink",
2651
+ "pin-project-lite",
2652
+ "tokio",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "toml_datetime"
2657
+ version = "0.7.5+spec-1.1.0"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2660
+ dependencies = [
2661
+ "serde_core",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "toml_edit"
2666
+ version = "0.23.10+spec-1.0.0"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
2669
+ dependencies = [
2670
+ "indexmap",
2671
+ "toml_datetime",
2672
+ "toml_parser",
2673
+ "winnow",
2674
+ ]
2675
+
2676
+ [[package]]
2677
+ name = "toml_parser"
2678
+ version = "1.0.9+spec-1.1.0"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
2681
+ dependencies = [
2682
+ "winnow",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "tonic"
2687
+ version = "0.14.5"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec"
2690
+ dependencies = [
2691
+ "async-trait",
2692
+ "axum",
2693
+ "base64",
2694
+ "bytes",
2695
+ "h2",
2696
+ "http",
2697
+ "http-body",
2698
+ "http-body-util",
2699
+ "hyper",
2700
+ "hyper-timeout",
2701
+ "hyper-util",
2702
+ "percent-encoding",
2703
+ "pin-project",
2704
+ "socket2",
2705
+ "sync_wrapper",
2706
+ "tokio",
2707
+ "tokio-stream",
2708
+ "tower",
2709
+ "tower-layer",
2710
+ "tower-service",
2711
+ "tracing",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "tonic-build"
2716
+ version = "0.14.5"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "1882ac3bf5ef12877d7ed57aad87e75154c11931c2ba7e6cde5e22d63522c734"
2719
+ dependencies = [
2720
+ "prettyplease 0.2.37",
2721
+ "proc-macro2",
2722
+ "quote",
2723
+ "syn 2.0.117",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "tonic-prost"
2728
+ version = "0.14.5"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309"
2731
+ dependencies = [
2732
+ "bytes",
2733
+ "prost",
2734
+ "tonic",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "tonic-prost-build"
2739
+ version = "0.14.5"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "f3144df636917574672e93d0f56d7edec49f90305749c668df5101751bb8f95a"
2742
+ dependencies = [
2743
+ "prettyplease 0.2.37",
2744
+ "proc-macro2",
2745
+ "prost-build",
2746
+ "prost-types",
2747
+ "quote",
2748
+ "syn 2.0.117",
2749
+ "tempfile",
2750
+ "tonic-build",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "tower"
2755
+ version = "0.5.3"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2758
+ dependencies = [
2759
+ "futures-core",
2760
+ "futures-util",
2761
+ "indexmap",
2762
+ "pin-project-lite",
2763
+ "slab",
2764
+ "sync_wrapper",
2765
+ "tokio",
2766
+ "tokio-util",
2767
+ "tower-layer",
2768
+ "tower-service",
2769
+ "tracing",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "tower-http"
2774
+ version = "0.6.8"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2777
+ dependencies = [
2778
+ "bitflags",
2779
+ "bytes",
2780
+ "futures-util",
2781
+ "http",
2782
+ "http-body",
2783
+ "iri-string",
2784
+ "pin-project-lite",
2785
+ "tower",
2786
+ "tower-layer",
2787
+ "tower-service",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "tower-layer"
2792
+ version = "0.3.3"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2795
+
2796
+ [[package]]
2797
+ name = "tower-service"
2798
+ version = "0.3.3"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2801
+
2802
+ [[package]]
2803
+ name = "tracing"
2804
+ version = "0.1.44"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2807
+ dependencies = [
2808
+ "pin-project-lite",
2809
+ "tracing-attributes",
2810
+ "tracing-core",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "tracing-attributes"
2815
+ version = "0.1.31"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2818
+ dependencies = [
2819
+ "proc-macro2",
2820
+ "quote",
2821
+ "syn 2.0.117",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "tracing-core"
2826
+ version = "0.1.36"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2829
+ dependencies = [
2830
+ "once_cell",
2831
+ ]
2832
+
2833
+ [[package]]
2834
+ name = "try-lock"
2835
+ version = "0.2.5"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2838
+
2839
+ [[package]]
2840
+ name = "typenum"
2841
+ version = "1.19.0"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2844
+
2845
+ [[package]]
2846
+ name = "unicase"
2847
+ version = "2.9.0"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2850
+
2851
+ [[package]]
2852
+ name = "unicode-ident"
2853
+ version = "1.0.24"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2856
+
2857
+ [[package]]
2858
+ name = "unicode-xid"
2859
+ version = "0.2.6"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2862
+
2863
+ [[package]]
2864
+ name = "uninit"
2865
+ version = "0.5.1"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "3e130f2ed46ca5d8ec13c7ff95836827f92f5f5f37fd2b2bf16f33c408d98bb6"
2868
+ dependencies = [
2869
+ "extension-traits",
2870
+ ]
2871
+
2872
+ [[package]]
2873
+ name = "universal-hash"
2874
+ version = "0.5.1"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2877
+ dependencies = [
2878
+ "crypto-common",
2879
+ "subtle",
2880
+ ]
2881
+
2882
+ [[package]]
2883
+ name = "untrusted"
2884
+ version = "0.9.0"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2887
+
2888
+ [[package]]
2889
+ name = "unwind_safe"
2890
+ version = "0.1.0"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "0976c77def3f1f75c4ef892a292c31c0bbe9e3d0702c63044d7c76db298171a3"
2893
+
2894
+ [[package]]
2895
+ name = "url"
2896
+ version = "2.5.8"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2899
+ dependencies = [
2900
+ "form_urlencoded",
2901
+ "idna",
2902
+ "percent-encoding",
2903
+ "serde",
2904
+ ]
2905
+
2906
+ [[package]]
2907
+ name = "utf8_iter"
2908
+ version = "1.0.4"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2911
+
2912
+ [[package]]
2913
+ name = "vcpkg"
2914
+ version = "0.2.15"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2917
+
2918
+ [[package]]
2919
+ name = "version_check"
2920
+ version = "0.9.5"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2923
+
2924
+ [[package]]
2925
+ name = "walkdir"
2926
+ version = "2.5.0"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2929
+ dependencies = [
2930
+ "same-file",
2931
+ "winapi-util",
2932
+ ]
2933
+
2934
+ [[package]]
2935
+ name = "want"
2936
+ version = "0.3.1"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2939
+ dependencies = [
2940
+ "try-lock",
2941
+ ]
2942
+
2943
+ [[package]]
2944
+ name = "wasi"
2945
+ version = "0.11.1+wasi-snapshot-preview1"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2948
+
2949
+ [[package]]
2950
+ name = "wasip2"
2951
+ version = "1.0.2+wasi-0.2.9"
2952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2953
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2954
+ dependencies = [
2955
+ "wit-bindgen",
2956
+ ]
2957
+
2958
+ [[package]]
2959
+ name = "wasip3"
2960
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2963
+ dependencies = [
2964
+ "wit-bindgen",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "wasm-bindgen"
2969
+ version = "0.2.113"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "60722a937f594b7fde9adb894d7c092fc1bb6612897c46368d18e7a20208eff2"
2972
+ dependencies = [
2973
+ "cfg-if",
2974
+ "once_cell",
2975
+ "rustversion",
2976
+ "wasm-bindgen-macro",
2977
+ "wasm-bindgen-shared",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "wasm-bindgen-futures"
2982
+ version = "0.4.63"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "8a89f4650b770e4521aa6573724e2aed4704372151bd0de9d16a3bbabb87441a"
2985
+ dependencies = [
2986
+ "cfg-if",
2987
+ "futures-util",
2988
+ "js-sys",
2989
+ "once_cell",
2990
+ "wasm-bindgen",
2991
+ "web-sys",
2992
+ ]
2993
+
2994
+ [[package]]
2995
+ name = "wasm-bindgen-macro"
2996
+ version = "0.2.113"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "0fac8c6395094b6b91c4af293f4c79371c163f9a6f56184d2c9a85f5a95f3950"
2999
+ dependencies = [
3000
+ "quote",
3001
+ "wasm-bindgen-macro-support",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "wasm-bindgen-macro-support"
3006
+ version = "0.2.113"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "ab3fabce6159dc20728033842636887e4877688ae94382766e00b180abac9d60"
3009
+ dependencies = [
3010
+ "bumpalo",
3011
+ "proc-macro2",
3012
+ "quote",
3013
+ "syn 2.0.117",
3014
+ "wasm-bindgen-shared",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "wasm-bindgen-shared"
3019
+ version = "0.2.113"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "de0e091bdb824da87dc01d967388880d017a0a9bc4f3bdc0d86ee9f9336e3bb5"
3022
+ dependencies = [
3023
+ "unicode-ident",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "wasm-encoder"
3028
+ version = "0.244.0"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3031
+ dependencies = [
3032
+ "leb128fmt",
3033
+ "wasmparser",
3034
+ ]
3035
+
3036
+ [[package]]
3037
+ name = "wasm-metadata"
3038
+ version = "0.244.0"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3041
+ dependencies = [
3042
+ "anyhow",
3043
+ "indexmap",
3044
+ "wasm-encoder",
3045
+ "wasmparser",
3046
+ ]
3047
+
3048
+ [[package]]
3049
+ name = "wasmparser"
3050
+ version = "0.244.0"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3053
+ dependencies = [
3054
+ "bitflags",
3055
+ "hashbrown 0.15.5",
3056
+ "indexmap",
3057
+ "semver",
3058
+ ]
3059
+
3060
+ [[package]]
3061
+ name = "web-sys"
3062
+ version = "0.3.90"
3063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3064
+ checksum = "705eceb4ce901230f8625bd1d665128056ccbe4b7408faa625eec1ba80f59a97"
3065
+ dependencies = [
3066
+ "js-sys",
3067
+ "wasm-bindgen",
3068
+ ]
3069
+
3070
+ [[package]]
3071
+ name = "webpki-root-certs"
3072
+ version = "1.0.6"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
3075
+ dependencies = [
3076
+ "rustls-pki-types",
3077
+ ]
3078
+
3079
+ [[package]]
3080
+ name = "winapi-util"
3081
+ version = "0.1.11"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3084
+ dependencies = [
3085
+ "windows-sys 0.61.2",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "windows-link"
3090
+ version = "0.2.1"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3093
+
3094
+ [[package]]
3095
+ name = "windows-sys"
3096
+ version = "0.45.0"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3099
+ dependencies = [
3100
+ "windows-targets 0.42.2",
3101
+ ]
3102
+
3103
+ [[package]]
3104
+ name = "windows-sys"
3105
+ version = "0.52.0"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3108
+ dependencies = [
3109
+ "windows-targets 0.52.6",
3110
+ ]
3111
+
3112
+ [[package]]
3113
+ name = "windows-sys"
3114
+ version = "0.60.2"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3117
+ dependencies = [
3118
+ "windows-targets 0.53.5",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "windows-sys"
3123
+ version = "0.61.2"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3126
+ dependencies = [
3127
+ "windows-link",
3128
+ ]
3129
+
3130
+ [[package]]
3131
+ name = "windows-targets"
3132
+ version = "0.42.2"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3135
+ dependencies = [
3136
+ "windows_aarch64_gnullvm 0.42.2",
3137
+ "windows_aarch64_msvc 0.42.2",
3138
+ "windows_i686_gnu 0.42.2",
3139
+ "windows_i686_msvc 0.42.2",
3140
+ "windows_x86_64_gnu 0.42.2",
3141
+ "windows_x86_64_gnullvm 0.42.2",
3142
+ "windows_x86_64_msvc 0.42.2",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "windows-targets"
3147
+ version = "0.52.6"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3150
+ dependencies = [
3151
+ "windows_aarch64_gnullvm 0.52.6",
3152
+ "windows_aarch64_msvc 0.52.6",
3153
+ "windows_i686_gnu 0.52.6",
3154
+ "windows_i686_gnullvm 0.52.6",
3155
+ "windows_i686_msvc 0.52.6",
3156
+ "windows_x86_64_gnu 0.52.6",
3157
+ "windows_x86_64_gnullvm 0.52.6",
3158
+ "windows_x86_64_msvc 0.52.6",
3159
+ ]
3160
+
3161
+ [[package]]
3162
+ name = "windows-targets"
3163
+ version = "0.53.5"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3166
+ dependencies = [
3167
+ "windows-link",
3168
+ "windows_aarch64_gnullvm 0.53.1",
3169
+ "windows_aarch64_msvc 0.53.1",
3170
+ "windows_i686_gnu 0.53.1",
3171
+ "windows_i686_gnullvm 0.53.1",
3172
+ "windows_i686_msvc 0.53.1",
3173
+ "windows_x86_64_gnu 0.53.1",
3174
+ "windows_x86_64_gnullvm 0.53.1",
3175
+ "windows_x86_64_msvc 0.53.1",
3176
+ ]
3177
+
3178
+ [[package]]
3179
+ name = "windows_aarch64_gnullvm"
3180
+ version = "0.42.2"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3183
+
3184
+ [[package]]
3185
+ name = "windows_aarch64_gnullvm"
3186
+ version = "0.52.6"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3189
+
3190
+ [[package]]
3191
+ name = "windows_aarch64_gnullvm"
3192
+ version = "0.53.1"
3193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3194
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3195
+
3196
+ [[package]]
3197
+ name = "windows_aarch64_msvc"
3198
+ version = "0.42.2"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3201
+
3202
+ [[package]]
3203
+ name = "windows_aarch64_msvc"
3204
+ version = "0.52.6"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3207
+
3208
+ [[package]]
3209
+ name = "windows_aarch64_msvc"
3210
+ version = "0.53.1"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3213
+
3214
+ [[package]]
3215
+ name = "windows_i686_gnu"
3216
+ version = "0.42.2"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3219
+
3220
+ [[package]]
3221
+ name = "windows_i686_gnu"
3222
+ version = "0.52.6"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3225
+
3226
+ [[package]]
3227
+ name = "windows_i686_gnu"
3228
+ version = "0.53.1"
3229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3230
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3231
+
3232
+ [[package]]
3233
+ name = "windows_i686_gnullvm"
3234
+ version = "0.52.6"
3235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3236
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3237
+
3238
+ [[package]]
3239
+ name = "windows_i686_gnullvm"
3240
+ version = "0.53.1"
3241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3242
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3243
+
3244
+ [[package]]
3245
+ name = "windows_i686_msvc"
3246
+ version = "0.42.2"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3249
+
3250
+ [[package]]
3251
+ name = "windows_i686_msvc"
3252
+ version = "0.52.6"
3253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3255
+
3256
+ [[package]]
3257
+ name = "windows_i686_msvc"
3258
+ version = "0.53.1"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3261
+
3262
+ [[package]]
3263
+ name = "windows_x86_64_gnu"
3264
+ version = "0.42.2"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3267
+
3268
+ [[package]]
3269
+ name = "windows_x86_64_gnu"
3270
+ version = "0.52.6"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3273
+
3274
+ [[package]]
3275
+ name = "windows_x86_64_gnu"
3276
+ version = "0.53.1"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3279
+
3280
+ [[package]]
3281
+ name = "windows_x86_64_gnullvm"
3282
+ version = "0.42.2"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3285
+
3286
+ [[package]]
3287
+ name = "windows_x86_64_gnullvm"
3288
+ version = "0.52.6"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3291
+
3292
+ [[package]]
3293
+ name = "windows_x86_64_gnullvm"
3294
+ version = "0.53.1"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3297
+
3298
+ [[package]]
3299
+ name = "windows_x86_64_msvc"
3300
+ version = "0.42.2"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3303
+
3304
+ [[package]]
3305
+ name = "windows_x86_64_msvc"
3306
+ version = "0.52.6"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3309
+
3310
+ [[package]]
3311
+ name = "windows_x86_64_msvc"
3312
+ version = "0.53.1"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3315
+
3316
+ [[package]]
3317
+ name = "winnow"
3318
+ version = "0.7.14"
3319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3320
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3321
+ dependencies = [
3322
+ "memchr",
3323
+ ]
3324
+
3325
+ [[package]]
3326
+ name = "wit-bindgen"
3327
+ version = "0.51.0"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3330
+ dependencies = [
3331
+ "wit-bindgen-rust-macro",
3332
+ ]
3333
+
3334
+ [[package]]
3335
+ name = "wit-bindgen-core"
3336
+ version = "0.51.0"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3339
+ dependencies = [
3340
+ "anyhow",
3341
+ "heck 0.5.0",
3342
+ "wit-parser",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "wit-bindgen-rust"
3347
+ version = "0.51.0"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3350
+ dependencies = [
3351
+ "anyhow",
3352
+ "heck 0.5.0",
3353
+ "indexmap",
3354
+ "prettyplease 0.2.37",
3355
+ "syn 2.0.117",
3356
+ "wasm-metadata",
3357
+ "wit-bindgen-core",
3358
+ "wit-component",
3359
+ ]
3360
+
3361
+ [[package]]
3362
+ name = "wit-bindgen-rust-macro"
3363
+ version = "0.51.0"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3366
+ dependencies = [
3367
+ "anyhow",
3368
+ "prettyplease 0.2.37",
3369
+ "proc-macro2",
3370
+ "quote",
3371
+ "syn 2.0.117",
3372
+ "wit-bindgen-core",
3373
+ "wit-bindgen-rust",
3374
+ ]
3375
+
3376
+ [[package]]
3377
+ name = "wit-component"
3378
+ version = "0.244.0"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3381
+ dependencies = [
3382
+ "anyhow",
3383
+ "bitflags",
3384
+ "indexmap",
3385
+ "log",
3386
+ "serde",
3387
+ "serde_derive",
3388
+ "serde_json",
3389
+ "wasm-encoder",
3390
+ "wasm-metadata",
3391
+ "wasmparser",
3392
+ "wit-parser",
3393
+ ]
3394
+
3395
+ [[package]]
3396
+ name = "wit-parser"
3397
+ version = "0.244.0"
3398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3399
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3400
+ dependencies = [
3401
+ "anyhow",
3402
+ "id-arena",
3403
+ "indexmap",
3404
+ "log",
3405
+ "semver",
3406
+ "serde",
3407
+ "serde_derive",
3408
+ "serde_json",
3409
+ "unicode-xid",
3410
+ "wasmparser",
3411
+ ]
3412
+
3413
+ [[package]]
3414
+ name = "with_builtin_macros"
3415
+ version = "0.0.3"
3416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3417
+ checksum = "a59d55032495429b87f9d69954c6c8602e4d3f3e0a747a12dea6b0b23de685da"
3418
+ dependencies = [
3419
+ "with_builtin_macros-proc_macros",
3420
+ ]
3421
+
3422
+ [[package]]
3423
+ name = "with_builtin_macros-proc_macros"
3424
+ version = "0.0.3"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "15bd7679c15e22924f53aee34d4e448c45b674feb6129689af88593e129f8f42"
3427
+ dependencies = [
3428
+ "proc-macro2",
3429
+ "quote",
3430
+ "syn 1.0.109",
3431
+ ]
3432
+
3433
+ [[package]]
3434
+ name = "writeable"
3435
+ version = "0.6.2"
3436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3437
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3438
+
3439
+ [[package]]
3440
+ name = "x25519-dalek"
3441
+ version = "2.0.1"
3442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3443
+ checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
3444
+ dependencies = [
3445
+ "curve25519-dalek",
3446
+ "rand_core",
3447
+ "serde",
3448
+ "zeroize",
3449
+ ]
3450
+
3451
+ [[package]]
3452
+ name = "x509-cert"
3453
+ version = "0.2.5"
3454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3455
+ checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94"
3456
+ dependencies = [
3457
+ "const-oid",
3458
+ "der",
3459
+ "spki",
3460
+ "tls_codec",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "yoke"
3465
+ version = "0.8.1"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3468
+ dependencies = [
3469
+ "stable_deref_trait",
3470
+ "yoke-derive",
3471
+ "zerofrom",
3472
+ ]
3473
+
3474
+ [[package]]
3475
+ name = "yoke-derive"
3476
+ version = "0.8.1"
3477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3478
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3479
+ dependencies = [
3480
+ "proc-macro2",
3481
+ "quote",
3482
+ "syn 2.0.117",
3483
+ "synstructure",
3484
+ ]
3485
+
3486
+ [[package]]
3487
+ name = "zerocopy"
3488
+ version = "0.8.40"
3489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3490
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
3491
+ dependencies = [
3492
+ "zerocopy-derive",
3493
+ ]
3494
+
3495
+ [[package]]
3496
+ name = "zerocopy-derive"
3497
+ version = "0.8.40"
3498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3499
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
3500
+ dependencies = [
3501
+ "proc-macro2",
3502
+ "quote",
3503
+ "syn 2.0.117",
3504
+ ]
3505
+
3506
+ [[package]]
3507
+ name = "zerofrom"
3508
+ version = "0.1.6"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3511
+ dependencies = [
3512
+ "zerofrom-derive",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "zerofrom-derive"
3517
+ version = "0.1.6"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3520
+ dependencies = [
3521
+ "proc-macro2",
3522
+ "quote",
3523
+ "syn 2.0.117",
3524
+ "synstructure",
3525
+ ]
3526
+
3527
+ [[package]]
3528
+ name = "zeroize"
3529
+ version = "1.8.2"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3532
+ dependencies = [
3533
+ "zeroize_derive",
3534
+ ]
3535
+
3536
+ [[package]]
3537
+ name = "zeroize_derive"
3538
+ version = "1.4.3"
3539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3540
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
3541
+ dependencies = [
3542
+ "proc-macro2",
3543
+ "quote",
3544
+ "syn 2.0.117",
3545
+ ]
3546
+
3547
+ [[package]]
3548
+ name = "zerotrie"
3549
+ version = "0.2.3"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3552
+ dependencies = [
3553
+ "displaydoc",
3554
+ "yoke",
3555
+ "zerofrom",
3556
+ ]
3557
+
3558
+ [[package]]
3559
+ name = "zerovec"
3560
+ version = "0.11.5"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3563
+ dependencies = [
3564
+ "yoke",
3565
+ "zerofrom",
3566
+ "zerovec-derive",
3567
+ ]
3568
+
3569
+ [[package]]
3570
+ name = "zerovec-derive"
3571
+ version = "0.11.2"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3574
+ dependencies = [
3575
+ "proc-macro2",
3576
+ "quote",
3577
+ "syn 2.0.117",
3578
+ ]
3579
+
3580
+ [[package]]
3581
+ name = "zmij"
3582
+ version = "1.0.21"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"