kino 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Cargo.lock ADDED
@@ -0,0 +1,993 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "allocator-api2"
29
+ version = "0.2.21"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
32
+
33
+ [[package]]
34
+ name = "atomic-waker"
35
+ version = "1.1.2"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
38
+
39
+ [[package]]
40
+ name = "bindgen"
41
+ version = "0.72.1"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
44
+ dependencies = [
45
+ "bitflags",
46
+ "cexpr",
47
+ "clang-sys",
48
+ "itertools",
49
+ "proc-macro2",
50
+ "quote",
51
+ "regex",
52
+ "rustc-hash",
53
+ "shlex 1.3.0",
54
+ "syn",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "bitflags"
59
+ version = "2.13.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
62
+
63
+ [[package]]
64
+ name = "bumpalo"
65
+ version = "3.20.3"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
68
+
69
+ [[package]]
70
+ name = "bytes"
71
+ version = "1.11.1"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
74
+
75
+ [[package]]
76
+ name = "cc"
77
+ version = "1.2.63"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
80
+ dependencies = [
81
+ "find-msvc-tools",
82
+ "shlex 2.0.1",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "cexpr"
87
+ version = "0.6.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
90
+ dependencies = [
91
+ "nom",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "cfg-if"
96
+ version = "1.0.4"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
99
+
100
+ [[package]]
101
+ name = "clang-sys"
102
+ version = "1.8.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
105
+ dependencies = [
106
+ "glob",
107
+ "libc",
108
+ "libloading",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "either"
113
+ version = "1.16.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
116
+
117
+ [[package]]
118
+ name = "equivalent"
119
+ version = "1.0.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
122
+
123
+ [[package]]
124
+ name = "find-msvc-tools"
125
+ version = "0.1.9"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
128
+
129
+ [[package]]
130
+ name = "flume"
131
+ version = "0.11.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
134
+ dependencies = [
135
+ "futures-core",
136
+ "futures-sink",
137
+ "nanorand",
138
+ "spin",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "foldhash"
143
+ version = "0.1.5"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
146
+
147
+ [[package]]
148
+ name = "futures-channel"
149
+ version = "0.3.32"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
152
+ dependencies = [
153
+ "futures-core",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "futures-core"
158
+ version = "0.3.32"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
161
+
162
+ [[package]]
163
+ name = "futures-sink"
164
+ version = "0.3.32"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
167
+
168
+ [[package]]
169
+ name = "futures-task"
170
+ version = "0.3.32"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
173
+
174
+ [[package]]
175
+ name = "futures-util"
176
+ version = "0.3.32"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
179
+ dependencies = [
180
+ "futures-core",
181
+ "futures-task",
182
+ "pin-project-lite",
183
+ "slab",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "getrandom"
188
+ version = "0.2.17"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
191
+ dependencies = [
192
+ "cfg-if",
193
+ "js-sys",
194
+ "libc",
195
+ "wasi",
196
+ "wasm-bindgen",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "getrandom"
201
+ version = "0.3.4"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
204
+ dependencies = [
205
+ "cfg-if",
206
+ "libc",
207
+ "r-efi",
208
+ "wasip2",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "glob"
213
+ version = "0.3.3"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
216
+
217
+ [[package]]
218
+ name = "hashbrown"
219
+ version = "0.15.5"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
222
+ dependencies = [
223
+ "allocator-api2",
224
+ "equivalent",
225
+ "foldhash",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "http"
230
+ version = "1.4.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
233
+ dependencies = [
234
+ "bytes",
235
+ "itoa",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "http-body"
240
+ version = "1.0.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
243
+ dependencies = [
244
+ "bytes",
245
+ "http",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "http-body-util"
250
+ version = "0.1.3"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
253
+ dependencies = [
254
+ "bytes",
255
+ "futures-core",
256
+ "http",
257
+ "http-body",
258
+ "pin-project-lite",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "httparse"
263
+ version = "1.10.1"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
266
+
267
+ [[package]]
268
+ name = "httpdate"
269
+ version = "1.0.3"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
272
+
273
+ [[package]]
274
+ name = "hyper"
275
+ version = "1.10.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
278
+ dependencies = [
279
+ "atomic-waker",
280
+ "bytes",
281
+ "futures-channel",
282
+ "futures-core",
283
+ "http",
284
+ "http-body",
285
+ "httparse",
286
+ "httpdate",
287
+ "itoa",
288
+ "pin-project-lite",
289
+ "smallvec",
290
+ "tokio",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "hyper-util"
295
+ version = "0.1.20"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
298
+ dependencies = [
299
+ "bytes",
300
+ "http",
301
+ "http-body",
302
+ "hyper",
303
+ "pin-project-lite",
304
+ "tokio",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "itertools"
309
+ version = "0.13.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
312
+ dependencies = [
313
+ "either",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "itoa"
318
+ version = "1.0.18"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
321
+
322
+ [[package]]
323
+ name = "js-sys"
324
+ version = "0.3.100"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162"
327
+ dependencies = [
328
+ "cfg-if",
329
+ "futures-util",
330
+ "wasm-bindgen",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "kino"
335
+ version = "0.1.0"
336
+ dependencies = [
337
+ "ahash",
338
+ "bytes",
339
+ "flume",
340
+ "http",
341
+ "http-body-util",
342
+ "httpdate",
343
+ "hyper",
344
+ "hyper-util",
345
+ "lru",
346
+ "magnus",
347
+ "mimalloc",
348
+ "parking_lot",
349
+ "rb-sys",
350
+ "rb-sys-env",
351
+ "rustls-pemfile",
352
+ "smallvec",
353
+ "tokio",
354
+ "tokio-rustls",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "lazy_static"
359
+ version = "1.5.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
362
+
363
+ [[package]]
364
+ name = "libc"
365
+ version = "0.2.186"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
368
+
369
+ [[package]]
370
+ name = "libloading"
371
+ version = "0.8.9"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
374
+ dependencies = [
375
+ "cfg-if",
376
+ "windows-link",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "libmimalloc-sys"
381
+ version = "0.1.49"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
384
+ dependencies = [
385
+ "cc",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "lock_api"
390
+ version = "0.4.14"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
393
+ dependencies = [
394
+ "scopeguard",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "log"
399
+ version = "0.4.32"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
402
+
403
+ [[package]]
404
+ name = "lru"
405
+ version = "0.12.5"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
408
+ dependencies = [
409
+ "hashbrown",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "magnus"
414
+ version = "0.8.2"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
417
+ dependencies = [
418
+ "magnus-macros",
419
+ "rb-sys",
420
+ "rb-sys-env",
421
+ "seq-macro",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "magnus-macros"
426
+ version = "0.8.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
429
+ dependencies = [
430
+ "proc-macro2",
431
+ "quote",
432
+ "syn",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "memchr"
437
+ version = "2.8.1"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
440
+
441
+ [[package]]
442
+ name = "mimalloc"
443
+ version = "0.1.52"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
446
+ dependencies = [
447
+ "libmimalloc-sys",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "minimal-lexical"
452
+ version = "0.2.1"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
455
+
456
+ [[package]]
457
+ name = "mio"
458
+ version = "1.2.1"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
461
+ dependencies = [
462
+ "libc",
463
+ "wasi",
464
+ "windows-sys 0.61.2",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "nanorand"
469
+ version = "0.7.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
472
+ dependencies = [
473
+ "getrandom 0.2.17",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "nom"
478
+ version = "7.1.3"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
481
+ dependencies = [
482
+ "memchr",
483
+ "minimal-lexical",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "once_cell"
488
+ version = "1.21.4"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
491
+
492
+ [[package]]
493
+ name = "parking_lot"
494
+ version = "0.12.5"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
497
+ dependencies = [
498
+ "lock_api",
499
+ "parking_lot_core",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "parking_lot_core"
504
+ version = "0.9.12"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
507
+ dependencies = [
508
+ "cfg-if",
509
+ "libc",
510
+ "redox_syscall",
511
+ "smallvec",
512
+ "windows-link",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "pin-project-lite"
517
+ version = "0.2.17"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
520
+
521
+ [[package]]
522
+ name = "proc-macro2"
523
+ version = "1.0.106"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
526
+ dependencies = [
527
+ "unicode-ident",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "quote"
532
+ version = "1.0.45"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
535
+ dependencies = [
536
+ "proc-macro2",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "r-efi"
541
+ version = "5.3.0"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
544
+
545
+ [[package]]
546
+ name = "rb-sys"
547
+ version = "0.9.128"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
550
+ dependencies = [
551
+ "rb-sys-build",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "rb-sys-build"
556
+ version = "0.9.128"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
559
+ dependencies = [
560
+ "bindgen",
561
+ "lazy_static",
562
+ "proc-macro2",
563
+ "quote",
564
+ "regex",
565
+ "shell-words",
566
+ "syn",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "rb-sys-env"
571
+ version = "0.2.3"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
574
+
575
+ [[package]]
576
+ name = "redox_syscall"
577
+ version = "0.5.18"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
580
+ dependencies = [
581
+ "bitflags",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "regex"
586
+ version = "1.12.4"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
589
+ dependencies = [
590
+ "aho-corasick",
591
+ "memchr",
592
+ "regex-automata",
593
+ "regex-syntax",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "regex-automata"
598
+ version = "0.4.14"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
601
+ dependencies = [
602
+ "aho-corasick",
603
+ "memchr",
604
+ "regex-syntax",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "regex-syntax"
609
+ version = "0.8.11"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
612
+
613
+ [[package]]
614
+ name = "ring"
615
+ version = "0.17.14"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
618
+ dependencies = [
619
+ "cc",
620
+ "cfg-if",
621
+ "getrandom 0.2.17",
622
+ "libc",
623
+ "untrusted",
624
+ "windows-sys 0.52.0",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "rustc-hash"
629
+ version = "2.1.2"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
632
+
633
+ [[package]]
634
+ name = "rustls"
635
+ version = "0.23.40"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
638
+ dependencies = [
639
+ "log",
640
+ "once_cell",
641
+ "ring",
642
+ "rustls-pki-types",
643
+ "rustls-webpki",
644
+ "subtle",
645
+ "zeroize",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "rustls-pemfile"
650
+ version = "2.2.0"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
653
+ dependencies = [
654
+ "rustls-pki-types",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "rustls-pki-types"
659
+ version = "1.14.1"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
662
+ dependencies = [
663
+ "zeroize",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "rustls-webpki"
668
+ version = "0.103.13"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
671
+ dependencies = [
672
+ "ring",
673
+ "rustls-pki-types",
674
+ "untrusted",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "rustversion"
679
+ version = "1.0.22"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
682
+
683
+ [[package]]
684
+ name = "scopeguard"
685
+ version = "1.2.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
688
+
689
+ [[package]]
690
+ name = "seq-macro"
691
+ version = "0.3.6"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
694
+
695
+ [[package]]
696
+ name = "shell-words"
697
+ version = "1.1.1"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
700
+
701
+ [[package]]
702
+ name = "shlex"
703
+ version = "1.3.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
706
+
707
+ [[package]]
708
+ name = "shlex"
709
+ version = "2.0.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
712
+
713
+ [[package]]
714
+ name = "slab"
715
+ version = "0.4.12"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
718
+
719
+ [[package]]
720
+ name = "smallvec"
721
+ version = "1.15.1"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
724
+
725
+ [[package]]
726
+ name = "socket2"
727
+ version = "0.6.4"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
730
+ dependencies = [
731
+ "libc",
732
+ "windows-sys 0.61.2",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "spin"
737
+ version = "0.9.8"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
740
+ dependencies = [
741
+ "lock_api",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "subtle"
746
+ version = "2.6.1"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
749
+
750
+ [[package]]
751
+ name = "syn"
752
+ version = "2.0.117"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
755
+ dependencies = [
756
+ "proc-macro2",
757
+ "quote",
758
+ "unicode-ident",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "tokio"
763
+ version = "1.52.3"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
766
+ dependencies = [
767
+ "bytes",
768
+ "libc",
769
+ "mio",
770
+ "pin-project-lite",
771
+ "socket2",
772
+ "tokio-macros",
773
+ "windows-sys 0.61.2",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "tokio-macros"
778
+ version = "2.7.0"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
781
+ dependencies = [
782
+ "proc-macro2",
783
+ "quote",
784
+ "syn",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "tokio-rustls"
789
+ version = "0.26.4"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
792
+ dependencies = [
793
+ "rustls",
794
+ "tokio",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "unicode-ident"
799
+ version = "1.0.24"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
802
+
803
+ [[package]]
804
+ name = "untrusted"
805
+ version = "0.9.0"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
808
+
809
+ [[package]]
810
+ name = "version_check"
811
+ version = "0.9.5"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
814
+
815
+ [[package]]
816
+ name = "wasi"
817
+ version = "0.11.1+wasi-snapshot-preview1"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
820
+
821
+ [[package]]
822
+ name = "wasip2"
823
+ version = "1.0.3+wasi-0.2.9"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
826
+ dependencies = [
827
+ "wit-bindgen",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "wasm-bindgen"
832
+ version = "0.2.123"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563"
835
+ dependencies = [
836
+ "cfg-if",
837
+ "once_cell",
838
+ "rustversion",
839
+ "wasm-bindgen-macro",
840
+ "wasm-bindgen-shared",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "wasm-bindgen-macro"
845
+ version = "0.2.123"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc"
848
+ dependencies = [
849
+ "quote",
850
+ "wasm-bindgen-macro-support",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "wasm-bindgen-macro-support"
855
+ version = "0.2.123"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b"
858
+ dependencies = [
859
+ "bumpalo",
860
+ "proc-macro2",
861
+ "quote",
862
+ "syn",
863
+ "wasm-bindgen-shared",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "wasm-bindgen-shared"
868
+ version = "0.2.123"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92"
871
+ dependencies = [
872
+ "unicode-ident",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "windows-link"
877
+ version = "0.2.1"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
880
+
881
+ [[package]]
882
+ name = "windows-sys"
883
+ version = "0.52.0"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
886
+ dependencies = [
887
+ "windows-targets",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "windows-sys"
892
+ version = "0.61.2"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
895
+ dependencies = [
896
+ "windows-link",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "windows-targets"
901
+ version = "0.52.6"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
904
+ dependencies = [
905
+ "windows_aarch64_gnullvm",
906
+ "windows_aarch64_msvc",
907
+ "windows_i686_gnu",
908
+ "windows_i686_gnullvm",
909
+ "windows_i686_msvc",
910
+ "windows_x86_64_gnu",
911
+ "windows_x86_64_gnullvm",
912
+ "windows_x86_64_msvc",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "windows_aarch64_gnullvm"
917
+ version = "0.52.6"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
920
+
921
+ [[package]]
922
+ name = "windows_aarch64_msvc"
923
+ version = "0.52.6"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
926
+
927
+ [[package]]
928
+ name = "windows_i686_gnu"
929
+ version = "0.52.6"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
932
+
933
+ [[package]]
934
+ name = "windows_i686_gnullvm"
935
+ version = "0.52.6"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
938
+
939
+ [[package]]
940
+ name = "windows_i686_msvc"
941
+ version = "0.52.6"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
944
+
945
+ [[package]]
946
+ name = "windows_x86_64_gnu"
947
+ version = "0.52.6"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
950
+
951
+ [[package]]
952
+ name = "windows_x86_64_gnullvm"
953
+ version = "0.52.6"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
956
+
957
+ [[package]]
958
+ name = "windows_x86_64_msvc"
959
+ version = "0.52.6"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
962
+
963
+ [[package]]
964
+ name = "wit-bindgen"
965
+ version = "0.57.1"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
968
+
969
+ [[package]]
970
+ name = "zerocopy"
971
+ version = "0.8.52"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
974
+ dependencies = [
975
+ "zerocopy-derive",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "zerocopy-derive"
980
+ version = "0.8.52"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
983
+ dependencies = [
984
+ "proc-macro2",
985
+ "quote",
986
+ "syn",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "zeroize"
991
+ version = "1.8.2"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"