umadb 0.1.4__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.
umadb-0.1.4/Cargo.lock ADDED
@@ -0,0 +1,2710 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom 0.3.3",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.3"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aligned-vec"
44
+ version = "0.6.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
47
+ dependencies = [
48
+ "equator",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "anes"
53
+ version = "0.1.6"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
56
+
57
+ [[package]]
58
+ name = "anstream"
59
+ version = "0.6.19"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
62
+ dependencies = [
63
+ "anstyle",
64
+ "anstyle-parse",
65
+ "anstyle-query",
66
+ "anstyle-wincon",
67
+ "colorchoice",
68
+ "is_terminal_polyfill",
69
+ "utf8parse",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "anstyle"
74
+ version = "1.0.11"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
77
+
78
+ [[package]]
79
+ name = "anstyle-parse"
80
+ version = "0.2.7"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
83
+ dependencies = [
84
+ "utf8parse",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle-query"
89
+ version = "1.1.3"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
92
+ dependencies = [
93
+ "windows-sys 0.59.0",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "anstyle-wincon"
98
+ version = "3.0.9"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
101
+ dependencies = [
102
+ "anstyle",
103
+ "once_cell_polyfill",
104
+ "windows-sys 0.59.0",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anyhow"
109
+ version = "1.0.98"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
112
+
113
+ [[package]]
114
+ name = "arrayvec"
115
+ version = "0.7.6"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
118
+
119
+ [[package]]
120
+ name = "async-trait"
121
+ version = "0.1.89"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
124
+ dependencies = [
125
+ "proc-macro2",
126
+ "quote",
127
+ "syn",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "atomic-waker"
132
+ version = "1.1.2"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
135
+
136
+ [[package]]
137
+ name = "autocfg"
138
+ version = "1.5.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
141
+
142
+ [[package]]
143
+ name = "axum"
144
+ version = "0.8.6"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871"
147
+ dependencies = [
148
+ "axum-core",
149
+ "bytes",
150
+ "futures-util",
151
+ "http",
152
+ "http-body",
153
+ "http-body-util",
154
+ "itoa",
155
+ "matchit",
156
+ "memchr",
157
+ "mime",
158
+ "percent-encoding",
159
+ "pin-project-lite",
160
+ "serde_core",
161
+ "sync_wrapper",
162
+ "tower",
163
+ "tower-layer",
164
+ "tower-service",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "axum-core"
169
+ version = "0.5.5"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
172
+ dependencies = [
173
+ "bytes",
174
+ "futures-core",
175
+ "http",
176
+ "http-body",
177
+ "http-body-util",
178
+ "mime",
179
+ "pin-project-lite",
180
+ "sync_wrapper",
181
+ "tower-layer",
182
+ "tower-service",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "backtrace"
187
+ version = "0.3.75"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
190
+ dependencies = [
191
+ "addr2line",
192
+ "cfg-if",
193
+ "libc",
194
+ "miniz_oxide",
195
+ "object",
196
+ "rustc-demangle",
197
+ "windows-targets 0.52.6",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "base64"
202
+ version = "0.22.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
205
+
206
+ [[package]]
207
+ name = "bitflags"
208
+ version = "1.3.2"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
211
+
212
+ [[package]]
213
+ name = "bitflags"
214
+ version = "2.9.1"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
217
+
218
+ [[package]]
219
+ name = "bumpalo"
220
+ version = "3.19.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
223
+
224
+ [[package]]
225
+ name = "bytemuck"
226
+ version = "1.24.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
229
+
230
+ [[package]]
231
+ name = "byteorder"
232
+ version = "1.5.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
235
+
236
+ [[package]]
237
+ name = "bytes"
238
+ version = "1.10.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
241
+
242
+ [[package]]
243
+ name = "cast"
244
+ version = "0.3.0"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
247
+
248
+ [[package]]
249
+ name = "cc"
250
+ version = "1.2.41"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
253
+ dependencies = [
254
+ "find-msvc-tools",
255
+ "shlex",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "cfg-if"
260
+ version = "1.0.1"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
263
+
264
+ [[package]]
265
+ name = "ciborium"
266
+ version = "0.2.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
269
+ dependencies = [
270
+ "ciborium-io",
271
+ "ciborium-ll",
272
+ "serde",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "ciborium-io"
277
+ version = "0.2.2"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
280
+
281
+ [[package]]
282
+ name = "ciborium-ll"
283
+ version = "0.2.2"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
286
+ dependencies = [
287
+ "ciborium-io",
288
+ "half",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "clap"
293
+ version = "4.5.40"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
296
+ dependencies = [
297
+ "clap_builder",
298
+ "clap_derive",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "clap_builder"
303
+ version = "4.5.40"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
306
+ dependencies = [
307
+ "anstream",
308
+ "anstyle",
309
+ "clap_lex",
310
+ "strsim",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "clap_derive"
315
+ version = "4.5.40"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
318
+ dependencies = [
319
+ "heck",
320
+ "proc-macro2",
321
+ "quote",
322
+ "syn",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "clap_lex"
327
+ version = "0.7.5"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
330
+
331
+ [[package]]
332
+ name = "colorchoice"
333
+ version = "1.0.4"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
336
+
337
+ [[package]]
338
+ name = "core-foundation"
339
+ version = "0.10.1"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
342
+ dependencies = [
343
+ "core-foundation-sys",
344
+ "libc",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "core-foundation-sys"
349
+ version = "0.8.7"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
352
+
353
+ [[package]]
354
+ name = "cpp_demangle"
355
+ version = "0.4.5"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
358
+ dependencies = [
359
+ "cfg-if",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "crc32fast"
364
+ version = "1.4.2"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
367
+ dependencies = [
368
+ "cfg-if",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "criterion"
373
+ version = "0.5.1"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
376
+ dependencies = [
377
+ "anes",
378
+ "cast",
379
+ "ciborium",
380
+ "clap",
381
+ "criterion-plot 0.5.0",
382
+ "is-terminal",
383
+ "itertools 0.10.5",
384
+ "num-traits",
385
+ "once_cell",
386
+ "oorandom",
387
+ "plotters",
388
+ "rayon",
389
+ "regex",
390
+ "serde",
391
+ "serde_derive",
392
+ "serde_json",
393
+ "tinytemplate",
394
+ "walkdir",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "criterion"
399
+ version = "0.7.0"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
402
+ dependencies = [
403
+ "anes",
404
+ "cast",
405
+ "ciborium",
406
+ "clap",
407
+ "criterion-plot 0.6.0",
408
+ "csv",
409
+ "itertools 0.13.0",
410
+ "num-traits",
411
+ "oorandom",
412
+ "plotters",
413
+ "rayon",
414
+ "regex",
415
+ "serde",
416
+ "serde_json",
417
+ "tinytemplate",
418
+ "walkdir",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "criterion-plot"
423
+ version = "0.5.0"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
426
+ dependencies = [
427
+ "cast",
428
+ "itertools 0.10.5",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "criterion-plot"
433
+ version = "0.6.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
436
+ dependencies = [
437
+ "cast",
438
+ "itertools 0.13.0",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "crossbeam-deque"
443
+ version = "0.8.6"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
446
+ dependencies = [
447
+ "crossbeam-epoch",
448
+ "crossbeam-utils",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "crossbeam-epoch"
453
+ version = "0.9.18"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
456
+ dependencies = [
457
+ "crossbeam-utils",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "crossbeam-utils"
462
+ version = "0.8.21"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
465
+
466
+ [[package]]
467
+ name = "crunchy"
468
+ version = "0.2.4"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
471
+
472
+ [[package]]
473
+ name = "csv"
474
+ version = "1.4.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
477
+ dependencies = [
478
+ "csv-core",
479
+ "itoa",
480
+ "ryu",
481
+ "serde_core",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "csv-core"
486
+ version = "0.1.13"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
489
+ dependencies = [
490
+ "memchr",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "dashmap"
495
+ version = "6.1.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
498
+ dependencies = [
499
+ "cfg-if",
500
+ "crossbeam-utils",
501
+ "hashbrown 0.14.5",
502
+ "lock_api",
503
+ "once_cell",
504
+ "parking_lot_core",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "debugid"
509
+ version = "0.8.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
512
+ dependencies = [
513
+ "uuid",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "deranged"
518
+ version = "0.5.5"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
521
+ dependencies = [
522
+ "powerfmt",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "either"
527
+ version = "1.15.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
530
+
531
+ [[package]]
532
+ name = "equator"
533
+ version = "0.4.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
536
+ dependencies = [
537
+ "equator-macro",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "equator-macro"
542
+ version = "0.4.2"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
545
+ dependencies = [
546
+ "proc-macro2",
547
+ "quote",
548
+ "syn",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "equivalent"
553
+ version = "1.0.2"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
556
+
557
+ [[package]]
558
+ name = "errno"
559
+ version = "0.3.13"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
562
+ dependencies = [
563
+ "libc",
564
+ "windows-sys 0.60.2",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "fastrand"
569
+ version = "2.3.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
572
+
573
+ [[package]]
574
+ name = "find-msvc-tools"
575
+ version = "0.1.4"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
578
+
579
+ [[package]]
580
+ name = "findshlibs"
581
+ version = "0.10.2"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
584
+ dependencies = [
585
+ "cc",
586
+ "lazy_static",
587
+ "libc",
588
+ "winapi",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "fixedbitset"
593
+ version = "0.5.7"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
596
+
597
+ [[package]]
598
+ name = "fnv"
599
+ version = "1.0.7"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
602
+
603
+ [[package]]
604
+ name = "futures"
605
+ version = "0.3.31"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
608
+ dependencies = [
609
+ "futures-channel",
610
+ "futures-core",
611
+ "futures-executor",
612
+ "futures-io",
613
+ "futures-sink",
614
+ "futures-task",
615
+ "futures-util",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "futures-channel"
620
+ version = "0.3.31"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
623
+ dependencies = [
624
+ "futures-core",
625
+ "futures-sink",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "futures-core"
630
+ version = "0.3.31"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
633
+
634
+ [[package]]
635
+ name = "futures-executor"
636
+ version = "0.3.31"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
639
+ dependencies = [
640
+ "futures-core",
641
+ "futures-task",
642
+ "futures-util",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "futures-io"
647
+ version = "0.3.31"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
650
+
651
+ [[package]]
652
+ name = "futures-macro"
653
+ version = "0.3.31"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
656
+ dependencies = [
657
+ "proc-macro2",
658
+ "quote",
659
+ "syn",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "futures-sink"
664
+ version = "0.3.31"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
667
+
668
+ [[package]]
669
+ name = "futures-task"
670
+ version = "0.3.31"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
673
+
674
+ [[package]]
675
+ name = "futures-util"
676
+ version = "0.3.31"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
679
+ dependencies = [
680
+ "futures-channel",
681
+ "futures-core",
682
+ "futures-io",
683
+ "futures-macro",
684
+ "futures-sink",
685
+ "futures-task",
686
+ "memchr",
687
+ "pin-project-lite",
688
+ "pin-utils",
689
+ "slab",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "getrandom"
694
+ version = "0.2.16"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
697
+ dependencies = [
698
+ "cfg-if",
699
+ "libc",
700
+ "wasi 0.11.1+wasi-snapshot-preview1",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "getrandom"
705
+ version = "0.3.3"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
708
+ dependencies = [
709
+ "cfg-if",
710
+ "libc",
711
+ "r-efi",
712
+ "wasi 0.14.2+wasi-0.2.4",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "gimli"
717
+ version = "0.31.1"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
720
+
721
+ [[package]]
722
+ name = "h2"
723
+ version = "0.4.11"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
726
+ dependencies = [
727
+ "atomic-waker",
728
+ "bytes",
729
+ "fnv",
730
+ "futures-core",
731
+ "futures-sink",
732
+ "http",
733
+ "indexmap",
734
+ "slab",
735
+ "tokio",
736
+ "tokio-util",
737
+ "tracing",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "half"
742
+ version = "2.7.1"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
745
+ dependencies = [
746
+ "cfg-if",
747
+ "crunchy",
748
+ "zerocopy",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "hashbrown"
753
+ version = "0.14.5"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
756
+
757
+ [[package]]
758
+ name = "hashbrown"
759
+ version = "0.15.4"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
762
+
763
+ [[package]]
764
+ name = "heck"
765
+ version = "0.5.0"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
768
+
769
+ [[package]]
770
+ name = "hermit-abi"
771
+ version = "0.5.2"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
774
+
775
+ [[package]]
776
+ name = "http"
777
+ version = "1.3.1"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
780
+ dependencies = [
781
+ "bytes",
782
+ "fnv",
783
+ "itoa",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "http-body"
788
+ version = "1.0.1"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
791
+ dependencies = [
792
+ "bytes",
793
+ "http",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "http-body-util"
798
+ version = "0.1.3"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
801
+ dependencies = [
802
+ "bytes",
803
+ "futures-core",
804
+ "http",
805
+ "http-body",
806
+ "pin-project-lite",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "httparse"
811
+ version = "1.10.1"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
814
+
815
+ [[package]]
816
+ name = "httpdate"
817
+ version = "1.0.3"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
820
+
821
+ [[package]]
822
+ name = "hyper"
823
+ version = "1.6.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
826
+ dependencies = [
827
+ "bytes",
828
+ "futures-channel",
829
+ "futures-util",
830
+ "h2",
831
+ "http",
832
+ "http-body",
833
+ "httparse",
834
+ "httpdate",
835
+ "itoa",
836
+ "pin-project-lite",
837
+ "smallvec",
838
+ "tokio",
839
+ "want",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "hyper-timeout"
844
+ version = "0.5.2"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
847
+ dependencies = [
848
+ "hyper",
849
+ "hyper-util",
850
+ "pin-project-lite",
851
+ "tokio",
852
+ "tower-service",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "hyper-util"
857
+ version = "0.1.14"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
860
+ dependencies = [
861
+ "bytes",
862
+ "futures-channel",
863
+ "futures-core",
864
+ "futures-util",
865
+ "http",
866
+ "http-body",
867
+ "hyper",
868
+ "libc",
869
+ "pin-project-lite",
870
+ "socket2 0.5.10",
871
+ "tokio",
872
+ "tower-service",
873
+ "tracing",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "indexmap"
878
+ version = "2.10.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
881
+ dependencies = [
882
+ "equivalent",
883
+ "hashbrown 0.15.4",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "indoc"
888
+ version = "2.0.7"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
891
+ dependencies = [
892
+ "rustversion",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "inferno"
897
+ version = "0.11.21"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88"
900
+ dependencies = [
901
+ "ahash",
902
+ "indexmap",
903
+ "is-terminal",
904
+ "itoa",
905
+ "log",
906
+ "num-format",
907
+ "once_cell",
908
+ "quick-xml",
909
+ "rgb",
910
+ "str_stack",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "is-terminal"
915
+ version = "0.4.16"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
918
+ dependencies = [
919
+ "hermit-abi",
920
+ "libc",
921
+ "windows-sys 0.59.0",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "is_terminal_polyfill"
926
+ version = "1.70.1"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
929
+
930
+ [[package]]
931
+ name = "itertools"
932
+ version = "0.10.5"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
935
+ dependencies = [
936
+ "either",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "itertools"
941
+ version = "0.13.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
944
+ dependencies = [
945
+ "either",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "itertools"
950
+ version = "0.14.0"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
953
+ dependencies = [
954
+ "either",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "itoa"
959
+ version = "1.0.15"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
962
+
963
+ [[package]]
964
+ name = "js-sys"
965
+ version = "0.3.77"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
968
+ dependencies = [
969
+ "once_cell",
970
+ "wasm-bindgen",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "lazy_static"
975
+ version = "1.5.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
978
+
979
+ [[package]]
980
+ name = "libc"
981
+ version = "0.2.174"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
984
+
985
+ [[package]]
986
+ name = "linux-raw-sys"
987
+ version = "0.9.4"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
990
+
991
+ [[package]]
992
+ name = "lock_api"
993
+ version = "0.4.13"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
996
+ dependencies = [
997
+ "autocfg",
998
+ "scopeguard",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "log"
1003
+ version = "0.4.27"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1006
+
1007
+ [[package]]
1008
+ name = "matchit"
1009
+ version = "0.8.4"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1012
+
1013
+ [[package]]
1014
+ name = "memchr"
1015
+ version = "2.7.5"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1018
+
1019
+ [[package]]
1020
+ name = "memmap2"
1021
+ version = "0.9.8"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
1024
+ dependencies = [
1025
+ "libc",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "memoffset"
1030
+ version = "0.9.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1033
+ dependencies = [
1034
+ "autocfg",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "mime"
1039
+ version = "0.3.17"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1042
+
1043
+ [[package]]
1044
+ name = "miniz_oxide"
1045
+ version = "0.8.9"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1048
+ dependencies = [
1049
+ "adler2",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "mio"
1054
+ version = "1.0.4"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1057
+ dependencies = [
1058
+ "libc",
1059
+ "wasi 0.11.1+wasi-snapshot-preview1",
1060
+ "windows-sys 0.59.0",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "multimap"
1065
+ version = "0.10.1"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1068
+
1069
+ [[package]]
1070
+ name = "nix"
1071
+ version = "0.26.4"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1074
+ dependencies = [
1075
+ "bitflags 1.3.2",
1076
+ "cfg-if",
1077
+ "libc",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "num-conv"
1082
+ version = "0.1.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1085
+
1086
+ [[package]]
1087
+ name = "num-format"
1088
+ version = "0.4.4"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
1091
+ dependencies = [
1092
+ "arrayvec",
1093
+ "itoa",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "num-traits"
1098
+ version = "0.2.19"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1101
+ dependencies = [
1102
+ "autocfg",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "object"
1107
+ version = "0.36.7"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1110
+ dependencies = [
1111
+ "memchr",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "once_cell"
1116
+ version = "1.21.3"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1119
+
1120
+ [[package]]
1121
+ name = "once_cell_polyfill"
1122
+ version = "1.70.1"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1125
+
1126
+ [[package]]
1127
+ name = "oorandom"
1128
+ version = "11.1.5"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1131
+
1132
+ [[package]]
1133
+ name = "openssl-probe"
1134
+ version = "0.1.6"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1137
+
1138
+ [[package]]
1139
+ name = "parking_lot"
1140
+ version = "0.12.4"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1143
+ dependencies = [
1144
+ "lock_api",
1145
+ "parking_lot_core",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "parking_lot_core"
1150
+ version = "0.9.11"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1153
+ dependencies = [
1154
+ "cfg-if",
1155
+ "libc",
1156
+ "redox_syscall",
1157
+ "smallvec",
1158
+ "windows-targets 0.52.6",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "pem"
1163
+ version = "3.0.6"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1166
+ dependencies = [
1167
+ "base64",
1168
+ "serde_core",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "percent-encoding"
1173
+ version = "2.3.1"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1176
+
1177
+ [[package]]
1178
+ name = "petgraph"
1179
+ version = "0.7.1"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1182
+ dependencies = [
1183
+ "fixedbitset",
1184
+ "indexmap",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "pin-project"
1189
+ version = "1.1.10"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1192
+ dependencies = [
1193
+ "pin-project-internal",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "pin-project-internal"
1198
+ version = "1.1.10"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1201
+ dependencies = [
1202
+ "proc-macro2",
1203
+ "quote",
1204
+ "syn",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "pin-project-lite"
1209
+ version = "0.2.16"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1212
+
1213
+ [[package]]
1214
+ name = "pin-utils"
1215
+ version = "0.1.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1218
+
1219
+ [[package]]
1220
+ name = "plotters"
1221
+ version = "0.3.7"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1224
+ dependencies = [
1225
+ "num-traits",
1226
+ "plotters-backend",
1227
+ "plotters-svg",
1228
+ "wasm-bindgen",
1229
+ "web-sys",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "plotters-backend"
1234
+ version = "0.3.7"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1237
+
1238
+ [[package]]
1239
+ name = "plotters-svg"
1240
+ version = "0.3.7"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1243
+ dependencies = [
1244
+ "plotters-backend",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "portable-atomic"
1249
+ version = "1.11.1"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1252
+
1253
+ [[package]]
1254
+ name = "powerfmt"
1255
+ version = "0.2.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1258
+
1259
+ [[package]]
1260
+ name = "pprof"
1261
+ version = "0.15.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187"
1264
+ dependencies = [
1265
+ "aligned-vec",
1266
+ "backtrace",
1267
+ "cfg-if",
1268
+ "criterion 0.5.1",
1269
+ "findshlibs",
1270
+ "inferno",
1271
+ "libc",
1272
+ "log",
1273
+ "nix",
1274
+ "once_cell",
1275
+ "smallvec",
1276
+ "spin",
1277
+ "symbolic-demangle",
1278
+ "tempfile",
1279
+ "thiserror",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "ppv-lite86"
1284
+ version = "0.2.21"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1287
+ dependencies = [
1288
+ "zerocopy",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "prettyplease"
1293
+ version = "0.2.35"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a"
1296
+ dependencies = [
1297
+ "proc-macro2",
1298
+ "syn",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "proc-macro2"
1303
+ version = "1.0.95"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1306
+ dependencies = [
1307
+ "unicode-ident",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "prost"
1312
+ version = "0.14.1"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
1315
+ dependencies = [
1316
+ "bytes",
1317
+ "prost-derive",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "prost-build"
1322
+ version = "0.14.1"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "ac6c3320f9abac597dcbc668774ef006702672474aad53c6d596b62e487b40b1"
1325
+ dependencies = [
1326
+ "heck",
1327
+ "itertools 0.14.0",
1328
+ "log",
1329
+ "multimap",
1330
+ "once_cell",
1331
+ "petgraph",
1332
+ "prettyplease",
1333
+ "prost",
1334
+ "prost-types",
1335
+ "pulldown-cmark",
1336
+ "pulldown-cmark-to-cmark",
1337
+ "regex",
1338
+ "syn",
1339
+ "tempfile",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "prost-derive"
1344
+ version = "0.14.1"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
1347
+ dependencies = [
1348
+ "anyhow",
1349
+ "itertools 0.14.0",
1350
+ "proc-macro2",
1351
+ "quote",
1352
+ "syn",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "prost-types"
1357
+ version = "0.14.1"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
1360
+ dependencies = [
1361
+ "prost",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "pulldown-cmark"
1366
+ version = "0.13.0"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
1369
+ dependencies = [
1370
+ "bitflags 2.9.1",
1371
+ "memchr",
1372
+ "unicase",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "pulldown-cmark-to-cmark"
1377
+ version = "21.0.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "e5b6a0769a491a08b31ea5c62494a8f144ee0987d86d670a8af4df1e1b7cde75"
1380
+ dependencies = [
1381
+ "pulldown-cmark",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "pyo3"
1386
+ version = "0.24.2"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1389
+ dependencies = [
1390
+ "cfg-if",
1391
+ "indoc",
1392
+ "libc",
1393
+ "memoffset",
1394
+ "once_cell",
1395
+ "portable-atomic",
1396
+ "pyo3-build-config",
1397
+ "pyo3-ffi",
1398
+ "pyo3-macros",
1399
+ "unindent",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "pyo3-build-config"
1404
+ version = "0.24.2"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1407
+ dependencies = [
1408
+ "once_cell",
1409
+ "target-lexicon",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "pyo3-ffi"
1414
+ version = "0.24.2"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1417
+ dependencies = [
1418
+ "libc",
1419
+ "pyo3-build-config",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "pyo3-macros"
1424
+ version = "0.24.2"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1427
+ dependencies = [
1428
+ "proc-macro2",
1429
+ "pyo3-macros-backend",
1430
+ "quote",
1431
+ "syn",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "pyo3-macros-backend"
1436
+ version = "0.24.2"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1439
+ dependencies = [
1440
+ "heck",
1441
+ "proc-macro2",
1442
+ "pyo3-build-config",
1443
+ "quote",
1444
+ "syn",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "quick-xml"
1449
+ version = "0.26.0"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
1452
+ dependencies = [
1453
+ "memchr",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "quote"
1458
+ version = "1.0.40"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1461
+ dependencies = [
1462
+ "proc-macro2",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "r-efi"
1467
+ version = "5.3.0"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1470
+
1471
+ [[package]]
1472
+ name = "rand"
1473
+ version = "0.9.2"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1476
+ dependencies = [
1477
+ "rand_chacha",
1478
+ "rand_core",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "rand_chacha"
1483
+ version = "0.9.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1486
+ dependencies = [
1487
+ "ppv-lite86",
1488
+ "rand_core",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "rand_core"
1493
+ version = "0.9.3"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1496
+ dependencies = [
1497
+ "getrandom 0.3.3",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "rayon"
1502
+ version = "1.11.0"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1505
+ dependencies = [
1506
+ "either",
1507
+ "rayon-core",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "rayon-core"
1512
+ version = "1.13.0"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1515
+ dependencies = [
1516
+ "crossbeam-deque",
1517
+ "crossbeam-utils",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "rcgen"
1522
+ version = "0.12.1"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1"
1525
+ dependencies = [
1526
+ "pem",
1527
+ "ring",
1528
+ "time",
1529
+ "yasna",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "redox_syscall"
1534
+ version = "0.5.17"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1537
+ dependencies = [
1538
+ "bitflags 2.9.1",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "regex"
1543
+ version = "1.11.1"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1546
+ dependencies = [
1547
+ "aho-corasick",
1548
+ "memchr",
1549
+ "regex-automata",
1550
+ "regex-syntax",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "regex-automata"
1555
+ version = "0.4.9"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1558
+ dependencies = [
1559
+ "aho-corasick",
1560
+ "memchr",
1561
+ "regex-syntax",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "regex-syntax"
1566
+ version = "0.8.5"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1569
+
1570
+ [[package]]
1571
+ name = "rgb"
1572
+ version = "0.8.52"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
1575
+ dependencies = [
1576
+ "bytemuck",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "ring"
1581
+ version = "0.17.14"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1584
+ dependencies = [
1585
+ "cc",
1586
+ "cfg-if",
1587
+ "getrandom 0.2.16",
1588
+ "libc",
1589
+ "untrusted",
1590
+ "windows-sys 0.52.0",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "rustc-demangle"
1595
+ version = "0.1.25"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
1598
+
1599
+ [[package]]
1600
+ name = "rustix"
1601
+ version = "1.0.7"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1604
+ dependencies = [
1605
+ "bitflags 2.9.1",
1606
+ "errno",
1607
+ "libc",
1608
+ "linux-raw-sys",
1609
+ "windows-sys 0.59.0",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "rustls"
1614
+ version = "0.23.34"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
1617
+ dependencies = [
1618
+ "log",
1619
+ "once_cell",
1620
+ "ring",
1621
+ "rustls-pki-types",
1622
+ "rustls-webpki",
1623
+ "subtle",
1624
+ "zeroize",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "rustls-native-certs"
1629
+ version = "0.8.2"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
1632
+ dependencies = [
1633
+ "openssl-probe",
1634
+ "rustls-pki-types",
1635
+ "schannel",
1636
+ "security-framework",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "rustls-pki-types"
1641
+ version = "1.13.0"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
1644
+ dependencies = [
1645
+ "zeroize",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "rustls-webpki"
1650
+ version = "0.103.8"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1653
+ dependencies = [
1654
+ "ring",
1655
+ "rustls-pki-types",
1656
+ "untrusted",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "rustversion"
1661
+ version = "1.0.21"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
1664
+
1665
+ [[package]]
1666
+ name = "ryu"
1667
+ version = "1.0.20"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1670
+
1671
+ [[package]]
1672
+ name = "same-file"
1673
+ version = "1.0.6"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1676
+ dependencies = [
1677
+ "winapi-util",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "scc"
1682
+ version = "2.4.0"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
1685
+ dependencies = [
1686
+ "sdd",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "schannel"
1691
+ version = "0.1.28"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1694
+ dependencies = [
1695
+ "windows-sys 0.61.2",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "scopeguard"
1700
+ version = "1.2.0"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1703
+
1704
+ [[package]]
1705
+ name = "sdd"
1706
+ version = "3.0.10"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
1709
+
1710
+ [[package]]
1711
+ name = "security-framework"
1712
+ version = "3.5.1"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
1715
+ dependencies = [
1716
+ "bitflags 2.9.1",
1717
+ "core-foundation",
1718
+ "core-foundation-sys",
1719
+ "libc",
1720
+ "security-framework-sys",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "security-framework-sys"
1725
+ version = "2.15.0"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1728
+ dependencies = [
1729
+ "core-foundation-sys",
1730
+ "libc",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "serde"
1735
+ version = "1.0.228"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1738
+ dependencies = [
1739
+ "serde_core",
1740
+ "serde_derive",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "serde_core"
1745
+ version = "1.0.228"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1748
+ dependencies = [
1749
+ "serde_derive",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "serde_derive"
1754
+ version = "1.0.228"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1757
+ dependencies = [
1758
+ "proc-macro2",
1759
+ "quote",
1760
+ "syn",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "serde_json"
1765
+ version = "1.0.145"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1768
+ dependencies = [
1769
+ "itoa",
1770
+ "memchr",
1771
+ "ryu",
1772
+ "serde",
1773
+ "serde_core",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "serial_test"
1778
+ version = "3.2.0"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
1781
+ dependencies = [
1782
+ "futures",
1783
+ "log",
1784
+ "once_cell",
1785
+ "parking_lot",
1786
+ "scc",
1787
+ "serial_test_derive",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "serial_test_derive"
1792
+ version = "3.2.0"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
1795
+ dependencies = [
1796
+ "proc-macro2",
1797
+ "quote",
1798
+ "syn",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "shlex"
1803
+ version = "1.3.0"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1806
+
1807
+ [[package]]
1808
+ name = "signal-hook-registry"
1809
+ version = "1.4.5"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
1812
+ dependencies = [
1813
+ "libc",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "slab"
1818
+ version = "0.4.10"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
1821
+
1822
+ [[package]]
1823
+ name = "smallvec"
1824
+ version = "1.15.1"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1827
+
1828
+ [[package]]
1829
+ name = "socket2"
1830
+ version = "0.5.10"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1833
+ dependencies = [
1834
+ "libc",
1835
+ "windows-sys 0.52.0",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "socket2"
1840
+ version = "0.6.1"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1843
+ dependencies = [
1844
+ "libc",
1845
+ "windows-sys 0.60.2",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "spin"
1850
+ version = "0.10.0"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
1853
+ dependencies = [
1854
+ "lock_api",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "stable_deref_trait"
1859
+ version = "1.2.1"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1862
+
1863
+ [[package]]
1864
+ name = "str_stack"
1865
+ version = "0.1.0"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
1868
+
1869
+ [[package]]
1870
+ name = "strsim"
1871
+ version = "0.11.1"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1874
+
1875
+ [[package]]
1876
+ name = "subtle"
1877
+ version = "2.6.1"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1880
+
1881
+ [[package]]
1882
+ name = "symbolic-common"
1883
+ version = "12.16.3"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "d03f433c9befeea460a01d750e698aa86caf86dcfbd77d552885cd6c89d52f50"
1886
+ dependencies = [
1887
+ "debugid",
1888
+ "memmap2",
1889
+ "stable_deref_trait",
1890
+ "uuid",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "symbolic-demangle"
1895
+ version = "12.16.3"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "13d359ef6192db1760a34321ec4f089245ede4342c27e59be99642f12a859de8"
1898
+ dependencies = [
1899
+ "cpp_demangle",
1900
+ "rustc-demangle",
1901
+ "symbolic-common",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "syn"
1906
+ version = "2.0.104"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1909
+ dependencies = [
1910
+ "proc-macro2",
1911
+ "quote",
1912
+ "unicode-ident",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "sync_wrapper"
1917
+ version = "1.0.2"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1920
+
1921
+ [[package]]
1922
+ name = "target-lexicon"
1923
+ version = "0.13.3"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1926
+
1927
+ [[package]]
1928
+ name = "tempfile"
1929
+ version = "3.23.0"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1932
+ dependencies = [
1933
+ "fastrand",
1934
+ "getrandom 0.3.3",
1935
+ "once_cell",
1936
+ "rustix",
1937
+ "windows-sys 0.61.2",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "thiserror"
1942
+ version = "2.0.17"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1945
+ dependencies = [
1946
+ "thiserror-impl",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "thiserror-impl"
1951
+ version = "2.0.17"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1954
+ dependencies = [
1955
+ "proc-macro2",
1956
+ "quote",
1957
+ "syn",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "time"
1962
+ version = "0.3.44"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
1965
+ dependencies = [
1966
+ "deranged",
1967
+ "num-conv",
1968
+ "powerfmt",
1969
+ "serde",
1970
+ "time-core",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "time-core"
1975
+ version = "0.1.6"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
1978
+
1979
+ [[package]]
1980
+ name = "tinytemplate"
1981
+ version = "1.2.1"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1984
+ dependencies = [
1985
+ "serde",
1986
+ "serde_json",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "tokio"
1991
+ version = "1.48.0"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1994
+ dependencies = [
1995
+ "bytes",
1996
+ "libc",
1997
+ "mio",
1998
+ "parking_lot",
1999
+ "pin-project-lite",
2000
+ "signal-hook-registry",
2001
+ "socket2 0.6.1",
2002
+ "tokio-macros",
2003
+ "windows-sys 0.61.2",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "tokio-macros"
2008
+ version = "2.6.0"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2011
+ dependencies = [
2012
+ "proc-macro2",
2013
+ "quote",
2014
+ "syn",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "tokio-rustls"
2019
+ version = "0.26.4"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2022
+ dependencies = [
2023
+ "rustls",
2024
+ "tokio",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "tokio-stream"
2029
+ version = "0.1.17"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2032
+ dependencies = [
2033
+ "futures-core",
2034
+ "pin-project-lite",
2035
+ "tokio",
2036
+ "tokio-util",
2037
+ ]
2038
+
2039
+ [[package]]
2040
+ name = "tokio-util"
2041
+ version = "0.7.15"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2044
+ dependencies = [
2045
+ "bytes",
2046
+ "futures-core",
2047
+ "futures-sink",
2048
+ "pin-project-lite",
2049
+ "tokio",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "tonic"
2054
+ version = "0.14.2"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203"
2057
+ dependencies = [
2058
+ "async-trait",
2059
+ "axum",
2060
+ "base64",
2061
+ "bytes",
2062
+ "h2",
2063
+ "http",
2064
+ "http-body",
2065
+ "http-body-util",
2066
+ "hyper",
2067
+ "hyper-timeout",
2068
+ "hyper-util",
2069
+ "percent-encoding",
2070
+ "pin-project",
2071
+ "rustls-native-certs",
2072
+ "socket2 0.6.1",
2073
+ "sync_wrapper",
2074
+ "tokio",
2075
+ "tokio-rustls",
2076
+ "tokio-stream",
2077
+ "tower",
2078
+ "tower-layer",
2079
+ "tower-service",
2080
+ "tracing",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "tonic-build"
2085
+ version = "0.14.2"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3"
2088
+ dependencies = [
2089
+ "prettyplease",
2090
+ "proc-macro2",
2091
+ "quote",
2092
+ "syn",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "tonic-health"
2097
+ version = "0.14.2"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "2a82868bf299e0a1d2e8dce0dc33a46c02d6f045b2c1f1d6cc8dc3d0bf1812ef"
2100
+ dependencies = [
2101
+ "prost",
2102
+ "tokio",
2103
+ "tokio-stream",
2104
+ "tonic",
2105
+ "tonic-prost",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "tonic-prost"
2110
+ version = "0.14.2"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67"
2113
+ dependencies = [
2114
+ "bytes",
2115
+ "prost",
2116
+ "tonic",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "tonic-prost-build"
2121
+ version = "0.14.2"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2"
2124
+ dependencies = [
2125
+ "prettyplease",
2126
+ "proc-macro2",
2127
+ "prost-build",
2128
+ "prost-types",
2129
+ "quote",
2130
+ "syn",
2131
+ "tempfile",
2132
+ "tonic-build",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "tower"
2137
+ version = "0.5.2"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2140
+ dependencies = [
2141
+ "futures-core",
2142
+ "futures-util",
2143
+ "indexmap",
2144
+ "pin-project-lite",
2145
+ "slab",
2146
+ "sync_wrapper",
2147
+ "tokio",
2148
+ "tokio-util",
2149
+ "tower-layer",
2150
+ "tower-service",
2151
+ "tracing",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "tower-layer"
2156
+ version = "0.3.3"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2159
+
2160
+ [[package]]
2161
+ name = "tower-service"
2162
+ version = "0.3.3"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2165
+
2166
+ [[package]]
2167
+ name = "tracing"
2168
+ version = "0.1.41"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2171
+ dependencies = [
2172
+ "pin-project-lite",
2173
+ "tracing-attributes",
2174
+ "tracing-core",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "tracing-attributes"
2179
+ version = "0.1.30"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
2182
+ dependencies = [
2183
+ "proc-macro2",
2184
+ "quote",
2185
+ "syn",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "tracing-core"
2190
+ version = "0.1.34"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2193
+ dependencies = [
2194
+ "once_cell",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "try-lock"
2199
+ version = "0.2.5"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2202
+
2203
+ [[package]]
2204
+ name = "umadb"
2205
+ version = "0.1.4"
2206
+ dependencies = [
2207
+ "criterion 0.7.0",
2208
+ "futures",
2209
+ "pprof",
2210
+ "rcgen",
2211
+ "tempfile",
2212
+ "tokio",
2213
+ "tonic",
2214
+ "tonic-health",
2215
+ "umadb-benches",
2216
+ "umadb-client",
2217
+ "umadb-core",
2218
+ "umadb-dcb",
2219
+ "umadb-server",
2220
+ "uuid",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "umadb-benches"
2225
+ version = "0.1.4"
2226
+ dependencies = [
2227
+ "criterion 0.7.0",
2228
+ "futures",
2229
+ "pprof",
2230
+ "tempfile",
2231
+ "tokio",
2232
+ "umadb-client",
2233
+ "umadb-core",
2234
+ "umadb-dcb",
2235
+ "umadb-server",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "umadb-client"
2240
+ version = "0.1.4"
2241
+ dependencies = [
2242
+ "async-trait",
2243
+ "futures",
2244
+ "tokio",
2245
+ "tonic",
2246
+ "umadb-dcb",
2247
+ "umadb-proto",
2248
+ "uuid",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "umadb-core"
2253
+ version = "0.1.4"
2254
+ dependencies = [
2255
+ "bitflags 2.9.1",
2256
+ "byteorder",
2257
+ "crc32fast",
2258
+ "dashmap",
2259
+ "itertools 0.14.0",
2260
+ "libc",
2261
+ "memmap2",
2262
+ "rand",
2263
+ "serial_test",
2264
+ "tempfile",
2265
+ "umadb-dcb",
2266
+ "uuid",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "umadb-dcb"
2271
+ version = "0.1.4"
2272
+ dependencies = [
2273
+ "async-trait",
2274
+ "futures-core",
2275
+ "futures-util",
2276
+ "thiserror",
2277
+ "uuid",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "umadb-proto"
2282
+ version = "0.1.4"
2283
+ dependencies = [
2284
+ "prost",
2285
+ "tonic",
2286
+ "tonic-prost",
2287
+ "tonic-prost-build",
2288
+ "umadb-dcb",
2289
+ "uuid",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "umadb-python"
2294
+ version = "0.1.4"
2295
+ dependencies = [
2296
+ "pyo3",
2297
+ "umadb-client",
2298
+ "umadb-dcb",
2299
+ "uuid",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "umadb-server"
2304
+ version = "0.1.4"
2305
+ dependencies = [
2306
+ "async-trait",
2307
+ "clap",
2308
+ "futures",
2309
+ "tokio",
2310
+ "tokio-stream",
2311
+ "tonic",
2312
+ "tonic-health",
2313
+ "umadb-core",
2314
+ "umadb-dcb",
2315
+ "umadb-proto",
2316
+ ]
2317
+
2318
+ [[package]]
2319
+ name = "unicase"
2320
+ version = "2.8.1"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2323
+
2324
+ [[package]]
2325
+ name = "unicode-ident"
2326
+ version = "1.0.18"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2329
+
2330
+ [[package]]
2331
+ name = "unindent"
2332
+ version = "0.2.4"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2335
+
2336
+ [[package]]
2337
+ name = "untrusted"
2338
+ version = "0.9.0"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2341
+
2342
+ [[package]]
2343
+ name = "utf8parse"
2344
+ version = "0.2.2"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2347
+
2348
+ [[package]]
2349
+ name = "uuid"
2350
+ version = "1.18.1"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
2353
+ dependencies = [
2354
+ "getrandom 0.3.3",
2355
+ "js-sys",
2356
+ "wasm-bindgen",
2357
+ ]
2358
+
2359
+ [[package]]
2360
+ name = "version_check"
2361
+ version = "0.9.5"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2364
+
2365
+ [[package]]
2366
+ name = "walkdir"
2367
+ version = "2.5.0"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2370
+ dependencies = [
2371
+ "same-file",
2372
+ "winapi-util",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "want"
2377
+ version = "0.3.1"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2380
+ dependencies = [
2381
+ "try-lock",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "wasi"
2386
+ version = "0.11.1+wasi-snapshot-preview1"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2389
+
2390
+ [[package]]
2391
+ name = "wasi"
2392
+ version = "0.14.2+wasi-0.2.4"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2395
+ dependencies = [
2396
+ "wit-bindgen-rt",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "wasm-bindgen"
2401
+ version = "0.2.100"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2404
+ dependencies = [
2405
+ "cfg-if",
2406
+ "once_cell",
2407
+ "rustversion",
2408
+ "wasm-bindgen-macro",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "wasm-bindgen-backend"
2413
+ version = "0.2.100"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2416
+ dependencies = [
2417
+ "bumpalo",
2418
+ "log",
2419
+ "proc-macro2",
2420
+ "quote",
2421
+ "syn",
2422
+ "wasm-bindgen-shared",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "wasm-bindgen-macro"
2427
+ version = "0.2.100"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2430
+ dependencies = [
2431
+ "quote",
2432
+ "wasm-bindgen-macro-support",
2433
+ ]
2434
+
2435
+ [[package]]
2436
+ name = "wasm-bindgen-macro-support"
2437
+ version = "0.2.100"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2440
+ dependencies = [
2441
+ "proc-macro2",
2442
+ "quote",
2443
+ "syn",
2444
+ "wasm-bindgen-backend",
2445
+ "wasm-bindgen-shared",
2446
+ ]
2447
+
2448
+ [[package]]
2449
+ name = "wasm-bindgen-shared"
2450
+ version = "0.2.100"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2453
+ dependencies = [
2454
+ "unicode-ident",
2455
+ ]
2456
+
2457
+ [[package]]
2458
+ name = "web-sys"
2459
+ version = "0.3.77"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2462
+ dependencies = [
2463
+ "js-sys",
2464
+ "wasm-bindgen",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "winapi"
2469
+ version = "0.3.9"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2472
+ dependencies = [
2473
+ "winapi-i686-pc-windows-gnu",
2474
+ "winapi-x86_64-pc-windows-gnu",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "winapi-i686-pc-windows-gnu"
2479
+ version = "0.4.0"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2482
+
2483
+ [[package]]
2484
+ name = "winapi-util"
2485
+ version = "0.1.11"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2488
+ dependencies = [
2489
+ "windows-sys 0.61.2",
2490
+ ]
2491
+
2492
+ [[package]]
2493
+ name = "winapi-x86_64-pc-windows-gnu"
2494
+ version = "0.4.0"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2497
+
2498
+ [[package]]
2499
+ name = "windows-link"
2500
+ version = "0.2.1"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2503
+
2504
+ [[package]]
2505
+ name = "windows-sys"
2506
+ version = "0.52.0"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2509
+ dependencies = [
2510
+ "windows-targets 0.52.6",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "windows-sys"
2515
+ version = "0.59.0"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2518
+ dependencies = [
2519
+ "windows-targets 0.52.6",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "windows-sys"
2524
+ version = "0.60.2"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2527
+ dependencies = [
2528
+ "windows-targets 0.53.2",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "windows-sys"
2533
+ version = "0.61.2"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2536
+ dependencies = [
2537
+ "windows-link",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "windows-targets"
2542
+ version = "0.52.6"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2545
+ dependencies = [
2546
+ "windows_aarch64_gnullvm 0.52.6",
2547
+ "windows_aarch64_msvc 0.52.6",
2548
+ "windows_i686_gnu 0.52.6",
2549
+ "windows_i686_gnullvm 0.52.6",
2550
+ "windows_i686_msvc 0.52.6",
2551
+ "windows_x86_64_gnu 0.52.6",
2552
+ "windows_x86_64_gnullvm 0.52.6",
2553
+ "windows_x86_64_msvc 0.52.6",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "windows-targets"
2558
+ version = "0.53.2"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
2561
+ dependencies = [
2562
+ "windows_aarch64_gnullvm 0.53.0",
2563
+ "windows_aarch64_msvc 0.53.0",
2564
+ "windows_i686_gnu 0.53.0",
2565
+ "windows_i686_gnullvm 0.53.0",
2566
+ "windows_i686_msvc 0.53.0",
2567
+ "windows_x86_64_gnu 0.53.0",
2568
+ "windows_x86_64_gnullvm 0.53.0",
2569
+ "windows_x86_64_msvc 0.53.0",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "windows_aarch64_gnullvm"
2574
+ version = "0.52.6"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2577
+
2578
+ [[package]]
2579
+ name = "windows_aarch64_gnullvm"
2580
+ version = "0.53.0"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2583
+
2584
+ [[package]]
2585
+ name = "windows_aarch64_msvc"
2586
+ version = "0.52.6"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2589
+
2590
+ [[package]]
2591
+ name = "windows_aarch64_msvc"
2592
+ version = "0.53.0"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2595
+
2596
+ [[package]]
2597
+ name = "windows_i686_gnu"
2598
+ version = "0.52.6"
2599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2601
+
2602
+ [[package]]
2603
+ name = "windows_i686_gnu"
2604
+ version = "0.53.0"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2607
+
2608
+ [[package]]
2609
+ name = "windows_i686_gnullvm"
2610
+ version = "0.52.6"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2613
+
2614
+ [[package]]
2615
+ name = "windows_i686_gnullvm"
2616
+ version = "0.53.0"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2619
+
2620
+ [[package]]
2621
+ name = "windows_i686_msvc"
2622
+ version = "0.52.6"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2625
+
2626
+ [[package]]
2627
+ name = "windows_i686_msvc"
2628
+ version = "0.53.0"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2631
+
2632
+ [[package]]
2633
+ name = "windows_x86_64_gnu"
2634
+ version = "0.52.6"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2637
+
2638
+ [[package]]
2639
+ name = "windows_x86_64_gnu"
2640
+ version = "0.53.0"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2643
+
2644
+ [[package]]
2645
+ name = "windows_x86_64_gnullvm"
2646
+ version = "0.52.6"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2649
+
2650
+ [[package]]
2651
+ name = "windows_x86_64_gnullvm"
2652
+ version = "0.53.0"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2655
+
2656
+ [[package]]
2657
+ name = "windows_x86_64_msvc"
2658
+ version = "0.52.6"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2661
+
2662
+ [[package]]
2663
+ name = "windows_x86_64_msvc"
2664
+ version = "0.53.0"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2667
+
2668
+ [[package]]
2669
+ name = "wit-bindgen-rt"
2670
+ version = "0.39.0"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2673
+ dependencies = [
2674
+ "bitflags 2.9.1",
2675
+ ]
2676
+
2677
+ [[package]]
2678
+ name = "yasna"
2679
+ version = "0.5.2"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
2682
+ dependencies = [
2683
+ "time",
2684
+ ]
2685
+
2686
+ [[package]]
2687
+ name = "zerocopy"
2688
+ version = "0.8.26"
2689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2690
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
2691
+ dependencies = [
2692
+ "zerocopy-derive",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "zerocopy-derive"
2697
+ version = "0.8.26"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
2700
+ dependencies = [
2701
+ "proc-macro2",
2702
+ "quote",
2703
+ "syn",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "zeroize"
2708
+ version = "1.8.2"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"