Cargo.lock 208 KB
Newer Older
1
2
3
4
5
6
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4

[[package]]
name = "addr2line"
7
version = "0.25.1"
8
source = "registry+https://github.com/rust-lang/crates.io-index"
9
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
11
12
13
14
15
dependencies = [
 "gimli",
]

[[package]]
name = "adler2"
Ryan Olson's avatar
Ryan Olson committed
16
version = "2.0.1"
17
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
18
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19

20
21
22
23
24
25
[[package]]
name = "ahash"
version = "0.8.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
dependencies = [
26
27
 "cfg-if 1.0.4",
 "getrandom 0.3.4",
28
29
30
31
32
33
 "once_cell",
 "serde",
 "version_check",
 "zerocopy",
]

34
35
[[package]]
name = "aho-corasick"
36
version = "1.1.4"
37
source = "registry+https://github.com/rust-lang/crates.io-index"
38
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
39
40
41
42
dependencies = [
 "memchr",
]

43
44
45
46
47
48
[[package]]
name = "akin"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1763692fc1416554cf051efc56a3de5595eca47299d731cc5c2b583adf8b4d2f"

49
50
51
52
53
54
55
56
57
[[package]]
name = "aligned"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
dependencies = [
 "as-slice",
]

58
59
60
61
62
63
64
65
66
[[package]]
name = "aligned-vec"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
dependencies = [
 "equator",
]

67
68
69
70
71
72
[[package]]
name = "allocator-api2"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"

73
74
75
76
77
78
79
80
81
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
 "libc",
]

82
83
[[package]]
name = "anstream"
84
version = "0.6.21"
85
source = "registry+https://github.com/rust-lang/crates.io-index"
86
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
87
88
89
90
91
92
93
94
95
96
97
98
dependencies = [
 "anstyle",
 "anstyle-parse",
 "anstyle-query",
 "anstyle-wincon",
 "colorchoice",
 "is_terminal_polyfill",
 "utf8parse",
]

[[package]]
name = "anstyle"
99
version = "1.0.13"
100
source = "registry+https://github.com/rust-lang/crates.io-index"
101
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
102
103
104

[[package]]
name = "anstyle-parse"
Ryan Olson's avatar
Ryan Olson committed
105
version = "0.2.7"
106
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
107
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
108
109
110
111
112
113
dependencies = [
 "utf8parse",
]

[[package]]
name = "anstyle-query"
114
version = "1.1.5"
115
source = "registry+https://github.com/rust-lang/crates.io-index"
116
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
117
dependencies = [
118
 "windows-sys 0.61.2",
119
120
121
122
]

[[package]]
name = "anstyle-wincon"
123
version = "3.0.11"
124
source = "registry+https://github.com/rust-lang/crates.io-index"
125
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
126
127
dependencies = [
 "anstyle",
Ryan Olson's avatar
Ryan Olson committed
128
 "once_cell_polyfill",
129
 "windows-sys 0.61.2",
130
131
132
133
]

[[package]]
name = "anyhow"
134
version = "1.0.101"
135
source = "registry+https://github.com/rust-lang/crates.io-index"
136
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
137
138
139
dependencies = [
 "backtrace",
]
140

141
142
[[package]]
name = "arbitrary"
Ryan Olson's avatar
Ryan Olson committed
143
version = "1.4.2"
144
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
145
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
146
147
148
149
dependencies = [
 "derive_arbitrary",
]

150
151
[[package]]
name = "arc-swap"
152
version = "1.8.2"
153
source = "registry+https://github.com/rust-lang/crates.io-index"
154
155
156
157
checksum = "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5"
dependencies = [
 "rustversion",
]
158

159
160
161
162
163
164
165
166
[[package]]
name = "arg_enum_proc_macro"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
dependencies = [
 "proc-macro2",
 "quote",
167
 "syn",
168
169
]

170
171
172
173
174
175
[[package]]
name = "arraydeque"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"

176
177
178
179
180
181
182
183
184
185
186
187
[[package]]
name = "arrayref"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"

[[package]]
name = "arrayvec"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"

188
189
190
191
192
193
194
195
196
[[package]]
name = "as-slice"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
dependencies = [
 "stable_deref_trait",
]

197
198
199
200
201
202
203
204
205
206
207
208
[[package]]
name = "async-broadcast"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
dependencies = [
 "event-listener",
 "event-listener-strategy",
 "futures-core",
 "pin-project-lite",
]

209
210
[[package]]
name = "async-channel"
Ryan Olson's avatar
Ryan Olson committed
211
version = "2.5.0"
212
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
213
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
214
215
216
217
218
219
220
221
222
dependencies = [
 "concurrent-queue",
 "event-listener-strategy",
 "futures-core",
 "pin-project-lite",
]

[[package]]
name = "async-nats"
223
version = "0.45.0"
224
source = "registry+https://github.com/rust-lang/crates.io-index"
225
checksum = "86dde77d8a733a9dbaf865a9eb65c72e09c88f3d14d3dd0d2aecf511920ee4fe"
226
dependencies = [
Biswa Panda's avatar
Biswa Panda committed
227
 "base64 0.22.1",
228
 "bytes",
229
 "futures-util",
230
231
232
233
234
235
 "memchr",
 "nkeys",
 "nuid",
 "once_cell",
 "pin-project",
 "portable-atomic",
236
 "rand 0.8.5",
237
238
239
240
 "regex",
 "ring",
 "rustls-native-certs 0.7.3",
 "rustls-pemfile",
241
 "rustls-webpki 0.102.8",
242
243
244
245
 "serde",
 "serde_json",
 "serde_nanos",
 "serde_repr",
246
 "thiserror 1.0.69",
247
248
249
 "time",
 "tokio",
 "tokio-rustls",
250
 "tokio-stream",
251
252
253
254
255
256
257
258
259
260
261
262
263
 "tokio-util",
 "tokio-websockets",
 "tracing",
 "tryhard",
 "url",
]

[[package]]
name = "async-once-cell"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4288f83726785267c6f2ef073a3d83dc3f9b81464e9f99898240cced85fce35a"

264
265
[[package]]
name = "async-openai-macros"
266
version = "0.1.1"
267
source = "registry+https://github.com/rust-lang/crates.io-index"
268
checksum = "81872a8e595e8ceceab71c6ba1f9078e313b452a1e31934e6763ef5d308705e4"
269
270
271
dependencies = [
 "proc-macro2",
 "quote",
272
 "syn",
273
274
]

275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
[[package]]
name = "async-stream"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
dependencies = [
 "async-stream-impl",
 "futures-core",
 "pin-project-lite",
]

[[package]]
name = "async-stream-impl"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
dependencies = [
 "proc-macro2",
 "quote",
294
 "syn",
295
296
297
298
]

[[package]]
name = "async-trait"
Ryan Olson's avatar
Ryan Olson committed
299
version = "0.1.89"
300
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
301
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
302
303
304
dependencies = [
 "proc-macro2",
 "quote",
305
 "syn",
306
307
]

308
309
310
311
312
313
314
315
316
317
318
319
320
321
[[package]]
name = "async_zmq"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "499c7104563d51146553fb0963f00210d8825833789e0ed270dd96aeeff6ac93"
dependencies = [
 "futures",
 "mio 0.6.23",
 "once_cell",
 "slab",
 "thiserror 1.0.69",
 "zmq",
]

322
323
324
325
326
327
328
329
330
331
332
333
334
[[package]]
name = "asynchronous-codec"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
dependencies = [
 "bytes",
 "futures-sink",
 "futures-util",
 "memchr",
 "pin-project-lite",
]

335
336
[[package]]
name = "atomic"
Ryan Olson's avatar
Ryan Olson committed
337
version = "0.6.1"
338
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
339
checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
340
341
342
343
344
345
346
347
348
349
350
351
dependencies = [
 "bytemuck",
]

[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"

[[package]]
name = "autocfg"
Ryan Olson's avatar
Ryan Olson committed
352
version = "1.5.0"
353
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
354
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
355

356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
[[package]]
name = "av-scenechange"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
dependencies = [
 "aligned",
 "anyhow",
 "arg_enum_proc_macro",
 "arrayvec",
 "log",
 "num-rational",
 "num-traits",
 "pastey",
 "rayon",
 "thiserror 2.0.18",
 "v_frame",
 "y4m",
]

376
377
[[package]]
name = "av1-grain"
378
version = "0.2.5"
379
source = "registry+https://github.com/rust-lang/crates.io-index"
380
checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
381
382
383
384
dependencies = [
 "anyhow",
 "arrayvec",
 "log",
385
 "nom 8.0.0",
386
387
388
389
390
391
 "num-rational",
 "v_frame",
]

[[package]]
name = "avif-serialize"
392
version = "0.8.8"
393
source = "registry+https://github.com/rust-lang/crates.io-index"
394
checksum = "375082f007bd67184fb9c0374614b29f9aaa604ec301635f72338bb65386a53d"
395
396
397
398
dependencies = [
 "arrayvec",
]

Graham King's avatar
Graham King committed
399
400
[[package]]
name = "aws-lc-rs"
401
version = "1.15.4"
Graham King's avatar
Graham King committed
402
source = "registry+https://github.com/rust-lang/crates.io-index"
403
checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
Graham King's avatar
Graham King committed
404
405
406
407
408
409
410
dependencies = [
 "aws-lc-sys",
 "zeroize",
]

[[package]]
name = "aws-lc-sys"
411
version = "0.37.1"
Graham King's avatar
Graham King committed
412
source = "registry+https://github.com/rust-lang/crates.io-index"
413
checksum = "b092fe214090261288111db7a2b2c2118e5a7f30dc2569f1732c4069a6840549"
Graham King's avatar
Graham King committed
414
415
416
417
418
419
420
dependencies = [
 "cc",
 "cmake",
 "dunce",
 "fs_extra",
]

421
422
[[package]]
name = "axum"
Ryan Olson's avatar
Ryan Olson committed
423
version = "0.8.4"
424
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
425
checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
426
dependencies = [
427
 "axum-core",
428
 "axum-macros",
429
430
431
432
433
434
435
436
437
 "bytes",
 "form_urlencoded",
 "futures-util",
 "http",
 "http-body",
 "http-body-util",
 "hyper",
 "hyper-util",
 "itoa",
438
 "matchit",
439
440
441
442
443
444
445
446
447
448
449
 "memchr",
 "mime",
 "percent-encoding",
 "pin-project-lite",
 "rustversion",
 "serde",
 "serde_json",
 "serde_path_to_error",
 "serde_urlencoded",
 "sync_wrapper",
 "tokio",
450
 "tower",
451
452
453
454
455
456
457
 "tower-layer",
 "tower-service",
 "tracing",
]

[[package]]
name = "axum-core"
458
version = "0.5.6"
459
source = "registry+https://github.com/rust-lang/crates.io-index"
460
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
461
462
dependencies = [
 "bytes",
463
 "futures-core",
464
465
466
467
468
469
470
471
472
473
474
 "http",
 "http-body",
 "http-body-util",
 "mime",
 "pin-project-lite",
 "sync_wrapper",
 "tower-layer",
 "tower-service",
 "tracing",
]

475
476
477
478
479
480
481
482
[[package]]
name = "axum-macros"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
dependencies = [
 "proc-macro2",
 "quote",
483
 "syn",
484
485
]

Graham King's avatar
Graham King committed
486
487
[[package]]
name = "axum-server"
488
version = "0.7.3"
Graham King's avatar
Graham King committed
489
source = "registry+https://github.com/rust-lang/crates.io-index"
490
checksum = "c1ab4a3ec9ea8a657c72d99a03a824af695bd0fb5ec639ccbd9cd3543b41a5f9"
Graham King's avatar
Graham King committed
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
dependencies = [
 "arc-swap",
 "bytes",
 "fs-err",
 "http",
 "http-body",
 "hyper",
 "hyper-util",
 "pin-project-lite",
 "rustls",
 "rustls-pemfile",
 "rustls-pki-types",
 "tokio",
 "tokio-rustls",
 "tower-service",
]

Paul Hendricks's avatar
Paul Hendricks committed
508
509
510
511
512
513
514
[[package]]
name = "backoff"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
dependencies = [
 "futures-core",
515
 "getrandom 0.2.17",
Paul Hendricks's avatar
Paul Hendricks committed
516
517
 "instant",
 "pin-project-lite",
518
 "rand 0.8.5",
Paul Hendricks's avatar
Paul Hendricks committed
519
520
521
 "tokio",
]

522
523
524
525
526
527
528
529
530
531
532
[[package]]
name = "backon"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
dependencies = [
 "fastrand",
 "gloo-timers",
 "tokio",
]

533
534
[[package]]
name = "backtrace"
535
version = "0.3.76"
536
source = "registry+https://github.com/rust-lang/crates.io-index"
537
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
538
539
dependencies = [
 "addr2line",
540
 "cfg-if 1.0.4",
541
542
543
544
 "libc",
 "miniz_oxide",
 "object",
 "rustc-demangle",
545
 "windows-link",
546
547
]

Biswa Panda's avatar
Biswa Panda committed
548
549
550
551
552
553
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"

554
555
556
557
558
559
560
561
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"

[[package]]
name = "base64ct"
562
version = "1.8.3"
563
source = "registry+https://github.com/rust-lang/crates.io-index"
564
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
565

566
567
568
569
570
571
572
573
574
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
 "serde",
]

575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
[[package]]
name = "bincode"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
dependencies = [
 "bincode_derive",
 "serde",
 "unty",
]

[[package]]
name = "bincode_derive"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
dependencies = [
 "virtue",
]

595
596
597
598
599
600
[[package]]
name = "bindgen"
version = "0.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
dependencies = [
601
 "bitflags 2.11.0",
602
603
 "cexpr",
 "clang-sys",
604
 "itertools 0.13.0",
605
606
607
608
609
 "proc-macro2",
 "quote",
 "regex",
 "rustc-hash 1.1.0",
 "shlex",
610
 "syn",
611
612
613
614
615
616
617
618
]

[[package]]
name = "bindgen"
version = "0.71.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3"
dependencies = [
619
 "bitflags 2.11.0",
Graham King's avatar
Graham King committed
620
621
 "cexpr",
 "clang-sys",
622
 "itertools 0.13.0",
Graham King's avatar
Graham King committed
623
624
625
626
627
 "log",
 "prettyplease",
 "proc-macro2",
 "quote",
 "regex",
628
 "rustc-hash 2.1.1",
Graham King's avatar
Graham King committed
629
 "shlex",
630
 "syn",
Graham King's avatar
Graham King committed
631
632
]

633
634
635
636
637
638
639
640
641
[[package]]
name = "bit-set"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
dependencies = [
 "bit-vec 0.6.3",
]

642
643
644
645
646
647
[[package]]
name = "bit-set"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
dependencies = [
648
 "bit-vec 0.8.0",
649
650
]

651
652
653
654
655
656
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"

657
658
659
660
661
662
[[package]]
name = "bit-vec"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"

663
664
[[package]]
name = "bit_field"
665
version = "0.10.3"
666
source = "registry+https://github.com/rust-lang/crates.io-index"
667
checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
668

669
670
671
672
673
674
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"

675
676
[[package]]
name = "bitflags"
677
version = "2.11.0"
678
source = "registry+https://github.com/rust-lang/crates.io-index"
679
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
680
dependencies = [
681
 "serde_core",
682
]
683

684
685
[[package]]
name = "bitstream-io"
686
version = "4.9.0"
687
source = "registry+https://github.com/rust-lang/crates.io-index"
688
689
690
691
checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
dependencies = [
 "core2",
]
692

693
694
[[package]]
name = "blake3"
695
version = "1.8.3"
696
source = "registry+https://github.com/rust-lang/crates.io-index"
697
checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
698
699
700
701
dependencies = [
 "arrayref",
 "arrayvec",
 "cc",
702
 "cfg-if 1.0.4",
703
 "constant_time_eq",
704
 "cpufeatures",
705
706
 "memmap2",
 "rayon-core",
707
708
709
710
711
712
713
714
715
716
717
]

[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
 "generic-array",
]

718
719
720
721
722
723
724
725
726
[[package]]
name = "block2"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
dependencies = [
 "objc2",
]

727
728
729
730
731
732
733
734
735
[[package]]
name = "bs58"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
dependencies = [
 "tinyvec",
]

Biswa Panda's avatar
Biswa Panda committed
736
737
738
739
740
741
742
743
744
745
746
[[package]]
name = "bs62"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afdf0f7a8a430954ae6cba49be4af8fa3a4bee15d9210aa8a82aee6abca531bd"
dependencies = [
 "lazy_static",
 "num-bigint",
 "num-traits",
]

747
748
[[package]]
name = "bstr"
749
version = "1.12.1"
750
source = "registry+https://github.com/rust-lang/crates.io-index"
751
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
752
753
dependencies = [
 "memchr",
754
 "regex-automata",
755
756
757
758
759
 "serde",
]

[[package]]
name = "built"
760
version = "0.8.0"
761
source = "registry+https://github.com/rust-lang/crates.io-index"
762
checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
763

764
765
[[package]]
name = "bumpalo"
766
version = "3.19.1"
767
source = "registry+https://github.com/rust-lang/crates.io-index"
768
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
769

770
771
[[package]]
name = "bytemuck"
772
version = "1.25.0"
773
source = "registry+https://github.com/rust-lang/crates.io-index"
774
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
775
776
777
dependencies = [
 "bytemuck_derive",
]
778

Biswa Panda's avatar
Biswa Panda committed
779
780
[[package]]
name = "bytemuck_derive"
781
version = "1.10.2"
Biswa Panda's avatar
Biswa Panda committed
782
source = "registry+https://github.com/rust-lang/crates.io-index"
783
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
Biswa Panda's avatar
Biswa Panda committed
784
785
786
dependencies = [
 "proc-macro2",
 "quote",
787
 "syn",
Biswa Panda's avatar
Biswa Panda committed
788
789
]

790
791
792
793
794
795
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"

796
797
798
799
800
801
[[package]]
name = "byteorder-lite"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"

802
803
[[package]]
name = "bytes"
804
version = "1.11.1"
805
source = "registry+https://github.com/rust-lang/crates.io-index"
806
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
807
808
809
810
dependencies = [
 "serde",
]

811
812
[[package]]
name = "candle-core"
813
version = "0.9.2"
814
source = "registry+https://github.com/rust-lang/crates.io-index"
815
checksum = "c15b675b80d994b2eadb20a4bbe434eabeb454eac3ee5e2b4cf6f147ee9be091"
816
817
dependencies = [
 "byteorder",
818
819
 "float8",
 "gemm",
820
 "half",
821
 "libm",
822
823
824
 "memmap2",
 "num-traits",
 "num_cpus",
Ryan Olson's avatar
Ryan Olson committed
825
 "rand 0.9.2",
826
827
828
 "rand_distr",
 "rayon",
 "safetensors",
829
830
831
 "thiserror 2.0.18",
 "yoke",
 "zip 7.2.0",
832
833
]

834
835
836
837
838
839
840
841
842
[[package]]
name = "castaway"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
dependencies = [
 "rustversion",
]

843
844
[[package]]
name = "cc"
845
version = "1.2.56"
846
source = "registry+https://github.com/rust-lang/crates.io-index"
847
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
848
dependencies = [
849
 "find-msvc-tools",
850
851
 "jobserver",
 "libc",
852
853
854
 "shlex",
]

855
856
857
858
859
860
[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
861
 "nom 7.1.3",
862
863
]

864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
[[package]]
name = "cfg-expr"
version = "0.15.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
dependencies = [
 "smallvec",
 "target-lexicon",
]

[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"

880
881
[[package]]
name = "cfg-if"
882
version = "1.0.4"
883
source = "registry+https://github.com/rust-lang/crates.io-index"
884
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
885
886
887
888
889
890
891

[[package]]
name = "cfg_aliases"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"

892
893
[[package]]
name = "chrono"
894
version = "0.4.43"
895
source = "registry+https://github.com/rust-lang/crates.io-index"
896
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
897
898
dependencies = [
 "iana-time-zone",
899
 "js-sys",
900
 "num-traits",
901
 "serde",
902
 "wasm-bindgen",
903
 "windows-link",
904
905
]

906
907
908
909
910
911
912
913
914
915
916
[[package]]
name = "clang-sys"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
dependencies = [
 "glob",
 "libc",
 "libloading",
]

917
918
[[package]]
name = "clap"
919
version = "4.5.59"
920
source = "registry+https://github.com/rust-lang/crates.io-index"
921
checksum = "c5caf74d17c3aec5495110c34cc3f78644bfa89af6c8993ed4de2790e49b6499"
922
923
dependencies = [
 "clap_builder",
924
 "clap_derive",
925
926
927
928
]

[[package]]
name = "clap_builder"
929
version = "4.5.59"
930
source = "registry+https://github.com/rust-lang/crates.io-index"
931
checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24"
932
933
934
935
dependencies = [
 "anstream",
 "anstyle",
 "clap_lex",
936
 "strsim",
937
938
]

939
940
[[package]]
name = "clap_derive"
941
version = "4.5.55"
942
source = "registry+https://github.com/rust-lang/crates.io-index"
943
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
944
945
946
947
dependencies = [
 "heck",
 "proc-macro2",
 "quote",
948
 "syn",
949
950
]

951
952
[[package]]
name = "clap_lex"
953
version = "1.0.0"
954
source = "registry+https://github.com/rust-lang/crates.io-index"
955
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
956

Graham King's avatar
Graham King committed
957
958
[[package]]
name = "cmake"
959
version = "0.1.57"
Graham King's avatar
Graham King committed
960
source = "registry+https://github.com/rust-lang/crates.io-index"
961
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
Graham King's avatar
Graham King committed
962
963
964
965
dependencies = [
 "cc",
]

966
967
968
969
970
971
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"

972
973
[[package]]
name = "colorchoice"
Ryan Olson's avatar
Ryan Olson committed
974
version = "1.0.4"
975
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
976
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
977

978
979
[[package]]
name = "colored"
980
version = "3.1.1"
981
source = "registry+https://github.com/rust-lang/crates.io-index"
982
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
983
dependencies = [
984
 "windows-sys 0.61.2",
985
986
]

987
988
989
990
991
992
993
[[package]]
name = "compact_str"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
dependencies = [
 "castaway",
994
 "cfg-if 1.0.4",
995
996
997
998
999
1000
1001
 "itoa",
 "rustversion",
 "ryu",
 "serde",
 "static_assertions",
]

1002
1003
1004
1005
1006
1007
1008
1009
1010
[[package]]
name = "concurrent-queue"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
dependencies = [
 "crossbeam-utils",
]

1011
1012
[[package]]
name = "config"
1013
version = "0.15.19"
1014
source = "registry+https://github.com/rust-lang/crates.io-index"
1015
checksum = "b30fa8254caad766fc03cb0ccae691e14bf3bd72bfff27f72802ce729551b3d6"
1016
1017
1018
1019
1020
1021
1022
1023
dependencies = [
 "async-trait",
 "convert_case",
 "json5",
 "pathdiff",
 "ron",
 "rust-ini",
 "serde-untagged",
1024
 "serde_core",
1025
 "serde_json",
1026
 "toml 0.9.12+spec-1.1.0",
1027
1028
1029
1030
 "winnow",
 "yaml-rust2",
]

Biswa Panda's avatar
Biswa Panda committed
1031
1032
[[package]]
name = "console"
1033
version = "0.15.11"
Biswa Panda's avatar
Biswa Panda committed
1034
source = "registry+https://github.com/rust-lang/crates.io-index"
1035
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
Biswa Panda's avatar
Biswa Panda committed
1036
1037
1038
1039
1040
1041
1042
1043
dependencies = [
 "encode_unicode",
 "libc",
 "once_cell",
 "unicode-width",
 "windows-sys 0.59.0",
]

1044
1045
1046
1047
1048
1049
[[package]]
name = "const-oid"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"

1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
[[package]]
name = "const-random"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
dependencies = [
 "const-random-macro",
]

[[package]]
name = "const-random-macro"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
dependencies = [
1065
 "getrandom 0.2.17",
1066
1067
1068
1069
 "once_cell",
 "tiny-keccak",
]

1070
1071
[[package]]
name = "constant_time_eq"
1072
version = "0.4.2"
1073
source = "registry+https://github.com/rust-lang/crates.io-index"
1074
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
1075

1076
1077
1078
1079
1080
1081
1082
1083
1084
[[package]]
name = "convert_case"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
dependencies = [
 "unicode-segmentation",
]

1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "core-foundation"
Ryan Olson's avatar
Ryan Olson committed
1097
version = "0.10.1"
1098
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
1099
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "core-foundation-sys"
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"

1111
1112
1113
1114
1115
1116
1117
1118
1119
[[package]]
name = "core2"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
dependencies = [
 "memchr",
]

1120
1121
1122
1123
1124
1125
1126
1127
1128
[[package]]
name = "cpufeatures"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
dependencies = [
 "libc",
]

Biswa Panda's avatar
Biswa Panda committed
1129
1130
[[package]]
name = "crc32fast"
Ryan Olson's avatar
Ryan Olson committed
1131
version = "1.5.0"
Biswa Panda's avatar
Biswa Panda committed
1132
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
1133
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
Biswa Panda's avatar
Biswa Panda committed
1134
dependencies = [
1135
 "cfg-if 1.0.4",
Biswa Panda's avatar
Biswa Panda committed
1136
1137
]

1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
[[package]]
name = "crossbeam"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
dependencies = [
 "crossbeam-channel",
 "crossbeam-deque",
 "crossbeam-epoch",
 "crossbeam-queue",
 "crossbeam-utils",
]

[[package]]
name = "crossbeam-channel"
1153
version = "0.5.15"
1154
source = "registry+https://github.com/rust-lang/crates.io-index"
1155
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
dependencies = [
 "crossbeam-utils",
]

[[package]]
name = "crossbeam-deque"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
dependencies = [
 "crossbeam-epoch",
 "crossbeam-utils",
]

[[package]]
name = "crossbeam-epoch"
version = "0.9.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
dependencies = [
 "crossbeam-utils",
]

[[package]]
name = "crossbeam-queue"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
dependencies = [
 "crossbeam-utils",
]

1188
1189
1190
1191
1192
1193
[[package]]
name = "crossbeam-utils"
version = "0.8.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"

1194
1195
[[package]]
name = "crunchy"
Ryan Olson's avatar
Ryan Olson committed
1196
version = "0.2.4"
1197
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
1198
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1199

1200
1201
[[package]]
name = "crypto-common"
1202
version = "0.1.7"
1203
source = "registry+https://github.com/rust-lang/crates.io-index"
1204
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1205
1206
1207
1208
1209
dependencies = [
 "generic-array",
 "typenum",
]

Ryan Olson's avatar
Ryan Olson committed
1210
1211
[[package]]
name = "cudarc"
1212
version = "0.17.8"
Ryan Olson's avatar
Ryan Olson committed
1213
source = "registry+https://github.com/rust-lang/crates.io-index"
1214
checksum = "0bf99ab37ee7072d64d906aa2dada9a3422f1d975cdf8c8055a573bc84897ed8"
1215
1216
1217
1218
dependencies = [
 "libloading",
]

1219
1220
1221
1222
1223
1224
[[package]]
name = "curve25519-dalek"
version = "4.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
dependencies = [
1225
 "cfg-if 1.0.4",
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
 "cpufeatures",
 "curve25519-dalek-derive",
 "digest",
 "fiat-crypto",
 "rustc_version",
 "subtle",
]

[[package]]
name = "curve25519-dalek-derive"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
dependencies = [
 "proc-macro2",
 "quote",
1242
 "syn",
1243
1244
1245
1246
]

[[package]]
name = "darling"
1247
version = "0.20.11"
1248
source = "registry+https://github.com/rust-lang/crates.io-index"
1249
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
1250
dependencies = [
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
 "darling_core 0.20.11",
 "darling_macro 0.20.11",
]

[[package]]
name = "darling"
version = "0.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
dependencies = [
 "darling_core 0.21.3",
 "darling_macro 0.21.3",
1263
1264
1265
1266
]

[[package]]
name = "darling_core"
1267
version = "0.20.11"
1268
source = "registry+https://github.com/rust-lang/crates.io-index"
1269
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
1270
1271
1272
1273
1274
dependencies = [
 "fnv",
 "ident_case",
 "proc-macro2",
 "quote",
1275
 "strsim",
1276
 "syn",
1277
1278
]

1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
[[package]]
name = "darling_core"
version = "0.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
dependencies = [
 "fnv",
 "ident_case",
 "proc-macro2",
 "quote",
 "strsim",
1290
 "syn",
1291
1292
]

1293
1294
[[package]]
name = "darling_macro"
1295
version = "0.20.11"
1296
source = "registry+https://github.com/rust-lang/crates.io-index"
1297
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1298
dependencies = [
1299
1300
 "darling_core 0.20.11",
 "quote",
1301
 "syn",
1302
1303
1304
1305
1306
1307
1308
1309
1310
]

[[package]]
name = "darling_macro"
version = "0.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
dependencies = [
 "darling_core 0.21.3",
1311
 "quote",
1312
 "syn",
1313
1314
]

1315
1316
[[package]]
name = "dary_heap"
1317
version = "0.3.8"
1318
source = "registry+https://github.com/rust-lang/crates.io-index"
1319
checksum = "06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04"
1320
1321
1322
1323
dependencies = [
 "serde",
]

1324
1325
1326
1327
1328
1329
[[package]]
name = "dashmap"
version = "5.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
dependencies = [
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
 "cfg-if 1.0.4",
 "hashbrown 0.14.5",
 "lock_api",
 "once_cell",
 "parking_lot_core",
]

[[package]]
name = "dashmap"
version = "6.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
dependencies = [
 "cfg-if 1.0.4",
 "crossbeam-utils",
1345
1346
1347
1348
1349
1350
 "hashbrown 0.14.5",
 "lock_api",
 "once_cell",
 "parking_lot_core",
]

1351
1352
[[package]]
name = "data-encoding"
1353
version = "2.10.0"
1354
source = "registry+https://github.com/rust-lang/crates.io-index"
1355
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
1356

Biswa Panda's avatar
Biswa Panda committed
1357
1358
1359
1360
1361
1362
[[package]]
name = "defmac"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aafbece59594ed57696a1a69e8bb3ca1683fbc9cdb41d5c02726070b2cd8f19d"

1363
1364
[[package]]
name = "der"
1365
version = "0.7.10"
1366
source = "registry+https://github.com/rust-lang/crates.io-index"
1367
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1368
1369
1370
1371
1372
1373
1374
1375
dependencies = [
 "const-oid",
 "pem-rfc7468",
 "zeroize",
]

[[package]]
name = "deranged"
1376
version = "0.5.6"
1377
source = "registry+https://github.com/rust-lang/crates.io-index"
1378
checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4"
1379
1380
dependencies = [
 "powerfmt",
1381
 "serde_core",
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
]

[[package]]
name = "derive-getters"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74ef43543e701c01ad77d3a5922755c6a1d71b22d942cb8042be4994b380caff"
dependencies = [
 "proc-macro2",
 "quote",
1392
 "syn",
1393
1394
]

1395
[[package]]
1396
name = "derive_arbitrary"
Ryan Olson's avatar
Ryan Olson committed
1397
version = "1.4.2"
1398
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
1399
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
1400
1401
1402
dependencies = [
 "proc-macro2",
 "quote",
1403
 "syn",
1404
1405
1406
1407
1408
1409
]

[[package]]
name = "derive_builder"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
dependencies = [
 "derive_builder_macro",
]

[[package]]
name = "derive_builder_core"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
dependencies = [
1421
 "darling 0.20.11",
1422
1423
 "proc-macro2",
 "quote",
1424
 "syn",
1425
1426
1427
1428
1429
1430
1431
1432
1433
]

[[package]]
name = "derive_builder_macro"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
dependencies = [
 "derive_builder_core",
1434
 "syn",
1435
1436
]

1437
1438
1439
1440
1441
1442
[[package]]
name = "derive_more"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
dependencies = [
1443
1444
1445
1446
1447
 "derive_more-impl 1.0.0",
]

[[package]]
name = "derive_more"
1448
version = "2.1.1"
1449
source = "registry+https://github.com/rust-lang/crates.io-index"
1450
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1451
dependencies = [
1452
 "derive_more-impl 2.1.1",
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
]

[[package]]
name = "derive_more-impl"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
dependencies = [
 "proc-macro2",
 "quote",
1463
 "syn",
1464
1465
1466
 "unicode-xid",
]

1467
1468
[[package]]
name = "derive_more-impl"
1469
version = "2.1.1"
1470
source = "registry+https://github.com/rust-lang/crates.io-index"
1471
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1472
1473
1474
dependencies = [
 "proc-macro2",
 "quote",
1475
1476
 "rustc_version",
 "syn",
1477
1478
]

1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
[[package]]
name = "dialoguer"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de"
dependencies = [
 "console",
 "shell-words",
 "tempfile",
 "thiserror 1.0.69",
]

1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
 "block-buffer",
 "crypto-common",
]

1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
[[package]]
name = "dircpy"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a88521b0517f5f9d51d11925d8ab4523497dcf947073fa3231a311b63941131c"
dependencies = [
 "jwalk",
 "log",
 "walkdir",
]

Biswa Panda's avatar
Biswa Panda committed
1512
1513
[[package]]
name = "dirs"
Ryan Olson's avatar
Ryan Olson committed
1514
version = "6.0.0"
Biswa Panda's avatar
Biswa Panda committed
1515
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
1516
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
Biswa Panda's avatar
Biswa Panda committed
1517
dependencies = [
1518
 "dirs-sys",
Biswa Panda's avatar
Biswa Panda committed
1519
1520
1521
1522
]

[[package]]
name = "dirs-sys"
Ryan Olson's avatar
Ryan Olson committed
1523
version = "0.5.0"
Biswa Panda's avatar
Biswa Panda committed
1524
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
1525
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
Biswa Panda's avatar
Biswa Panda committed
1526
1527
1528
dependencies = [
 "libc",
 "option-ext",
1529
 "redox_users",
1530
 "windows-sys 0.61.2",
Biswa Panda's avatar
Biswa Panda committed
1531
1532
]

1533
1534
1535
1536
1537
1538
[[package]]
name = "dispatch2"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
dependencies = [
1539
 "bitflags 2.11.0",
1540
1541
1542
 "objc2",
]

1543
1544
1545
1546
1547
1548
1549
1550
[[package]]
name = "displaydoc"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
dependencies = [
 "proc-macro2",
 "quote",
1551
 "syn",
1552
1553
]

1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
[[package]]
name = "dlpark"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc178fc3bf4ce54c26ccffcf271ff574954ac4b940f15121be3d69f277194537"
dependencies = [
 "half",
 "pyo3",
]

1564
1565
1566
1567
1568
1569
1570
1571
1572
[[package]]
name = "dlv-list"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
dependencies = [
 "const-random",
]

Graham King's avatar
Graham King committed
1573
1574
1575
1576
1577
1578
[[package]]
name = "dunce"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"

1579
1580
1581
1582
1583
1584
[[package]]
name = "dyn-clone"
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"

1585
1586
[[package]]
name = "dyn-stack"
1587
version = "0.13.2"
1588
source = "registry+https://github.com/rust-lang/crates.io-index"
1589
checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
1590
1591
dependencies = [
 "bytemuck",
1592
 "dyn-stack-macros",
1593
1594
]

1595
1596
1597
1598
1599
1600
[[package]]
name = "dyn-stack-macros"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"

1601
1602
[[package]]
name = "dynamo-async-openai"
1603
version = "0.9.0"
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
dependencies = [
 "async-openai-macros",
 "backoff",
 "base64 0.22.1",
 "bytes",
 "derive_builder",
 "eventsource-stream",
 "futures",
 "rand 0.9.2",
 "reqwest",
 "reqwest-eventsource",
 "secrecy",
 "serde",
 "serde_json",
1618
 "thiserror 2.0.18",
1619
1620
1621
1622
 "tokio",
 "tokio-stream",
 "tokio-util",
 "tracing",
1623
 "url",
1624
 "utoipa",
1625
 "uuid",
1626
1627
]

1628
1629
[[package]]
name = "dynamo-config"
1630
version = "0.9.0"
1631
1632
1633
1634
dependencies = [
 "anyhow",
]

1635
1636
1637
1638
1639
1640
[[package]]
name = "dynamo-kv-router"
version = "0.9.0"
dependencies = [
 "anyhow",
 "async-trait",
Yan Ru Pei's avatar
Yan Ru Pei committed
1641
 "dashmap 6.1.0",
1642
1643
 "dynamo-runtime",
 "dynamo-tokens",
Yan Ru Pei's avatar
Yan Ru Pei committed
1644
1645
 "flume",
 "parking_lot",
1646
1647
 "prometheus",
 "rand 0.9.2",
1648
 "rustc-hash 2.1.1",
1649
 "serde",
1650
 "thiserror 2.0.18",
1651
1652
1653
1654
1655
1656
 "tokio",
 "tokio-util",
 "tracing",
 "xxhash-rust",
]

1657
[[package]]
Neelay Shah's avatar
Neelay Shah committed
1658
name = "dynamo-llm"
1659
version = "0.9.0"
1660
dependencies = [
1661
 "ahash",
Ryan Olson's avatar
Ryan Olson committed
1662
 "aho-corasick",
1663
 "akin",
1664
 "aligned-vec",
1665
 "anyhow",
1666
 "async-nats",
1667
1668
 "async-stream",
 "async-trait",
1669
 "async_zmq",
1670
 "axum",
Graham King's avatar
Graham King committed
1671
 "axum-server",
1672
 "base64 0.22.1",
1673
 "bincode 2.0.1",
1674
 "bitflags 2.11.0",
1675
1676
 "blake3",
 "bs62",
1677
 "bytemuck",
1678
 "bytes",
1679
 "candle-core",
1680
 "chrono",
1681
 "cudarc",
1682
 "dashmap 5.5.3",
1683
 "derive-getters",
1684
 "derive_builder",
1685
 "dialoguer",
1686
 "dynamo-async-openai",
1687
 "dynamo-kv-router",
1688
 "dynamo-memory",
1689
 "dynamo-mocker",
1690
 "dynamo-parsers",
Neelay Shah's avatar
Neelay Shah committed
1691
 "dynamo-runtime",
1692
 "dynamo-tokens",
1693
1694
 "either",
 "erased-serde",
1695
 "etcd-client",
1696
 "ffmpeg-next",
1697
 "flate2",
1698
 "futures",
Ryan Olson's avatar
Ryan Olson committed
1699
 "futures-util",
1700
 "galil-seiferas",
1701
 "hf-hub",
1702
 "humantime",
1703
1704
 "hyper",
 "hyper-util",
1705
 "image",
1706
 "itertools 0.14.0",
1707
 "json-five",
1708
 "memfile",
1709
1710
 "minijinja",
 "minijinja-contrib",
1711
1712
 "modelexpress-client",
 "modelexpress-common",
1713
 "ndarray",
1714
1715
 "ndarray-interp",
 "ndarray-npy",
1716
1717
 "nix 0.26.4",
 "nixl-sys",
1718
 "object_store",
1719
 "offset-allocator",
Ryan Olson's avatar
Ryan Olson committed
1720
 "oneshot",
GuanLuo's avatar
GuanLuo committed
1721
 "parking_lot",
1722
 "prometheus",
1723
 "prost 0.13.5",
Ryan Olson's avatar
Ryan Olson committed
1724
 "rand 0.9.2",
1725
 "rayon",
1726
 "regex",
1727
 "reqwest",
1728
 "rmp-serde",
Graham King's avatar
Graham King committed
1729
 "rustls",
1730
1731
1732
 "serde",
 "serde_json",
 "strum",
1733
 "tempfile",
1734
 "thiserror 2.0.18",
Ryan Olson's avatar
Ryan Olson committed
1735
 "tmq",
1736
1737
 "tokenizers",
 "tokio",
1738
 "tokio-rayon",
1739
1740
 "tokio-stream",
 "tokio-util",
1741
1742
 "toktrie",
 "toktrie_hf_tokenizers",
1743
 "tonic 0.13.1",
1744
 "tonic-build 0.13.1",
1745
 "tower",
1746
 "tower-http",
1747
1748
 "tracing",
 "unicode-segmentation",
1749
 "url",
1750
1751
 "utoipa",
 "utoipa-swagger-ui",
1752
 "uuid",
1753
 "validator",
1754
 "video-rs",
1755
 "xxhash-rust",
1756
 "zeromq",
1757
1758
]

1759
1760
[[package]]
name = "dynamo-memory"
1761
version = "0.9.0"
1762
1763
1764
1765
1766
1767
1768
1769
1770
dependencies = [
 "anyhow",
 "cudarc",
 "dynamo-config",
 "libc",
 "nix 0.30.1",
 "nixl-sys",
 "offset-allocator",
 "serde",
1771
 "thiserror 2.0.18",
1772
1773
1774
 "tracing",
]

1775
1776
1777
1778
1779
1780
1781
1782
1783
[[package]]
name = "dynamo-mocker"
version = "0.9.0"
dependencies = [
 "anyhow",
 "dashmap 6.1.0",
 "derive-getters",
 "derive_builder",
 "dynamo-kv-router",
1784
 "dynamo-runtime",
1785
1786
1787
1788
1789
1790
1791
1792
 "dynamo-tokens",
 "ndarray",
 "ndarray-interp",
 "ndarray-npy",
 "rand 0.9.2",
 "serde",
 "serde_json",
 "tokio",
1793
 "tokio-timerfd",
1794
1795
1796
 "tokio-util",
 "tracing",
 "uuid",
1797
 "validator",
1798
1799
]

1800
1801
[[package]]
name = "dynamo-parsers"
1802
version = "0.9.0"
1803
1804
1805
dependencies = [
 "anyhow",
 "dynamo-async-openai",
1806
 "lazy_static",
1807
 "num-traits",
1808
 "openai-harmony",
1809
 "regex",
1810
 "rustpython-parser",
1811
1812
 "serde",
 "serde_json",
1813
 "tokio",
1814
1815
1816
1817
 "tracing",
 "uuid",
]

1818
[[package]]
Neelay Shah's avatar
Neelay Shah committed
1819
name = "dynamo-py3"
1820
version = "0.9.0"
1821
dependencies = [
1822
1823
1824
 "anyhow",
 "async-stream",
 "async-trait",
1825
 "cudarc",
Ryan Olson's avatar
Ryan Olson committed
1826
 "derive-getters",
1827
 "dlpark",
1828
 "dynamo-async-openai",
Neelay Shah's avatar
Neelay Shah committed
1829
 "dynamo-llm",
1830
 "dynamo-parsers",
Neelay Shah's avatar
Neelay Shah committed
1831
 "dynamo-runtime",
1832
 "either",
1833
1834
 "futures",
 "once_cell",
1835
 "parking_lot",
1836
 "prometheus",
1837
1838
1839
 "pyo3",
 "pyo3-async-runtimes",
 "pythonize",
Ryan Olson's avatar
Ryan Olson committed
1840
 "rstest",
1841
1842
 "serde",
 "serde_json",
1843
 "thiserror 2.0.18",
1844
1845
 "tokio",
 "tokio-stream",
Yan Ru Pei's avatar
Yan Ru Pei committed
1846
 "tokio-util",
1847
1848
 "tracing",
 "tracing-subscriber",
Ryan Olson's avatar
Ryan Olson committed
1849
 "uuid",
1850
1851
1852
]

[[package]]
Neelay Shah's avatar
Neelay Shah committed
1853
name = "dynamo-runtime"
1854
version = "0.9.0"
1855
1856
dependencies = [
 "anyhow",
1857
 "arc-swap",
1858
1859
1860
1861
1862
 "async-nats",
 "async-once-cell",
 "async-stream",
 "async-trait",
 "async_zmq",
1863
 "axum",
1864
 "bincode 1.3.3",
1865
1866
1867
 "blake3",
 "bytes",
 "chrono",
1868
 "dashmap 6.1.0",
1869
1870
 "derive-getters",
 "derive_builder",
1871
 "dynamo-config",
1872
1873
1874
1875
1876
1877
 "educe",
 "either",
 "etcd-client",
 "figment",
 "futures",
 "humantime",
1878
1879
1880
 "hyper",
 "hyper-util",
 "inotify 0.11.0",
1881
1882
 "k8s-openapi",
 "kube",
1883
 "libc",
1884
1885
 "local-ip-address",
 "log",
1886
 "lru",
1887
 "nid",
1888
 "nix 0.29.0",
1889
 "notify",
1890
1891
 "nuid",
 "once_cell",
1892
1893
1894
 "opentelemetry",
 "opentelemetry-otlp",
 "opentelemetry_sdk",
1895
 "parking_lot",
1896
 "percent-encoding",
1897
 "prometheus",
Ryan Olson's avatar
Ryan Olson committed
1898
 "rand 0.9.2",
1899
 "rayon",
1900
 "regex",
1901
 "reqwest",
1902
 "rmp-serde",
1903
1904
 "serde",
 "serde_json",
Ryan Olson's avatar
Ryan Olson committed
1905
 "socket2 0.5.10",
1906
 "thiserror 2.0.18",
1907
 "tmq",
1908
 "tokio",
1909
 "tokio-rayon",
1910
1911
 "tokio-stream",
 "tokio-util",
1912
 "tower",
1913
 "tower-http",
1914
 "tracing",
1915
 "tracing-opentelemetry",
1916
 "tracing-subscriber",
1917
 "url",
1918
 "uuid",
1919
1920
 "validator",
 "xxhash-rust",
1921
 "zmq",
1922
1923
]

1924
1925
1926
1927
1928
1929
1930
1931
1932
[[package]]
name = "dynamo-tokens"
version = "0.9.0"
dependencies = [
 "bs58",
 "bytemuck",
 "dashmap 6.1.0",
 "derive-getters",
 "serde",
1933
 "thiserror 2.0.18",
1934
1935
1936
1937
 "uuid",
 "xxhash-rust",
]

1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
[[package]]
name = "ed25519"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
dependencies = [
 "signature",
]

[[package]]
name = "ed25519-dalek"
Ryan Olson's avatar
Ryan Olson committed
1949
version = "2.2.0"
1950
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
1951
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
dependencies = [
 "curve25519-dalek",
 "ed25519",
 "sha2",
 "signature",
 "subtle",
]

[[package]]
name = "educe"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417"
dependencies = [
 "enum-ordinalize",
 "proc-macro2",
 "quote",
1969
 "syn",
1970
1971
1972
1973
]

[[package]]
name = "either"
1974
version = "1.15.0"
1975
source = "registry+https://github.com/rust-lang/crates.io-index"
1976
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1977
1978
1979
1980
dependencies = [
 "serde",
]

Biswa Panda's avatar
Biswa Panda committed
1981
1982
1983
1984
1985
1986
[[package]]
name = "encode_unicode"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"

1987
1988
1989
1990
1991
1992
[[package]]
name = "encoding_rs"
version = "0.8.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
dependencies = [
1993
 "cfg-if 1.0.4",
1994
1995
]

1996
1997
1998
1999
2000
2001
2002
2003
2004
[[package]]
name = "enum-as-inner"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
dependencies = [
 "heck",
 "proc-macro2",
 "quote",
2005
 "syn",
2006
2007
]

2008
2009
[[package]]
name = "enum-ordinalize"
2010
version = "4.3.2"
2011
source = "registry+https://github.com/rust-lang/crates.io-index"
2012
checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0"
2013
2014
2015
2016
2017
2018
dependencies = [
 "enum-ordinalize-derive",
]

[[package]]
name = "enum-ordinalize-derive"
2019
version = "4.3.2"
2020
source = "registry+https://github.com/rust-lang/crates.io-index"
2021
checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631"
2022
2023
2024
dependencies = [
 "proc-macro2",
 "quote",
2025
 "syn",
2026
2027
]

2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
[[package]]
name = "equator"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
dependencies = [
 "equator-macro",
]

[[package]]
name = "equator-macro"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
dependencies = [
 "proc-macro2",
 "quote",
2045
 "syn",
2046
2047
]

2048
2049
[[package]]
name = "equivalent"
2050
version = "1.0.2"
Biswa Panda's avatar
Biswa Panda committed
2051
source = "registry+https://github.com/rust-lang/crates.io-index"
2052
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
Biswa Panda's avatar
Biswa Panda committed
2053
2054
2055

[[package]]
name = "erased-serde"
2056
version = "0.4.9"
2057
source = "registry+https://github.com/rust-lang/crates.io-index"
2058
checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
Biswa Panda's avatar
Biswa Panda committed
2059
2060
dependencies = [
 "serde",
2061
 "serde_core",
Biswa Panda's avatar
Biswa Panda committed
2062
2063
 "typeid",
]
2064
2065
2066

[[package]]
name = "errno"
2067
version = "0.3.14"
2068
source = "registry+https://github.com/rust-lang/crates.io-index"
2069
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
2070
2071
dependencies = [
 "libc",
2072
 "windows-sys 0.61.2",
2073
2074
]

Biswa Panda's avatar
Biswa Panda committed
2075
2076
2077
2078
2079
2080
2081
2082
2083
[[package]]
name = "esaxx-rs"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
dependencies = [
 "cc",
]

2084
2085
[[package]]
name = "etcd-client"
2086
version = "0.17.0"
2087
source = "registry+https://github.com/rust-lang/crates.io-index"
2088
checksum = "8acfe553027cd07fc5fafa81a84f19a7a87eaffaccd2162b6db05e8d6ce98084"
2089
2090
dependencies = [
 "http",
2091
 "prost 0.14.3",
2092
2093
 "tokio",
 "tokio-stream",
2094
2095
 "tonic 0.14.4",
 "tonic-build 0.14.4",
2096
2097
 "tonic-prost",
 "tonic-prost-build",
2098
 "tower",
2099
2100
2101
2102
2103
 "tower-service",
]

[[package]]
name = "event-listener"
Ryan Olson's avatar
Ryan Olson committed
2104
version = "5.4.1"
2105
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
2106
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
2107
2108
2109
2110
2111
2112
2113
2114
dependencies = [
 "concurrent-queue",
 "parking",
 "pin-project-lite",
]

[[package]]
name = "event-listener-strategy"
2115
version = "0.5.4"
2116
source = "registry+https://github.com/rust-lang/crates.io-index"
2117
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
2118
2119
2120
2121
2122
dependencies = [
 "event-listener",
 "pin-project-lite",
]

Paul Hendricks's avatar
Paul Hendricks committed
2123
2124
2125
2126
2127
2128
2129
[[package]]
name = "eventsource-stream"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab"
dependencies = [
 "futures-core",
2130
 "nom 7.1.3",
Paul Hendricks's avatar
Paul Hendricks committed
2131
2132
2133
 "pin-project-lite",
]

2134
2135
[[package]]
name = "exr"
2136
version = "1.74.0"
2137
source = "registry+https://github.com/rust-lang/crates.io-index"
2138
checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
dependencies = [
 "bit_field",
 "half",
 "lebe",
 "miniz_oxide",
 "rayon-core",
 "smallvec",
 "zune-inflate",
]

[[package]]
name = "fancy-regex"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
dependencies = [
 "bit-set 0.5.3",
2156
2157
 "regex-automata",
 "regex-syntax",
2158
2159
]

2160
2161
2162
2163
2164
2165
[[package]]
name = "fancy-regex"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
dependencies = [
2166
 "bit-set 0.8.0",
2167
2168
 "regex-automata",
 "regex-syntax",
2169
2170
]

2171
2172
2173
2174
2175
[[package]]
name = "fastrand"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
Yan Ru Pei's avatar
Yan Ru Pei committed
2176
dependencies = [
2177
 "getrandom 0.2.17",
Yan Ru Pei's avatar
Yan Ru Pei committed
2178
]
2179

2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
[[package]]
name = "fax"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
dependencies = [
 "fax_derive",
]

[[package]]
name = "fax_derive"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
dependencies = [
 "proc-macro2",
 "quote",
2197
 "syn",
2198
2199
]

2200
2201
2202
2203
2204
2205
2206
2207
2208
[[package]]
name = "fdeflate"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
dependencies = [
 "simd-adler32",
]

2209
2210
2211
2212
2213
2214
[[package]]
name = "ffmpeg-next"
version = "7.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da02698288e0275e442a47fc12ca26d50daf0d48b15398ba5906f20ac2e2a9f9"
dependencies = [
2215
 "bitflags 2.11.0",
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
 "ffmpeg-sys-next",
 "libc",
]

[[package]]
name = "ffmpeg-sys-next"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9e9c75ebd4463de9d8998fb134ba26347fe5faee62fabf0a4b4d41bd500b4ad"
dependencies = [
 "bindgen 0.70.1",
 "cc",
 "libc",
 "num_cpus",
 "pkg-config",
 "vcpkg",
]

2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
[[package]]
name = "fiat-crypto"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"

[[package]]
name = "figment"
version = "0.10.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
dependencies = [
 "atomic",
 "parking_lot",
 "pear",
 "serde",
 "serde_json",
 "tempfile",
2252
 "toml 0.8.23",
2253
2254
2255
2256
 "uncased",
 "version_check",
]

2257
2258
[[package]]
name = "filetime"
2259
version = "0.2.27"
2260
source = "registry+https://github.com/rust-lang/crates.io-index"
2261
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
2262
dependencies = [
2263
 "cfg-if 1.0.4",
2264
2265
2266
2267
 "libc",
 "libredox",
]

2268
2269
[[package]]
name = "find-msvc-tools"
2270
version = "0.1.9"
2271
source = "registry+https://github.com/rust-lang/crates.io-index"
2272
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
2273

2274
2275
[[package]]
name = "fixedbitset"
2276
version = "0.5.7"
2277
source = "registry+https://github.com/rust-lang/crates.io-index"
2278
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
Biswa Panda's avatar
Biswa Panda committed
2279
2280
2281

[[package]]
name = "flate2"
2282
version = "1.1.9"
Biswa Panda's avatar
Biswa Panda committed
2283
source = "registry+https://github.com/rust-lang/crates.io-index"
2284
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
Biswa Panda's avatar
Biswa Panda committed
2285
2286
2287
dependencies = [
 "crc32fast",
 "miniz_oxide",
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
 "zlib-rs",
]

[[package]]
name = "float8"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "719a903cc23e4a89e87962c2a80fdb45cdaad0983a89bd150bb57b4c8571a7d5"
dependencies = [
 "half",
 "num-traits",
 "rand 0.9.2",
 "rand_distr",
Biswa Panda's avatar
Biswa Panda committed
2301
]
2302

Yan Ru Pei's avatar
Yan Ru Pei committed
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
[[package]]
name = "flume"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
dependencies = [
 "fastrand",
 "futures-core",
 "futures-sink",
 "spin",
]

2315
2316
2317
2318
2319
2320
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"

2321
2322
2323
2324
2325
2326
[[package]]
name = "foldhash"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"

2327
2328
2329
2330
2331
2332
[[package]]
name = "foldhash"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"

2333
2334
[[package]]
name = "form_urlencoded"
GuanLuo's avatar
GuanLuo committed
2335
version = "1.2.2"
2336
source = "registry+https://github.com/rust-lang/crates.io-index"
GuanLuo's avatar
GuanLuo committed
2337
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
2338
2339
2340
2341
dependencies = [
 "percent-encoding",
]

Graham King's avatar
Graham King committed
2342
2343
[[package]]
name = "fs-err"
2344
version = "3.3.0"
Graham King's avatar
Graham King committed
2345
source = "registry+https://github.com/rust-lang/crates.io-index"
2346
checksum = "73fde052dbfc920003cfd2c8e2c6e6d4cc7c1091538c3a24226cec0665ab08c0"
Graham King's avatar
Graham King committed
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
dependencies = [
 "autocfg",
 "tokio",
]

[[package]]
name = "fs_extra"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"

2358
2359
2360
2361
2362
2363
2364
2365
2366
[[package]]
name = "fsevent-sys"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
dependencies = [
 "libc",
]

2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
 "bitflags 1.3.2",
 "fuchsia-zircon-sys",
]

[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"

2383
2384
[[package]]
name = "futures"
2385
version = "0.3.32"
2386
source = "registry+https://github.com/rust-lang/crates.io-index"
2387
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
dependencies = [
 "futures-channel",
 "futures-core",
 "futures-executor",
 "futures-io",
 "futures-sink",
 "futures-task",
 "futures-util",
]

[[package]]
name = "futures-channel"
2400
version = "0.3.32"
2401
source = "registry+https://github.com/rust-lang/crates.io-index"
2402
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
2403
2404
2405
2406
2407
2408
2409
dependencies = [
 "futures-core",
 "futures-sink",
]

[[package]]
name = "futures-core"
2410
version = "0.3.32"
2411
source = "registry+https://github.com/rust-lang/crates.io-index"
2412
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
2413
2414
2415

[[package]]
name = "futures-executor"
2416
version = "0.3.32"
2417
source = "registry+https://github.com/rust-lang/crates.io-index"
2418
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
2419
2420
2421
2422
2423
2424
2425
2426
dependencies = [
 "futures-core",
 "futures-task",
 "futures-util",
]

[[package]]
name = "futures-io"
2427
version = "0.3.32"
2428
source = "registry+https://github.com/rust-lang/crates.io-index"
2429
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
2430
2431
2432

[[package]]
name = "futures-macro"
2433
version = "0.3.32"
2434
source = "registry+https://github.com/rust-lang/crates.io-index"
2435
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
2436
2437
2438
dependencies = [
 "proc-macro2",
 "quote",
2439
 "syn",
2440
2441
2442
2443
]

[[package]]
name = "futures-sink"
2444
version = "0.3.32"
2445
source = "registry+https://github.com/rust-lang/crates.io-index"
2446
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
2447
2448
2449

[[package]]
name = "futures-task"
2450
version = "0.3.32"
2451
source = "registry+https://github.com/rust-lang/crates.io-index"
2452
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
2453

Paul Hendricks's avatar
Paul Hendricks committed
2454
2455
2456
2457
2458
2459
[[package]]
name = "futures-timer"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"

2460
2461
[[package]]
name = "futures-util"
2462
version = "0.3.32"
2463
source = "registry+https://github.com/rust-lang/crates.io-index"
2464
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
dependencies = [
 "futures-channel",
 "futures-core",
 "futures-io",
 "futures-macro",
 "futures-sink",
 "futures-task",
 "memchr",
 "pin-project-lite",
 "slab",
]

Biswa Panda's avatar
Biswa Panda committed
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
[[package]]
name = "galil-seiferas"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "794ac25cfda3fa11d2b07ff8c65889c6c03411646df54e59e606878d899e1d5a"
dependencies = [
 "defmac",
 "unchecked-index",
]

2487
2488
[[package]]
name = "gemm"
2489
version = "0.19.0"
2490
source = "registry+https://github.com/rust-lang/crates.io-index"
2491
checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
2492
dependencies = [
2493
2494
2495
2496
2497
2498
2499
 "dyn-stack",
 "gemm-c32",
 "gemm-c64",
 "gemm-common",
 "gemm-f16",
 "gemm-f32",
 "gemm-f64",
2500
2501
2502
 "num-complex",
 "num-traits",
 "paste",
2503
 "raw-cpuid",
2504
2505
2506
2507
2508
 "seq-macro",
]

[[package]]
name = "gemm-c32"
2509
version = "0.19.0"
2510
source = "registry+https://github.com/rust-lang/crates.io-index"
2511
checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
2512
dependencies = [
2513
2514
 "dyn-stack",
 "gemm-common",
2515
2516
2517
 "num-complex",
 "num-traits",
 "paste",
2518
 "raw-cpuid",
2519
2520
2521
2522
2523
 "seq-macro",
]

[[package]]
name = "gemm-c64"
2524
version = "0.19.0"
2525
source = "registry+https://github.com/rust-lang/crates.io-index"
2526
checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
2527
dependencies = [
2528
2529
 "dyn-stack",
 "gemm-common",
2530
2531
2532
 "num-complex",
 "num-traits",
 "paste",
2533
 "raw-cpuid",
2534
2535
2536
2537
2538
 "seq-macro",
]

[[package]]
name = "gemm-common"
2539
version = "0.19.0"
2540
source = "registry+https://github.com/rust-lang/crates.io-index"
2541
checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
2542
2543
dependencies = [
 "bytemuck",
2544
 "dyn-stack",
2545
2546
2547
2548
2549
2550
 "half",
 "libm",
 "num-complex",
 "num-traits",
 "once_cell",
 "paste",
2551
2552
 "pulp",
 "raw-cpuid",
2553
2554
 "rayon",
 "seq-macro",
2555
 "sysctl",
2556
2557
2558
2559
]

[[package]]
name = "gemm-f16"
2560
version = "0.19.0"
2561
source = "registry+https://github.com/rust-lang/crates.io-index"
2562
checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
2563
dependencies = [
2564
2565
2566
 "dyn-stack",
 "gemm-common",
 "gemm-f32",
2567
2568
2569
2570
 "half",
 "num-complex",
 "num-traits",
 "paste",
2571
 "raw-cpuid",
2572
2573
2574
2575
2576
2577
 "rayon",
 "seq-macro",
]

[[package]]
name = "gemm-f32"
2578
version = "0.19.0"
2579
source = "registry+https://github.com/rust-lang/crates.io-index"
2580
checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
2581
dependencies = [
2582
2583
 "dyn-stack",
 "gemm-common",
2584
2585
2586
 "num-complex",
 "num-traits",
 "paste",
2587
 "raw-cpuid",
2588
2589
2590
2591
2592
 "seq-macro",
]

[[package]]
name = "gemm-f64"
2593
version = "0.19.0"
2594
source = "registry+https://github.com/rust-lang/crates.io-index"
2595
checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
2596
dependencies = [
2597
2598
 "dyn-stack",
 "gemm-common",
2599
2600
2601
 "num-complex",
 "num-traits",
 "paste",
2602
 "raw-cpuid",
2603
2604
2605
 "seq-macro",
]

2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
 "typenum",
 "version_check",
]

2616
2617
2618
2619
2620
2621
2622
2623
2624
[[package]]
name = "getopts"
version = "0.2.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
dependencies = [
 "unicode-width",
]

2625
2626
[[package]]
name = "getrandom"
2627
version = "0.2.17"
2628
source = "registry+https://github.com/rust-lang/crates.io-index"
2629
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
2630
dependencies = [
2631
 "cfg-if 1.0.4",
Paul Hendricks's avatar
Paul Hendricks committed
2632
 "js-sys",
2633
 "libc",
2634
 "wasi",
Paul Hendricks's avatar
Paul Hendricks committed
2635
 "wasm-bindgen",
2636
2637
2638
2639
]

[[package]]
name = "getrandom"
2640
version = "0.3.4"
2641
source = "registry+https://github.com/rust-lang/crates.io-index"
2642
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
2643
dependencies = [
2644
 "cfg-if 1.0.4",
2645
 "js-sys",
2646
 "libc",
2647
 "r-efi",
2648
 "wasip2",
2649
 "wasm-bindgen",
2650
2651
]

2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
[[package]]
name = "getrandom"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
dependencies = [
 "cfg-if 1.0.4",
 "libc",
 "r-efi",
 "wasip2",
 "wasip3",
]

[[package]]
name = "getset"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
dependencies = [
 "proc-macro-error2",
 "proc-macro2",
 "quote",
 "syn",
]

2677
2678
[[package]]
name = "gif"
2679
version = "0.14.1"
2680
source = "registry+https://github.com/rust-lang/crates.io-index"
2681
checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
2682
2683
2684
2685
2686
dependencies = [
 "color_quant",
 "weezl",
]

2687
2688
[[package]]
name = "gimli"
2689
version = "0.32.3"
2690
source = "registry+https://github.com/rust-lang/crates.io-index"
2691
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
2692

2693
2694
[[package]]
name = "glob"
Ryan Olson's avatar
Ryan Olson committed
2695
version = "0.3.3"
2696
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
2697
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
2698

2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
[[package]]
name = "gloo-timers"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
dependencies = [
 "futures-channel",
 "futures-core",
 "js-sys",
 "wasm-bindgen",
]

2711
2712
[[package]]
name = "h2"
2713
version = "0.4.13"
2714
source = "registry+https://github.com/rust-lang/crates.io-index"
2715
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
2716
2717
2718
2719
2720
2721
2722
dependencies = [
 "atomic-waker",
 "bytes",
 "fnv",
 "futures-core",
 "futures-sink",
 "http",
2723
 "indexmap 2.13.0",
2724
2725
2726
2727
2728
2729
 "slab",
 "tokio",
 "tokio-util",
 "tracing",
]

2730
2731
[[package]]
name = "half"
2732
version = "2.7.1"
2733
source = "registry+https://github.com/rust-lang/crates.io-index"
2734
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
2735
2736
dependencies = [
 "bytemuck",
2737
 "cfg-if 1.0.4",
2738
2739
 "crunchy",
 "num-traits",
Ryan Olson's avatar
Ryan Olson committed
2740
 "rand 0.9.2",
2741
 "rand_distr",
2742
 "zerocopy",
2743
2744
]

2745
2746
2747
2748
2749
2750
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"

2751
2752
2753
2754
2755
[[package]]
name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2756
2757
2758
dependencies = [
 "ahash",
]
2759

2760
2761
[[package]]
name = "hashbrown"
Ryan Olson's avatar
Ryan Olson committed
2762
version = "0.15.5"
2763
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
2764
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
2765
dependencies = [
2766
2767
 "allocator-api2",
 "equivalent",
2768
 "foldhash 0.1.5",
2769
2770
]

2771
2772
[[package]]
name = "hashbrown"
2773
version = "0.16.1"
2774
source = "registry+https://github.com/rust-lang/crates.io-index"
2775
2776
2777
2778
2779
2780
2781
2782
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
dependencies = [
 "allocator-api2",
 "equivalent",
 "foldhash 0.2.0",
 "serde",
 "serde_core",
]
2783

2784
2785
2786
2787
2788
2789
2790
2791
[[package]]
name = "hashlink"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
dependencies = [
 "hashbrown 0.15.5",
]
2792
2793
2794
2795
2796
2797
2798

[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"

2799
2800
[[package]]
name = "hermit-abi"
Ryan Olson's avatar
Ryan Olson committed
2801
version = "0.5.2"
2802
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
2803
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
2804

2805
2806
2807
2808
2809
2810
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"

Biswa Panda's avatar
Biswa Panda committed
2811
2812
[[package]]
name = "hf-hub"
Ryan Olson's avatar
Ryan Olson committed
2813
version = "0.4.3"
Biswa Panda's avatar
Biswa Panda committed
2814
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
2815
checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
Biswa Panda's avatar
Biswa Panda committed
2816
dependencies = [
2817
 "dirs",
2818
 "futures",
2819
 "http",
Biswa Panda's avatar
Biswa Panda committed
2820
 "indicatif",
2821
 "libc",
Biswa Panda's avatar
Biswa Panda committed
2822
 "log",
2823
 "num_cpus",
Ryan Olson's avatar
Ryan Olson committed
2824
 "rand 0.9.2",
2825
 "reqwest",
Biswa Panda's avatar
Biswa Panda committed
2826
2827
 "serde",
 "serde_json",
2828
 "thiserror 2.0.18",
2829
 "tokio",
Biswa Panda's avatar
Biswa Panda committed
2830
 "ureq",
Ryan Olson's avatar
Ryan Olson committed
2831
 "windows-sys 0.60.2",
Biswa Panda's avatar
Biswa Panda committed
2832
2833
]

Graham King's avatar
Graham King committed
2834
2835
[[package]]
name = "home"
2836
version = "0.5.12"
Graham King's avatar
Graham King committed
2837
source = "registry+https://github.com/rust-lang/crates.io-index"
2838
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
Graham King's avatar
Graham King committed
2839
dependencies = [
2840
 "windows-sys 0.61.2",
Graham King's avatar
Graham King committed
2841
2842
]

2843
2844
[[package]]
name = "hostname"
2845
version = "0.4.2"
2846
source = "registry+https://github.com/rust-lang/crates.io-index"
2847
checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
2848
dependencies = [
2849
 "cfg-if 1.0.4",
2850
 "libc",
2851
 "windows-link",
2852
2853
]

2854
2855
[[package]]
name = "http"
2856
version = "1.4.0"
2857
source = "registry+https://github.com/rust-lang/crates.io-index"
2858
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
dependencies = [
 "bytes",
 "itoa",
]

[[package]]
name = "http-body"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
dependencies = [
 "bytes",
 "http",
]

[[package]]
name = "http-body-util"
2876
version = "0.1.3"
2877
source = "registry+https://github.com/rust-lang/crates.io-index"
2878
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
2879
2880
dependencies = [
 "bytes",
2881
 "futures-core",
2882
2883
2884
2885
2886
2887
2888
 "http",
 "http-body",
 "pin-project-lite",
]

[[package]]
name = "httparse"
2889
version = "1.10.1"
2890
source = "registry+https://github.com/rust-lang/crates.io-index"
2891
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
2892
2893
2894
2895
2896
2897
2898

[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"

2899
2900
[[package]]
name = "humantime"
2901
version = "2.3.0"
2902
source = "registry+https://github.com/rust-lang/crates.io-index"
2903
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
2904

2905
2906
[[package]]
name = "hyper"
2907
version = "1.8.1"
2908
source = "registry+https://github.com/rust-lang/crates.io-index"
2909
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
2910
dependencies = [
Ryan Olson's avatar
Ryan Olson committed
2911
 "atomic-waker",
2912
2913
 "bytes",
 "futures-channel",
Ryan Olson's avatar
Ryan Olson committed
2914
 "futures-core",
2915
2916
2917
2918
2919
2920
2921
 "h2",
 "http",
 "http-body",
 "httparse",
 "httpdate",
 "itoa",
 "pin-project-lite",
Ryan Olson's avatar
Ryan Olson committed
2922
 "pin-utils",
2923
2924
2925
2926
2927
 "smallvec",
 "tokio",
 "want",
]

Paul Hendricks's avatar
Paul Hendricks committed
2928
2929
[[package]]
name = "hyper-rustls"
Ryan Olson's avatar
Ryan Olson committed
2930
version = "0.27.7"
Paul Hendricks's avatar
Paul Hendricks committed
2931
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
2932
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
Paul Hendricks's avatar
Paul Hendricks committed
2933
2934
2935
2936
dependencies = [
 "http",
 "hyper",
 "hyper-util",
2937
 "log",
Paul Hendricks's avatar
Paul Hendricks committed
2938
 "rustls",
2939
 "rustls-native-certs 0.8.3",
Paul Hendricks's avatar
Paul Hendricks committed
2940
2941
2942
2943
 "rustls-pki-types",
 "tokio",
 "tokio-rustls",
 "tower-service",
2944
 "webpki-roots 1.0.6",
Paul Hendricks's avatar
Paul Hendricks committed
2945
2946
]

2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
[[package]]
name = "hyper-timeout"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
dependencies = [
 "hyper",
 "hyper-util",
 "pin-project-lite",
 "tokio",
 "tower-service",
]

[[package]]
name = "hyper-util"
2962
version = "0.1.20"
2963
source = "registry+https://github.com/rust-lang/crates.io-index"
2964
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
2965
dependencies = [
2966
 "base64 0.22.1",
2967
2968
2969
2970
2971
2972
 "bytes",
 "futures-channel",
 "futures-util",
 "http",
 "http-body",
 "hyper",
2973
 "ipnet",
2974
 "libc",
2975
 "percent-encoding",
2976
 "pin-project-lite",
2977
 "socket2 0.6.2",
2978
 "system-configuration",
2979
2980
2981
 "tokio",
 "tower-service",
 "tracing",
2982
 "windows-registry",
2983
2984
]

2985
2986
[[package]]
name = "iana-time-zone"
2987
version = "0.1.65"
2988
source = "registry+https://github.com/rust-lang/crates.io-index"
2989
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
2990
2991
2992
2993
2994
dependencies = [
 "android_system_properties",
 "core-foundation-sys",
 "iana-time-zone-haiku",
 "js-sys",
2995
 "log",
2996
 "wasm-bindgen",
2997
 "windows-core",
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
]

[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
 "cc",
]

3009
3010
[[package]]
name = "icu_collections"
3011
version = "2.1.1"
3012
source = "registry+https://github.com/rust-lang/crates.io-index"
3013
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
3014
3015
dependencies = [
 "displaydoc",
Ryan Olson's avatar
Ryan Olson committed
3016
 "potential_utf",
3017
 "yoke",
3018
3019
3020
3021
3022
 "zerofrom",
 "zerovec",
]

[[package]]
Ryan Olson's avatar
Ryan Olson committed
3023
name = "icu_locale_core"
3024
version = "2.1.1"
3025
source = "registry+https://github.com/rust-lang/crates.io-index"
3026
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
dependencies = [
 "displaydoc",
 "litemap",
 "tinystr",
 "writeable",
 "zerovec",
]

[[package]]
name = "icu_normalizer"
3037
version = "2.1.1"
3038
source = "registry+https://github.com/rust-lang/crates.io-index"
3039
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
dependencies = [
 "icu_collections",
 "icu_normalizer_data",
 "icu_properties",
 "icu_provider",
 "smallvec",
 "zerovec",
]

[[package]]
name = "icu_normalizer_data"
3051
version = "2.1.1"
3052
source = "registry+https://github.com/rust-lang/crates.io-index"
3053
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
3054
3055
3056

[[package]]
name = "icu_properties"
3057
version = "2.1.2"
3058
source = "registry+https://github.com/rust-lang/crates.io-index"
3059
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
3060
3061
dependencies = [
 "icu_collections",
Ryan Olson's avatar
Ryan Olson committed
3062
 "icu_locale_core",
3063
3064
 "icu_properties_data",
 "icu_provider",
Ryan Olson's avatar
Ryan Olson committed
3065
 "zerotrie",
3066
3067
3068
3069
3070
 "zerovec",
]

[[package]]
name = "icu_properties_data"
3071
version = "2.1.2"
3072
source = "registry+https://github.com/rust-lang/crates.io-index"
3073
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
3074
3075
3076

[[package]]
name = "icu_provider"
3077
version = "2.1.1"
3078
source = "registry+https://github.com/rust-lang/crates.io-index"
3079
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
3080
3081
dependencies = [
 "displaydoc",
Ryan Olson's avatar
Ryan Olson committed
3082
 "icu_locale_core",
3083
 "writeable",
3084
 "yoke",
3085
 "zerofrom",
Ryan Olson's avatar
Ryan Olson committed
3086
 "zerotrie",
3087
3088
3089
3090
 "zerovec",
]

[[package]]
3091
3092
3093
3094
3095
3096
3097
3098
name = "id-arena"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"

[[package]]
name = "ident_case"
version = "1.0.1"
3099
3100
3101
3102
3103
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"

[[package]]
name = "idna"
GuanLuo's avatar
GuanLuo committed
3104
version = "1.1.0"
3105
source = "registry+https://github.com/rust-lang/crates.io-index"
GuanLuo's avatar
GuanLuo committed
3106
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
3107
3108
3109
3110
3111
3112
3113
3114
dependencies = [
 "idna_adapter",
 "smallvec",
 "utf8_iter",
]

[[package]]
name = "idna_adapter"
Ryan Olson's avatar
Ryan Olson committed
3115
version = "1.2.1"
3116
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
3117
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
3118
3119
3120
3121
3122
dependencies = [
 "icu_normalizer",
 "icu_properties",
]

3123
3124
[[package]]
name = "image"
3125
version = "0.25.9"
3126
source = "registry+https://github.com/rust-lang/crates.io-index"
3127
checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
3128
3129
3130
3131
3132
3133
3134
dependencies = [
 "bytemuck",
 "byteorder-lite",
 "color_quant",
 "exr",
 "gif",
 "image-webp",
3135
 "moxcms",
3136
3137
3138
3139
3140
3141
 "num-traits",
 "png",
 "qoi",
 "ravif",
 "rayon",
 "rgb",
3142
 "serde",
3143
 "tiff",
3144
3145
 "zune-core 0.5.1",
 "zune-jpeg 0.5.12",
3146
3147
3148
3149
]

[[package]]
name = "image-webp"
3150
version = "0.2.4"
3151
source = "registry+https://github.com/rust-lang/crates.io-index"
3152
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
3153
3154
3155
3156
3157
3158
3159
dependencies = [
 "byteorder-lite",
 "quick-error",
]

[[package]]
name = "imgref"
3160
version = "1.12.0"
3161
source = "registry+https://github.com/rust-lang/crates.io-index"
3162
checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174

[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
 "autocfg",
 "hashbrown 0.12.3",
 "serde",
]

3175
3176
[[package]]
name = "indexmap"
3177
version = "2.13.0"
3178
source = "registry+https://github.com/rust-lang/crates.io-index"
3179
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
3180
3181
dependencies = [
 "equivalent",
3182
 "hashbrown 0.16.1",
3183
 "serde",
3184
 "serde_core",
3185
3186
]

Biswa Panda's avatar
Biswa Panda committed
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
[[package]]
name = "indicatif"
version = "0.17.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
dependencies = [
 "console",
 "number_prefix",
 "portable-atomic",
 "unicode-width",
 "web-time",
]

3200
3201
[[package]]
name = "indoc"
3202
version = "2.0.7"
3203
source = "registry+https://github.com/rust-lang/crates.io-index"
3204
3205
3206
3207
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
dependencies = [
 "rustversion",
]
3208
3209
3210
3211
3212
3213
3214

[[package]]
name = "inlinable_string"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"

3215
3216
[[package]]
name = "inotify"
3217
version = "0.9.6"
3218
source = "registry+https://github.com/rust-lang/crates.io-index"
3219
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
3220
dependencies = [
3221
 "bitflags 1.3.2",
3222
3223
3224
3225
 "inotify-sys",
 "libc",
]

3226
3227
3228
3229
3230
3231
[[package]]
name = "inotify"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
dependencies = [
3232
 "bitflags 2.11.0",
3233
3234
3235
3236
3237
3238
 "futures-core",
 "inotify-sys",
 "libc",
 "tokio",
]

3239
3240
3241
3242
3243
3244
3245
3246
3247
[[package]]
name = "inotify-sys"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
 "libc",
]

Paul Hendricks's avatar
Paul Hendricks committed
3248
3249
3250
3251
3252
3253
[[package]]
name = "instant"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
dependencies = [
3254
 "cfg-if 1.0.4",
Paul Hendricks's avatar
Paul Hendricks committed
3255
3256
]

3257
3258
3259
3260
3261
3262
3263
3264
[[package]]
name = "interpolate_name"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
dependencies = [
 "proc-macro2",
 "quote",
3265
 "syn",
3266
3267
]

3268
3269
[[package]]
name = "inventory"
GuanLuo's avatar
GuanLuo committed
3270
version = "0.3.21"
3271
source = "registry+https://github.com/rust-lang/crates.io-index"
GuanLuo's avatar
GuanLuo committed
3272
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
3273
3274
3275
3276
dependencies = [
 "rustversion",
]

3277
3278
3279
3280
3281
3282
3283
3284
3285
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
 "libc",
]

Paul Hendricks's avatar
Paul Hendricks committed
3286
3287
3288
3289
3290
3291
[[package]]
name = "ipnet"
version = "2.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"

3292
3293
[[package]]
name = "iri-string"
3294
version = "0.7.10"
3295
source = "registry+https://github.com/rust-lang/crates.io-index"
3296
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
3297
3298
3299
3300
3301
dependencies = [
 "memchr",
 "serde",
]

3302
3303
3304
3305
3306
3307
3308
3309
3310
[[package]]
name = "is-macro"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
dependencies = [
 "heck",
 "proc-macro2",
 "quote",
3311
 "syn",
3312
3313
]

3314
3315
[[package]]
name = "is_terminal_polyfill"
3316
version = "1.70.2"
3317
source = "registry+https://github.com/rust-lang/crates.io-index"
3318
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
3319

3320
3321
3322
3323
3324
3325
3326
3327
3328
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
 "either",
]

3329
3330
3331
3332
3333
3334
3335
3336
3337
[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
 "either",
]

Biswa Panda's avatar
Biswa Panda committed
3338
3339
3340
3341
3342
[[package]]
name = "itertools"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
3343
3344
3345
3346
3347
3348
dependencies = [
 "either",
]

[[package]]
name = "itoa"
3349
version = "1.0.17"
3350
source = "registry+https://github.com/rust-lang/crates.io-index"
3351
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
3352

3353
3354
[[package]]
name = "jiff"
3355
version = "0.2.20"
3356
source = "registry+https://github.com/rust-lang/crates.io-index"
3357
checksum = "c867c356cc096b33f4981825ab281ecba3db0acefe60329f044c1789d94c6543"
3358
3359
3360
3361
3362
3363
dependencies = [
 "jiff-static",
 "jiff-tzdb-platform",
 "log",
 "portable-atomic",
 "portable-atomic-util",
3364
 "serde_core",
3365
 "windows-sys 0.61.2",
3366
3367
3368
3369
]

[[package]]
name = "jiff-static"
3370
version = "0.2.20"
3371
source = "registry+https://github.com/rust-lang/crates.io-index"
3372
checksum = "f7946b4325269738f270bb55b3c19ab5c5040525f83fd625259422a9d25d9be5"
3373
3374
3375
dependencies = [
 "proc-macro2",
 "quote",
3376
 "syn",
3377
3378
3379
3380
]

[[package]]
name = "jiff-tzdb"
3381
version = "0.1.5"
3382
source = "registry+https://github.com/rust-lang/crates.io-index"
3383
checksum = "68971ebff725b9e2ca27a601c5eb38a4c5d64422c4cbab0c535f248087eda5c2"
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393

[[package]]
name = "jiff-tzdb-platform"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
dependencies = [
 "jiff-tzdb",
]

3394
3395
[[package]]
name = "jobserver"
GuanLuo's avatar
GuanLuo committed
3396
version = "0.1.34"
3397
source = "registry+https://github.com/rust-lang/crates.io-index"
GuanLuo's avatar
GuanLuo committed
3398
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
3399
dependencies = [
3400
 "getrandom 0.3.4",
3401
3402
3403
 "libc",
]

3404
3405
[[package]]
name = "js-sys"
3406
version = "0.3.85"
3407
source = "registry+https://github.com/rust-lang/crates.io-index"
3408
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
3409
3410
3411
3412
3413
dependencies = [
 "once_cell",
 "wasm-bindgen",
]

3414
3415
[[package]]
name = "json-five"
3416
version = "0.3.1"
3417
source = "registry+https://github.com/rust-lang/crates.io-index"
3418
checksum = "865f2d01a4549c1fd8c60640c03ae5249eb374cd8cde8b905628d4b1af95c87c"
3419
3420
3421
3422
3423
dependencies = [
 "serde",
 "unicode-general-category",
]

3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
[[package]]
name = "json-patch"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f300e415e2134745ef75f04562dd0145405c2f7fd92065db029ac4b16b57fe90"
dependencies = [
 "jsonptr",
 "serde",
 "serde_json",
 "thiserror 1.0.69",
]

3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
[[package]]
name = "json5"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
dependencies = [
 "pest",
 "pest_derive",
 "serde",
]

3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
[[package]]
name = "jsonpath-rust"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c00ae348f9f8fd2d09f82a98ca381c60df9e0820d8d79fce43e649b4dc3128b"
dependencies = [
 "pest",
 "pest_derive",
 "regex",
 "serde_json",
3457
 "thiserror 2.0.18",
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
]

[[package]]
name = "jsonptr"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5a3cc660ba5d72bce0b3bb295bf20847ccbb40fd423f3f05b61273672e561fe"
dependencies = [
 "serde",
 "serde_json",
]

3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
[[package]]
name = "jwalk"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
dependencies = [
 "crossbeam",
 "rayon",
]

3480
3481
[[package]]
name = "k8s-openapi"
3482
version = "0.26.1"
3483
source = "registry+https://github.com/rust-lang/crates.io-index"
3484
checksum = "06d9e5e61dd037cdc51da0d7e2b2be10f497478ea7e120d85dad632adb99882b"
3485
3486
3487
3488
3489
3490
3491
dependencies = [
 "base64 0.22.1",
 "chrono",
 "serde",
 "serde_json",
]

3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
 "winapi 0.2.8",
 "winapi-build",
]

3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
[[package]]
name = "kqueue"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
dependencies = [
 "kqueue-sys",
 "libc",
]

[[package]]
name = "kqueue-sys"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
dependencies = [
 "bitflags 1.3.2",
 "libc",
]

3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
[[package]]
name = "kube"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48e7bb0b6a46502cc20e4575b6ff401af45cfea150b34ba272a3410b78aa014e"
dependencies = [
 "k8s-openapi",
 "kube-client",
 "kube-core",
 "kube-derive",
 "kube-runtime",
]

[[package]]
name = "kube-client"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4987d57a184d2b5294fdad3d7fc7f278899469d21a4da39a8f6ca16426567a36"
dependencies = [
 "base64 0.22.1",
 "bytes",
 "chrono",
 "either",
 "futures",
 "home",
 "http",
 "http-body",
 "http-body-util",
 "hyper",
 "hyper-rustls",
 "hyper-timeout",
 "hyper-util",
 "jsonpath-rust",
 "k8s-openapi",
 "kube-core",
 "pem",
 "rustls",
 "secrecy",
 "serde",
 "serde_json",
 "serde_yaml",
3563
 "thiserror 2.0.18",
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
 "tokio",
 "tokio-util",
 "tower",
 "tower-http",
 "tracing",
]

[[package]]
name = "kube-core"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914bbb770e7bb721a06e3538c0edd2babed46447d128f7c21caa68747060ee73"
dependencies = [
 "chrono",
3578
 "derive_more 2.1.1",
3579
3580
3581
3582
 "form_urlencoded",
 "http",
 "json-patch",
 "k8s-openapi",
3583
 "schemars 1.2.1",
3584
3585
3586
 "serde",
 "serde-value",
 "serde_json",
3587
 "thiserror 2.0.18",
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
]

[[package]]
name = "kube-derive"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03dee8252be137772a6ab3508b81cd797dee62ee771112a2453bc85cbbe150d2"
dependencies = [
 "darling 0.21.3",
 "proc-macro2",
 "quote",
 "serde",
 "serde_json",
3601
 "syn",
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
]

[[package]]
name = "kube-runtime"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6aea4de4b562c5cc89ab10300bb63474ae1fa57ff5a19275f2e26401a323e3fd"
dependencies = [
 "ahash",
 "async-broadcast",
 "async-stream",
 "backon",
 "educe",
 "futures",
 "hashbrown 0.15.5",
 "hostname",
 "json-patch",
 "k8s-openapi",
 "kube-client",
 "parking_lot",
 "pin-project",
 "serde",
 "serde_json",
3625
 "thiserror 2.0.18",
3626
3627
3628
3629
3630
 "tokio",
 "tokio-util",
 "tracing",
]

3631
3632
3633
3634
3635
3636
[[package]]
name = "lalrpop-util"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"

3637
3638
3639
3640
3641
3642
[[package]]
name = "lazy_static"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"

3643
3644
3645
3646
3647
3648
[[package]]
name = "leb128fmt"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"

3649
3650
[[package]]
name = "lebe"
3651
version = "0.5.3"
3652
source = "registry+https://github.com/rust-lang/crates.io-index"
3653
checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
3654

3655
[[package]]
3656
name = "libc"
3657
version = "0.2.182"
3658
source = "registry+https://github.com/rust-lang/crates.io-index"
3659
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
3660

3661
3662
[[package]]
name = "libfuzzer-sys"
3663
version = "0.4.12"
3664
source = "registry+https://github.com/rust-lang/crates.io-index"
3665
checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
3666
3667
3668
3669
3670
dependencies = [
 "arbitrary",
 "cc",
]

3671
[[package]]
3672
name = "libloading"
3673
version = "0.8.9"
Graham King's avatar
Graham King committed
3674
source = "registry+https://github.com/rust-lang/crates.io-index"
3675
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
Graham King's avatar
Graham King committed
3676
dependencies = [
3677
 "cfg-if 1.0.4",
3678
 "windows-link",
Graham King's avatar
Graham King committed
3679
3680
]

3681
3682
[[package]]
name = "libm"
3683
version = "0.2.16"
3684
source = "registry+https://github.com/rust-lang/crates.io-index"
3685
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
3686

Biswa Panda's avatar
Biswa Panda committed
3687
3688
[[package]]
name = "libredox"
3689
version = "0.1.12"
Biswa Panda's avatar
Biswa Panda committed
3690
source = "registry+https://github.com/rust-lang/crates.io-index"
3691
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
Biswa Panda's avatar
Biswa Panda committed
3692
dependencies = [
3693
 "bitflags 2.11.0",
Biswa Panda's avatar
Biswa Panda committed
3694
 "libc",
3695
 "redox_syscall 0.7.1",
3696
3697
]

3698
3699
3700
3701
3702
3703
[[package]]
name = "linux-raw-sys"
version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"

Graham King's avatar
Graham King committed
3704
3705
[[package]]
name = "linux-raw-sys"
3706
version = "0.11.0"
3707
source = "registry+https://github.com/rust-lang/crates.io-index"
3708
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
3709
3710
3711

[[package]]
name = "litemap"
3712
version = "0.8.1"
3713
source = "registry+https://github.com/rust-lang/crates.io-index"
3714
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
3715
3716
3717

[[package]]
name = "local-ip-address"
3718
version = "0.6.10"
3719
source = "registry+https://github.com/rust-lang/crates.io-index"
3720
checksum = "79ef8c257c92ade496781a32a581d43e3d512cf8ce714ecf04ea80f93ed0ff4a"
3721
3722
3723
dependencies = [
 "libc",
 "neli",
3724
 "windows-sys 0.61.2",
3725
3726
3727
3728
]

[[package]]
name = "lock_api"
3729
version = "0.4.14"
3730
source = "registry+https://github.com/rust-lang/crates.io-index"
3731
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
3732
3733
3734
3735
3736
3737
dependencies = [
 "scopeguard",
]

[[package]]
name = "log"
3738
version = "0.4.29"
Biswa Panda's avatar
Biswa Panda committed
3739
source = "registry+https://github.com/rust-lang/crates.io-index"
3740
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
Biswa Panda's avatar
Biswa Panda committed
3741

3742
3743
3744
3745
3746
3747
3748
3749
3750
[[package]]
name = "loop9"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
dependencies = [
 "imgref",
]

3751
3752
3753
3754
3755
3756
3757
3758
3759
[[package]]
name = "lru"
version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
dependencies = [
 "hashbrown 0.15.5",
]

Ryan Olson's avatar
Ryan Olson committed
3760
3761
3762
3763
3764
3765
[[package]]
name = "lru-slab"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"

Biswa Panda's avatar
Biswa Panda committed
3766
3767
[[package]]
name = "macro_rules_attribute"
Ryan Olson's avatar
Ryan Olson committed
3768
version = "0.2.2"
Biswa Panda's avatar
Biswa Panda committed
3769
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
3770
checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
Biswa Panda's avatar
Biswa Panda committed
3771
3772
3773
3774
3775
3776
3777
dependencies = [
 "macro_rules_attribute-proc_macro",
 "paste",
]

[[package]]
name = "macro_rules_attribute-proc_macro"
Ryan Olson's avatar
Ryan Olson committed
3778
version = "0.2.2"
3779
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
3780
checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
3781

3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
[[package]]
name = "malachite"
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fbdf9cb251732db30a7200ebb6ae5d22fe8e11397364416617d2c2cf0c51cb5"
dependencies = [
 "malachite-base",
 "malachite-nz",
 "malachite-q",
]

[[package]]
name = "malachite-base"
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ea0ed76adf7defc1a92240b5c36d5368cfe9251640dcce5bd2d0b7c1fd87aeb"
dependencies = [
 "hashbrown 0.14.5",
 "itertools 0.11.0",
 "libm",
 "ryu",
]

[[package]]
name = "malachite-bigint"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d149aaa2965d70381709d9df4c7ee1fc0de1c614a4efc2ee356f5e43d68749f8"
dependencies = [
3811
 "derive_more 1.0.0",
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
 "malachite",
 "num-integer",
 "num-traits",
 "paste",
]

[[package]]
name = "malachite-nz"
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34a79feebb2bc9aa7762047c8e5495269a367da6b5a90a99882a0aeeac1841f7"
dependencies = [
 "itertools 0.11.0",
 "libm",
 "malachite-base",
]

[[package]]
name = "malachite-q"
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f235d5747b1256b47620f5640c2a17a88c7569eebdf27cd9cb130e1a619191"
dependencies = [
 "itertools 0.11.0",
 "malachite-base",
 "malachite-nz",
]

3840
3841
[[package]]
name = "matchers"
3842
version = "0.2.0"
3843
source = "registry+https://github.com/rust-lang/crates.io-index"
3844
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
3845
dependencies = [
3846
 "regex-automata",
3847
3848
]

3849
3850
3851
3852
3853
3854
[[package]]
name = "matchit"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"

3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
[[package]]
name = "matrixmultiply"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
dependencies = [
 "autocfg",
 "rawpointer",
]

3865
3866
3867
3868
3869
3870
[[package]]
name = "maybe-rayon"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
dependencies = [
3871
 "cfg-if 1.0.4",
3872
3873
3874
 "rayon",
]

3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
[[package]]
name = "md-5"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
dependencies = [
 "cfg-if 1.0.4",
 "digest",
]

3885
3886
[[package]]
name = "memchr"
3887
version = "2.8.0"
3888
source = "registry+https://github.com/rust-lang/crates.io-index"
3889
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
3890

3891
3892
3893
3894
3895
3896
3897
3898
3899
[[package]]
name = "memfile"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f64636fdb65a5f0740f920c4281f3dbb76a71e25e25914b6d27000739897d40e"
dependencies = [
 "libc",
]

3900
3901
[[package]]
name = "memmap2"
3902
version = "0.9.10"
3903
source = "registry+https://github.com/rust-lang/crates.io-index"
3904
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
3905
3906
3907
3908
3909
dependencies = [
 "libc",
 "stable_deref_trait",
]

Biswa Panda's avatar
Biswa Panda committed
3910
3911
3912
3913
3914
3915
[[package]]
name = "memo-map"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"

3916
3917
3918
3919
3920
3921
3922
3923
3924
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
 "autocfg",
]

3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
[[package]]
name = "memoffset"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
dependencies = [
 "autocfg",
]

[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"

Paul Hendricks's avatar
Paul Hendricks committed
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
[[package]]
name = "mime_guess"
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
dependencies = [
 "mime",
 "unicase",
]

Biswa Panda's avatar
Biswa Panda committed
3950
3951
[[package]]
name = "minijinja"
3952
version = "2.15.1"
Biswa Panda's avatar
Biswa Panda committed
3953
source = "registry+https://github.com/rust-lang/crates.io-index"
3954
checksum = "b479616bb6f0779fb0f3964246beda02d4b01144e1b0d5519616e012ccc2a245"
Biswa Panda's avatar
Biswa Panda committed
3955
3956
3957
3958
3959
3960
3961
3962
dependencies = [
 "memo-map",
 "self_cell",
 "serde",
]

[[package]]
name = "minijinja-contrib"
3963
version = "2.15.1"
Biswa Panda's avatar
Biswa Panda committed
3964
source = "registry+https://github.com/rust-lang/crates.io-index"
3965
checksum = "7826089e6af7bc638f69a44b100ebe7f6c64b182cfde16558d5cd38ac8adde20"
Biswa Panda's avatar
Biswa Panda committed
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
dependencies = [
 "minijinja",
 "serde",
]

[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"

3977
3978
[[package]]
name = "miniz_oxide"
Ryan Olson's avatar
Ryan Olson committed
3979
version = "0.8.9"
3980
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
3981
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
3982
3983
dependencies = [
 "adler2",
3984
 "simd-adler32",
3985
3986
]

3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
[[package]]
name = "mio"
version = "0.6.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
dependencies = [
 "cfg-if 0.1.10",
 "fuchsia-zircon",
 "fuchsia-zircon-sys",
 "iovec",
 "kernel32-sys",
 "libc",
 "log",
 "miow",
 "net2",
 "slab",
 "winapi 0.2.8",
]

4006
4007
4008
4009
4010
4011
4012
4013
[[package]]
name = "mio"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
dependencies = [
 "libc",
 "log",
4014
 "wasi",
4015
4016
4017
 "windows-sys 0.48.0",
]

4018
4019
[[package]]
name = "mio"
4020
version = "1.1.1"
4021
source = "registry+https://github.com/rust-lang/crates.io-index"
4022
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
4023
4024
dependencies = [
 "libc",
4025
4026
 "wasi",
 "windows-sys 0.61.2",
4027
4028
]

4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
[[package]]
name = "miow"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [
 "kernel32-sys",
 "net2",
 "winapi 0.2.8",
 "ws2_32-sys",
]

4041
4042
[[package]]
name = "modelexpress-client"
4043
version = "0.2.2"
4044
source = "registry+https://github.com/rust-lang/crates.io-index"
4045
checksum = "a9929c605e135347ccda5e0e7ff0627217f23189915a5c3971265ce490a14abf"
4046
4047
4048
4049
4050
4051
dependencies = [
 "anyhow",
 "clap",
 "colored",
 "futures",
 "modelexpress-common",
4052
 "prost 0.13.5",
4053
4054
 "serde",
 "serde_json",
4055
 "thiserror 2.0.18",
4056
 "tokio",
4057
 "tonic 0.13.1",
4058
4059
4060
4061
4062
4063
4064
 "tracing",
 "tracing-subscriber",
 "uuid",
]

[[package]]
name = "modelexpress-common"
4065
version = "0.2.2"
4066
source = "registry+https://github.com/rust-lang/crates.io-index"
4067
checksum = "4997c93ac4b3ded7a999eff0b770aea2448d808ce7f020729e6af11e4c08fe67"
4068
4069
4070
4071
4072
4073
4074
4075
dependencies = [
 "anyhow",
 "async-trait",
 "chrono",
 "clap",
 "config",
 "hf-hub",
 "jiff",
4076
 "prost 0.13.5",
4077
4078
4079
 "serde",
 "serde_json",
 "serde_yaml",
4080
 "thiserror 2.0.18",
4081
 "tokio",
4082
 "tonic 0.13.1",
4083
 "tonic-build 0.13.1",
4084
4085
4086
 "tracing",
]

Biswa Panda's avatar
Biswa Panda committed
4087
4088
[[package]]
name = "monostate"
4089
version = "0.1.18"
Biswa Panda's avatar
Biswa Panda committed
4090
source = "registry+https://github.com/rust-lang/crates.io-index"
4091
checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
Biswa Panda's avatar
Biswa Panda committed
4092
4093
4094
dependencies = [
 "monostate-impl",
 "serde",
4095
 "serde_core",
Biswa Panda's avatar
Biswa Panda committed
4096
4097
4098
4099
]

[[package]]
name = "monostate-impl"
4100
version = "0.1.18"
Biswa Panda's avatar
Biswa Panda committed
4101
source = "registry+https://github.com/rust-lang/crates.io-index"
4102
checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
Biswa Panda's avatar
Biswa Panda committed
4103
4104
4105
dependencies = [
 "proc-macro2",
 "quote",
4106
 "syn",
4107
4108
4109
4110
]

[[package]]
name = "moxcms"
4111
version = "0.7.11"
4112
source = "registry+https://github.com/rust-lang/crates.io-index"
4113
checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
4114
4115
4116
dependencies = [
 "num-traits",
 "pxfm",
Biswa Panda's avatar
Biswa Panda committed
4117
4118
]

4119
4120
[[package]]
name = "multimap"
Ryan Olson's avatar
Ryan Olson committed
4121
version = "0.10.1"
4122
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
4123
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
4124

4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
[[package]]
name = "ndarray"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
dependencies = [
 "matrixmultiply",
 "num-complex",
 "num-integer",
 "num-traits",
 "portable-atomic",
 "portable-atomic-util",
 "rawpointer",
]

4140
4141
4142
4143
4144
4145
4146
4147
[[package]]
name = "ndarray-interp"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e43087829efb5ec2736598e88587df286425b59df5a9ce991994cdd2c5855d3f"
dependencies = [
 "ndarray",
 "num-traits",
4148
 "thiserror 2.0.18",
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
]

[[package]]
name = "ndarray-npy"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b313788c468c49141a9d9b6131fc15f403e6ef4e8446a0b2e18f664ddb278a9"
dependencies = [
 "byteorder",
 "ndarray",
 "num-complex",
 "num-traits",
 "py_literal",
 "zip 2.4.2",
]

4165
4166
[[package]]
name = "neli"
4167
version = "0.7.4"
4168
source = "registry+https://github.com/rust-lang/crates.io-index"
4169
checksum = "22f9786d56d972959e1408b6a93be6af13b9c1392036c5c1fafa08a1b0c6ee87"
4170
dependencies = [
4171
 "bitflags 2.11.0",
4172
 "byteorder",
4173
4174
 "derive_builder",
 "getset",
4175
4176
4177
 "libc",
 "log",
 "neli-proc-macros",
4178
 "parking_lot",
4179
4180
4181
4182
]

[[package]]
name = "neli-proc-macros"
4183
version = "0.2.2"
4184
source = "registry+https://github.com/rust-lang/crates.io-index"
4185
checksum = "05d8d08c6e98f20a62417478ebf7be8e1425ec9acecc6f63e22da633f6b71609"
4186
4187
4188
4189
4190
dependencies = [
 "either",
 "proc-macro2",
 "quote",
 "serde",
4191
 "syn",
4192
4193
]

4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
[[package]]
name = "net2"
version = "0.2.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac"
dependencies = [
 "cfg-if 0.1.10",
 "libc",
 "winapi 0.3.9",
]

4205
4206
4207
4208
4209
4210
[[package]]
name = "new_debug_unreachable"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"

4211
4212
4213
4214
4215
4216
[[package]]
name = "nid"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4abdf1789932b85dc39446e27f45a1064a30f9e19a2b872b1d09bd59283f85f3"
dependencies = [
4217
 "rand 0.8.5",
4218
 "serde",
4219
 "thiserror 1.0.69",
4220
4221
]

4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
[[package]]
name = "nix"
version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
dependencies = [
 "bitflags 1.3.2",
 "cfg-if 1.0.4",
 "libc",
 "memoffset 0.7.1",
 "pin-utils",
]

4235
4236
4237
4238
4239
4240
[[package]]
name = "nix"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
dependencies = [
4241
 "bitflags 2.11.0",
4242
 "cfg-if 1.0.4",
4243
4244
4245
4246
 "cfg_aliases",
 "libc",
]

4247
4248
4249
4250
4251
4252
[[package]]
name = "nix"
version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
dependencies = [
4253
 "bitflags 2.11.0",
4254
4255
4256
4257
4258
4259
4260
 "cfg-if 1.0.4",
 "cfg_aliases",
 "libc",
]

[[package]]
name = "nixl-sys"
4261
version = "0.9.0"
4262
source = "registry+https://github.com/rust-lang/crates.io-index"
4263
checksum = "1e3d48272133186f64c82a89faff4405b342478a2f015bb35d78550eff2a9961"
4264
dependencies = [
4265
4266
 "anyhow",
 "bincode 1.3.3",
4267
4268
4269
4270
4271
4272
 "bindgen 0.71.1",
 "cc",
 "libc",
 "os_info",
 "pkg-config",
 "serde",
4273
 "thiserror 2.0.18",
4274
4275
4276
 "tracing",
]

4277
4278
[[package]]
name = "nkeys"
Ryan Olson's avatar
Ryan Olson committed
4279
version = "0.4.5"
4280
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
4281
checksum = "879011babc47a1c7fdf5a935ae3cfe94f34645ca0cac1c7f6424b36fc743d1bf"
4282
4283
4284
4285
dependencies = [
 "data-encoding",
 "ed25519",
 "ed25519-dalek",
4286
 "getrandom 0.2.17",
4287
 "log",
4288
 "rand 0.8.5",
4289
4290
4291
 "signatory",
]

Biswa Panda's avatar
Biswa Panda committed
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
 "memchr",
 "minimal-lexical",
]

4302
4303
4304
4305
4306
4307
4308
4309
4310
[[package]]
name = "nom"
version = "8.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
dependencies = [
 "memchr",
]

4311
4312
4313
4314
4315
4316
[[package]]
name = "nonmax"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"

4317
4318
4319
4320
4321
4322
[[package]]
name = "noop_proc_macro"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"

4323
4324
4325
4326
4327
4328
[[package]]
name = "notify"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
dependencies = [
4329
 "bitflags 2.11.0",
4330
4331
 "filetime",
 "fsevent-sys",
4332
 "inotify 0.9.6",
4333
4334
4335
4336
4337
4338
4339
4340
 "kqueue",
 "libc",
 "log",
 "mio 0.8.11",
 "walkdir",
 "windows-sys 0.48.0",
]

4341
4342
[[package]]
name = "nu-ansi-term"
4343
version = "0.50.3"
4344
source = "registry+https://github.com/rust-lang/crates.io-index"
4345
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
4346
dependencies = [
4347
 "windows-sys 0.61.2",
4348
4349
]

4350
4351
4352
4353
4354
4355
[[package]]
name = "nuid"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc895af95856f929163a0aa20c26a78d26bfdc839f51b9d5aa7a5b79e52b7e83"
dependencies = [
4356
 "rand 0.8.5",
4357
4358
]

Biswa Panda's avatar
Biswa Panda committed
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
[[package]]
name = "num-bigint"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
dependencies = [
 "num-integer",
 "num-traits",
]

4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
[[package]]
name = "num-complex"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
dependencies = [
 "bytemuck",
 "num-traits",
]

4379
4380
[[package]]
name = "num-conv"
4381
version = "0.2.0"
4382
source = "registry+https://github.com/rust-lang/crates.io-index"
4383
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
4384

4385
4386
4387
4388
4389
4390
4391
4392
[[package]]
name = "num-derive"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
dependencies = [
 "proc-macro2",
 "quote",
4393
 "syn",
4394
4395
]

Biswa Panda's avatar
Biswa Panda committed
4396
4397
4398
4399
4400
4401
4402
4403
4404
[[package]]
name = "num-integer"
version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
dependencies = [
 "num-traits",
]

4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
[[package]]
name = "num-rational"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
dependencies = [
 "num-bigint",
 "num-integer",
 "num-traits",
]

4416
4417
4418
4419
4420
4421
4422
[[package]]
name = "num-traits"
version = "0.2.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
dependencies = [
 "autocfg",
4423
4424
4425
4426
4427
 "libm",
]

[[package]]
name = "num_cpus"
Ryan Olson's avatar
Ryan Olson committed
4428
version = "1.17.0"
4429
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
4430
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
4431
4432
4433
4434
4435
dependencies = [
 "hermit-abi",
 "libc",
]

4436
4437
4438
4439
4440
4441
4442
4443
4444
[[package]]
name = "num_threads"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
dependencies = [
 "libc",
]

Biswa Panda's avatar
Biswa Panda committed
4445
4446
4447
4448
4449
4450
[[package]]
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"

4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
[[package]]
name = "objc2"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
dependencies = [
 "objc2-encode",
]

[[package]]
name = "objc2-cloud-kit"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
dependencies = [
4466
 "bitflags 2.11.0",
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
 "objc2",
 "objc2-foundation",
]

[[package]]
name = "objc2-core-data"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
dependencies = [
 "objc2",
 "objc2-foundation",
]

[[package]]
name = "objc2-core-foundation"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
dependencies = [
4487
 "bitflags 2.11.0",
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
 "dispatch2",
 "objc2",
]

[[package]]
name = "objc2-core-graphics"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
dependencies = [
4498
 "bitflags 2.11.0",
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
 "dispatch2",
 "objc2",
 "objc2-core-foundation",
 "objc2-io-surface",
]

[[package]]
name = "objc2-core-image"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
dependencies = [
 "objc2",
 "objc2-foundation",
]

[[package]]
name = "objc2-core-location"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
dependencies = [
 "objc2",
 "objc2-foundation",
]

[[package]]
name = "objc2-core-text"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
dependencies = [
4531
 "bitflags 2.11.0",
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
 "objc2",
 "objc2-core-foundation",
 "objc2-core-graphics",
]

[[package]]
name = "objc2-encode"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"

[[package]]
name = "objc2-foundation"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
dependencies = [
4549
 "bitflags 2.11.0",
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
 "block2",
 "libc",
 "objc2",
 "objc2-core-foundation",
]

[[package]]
name = "objc2-io-surface"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
dependencies = [
4562
 "bitflags 2.11.0",
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
 "objc2",
 "objc2-core-foundation",
]

[[package]]
name = "objc2-quartz-core"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
dependencies = [
4573
 "bitflags 2.11.0",
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
 "objc2",
 "objc2-core-foundation",
 "objc2-foundation",
]

[[package]]
name = "objc2-ui-kit"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
dependencies = [
4585
 "bitflags 2.11.0",
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
 "block2",
 "objc2",
 "objc2-cloud-kit",
 "objc2-core-data",
 "objc2-core-foundation",
 "objc2-core-graphics",
 "objc2-core-image",
 "objc2-core-location",
 "objc2-core-text",
 "objc2-foundation",
 "objc2-quartz-core",
 "objc2-user-notifications",
]

[[package]]
name = "objc2-user-notifications"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
dependencies = [
 "objc2",
 "objc2-foundation",
]

4610
4611
[[package]]
name = "object"
4612
version = "0.37.3"
4613
source = "registry+https://github.com/rust-lang/crates.io-index"
4614
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
4615
4616
4617
4618
dependencies = [
 "memchr",
]

4619
4620
[[package]]
name = "object_store"
4621
version = "0.12.5"
4622
source = "registry+https://github.com/rust-lang/crates.io-index"
4623
checksum = "fbfbfff40aeccab00ec8a910b57ca8ecf4319b335c542f2edcd19dd25a1e2a00"
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
dependencies = [
 "async-trait",
 "base64 0.22.1",
 "bytes",
 "chrono",
 "form_urlencoded",
 "futures",
 "http",
 "http-body-util",
 "httparse",
 "humantime",
 "hyper",
 "itertools 0.14.0",
 "md-5",
 "parking_lot",
 "percent-encoding",
 "quick-xml",
 "rand 0.9.2",
 "reqwest",
 "ring",
 "rustls-pemfile",
 "serde",
 "serde_json",
 "serde_urlencoded",
4648
 "thiserror 2.0.18",
4649
4650
4651
4652
4653
4654
4655
4656
 "tokio",
 "tracing",
 "url",
 "walkdir",
 "wasm-bindgen-futures",
 "web-time",
]

4657
[[package]]
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
name = "offset-allocator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e234d535da3521eb95106f40f0b73483d80bfb3aacf27c40d7e2b72f1a3e00a2"
dependencies = [
 "log",
 "nonmax",
]

[[package]]
4668
name = "once_cell"
4669
version = "1.21.3"
4670
source = "registry+https://github.com/rust-lang/crates.io-index"
4671
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
4672

Ryan Olson's avatar
Ryan Olson committed
4673
4674
[[package]]
name = "once_cell_polyfill"
4675
version = "1.70.2"
Ryan Olson's avatar
Ryan Olson committed
4676
source = "registry+https://github.com/rust-lang/crates.io-index"
4677
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
Ryan Olson's avatar
Ryan Olson committed
4678

Ryan Olson's avatar
Ryan Olson committed
4679
4680
[[package]]
name = "oneshot"
4681
version = "0.1.13"
Ryan Olson's avatar
Ryan Olson committed
4682
source = "registry+https://github.com/rust-lang/crates.io-index"
4683
checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107"
Ryan Olson's avatar
Ryan Olson committed
4684

Biswa Panda's avatar
Biswa Panda committed
4685
4686
[[package]]
name = "onig"
4687
version = "6.5.1"
Biswa Panda's avatar
Biswa Panda committed
4688
source = "registry+https://github.com/rust-lang/crates.io-index"
4689
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
Biswa Panda's avatar
Biswa Panda committed
4690
dependencies = [
4691
 "bitflags 2.11.0",
Biswa Panda's avatar
Biswa Panda committed
4692
4693
4694
4695
4696
4697
4698
 "libc",
 "once_cell",
 "onig_sys",
]

[[package]]
name = "onig_sys"
4699
version = "69.9.1"
Biswa Panda's avatar
Biswa Panda committed
4700
source = "registry+https://github.com/rust-lang/crates.io-index"
4701
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
Biswa Panda's avatar
Biswa Panda committed
4702
4703
4704
4705
4706
dependencies = [
 "cc",
 "pkg-config",
]

4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
[[package]]
name = "openai-harmony"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6b7fd6b7d01a317c58d85a22b7cc314e14a2fef0dfdb93b819738d09caece16"
dependencies = [
 "anyhow",
 "base64 0.22.1",
 "bstr",
 "clap",
 "fancy-regex 0.13.0",
 "futures",
 "image",
 "regex",
 "reqwest",
 "rustc-hash 1.1.0",
 "serde",
 "serde_json",
 "serde_with",
 "sha1",
 "sha2",
4728
 "thiserror 2.0.18",
4729
4730
]

4731
4732
4733
4734
4735
4736
[[package]]
name = "openssl-probe"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"

4737
4738
4739
4740
4741
4742
[[package]]
name = "openssl-probe"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"

4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
[[package]]
name = "opentelemetry"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
dependencies = [
 "futures-core",
 "futures-sink",
 "js-sys",
 "pin-project-lite",
4753
 "thiserror 2.0.18",
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
 "tracing",
]

[[package]]
name = "opentelemetry-http"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
dependencies = [
 "async-trait",
 "bytes",
 "http",
 "opentelemetry",
 "reqwest",
]

[[package]]
name = "opentelemetry-otlp"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf"
dependencies = [
 "http",
 "opentelemetry",
 "opentelemetry-http",
 "opentelemetry-proto",
 "opentelemetry_sdk",
4781
 "prost 0.14.3",
4782
 "reqwest",
4783
 "thiserror 2.0.18",
4784
 "tokio",
4785
 "tonic 0.14.4",
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
 "tracing",
]

[[package]]
name = "opentelemetry-proto"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f"
dependencies = [
 "opentelemetry",
 "opentelemetry_sdk",
4797
4798
 "prost 0.14.3",
 "tonic 0.14.4",
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
 "tonic-prost",
]

[[package]]
name = "opentelemetry_sdk"
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd"
dependencies = [
 "futures-channel",
 "futures-executor",
 "futures-util",
 "opentelemetry",
 "percent-encoding",
 "rand 0.9.2",
4814
 "thiserror 2.0.18",
4815
4816
4817
4818
 "tokio",
 "tokio-stream",
]

Biswa Panda's avatar
Biswa Panda committed
4819
4820
4821
4822
4823
4824
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"

4825
4826
4827
4828
4829
4830
4831
4832
4833
[[package]]
name = "ordered-float"
version = "2.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
dependencies = [
 "num-traits",
]

4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
[[package]]
name = "ordered-multimap"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
dependencies = [
 "dlv-list",
 "hashbrown 0.14.5",
]

4844
4845
[[package]]
name = "os_info"
4846
version = "3.14.0"
4847
source = "registry+https://github.com/rust-lang/crates.io-index"
4848
checksum = "e4022a17595a00d6a369236fdae483f0de7f0a339960a53118b818238e132224"
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
dependencies = [
 "android_system_properties",
 "log",
 "nix 0.30.1",
 "objc2",
 "objc2-foundation",
 "objc2-ui-kit",
 "serde",
 "windows-sys 0.61.2",
]

4860
4861
4862
4863
4864
[[package]]
name = "parking"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
4865
4866
4867

[[package]]
name = "parking_lot"
4868
version = "0.12.5"
4869
source = "registry+https://github.com/rust-lang/crates.io-index"
4870
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
4871
4872
4873
4874
4875
4876
4877
dependencies = [
 "lock_api",
 "parking_lot_core",
]

[[package]]
name = "parking_lot_core"
4878
version = "0.9.12"
4879
source = "registry+https://github.com/rust-lang/crates.io-index"
4880
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
4881
dependencies = [
4882
 "cfg-if 1.0.4",
4883
 "libc",
4884
 "redox_syscall 0.5.18",
4885
 "smallvec",
4886
 "windows-link",
4887
4888
]

Biswa Panda's avatar
Biswa Panda committed
4889
4890
4891
4892
4893
4894
[[package]]
name = "paste"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"

4895
4896
4897
4898
4899
4900
[[package]]
name = "pastey"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"

4901
4902
4903
4904
4905
4906
[[package]]
name = "pathdiff"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"

4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
[[package]]
name = "pear"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467"
dependencies = [
 "inlinable_string",
 "pear_codegen",
 "yansi",
]

[[package]]
name = "pear_codegen"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147"
dependencies = [
 "proc-macro2",
 "proc-macro2-diagnostics",
 "quote",
4927
 "syn",
4928
4929
]

4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
[[package]]
name = "pem"
version = "3.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
dependencies = [
 "base64 0.22.1",
 "serde_core",
]

4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
 "base64ct",
]

[[package]]
name = "percent-encoding"
GuanLuo's avatar
GuanLuo committed
4951
version = "2.3.2"
4952
source = "registry+https://github.com/rust-lang/crates.io-index"
GuanLuo's avatar
GuanLuo committed
4953
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
4954

4955
4956
[[package]]
name = "pest"
4957
version = "2.8.6"
4958
source = "registry+https://github.com/rust-lang/crates.io-index"
4959
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
4960
4961
4962
4963
4964
4965
4966
dependencies = [
 "memchr",
 "ucd-trie",
]

[[package]]
name = "pest_derive"
4967
version = "2.8.6"
4968
source = "registry+https://github.com/rust-lang/crates.io-index"
4969
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
4970
4971
4972
4973
4974
4975
4976
dependencies = [
 "pest",
 "pest_generator",
]

[[package]]
name = "pest_generator"
4977
version = "2.8.6"
4978
source = "registry+https://github.com/rust-lang/crates.io-index"
4979
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
4980
4981
4982
4983
4984
dependencies = [
 "pest",
 "pest_meta",
 "proc-macro2",
 "quote",
4985
 "syn",
4986
4987
4988
4989
]

[[package]]
name = "pest_meta"
4990
version = "2.8.6"
4991
source = "registry+https://github.com/rust-lang/crates.io-index"
4992
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
4993
4994
4995
4996
4997
dependencies = [
 "pest",
 "sha2",
]

4998
4999
[[package]]
name = "petgraph"
5000
version = "0.7.1"
5001
source = "registry+https://github.com/rust-lang/crates.io-index"
5002
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
5003
5004
dependencies = [
 "fixedbitset",
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
 "indexmap 2.13.0",
]

[[package]]
name = "petgraph"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
dependencies = [
 "fixedbitset",
 "hashbrown 0.15.5",
 "indexmap 2.13.0",
5017
5018
]

5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
[[package]]
name = "phf"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
dependencies = [
 "phf_shared",
]

[[package]]
name = "phf_codegen"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
dependencies = [
 "phf_generator",
 "phf_shared",
]

[[package]]
name = "phf_generator"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
dependencies = [
 "phf_shared",
 "rand 0.8.5",
]

[[package]]
name = "phf_shared"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
dependencies = [
 "siphasher",
]

5057
[[package]]
5058
5059
name = "pin-project"
version = "1.1.10"
5060
source = "registry+https://github.com/rust-lang/crates.io-index"
5061
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
5062
dependencies = [
5063
 "pin-project-internal",
5064
5065
5066
]

[[package]]
5067
5068
name = "pin-project-internal"
version = "1.1.10"
5069
source = "registry+https://github.com/rust-lang/crates.io-index"
5070
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
5071
5072
5073
dependencies = [
 "proc-macro2",
 "quote",
5074
 "syn",
5075
5076
5077
]

[[package]]
5078
5079
name = "pin-project-lite"
version = "0.2.16"
5080
source = "registry+https://github.com/rust-lang/crates.io-index"
5081
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098

[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"

[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
 "der",
 "spki",
]

5099
5100
[[package]]
name = "pkg-config"
5101
version = "0.3.32"
5102
source = "registry+https://github.com/rust-lang/crates.io-index"
5103
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
5104

5105
5106
[[package]]
name = "png"
5107
version = "0.18.1"
5108
source = "registry+https://github.com/rust-lang/crates.io-index"
5109
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
5110
dependencies = [
5111
 "bitflags 2.11.0",
5112
5113
5114
5115
5116
5117
 "crc32fast",
 "fdeflate",
 "flate2",
 "miniz_oxide",
]

5118
5119
[[package]]
name = "portable-atomic"
5120
version = "1.13.1"
5121
source = "registry+https://github.com/rust-lang/crates.io-index"
5122
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
5123

5124
5125
[[package]]
name = "portable-atomic-util"
5126
version = "0.2.5"
5127
source = "registry+https://github.com/rust-lang/crates.io-index"
5128
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
5129
5130
5131
5132
dependencies = [
 "portable-atomic",
]

Ryan Olson's avatar
Ryan Olson committed
5133
5134
[[package]]
name = "potential_utf"
5135
version = "0.1.4"
Ryan Olson's avatar
Ryan Olson committed
5136
source = "registry+https://github.com/rust-lang/crates.io-index"
5137
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
Ryan Olson's avatar
Ryan Olson committed
5138
5139
5140
5141
dependencies = [
 "zerovec",
]

5142
5143
5144
5145
5146
5147
5148
5149
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"

[[package]]
name = "ppv-lite86"
5150
version = "0.2.21"
5151
source = "registry+https://github.com/rust-lang/crates.io-index"
5152
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
5153
5154
5155
5156
5157
5158
dependencies = [
 "zerocopy",
]

[[package]]
name = "prettyplease"
Ryan Olson's avatar
Ryan Olson committed
5159
version = "0.2.37"
5160
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
5161
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
5162
5163
dependencies = [
 "proc-macro2",
5164
 "syn",
5165
5166
]

5167
5168
[[package]]
name = "proc-macro-crate"
5169
version = "3.4.0"
5170
source = "registry+https://github.com/rust-lang/crates.io-index"
5171
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
5172
dependencies = [
5173
 "toml_edit 0.23.10+spec-1.0.0",
5174
5175
]

5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
[[package]]
name = "proc-macro-error-attr2"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
dependencies = [
 "proc-macro2",
 "quote",
]

[[package]]
name = "proc-macro-error2"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
dependencies = [
 "proc-macro-error-attr2",
 "proc-macro2",
 "quote",
5195
 "syn",
5196
5197
5198
5199
]

[[package]]
name = "proc-macro2"
5200
version = "1.0.106"
5201
source = "registry+https://github.com/rust-lang/crates.io-index"
5202
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
dependencies = [
 "unicode-ident",
]

[[package]]
name = "proc-macro2-diagnostics"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
dependencies = [
 "proc-macro2",
 "quote",
5215
 "syn",
5216
5217
5218
5219
 "version_check",
 "yansi",
]

5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
[[package]]
name = "profiling"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
dependencies = [
 "profiling-procmacros",
]

[[package]]
name = "profiling-procmacros"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
dependencies = [
 "quote",
5236
 "syn",
5237
5238
]

5239
5240
[[package]]
name = "prometheus"
5241
version = "0.14.0"
5242
source = "registry+https://github.com/rust-lang/crates.io-index"
5243
checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
5244
dependencies = [
5245
 "cfg-if 1.0.4",
5246
5247
5248
5249
5250
 "fnv",
 "lazy_static",
 "memchr",
 "parking_lot",
 "protobuf",
5251
 "thiserror 2.0.18",
5252
5253
5254
5255
]

[[package]]
name = "prost"
5256
version = "0.13.5"
5257
source = "registry+https://github.com/rust-lang/crates.io-index"
5258
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
5259
5260
dependencies = [
 "bytes",
5261
5262
5263
5264
5265
 "prost-derive 0.13.5",
]

[[package]]
name = "prost"
5266
version = "0.14.3"
5267
source = "registry+https://github.com/rust-lang/crates.io-index"
5268
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
5269
5270
dependencies = [
 "bytes",
5271
 "prost-derive 0.14.3",
5272
5273
5274
5275
]

[[package]]
name = "prost-build"
5276
version = "0.13.5"
5277
source = "registry+https://github.com/rust-lang/crates.io-index"
5278
checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
5279
5280
dependencies = [
 "heck",
5281
 "itertools 0.14.0",
5282
5283
5284
 "log",
 "multimap",
 "once_cell",
5285
 "petgraph 0.7.1",
5286
 "prettyplease",
5287
 "prost 0.13.5",
5288
5289
 "prost-types 0.13.5",
 "regex",
5290
 "syn",
5291
5292
5293
5294
5295
 "tempfile",
]

[[package]]
name = "prost-build"
5296
version = "0.14.3"
5297
source = "registry+https://github.com/rust-lang/crates.io-index"
5298
checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
5299
5300
5301
5302
5303
dependencies = [
 "heck",
 "itertools 0.14.0",
 "log",
 "multimap",
5304
 "petgraph 0.8.3",
5305
 "prettyplease",
5306
5307
 "prost 0.14.3",
 "prost-types 0.14.3",
5308
5309
 "pulldown-cmark",
 "pulldown-cmark-to-cmark",
5310
 "regex",
5311
 "syn",
5312
5313
5314
5315
5316
 "tempfile",
]

[[package]]
name = "prost-derive"
5317
version = "0.13.5"
5318
source = "registry+https://github.com/rust-lang/crates.io-index"
5319
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
5320
5321
dependencies = [
 "anyhow",
5322
 "itertools 0.14.0",
5323
5324
 "proc-macro2",
 "quote",
5325
 "syn",
5326
5327
]

5328
5329
[[package]]
name = "prost-derive"
5330
version = "0.14.3"
5331
source = "registry+https://github.com/rust-lang/crates.io-index"
5332
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
5333
5334
5335
5336
5337
dependencies = [
 "anyhow",
 "itertools 0.14.0",
 "proc-macro2",
 "quote",
5338
 "syn",
5339
5340
]

5341
5342
[[package]]
name = "prost-types"
5343
version = "0.13.5"
5344
source = "registry+https://github.com/rust-lang/crates.io-index"
5345
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
5346
dependencies = [
5347
 "prost 0.13.5",
5348
5349
]

5350
5351
[[package]]
name = "prost-types"
5352
version = "0.14.3"
5353
source = "registry+https://github.com/rust-lang/crates.io-index"
5354
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
5355
dependencies = [
5356
 "prost 0.14.3",
5357
5358
]

5359
5360
[[package]]
name = "protobuf"
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
version = "3.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
dependencies = [
 "once_cell",
 "protobuf-support",
 "thiserror 1.0.69",
]

[[package]]
name = "protobuf-support"
version = "3.7.2"
5373
source = "registry+https://github.com/rust-lang/crates.io-index"
5374
5375
5376
5377
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
dependencies = [
 "thiserror 1.0.69",
]
5378

5379
5380
5381
5382
5383
5384
[[package]]
name = "pulldown-cmark"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
dependencies = [
5385
 "bitflags 2.11.0",
5386
5387
5388
5389
5390
5391
 "memchr",
 "unicase",
]

[[package]]
name = "pulldown-cmark-to-cmark"
5392
version = "22.0.0"
5393
source = "registry+https://github.com/rust-lang/crates.io-index"
5394
checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
5395
5396
5397
5398
dependencies = [
 "pulldown-cmark",
]

5399
5400
[[package]]
name = "pulp"
5401
version = "0.22.2"
5402
source = "registry+https://github.com/rust-lang/crates.io-index"
5403
checksum = "2e205bb30d5b916c55e584c22201771bcf2bad9aabd5d4127f38387140c38632"
5404
5405
dependencies = [
 "bytemuck",
5406
 "cfg-if 1.0.4",
5407
5408
 "libm",
 "num-complex",
5409
5410
5411
 "paste",
 "pulp-wasm-simd-flag",
 "raw-cpuid",
5412
 "reborrow",
5413
 "version_check",
5414
5415
5416
]

[[package]]
5417
5418
name = "pulp-wasm-simd-flag"
version = "0.1.0"
5419
source = "registry+https://github.com/rust-lang/crates.io-index"
5420
checksum = "40e24eee682d89fb193496edf918a7f407d30175b2e785fe057e4392dfd182e0"
5421

5422
5423
[[package]]
name = "pxfm"
5424
version = "0.1.27"
5425
source = "registry+https://github.com/rust-lang/crates.io-index"
5426
checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
5427
5428
5429
5430
dependencies = [
 "num-traits",
]

5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
[[package]]
name = "py_literal"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "102df7a3d46db9d3891f178dcc826dc270a6746277a9ae6436f8d29fd490a8e1"
dependencies = [
 "num-bigint",
 "num-complex",
 "num-traits",
 "pest",
 "pest_derive",
]

5444
5445
[[package]]
name = "pyo3"
5446
version = "0.23.5"
5447
source = "registry+https://github.com/rust-lang/crates.io-index"
5448
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
5449
dependencies = [
5450
 "cfg-if 1.0.4",
5451
5452
 "indoc",
 "libc",
5453
 "memoffset 0.9.1",
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
 "once_cell",
 "portable-atomic",
 "pyo3-build-config",
 "pyo3-ffi",
 "pyo3-macros",
 "unindent",
]

[[package]]
name = "pyo3-async-runtimes"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "977dc837525cfd22919ba6a831413854beb7c99a256c03bf8624ad707e45810e"
dependencies = [
 "async-channel",
 "clap",
 "futures",
 "inventory",
 "once_cell",
 "pin-project-lite",
 "pyo3",
 "pyo3-async-runtimes-macros",
 "tokio",
]

[[package]]
name = "pyo3-async-runtimes-macros"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2df2884957d2476731f987673befac5d521dff10abb0a7cbe12015bc7702fe9"
dependencies = [
 "proc-macro2",
 "quote",
5487
 "syn",
5488
5489
5490
5491
]

[[package]]
name = "pyo3-build-config"
5492
version = "0.23.5"
5493
source = "registry+https://github.com/rust-lang/crates.io-index"
5494
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
5495
5496
5497
5498
5499
5500
5501
dependencies = [
 "once_cell",
 "target-lexicon",
]

[[package]]
name = "pyo3-ffi"
5502
version = "0.23.5"
5503
source = "registry+https://github.com/rust-lang/crates.io-index"
5504
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
5505
5506
5507
5508
5509
5510
5511
dependencies = [
 "libc",
 "pyo3-build-config",
]

[[package]]
name = "pyo3-macros"
5512
version = "0.23.5"
5513
source = "registry+https://github.com/rust-lang/crates.io-index"
5514
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
5515
5516
5517
5518
dependencies = [
 "proc-macro2",
 "pyo3-macros-backend",
 "quote",
5519
 "syn",
5520
5521
5522
5523
]

[[package]]
name = "pyo3-macros-backend"
5524
version = "0.23.5"
5525
source = "registry+https://github.com/rust-lang/crates.io-index"
5526
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
5527
5528
5529
5530
5531
dependencies = [
 "heck",
 "proc-macro2",
 "pyo3-build-config",
 "quote",
5532
 "syn",
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
]

[[package]]
name = "pythonize"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91a6ee7a084f913f98d70cdc3ebec07e852b735ae3059a1500db2661265da9ff"
dependencies = [
 "pyo3",
 "serde",
]

5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
[[package]]
name = "qoi"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
dependencies = [
 "bytemuck",
]

[[package]]
name = "quick-error"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"

5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
[[package]]
name = "quick-xml"
version = "0.38.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
dependencies = [
 "memchr",
 "serde",
]

Paul Hendricks's avatar
Paul Hendricks committed
5570
5571
[[package]]
name = "quinn"
5572
version = "0.11.9"
Paul Hendricks's avatar
Paul Hendricks committed
5573
source = "registry+https://github.com/rust-lang/crates.io-index"
5574
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
Paul Hendricks's avatar
Paul Hendricks committed
5575
5576
dependencies = [
 "bytes",
5577
 "cfg_aliases",
Paul Hendricks's avatar
Paul Hendricks committed
5578
5579
5580
 "pin-project-lite",
 "quinn-proto",
 "quinn-udp",
Graham King's avatar
Graham King committed
5581
 "rustc-hash 2.1.1",
Paul Hendricks's avatar
Paul Hendricks committed
5582
 "rustls",
5583
5584
 "socket2 0.6.2",
 "thiserror 2.0.18",
Paul Hendricks's avatar
Paul Hendricks committed
5585
5586
 "tokio",
 "tracing",
5587
 "web-time",
Paul Hendricks's avatar
Paul Hendricks committed
5588
5589
5590
5591
]

[[package]]
name = "quinn-proto"
5592
version = "0.11.13"
Paul Hendricks's avatar
Paul Hendricks committed
5593
source = "registry+https://github.com/rust-lang/crates.io-index"
5594
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
Paul Hendricks's avatar
Paul Hendricks committed
5595
5596
dependencies = [
 "bytes",
5597
 "getrandom 0.3.4",
Ryan Olson's avatar
Ryan Olson committed
5598
5599
 "lru-slab",
 "rand 0.9.2",
Paul Hendricks's avatar
Paul Hendricks committed
5600
 "ring",
Graham King's avatar
Graham King committed
5601
 "rustc-hash 2.1.1",
Paul Hendricks's avatar
Paul Hendricks committed
5602
5603
5604
 "rustls",
 "rustls-pki-types",
 "slab",
5605
 "thiserror 2.0.18",
Paul Hendricks's avatar
Paul Hendricks committed
5606
5607
5608
5609
5610
5611
5612
 "tinyvec",
 "tracing",
 "web-time",
]

[[package]]
name = "quinn-udp"
5613
version = "0.5.14"
Paul Hendricks's avatar
Paul Hendricks committed
5614
source = "registry+https://github.com/rust-lang/crates.io-index"
5615
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
Paul Hendricks's avatar
Paul Hendricks committed
5616
5617
5618
5619
dependencies = [
 "cfg_aliases",
 "libc",
 "once_cell",
5620
 "socket2 0.6.2",
Paul Hendricks's avatar
Paul Hendricks committed
5621
 "tracing",
5622
 "windows-sys 0.60.2",
Paul Hendricks's avatar
Paul Hendricks committed
5623
5624
]

5625
5626
[[package]]
name = "quote"
5627
version = "1.0.44"
5628
source = "registry+https://github.com/rust-lang/crates.io-index"
5629
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
5630
5631
5632
5633
dependencies = [
 "proc-macro2",
]

5634
5635
[[package]]
name = "r-efi"
Ryan Olson's avatar
Ryan Olson committed
5636
version = "5.3.0"
5637
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
5638
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
5639

5640
5641
5642
5643
5644
5645
5646
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
 "libc",
5647
5648
5649
5650
5651
5652
 "rand_chacha 0.3.1",
 "rand_core 0.6.4",
]

[[package]]
name = "rand"
Ryan Olson's avatar
Ryan Olson committed
5653
version = "0.9.2"
5654
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
5655
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
5656
5657
dependencies = [
 "rand_chacha 0.9.0",
5658
 "rand_core 0.9.5",
5659
5660
5661
5662
5663
5664
5665
5666
5667
]

[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
 "ppv-lite86",
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
 "rand_core 0.6.4",
]

[[package]]
name = "rand_chacha"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
dependencies = [
 "ppv-lite86",
5678
 "rand_core 0.9.5",
5679
5680
5681
5682
5683
5684
5685
5686
]

[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
5687
 "getrandom 0.2.17",
5688
5689
]

5690
5691
[[package]]
name = "rand_core"
5692
version = "0.9.5"
5693
source = "registry+https://github.com/rust-lang/crates.io-index"
5694
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
5695
dependencies = [
5696
 "getrandom 0.3.4",
5697
5698
]

5699
5700
5701
5702
5703
5704
5705
[[package]]
name = "rand_distr"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
dependencies = [
 "num-traits",
Ryan Olson's avatar
Ryan Olson committed
5706
 "rand 0.9.2",
5707
5708
]

5709
5710
[[package]]
name = "rav1e"
5711
version = "0.8.1"
5712
source = "registry+https://github.com/rust-lang/crates.io-index"
5713
checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
5714
dependencies = [
5715
 "aligned-vec",
5716
5717
5718
 "arbitrary",
 "arg_enum_proc_macro",
 "arrayvec",
5719
 "av-scenechange",
5720
5721
5722
 "av1-grain",
 "bitstream-io",
 "built",
5723
 "cfg-if 1.0.4",
5724
 "interpolate_name",
5725
 "itertools 0.14.0",
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
 "libc",
 "libfuzzer-sys",
 "log",
 "maybe-rayon",
 "new_debug_unreachable",
 "noop_proc_macro",
 "num-derive",
 "num-traits",
 "paste",
 "profiling",
5736
5737
 "rand 0.9.2",
 "rand_chacha 0.9.0",
5738
 "simd_helpers",
5739
 "thiserror 2.0.18",
5740
5741
5742
5743
5744
5745
 "v_frame",
 "wasm-bindgen",
]

[[package]]
name = "ravif"
5746
version = "0.12.0"
5747
source = "registry+https://github.com/rust-lang/crates.io-index"
5748
checksum = "ef69c1990ceef18a116855938e74793a5f7496ee907562bd0857b6ac734ab285"
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
dependencies = [
 "avif-serialize",
 "imgref",
 "loop9",
 "quick-error",
 "rav1e",
 "rayon",
 "rgb",
]

5759
5760
[[package]]
name = "raw-cpuid"
5761
version = "11.6.0"
5762
source = "registry+https://github.com/rust-lang/crates.io-index"
5763
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
5764
dependencies = [
5765
 "bitflags 2.11.0",
5766
5767
]

5768
5769
5770
5771
5772
5773
[[package]]
name = "rawpointer"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"

5774
5775
[[package]]
name = "rayon"
Ryan Olson's avatar
Ryan Olson committed
5776
version = "1.11.0"
5777
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
5778
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
5779
5780
5781
5782
5783
dependencies = [
 "either",
 "rayon-core",
]

Biswa Panda's avatar
Biswa Panda committed
5784
5785
[[package]]
name = "rayon-cond"
5786
version = "0.4.0"
Biswa Panda's avatar
Biswa Panda committed
5787
source = "registry+https://github.com/rust-lang/crates.io-index"
5788
checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
Biswa Panda's avatar
Biswa Panda committed
5789
5790
dependencies = [
 "either",
5791
 "itertools 0.14.0",
Biswa Panda's avatar
Biswa Panda committed
5792
5793
5794
 "rayon",
]

5795
5796
[[package]]
name = "rayon-core"
Ryan Olson's avatar
Ryan Olson committed
5797
version = "1.13.0"
5798
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
5799
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
5800
5801
5802
5803
5804
dependencies = [
 "crossbeam-deque",
 "crossbeam-utils",
]

5805
5806
5807
5808
5809
5810
[[package]]
name = "reborrow"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"

5811
5812
[[package]]
name = "redox_syscall"
5813
version = "0.5.18"
5814
source = "registry+https://github.com/rust-lang/crates.io-index"
5815
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
5816
dependencies = [
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
 "bitflags 2.11.0",
]

[[package]]
name = "redox_syscall"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35985aa610addc02e24fc232012c86fd11f14111180f902b67e2d5331f8ebf2b"
dependencies = [
 "bitflags 2.11.0",
5827
5828
]

Biswa Panda's avatar
Biswa Panda committed
5829
5830
[[package]]
name = "redox_users"
Ryan Olson's avatar
Ryan Olson committed
5831
version = "0.5.2"
Biswa Panda's avatar
Biswa Panda committed
5832
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
5833
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
Biswa Panda's avatar
Biswa Panda committed
5834
dependencies = [
5835
 "getrandom 0.2.17",
Biswa Panda's avatar
Biswa Panda committed
5836
 "libredox",
5837
 "thiserror 2.0.18",
Biswa Panda's avatar
Biswa Panda committed
5838
5839
]

5840
5841
[[package]]
name = "ref-cast"
5842
version = "1.0.25"
5843
source = "registry+https://github.com/rust-lang/crates.io-index"
5844
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
5845
5846
5847
5848
5849
5850
dependencies = [
 "ref-cast-impl",
]

[[package]]
name = "ref-cast-impl"
5851
version = "1.0.25"
5852
source = "registry+https://github.com/rust-lang/crates.io-index"
5853
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
5854
5855
5856
dependencies = [
 "proc-macro2",
 "quote",
5857
 "syn",
5858
5859
]

5860
5861
[[package]]
name = "regex"
5862
version = "1.12.3"
5863
source = "registry+https://github.com/rust-lang/crates.io-index"
5864
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
5865
5866
5867
dependencies = [
 "aho-corasick",
 "memchr",
5868
5869
 "regex-automata",
 "regex-syntax",
5870
5871
5872
5873
]

[[package]]
name = "regex-automata"
5874
version = "0.4.14"
5875
source = "registry+https://github.com/rust-lang/crates.io-index"
5876
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
5877
5878
5879
dependencies = [
 "aho-corasick",
 "memchr",
5880
 "regex-syntax",
5881
5882
]

5883
5884
[[package]]
name = "regex-syntax"
5885
version = "0.8.9"
5886
source = "registry+https://github.com/rust-lang/crates.io-index"
5887
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
5888

Ryan Olson's avatar
Ryan Olson committed
5889
5890
5891
5892
5893
5894
[[package]]
name = "relative-path"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"

Paul Hendricks's avatar
Paul Hendricks committed
5895
5896
[[package]]
name = "reqwest"
5897
version = "0.12.28"
Paul Hendricks's avatar
Paul Hendricks committed
5898
source = "registry+https://github.com/rust-lang/crates.io-index"
5899
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
Paul Hendricks's avatar
Paul Hendricks committed
5900
5901
5902
dependencies = [
 "base64 0.22.1",
 "bytes",
5903
 "encoding_rs",
5904
 "futures-channel",
Paul Hendricks's avatar
Paul Hendricks committed
5905
5906
 "futures-core",
 "futures-util",
5907
 "h2",
Paul Hendricks's avatar
Paul Hendricks committed
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
 "http",
 "http-body",
 "http-body-util",
 "hyper",
 "hyper-rustls",
 "hyper-util",
 "js-sys",
 "log",
 "mime",
 "mime_guess",
 "percent-encoding",
 "pin-project-lite",
 "quinn",
 "rustls",
5922
 "rustls-native-certs 0.8.3",
Paul Hendricks's avatar
Paul Hendricks committed
5923
5924
5925
5926
5927
5928
5929
5930
 "rustls-pki-types",
 "serde",
 "serde_json",
 "serde_urlencoded",
 "sync_wrapper",
 "tokio",
 "tokio-rustls",
 "tokio-util",
5931
 "tower",
5932
 "tower-http",
Paul Hendricks's avatar
Paul Hendricks committed
5933
5934
5935
5936
5937
5938
 "tower-service",
 "url",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "wasm-streams",
 "web-sys",
5939
 "webpki-roots 1.0.6",
Paul Hendricks's avatar
Paul Hendricks committed
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
]

[[package]]
name = "reqwest-eventsource"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "632c55746dbb44275691640e7b40c907c16a2dc1a5842aa98aaec90da6ec6bde"
dependencies = [
 "eventsource-stream",
 "futures-core",
 "futures-timer",
 "mime",
5952
 "nom 7.1.3",
Paul Hendricks's avatar
Paul Hendricks committed
5953
5954
5955
5956
5957
 "pin-project-lite",
 "reqwest",
 "thiserror 1.0.69",
]

5958
5959
5960
5961
5962
5963
[[package]]
name = "rgb"
version = "0.8.52"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"

5964
5965
[[package]]
name = "ring"
5966
version = "0.17.14"
5967
source = "registry+https://github.com/rust-lang/crates.io-index"
5968
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
5969
5970
dependencies = [
 "cc",
5971
 "cfg-if 1.0.4",
5972
 "getrandom 0.2.17",
5973
5974
5975
5976
5977
 "libc",
 "untrusted",
 "windows-sys 0.52.0",
]

5978
5979
[[package]]
name = "rmp"
5980
version = "0.8.15"
5981
source = "registry+https://github.com/rust-lang/crates.io-index"
5982
checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
5983
5984
5985
5986
5987
5988
dependencies = [
 "num-traits",
]

[[package]]
name = "rmp-serde"
5989
version = "1.3.1"
5990
source = "registry+https://github.com/rust-lang/crates.io-index"
5991
checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
5992
5993
5994
5995
5996
dependencies = [
 "rmp",
 "serde",
]

5997
5998
[[package]]
name = "ron"
5999
version = "0.12.0"
6000
source = "registry+https://github.com/rust-lang/crates.io-index"
6001
checksum = "fd490c5b18261893f14449cbd28cb9c0b637aebf161cd77900bfdedaff21ec32"
6002
dependencies = [
6003
 "bitflags 2.11.0",
6004
 "once_cell",
6005
6006
 "serde",
 "serde_derive",
6007
6008
 "typeid",
 "unicode-ident",
6009
6010
]

Ryan Olson's avatar
Ryan Olson committed
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
[[package]]
name = "rstest"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
dependencies = [
 "futures-timer",
 "futures-util",
 "rstest_macros",
 "rustc_version",
]

[[package]]
name = "rstest_macros"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
dependencies = [
6029
 "cfg-if 1.0.4",
Ryan Olson's avatar
Ryan Olson committed
6030
6031
6032
6033
6034
6035
6036
 "glob",
 "proc-macro-crate",
 "proc-macro2",
 "quote",
 "regex",
 "relative-path",
 "rustc_version",
6037
 "syn",
Ryan Olson's avatar
Ryan Olson committed
6038
6039
6040
 "unicode-ident",
]

6041
6042
[[package]]
name = "rust-embed"
6043
version = "8.11.0"
6044
source = "registry+https://github.com/rust-lang/crates.io-index"
6045
checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
6046
6047
6048
6049
6050
6051
6052
6053
dependencies = [
 "rust-embed-impl",
 "rust-embed-utils",
 "walkdir",
]

[[package]]
name = "rust-embed-impl"
6054
version = "8.11.0"
6055
source = "registry+https://github.com/rust-lang/crates.io-index"
6056
checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
6057
6058
6059
6060
dependencies = [
 "proc-macro2",
 "quote",
 "rust-embed-utils",
6061
 "syn",
6062
6063
6064
6065
6066
 "walkdir",
]

[[package]]
name = "rust-embed-utils"
6067
version = "8.11.0"
6068
source = "registry+https://github.com/rust-lang/crates.io-index"
6069
checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
6070
6071
6072
6073
6074
dependencies = [
 "sha2",
 "walkdir",
]

6075
6076
6077
6078
6079
6080
[[package]]
name = "rust-ini"
version = "0.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7"
dependencies = [
6081
 "cfg-if 1.0.4",
6082
6083
6084
 "ordered-multimap",
]

6085
6086
[[package]]
name = "rustc-demangle"
6087
version = "0.1.27"
6088
source = "registry+https://github.com/rust-lang/crates.io-index"
6089
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
6090

Graham King's avatar
Graham King committed
6091
6092
6093
6094
6095
6096
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"

Paul Hendricks's avatar
Paul Hendricks committed
6097
6098
6099
6100
6101
6102
[[package]]
name = "rustc-hash"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"

6103
6104
6105
6106
6107
6108
6109
6110
6111
[[package]]
name = "rustc_version"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
dependencies = [
 "semver",
]

6112
6113
6114
6115
6116
6117
[[package]]
name = "rustix"
version = "0.38.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
dependencies = [
6118
 "bitflags 2.11.0",
6119
6120
6121
6122
6123
6124
 "errno",
 "libc",
 "linux-raw-sys 0.4.15",
 "windows-sys 0.59.0",
]

Graham King's avatar
Graham King committed
6125
6126
[[package]]
name = "rustix"
6127
version = "1.1.3"
6128
source = "registry+https://github.com/rust-lang/crates.io-index"
6129
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
6130
dependencies = [
6131
 "bitflags 2.11.0",
6132
6133
 "errno",
 "libc",
6134
 "linux-raw-sys 0.11.0",
6135
 "windows-sys 0.61.2",
6136
6137
6138
6139
]

[[package]]
name = "rustls"
6140
version = "0.23.36"
6141
source = "registry+https://github.com/rust-lang/crates.io-index"
6142
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
6143
dependencies = [
Graham King's avatar
Graham King committed
6144
 "aws-lc-rs",
Biswa Panda's avatar
Biswa Panda committed
6145
 "log",
6146
6147
6148
 "once_cell",
 "ring",
 "rustls-pki-types",
6149
 "rustls-webpki 0.103.9",
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
 "subtle",
 "zeroize",
]

[[package]]
name = "rustls-native-certs"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
dependencies = [
6160
 "openssl-probe 0.1.6",
6161
6162
6163
6164
6165
6166
6167
6168
 "rustls-pemfile",
 "rustls-pki-types",
 "schannel",
 "security-framework 2.11.1",
]

[[package]]
name = "rustls-native-certs"
6169
version = "0.8.3"
6170
source = "registry+https://github.com/rust-lang/crates.io-index"
6171
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
6172
dependencies = [
6173
 "openssl-probe 0.2.1",
6174
6175
 "rustls-pki-types",
 "schannel",
6176
 "security-framework 3.6.0",
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
]

[[package]]
name = "rustls-pemfile"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
dependencies = [
 "rustls-pki-types",
]

[[package]]
name = "rustls-pki-types"
6190
version = "1.14.0"
6191
source = "registry+https://github.com/rust-lang/crates.io-index"
6192
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
Paul Hendricks's avatar
Paul Hendricks committed
6193
6194
dependencies = [
 "web-time",
Ryan Olson's avatar
Ryan Olson committed
6195
 "zeroize",
Paul Hendricks's avatar
Paul Hendricks committed
6196
]
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207

[[package]]
name = "rustls-webpki"
version = "0.102.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
dependencies = [
 "rustls-pki-types",
 "untrusted",
]

6208
6209
[[package]]
name = "rustls-webpki"
6210
version = "0.103.9"
6211
source = "registry+https://github.com/rust-lang/crates.io-index"
6212
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
6213
dependencies = [
Graham King's avatar
Graham King committed
6214
 "aws-lc-rs",
6215
6216
6217
6218
6219
 "ring",
 "rustls-pki-types",
 "untrusted",
]

6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
[[package]]
name = "rustpython-ast"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
dependencies = [
 "is-macro",
 "malachite-bigint",
 "rustpython-parser-core",
 "static_assertions",
]

[[package]]
name = "rustpython-parser"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
dependencies = [
 "anyhow",
 "is-macro",
 "itertools 0.11.0",
 "lalrpop-util",
 "log",
 "malachite-bigint",
 "num-traits",
 "phf",
 "phf_codegen",
 "rustc-hash 1.1.0",
 "rustpython-ast",
 "rustpython-parser-core",
 "tiny-keccak",
 "unic-emoji-char",
 "unic-ucd-ident",
 "unicode_names2",
]

[[package]]
name = "rustpython-parser-core"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
dependencies = [
 "is-macro",
 "memchr",
 "rustpython-parser-vendored",
]

[[package]]
name = "rustpython-parser-vendored"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
dependencies = [
 "memchr",
 "once_cell",
]

6277
6278
[[package]]
name = "rustversion"
Ryan Olson's avatar
Ryan Olson committed
6279
version = "1.0.22"
6280
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6281
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
6282
6283
6284

[[package]]
name = "ryu"
6285
version = "1.0.23"
6286
source = "registry+https://github.com/rust-lang/crates.io-index"
6287
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
6288

6289
6290
[[package]]
name = "safetensors"
6291
version = "0.7.0"
6292
source = "registry+https://github.com/rust-lang/crates.io-index"
6293
checksum = "675656c1eabb620b921efea4f9199f97fc86e36dd6ffd1fbbe48d0f59a4987f5"
6294
dependencies = [
6295
 "hashbrown 0.16.1",
6296
6297
6298
6299
 "serde",
 "serde_json",
]

6300
6301
6302
6303
6304
6305
6306
6307
6308
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
 "winapi-util",
]

6309
6310
[[package]]
name = "schannel"
6311
version = "0.1.28"
6312
source = "registry+https://github.com/rust-lang/crates.io-index"
6313
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
6314
dependencies = [
6315
 "windows-sys 0.61.2",
6316
6317
]

6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
[[package]]
name = "schemars"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
dependencies = [
 "dyn-clone",
 "ref-cast",
 "serde",
 "serde_json",
]

[[package]]
name = "schemars"
6332
version = "1.2.1"
6333
source = "registry+https://github.com/rust-lang/crates.io-index"
6334
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
6335
6336
6337
dependencies = [
 "dyn-clone",
 "ref-cast",
6338
 "schemars_derive",
6339
6340
6341
6342
 "serde",
 "serde_json",
]

6343
6344
[[package]]
name = "schemars_derive"
6345
version = "1.2.1"
6346
source = "registry+https://github.com/rust-lang/crates.io-index"
6347
checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
6348
6349
6350
6351
dependencies = [
 "proc-macro2",
 "quote",
 "serde_derive_internals",
6352
 "syn",
6353
6354
]

6355
6356
6357
6358
6359
6360
[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"

Paul Hendricks's avatar
Paul Hendricks committed
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
[[package]]
name = "secrecy"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a"
dependencies = [
 "serde",
 "zeroize",
]

6371
6372
6373
6374
6375
6376
[[package]]
name = "security-framework"
version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
dependencies = [
6377
 "bitflags 2.11.0",
6378
6379
6380
6381
6382
6383
6384
6385
 "core-foundation 0.9.4",
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
]

[[package]]
name = "security-framework"
6386
version = "3.6.0"
6387
source = "registry+https://github.com/rust-lang/crates.io-index"
6388
checksum = "d17b898a6d6948c3a8ee4372c17cb384f90d2e6e912ef00895b14fd7ab54ec38"
6389
dependencies = [
6390
 "bitflags 2.11.0",
Ryan Olson's avatar
Ryan Olson committed
6391
 "core-foundation 0.10.1",
6392
6393
6394
6395
6396
6397
6398
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
]

[[package]]
name = "security-framework-sys"
6399
version = "2.16.0"
6400
source = "registry+https://github.com/rust-lang/crates.io-index"
6401
checksum = "321c8673b092a9a42605034a9879d73cb79101ed5fd117bc9a597b89b4e9e61a"
6402
6403
6404
6405
6406
dependencies = [
 "core-foundation-sys",
 "libc",
]

Biswa Panda's avatar
Biswa Panda committed
6407
6408
[[package]]
name = "self_cell"
6409
version = "1.2.2"
Biswa Panda's avatar
Biswa Panda committed
6410
source = "registry+https://github.com/rust-lang/crates.io-index"
6411
checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
Biswa Panda's avatar
Biswa Panda committed
6412

6413
6414
[[package]]
name = "semver"
6415
version = "1.0.27"
6416
source = "registry+https://github.com/rust-lang/crates.io-index"
6417
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
6418

6419
6420
6421
6422
6423
6424
[[package]]
name = "seq-macro"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"

6425
6426
[[package]]
name = "serde"
6427
version = "1.0.228"
6428
source = "registry+https://github.com/rust-lang/crates.io-index"
6429
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
6430
dependencies = [
6431
 "serde_core",
6432
6433
6434
 "serde_derive",
]

6435
6436
[[package]]
name = "serde-untagged"
6437
version = "0.1.9"
6438
source = "registry+https://github.com/rust-lang/crates.io-index"
6439
checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
6440
6441
6442
dependencies = [
 "erased-serde",
 "serde",
6443
 "serde_core",
6444
6445
6446
 "typeid",
]

6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
[[package]]
name = "serde-value"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
dependencies = [
 "ordered-float",
 "serde",
]

[[package]]
name = "serde_core"
version = "1.0.228"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
dependencies = [
 "serde_derive",
]

6466
6467
[[package]]
name = "serde_derive"
6468
version = "1.0.228"
6469
source = "registry+https://github.com/rust-lang/crates.io-index"
6470
6471
6472
6473
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
dependencies = [
 "proc-macro2",
 "quote",
6474
 "syn",
6475
6476
6477
6478
6479
6480
6481
]

[[package]]
name = "serde_derive_internals"
version = "0.29.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
6482
6483
6484
dependencies = [
 "proc-macro2",
 "quote",
6485
 "syn",
6486
6487
6488
6489
]

[[package]]
name = "serde_json"
6490
version = "1.0.149"
6491
source = "registry+https://github.com/rust-lang/crates.io-index"
6492
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
6493
dependencies = [
6494
 "indexmap 2.13.0",
6495
6496
6497
 "itoa",
 "memchr",
 "serde",
6498
 "serde_core",
6499
 "zmij",
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
]

[[package]]
name = "serde_nanos"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a93142f0367a4cc53ae0fead1bcda39e85beccfad3dcd717656cacab94b12985"
dependencies = [
 "serde",
]

6511
6512
[[package]]
name = "serde_path_to_error"
6513
version = "0.1.20"
6514
source = "registry+https://github.com/rust-lang/crates.io-index"
6515
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
6516
6517
6518
dependencies = [
 "itoa",
 "serde",
6519
 "serde_core",
6520
6521
]

6522
6523
[[package]]
name = "serde_repr"
6524
version = "0.1.20"
6525
source = "registry+https://github.com/rust-lang/crates.io-index"
6526
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
6527
6528
6529
dependencies = [
 "proc-macro2",
 "quote",
6530
 "syn",
6531
6532
6533
6534
]

[[package]]
name = "serde_spanned"
6535
version = "0.6.9"
6536
source = "registry+https://github.com/rust-lang/crates.io-index"
6537
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
6538
6539
6540
6541
dependencies = [
 "serde",
]

6542
6543
[[package]]
name = "serde_spanned"
6544
version = "1.0.4"
6545
source = "registry+https://github.com/rust-lang/crates.io-index"
6546
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
6547
dependencies = [
6548
 "serde_core",
6549
6550
]

6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
 "form_urlencoded",
 "itoa",
 "ryu",
 "serde",
]

6563
6564
[[package]]
name = "serde_with"
6565
version = "3.16.1"
6566
source = "registry+https://github.com/rust-lang/crates.io-index"
6567
checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
6568
6569
6570
6571
6572
dependencies = [
 "base64 0.22.1",
 "chrono",
 "hex",
 "indexmap 1.9.3",
6573
 "indexmap 2.13.0",
6574
 "schemars 0.9.0",
6575
 "schemars 1.2.1",
6576
 "serde_core",
6577
6578
6579
6580
6581
6582
6583
 "serde_json",
 "serde_with_macros",
 "time",
]

[[package]]
name = "serde_with_macros"
6584
version = "3.16.1"
6585
source = "registry+https://github.com/rust-lang/crates.io-index"
6586
checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
6587
dependencies = [
6588
 "darling 0.21.3",
6589
6590
 "proc-macro2",
 "quote",
6591
 "syn",
6592
6593
]

6594
6595
6596
6597
6598
6599
[[package]]
name = "serde_yaml"
version = "0.9.34+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
dependencies = [
6600
 "indexmap 2.13.0",
6601
6602
6603
6604
6605
6606
 "itoa",
 "ryu",
 "serde",
 "unsafe-libyaml",
]

6607
6608
6609
6610
6611
6612
[[package]]
name = "sha1"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
6613
 "cfg-if 1.0.4",
6614
6615
6616
6617
 "cpufeatures",
 "digest",
]

6618
6619
[[package]]
name = "sha2"
Ryan Olson's avatar
Ryan Olson committed
6620
version = "0.10.9"
6621
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6622
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
6623
dependencies = [
6624
 "cfg-if 1.0.4",
6625
6626
6627
6628
 "cpufeatures",
 "digest",
]

6629
6630
6631
6632
6633
6634
6635
6636
6637
[[package]]
name = "sharded-slab"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
 "lazy_static",
]

6638
6639
[[package]]
name = "shell-words"
6640
version = "1.1.1"
6641
source = "registry+https://github.com/rust-lang/crates.io-index"
6642
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
6643

6644
6645
6646
6647
6648
6649
6650
6651
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"

[[package]]
name = "signal-hook-registry"
6652
version = "1.4.8"
6653
source = "registry+https://github.com/rust-lang/crates.io-index"
6654
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
6655
dependencies = [
6656
 "errno",
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
 "libc",
]

[[package]]
name = "signatory"
version = "0.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1e303f8205714074f6068773f0e29527e0453937fe837c9717d066635b65f31"
dependencies = [
 "pkcs8",
6667
 "rand_core 0.6.4",
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
 "signature",
 "zeroize",
]

[[package]]
name = "signature"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
dependencies = [
 "digest",
6679
 "rand_core 0.6.4",
6680
6681
]

6682
6683
[[package]]
name = "simd-adler32"
6684
version = "0.3.8"
6685
source = "registry+https://github.com/rust-lang/crates.io-index"
6686
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696

[[package]]
name = "simd_helpers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
dependencies = [
 "quote",
]

6697
6698
[[package]]
name = "siphasher"
6699
version = "1.0.2"
6700
source = "registry+https://github.com/rust-lang/crates.io-index"
6701
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
6702

6703
6704
[[package]]
name = "slab"
6705
version = "0.4.12"
6706
source = "registry+https://github.com/rust-lang/crates.io-index"
6707
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
6708
6709
6710

[[package]]
name = "smallvec"
Ryan Olson's avatar
Ryan Olson committed
6711
version = "1.15.1"
6712
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6713
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
6714
6715
6716

[[package]]
name = "socket2"
Ryan Olson's avatar
Ryan Olson committed
6717
version = "0.5.10"
6718
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6719
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
6720
6721
6722
6723
6724
dependencies = [
 "libc",
 "windows-sys 0.52.0",
]

Ryan Olson's avatar
Ryan Olson committed
6725
6726
[[package]]
name = "socket2"
6727
version = "0.6.2"
Ryan Olson's avatar
Ryan Olson committed
6728
source = "registry+https://github.com/rust-lang/crates.io-index"
6729
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
Ryan Olson's avatar
Ryan Olson committed
6730
6731
dependencies = [
 "libc",
6732
 "windows-sys 0.60.2",
Ryan Olson's avatar
Ryan Olson committed
6733
6734
]

6735
[[package]]
6736
6737
name = "socks"
version = "0.3.4"
6738
source = "registry+https://github.com/rust-lang/crates.io-index"
6739
6740
checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
dependencies = [
6741
6742
6743
 "byteorder",
 "libc",
 "winapi 0.3.9",
6744
6745
]

Yan Ru Pei's avatar
Yan Ru Pei committed
6746
6747
6748
6749
6750
6751
6752
6753
6754
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
 "lock_api",
]

6755
[[package]]
6756
6757
name = "spki"
version = "0.7.3"
6758
source = "registry+https://github.com/rust-lang/crates.io-index"
6759
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
6760
dependencies = [
6761
6762
 "base64ct",
 "der",
6763
6764
6765
]

[[package]]
6766
6767
name = "spm_precompiled"
version = "0.1.4"
6768
source = "registry+https://github.com/rust-lang/crates.io-index"
6769
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
6770
dependencies = [
6771
 "base64 0.13.1",
6772
 "nom 7.1.3",
6773
6774
 "serde",
 "unicode-segmentation",
6775
6776
6777
]

[[package]]
6778
name = "stable_deref_trait"
6779
version = "1.2.1"
6780
source = "registry+https://github.com/rust-lang/crates.io-index"
6781
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
6782

6783
6784
6785
6786
6787
6788
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"

6789
[[package]]
6790
6791
name = "strsim"
version = "0.11.1"
6792
source = "registry+https://github.com/rust-lang/crates.io-index"
6793
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
6794
6795

[[package]]
6796
name = "strum"
Ryan Olson's avatar
Ryan Olson committed
6797
version = "0.27.2"
6798
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6799
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
6800
dependencies = [
6801
 "strum_macros",
6802
6803
6804
]

[[package]]
6805
name = "strum_macros"
Ryan Olson's avatar
Ryan Olson committed
6806
version = "0.27.2"
6807
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6808
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
6809
dependencies = [
6810
6811
6812
 "heck",
 "proc-macro2",
 "quote",
6813
 "syn",
6814
6815
6816
]

[[package]]
6817
6818
name = "subtle"
version = "2.6.1"
6819
source = "registry+https://github.com/rust-lang/crates.io-index"
6820
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
6821

6822
6823
[[package]]
name = "syn"
6824
version = "2.0.116"
6825
source = "registry+https://github.com/rust-lang/crates.io-index"
6826
checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
dependencies = [
 "proc-macro2",
 "quote",
 "unicode-ident",
]

[[package]]
name = "sync_wrapper"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
Paul Hendricks's avatar
Paul Hendricks committed
6838
6839
6840
dependencies = [
 "futures-core",
]
6841
6842
6843

[[package]]
name = "synstructure"
Ryan Olson's avatar
Ryan Olson committed
6844
version = "0.13.2"
6845
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6846
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
6847
6848
6849
dependencies = [
 "proc-macro2",
 "quote",
6850
 "syn",
6851
6852
6853
6854
6855
6856
6857
6858
]

[[package]]
name = "sysctl"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
dependencies = [
6859
 "bitflags 2.11.0",
6860
6861
6862
6863
6864
6865
6866
 "byteorder",
 "enum-as-inner",
 "libc",
 "thiserror 1.0.69",
 "walkdir",
]

6867
6868
[[package]]
name = "system-configuration"
6869
version = "0.7.0"
6870
source = "registry+https://github.com/rust-lang/crates.io-index"
6871
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
6872
dependencies = [
6873
 "bitflags 2.11.0",
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
 "core-foundation 0.9.4",
 "system-configuration-sys",
]

[[package]]
name = "system-configuration-sys"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
dependencies = [
 "core-foundation-sys",
 "libc",
]

6888
6889
6890
6891
6892
6893
6894
6895
6896
[[package]]
name = "system-deps"
version = "6.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
dependencies = [
 "cfg-expr",
 "heck",
 "pkg-config",
6897
 "toml 0.8.23",
6898
6899
6900
 "version-compare",
]

6901
6902
6903
6904
6905
6906
6907
6908
[[package]]
name = "target-lexicon"
version = "0.12.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"

[[package]]
name = "tempfile"
6909
version = "3.25.0"
6910
source = "registry+https://github.com/rust-lang/crates.io-index"
6911
checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
6912
6913
dependencies = [
 "fastrand",
6914
 "getrandom 0.4.1",
6915
 "once_cell",
6916
 "rustix 1.1.3",
6917
 "windows-sys 0.61.2",
6918
6919
6920
6921
6922
6923
6924
6925
]

[[package]]
name = "thiserror"
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
dependencies = [
6926
6927
6928
6929
6930
 "thiserror-impl 1.0.69",
]

[[package]]
name = "thiserror"
6931
version = "2.0.18"
6932
source = "registry+https://github.com/rust-lang/crates.io-index"
6933
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
6934
dependencies = [
6935
 "thiserror-impl 2.0.18",
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
]

[[package]]
name = "thiserror-impl"
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
dependencies = [
 "proc-macro2",
 "quote",
6946
 "syn",
6947
6948
]

6949
6950
[[package]]
name = "thiserror-impl"
6951
version = "2.0.18"
6952
source = "registry+https://github.com/rust-lang/crates.io-index"
6953
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
6954
6955
6956
dependencies = [
 "proc-macro2",
 "quote",
6957
 "syn",
6958
6959
]

6960
6961
[[package]]
name = "thread_local"
Ryan Olson's avatar
Ryan Olson committed
6962
version = "1.1.9"
6963
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
6964
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
6965
dependencies = [
6966
 "cfg-if 1.0.4",
6967
6968
]

6969
6970
[[package]]
name = "tiff"
6971
version = "0.10.3"
6972
source = "registry+https://github.com/rust-lang/crates.io-index"
6973
checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f"
6974
dependencies = [
6975
 "fax",
6976
 "flate2",
6977
6978
 "half",
 "quick-error",
6979
 "weezl",
6980
 "zune-jpeg 0.4.21",
6981
6982
]

6983
6984
[[package]]
name = "time"
6985
version = "0.3.47"
6986
source = "registry+https://github.com/rust-lang/crates.io-index"
6987
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
6988
6989
6990
dependencies = [
 "deranged",
 "itoa",
6991
 "libc",
6992
 "num-conv",
6993
 "num_threads",
6994
 "powerfmt",
6995
 "serde_core",
6996
6997
6998
6999
7000
7001
 "time-core",
 "time-macros",
]

[[package]]
name = "time-core"
7002
version = "0.1.8"
7003
source = "registry+https://github.com/rust-lang/crates.io-index"
7004
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
7005
7006
7007

[[package]]
name = "time-macros"
7008
version = "0.2.27"
7009
source = "registry+https://github.com/rust-lang/crates.io-index"
7010
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
7011
7012
7013
7014
7015
dependencies = [
 "num-conv",
 "time-core",
]

7016
7017
7018
7019
7020
7021
7022
7023
7024
[[package]]
name = "timerfd"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84e482e368cf7efa2c8b570f476e5b9fd9fd5e9b9219fc567832b05f13511091"
dependencies = [
 "rustix 0.38.44",
]

7025
7026
7027
7028
7029
7030
7031
7032
7033
[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
 "crunchy",
]

7034
7035
[[package]]
name = "tinystr"
7036
version = "0.8.2"
7037
source = "registry+https://github.com/rust-lang/crates.io-index"
7038
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
7039
7040
7041
7042
7043
dependencies = [
 "displaydoc",
 "zerovec",
]

Paul Hendricks's avatar
Paul Hendricks committed
7044
7045
[[package]]
name = "tinyvec"
Ryan Olson's avatar
Ryan Olson committed
7046
version = "1.10.0"
Paul Hendricks's avatar
Paul Hendricks committed
7047
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
7048
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
Paul Hendricks's avatar
Paul Hendricks committed
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
dependencies = [
 "tinyvec_macros",
]

[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"

Ryan Olson's avatar
Ryan Olson committed
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
[[package]]
name = "tmq"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3f41ac3a42f65436eed7e1afe80dbe8a982dcac2ea4581bf61bc2d3dcfb19a1"
dependencies = [
 "futures",
 "log",
 "thiserror 1.0.69",
 "tokio",
 "zmq",
]

Biswa Panda's avatar
Biswa Panda committed
7072
7073
[[package]]
name = "tokenizers"
7074
version = "0.21.4"
Biswa Panda's avatar
Biswa Panda committed
7075
source = "registry+https://github.com/rust-lang/crates.io-index"
7076
checksum = "a620b996116a59e184c2fa2dfd8251ea34a36d0a514758c6f966386bd2e03476"
Biswa Panda's avatar
Biswa Panda committed
7077
dependencies = [
7078
 "ahash",
Biswa Panda's avatar
Biswa Panda committed
7079
 "aho-corasick",
7080
7081
 "compact_str",
 "dary_heap",
Biswa Panda's avatar
Biswa Panda committed
7082
7083
 "derive_builder",
 "esaxx-rs",
7084
 "fancy-regex 0.14.0",
7085
 "getrandom 0.3.4",
Biswa Panda's avatar
Biswa Panda committed
7086
 "hf-hub",
7087
 "itertools 0.14.0",
Biswa Panda's avatar
Biswa Panda committed
7088
7089
7090
7091
7092
 "log",
 "macro_rules_attribute",
 "monostate",
 "onig",
 "paste",
Ryan Olson's avatar
Ryan Olson committed
7093
 "rand 0.9.2",
Biswa Panda's avatar
Biswa Panda committed
7094
7095
7096
 "rayon",
 "rayon-cond",
 "regex",
7097
 "regex-syntax",
Biswa Panda's avatar
Biswa Panda committed
7098
7099
7100
 "serde",
 "serde_json",
 "spm_precompiled",
7101
 "thiserror 2.0.18",
Biswa Panda's avatar
Biswa Panda committed
7102
7103
7104
7105
7106
 "unicode-normalization-alignments",
 "unicode-segmentation",
 "unicode_categories",
]

7107
7108
[[package]]
name = "tokio"
7109
version = "1.48.0"
7110
source = "registry+https://github.com/rust-lang/crates.io-index"
7111
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
7112
7113
7114
dependencies = [
 "bytes",
 "libc",
7115
 "mio 1.1.1",
7116
7117
7118
 "parking_lot",
 "pin-project-lite",
 "signal-hook-registry",
7119
 "socket2 0.6.2",
7120
 "tokio-macros",
7121
 "windows-sys 0.61.2",
7122
7123
7124
7125
]

[[package]]
name = "tokio-macros"
7126
version = "2.6.0"
7127
source = "registry+https://github.com/rust-lang/crates.io-index"
7128
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
7129
7130
7131
dependencies = [
 "proc-macro2",
 "quote",
7132
 "syn",
7133
7134
]

7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
[[package]]
name = "tokio-rayon"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cf33a76e0b1dd03b778f83244137bd59887abf25c0e87bc3e7071105f457693"
dependencies = [
 "rayon",
 "tokio",
]

7145
7146
[[package]]
name = "tokio-rustls"
7147
version = "0.26.4"
7148
source = "registry+https://github.com/rust-lang/crates.io-index"
7149
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
7150
7151
7152
7153
7154
7155
7156
dependencies = [
 "rustls",
 "tokio",
]

[[package]]
name = "tokio-stream"
7157
version = "0.1.18"
7158
source = "registry+https://github.com/rust-lang/crates.io-index"
7159
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
7160
7161
7162
7163
7164
7165
dependencies = [
 "futures-core",
 "pin-project-lite",
 "tokio",
]

7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
[[package]]
name = "tokio-timerfd"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87eecdae9a9b793843b1df7a64bc136f203443c1ca9889b3c4a39590afa51094"
dependencies = [
 "futures-core",
 "libc",
 "slab",
 "timerfd",
 "tokio",
]

7179
7180
[[package]]
name = "tokio-util"
7181
version = "0.7.18"
7182
source = "registry+https://github.com/rust-lang/crates.io-index"
7183
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
7184
7185
7186
dependencies = [
 "bytes",
 "futures-core",
7187
 "futures-io",
7188
 "futures-sink",
Ryan Olson's avatar
Ryan Olson committed
7189
 "futures-util",
7190
 "pin-project-lite",
7191
 "slab",
7192
7193
7194
7195
7196
7197
7198
7199
7200
 "tokio",
]

[[package]]
name = "tokio-websockets"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f591660438b3038dd04d16c938271c79e7e06260ad2ea2885a4861bfb238605d"
dependencies = [
Biswa Panda's avatar
Biswa Panda committed
7201
 "base64 0.22.1",
7202
7203
7204
7205
7206
 "bytes",
 "futures-core",
 "futures-sink",
 "http",
 "httparse",
7207
 "rand 0.8.5",
7208
7209
7210
7211
7212
 "ring",
 "rustls-pki-types",
 "tokio",
 "tokio-rustls",
 "tokio-util",
Ryan Olson's avatar
Ryan Olson committed
7213
 "webpki-roots 0.26.11",
7214
7215
]

Biswa Panda's avatar
Biswa Panda committed
7216
7217
[[package]]
name = "toktrie"
7218
version = "1.5.1"
Biswa Panda's avatar
Biswa Panda committed
7219
source = "registry+https://github.com/rust-lang/crates.io-index"
7220
checksum = "ffa8a452d8e72d897dc752aa6e93d8c7caae130d93292bb5b8c5e59baf0082b1"
Biswa Panda's avatar
Biswa Panda committed
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
dependencies = [
 "anyhow",
 "bytemuck",
 "bytemuck_derive",
 "serde",
 "serde_json",
]

[[package]]
name = "toktrie_hf_tokenizers"
7231
version = "1.5.1"
Biswa Panda's avatar
Biswa Panda committed
7232
source = "registry+https://github.com/rust-lang/crates.io-index"
7233
checksum = "30dd77f9b9277fc5418df1693e11c85c1c59b9d69fb95e8ef14acce8b0e98648"
Biswa Panda's avatar
Biswa Panda committed
7234
7235
7236
7237
7238
7239
dependencies = [
 "anyhow",
 "log",
 "serde",
 "serde_json",
 "tokenizers",
7240
 "toktrie",
Biswa Panda's avatar
Biswa Panda committed
7241
7242
]

7243
7244
[[package]]
name = "toml"
7245
version = "0.8.23"
7246
source = "registry+https://github.com/rust-lang/crates.io-index"
7247
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
7248
7249
dependencies = [
 "serde",
7250
7251
 "serde_spanned 0.6.9",
 "toml_datetime 0.6.11",
7252
 "toml_edit 0.22.27",
7253
7254
]

7255
7256
[[package]]
name = "toml"
7257
version = "0.9.12+spec-1.1.0"
7258
source = "registry+https://github.com/rust-lang/crates.io-index"
7259
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
7260
dependencies = [
7261
 "serde_core",
7262
7263
 "serde_spanned 1.0.4",
 "toml_datetime 0.7.5+spec-1.1.0",
7264
7265
7266
7267
 "toml_parser",
 "winnow",
]

7268
7269
[[package]]
name = "toml_datetime"
7270
version = "0.6.11"
7271
source = "registry+https://github.com/rust-lang/crates.io-index"
7272
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
7273
7274
7275
7276
dependencies = [
 "serde",
]

7277
7278
[[package]]
name = "toml_datetime"
7279
version = "0.7.5+spec-1.1.0"
7280
source = "registry+https://github.com/rust-lang/crates.io-index"
7281
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
7282
dependencies = [
7283
 "serde_core",
7284
7285
]

7286
7287
[[package]]
name = "toml_edit"
7288
version = "0.22.27"
7289
source = "registry+https://github.com/rust-lang/crates.io-index"
7290
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
7291
dependencies = [
7292
 "indexmap 2.13.0",
7293
 "serde",
7294
7295
 "serde_spanned 0.6.9",
 "toml_datetime 0.6.11",
7296
 "toml_write",
7297
7298
7299
 "winnow",
]

7300
7301
[[package]]
name = "toml_edit"
7302
version = "0.23.10+spec-1.0.0"
7303
source = "registry+https://github.com/rust-lang/crates.io-index"
7304
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
7305
dependencies = [
7306
7307
 "indexmap 2.13.0",
 "toml_datetime 0.7.5+spec-1.1.0",
7308
7309
7310
7311
 "toml_parser",
 "winnow",
]

7312
7313
[[package]]
name = "toml_parser"
7314
version = "1.0.9+spec-1.1.0"
7315
source = "registry+https://github.com/rust-lang/crates.io-index"
7316
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
7317
7318
7319
7320
dependencies = [
 "winnow",
]

7321
7322
[[package]]
name = "toml_write"
7323
version = "0.1.2"
7324
source = "registry+https://github.com/rust-lang/crates.io-index"
7325
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
7326

7327
7328
[[package]]
name = "tonic"
7329
version = "0.13.1"
7330
source = "registry+https://github.com/rust-lang/crates.io-index"
7331
checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
7332
7333
dependencies = [
 "async-trait",
7334
 "axum",
Biswa Panda's avatar
Biswa Panda committed
7335
 "base64 0.22.1",
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
 "bytes",
 "h2",
 "http",
 "http-body",
 "http-body-util",
 "hyper",
 "hyper-timeout",
 "hyper-util",
 "percent-encoding",
 "pin-project",
7346
 "prost 0.13.5",
Ryan Olson's avatar
Ryan Olson committed
7347
 "socket2 0.5.10",
7348
7349
 "tokio",
 "tokio-stream",
7350
 "tower",
7351
7352
7353
7354
7355
 "tower-layer",
 "tower-service",
 "tracing",
]

7356
7357
[[package]]
name = "tonic"
7358
version = "0.14.4"
7359
source = "registry+https://github.com/rust-lang/crates.io-index"
7360
checksum = "7f32a6f80051a4111560201420c7885d0082ba9efe2ab61875c587bb6b18b9a0"
7361
7362
dependencies = [
 "async-trait",
7363
 "axum",
7364
7365
 "base64 0.22.1",
 "bytes",
7366
 "h2",
7367
7368
7369
7370
7371
7372
7373
7374
 "http",
 "http-body",
 "http-body-util",
 "hyper",
 "hyper-timeout",
 "hyper-util",
 "percent-encoding",
 "pin-project",
7375
 "socket2 0.6.2",
7376
7377
 "sync_wrapper",
 "tokio",
7378
 "tokio-rustls",
7379
7380
7381
7382
7383
7384
7385
 "tokio-stream",
 "tower",
 "tower-layer",
 "tower-service",
 "tracing",
]

7386
7387
[[package]]
name = "tonic-build"
7388
version = "0.13.1"
7389
source = "registry+https://github.com/rust-lang/crates.io-index"
7390
checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
7391
7392
7393
dependencies = [
 "prettyplease",
 "proc-macro2",
7394
7395
7396
 "prost-build 0.13.5",
 "prost-types 0.13.5",
 "quote",
7397
 "syn",
7398
7399
7400
7401
]

[[package]]
name = "tonic-build"
7402
version = "0.14.4"
7403
source = "registry+https://github.com/rust-lang/crates.io-index"
7404
checksum = "ce6d8958ed3be404120ca43ffa0fb1e1fc7be214e96c8d33bd43a131b6eebc9e"
7405
7406
7407
dependencies = [
 "prettyplease",
 "proc-macro2",
7408
 "quote",
7409
 "syn",
7410
7411
]

7412
7413
[[package]]
name = "tonic-prost"
7414
version = "0.14.4"
7415
source = "registry+https://github.com/rust-lang/crates.io-index"
7416
checksum = "9f86539c0089bfd09b1f8c0ab0239d80392af74c21bc9e0f15e1b4aca4c1647f"
7417
7418
dependencies = [
 "bytes",
7419
7420
 "prost 0.14.3",
 "tonic 0.14.4",
7421
7422
]

7423
7424
[[package]]
name = "tonic-prost-build"
7425
version = "0.14.4"
7426
source = "registry+https://github.com/rust-lang/crates.io-index"
7427
checksum = "65873ace111e90344b8973e94a1fc817c924473affff24629281f90daed1cd2e"
7428
7429
7430
dependencies = [
 "prettyplease",
 "proc-macro2",
7431
7432
 "prost-build 0.14.3",
 "prost-types 0.14.3",
7433
 "quote",
7434
 "syn",
7435
 "tempfile",
7436
 "tonic-build 0.14.4",
7437
7438
]

7439
7440
[[package]]
name = "tower"
7441
version = "0.5.3"
7442
source = "registry+https://github.com/rust-lang/crates.io-index"
7443
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
7444
7445
7446
dependencies = [
 "futures-core",
 "futures-util",
7447
 "indexmap 2.13.0",
7448
 "pin-project-lite",
7449
 "slab",
7450
 "sync_wrapper",
7451
 "tokio",
7452
 "tokio-util",
7453
7454
 "tower-layer",
 "tower-service",
7455
 "tracing",
7456
7457
]

7458
7459
[[package]]
name = "tower-http"
7460
version = "0.6.8"
7461
source = "registry+https://github.com/rust-lang/crates.io-index"
7462
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
7463
dependencies = [
7464
 "base64 0.22.1",
7465
 "bitflags 2.11.0",
7466
7467
7468
7469
7470
 "bytes",
 "futures-util",
 "http",
 "http-body",
 "iri-string",
7471
 "mime",
7472
 "pin-project-lite",
7473
 "tower",
7474
7475
 "tower-layer",
 "tower-service",
7476
 "tracing",
7477
7478
]

7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
[[package]]
name = "tower-layer"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"

[[package]]
name = "tower-service"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"

[[package]]
name = "tracing"
7493
version = "0.1.44"
7494
source = "registry+https://github.com/rust-lang/crates.io-index"
7495
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
7496
dependencies = [
7497
 "log",
7498
7499
7500
7501
7502
7503
7504
 "pin-project-lite",
 "tracing-attributes",
 "tracing-core",
]

[[package]]
name = "tracing-attributes"
7505
version = "0.1.31"
7506
source = "registry+https://github.com/rust-lang/crates.io-index"
7507
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
7508
7509
7510
dependencies = [
 "proc-macro2",
 "quote",
7511
 "syn",
7512
7513
7514
7515
]

[[package]]
name = "tracing-core"
7516
version = "0.1.36"
7517
source = "registry+https://github.com/rust-lang/crates.io-index"
7518
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
7519
7520
dependencies = [
 "once_cell",
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
 "valuable",
]

[[package]]
name = "tracing-log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
 "log",
 "once_cell",
 "tracing-core",
]

7535
7536
[[package]]
name = "tracing-opentelemetry"
7537
version = "0.32.1"
7538
source = "registry+https://github.com/rust-lang/crates.io-index"
7539
checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc"
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
dependencies = [
 "js-sys",
 "opentelemetry",
 "smallvec",
 "tracing",
 "tracing-core",
 "tracing-log",
 "tracing-subscriber",
 "web-time",
]

7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
[[package]]
name = "tracing-serde"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
dependencies = [
 "serde",
 "tracing-core",
]

[[package]]
name = "tracing-subscriber"
7563
version = "0.3.22"
7564
source = "registry+https://github.com/rust-lang/crates.io-index"
7565
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
7566
7567
7568
7569
dependencies = [
 "matchers",
 "nu-ansi-term",
 "once_cell",
7570
 "regex-automata",
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
 "serde",
 "serde_json",
 "sharded-slab",
 "smallvec",
 "thread_local",
 "time",
 "tracing",
 "tracing-core",
 "tracing-log",
 "tracing-serde",
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
]

[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"

[[package]]
name = "tryhard"
Ryan Olson's avatar
Ryan Olson committed
7591
version = "0.5.2"
7592
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
7593
checksum = "9fe58ebd5edd976e0fe0f8a14d2a04b7c81ef153ea9a54eebc42e67c2c23b4e5"
7594
7595
7596
7597
7598
dependencies = [
 "pin-project-lite",
 "tokio",
]

7599
7600
7601
7602
7603
7604
[[package]]
name = "typed-path"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"

Biswa Panda's avatar
Biswa Panda committed
7605
7606
[[package]]
name = "typeid"
7607
version = "1.0.3"
Biswa Panda's avatar
Biswa Panda committed
7608
source = "registry+https://github.com/rust-lang/crates.io-index"
7609
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
Biswa Panda's avatar
Biswa Panda committed
7610

7611
7612
[[package]]
name = "typenum"
7613
version = "1.19.0"
7614
source = "registry+https://github.com/rust-lang/crates.io-index"
7615
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
7616

7617
7618
7619
7620
7621
7622
[[package]]
name = "ucd-trie"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"

7623
7624
7625
7626
7627
7628
7629
7630
7631
[[package]]
name = "uncased"
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
dependencies = [
 "version_check",
]

Biswa Panda's avatar
Biswa Panda committed
7632
7633
7634
7635
7636
7637
[[package]]
name = "unchecked-index"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"

7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
7671
7672
7673
7674
7675
7676
7677
7678
7679
7680
7681
7682
7683
7684
7685
7686
7687
7688
7689
[[package]]
name = "unic-char-property"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
dependencies = [
 "unic-char-range",
]

[[package]]
name = "unic-char-range"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"

[[package]]
name = "unic-common"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"

[[package]]
name = "unic-emoji-char"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
dependencies = [
 "unic-char-property",
 "unic-char-range",
 "unic-ucd-version",
]

[[package]]
name = "unic-ucd-ident"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
dependencies = [
 "unic-char-property",
 "unic-char-range",
 "unic-ucd-version",
]

[[package]]
name = "unic-ucd-version"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
dependencies = [
 "unic-common",
]

Paul Hendricks's avatar
Paul Hendricks committed
7690
7691
[[package]]
name = "unicase"
7692
version = "2.9.0"
Paul Hendricks's avatar
Paul Hendricks committed
7693
source = "registry+https://github.com/rust-lang/crates.io-index"
7694
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
Paul Hendricks's avatar
Paul Hendricks committed
7695

7696
7697
7698
7699
7700
7701
[[package]]
name = "unicode-general-category"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"

7702
7703
[[package]]
name = "unicode-ident"
7704
version = "1.0.24"
Biswa Panda's avatar
Biswa Panda committed
7705
source = "registry+https://github.com/rust-lang/crates.io-index"
7706
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
Biswa Panda's avatar
Biswa Panda committed
7707
7708
7709
7710

[[package]]
name = "unicode-normalization-alignments"
version = "0.1.12"
7711
source = "registry+https://github.com/rust-lang/crates.io-index"
Biswa Panda's avatar
Biswa Panda committed
7712
7713
7714
7715
checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
dependencies = [
 "smallvec",
]
7716

7717
7718
7719
7720
7721
7722
[[package]]
name = "unicode-segmentation"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"

Biswa Panda's avatar
Biswa Panda committed
7723
7724
[[package]]
name = "unicode-width"
7725
version = "0.2.2"
Biswa Panda's avatar
Biswa Panda committed
7726
source = "registry+https://github.com/rust-lang/crates.io-index"
7727
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
Biswa Panda's avatar
Biswa Panda committed
7728

7729
7730
7731
7732
7733
7734
[[package]]
name = "unicode-xid"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"

Biswa Panda's avatar
Biswa Panda committed
7735
7736
7737
7738
7739
7740
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"

7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
[[package]]
name = "unicode_names2"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
dependencies = [
 "phf",
 "unicode_names2_generator",
]

[[package]]
name = "unicode_names2_generator"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
dependencies = [
 "getopts",
 "log",
 "phf_codegen",
 "rand 0.8.5",
]

7763
7764
[[package]]
name = "unindent"
7765
version = "0.2.4"
7766
source = "registry+https://github.com/rust-lang/crates.io-index"
7767
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
7768

7769
7770
7771
7772
7773
7774
[[package]]
name = "unsafe-libyaml"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"

7775
7776
7777
7778
7779
7780
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"

7781
7782
7783
7784
7785
7786
[[package]]
name = "unty"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"

Biswa Panda's avatar
Biswa Panda committed
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
[[package]]
name = "ureq"
version = "2.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
dependencies = [
 "base64 0.22.1",
 "flate2",
 "log",
 "once_cell",
 "rustls",
 "rustls-pki-types",
 "serde",
 "serde_json",
7801
 "socks",
Biswa Panda's avatar
Biswa Panda committed
7802
 "url",
Ryan Olson's avatar
Ryan Olson committed
7803
 "webpki-roots 0.26.11",
Biswa Panda's avatar
Biswa Panda committed
7804
7805
]

7806
7807
[[package]]
name = "url"
7808
version = "2.5.8"
7809
source = "registry+https://github.com/rust-lang/crates.io-index"
7810
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
7811
7812
7813
7814
dependencies = [
 "form_urlencoded",
 "idna",
 "percent-encoding",
7815
 "serde",
7816
 "serde_derive",
7817
7818
7819
7820
7821
7822
7823
7824
7825
7826
7827
7828
7829
7830
]

[[package]]
name = "utf8_iter"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"

[[package]]
name = "utf8parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"

7831
7832
7833
7834
7835
7836
[[package]]
name = "utoipa"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993"
dependencies = [
7837
 "indexmap 2.13.0",
7838
7839
7840
7841
7842
7843
7844
7845
7846
7847
7848
7849
7850
7851
 "serde",
 "serde_json",
 "utoipa-gen",
]

[[package]]
name = "utoipa-gen"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b"
dependencies = [
 "proc-macro2",
 "quote",
 "regex",
7852
 "syn",
7853
7854
 "url",
 "uuid",
7855
7856
7857
7858
7859
7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
]

[[package]]
name = "utoipa-swagger-ui"
version = "9.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d047458f1b5b65237c2f6dc6db136945667f40a7668627b3490b9513a3d43a55"
dependencies = [
 "axum",
 "base64 0.22.1",
 "mime_guess",
 "regex",
 "rust-embed",
 "serde",
 "serde_json",
 "url",
 "utoipa",
 "zip 3.0.0",
]

7875
7876
[[package]]
name = "uuid"
7877
version = "1.21.0"
7878
source = "registry+https://github.com/rust-lang/crates.io-index"
7879
checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
7880
dependencies = [
7881
 "getrandom 0.4.1",
7882
 "js-sys",
7883
 "serde_core",
7884
 "wasm-bindgen",
7885
7886
]

7887
7888
7889
7890
7891
7892
7893
7894
7895
7896
7897
[[package]]
name = "v_frame"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
dependencies = [
 "aligned-vec",
 "num-traits",
 "wasm-bindgen",
]

7898
7899
7900
7901
7902
7903
7904
7905
7906
7907
7908
7909
7910
7911
7912
7913
7914
7915
7916
7917
7918
7919
[[package]]
name = "validator"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43fb22e1a008ece370ce08a3e9e4447a910e92621bb49b85d6e48a45397e7cfa"
dependencies = [
 "idna",
 "once_cell",
 "regex",
 "serde",
 "serde_derive",
 "serde_json",
 "url",
 "validator_derive",
]

[[package]]
name = "validator_derive"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7df16e474ef958526d1205f6dda359fdfab79d9aa6d54bafcb92dcd07673dca"
dependencies = [
7920
 "darling 0.20.11",
7921
7922
7923
7924
 "once_cell",
 "proc-macro-error2",
 "proc-macro2",
 "quote",
7925
 "syn",
7926
7927
]

7928
7929
7930
7931
7932
7933
[[package]]
name = "valuable"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"

7934
7935
7936
7937
7938
7939
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"

7940
7941
[[package]]
name = "version-compare"
7942
version = "0.2.1"
7943
source = "registry+https://github.com/rust-lang/crates.io-index"
7944
checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
7945

7946
7947
7948
7949
7950
7951
[[package]]
name = "version_check"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"

7952
7953
7954
7955
7956
7957
7958
7959
7960
7961
7962
[[package]]
name = "video-rs"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "859aad7261bac267f90f9635ec9addba3b4bcb4bbb2edb03fec3e6b765657bee"
dependencies = [
 "ffmpeg-next",
 "tracing",
 "url",
]

7963
7964
7965
7966
7967
7968
[[package]]
name = "virtue"
version = "0.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"

7969
7970
7971
7972
7973
7974
7975
7976
7977
7978
[[package]]
name = "walkdir"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
dependencies = [
 "same-file",
 "winapi-util",
]

7979
7980
7981
7982
7983
7984
7985
7986
7987
7988
7989
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
 "try-lock",
]

[[package]]
name = "wasi"
Ryan Olson's avatar
Ryan Olson committed
7990
version = "0.11.1+wasi-snapshot-preview1"
7991
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
7992
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
7993
7994

[[package]]
7995
name = "wasip2"
7996
version = "1.0.2+wasi-0.2.9"
7997
source = "registry+https://github.com/rust-lang/crates.io-index"
7998
7999
8000
8001
8002
8003
8004
8005
8006
8007
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
dependencies = [
 "wit-bindgen",
]

[[package]]
name = "wasip3"
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
8008
dependencies = [
8009
 "wit-bindgen",
8010
8011
]

8012
8013
[[package]]
name = "wasm-bindgen"
8014
version = "0.2.108"
8015
source = "registry+https://github.com/rust-lang/crates.io-index"
8016
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
8017
dependencies = [
8018
 "cfg-if 1.0.4",
8019
8020
8021
8022
8023
8024
 "once_cell",
 "rustversion",
 "wasm-bindgen-macro",
 "wasm-bindgen-shared",
]

Paul Hendricks's avatar
Paul Hendricks committed
8025
8026
[[package]]
name = "wasm-bindgen-futures"
8027
version = "0.4.58"
Paul Hendricks's avatar
Paul Hendricks committed
8028
source = "registry+https://github.com/rust-lang/crates.io-index"
8029
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
Paul Hendricks's avatar
Paul Hendricks committed
8030
dependencies = [
8031
 "cfg-if 1.0.4",
8032
 "futures-util",
Paul Hendricks's avatar
Paul Hendricks committed
8033
8034
8035
8036
8037
8038
 "js-sys",
 "once_cell",
 "wasm-bindgen",
 "web-sys",
]

8039
8040
[[package]]
name = "wasm-bindgen-macro"
8041
version = "0.2.108"
8042
source = "registry+https://github.com/rust-lang/crates.io-index"
8043
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
8044
8045
8046
8047
8048
8049
8050
dependencies = [
 "quote",
 "wasm-bindgen-macro-support",
]

[[package]]
name = "wasm-bindgen-macro-support"
8051
version = "0.2.108"
8052
source = "registry+https://github.com/rust-lang/crates.io-index"
8053
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
8054
dependencies = [
8055
 "bumpalo",
8056
8057
 "proc-macro2",
 "quote",
8058
 "syn",
8059
8060
8061
8062
8063
 "wasm-bindgen-shared",
]

[[package]]
name = "wasm-bindgen-shared"
8064
version = "0.2.108"
8065
source = "registry+https://github.com/rust-lang/crates.io-index"
8066
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
8067
8068
8069
8070
dependencies = [
 "unicode-ident",
]

8071
8072
8073
8074
8075
8076
8077
8078
8079
8080
8081
8082
8083
8084
8085
8086
8087
8088
8089
8090
8091
8092
[[package]]
name = "wasm-encoder"
version = "0.244.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
dependencies = [
 "leb128fmt",
 "wasmparser",
]

[[package]]
name = "wasm-metadata"
version = "0.244.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
dependencies = [
 "anyhow",
 "indexmap 2.13.0",
 "wasm-encoder",
 "wasmparser",
]

Paul Hendricks's avatar
Paul Hendricks committed
8093
8094
8095
8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
[[package]]
name = "wasm-streams"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
dependencies = [
 "futures-util",
 "js-sys",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "web-sys",
]

8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
[[package]]
name = "wasmparser"
version = "0.244.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
dependencies = [
 "bitflags 2.11.0",
 "hashbrown 0.15.5",
 "indexmap 2.13.0",
 "semver",
]

Paul Hendricks's avatar
Paul Hendricks committed
8118
8119
[[package]]
name = "web-sys"
8120
version = "0.3.85"
Paul Hendricks's avatar
Paul Hendricks committed
8121
source = "registry+https://github.com/rust-lang/crates.io-index"
8122
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
Paul Hendricks's avatar
Paul Hendricks committed
8123
8124
8125
8126
8127
dependencies = [
 "js-sys",
 "wasm-bindgen",
]

Biswa Panda's avatar
Biswa Panda committed
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
[[package]]
name = "web-time"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
dependencies = [
 "js-sys",
 "wasm-bindgen",
]

[[package]]
name = "webpki-roots"
Ryan Olson's avatar
Ryan Olson committed
8140
version = "0.26.11"
Biswa Panda's avatar
Biswa Panda committed
8141
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
8142
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
Biswa Panda's avatar
Biswa Panda committed
8143
dependencies = [
8144
 "webpki-roots 1.0.6",
Biswa Panda's avatar
Biswa Panda committed
8145
8146
]

8147
8148
[[package]]
name = "webpki-roots"
8149
version = "1.0.6"
8150
source = "registry+https://github.com/rust-lang/crates.io-index"
8151
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
8152
8153
8154
8155
dependencies = [
 "rustls-pki-types",
]

8156
8157
[[package]]
name = "weezl"
8158
version = "0.1.12"
Graham King's avatar
Graham King committed
8159
source = "registry+https://github.com/rust-lang/crates.io-index"
8160
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
Graham King's avatar
Graham King committed
8161

8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"

[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
 "winapi-i686-pc-windows-gnu",
 "winapi-x86_64-pc-windows-gnu",
]

[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"

[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"

[[package]]
name = "winapi-util"
8192
version = "0.1.11"
8193
source = "registry+https://github.com/rust-lang/crates.io-index"
8194
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
8195
dependencies = [
8196
 "windows-sys 0.61.2",
8197
8198
8199
8200
8201
8202
8203
8204
]

[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"

8205
8206
[[package]]
name = "windows-core"
8207
version = "0.62.2"
8208
source = "registry+https://github.com/rust-lang/crates.io-index"
8209
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
8210
dependencies = [
8211
8212
 "windows-implement",
 "windows-interface",
8213
8214
8215
 "windows-link",
 "windows-result",
 "windows-strings",
8216
8217
8218
8219
]

[[package]]
name = "windows-implement"
8220
version = "0.60.2"
8221
source = "registry+https://github.com/rust-lang/crates.io-index"
8222
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
8223
8224
8225
dependencies = [
 "proc-macro2",
 "quote",
8226
 "syn",
8227
8228
8229
8230
]

[[package]]
name = "windows-interface"
8231
version = "0.59.3"
8232
source = "registry+https://github.com/rust-lang/crates.io-index"
8233
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
8234
8235
8236
dependencies = [
 "proc-macro2",
 "quote",
8237
 "syn",
Biswa Panda's avatar
Biswa Panda committed
8238
8239
]

8240
8241
8242
8243
8244
8245
[[package]]
name = "windows-link"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"

Paul Hendricks's avatar
Paul Hendricks committed
8246
8247
[[package]]
name = "windows-registry"
8248
version = "0.6.1"
Paul Hendricks's avatar
Paul Hendricks committed
8249
source = "registry+https://github.com/rust-lang/crates.io-index"
8250
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
Paul Hendricks's avatar
Paul Hendricks committed
8251
dependencies = [
8252
8253
8254
 "windows-link",
 "windows-result",
 "windows-strings",
Paul Hendricks's avatar
Paul Hendricks committed
8255
8256
]

8257
8258
8259
8260
8261
8262
[[package]]
name = "windows-result"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
dependencies = [
8263
 "windows-link",
8264
8265
]

8266
8267
8268
8269
8270
8271
[[package]]
name = "windows-strings"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
dependencies = [
8272
 "windows-link",
8273
8274
]

8275
8276
8277
8278
8279
8280
8281
8282
8283
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
 "windows-targets 0.48.5",
]

8284
8285
8286
8287
8288
8289
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
Biswa Panda's avatar
Biswa Panda committed
8290
 "windows-targets 0.52.6",
8291
8292
8293
8294
8295
8296
8297
8298
]

[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
Biswa Panda's avatar
Biswa Panda committed
8299
8300
8301
8302
 "windows-targets 0.52.6",
]

[[package]]
Ryan Olson's avatar
Ryan Olson committed
8303
8304
name = "windows-sys"
version = "0.60.2"
Biswa Panda's avatar
Biswa Panda committed
8305
source = "registry+https://github.com/rust-lang/crates.io-index"
Ryan Olson's avatar
Ryan Olson committed
8306
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
Biswa Panda's avatar
Biswa Panda committed
8307
dependencies = [
8308
8309
8310
8311
8312
8313
8314
8315
8316
 "windows-targets 0.53.5",
]

[[package]]
name = "windows-sys"
version = "0.61.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
dependencies = [
8317
 "windows-link",
8318
8319
]

8320
8321
8322
8323
8324
8325
8326
8327
8328
8329
8330
8331
8332
8333
8334
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
 "windows_aarch64_gnullvm 0.48.5",
 "windows_aarch64_msvc 0.48.5",
 "windows_i686_gnu 0.48.5",
 "windows_i686_msvc 0.48.5",
 "windows_x86_64_gnu 0.48.5",
 "windows_x86_64_gnullvm 0.48.5",
 "windows_x86_64_msvc 0.48.5",
]

8335
8336
8337
8338
8339
8340
[[package]]
name = "windows-targets"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
Biswa Panda's avatar
Biswa Panda committed
8341
8342
8343
 "windows_aarch64_gnullvm 0.52.6",
 "windows_aarch64_msvc 0.52.6",
 "windows_i686_gnu 0.52.6",
Ryan Olson's avatar
Ryan Olson committed
8344
 "windows_i686_gnullvm 0.52.6",
Biswa Panda's avatar
Biswa Panda committed
8345
8346
8347
8348
 "windows_i686_msvc 0.52.6",
 "windows_x86_64_gnu 0.52.6",
 "windows_x86_64_gnullvm 0.52.6",
 "windows_x86_64_msvc 0.52.6",
8349
8350
]

Biswa Panda's avatar
Biswa Panda committed
8351
[[package]]
Ryan Olson's avatar
Ryan Olson committed
8352
name = "windows-targets"
8353
version = "0.53.5"
Biswa Panda's avatar
Biswa Panda committed
8354
source = "registry+https://github.com/rust-lang/crates.io-index"
8355
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
Ryan Olson's avatar
Ryan Olson committed
8356
dependencies = [
8357
 "windows-link",
8358
8359
8360
8361
8362
8363
8364
8365
 "windows_aarch64_gnullvm 0.53.1",
 "windows_aarch64_msvc 0.53.1",
 "windows_i686_gnu 0.53.1",
 "windows_i686_gnullvm 0.53.1",
 "windows_i686_msvc 0.53.1",
 "windows_x86_64_gnu 0.53.1",
 "windows_x86_64_gnullvm 0.53.1",
 "windows_x86_64_msvc 0.53.1",
Ryan Olson's avatar
Ryan Olson committed
8366
]
Biswa Panda's avatar
Biswa Panda committed
8367

8368
8369
8370
8371
8372
8373
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"

8374
8375
8376
8377
8378
8379
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"

Biswa Panda's avatar
Biswa Panda committed
8380
[[package]]
Ryan Olson's avatar
Ryan Olson committed
8381
name = "windows_aarch64_gnullvm"
8382
version = "0.53.1"
Biswa Panda's avatar
Biswa Panda committed
8383
source = "registry+https://github.com/rust-lang/crates.io-index"
8384
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
Biswa Panda's avatar
Biswa Panda committed
8385

8386
8387
8388
8389
8390
8391
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"

8392
8393
8394
8395
8396
8397
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"

Biswa Panda's avatar
Biswa Panda committed
8398
[[package]]
Ryan Olson's avatar
Ryan Olson committed
8399
name = "windows_aarch64_msvc"
8400
version = "0.53.1"
Biswa Panda's avatar
Biswa Panda committed
8401
source = "registry+https://github.com/rust-lang/crates.io-index"
8402
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
Biswa Panda's avatar
Biswa Panda committed
8403

8404
8405
8406
8407
8408
8409
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"

8410
8411
8412
8413
8414
8415
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"

Ryan Olson's avatar
Ryan Olson committed
8416
8417
[[package]]
name = "windows_i686_gnu"
8418
version = "0.53.1"
Ryan Olson's avatar
Ryan Olson committed
8419
source = "registry+https://github.com/rust-lang/crates.io-index"
8420
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
Ryan Olson's avatar
Ryan Olson committed
8421

8422
8423
8424
8425
8426
8427
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"

Biswa Panda's avatar
Biswa Panda committed
8428
[[package]]
Ryan Olson's avatar
Ryan Olson committed
8429
name = "windows_i686_gnullvm"
8430
version = "0.53.1"
Biswa Panda's avatar
Biswa Panda committed
8431
source = "registry+https://github.com/rust-lang/crates.io-index"
8432
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
Biswa Panda's avatar
Biswa Panda committed
8433

8434
8435
8436
8437
8438
8439
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"

8440
8441
8442
8443
8444
8445
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"

Biswa Panda's avatar
Biswa Panda committed
8446
[[package]]
Ryan Olson's avatar
Ryan Olson committed
8447
name = "windows_i686_msvc"
8448
version = "0.53.1"
Biswa Panda's avatar
Biswa Panda committed
8449
source = "registry+https://github.com/rust-lang/crates.io-index"
8450
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
Biswa Panda's avatar
Biswa Panda committed
8451

8452
8453
8454
8455
8456
8457
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"

8458
8459
8460
8461
8462
8463
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"

Biswa Panda's avatar
Biswa Panda committed
8464
[[package]]
Ryan Olson's avatar
Ryan Olson committed
8465
name = "windows_x86_64_gnu"
8466
version = "0.53.1"
Biswa Panda's avatar
Biswa Panda committed
8467
source = "registry+https://github.com/rust-lang/crates.io-index"
8468
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
Biswa Panda's avatar
Biswa Panda committed
8469

8470
8471
8472
8473
8474
8475
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"

8476
8477
8478
8479
8480
8481
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"

Biswa Panda's avatar
Biswa Panda committed
8482
[[package]]
Ryan Olson's avatar
Ryan Olson committed
8483
name = "windows_x86_64_gnullvm"
8484
version = "0.53.1"
Biswa Panda's avatar
Biswa Panda committed
8485
source = "registry+https://github.com/rust-lang/crates.io-index"
8486
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
Biswa Panda's avatar
Biswa Panda committed
8487

8488
8489
8490
8491
8492
8493
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"

8494
8495
8496
8497
8498
8499
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"

Ryan Olson's avatar
Ryan Olson committed
8500
8501
[[package]]
name = "windows_x86_64_msvc"
8502
version = "0.53.1"
Ryan Olson's avatar
Ryan Olson committed
8503
source = "registry+https://github.com/rust-lang/crates.io-index"
8504
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
Ryan Olson's avatar
Ryan Olson committed
8505

8506
8507
[[package]]
name = "winnow"
8508
version = "0.7.14"
8509
source = "registry+https://github.com/rust-lang/crates.io-index"
8510
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
8511
8512
8513
8514
8515
dependencies = [
 "memchr",
]

[[package]]
8516
name = "wit-bindgen"
8517
version = "0.51.0"
8518
source = "registry+https://github.com/rust-lang/crates.io-index"
8519
8520
8521
8522
8523
8524
8525
8526
8527
8528
8529
8530
8531
8532
8533
8534
8535
8536
8537
8538
8539
8540
8541
8542
8543
8544
8545
8546
8547
8548
8549
8550
8551
8552
8553
8554
8555
8556
8557
8558
8559
8560
8561
8562
8563
8564
8565
8566
8567
8568
8569
8570
8571
8572
8573
8574
8575
8576
8577
8578
8579
8580
8581
8582
8583
8584
8585
8586
8587
8588
8589
8590
8591
8592
8593
8594
8595
8596
8597
8598
8599
8600
8601
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
dependencies = [
 "wit-bindgen-rust-macro",
]

[[package]]
name = "wit-bindgen-core"
version = "0.51.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
dependencies = [
 "anyhow",
 "heck",
 "wit-parser",
]

[[package]]
name = "wit-bindgen-rust"
version = "0.51.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
dependencies = [
 "anyhow",
 "heck",
 "indexmap 2.13.0",
 "prettyplease",
 "syn",
 "wasm-metadata",
 "wit-bindgen-core",
 "wit-component",
]

[[package]]
name = "wit-bindgen-rust-macro"
version = "0.51.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
dependencies = [
 "anyhow",
 "prettyplease",
 "proc-macro2",
 "quote",
 "syn",
 "wit-bindgen-core",
 "wit-bindgen-rust",
]

[[package]]
name = "wit-component"
version = "0.244.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
dependencies = [
 "anyhow",
 "bitflags 2.11.0",
 "indexmap 2.13.0",
 "log",
 "serde",
 "serde_derive",
 "serde_json",
 "wasm-encoder",
 "wasm-metadata",
 "wasmparser",
 "wit-parser",
]

[[package]]
name = "wit-parser"
version = "0.244.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
dependencies = [
 "anyhow",
 "id-arena",
 "indexmap 2.13.0",
 "log",
 "semver",
 "serde",
 "serde_derive",
 "serde_json",
 "unicode-xid",
 "wasmparser",
]
8602
8603
8604

[[package]]
name = "writeable"
8605
version = "0.6.2"
8606
source = "registry+https://github.com/rust-lang/crates.io-index"
8607
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
8608

8609
8610
8611
8612
8613
8614
8615
8616
8617
8618
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
 "winapi 0.2.8",
 "winapi-build",
]

8619
8620
8621
8622
8623
8624
[[package]]
name = "xxhash-rust"
version = "0.8.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"

8625
8626
8627
8628
8629
8630
[[package]]
name = "y4m"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"

8631
8632
8633
8634
8635
8636
8637
8638
8639
8640
8641
[[package]]
name = "yaml-rust2"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9"
dependencies = [
 "arraydeque",
 "encoding_rs",
 "hashlink",
]

8642
8643
8644
8645
8646
8647
[[package]]
name = "yansi"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"

Ryan Olson's avatar
Ryan Olson committed
8648
8649
[[package]]
name = "yoke"
8650
version = "0.8.1"
Ryan Olson's avatar
Ryan Olson committed
8651
source = "registry+https://github.com/rust-lang/crates.io-index"
8652
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
Ryan Olson's avatar
Ryan Olson committed
8653
8654
dependencies = [
 "stable_deref_trait",
8655
 "yoke-derive",
8656
8657
8658
 "zerofrom",
]

Ryan Olson's avatar
Ryan Olson committed
8659
8660
[[package]]
name = "yoke-derive"
8661
version = "0.8.1"
Ryan Olson's avatar
Ryan Olson committed
8662
source = "registry+https://github.com/rust-lang/crates.io-index"
8663
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
Ryan Olson's avatar
Ryan Olson committed
8664
8665
8666
dependencies = [
 "proc-macro2",
 "quote",
8667
 "syn",
8668
8669
8670
8671
8672
 "synstructure",
]

[[package]]
name = "zerocopy"
8673
version = "0.8.39"
8674
source = "registry+https://github.com/rust-lang/crates.io-index"
8675
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
8676
8677
8678
8679
8680
8681
dependencies = [
 "zerocopy-derive",
]

[[package]]
name = "zerocopy-derive"
8682
version = "0.8.39"
8683
source = "registry+https://github.com/rust-lang/crates.io-index"
8684
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
8685
8686
8687
dependencies = [
 "proc-macro2",
 "quote",
8688
 "syn",
8689
8690
8691
8692
]

[[package]]
name = "zerofrom"
8693
version = "0.1.6"
8694
source = "registry+https://github.com/rust-lang/crates.io-index"
8695
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
8696
8697
8698
8699
8700
8701
dependencies = [
 "zerofrom-derive",
]

[[package]]
name = "zerofrom-derive"
8702
version = "0.1.6"
8703
source = "registry+https://github.com/rust-lang/crates.io-index"
8704
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
8705
8706
8707
dependencies = [
 "proc-macro2",
 "quote",
8708
 "syn",
8709
8710
8711
8712
8713
 "synstructure",
]

[[package]]
name = "zeroize"
8714
version = "1.8.2"
8715
source = "registry+https://github.com/rust-lang/crates.io-index"
8716
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
8717

8718
8719
8720
8721
8722
8723
8724
8725
8726
8727
[[package]]
name = "zeromq"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a4528179201f6eecf211961a7d3276faa61554c82651ecc66387f68fc3004bd"
dependencies = [
 "async-trait",
 "asynchronous-codec",
 "bytes",
 "crossbeam-queue",
8728
 "dashmap 5.5.3",
8729
8730
8731
8732
8733
8734
8735
8736
8737
8738
8739
8740
8741
 "futures-channel",
 "futures-io",
 "futures-task",
 "futures-util",
 "log",
 "num-traits",
 "once_cell",
 "parking_lot",
 "rand 0.8.5",
 "regex",
 "thiserror 1.0.69",
 "tokio",
 "tokio-util",
8742
 "uuid",
8743
8744
]

8745
8746
8747
8748
8749
8750
8751
8752
8753
8754
[[package]]
name = "zeromq-src"
version = "0.2.6+4.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc120b771270365d5ed0dfb4baf1005f2243ae1ae83703265cb3504070f4160b"
dependencies = [
 "cc",
 "dircpy",
]

Ryan Olson's avatar
Ryan Olson committed
8755
8756
[[package]]
name = "zerotrie"
8757
version = "0.2.3"
Ryan Olson's avatar
Ryan Olson committed
8758
source = "registry+https://github.com/rust-lang/crates.io-index"
8759
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
Ryan Olson's avatar
Ryan Olson committed
8760
8761
dependencies = [
 "displaydoc",
8762
 "yoke",
Ryan Olson's avatar
Ryan Olson committed
8763
8764
8765
 "zerofrom",
]

8766
8767
[[package]]
name = "zerovec"
8768
version = "0.11.5"
8769
source = "registry+https://github.com/rust-lang/crates.io-index"
8770
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
8771
dependencies = [
8772
 "yoke",
8773
8774
8775
8776
8777
8778
 "zerofrom",
 "zerovec-derive",
]

[[package]]
name = "zerovec-derive"
8779
version = "0.11.2"
8780
source = "registry+https://github.com/rust-lang/crates.io-index"
8781
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
8782
8783
8784
dependencies = [
 "proc-macro2",
 "quote",
8785
 "syn",
8786
]
8787

8788
8789
[[package]]
name = "zip"
8790
version = "2.4.2"
8791
source = "registry+https://github.com/rust-lang/crates.io-index"
8792
checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
8793
8794
8795
8796
8797
dependencies = [
 "arbitrary",
 "crc32fast",
 "crossbeam-utils",
 "displaydoc",
8798
8799
8800
8801
8802
 "flate2",
 "indexmap 2.13.0",
 "memchr",
 "thiserror 2.0.18",
 "zopfli",
8803
8804
]

8805
8806
[[package]]
name = "zip"
8807
version = "3.0.0"
8808
source = "registry+https://github.com/rust-lang/crates.io-index"
8809
checksum = "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308"
8810
8811
8812
8813
dependencies = [
 "arbitrary",
 "crc32fast",
 "flate2",
8814
 "indexmap 2.13.0",
8815
8816
8817
8818
 "memchr",
 "zopfli",
]

8819
8820
[[package]]
name = "zip"
8821
version = "7.2.0"
8822
source = "registry+https://github.com/rust-lang/crates.io-index"
8823
checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
8824
8825
dependencies = [
 "crc32fast",
8826
 "indexmap 2.13.0",
8827
 "memchr",
8828
 "typed-path",
8829
8830
8831
8832
]

[[package]]
name = "zlib-rs"
8833
8834
8835
8836
8837
8838
8839
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c745c48e1007337ed136dc99df34128b9faa6ed542d80a1c673cf55a6d7236c8"

[[package]]
name = "zmij"
version = "1.0.21"
8840
source = "registry+https://github.com/rust-lang/crates.io-index"
8841
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
8842

8843
8844
8845
8846
8847
8848
8849
8850
8851
8852
8853
8854
8855
8856
8857
8858
8859
8860
8861
8862
8863
[[package]]
name = "zmq"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd3091dd571fb84a9b3e5e5c6a807d186c411c812c8618786c3c30e5349234e7"
dependencies = [
 "bitflags 1.3.2",
 "libc",
 "zmq-sys",
]

[[package]]
name = "zmq-sys"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e8351dc72494b4d7f5652a681c33634063bbad58046c1689e75270908fdc864"
dependencies = [
 "libc",
 "system-deps",
 "zeromq-src",
]
8864

8865
8866
[[package]]
name = "zopfli"
8867
version = "0.8.3"
8868
source = "registry+https://github.com/rust-lang/crates.io-index"
8869
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
8870
8871
8872
8873
8874
8875
8876
dependencies = [
 "bumpalo",
 "crc32fast",
 "log",
 "simd-adler32",
]

8877
8878
8879
8880
8881
8882
[[package]]
name = "zune-core"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"

8883
8884
8885
8886
8887
8888
[[package]]
name = "zune-core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"

8889
8890
8891
8892
8893
8894
8895
8896
8897
8898
8899
[[package]]
name = "zune-inflate"
version = "0.2.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
dependencies = [
 "simd-adler32",
]

[[package]]
name = "zune-jpeg"
8900
version = "0.4.21"
8901
source = "registry+https://github.com/rust-lang/crates.io-index"
8902
checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
8903
dependencies = [
8904
8905
8906
8907
8908
8909
8910
8911
8912
8913
 "zune-core 0.4.12",
]

[[package]]
name = "zune-jpeg"
version = "0.5.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "410e9ecef634c709e3831c2cfdb8d9c32164fae1c67496d5b68fff728eec37fe"
dependencies = [
 "zune-core 0.5.1",
8914
]