nandi/jolt-nativepublic Fork 0
aabacba05769796ca2b8dde03e3f925d33ba6653
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Cargo.lock · 8286 lines · 195.3 KBGDScript3 Blame HistoryRaw
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
Bring vidya in cfd3e36 nandi 19d ago5[[package]]
6name = "ab_glyph"
7version = "0.2.32"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
10dependencies = [
11 "ab_glyph_rasterizer",
12 "owned_ttf_parser",
13]
14
15[[package]]
16name = "ab_glyph_rasterizer"
17version = "0.1.10"
18source = "registry+https://github.com/rust-lang/crates.io-index"
19checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
20
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago21[[package]]
22name = "addr2line"
23version = "0.25.1"
24source = "registry+https://github.com/rust-lang/crates.io-index"
25checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
26dependencies = [
27 "gimli",
28]
29
30[[package]]
31name = "adler2"
32version = "2.0.1"
33source = "registry+https://github.com/rust-lang/crates.io-index"
34checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
35
36[[package]]
37name = "aead"
38version = "0.5.2"
39source = "registry+https://github.com/rust-lang/crates.io-index"
40checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
41dependencies = [
42 "crypto-common 0.1.6",
43 "generic-array",
44]
45
46[[package]]
47name = "aes"
48version = "0.8.4"
49source = "registry+https://github.com/rust-lang/crates.io-index"
50checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
51dependencies = [
52 "cfg-if",
53 "cipher",
54 "cpufeatures 0.2.17",
55]
56
57[[package]]
58name = "aes-gcm"
59version = "0.10.3"
60source = "registry+https://github.com/rust-lang/crates.io-index"
61checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
62dependencies = [
63 "aead",
64 "aes",
65 "cipher",
66 "ctr",
67 "ghash",
68 "subtle",
69]
70
Bring vidya in cfd3e36 nandi 19d ago71[[package]]
72name = "ahash"
73version = "0.8.12"
74source = "registry+https://github.com/rust-lang/crates.io-index"
75checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
76dependencies = [
77 "cfg-if",
78 "getrandom 0.3.4",
79 "once_cell",
80 "version_check",
81 "zerocopy",
82]
83
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago84[[package]]
85name = "aho-corasick"
86version = "1.1.4"
87source = "registry+https://github.com/rust-lang/crates.io-index"
88checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
89dependencies = [
90 "memchr",
91]
92
93[[package]]
94name = "allocator-api2"
95version = "0.2.21"
96source = "registry+https://github.com/rust-lang/crates.io-index"
97checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
98
99[[package]]
100name = "alsa"
101version = "0.11.0"
102source = "registry+https://github.com/rust-lang/crates.io-index"
103checksum = "812947049edcd670a82cd5c73c3661d2e58468577ba8489de58e1a73c04cbd5d"
104dependencies = [
105 "alsa-sys",
106 "bitflags 2.13.1",
107 "cfg-if",
108 "libc",
109]
110
111[[package]]
112name = "alsa-sys"
113version = "0.4.0"
114source = "registry+https://github.com/rust-lang/crates.io-index"
115checksum = "ad7569085a265dd3f607ebecce7458eaab2132a84393534c95b18dcbc3f31e04"
116dependencies = [
117 "libc",
118 "pkg-config",
119]
120
Bring vidya in cfd3e36 nandi 19d ago121[[package]]
122name = "android-activity"
123version = "0.6.1"
124source = "registry+https://github.com/rust-lang/crates.io-index"
125checksum = "0f2a1bb052857d5dd49572219344a7332b31b76405648eabac5bc68978251bcd"
126dependencies = [
127 "android-properties",
128 "bitflags 2.13.1",
129 "cc",
130 "jni 0.22.4",
131 "libc",
132 "log",
133 "ndk",
134 "ndk-context",
135 "ndk-sys",
136 "num_enum",
137 "thiserror 2.0.19",
138]
139
140[[package]]
141name = "android-properties"
142version = "0.2.2"
143source = "registry+https://github.com/rust-lang/crates.io-index"
144checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
145
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago146[[package]]
147name = "android_system_properties"
148version = "0.1.5"
149source = "registry+https://github.com/rust-lang/crates.io-index"
150checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
151dependencies = [
152 "libc",
153]
154
155[[package]]
156name = "annotate-snippets"
157version = "0.11.5"
158source = "registry+https://github.com/rust-lang/crates.io-index"
159checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
160dependencies = [
161 "anstyle",
162 "unicode-width",
163]
164
165[[package]]
166name = "anstream"
167version = "0.6.21"
168source = "registry+https://github.com/rust-lang/crates.io-index"
169checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
170dependencies = [
171 "anstyle",
172 "anstyle-parse 0.2.7",
173 "anstyle-query",
174 "anstyle-wincon",
175 "colorchoice",
176 "is_terminal_polyfill",
177 "utf8parse",
178]
179
180[[package]]
181name = "anstream"
182version = "1.0.0"
183source = "registry+https://github.com/rust-lang/crates.io-index"
184checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
185dependencies = [
186 "anstyle",
187 "anstyle-parse 1.0.0",
188 "anstyle-query",
189 "anstyle-wincon",
190 "colorchoice",
191 "is_terminal_polyfill",
192 "utf8parse",
193]
194
195[[package]]
196name = "anstyle"
197version = "1.0.14"
198source = "registry+https://github.com/rust-lang/crates.io-index"
199checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
200
201[[package]]
202name = "anstyle-parse"
203version = "0.2.7"
204source = "registry+https://github.com/rust-lang/crates.io-index"
205checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
206dependencies = [
207 "utf8parse",
208]
209
210[[package]]
211name = "anstyle-parse"
212version = "1.0.0"
213source = "registry+https://github.com/rust-lang/crates.io-index"
214checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
215dependencies = [
216 "utf8parse",
217]
218
219[[package]]
220name = "anstyle-query"
221version = "1.1.5"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
224dependencies = [
225 "windows-sys 0.61.2",
226]
227
228[[package]]
229name = "anstyle-wincon"
230version = "3.0.11"
231source = "registry+https://github.com/rust-lang/crates.io-index"
232checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
233dependencies = [
234 "anstyle",
235 "once_cell_polyfill",
236 "windows-sys 0.61.2",
237]
238
239[[package]]
240name = "anyhow"
241version = "1.0.104"
242source = "registry+https://github.com/rust-lang/crates.io-index"
243checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
244
Bring vidya in cfd3e36 nandi 19d ago245[[package]]
246name = "arbitrary"
247version = "1.4.2"
248source = "registry+https://github.com/rust-lang/crates.io-index"
249checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
250dependencies = [
251 "derive_arbitrary",
252]
253
254[[package]]
255name = "arboard"
256version = "3.6.1"
257source = "registry+https://github.com/rust-lang/crates.io-index"
258checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
259dependencies = [
260 "clipboard-win",
261 "image",
262 "log",
263 "objc2 0.6.4",
264 "objc2-app-kit 0.3.2",
265 "objc2-core-foundation",
266 "objc2-core-graphics",
267 "objc2-foundation 0.3.2",
268 "parking_lot",
269 "percent-encoding",
270 "windows-sys 0.59.0",
271 "x11rb",
272]
273
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago274[[package]]
275name = "archery"
276version = "1.2.2"
277source = "registry+https://github.com/rust-lang/crates.io-index"
278checksum = "70e0a5f99dfebb87bb342d0f53bb92c81842e100bbb915223e38349580e5441d"
279dependencies = [
280 "triomphe",
281]
282
283[[package]]
284name = "arrayref"
285version = "0.3.9"
286source = "registry+https://github.com/rust-lang/crates.io-index"
287checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
288
289[[package]]
290name = "arrayvec"
291version = "0.7.8"
292source = "registry+https://github.com/rust-lang/crates.io-index"
293checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
294
Bring vidya in cfd3e36 nandi 19d ago295[[package]]
296name = "as-raw-xcb-connection"
297version = "1.0.1"
298source = "registry+https://github.com/rust-lang/crates.io-index"
299checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
300
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago301[[package]]
302name = "asn1-rs"
303version = "0.7.2"
304source = "registry+https://github.com/rust-lang/crates.io-index"
305checksum = "b7f43a50ac4fdca5df8e885c21b835997f0a1cdee65494a6847694a98652d9d8"
306dependencies = [
307 "asn1-rs-derive",
308 "asn1-rs-impl",
309 "displaydoc",
310 "nom 7.1.3",
311 "num-traits",
312 "rusticata-macros",
313 "thiserror 2.0.19",
314 "time",
315]
316
317[[package]]
318name = "asn1-rs-derive"
319version = "0.6.0"
320source = "registry+https://github.com/rust-lang/crates.io-index"
321checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
322dependencies = [
323 "proc-macro2",
324 "quote",
325 "syn 2.0.119",
326 "synstructure",
327]
328
329[[package]]
330name = "asn1-rs-impl"
331version = "0.2.0"
332source = "registry+https://github.com/rust-lang/crates.io-index"
333checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
334dependencies = [
335 "proc-macro2",
336 "quote",
337 "syn 2.0.119",
338]
339
340[[package]]
341name = "async-trait"
342version = "0.1.91"
343source = "registry+https://github.com/rust-lang/crates.io-index"
344checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
345dependencies = [
346 "proc-macro2",
347 "quote",
348 "syn 3.0.3",
349]
350
351[[package]]
352name = "async_io_stream"
353version = "0.3.3"
354source = "registry+https://github.com/rust-lang/crates.io-index"
355checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c"
356dependencies = [
357 "futures",
358 "pharos",
359 "rustc_version",
360]
361
362[[package]]
363name = "atomic-polyfill"
364version = "1.0.3"
365source = "registry+https://github.com/rust-lang/crates.io-index"
366checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
367dependencies = [
368 "critical-section",
369]
370
371[[package]]
372name = "atomic-waker"
373version = "1.1.2"
374source = "registry+https://github.com/rust-lang/crates.io-index"
375checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
376
377[[package]]
378name = "attohttpc"
379version = "0.30.1"
380source = "registry+https://github.com/rust-lang/crates.io-index"
381checksum = "16e2cdb6d5ed835199484bb92bb8b3edd526effe995c61732580439c1a67e2e9"
382dependencies = [
383 "base64",
384 "http",
385 "log",
386 "url",
387]
388
389[[package]]
390name = "audio-core"
391version = "0.2.1"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "f93ebbf82d06013f4c41fe71303feb980cddd78496d904d06be627972de51a24"
394
395[[package]]
396name = "audioadapter"
397version = "2.0.1"
398source = "registry+https://github.com/rust-lang/crates.io-index"
399checksum = "98e72b98fa467adcb7a88c5d1b8b686193185c81b9bf9c3fa3ac3524180cd55c"
400dependencies = [
401 "audio-core",
402 "libm",
403 "num-traits",
404]
405
406[[package]]
407name = "audioadapter-buffers"
408version = "2.0.0"
409source = "registry+https://github.com/rust-lang/crates.io-index"
410checksum = "a6af89882334c4e501faa08992888593ada468f9e1ab211635c32f9ada7786e0"
411dependencies = [
412 "audioadapter",
413 "audioadapter-sample",
414 "num-traits",
415]
416
417[[package]]
418name = "audioadapter-sample"
419version = "2.0.0"
420source = "registry+https://github.com/rust-lang/crates.io-index"
421checksum = "4e9a3d502fec0b21aa420febe0b110875cf8a7057c49e83a0cace1df6a73e03e"
422dependencies = [
423 "audio-core",
424 "num-traits",
425]
426
427[[package]]
428name = "autocfg"
429version = "1.5.1"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
432
433[[package]]
434name = "aws-lc-rs"
435version = "1.17.3"
436source = "registry+https://github.com/rust-lang/crates.io-index"
437checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
438dependencies = [
439 "aws-lc-sys",
440 "untrusted 0.7.1",
441 "zeroize",
442]
443
444[[package]]
445name = "aws-lc-sys"
446version = "0.43.0"
447source = "registry+https://github.com/rust-lang/crates.io-index"
448checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
449dependencies = [
450 "cc",
451 "cmake",
452 "dunce",
453 "fs_extra",
454 "pkg-config",
455]
456
457[[package]]
458name = "backon"
459version = "1.6.0"
460source = "registry+https://github.com/rust-lang/crates.io-index"
461checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
462dependencies = [
463 "fastrand",
464 "gloo-timers",
465 "tokio",
466]
467
468[[package]]
469name = "backtrace"
470version = "0.3.76"
471source = "registry+https://github.com/rust-lang/crates.io-index"
472checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
473dependencies = [
474 "addr2line",
475 "cfg-if",
476 "libc",
Bring vidya in cfd3e36 nandi 19d ago477 "miniz_oxide 0.8.9",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago478 "object",
479 "rustc-demangle",
480 "windows-link",
481]
482
483[[package]]
484name = "base32"
485version = "0.5.1"
486source = "registry+https://github.com/rust-lang/crates.io-index"
487checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076"
488
489[[package]]
490name = "base64"
491version = "0.22.1"
492source = "registry+https://github.com/rust-lang/crates.io-index"
493checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
494
495[[package]]
496name = "base64ct"
497version = "1.8.3"
498source = "registry+https://github.com/rust-lang/crates.io-index"
499checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
500
501[[package]]
502name = "bindgen"
503version = "0.70.1"
504source = "registry+https://github.com/rust-lang/crates.io-index"
505checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
506dependencies = [
507 "bitflags 2.13.1",
508 "cexpr",
509 "clang-sys",
510 "itertools",
511 "log",
512 "prettyplease",
513 "proc-macro2",
514 "quote",
515 "regex",
516 "rustc-hash 1.1.0",
517 "shlex 1.3.0",
518 "syn 2.0.119",
519]
520
521[[package]]
522name = "bindgen"
523version = "0.72.1"
524source = "registry+https://github.com/rust-lang/crates.io-index"
525checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
526dependencies = [
527 "annotate-snippets",
528 "bitflags 2.13.1",
529 "cexpr",
530 "clang-sys",
531 "itertools",
532 "proc-macro2",
533 "quote",
534 "regex",
535 "rustc-hash 2.1.3",
536 "shlex 1.3.0",
537 "syn 2.0.119",
538]
539
540[[package]]
541name = "bit-vec"
542version = "0.9.1"
543source = "registry+https://github.com/rust-lang/crates.io-index"
544checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
545dependencies = [
546 "serde",
547]
548
549[[package]]
550name = "bitflags"
551version = "1.3.2"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
554
555[[package]]
556name = "bitflags"
557version = "2.13.1"
558source = "registry+https://github.com/rust-lang/crates.io-index"
559checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
560
561[[package]]
562name = "blake3"
563version = "1.8.5"
564source = "registry+https://github.com/rust-lang/crates.io-index"
565checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
566dependencies = [
567 "arrayref",
568 "arrayvec",
569 "cc",
570 "cfg-if",
571 "constant_time_eq",
572 "cpufeatures 0.3.0",
573]
574
575[[package]]
576name = "block-buffer"
577version = "0.10.4"
578source = "registry+https://github.com/rust-lang/crates.io-index"
579checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
580dependencies = [
581 "generic-array",
582]
583
584[[package]]
585name = "block-buffer"
586version = "0.11.0"
587source = "registry+https://github.com/rust-lang/crates.io-index"
588checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f"
589dependencies = [
590 "hybrid-array",
591]
592
Bring vidya in cfd3e36 nandi 19d ago593[[package]]
594name = "block2"
595version = "0.5.1"
596source = "registry+https://github.com/rust-lang/crates.io-index"
597checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
598dependencies = [
599 "objc2 0.5.2",
600]
601
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago602[[package]]
603name = "block2"
604version = "0.6.2"
605source = "registry+https://github.com/rust-lang/crates.io-index"
606checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
607dependencies = [
Bring vidya in cfd3e36 nandi 19d ago608 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago609]
610
611[[package]]
612name = "bs58"
613version = "0.5.1"
614source = "registry+https://github.com/rust-lang/crates.io-index"
615checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
616dependencies = [
617 "tinyvec",
618]
619
620[[package]]
621name = "buf-list"
622version = "1.1.2"
623source = "registry+https://github.com/rust-lang/crates.io-index"
624checksum = "a6b175f9cf8fffedd4c4b18bcfef092356e952b81f596e148f18e98280994593"
625dependencies = [
626 "bytes",
627]
628
629[[package]]
630name = "bumpalo"
631version = "3.20.3"
632source = "registry+https://github.com/rust-lang/crates.io-index"
633checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
634
635[[package]]
636name = "bytemuck"
637version = "1.25.2"
638source = "registry+https://github.com/rust-lang/crates.io-index"
639checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
640dependencies = [
641 "bytemuck_derive",
642]
643
644[[package]]
645name = "bytemuck_derive"
646version = "1.11.0"
647source = "registry+https://github.com/rust-lang/crates.io-index"
648checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
649dependencies = [
650 "proc-macro2",
651 "quote",
652 "syn 2.0.119",
653]
654
655[[package]]
656name = "byteorder"
657version = "1.5.0"
658source = "registry+https://github.com/rust-lang/crates.io-index"
659checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
660
661[[package]]
662name = "byteorder-lite"
663version = "0.1.0"
664source = "registry+https://github.com/rust-lang/crates.io-index"
665checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
666
667[[package]]
668name = "bytes"
669version = "1.12.1"
670source = "registry+https://github.com/rust-lang/crates.io-index"
671checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
672dependencies = [
673 "serde",
674]
675
Bring vidya in cfd3e36 nandi 19d ago676[[package]]
677name = "calloop"
678version = "0.13.0"
679source = "registry+https://github.com/rust-lang/crates.io-index"
680checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
681dependencies = [
682 "bitflags 2.13.1",
683 "log",
684 "polling",
685 "rustix 0.38.44",
686 "slab",
687 "thiserror 1.0.69",
688]
689
690[[package]]
691name = "calloop"
692version = "0.14.4"
693source = "registry+https://github.com/rust-lang/crates.io-index"
694checksum = "4dbf9978365bac10f54d1d4b04f7ce4427e51f71d61f2fe15e3fed5166474df7"
695dependencies = [
696 "bitflags 2.13.1",
697 "polling",
698 "rustix 1.1.4",
699 "slab",
700 "tracing",
701]
702
703[[package]]
704name = "calloop-wayland-source"
705version = "0.3.0"
706source = "registry+https://github.com/rust-lang/crates.io-index"
707checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
708dependencies = [
709 "calloop 0.13.0",
710 "rustix 0.38.44",
711 "wayland-backend",
712 "wayland-client",
713]
714
715[[package]]
716name = "calloop-wayland-source"
717version = "0.4.1"
718source = "registry+https://github.com/rust-lang/crates.io-index"
719checksum = "138efcf0940a02ebf0cc8d1eff41a1682a46b431630f4c52450d6265876021fa"
720dependencies = [
721 "calloop 0.14.4",
722 "rustix 1.1.4",
723 "wayland-backend",
724 "wayland-client",
725]
726
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago727[[package]]
728name = "cc"
729version = "1.4.0"
730source = "registry+https://github.com/rust-lang/crates.io-index"
731checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
732dependencies = [
733 "find-msvc-tools",
734 "jobserver",
735 "libc",
736 "shlex 2.0.1",
737]
738
739[[package]]
740name = "cesu8"
741version = "1.1.0"
742source = "registry+https://github.com/rust-lang/crates.io-index"
743checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
744
745[[package]]
746name = "cexpr"
747version = "0.6.0"
748source = "registry+https://github.com/rust-lang/crates.io-index"
749checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
750dependencies = [
751 "nom 7.1.3",
752]
753
754[[package]]
755name = "cfg-expr"
756version = "0.20.8"
757source = "registry+https://github.com/rust-lang/crates.io-index"
758checksum = "fb693542bcafa528e198be0ebd9d3632ca5b7c93dbe7237460e199910835997c"
759dependencies = [
760 "smallvec",
761 "target-lexicon",
762]
763
764[[package]]
765name = "cfg-if"
766version = "1.0.4"
767source = "registry+https://github.com/rust-lang/crates.io-index"
768checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
769
770[[package]]
771name = "cfg_aliases"
772version = "0.1.1"
773source = "registry+https://github.com/rust-lang/crates.io-index"
774checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
775
776[[package]]
777name = "cfg_aliases"
778version = "0.2.2"
779source = "registry+https://github.com/rust-lang/crates.io-index"
780checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
781
Bring vidya in cfd3e36 nandi 19d ago782[[package]]
783name = "cgl"
784version = "0.3.2"
785source = "registry+https://github.com/rust-lang/crates.io-index"
786checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff"
787dependencies = [
788 "libc",
789]
790
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago791[[package]]
792name = "chacha20"
793version = "0.10.1"
794source = "registry+https://github.com/rust-lang/crates.io-index"
795checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
796dependencies = [
797 "cfg-if",
798 "cpufeatures 0.3.0",
799 "rand_core 0.10.1",
800]
801
802[[package]]
803name = "chrono"
804version = "0.4.45"
805source = "registry+https://github.com/rust-lang/crates.io-index"
806checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
807dependencies = [
808 "iana-time-zone",
809 "num-traits",
810 "serde",
811 "windows-link",
812]
813
814[[package]]
815name = "cipher"
816version = "0.4.4"
817source = "registry+https://github.com/rust-lang/crates.io-index"
818checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
819dependencies = [
820 "crypto-common 0.1.6",
821 "inout",
822]
823
824[[package]]
825name = "clang-sys"
826version = "1.9.1"
827source = "registry+https://github.com/rust-lang/crates.io-index"
828checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
829dependencies = [
830 "glob",
831 "libc",
832 "libloading",
833]
834
835[[package]]
836name = "clap"
837version = "4.5.57"
838source = "registry+https://github.com/rust-lang/crates.io-index"
839checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
840dependencies = [
841 "clap_builder",
842 "clap_derive",
843]
844
845[[package]]
846name = "clap_builder"
847version = "4.5.57"
848source = "registry+https://github.com/rust-lang/crates.io-index"
849checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
850dependencies = [
851 "anstream 0.6.21",
852 "anstyle",
853 "clap_lex",
854 "strsim",
855]
856
857[[package]]
858name = "clap_derive"
859version = "4.5.55"
860source = "registry+https://github.com/rust-lang/crates.io-index"
861checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
862dependencies = [
863 "heck",
864 "proc-macro2",
865 "quote",
866 "syn 2.0.119",
867]
868
869[[package]]
870name = "clap_lex"
871version = "0.7.7"
872source = "registry+https://github.com/rust-lang/crates.io-index"
873checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
874
Bring vidya in cfd3e36 nandi 19d ago875[[package]]
876name = "clipboard-win"
877version = "5.4.1"
878source = "registry+https://github.com/rust-lang/crates.io-index"
879checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
880dependencies = [
881 "error-code",
882]
883
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago884[[package]]
885name = "cmake"
886version = "0.1.58"
887source = "registry+https://github.com/rust-lang/crates.io-index"
888checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
889dependencies = [
890 "cc",
891]
892
893[[package]]
894name = "cmov"
895version = "0.5.4"
896source = "registry+https://github.com/rust-lang/crates.io-index"
897checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
898
899[[package]]
900name = "cobs"
901version = "0.3.0"
902source = "registry+https://github.com/rust-lang/crates.io-index"
903checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
904dependencies = [
905 "thiserror 2.0.19",
906]
907
908[[package]]
909name = "colorchoice"
910version = "1.0.5"
911source = "registry+https://github.com/rust-lang/crates.io-index"
912checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
913
914[[package]]
915name = "colorutils-rs"
916version = "0.7.6"
917source = "registry+https://github.com/rust-lang/crates.io-index"
918checksum = "6e2fc25857fa523662de5cae84225b0e7bfb24a2a3f9ed8802fecf03df7252b1"
919dependencies = [
920 "erydanos",
921 "half",
922 "num-traits",
923 "rayon",
924]
925
926[[package]]
927name = "combine"
928version = "4.6.7"
929source = "registry+https://github.com/rust-lang/crates.io-index"
930checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
931dependencies = [
932 "bytes",
933 "memchr",
934]
935
Bring vidya in cfd3e36 nandi 19d ago936[[package]]
937name = "concurrent-queue"
938version = "2.5.0"
939source = "registry+https://github.com/rust-lang/crates.io-index"
940checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
941dependencies = [
942 "crossbeam-utils",
943]
944
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago945[[package]]
946name = "conducer"
947version = "0.3.1"
948source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
949
950[[package]]
951name = "const-oid"
952version = "0.10.2"
953source = "registry+https://github.com/rust-lang/crates.io-index"
954checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
955
956[[package]]
957name = "constant_time_eq"
958version = "0.4.2"
959source = "registry+https://github.com/rust-lang/crates.io-index"
960checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
961
962[[package]]
963name = "convert_case"
964version = "0.8.0"
965source = "registry+https://github.com/rust-lang/crates.io-index"
966checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
967dependencies = [
968 "unicode-segmentation",
969]
970
971[[package]]
972name = "convert_case"
973version = "0.10.0"
974source = "registry+https://github.com/rust-lang/crates.io-index"
975checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
976dependencies = [
977 "unicode-segmentation",
978]
979
980[[package]]
981name = "cookie-factory"
982version = "0.3.3"
983source = "registry+https://github.com/rust-lang/crates.io-index"
984checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2"
985
986[[package]]
987name = "cordyceps"
988version = "0.3.5"
989source = "registry+https://github.com/rust-lang/crates.io-index"
990checksum = "5b9ab7e0ca1d179628fa0172b2b97203c7fa0cd81be2448bd446fb9559ca9261"
991dependencies = [
992 "loom",
993 "tracing",
994]
995
Bring vidya in cfd3e36 nandi 19d ago996[[package]]
997name = "core-foundation"
998version = "0.9.4"
999source = "registry+https://github.com/rust-lang/crates.io-index"
1000checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
1001dependencies = [
1002 "core-foundation-sys",
1003 "libc",
1004]
1005
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1006[[package]]
1007name = "core-foundation"
1008version = "0.10.1"
1009source = "registry+https://github.com/rust-lang/crates.io-index"
1010checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
1011dependencies = [
1012 "core-foundation-sys",
1013 "libc",
1014]
1015
1016[[package]]
1017name = "core-foundation-sys"
1018version = "0.8.7"
1019source = "registry+https://github.com/rust-lang/crates.io-index"
1020checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
1021
Bring vidya in cfd3e36 nandi 19d ago1022[[package]]
1023name = "core-graphics"
1024version = "0.23.2"
1025source = "registry+https://github.com/rust-lang/crates.io-index"
1026checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
1027dependencies = [
1028 "bitflags 1.3.2",
1029 "core-foundation 0.9.4",
1030 "core-graphics-types",
1031 "foreign-types",
1032 "libc",
1033]
1034
1035[[package]]
1036name = "core-graphics-types"
1037version = "0.1.3"
1038source = "registry+https://github.com/rust-lang/crates.io-index"
1039checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
1040dependencies = [
1041 "bitflags 1.3.2",
1042 "core-foundation 0.9.4",
1043 "libc",
1044]
1045
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1046[[package]]
1047name = "core_affinity"
1048version = "0.8.3"
1049source = "registry+https://github.com/rust-lang/crates.io-index"
1050checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342"
1051dependencies = [
1052 "libc",
1053 "num_cpus",
1054 "winapi",
1055]
1056
1057[[package]]
1058name = "coreaudio-rs"
1059version = "0.14.2"
1060source = "registry+https://github.com/rust-lang/crates.io-index"
1061checksum = "7d5d7dca3ebcf65a035582c9ad4385371a9d9ee6537474d2a278f4e1e475bb58"
1062dependencies = [
1063 "bitflags 2.13.1",
1064 "libc",
1065 "objc2-audio-toolbox",
1066 "objc2-core-audio",
1067 "objc2-core-audio-types",
1068 "objc2-core-foundation",
1069]
1070
1071[[package]]
1072name = "cpal"
1073version = "0.18.0"
1074dependencies = [
1075 "alsa",
1076 "coreaudio-rs",
1077 "dasp_sample",
1078 "jni 0.21.1",
1079 "js-sys",
1080 "libc",
1081 "mach2",
1082 "ndk",
1083 "ndk-context",
1084 "num-derive",
1085 "num-traits",
Bring vidya in cfd3e36 nandi 19d ago1086 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1087 "objc2-audio-toolbox",
1088 "objc2-avf-audio",
1089 "objc2-core-audio",
1090 "objc2-core-audio-types",
1091 "objc2-core-foundation",
Bring vidya in cfd3e36 nandi 19d ago1092 "objc2-foundation 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1093 "pipewire",
1094 "wasm-bindgen",
1095 "wasm-bindgen-futures",
1096 "web-sys",
1097 "windows",
1098]
1099
1100[[package]]
1101name = "cpufeatures"
1102version = "0.2.17"
1103source = "registry+https://github.com/rust-lang/crates.io-index"
1104checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
1105dependencies = [
1106 "libc",
1107]
1108
1109[[package]]
1110name = "cpufeatures"
1111version = "0.3.0"
1112source = "registry+https://github.com/rust-lang/crates.io-index"
1113checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
1114dependencies = [
1115 "libc",
1116]
1117
Bring vidya in cfd3e36 nandi 19d ago1118[[package]]
1119name = "crc32fast"
1120version = "1.5.1"
1121source = "registry+https://github.com/rust-lang/crates.io-index"
1122checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
1123dependencies = [
1124 "cfg-if",
1125]
1126
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1127[[package]]
1128name = "critical-section"
1129version = "1.2.0"
1130source = "registry+https://github.com/rust-lang/crates.io-index"
1131checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
1132
1133[[package]]
1134name = "crossbeam-channel"
1135version = "0.5.16"
1136source = "registry+https://github.com/rust-lang/crates.io-index"
1137checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
1138dependencies = [
1139 "crossbeam-utils",
1140]
1141
1142[[package]]
1143name = "crossbeam-deque"
1144version = "0.8.7"
1145source = "registry+https://github.com/rust-lang/crates.io-index"
1146checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
1147dependencies = [
1148 "crossbeam-epoch",
1149 "crossbeam-utils",
1150]
1151
1152[[package]]
1153name = "crossbeam-epoch"
1154version = "0.9.20"
1155source = "registry+https://github.com/rust-lang/crates.io-index"
1156checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
1157dependencies = [
1158 "crossbeam-utils",
1159]
1160
1161[[package]]
1162name = "crossbeam-utils"
1163version = "0.8.22"
1164source = "registry+https://github.com/rust-lang/crates.io-index"
1165checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
1166
1167[[package]]
1168name = "crunchy"
1169version = "0.2.4"
1170source = "registry+https://github.com/rust-lang/crates.io-index"
1171checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1172
1173[[package]]
1174name = "crypto-common"
1175version = "0.1.6"
1176source = "registry+https://github.com/rust-lang/crates.io-index"
1177checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
1178dependencies = [
1179 "generic-array",
1180 "typenum",
1181]
1182
1183[[package]]
1184name = "crypto-common"
1185version = "0.2.2"
1186source = "registry+https://github.com/rust-lang/crates.io-index"
1187checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
1188dependencies = [
1189 "hybrid-array",
1190]
1191
1192[[package]]
1193name = "ctr"
1194version = "0.9.2"
1195source = "registry+https://github.com/rust-lang/crates.io-index"
1196checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
1197dependencies = [
1198 "cipher",
1199]
1200
1201[[package]]
1202name = "ctutils"
1203version = "0.4.2"
1204source = "registry+https://github.com/rust-lang/crates.io-index"
1205checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
1206dependencies = [
1207 "cmov",
1208]
1209
Bring vidya in cfd3e36 nandi 19d ago1210[[package]]
1211name = "cursor-icon"
1212version = "1.2.0"
1213source = "registry+https://github.com/rust-lang/crates.io-index"
1214checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
1215
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1216[[package]]
1217name = "curve25519-dalek"
1218version = "5.0.0-pre.1"
1219source = "registry+https://github.com/rust-lang/crates.io-index"
1220checksum = "6f9200d1d13637f15a6acb71e758f64624048d85b31a5fdbfd8eca1e2687d0b7"
1221dependencies = [
1222 "cfg-if",
1223 "cpufeatures 0.2.17",
1224 "curve25519-dalek-derive",
1225 "digest 0.11.0-rc.10",
1226 "fiat-crypto",
1227 "rand_core 0.9.5",
1228 "rustc_version",
1229 "serde",
1230 "subtle",
1231 "zeroize",
1232]
1233
1234[[package]]
1235name = "curve25519-dalek-derive"
1236version = "0.1.1"
1237source = "registry+https://github.com/rust-lang/crates.io-index"
1238checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
1239dependencies = [
1240 "proc-macro2",
1241 "quote",
1242 "syn 2.0.119",
1243]
1244
1245[[package]]
1246name = "darling"
1247version = "0.20.11"
1248source = "registry+https://github.com/rust-lang/crates.io-index"
1249checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
1250dependencies = [
1251 "darling_core 0.20.11",
1252 "darling_macro 0.20.11",
1253]
1254
1255[[package]]
1256name = "darling"
1257version = "0.23.0"
1258source = "registry+https://github.com/rust-lang/crates.io-index"
1259checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
1260dependencies = [
1261 "darling_core 0.23.0",
1262 "darling_macro 0.23.0",
1263]
1264
1265[[package]]
1266name = "darling_core"
1267version = "0.20.11"
1268source = "registry+https://github.com/rust-lang/crates.io-index"
1269checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
1270dependencies = [
1271 "fnv",
1272 "ident_case",
1273 "proc-macro2",
1274 "quote",
1275 "strsim",
1276 "syn 2.0.119",
1277]
1278
1279[[package]]
1280name = "darling_core"
1281version = "0.23.0"
1282source = "registry+https://github.com/rust-lang/crates.io-index"
1283checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
1284dependencies = [
1285 "ident_case",
1286 "proc-macro2",
1287 "quote",
1288 "strsim",
1289 "syn 2.0.119",
1290]
1291
1292[[package]]
1293name = "darling_macro"
1294version = "0.20.11"
1295source = "registry+https://github.com/rust-lang/crates.io-index"
1296checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1297dependencies = [
1298 "darling_core 0.20.11",
1299 "quote",
1300 "syn 2.0.119",
1301]
1302
1303[[package]]
1304name = "darling_macro"
1305version = "0.23.0"
1306source = "registry+https://github.com/rust-lang/crates.io-index"
1307checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
1308dependencies = [
1309 "darling_core 0.23.0",
1310 "quote",
1311 "syn 2.0.119",
1312]
1313
1314[[package]]
1315name = "dasp_sample"
1316version = "0.11.0"
1317source = "registry+https://github.com/rust-lang/crates.io-index"
1318checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
1319
1320[[package]]
1321name = "data-encoding"
1322version = "2.11.0"
1323source = "registry+https://github.com/rust-lang/crates.io-index"
1324checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
1325
1326[[package]]
1327name = "defmt"
1328version = "1.1.1"
1329source = "registry+https://github.com/rust-lang/crates.io-index"
1330checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
1331dependencies = [
1332 "bitflags 1.3.2",
1333 "defmt-macros",
1334]
1335
1336[[package]]
1337name = "defmt-macros"
1338version = "1.1.1"
1339source = "registry+https://github.com/rust-lang/crates.io-index"
1340checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
1341dependencies = [
1342 "defmt-parser",
1343 "proc-macro2",
1344 "quote",
1345 "syn 2.0.119",
1346]
1347
1348[[package]]
1349name = "defmt-parser"
1350version = "1.0.0"
1351source = "registry+https://github.com/rust-lang/crates.io-index"
1352checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
1353dependencies = [
1354 "thiserror 2.0.19",
1355]
1356
1357[[package]]
1358name = "der"
1359version = "0.8.1"
1360source = "registry+https://github.com/rust-lang/crates.io-index"
1361checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d"
1362dependencies = [
1363 "const-oid",
1364 "pem-rfc7468",
1365 "zeroize",
1366]
1367
1368[[package]]
1369name = "der-parser"
1370version = "10.0.0"
1371source = "registry+https://github.com/rust-lang/crates.io-index"
1372checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
1373dependencies = [
1374 "asn1-rs",
1375 "displaydoc",
1376 "nom 7.1.3",
1377 "num-bigint",
1378 "num-traits",
1379 "rusticata-macros",
1380]
1381
1382[[package]]
1383name = "deranged"
1384version = "0.5.8"
1385source = "registry+https://github.com/rust-lang/crates.io-index"
1386checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1387dependencies = [
1388 "serde_core",
1389]
1390
Bring vidya in cfd3e36 nandi 19d ago1391[[package]]
1392name = "derive_arbitrary"
1393version = "1.4.2"
1394source = "registry+https://github.com/rust-lang/crates.io-index"
1395checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
1396dependencies = [
1397 "proc-macro2",
1398 "quote",
1399 "syn 2.0.119",
1400]
1401
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1402[[package]]
1403name = "derive_builder"
1404version = "0.20.2"
1405source = "registry+https://github.com/rust-lang/crates.io-index"
1406checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
1407dependencies = [
1408 "derive_builder_macro",
1409]
1410
1411[[package]]
1412name = "derive_builder_core"
1413version = "0.20.2"
1414source = "registry+https://github.com/rust-lang/crates.io-index"
1415checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
1416dependencies = [
1417 "darling 0.20.11",
1418 "proc-macro2",
1419 "quote",
1420 "syn 2.0.119",
1421]
1422
1423[[package]]
1424name = "derive_builder_macro"
1425version = "0.20.2"
1426source = "registry+https://github.com/rust-lang/crates.io-index"
1427checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
1428dependencies = [
1429 "derive_builder_core",
1430 "syn 2.0.119",
1431]
1432
1433[[package]]
1434name = "derive_more"
1435version = "2.1.1"
1436source = "registry+https://github.com/rust-lang/crates.io-index"
1437checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1438dependencies = [
1439 "derive_more-impl",
1440]
1441
1442[[package]]
1443name = "derive_more-impl"
1444version = "2.1.1"
1445source = "registry+https://github.com/rust-lang/crates.io-index"
1446checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1447dependencies = [
1448 "convert_case 0.10.0",
1449 "proc-macro2",
1450 "quote",
1451 "rustc_version",
1452 "syn 2.0.119",
1453 "unicode-xid",
1454]
1455
1456[[package]]
1457name = "diatomic-waker"
1458version = "0.2.3"
1459source = "registry+https://github.com/rust-lang/crates.io-index"
1460checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c"
1461
1462[[package]]
1463name = "digest"
1464version = "0.10.7"
1465source = "registry+https://github.com/rust-lang/crates.io-index"
1466checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1467dependencies = [
1468 "block-buffer 0.10.4",
1469 "crypto-common 0.1.6",
1470]
1471
1472[[package]]
1473name = "digest"
1474version = "0.11.0-rc.10"
1475source = "registry+https://github.com/rust-lang/crates.io-index"
1476checksum = "afa94b64bfc6549e6e4b5a3216f22593224174083da7a90db47e951c4fb31725"
1477dependencies = [
1478 "block-buffer 0.11.0",
1479 "const-oid",
1480 "crypto-common 0.2.2",
1481]
1482
Bring vidya in cfd3e36 nandi 19d ago1483[[package]]
1484name = "dispatch"
1485version = "0.2.0"
1486source = "registry+https://github.com/rust-lang/crates.io-index"
1487checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
1488
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1489[[package]]
1490name = "dispatch2"
1491version = "0.3.1"
1492source = "registry+https://github.com/rust-lang/crates.io-index"
1493checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
1494dependencies = [
1495 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago1496 "block2 0.6.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1497 "libc",
Bring vidya in cfd3e36 nandi 19d ago1498 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1499]
1500
1501[[package]]
1502name = "displaydoc"
1503version = "0.2.7"
1504source = "registry+https://github.com/rust-lang/crates.io-index"
1505checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
1506dependencies = [
1507 "proc-macro2",
1508 "quote",
1509 "syn 3.0.3",
1510]
1511
Bring vidya in cfd3e36 nandi 19d ago1512[[package]]
1513name = "dlib"
1514version = "0.5.3"
1515source = "registry+https://github.com/rust-lang/crates.io-index"
1516checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
1517dependencies = [
1518 "libloading",
1519]
1520
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1521[[package]]
1522name = "dlopen2"
1523version = "0.5.0"
1524source = "registry+https://github.com/rust-lang/crates.io-index"
1525checksum = "09b4f5f101177ff01b8ec4ecc81eead416a8aa42819a2869311b3420fa114ffa"
1526dependencies = [
1527 "libc",
1528 "once_cell",
1529 "winapi",
1530]
1531
1532[[package]]
1533name = "document-features"
1534version = "0.2.12"
1535source = "registry+https://github.com/rust-lang/crates.io-index"
1536checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
1537dependencies = [
1538 "litrs",
1539]
1540
Bring vidya in cfd3e36 nandi 19d ago1541[[package]]
1542name = "downcast-rs"
1543version = "1.2.1"
1544source = "registry+https://github.com/rust-lang/crates.io-index"
1545checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
1546
1547[[package]]
1548name = "dpi"
1549version = "0.1.2"
1550source = "registry+https://github.com/rust-lang/crates.io-index"
1551checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
1552
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1553[[package]]
1554name = "dunce"
1555version = "1.0.5"
1556source = "registry+https://github.com/rust-lang/crates.io-index"
1557checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1558
1559[[package]]
1560name = "dyn-clone"
1561version = "1.0.20"
1562source = "registry+https://github.com/rust-lang/crates.io-index"
1563checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1564
Bring vidya in cfd3e36 nandi 19d ago1565[[package]]
1566name = "ecolor"
1567version = "0.31.1"
1568source = "registry+https://github.com/rust-lang/crates.io-index"
1569checksum = "bc4feb366740ded31a004a0e4452fbf84e80ef432ecf8314c485210229672fd1"
1570dependencies = [
1571 "bytemuck",
1572 "emath",
1573]
1574
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1575[[package]]
1576name = "ed25519"
1577version = "3.0.0-rc.4"
1578source = "registry+https://github.com/rust-lang/crates.io-index"
1579checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
1580dependencies = [
1581 "pkcs8",
1582 "serde",
1583 "signature",
1584]
1585
1586[[package]]
1587name = "ed25519-dalek"
1588version = "3.0.0-pre.1"
1589source = "registry+https://github.com/rust-lang/crates.io-index"
1590checksum = "ad207ed88a133091f83224265eac21109930db09bedcad05d5252f2af2de20a1"
1591dependencies = [
1592 "curve25519-dalek",
1593 "ed25519",
1594 "rand_core 0.9.5",
1595 "serde",
1596 "sha2",
1597 "signature",
1598 "subtle",
1599 "zeroize",
1600]
1601
Bring vidya in cfd3e36 nandi 19d ago1602[[package]]
1603name = "egui"
1604version = "0.31.1"
1605source = "registry+https://github.com/rust-lang/crates.io-index"
1606checksum = "25dd34cec49ab55d85ebf70139cb1ccd29c977ef6b6ba4fe85489d6877ee9ef3"
1607dependencies = [
1608 "ahash",
1609 "bitflags 2.13.1",
1610 "emath",
1611 "epaint",
1612 "log",
1613 "nohash-hasher",
1614 "profiling",
1615]
1616
1617[[package]]
1618name = "egui-winit"
1619version = "0.31.1"
1620source = "registry+https://github.com/rust-lang/crates.io-index"
1621checksum = "7d9dfbb78fe4eb9c3a39ad528b90ee5915c252e77bbab9d4ebc576541ab67e13"
1622dependencies = [
1623 "ahash",
1624 "arboard",
1625 "bytemuck",
1626 "egui",
1627 "log",
1628 "profiling",
1629 "raw-window-handle",
1630 "smithay-clipboard",
1631 "web-time",
1632 "webbrowser",
1633 "winit",
1634]
1635
1636[[package]]
1637name = "egui_glow"
1638version = "0.31.1"
1639source = "registry+https://github.com/rust-lang/crates.io-index"
1640checksum = "910906e3f042ea6d2378ec12a6fd07698e14ddae68aed2d819ffe944a73aab9e"
1641dependencies = [
1642 "ahash",
1643 "bytemuck",
1644 "egui",
1645 "glow",
1646 "log",
1647 "memoffset",
1648 "profiling",
1649 "wasm-bindgen",
1650 "web-sys",
1651]
1652
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1653[[package]]
1654name = "either"
1655version = "1.17.0"
1656source = "registry+https://github.com/rust-lang/crates.io-index"
1657checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
1658
Bring vidya in cfd3e36 nandi 19d ago1659[[package]]
1660name = "emath"
1661version = "0.31.1"
1662source = "registry+https://github.com/rust-lang/crates.io-index"
1663checksum = "9e4cadcff7a5353ba72b7fea76bf2122b5ebdbc68e8155aa56dfdea90083fe1b"
1664dependencies = [
1665 "bytemuck",
1666]
1667
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1668[[package]]
1669name = "embedded-io"
1670version = "0.4.0"
1671source = "registry+https://github.com/rust-lang/crates.io-index"
1672checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
1673
1674[[package]]
1675name = "embedded-io"
1676version = "0.6.1"
1677source = "registry+https://github.com/rust-lang/crates.io-index"
1678checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
1679
1680[[package]]
1681name = "encoding_rs"
1682version = "0.8.35"
1683source = "registry+https://github.com/rust-lang/crates.io-index"
1684checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1685dependencies = [
1686 "cfg-if",
1687]
1688
1689[[package]]
1690name = "enum-as-inner"
1691version = "0.6.1"
1692source = "registry+https://github.com/rust-lang/crates.io-index"
1693checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
1694dependencies = [
1695 "heck",
1696 "proc-macro2",
1697 "quote",
1698 "syn 2.0.119",
1699]
1700
1701[[package]]
1702name = "enum-assoc"
1703version = "1.3.0"
1704source = "registry+https://github.com/rust-lang/crates.io-index"
1705checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7"
1706dependencies = [
1707 "proc-macro2",
1708 "quote",
1709 "syn 2.0.119",
1710]
1711
1712[[package]]
1713name = "enumn"
1714version = "0.1.14"
1715source = "registry+https://github.com/rust-lang/crates.io-index"
1716checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38"
1717dependencies = [
1718 "proc-macro2",
1719 "quote",
1720 "syn 2.0.119",
1721]
1722
1723[[package]]
1724name = "env_filter"
1725version = "2.0.0"
1726source = "registry+https://github.com/rust-lang/crates.io-index"
1727checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
1728dependencies = [
1729 "log",
1730 "regex",
1731]
1732
1733[[package]]
1734name = "env_logger"
1735version = "0.11.11"
1736source = "registry+https://github.com/rust-lang/crates.io-index"
1737checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
1738dependencies = [
1739 "anstream 1.0.0",
1740 "anstyle",
1741 "env_filter",
1742 "jiff",
1743 "log",
1744]
1745
Bring vidya in cfd3e36 nandi 19d ago1746[[package]]
1747name = "epaint"
1748version = "0.31.1"
1749source = "registry+https://github.com/rust-lang/crates.io-index"
1750checksum = "41fcc0f5a7c613afd2dee5e4b30c3e6acafb8ad6f0edb06068811f708a67c562"
1751dependencies = [
1752 "ab_glyph",
1753 "ahash",
1754 "bytemuck",
1755 "ecolor",
1756 "emath",
1757 "epaint_default_fonts",
1758 "log",
1759 "nohash-hasher",
1760 "parking_lot",
1761 "profiling",
1762]
1763
1764[[package]]
1765name = "epaint_default_fonts"
1766version = "0.31.1"
1767source = "registry+https://github.com/rust-lang/crates.io-index"
1768checksum = "fc7e7a64c02cf7a5b51e745a9e45f60660a286f151c238b9d397b3e923f5082f"
1769
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1770[[package]]
1771name = "equivalent"
1772version = "1.0.2"
1773source = "registry+https://github.com/rust-lang/crates.io-index"
1774checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1775
1776[[package]]
1777name = "errno"
1778version = "0.3.14"
1779source = "registry+https://github.com/rust-lang/crates.io-index"
1780checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1781dependencies = [
1782 "libc",
1783 "windows-sys 0.61.2",
1784]
1785
Bring vidya in cfd3e36 nandi 19d ago1786[[package]]
1787name = "error-code"
1788version = "3.4.0"
1789source = "registry+https://github.com/rust-lang/crates.io-index"
1790checksum = "0b5343afd4a8365a643ac588dab4cf234a190c7f6c88c9f6dd6ffe00837661b7"
1791
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1792[[package]]
1793name = "erydanos"
1794version = "0.2.18"
1795source = "registry+https://github.com/rust-lang/crates.io-index"
1796checksum = "8cbdc4987ed8e9ece64845393c2d53596b3a4ccbfb3948d799d58f6450e89fb1"
1797dependencies = [
1798 "num-traits",
1799]
1800
1801[[package]]
1802name = "extended"
1803version = "0.1.0"
1804source = "registry+https://github.com/rust-lang/crates.io-index"
1805checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365"
1806
1807[[package]]
1808name = "fast-interleave"
1809version = "0.1.3"
1810source = "registry+https://github.com/rust-lang/crates.io-index"
1811checksum = "a0a5ab837f0983c0a9210d7847931f64e3be67fcb0ab93d625f7845a0132c825"
1812
1813[[package]]
1814name = "fastbloom"
1815version = "0.17.0"
1816source = "registry+https://github.com/rust-lang/crates.io-index"
1817checksum = "ef975e30683b2d965054bb0a836f8973857c4ebf6acf274fe46617cd285060d8"
1818dependencies = [
1819 "foldhash",
1820 "libm",
1821 "portable-atomic",
1822 "siphasher",
1823]
1824
1825[[package]]
1826name = "fastrand"
1827version = "2.5.0"
1828source = "registry+https://github.com/rust-lang/crates.io-index"
1829checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
1830
Bring vidya in cfd3e36 nandi 19d ago1831[[package]]
1832name = "fax"
1833version = "0.2.7"
1834source = "registry+https://github.com/rust-lang/crates.io-index"
1835checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
1836
1837[[package]]
1838name = "fdeflate"
1839version = "0.3.7"
1840source = "registry+https://github.com/rust-lang/crates.io-index"
1841checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
1842dependencies = [
1843 "simd-adler32",
1844]
1845
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1846[[package]]
1847name = "fiat-crypto"
1848version = "0.3.0"
1849source = "registry+https://github.com/rust-lang/crates.io-index"
1850checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
1851
1852[[package]]
1853name = "find-msvc-tools"
1854version = "0.1.9"
1855source = "registry+https://github.com/rust-lang/crates.io-index"
1856checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1857
1858[[package]]
1859name = "fixed-resample"
1860version = "0.9.2"
1861source = "registry+https://github.com/rust-lang/crates.io-index"
1862checksum = "3e548b80c8a294b230847d73ae8e53d1b2d5b407a1a9ec51c9698a761c4610b1"
1863dependencies = [
1864 "arrayvec",
1865 "fast-interleave",
1866 "ringbuf",
1867 "rubato 0.16.2",
1868]
1869
1870[[package]]
1871name = "fixedbitset"
1872version = "0.4.2"
1873source = "registry+https://github.com/rust-lang/crates.io-index"
1874checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1875
1876[[package]]
1877name = "fixedbitset"
1878version = "0.5.7"
1879source = "registry+https://github.com/rust-lang/crates.io-index"
1880checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1881
Bring vidya in cfd3e36 nandi 19d ago1882[[package]]
1883name = "flate2"
1884version = "1.1.10"
1885source = "registry+https://github.com/rust-lang/crates.io-index"
1886checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
1887dependencies = [
1888 "crc32fast",
1889 "miniz_oxide 0.9.1",
1890 "zlib-rs",
1891]
1892
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1893[[package]]
1894name = "fnv"
1895version = "1.0.7"
1896source = "registry+https://github.com/rust-lang/crates.io-index"
1897checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1898
1899[[package]]
1900name = "foldhash"
1901version = "0.2.0"
1902source = "registry+https://github.com/rust-lang/crates.io-index"
1903checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1904
Bring vidya in cfd3e36 nandi 19d ago1905[[package]]
1906name = "foreign-types"
1907version = "0.5.0"
1908source = "registry+https://github.com/rust-lang/crates.io-index"
1909checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
1910dependencies = [
1911 "foreign-types-macros",
1912 "foreign-types-shared",
1913]
1914
1915[[package]]
1916name = "foreign-types-macros"
1917version = "0.2.4"
1918source = "registry+https://github.com/rust-lang/crates.io-index"
1919checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
1920dependencies = [
1921 "proc-macro2",
1922 "quote",
1923 "syn 3.0.3",
1924]
1925
1926[[package]]
1927name = "foreign-types-shared"
1928version = "0.3.1"
1929source = "registry+https://github.com/rust-lang/crates.io-index"
1930checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
1931
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1932[[package]]
1933name = "form_urlencoded"
1934version = "1.2.2"
1935source = "registry+https://github.com/rust-lang/crates.io-index"
1936checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1937dependencies = [
1938 "percent-encoding",
1939]
1940
1941[[package]]
1942name = "fs_extra"
1943version = "1.3.0"
1944source = "registry+https://github.com/rust-lang/crates.io-index"
1945checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1946
1947[[package]]
1948name = "futures"
1949version = "0.3.33"
1950source = "registry+https://github.com/rust-lang/crates.io-index"
1951checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
1952dependencies = [
1953 "futures-channel",
1954 "futures-core",
1955 "futures-executor",
1956 "futures-io",
1957 "futures-sink",
1958 "futures-task",
1959 "futures-util",
1960]
1961
1962[[package]]
1963name = "futures-buffered"
1964version = "0.2.13"
1965source = "registry+https://github.com/rust-lang/crates.io-index"
1966checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5"
1967dependencies = [
1968 "cordyceps",
1969 "diatomic-waker",
1970 "futures-core",
1971 "pin-project-lite",
1972 "spin 0.10.1",
1973]
1974
1975[[package]]
1976name = "futures-channel"
1977version = "0.3.33"
1978source = "registry+https://github.com/rust-lang/crates.io-index"
1979checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
1980dependencies = [
1981 "futures-core",
1982 "futures-sink",
1983]
1984
1985[[package]]
1986name = "futures-concurrency"
1987version = "7.7.1"
1988source = "registry+https://github.com/rust-lang/crates.io-index"
1989checksum = "175cd8cca9e1d45b87f18ffa75088f2099e3c4fe5e2f83e42de112560bea8ea6"
1990dependencies = [
1991 "fixedbitset 0.5.7",
1992 "futures-core",
1993 "futures-lite",
1994 "pin-project",
1995 "smallvec",
1996]
1997
1998[[package]]
1999name = "futures-core"
2000version = "0.3.33"
2001source = "registry+https://github.com/rust-lang/crates.io-index"
2002checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
2003
2004[[package]]
2005name = "futures-executor"
2006version = "0.3.33"
2007source = "registry+https://github.com/rust-lang/crates.io-index"
2008checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
2009dependencies = [
2010 "futures-core",
2011 "futures-task",
2012 "futures-util",
2013]
2014
2015[[package]]
2016name = "futures-io"
2017version = "0.3.33"
2018source = "registry+https://github.com/rust-lang/crates.io-index"
2019checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
2020
2021[[package]]
2022name = "futures-lite"
2023version = "2.6.1"
2024source = "registry+https://github.com/rust-lang/crates.io-index"
2025checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
2026dependencies = [
2027 "fastrand",
2028 "futures-core",
2029 "futures-io",
2030 "parking",
2031 "pin-project-lite",
2032]
2033
2034[[package]]
2035name = "futures-macro"
2036version = "0.3.33"
2037source = "registry+https://github.com/rust-lang/crates.io-index"
2038checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
2039dependencies = [
2040 "proc-macro2",
2041 "quote",
2042 "syn 2.0.119",
2043]
2044
2045[[package]]
2046name = "futures-sink"
2047version = "0.3.33"
2048source = "registry+https://github.com/rust-lang/crates.io-index"
2049checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
2050
2051[[package]]
2052name = "futures-task"
2053version = "0.3.33"
2054source = "registry+https://github.com/rust-lang/crates.io-index"
2055checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
2056
2057[[package]]
2058name = "futures-util"
2059version = "0.3.33"
2060source = "registry+https://github.com/rust-lang/crates.io-index"
2061checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
2062dependencies = [
2063 "futures-channel",
2064 "futures-core",
2065 "futures-io",
2066 "futures-macro",
2067 "futures-sink",
2068 "futures-task",
2069 "memchr",
2070 "pin-project-lite",
2071 "slab",
2072]
2073
2074[[package]]
2075name = "generator"
2076version = "0.8.9"
2077source = "registry+https://github.com/rust-lang/crates.io-index"
2078checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
2079dependencies = [
2080 "cc",
2081 "cfg-if",
2082 "libc",
2083 "log",
2084 "rustversion",
2085 "windows-link",
2086 "windows-result",
2087]
2088
2089[[package]]
2090name = "generic-array"
2091version = "0.14.9"
2092source = "registry+https://github.com/rust-lang/crates.io-index"
2093checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
2094dependencies = [
2095 "typenum",
2096 "version_check",
2097]
2098
Bring vidya in cfd3e36 nandi 19d ago2099[[package]]
2100name = "gethostname"
2101version = "1.1.0"
2102source = "registry+https://github.com/rust-lang/crates.io-index"
2103checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
2104dependencies = [
2105 "rustix 1.1.4",
2106 "windows-link",
2107]
2108
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago2109[[package]]
2110name = "getrandom"
2111version = "0.2.17"
2112source = "registry+https://github.com/rust-lang/crates.io-index"
2113checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
2114dependencies = [
2115 "cfg-if",
2116 "js-sys",
2117 "libc",
2118 "wasi",
2119 "wasm-bindgen",
2120]
2121
2122[[package]]
2123name = "getrandom"
2124version = "0.3.4"
2125source = "registry+https://github.com/rust-lang/crates.io-index"
2126checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
2127dependencies = [
2128 "cfg-if",
2129 "js-sys",
2130 "libc",
2131 "r-efi 5.3.0",
2132 "wasip2",
2133 "wasm-bindgen",
2134]
2135
2136[[package]]
2137name = "getrandom"
2138version = "0.4.3"
2139source = "registry+https://github.com/rust-lang/crates.io-index"
2140checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
2141dependencies = [
2142 "cfg-if",
2143 "js-sys",
2144 "libc",
2145 "r-efi 6.0.0",
2146 "rand_core 0.10.1",
2147 "wasm-bindgen",
2148]
2149
2150[[package]]
2151name = "ghash"
2152version = "0.5.1"
2153source = "registry+https://github.com/rust-lang/crates.io-index"
2154checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
2155dependencies = [
2156 "opaque-debug",
2157 "polyval",
2158]
2159
2160[[package]]
2161name = "gimli"
2162version = "0.32.3"
2163source = "registry+https://github.com/rust-lang/crates.io-index"
2164checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
2165
Bring vidya in cfd3e36 nandi 19d ago2166[[package]]
2167name = "gl_generator"
2168version = "0.14.0"
2169source = "registry+https://github.com/rust-lang/crates.io-index"
2170checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
2171dependencies = [
2172 "khronos_api",
2173 "log",
2174 "xml-rs",
2175]
2176
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago2177[[package]]
2178name = "glob"
2179version = "0.3.4"
2180source = "registry+https://github.com/rust-lang/crates.io-index"
2181checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
2182
2183[[package]]
2184name = "gloo-timers"
2185version = "0.3.0"
2186source = "registry+https://github.com/rust-lang/crates.io-index"
2187checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
2188dependencies = [
2189 "futures-channel",
2190 "futures-core",
2191 "js-sys",
2192 "wasm-bindgen",
2193]
2194
Bring vidya in cfd3e36 nandi 19d ago2195[[package]]
2196name = "glow"
2197version = "0.16.0"
2198source = "registry+https://github.com/rust-lang/crates.io-index"
2199checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08"
2200dependencies = [
2201 "js-sys",
2202 "slotmap",
2203 "wasm-bindgen",
2204 "web-sys",
2205]
2206
2207[[package]]
2208name = "glutin"
2209version = "0.32.3"
2210source = "registry+https://github.com/rust-lang/crates.io-index"
2211checksum = "12124de845cacfebedff80e877bb37b5b75c34c5a4c89e47e1cdd67fb6041325"
2212dependencies = [
2213 "bitflags 2.13.1",
2214 "cfg_aliases 0.2.2",
2215 "cgl",
2216 "dispatch2",
2217 "glutin_egl_sys",
2218 "glutin_glx_sys",
2219 "glutin_wgl_sys",
2220 "libloading",
2221 "objc2 0.6.4",
2222 "objc2-app-kit 0.3.2",
2223 "objc2-core-foundation",
2224 "objc2-foundation 0.3.2",
2225 "once_cell",
2226 "raw-window-handle",
2227 "wayland-sys",
2228 "windows-sys 0.52.0",
2229 "x11-dl",
2230]
2231
2232[[package]]
2233name = "glutin-winit"
2234version = "0.5.0"
2235source = "registry+https://github.com/rust-lang/crates.io-index"
2236checksum = "85edca7075f8fc728f28cb8fbb111a96c3b89e930574369e3e9c27eb75d3788f"
2237dependencies = [
2238 "cfg_aliases 0.2.2",
2239 "glutin",
2240 "raw-window-handle",
2241 "winit",
2242]
2243
2244[[package]]
2245name = "glutin_egl_sys"
2246version = "0.7.1"
2247source = "registry+https://github.com/rust-lang/crates.io-index"
2248checksum = "4c4680ba6195f424febdc3ba46e7a42a0e58743f2edb115297b86d7f8ecc02d2"
2249dependencies = [
2250 "gl_generator",
2251 "windows-sys 0.52.0",
2252]
2253
2254[[package]]
2255name = "glutin_glx_sys"
2256version = "0.6.1"
2257source = "registry+https://github.com/rust-lang/crates.io-index"
2258checksum = "8a7bb2938045a88b612499fbcba375a77198e01306f52272e692f8c1f3751185"
2259dependencies = [
2260 "gl_generator",
2261 "x11-dl",
2262]
2263
2264[[package]]
2265name = "glutin_wgl_sys"
2266version = "0.6.1"
2267source = "registry+https://github.com/rust-lang/crates.io-index"
2268checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
2269dependencies = [
2270 "gl_generator",
2271]
2272
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago2273[[package]]
2274name = "h2"
2275version = "0.4.15"
2276source = "registry+https://github.com/rust-lang/crates.io-index"
2277checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
2278dependencies = [
2279 "atomic-waker",
2280 "bytes",
2281 "fnv",
2282 "futures-core",
2283 "futures-sink",
2284 "http",
2285 "indexmap 2.14.0",
2286 "slab",
2287 "tokio",
2288 "tokio-util",
2289 "tracing",
2290]
2291
2292[[package]]
2293name = "half"
2294version = "2.7.1"
2295source = "registry+https://github.com/rust-lang/crates.io-index"
2296checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
2297dependencies = [
2298 "cfg-if",
2299 "crunchy",
2300 "zerocopy",
2301]
2302
2303[[package]]
2304name = "hang"
2305version = "0.15.4"
2306source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
2307dependencies = [
2308 "buf-list",
2309 "bytes",
2310 "conducer",
2311 "derive_more",
2312 "hex",
2313 "lazy_static",
2314 "moq-lite",
2315 "regex",
2316 "serde",
2317 "serde_json",
2318 "serde_with",
2319 "thiserror 2.0.19",
2320 "tokio",
2321 "tracing",
2322 "url",
2323]
2324
2325[[package]]
2326name = "hash32"
2327version = "0.2.1"
2328source = "registry+https://github.com/rust-lang/crates.io-index"
2329checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
2330dependencies = [
2331 "byteorder",
2332]
2333
2334[[package]]
2335name = "hashbrown"
2336version = "0.12.3"
2337source = "registry+https://github.com/rust-lang/crates.io-index"
2338checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2339
2340[[package]]
2341name = "hashbrown"
2342version = "0.16.1"
2343source = "registry+https://github.com/rust-lang/crates.io-index"
2344checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
2345dependencies = [
2346 "allocator-api2",
2347 "equivalent",
2348 "foldhash",
2349]
2350
2351[[package]]
2352name = "hashbrown"
2353version = "0.17.1"
2354source = "registry+https://github.com/rust-lang/crates.io-index"
2355checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
2356
2357[[package]]
2358name = "heapless"
2359version = "0.7.17"
2360source = "registry+https://github.com/rust-lang/crates.io-index"
2361checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
2362dependencies = [
2363 "atomic-polyfill",
2364 "hash32",
2365 "rustc_version",
2366 "serde",
2367 "spin 0.9.9",
2368 "stable_deref_trait",
2369]
2370
2371[[package]]
2372name = "heck"
2373version = "0.5.0"
2374source = "registry+https://github.com/rust-lang/crates.io-index"
2375checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2376
2377[[package]]
2378name = "hermit-abi"
2379version = "0.5.2"
2380source = "registry+https://github.com/rust-lang/crates.io-index"
2381checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
2382
2383[[package]]
2384name = "hex"
2385version = "0.4.3"
2386source = "registry+https://github.com/rust-lang/crates.io-index"
2387checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2388
2389[[package]]
2390name = "hickory-proto"
2391version = "0.25.2"
2392source = "registry+https://github.com/rust-lang/crates.io-index"
2393checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
2394dependencies = [
2395 "async-trait",
2396 "bytes",
2397 "cfg-if",
2398 "data-encoding",
2399 "enum-as-inner",
2400 "futures-channel",
2401 "futures-io",
2402 "futures-util",
2403 "h2",
2404 "http",
2405 "idna",
2406 "ipnet",
2407 "once_cell",
2408 "rand 0.9.5",
2409 "ring",
2410 "rustls",
2411 "thiserror 2.0.19",
2412 "tinyvec",
2413 "tokio",
2414 "tokio-rustls",
2415 "tracing",
2416 "url",
2417]
2418
2419[[package]]
2420name = "hickory-resolver"
2421version = "0.25.2"
2422source = "registry+https://github.com/rust-lang/crates.io-index"
2423checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a"
2424dependencies = [
2425 "cfg-if",
2426 "futures-util",
2427 "hickory-proto",
2428 "ipconfig",
2429 "moka",
2430 "once_cell",
2431 "parking_lot",
2432 "rand 0.9.5",
2433 "resolv-conf",
2434 "rustls",
2435 "smallvec",
2436 "thiserror 2.0.19",
2437 "tokio",
2438 "tokio-rustls",
2439 "tracing",
2440]
2441
2442[[package]]
2443name = "http"
2444version = "1.5.0"
2445source = "registry+https://github.com/rust-lang/crates.io-index"
2446checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
2447dependencies = [
2448 "bytes",
2449 "itoa",
2450]
2451
2452[[package]]
2453name = "http-body"
2454version = "1.1.0"
2455source = "registry+https://github.com/rust-lang/crates.io-index"
2456checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
2457dependencies = [
2458 "bytes",
2459 "http",
2460]
2461
2462[[package]]
2463name = "http-body-util"
2464version = "0.1.4"
2465source = "registry+https://github.com/rust-lang/crates.io-index"
2466checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
2467dependencies = [
2468 "bytes",
2469 "futures-core",
2470 "http",
2471 "http-body",
2472 "pin-project-lite",
2473]
2474
2475[[package]]
2476name = "httparse"
2477version = "1.10.1"
2478source = "registry+https://github.com/rust-lang/crates.io-index"
2479checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
2480
2481[[package]]
2482name = "httpdate"
2483version = "1.0.3"
2484source = "registry+https://github.com/rust-lang/crates.io-index"
2485checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2486
2487[[package]]
2488name = "humantime"
2489version = "2.4.0"
2490source = "registry+https://github.com/rust-lang/crates.io-index"
2491checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
2492
2493[[package]]
2494name = "humantime-serde"
2495version = "1.1.1"
2496source = "registry+https://github.com/rust-lang/crates.io-index"
2497checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
2498dependencies = [
2499 "humantime",
2500 "serde",
2501]
2502
2503[[package]]
2504name = "hybrid-array"
2505version = "0.4.13"
2506source = "registry+https://github.com/rust-lang/crates.io-index"
2507checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
2508dependencies = [
2509 "typenum",
2510]
2511
2512[[package]]
2513name = "hyper"
2514version = "1.11.0"
2515source = "registry+https://github.com/rust-lang/crates.io-index"
2516checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
2517dependencies = [
2518 "atomic-waker",
2519 "bytes",
2520 "futures-channel",
2521 "futures-core",
2522 "h2",
2523 "http",
2524 "http-body",
2525 "httparse",
2526 "httpdate",
2527 "itoa",
2528 "pin-project-lite",
2529 "smallvec",
2530 "tokio",
2531 "want",
2532]
2533
2534[[package]]
2535name = "hyper-rustls"
2536version = "0.27.9"
2537source = "registry+https://github.com/rust-lang/crates.io-index"
2538checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
2539dependencies = [
2540 "http",
2541 "hyper",
2542 "hyper-util",
2543 "rustls",
2544 "tokio",
2545 "tokio-rustls",
2546 "tower-service",
2547]
2548
2549[[package]]
2550name = "hyper-util"
2551version = "0.1.20"
2552source = "registry+https://github.com/rust-lang/crates.io-index"
2553checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
2554dependencies = [
2555 "base64",
2556 "bytes",
2557 "futures-channel",
2558 "futures-util",
2559 "http",
2560 "http-body",
2561 "hyper",
2562 "ipnet",
2563 "libc",
2564 "percent-encoding",
2565 "pin-project-lite",
2566 "socket2",
2567 "tokio",
2568 "tower-service",
2569 "tracing",
2570]
2571
2572[[package]]
2573name = "iana-time-zone"
2574version = "0.1.65"
2575source = "registry+https://github.com/rust-lang/crates.io-index"
2576checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
2577dependencies = [
2578 "android_system_properties",
2579 "core-foundation-sys",
2580 "iana-time-zone-haiku",
2581 "js-sys",
2582 "log",
2583 "wasm-bindgen",
2584 "windows-core",
2585]
2586
2587[[package]]
2588name = "iana-time-zone-haiku"
2589version = "0.1.2"
2590source = "registry+https://github.com/rust-lang/crates.io-index"
2591checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2592dependencies = [
2593 "cc",
2594]
2595
2596[[package]]
2597name = "icu_collections"
2598version = "2.2.0"
2599source = "registry+https://github.com/rust-lang/crates.io-index"
2600checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
2601dependencies = [
2602 "displaydoc",
2603 "potential_utf",
2604 "utf8_iter",
2605 "yoke",
2606 "zerofrom",
2607 "zerovec",
2608]
2609
2610[[package]]
2611name = "icu_locale_core"
2612version = "2.2.0"
2613source = "registry+https://github.com/rust-lang/crates.io-index"
2614checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
2615dependencies = [
2616 "displaydoc",
2617 "litemap",
2618 "tinystr",
2619 "writeable",
2620 "zerovec",
2621]
2622
2623[[package]]
2624name = "icu_normalizer"
2625version = "2.2.0"
2626source = "registry+https://github.com/rust-lang/crates.io-index"
2627checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
2628dependencies = [
2629 "icu_collections",
2630 "icu_normalizer_data",
2631 "icu_properties",
2632 "icu_provider",
2633 "smallvec",
2634 "zerovec",
2635]
2636
2637[[package]]
2638name = "icu_normalizer_data"
2639version = "2.2.0"
2640source = "registry+https://github.com/rust-lang/crates.io-index"
2641checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
2642
2643[[package]]
2644name = "icu_properties"
2645version = "2.2.0"
2646source = "registry+https://github.com/rust-lang/crates.io-index"
2647checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
2648dependencies = [
2649 "icu_collections",
2650 "icu_locale_core",
2651 "icu_properties_data",
2652 "icu_provider",
2653 "zerotrie",
2654 "zerovec",
2655]
2656
2657[[package]]
2658name = "icu_properties_data"
2659version = "2.2.0"
2660source = "registry+https://github.com/rust-lang/crates.io-index"
2661checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
2662
2663[[package]]
2664name = "icu_provider"
2665version = "2.2.0"
2666source = "registry+https://github.com/rust-lang/crates.io-index"
2667checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
2668dependencies = [
2669 "displaydoc",
2670 "icu_locale_core",
2671 "writeable",
2672 "yoke",
2673 "zerofrom",
2674 "zerotrie",
2675 "zerovec",
2676]
2677
2678[[package]]
2679name = "ident_case"
2680version = "1.0.1"
2681source = "registry+https://github.com/rust-lang/crates.io-index"
2682checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2683
2684[[package]]
2685name = "identity-hash"
2686version = "0.1.0"
2687source = "registry+https://github.com/rust-lang/crates.io-index"
2688checksum = "dfdd7caa900436d8f13b2346fe10257e0c05c1f1f9e351f4f5d57c03bd5f45da"
2689
2690[[package]]
2691name = "idna"
2692version = "1.1.0"
2693source = "registry+https://github.com/rust-lang/crates.io-index"
2694checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
2695dependencies = [
2696 "idna_adapter",
2697 "smallvec",
2698 "utf8_iter",
2699]
2700
2701[[package]]
2702name = "idna_adapter"
2703version = "1.2.2"
2704source = "registry+https://github.com/rust-lang/crates.io-index"
2705checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
2706dependencies = [
2707 "icu_normalizer",
2708 "icu_properties",
2709]
2710
2711[[package]]
2712name = "igd-next"
2713version = "0.16.2"
2714source = "registry+https://github.com/rust-lang/crates.io-index"
2715checksum = "516893339c97f6011282d5825ac94fc1c7aad5cad26bdc2d0cee068c0bf97f97"
2716dependencies = [
2717 "async-trait",
2718 "attohttpc",
2719 "bytes",
2720 "futures",
2721 "http",
2722 "http-body-util",
2723 "hyper",
2724 "hyper-util",
2725 "log",
2726 "rand 0.9.5",
2727 "tokio",
2728 "url",
2729 "xmltree",
2730]
2731
2732[[package]]
2733name = "image"
2734version = "0.25.10"
2735source = "registry+https://github.com/rust-lang/crates.io-index"
2736checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
2737dependencies = [
2738 "bytemuck",
2739 "byteorder-lite",
2740 "moxcms",
2741 "num-traits",
Bring vidya in cfd3e36 nandi 19d ago2742 "png 0.18.1",
2743 "tiff",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago2744 "zune-core",
2745 "zune-jpeg",
2746]
2747
2748[[package]]
2749name = "indexmap"
2750version = "1.9.3"
2751source = "registry+https://github.com/rust-lang/crates.io-index"
2752checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2753dependencies = [
2754 "autocfg",
2755 "hashbrown 0.12.3",
2756 "serde",
2757]
2758
2759[[package]]
2760name = "indexmap"
2761version = "2.14.0"
2762source = "registry+https://github.com/rust-lang/crates.io-index"
2763checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
2764dependencies = [
2765 "equivalent",
2766 "hashbrown 0.17.1",
2767 "serde",
2768 "serde_core",
2769]
2770
2771[[package]]
2772name = "inout"
2773version = "0.1.4"
2774source = "registry+https://github.com/rust-lang/crates.io-index"
2775checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
2776dependencies = [
2777 "generic-array",
2778]
2779
2780[[package]]
2781name = "ipconfig"
2782version = "0.3.4"
2783source = "registry+https://github.com/rust-lang/crates.io-index"
2784checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222"
2785dependencies = [
2786 "socket2",
2787 "widestring",
2788 "windows-registry",
2789 "windows-result",
2790 "windows-sys 0.61.2",
2791]
2792
2793[[package]]
2794name = "ipnet"
2795version = "2.12.0"
2796source = "registry+https://github.com/rust-lang/crates.io-index"
2797checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2798
2799[[package]]
2800name = "iroh"
2801version = "0.97.0"
2802source = "git+https://github.com/n0-computer/iroh?rev=8af8370b#8af8370b567d9e9a89aaf25929b327a6a5b96de1"
2803dependencies = [
2804 "backon",
2805 "blake3",
2806 "bytes",
2807 "cfg_aliases 0.2.2",
2808 "ctutils",
2809 "data-encoding",
2810 "derive_more",
2811 "ed25519-dalek",
2812 "futures-util",
2813 "getrandom 0.3.4",
2814 "hickory-resolver",
2815 "http",
2816 "ipnet",
2817 "iroh-base",
2818 "iroh-metrics",
2819 "iroh-relay",
2820 "n0-error",
2821 "n0-future",
2822 "n0-watcher",
2823 "netwatch",
2824 "noq",
2825 "noq-proto",
2826 "noq-udp",
2827 "papaya",
2828 "pin-project",
2829 "pkarr",
2830 "pkcs8",
2831 "portable-atomic",
2832 "portmapper",
2833 "rand 0.9.5",
2834 "reqwest 0.13.4",
2835 "rustc-hash 2.1.3",
2836 "rustls",
2837 "rustls-pki-types",
2838 "rustls-webpki",
2839 "serde",
2840 "smallvec",
2841 "strum",
2842 "sync_wrapper",
2843 "time",
2844 "tokio",
2845 "tokio-stream",
2846 "tokio-util",
2847 "tracing",
2848 "url",
2849 "wasm-bindgen-futures",
2850 "webpki-roots",
2851]
2852
2853[[package]]
2854name = "iroh-base"
2855version = "0.97.0"
2856source = "git+https://github.com/n0-computer/iroh?rev=8af8370b#8af8370b567d9e9a89aaf25929b327a6a5b96de1"
2857dependencies = [
2858 "curve25519-dalek",
2859 "data-encoding",
2860 "derive_more",
2861 "digest 0.11.0-rc.10",
2862 "ed25519-dalek",
2863 "n0-error",
2864 "rand_core 0.9.5",
2865 "serde",
2866 "sha2",
2867 "url",
2868 "zeroize",
2869 "zeroize_derive",
2870]
2871
2872[[package]]
2873name = "iroh-gossip"
2874version = "0.97.0"
2875source = "git+https://github.com/n0-computer/iroh-gossip?rev=1038f721#1038f721663ffddc526359e33757ba998046ff2d"
2876dependencies = [
2877 "blake3",
2878 "bytes",
2879 "data-encoding",
2880 "derive_more",
2881 "ed25519-dalek",
2882 "futures-concurrency",
2883 "futures-lite",
2884 "futures-util",
2885 "hex",
2886 "indexmap 2.14.0",
2887 "iroh",
2888 "iroh-base",
2889 "iroh-metrics",
2890 "irpc",
2891 "n0-error",
2892 "n0-future",
2893 "postcard",
2894 "rand 0.9.5",
2895 "serde",
2896 "tokio",
2897 "tokio-util",
2898 "tracing",
2899]
2900
2901[[package]]
2902name = "iroh-live"
2903version = "0.1.0"
2904source = "git+https://github.com/n0-computer/iroh-live?rev=edd9bcc530a615f3ab3a6919e96790a077905376#edd9bcc530a615f3ab3a6919e96790a077905376"
2905dependencies = [
2906 "anyhow",
2907 "bytes",
2908 "data-encoding",
2909 "derive_more",
2910 "hang",
2911 "iroh",
2912 "iroh-gossip",
2913 "iroh-moq",
2914 "iroh-smol-kv",
2915 "iroh-tickets",
2916 "moq-lite",
2917 "moq-media",
2918 "n0-error",
2919 "n0-future",
2920 "n0-watcher",
2921 "postcard",
2922 "rand 0.9.5",
2923 "serde",
2924 "strum",
2925 "throttled-tracing",
2926 "tokio",
2927 "tokio-util",
2928 "tracing",
2929]
2930
2931[[package]]
2932name = "iroh-metrics"
2933version = "0.38.3"
2934source = "registry+https://github.com/rust-lang/crates.io-index"
2935checksum = "761b45ba046134b11eb3e432fa501616b45c4bf3a30c21717578bc07aa6461dd"
2936dependencies = [
2937 "iroh-metrics-derive",
2938 "itoa",
2939 "n0-error",
2940 "portable-atomic",
2941 "postcard",
2942 "ryu",
2943 "serde",
2944 "tracing",
2945]
2946
2947[[package]]
2948name = "iroh-metrics-derive"
2949version = "0.4.1"
2950source = "registry+https://github.com/rust-lang/crates.io-index"
2951checksum = "cab063c2bfd6c3d5a33a913d4fdb5252f140db29ec67c704f20f3da7e8f92dbf"
2952dependencies = [
2953 "heck",
2954 "proc-macro2",
2955 "quote",
2956 "syn 2.0.119",
2957]
2958
2959[[package]]
2960name = "iroh-moq"
2961version = "0.1.0"
2962source = "git+https://github.com/n0-computer/iroh-live?rev=edd9bcc530a615f3ab3a6919e96790a077905376#edd9bcc530a615f3ab3a6919e96790a077905376"
2963dependencies = [
2964 "iroh",
2965 "moq-lite",
2966 "n0-error",
2967 "n0-future",
2968 "tokio",
2969 "tokio-util",
2970 "tracing",
2971 "url",
2972 "web-transport-iroh",
2973]
2974
2975[[package]]
2976name = "iroh-relay"
2977version = "0.97.0"
2978source = "git+https://github.com/n0-computer/iroh?rev=8af8370b#8af8370b567d9e9a89aaf25929b327a6a5b96de1"
2979dependencies = [
2980 "blake3",
2981 "bytes",
2982 "cfg_aliases 0.2.2",
2983 "data-encoding",
2984 "derive_more",
2985 "getrandom 0.3.4",
2986 "hickory-resolver",
2987 "http",
2988 "http-body-util",
2989 "hyper",
2990 "hyper-util",
2991 "iroh-base",
2992 "iroh-metrics",
2993 "lru",
2994 "n0-error",
2995 "n0-future",
2996 "noq",
2997 "noq-proto",
2998 "num_enum",
2999 "pin-project",
3000 "pkarr",
3001 "postcard",
3002 "rand 0.9.5",
3003 "reqwest 0.13.4",
3004 "rustls",
3005 "rustls-pki-types",
3006 "serde",
3007 "serde_bytes",
3008 "strum",
3009 "tokio",
3010 "tokio-rustls",
3011 "tokio-util",
3012 "tokio-websockets",
3013 "tracing",
3014 "url",
3015 "vergen-gitcl",
3016 "webpki-roots",
3017 "ws_stream_wasm",
3018 "z32",
3019]
3020
3021[[package]]
3022name = "iroh-smol-kv"
3023version = "0.3.1"
3024source = "git+https://github.com/n0-computer/iroh-smol-kv?branch=iroh-097#e6685227ff12af9acfe676aa7272f91edeb56514"
3025dependencies = [
3026 "bytes",
3027 "ed25519-dalek",
3028 "hex",
3029 "iroh",
3030 "iroh-gossip",
3031 "irpc",
3032 "n0-error",
3033 "n0-future",
3034 "postcard",
3035 "rand 0.9.5",
3036 "rpds",
3037 "serde",
3038 "serde-big-array",
3039 "sync_wrapper",
3040 "tokio",
3041 "tracing",
3042]
3043
3044[[package]]
3045name = "iroh-tickets"
3046version = "0.4.0"
3047source = "registry+https://github.com/rust-lang/crates.io-index"
3048checksum = "ab64bac4bb573b9cfd2142bd2876ed65ca792efbc4398361a4ee51a0f9afbed6"
3049dependencies = [
3050 "data-encoding",
3051 "derive_more",
3052 "iroh-base",
3053 "n0-error",
3054 "postcard",
3055 "serde",
3056]
3057
3058[[package]]
3059name = "irpc"
3060version = "0.13.0"
3061source = "registry+https://github.com/rust-lang/crates.io-index"
3062checksum = "4f47b7c52662d673df377b5ac40c121c7ff56eb764e520fae6543686132f7957"
3063dependencies = [
3064 "futures-util",
3065 "irpc-derive",
3066 "n0-error",
3067 "n0-future",
3068 "noq",
3069 "postcard",
3070 "serde",
3071 "smallvec",
3072 "tokio",
3073 "tokio-util",
3074 "tracing",
3075]
3076
3077[[package]]
3078name = "irpc-derive"
3079version = "0.10.0"
3080source = "registry+https://github.com/rust-lang/crates.io-index"
3081checksum = "83c1a4b460634aeed6dc01236a0047867de70e30562d91a0ad031dcb3ac33fb4"
3082dependencies = [
3083 "proc-macro2",
3084 "quote",
3085 "syn 2.0.119",
3086]
3087
3088[[package]]
3089name = "is_terminal_polyfill"
3090version = "1.70.2"
3091source = "registry+https://github.com/rust-lang/crates.io-index"
3092checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
3093
3094[[package]]
3095name = "itertools"
3096version = "0.13.0"
3097source = "registry+https://github.com/rust-lang/crates.io-index"
3098checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
3099dependencies = [
3100 "either",
3101]
3102
3103[[package]]
3104name = "itoa"
3105version = "1.0.18"
3106source = "registry+https://github.com/rust-lang/crates.io-index"
3107checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
3108
3109[[package]]
3110name = "jiff"
3111version = "0.2.35"
3112source = "registry+https://github.com/rust-lang/crates.io-index"
3113checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
3114dependencies = [
3115 "defmt",
3116 "jiff-core",
3117 "jiff-static",
3118 "log",
3119 "portable-atomic",
3120 "portable-atomic-util",
3121 "serde_core",
3122]
3123
3124[[package]]
3125name = "jiff-core"
3126version = "0.1.0"
3127source = "registry+https://github.com/rust-lang/crates.io-index"
3128checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
3129dependencies = [
3130 "defmt",
3131]
3132
3133[[package]]
3134name = "jiff-static"
3135version = "0.2.35"
3136source = "registry+https://github.com/rust-lang/crates.io-index"
3137checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
3138dependencies = [
3139 "jiff-core",
3140 "proc-macro2",
3141 "quote",
3142 "syn 2.0.119",
3143]
3144
3145[[package]]
3146name = "jni"
3147version = "0.21.1"
3148source = "registry+https://github.com/rust-lang/crates.io-index"
3149checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
3150dependencies = [
3151 "cesu8",
3152 "cfg-if",
3153 "combine",
3154 "jni-sys 0.3.1",
3155 "log",
3156 "thiserror 1.0.69",
3157 "walkdir",
3158 "windows-sys 0.45.0",
3159]
3160
3161[[package]]
3162name = "jni"
3163version = "0.22.4"
3164source = "registry+https://github.com/rust-lang/crates.io-index"
3165checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
3166dependencies = [
3167 "cfg-if",
3168 "combine",
3169 "jni-macros",
3170 "jni-sys 0.4.1",
3171 "log",
3172 "simd_cesu8",
3173 "thiserror 2.0.19",
3174 "walkdir",
3175 "windows-link",
3176]
3177
3178[[package]]
3179name = "jni-macros"
3180version = "0.22.4"
3181source = "registry+https://github.com/rust-lang/crates.io-index"
3182checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
3183dependencies = [
3184 "proc-macro2",
3185 "quote",
3186 "rustc_version",
3187 "simd_cesu8",
3188 "syn 2.0.119",
3189]
3190
3191[[package]]
3192name = "jni-sys"
3193version = "0.3.1"
3194source = "registry+https://github.com/rust-lang/crates.io-index"
3195checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
3196dependencies = [
3197 "jni-sys 0.4.1",
3198]
3199
3200[[package]]
3201name = "jni-sys"
3202version = "0.4.1"
3203source = "registry+https://github.com/rust-lang/crates.io-index"
3204checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
3205dependencies = [
3206 "jni-sys-macros",
3207]
3208
3209[[package]]
3210name = "jni-sys-macros"
3211version = "0.4.1"
3212source = "registry+https://github.com/rust-lang/crates.io-index"
3213checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
3214dependencies = [
3215 "quote",
3216 "syn 2.0.119",
3217]
3218
3219[[package]]
3220name = "jobserver"
3221version = "0.1.35"
3222source = "registry+https://github.com/rust-lang/crates.io-index"
3223checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
3224dependencies = [
3225 "getrandom 0.4.3",
3226 "libc",
3227]
3228
3229[[package]]
3230name = "jolt-abi"
3231version = "0.1.0"
3232dependencies = [
3233 "log",
3234]
3235
3236[[package]]
3237name = "jolt-moq"
3238version = "0.1.0"
3239dependencies = [
3240 "anyhow",
3241 "cpal",
3242 "env_logger",
3243 "image",
3244 "iroh-live",
3245 "jolt-abi",
3246 "libc",
3247 "log",
3248 "moq-lite",
3249 "moq-native",
3250 "n0-future",
3251 "rand 0.8.7",
3252 "rustls",
3253 "tokio",
3254 "url",
3255 "urlencoding",
3256 "v4l2r",
3257]
3258
3259[[package]]
3260name = "js-sys"
3261version = "0.3.103"
3262source = "registry+https://github.com/rust-lang/crates.io-index"
3263checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
3264dependencies = [
3265 "cfg-if",
3266 "futures-util",
3267 "wasm-bindgen",
3268]
3269
Bring vidya in cfd3e36 nandi 19d ago3270[[package]]
3271name = "khronos_api"
3272version = "3.1.0"
3273source = "registry+https://github.com/rust-lang/crates.io-index"
3274checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
3275
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3276[[package]]
3277name = "lazy_static"
3278version = "1.5.0"
3279source = "registry+https://github.com/rust-lang/crates.io-index"
3280checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
3281
3282[[package]]
3283name = "libc"
3284version = "0.2.189"
3285source = "registry+https://github.com/rust-lang/crates.io-index"
3286checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
3287
3288[[package]]
3289name = "libloading"
3290version = "0.8.9"
3291source = "registry+https://github.com/rust-lang/crates.io-index"
3292checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
3293dependencies = [
3294 "cfg-if",
3295 "windows-link",
3296]
3297
3298[[package]]
3299name = "libm"
3300version = "0.2.16"
3301source = "registry+https://github.com/rust-lang/crates.io-index"
3302checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
3303
Bring vidya in cfd3e36 nandi 19d ago3304[[package]]
3305name = "libredox"
3306version = "0.1.21"
3307source = "registry+https://github.com/rust-lang/crates.io-index"
3308checksum = "d7955dfc218a8afb29dfeffd540e3a6e96baeb94fe7138228dd7cc6937fbbf96"
3309dependencies = [
3310 "bitflags 2.13.1",
3311 "libc",
3312 "plain",
3313 "redox_syscall 0.9.3",
3314]
3315
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3316[[package]]
3317name = "libspa"
3318version = "0.9.2"
3319source = "registry+https://github.com/rust-lang/crates.io-index"
3320checksum = "b6b8cfa2a7656627b4c92c6b9ef929433acd673d5ab3708cda1b18478ac00df4"
3321dependencies = [
3322 "bitflags 2.13.1",
3323 "cc",
3324 "convert_case 0.8.0",
3325 "cookie-factory",
3326 "libc",
3327 "libspa-sys",
3328 "nix 0.30.1",
3329 "nom 8.0.0",
3330 "system-deps",
3331]
3332
3333[[package]]
3334name = "libspa-sys"
3335version = "0.9.2"
3336source = "registry+https://github.com/rust-lang/crates.io-index"
Bring vidya in cfd3e36 nandi 19d ago3337checksum = "901049455d2eb6decf9058235d745237952f4804bc584c5fcb41412e6adcc6e0"
3338dependencies = [
3339 "bindgen 0.72.1",
3340 "cc",
3341 "system-deps",
3342]
3343
3344[[package]]
3345name = "linux-raw-sys"
3346version = "0.4.15"
3347source = "registry+https://github.com/rust-lang/crates.io-index"
3348checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
3349
3350[[package]]
3351name = "linux-raw-sys"
3352version = "0.12.1"
3353source = "registry+https://github.com/rust-lang/crates.io-index"
3354checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3355
3356[[package]]
3357name = "litemap"
3358version = "0.8.2"
3359source = "registry+https://github.com/rust-lang/crates.io-index"
3360checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
3361
3362[[package]]
3363name = "litrs"
3364version = "1.0.0"
3365source = "registry+https://github.com/rust-lang/crates.io-index"
3366checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
3367
3368[[package]]
3369name = "lock_api"
3370version = "0.4.14"
3371source = "registry+https://github.com/rust-lang/crates.io-index"
3372checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
3373dependencies = [
3374 "scopeguard",
3375]
3376
3377[[package]]
3378name = "log"
3379version = "0.4.33"
3380source = "registry+https://github.com/rust-lang/crates.io-index"
3381checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
3382
3383[[package]]
3384name = "loom"
3385version = "0.7.2"
3386source = "registry+https://github.com/rust-lang/crates.io-index"
3387checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
3388dependencies = [
3389 "cfg-if",
3390 "generator",
3391 "scoped-tls",
3392 "tracing",
3393 "tracing-subscriber",
3394]
3395
3396[[package]]
3397name = "lru"
3398version = "0.16.4"
3399source = "registry+https://github.com/rust-lang/crates.io-index"
3400checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
3401dependencies = [
3402 "hashbrown 0.16.1",
3403]
3404
3405[[package]]
3406name = "lru-slab"
3407version = "0.1.2"
3408source = "registry+https://github.com/rust-lang/crates.io-index"
3409checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
3410
3411[[package]]
3412name = "mac-addr"
3413version = "0.3.0"
3414source = "registry+https://github.com/rust-lang/crates.io-index"
3415checksum = "d3d25b0e0b648a86960ac23b7ad4abb9717601dec6f66c165f5b037f3f03065f"
3416
3417[[package]]
3418name = "mach2"
3419version = "0.5.0"
3420source = "registry+https://github.com/rust-lang/crates.io-index"
3421checksum = "6a1b95cd5421ec55b445b5ae102f5ea0e768de1f82bd3001e11f426c269c3aea"
3422dependencies = [
3423 "libc",
3424]
3425
3426[[package]]
3427name = "matchers"
3428version = "0.2.0"
3429source = "registry+https://github.com/rust-lang/crates.io-index"
3430checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
3431dependencies = [
3432 "regex-automata",
3433]
3434
3435[[package]]
3436name = "memchr"
3437version = "2.8.3"
3438source = "registry+https://github.com/rust-lang/crates.io-index"
3439checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
3440
Bring vidya in cfd3e36 nandi 19d ago3441[[package]]
3442name = "memmap2"
3443version = "0.9.11"
3444source = "registry+https://github.com/rust-lang/crates.io-index"
3445checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
3446dependencies = [
3447 "libc",
3448]
3449
3450[[package]]
3451name = "memoffset"
3452version = "0.9.1"
3453source = "registry+https://github.com/rust-lang/crates.io-index"
3454checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
3455dependencies = [
3456 "autocfg",
3457]
3458
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3459[[package]]
3460name = "minimal-lexical"
3461version = "0.2.1"
3462source = "registry+https://github.com/rust-lang/crates.io-index"
3463checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
3464
3465[[package]]
3466name = "miniz_oxide"
3467version = "0.8.9"
3468source = "registry+https://github.com/rust-lang/crates.io-index"
3469checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
3470dependencies = [
3471 "adler2",
Bring vidya in cfd3e36 nandi 19d ago3472 "simd-adler32",
3473]
3474
3475[[package]]
3476name = "miniz_oxide"
3477version = "0.9.1"
3478source = "registry+https://github.com/rust-lang/crates.io-index"
3479checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
3480dependencies = [
3481 "adler2",
3482 "simd-adler32",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3483]
3484
3485[[package]]
3486name = "mio"
3487version = "1.2.2"
3488source = "registry+https://github.com/rust-lang/crates.io-index"
3489checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
3490dependencies = [
3491 "libc",
3492 "wasi",
3493 "windows-sys 0.61.2",
3494]
3495
3496[[package]]
3497name = "moka"
3498version = "0.12.15"
3499source = "registry+https://github.com/rust-lang/crates.io-index"
3500checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
3501dependencies = [
3502 "crossbeam-channel",
3503 "crossbeam-epoch",
3504 "crossbeam-utils",
3505 "equivalent",
3506 "parking_lot",
3507 "portable-atomic",
3508 "smallvec",
3509 "tagptr",
3510 "uuid",
3511]
3512
3513[[package]]
3514name = "moq-lite"
3515version = "0.15.5"
3516source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
3517dependencies = [
3518 "bytes",
3519 "conducer",
3520 "futures",
3521 "num_enum",
3522 "rand 0.9.5",
3523 "serde",
3524 "thiserror 2.0.19",
3525 "tokio",
3526 "tracing",
3527 "web-async",
3528 "web-transport-trait",
3529]
3530
3531[[package]]
3532name = "moq-media"
3533version = "0.1.0"
3534source = "git+https://github.com/n0-computer/iroh-live?rev=edd9bcc530a615f3ab3a6919e96790a077905376#edd9bcc530a615f3ab3a6919e96790a077905376"
3535dependencies = [
3536 "anyhow",
3537 "audioadapter-buffers",
3538 "bytes",
3539 "cpal",
3540 "derive_more",
3541 "fixed-resample",
3542 "hang",
3543 "image",
3544 "moq-lite",
3545 "n0-error",
3546 "n0-future",
3547 "n0-watcher",
3548 "ringbuf",
3549 "rubato 1.0.1",
3550 "rusty-capture",
3551 "rusty-codecs",
3552 "sonora",
3553 "strum",
3554 "symphonia",
3555 "throttled-tracing",
3556 "tokio",
3557 "tokio-util",
3558 "tracing",
3559]
3560
3561[[package]]
3562name = "moq-native"
3563version = "0.13.6"
3564source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
3565dependencies = [
3566 "anyhow",
3567 "clap",
3568 "futures",
3569 "hex",
3570 "humantime",
3571 "humantime-serde",
3572 "moq-lite",
3573 "parking_lot",
3574 "qmux",
3575 "quinn",
3576 "rand 0.9.5",
3577 "rcgen",
3578 "reqwest 0.12.28",
3579 "rustls",
3580 "rustls-native-certs",
3581 "rustls-pemfile",
3582 "rustls-webpki",
3583 "serde",
3584 "serde_with",
3585 "time",
3586 "tokio",
3587 "tracing",
3588 "tracing-subscriber",
3589 "url",
3590 "web-transport-noq",
3591]
3592
3593[[package]]
3594name = "moxcms"
3595version = "0.8.1"
3596source = "registry+https://github.com/rust-lang/crates.io-index"
3597checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
3598dependencies = [
3599 "num-traits",
3600 "pxfm",
3601]
3602
Bring vidya in cfd3e36 nandi 19d ago3603[[package]]
3604name = "mp4"
3605version = "0.14.0"
3606source = "registry+https://github.com/rust-lang/crates.io-index"
3607checksum = "c9ef834d5ed55e494a2ae350220314dc4aacd1c43a9498b00e320e0ea352a5c3"
3608dependencies = [
3609 "byteorder",
3610 "bytes",
3611 "num-rational",
3612 "serde",
3613 "serde_json",
3614 "thiserror 1.0.69",
3615]
3616
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3617[[package]]
3618name = "n0-error"
3619version = "0.1.3"
3620source = "registry+https://github.com/rust-lang/crates.io-index"
3621checksum = "af4782b4baf92d686d161c15460c83d16ebcfd215918763903e9619842665cae"
3622dependencies = [
3623 "anyhow",
3624 "n0-error-macros",
3625 "spez",
3626]
3627
3628[[package]]
3629name = "n0-error-macros"
3630version = "0.1.3"
3631source = "registry+https://github.com/rust-lang/crates.io-index"
3632checksum = "03755949235714b2b307e5ae89dd8c1c2531fb127d9b8b7b4adf9c876cd3ed18"
3633dependencies = [
3634 "proc-macro2",
3635 "quote",
3636 "syn 2.0.119",
3637]
3638
3639[[package]]
3640name = "n0-future"
3641version = "0.3.2"
3642source = "registry+https://github.com/rust-lang/crates.io-index"
3643checksum = "e2ab99dfb861450e68853d34ae665243a88b8c493d01ba957321a1e9b2312bbe"
3644dependencies = [
3645 "cfg_aliases 0.2.2",
3646 "derive_more",
3647 "futures-buffered",
3648 "futures-lite",
3649 "futures-util",
3650 "js-sys",
3651 "pin-project",
3652 "send_wrapper",
3653 "tokio",
3654 "tokio-util",
3655 "wasm-bindgen",
3656 "wasm-bindgen-futures",
3657 "web-time",
3658]
3659
3660[[package]]
3661name = "n0-watcher"
3662version = "0.6.1"
3663source = "registry+https://github.com/rust-lang/crates.io-index"
3664checksum = "38795f7932e6e9d1c6e989270ef5b3ff24ebb910e2c9d4bed2d28d8bae3007dc"
3665dependencies = [
3666 "derive_more",
3667 "n0-error",
3668 "n0-future",
3669]
3670
3671[[package]]
3672name = "nasm-rs"
3673version = "0.3.2"
3674source = "registry+https://github.com/rust-lang/crates.io-index"
3675checksum = "706bf8a5e8c8ddb99128c3291d31bd21f4bcde17f0f4c20ec678d85c74faa149"
3676dependencies = [
3677 "log",
3678]
3679
3680[[package]]
3681name = "ndk"
3682version = "0.9.0"
3683source = "registry+https://github.com/rust-lang/crates.io-index"
3684checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
3685dependencies = [
3686 "bitflags 2.13.1",
3687 "jni-sys 0.3.1",
3688 "log",
3689 "ndk-sys",
3690 "num_enum",
Bring vidya in cfd3e36 nandi 19d ago3691 "raw-window-handle",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3692 "thiserror 1.0.69",
3693]
3694
3695[[package]]
3696name = "ndk-context"
3697version = "0.1.1"
3698source = "registry+https://github.com/rust-lang/crates.io-index"
3699checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
3700
3701[[package]]
3702name = "ndk-sys"
3703version = "0.6.0+11769913"
3704source = "registry+https://github.com/rust-lang/crates.io-index"
3705checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
3706dependencies = [
3707 "jni-sys 0.3.1",
3708]
3709
3710[[package]]
3711name = "netdev"
3712version = "0.40.1"
3713source = "registry+https://github.com/rust-lang/crates.io-index"
3714checksum = "1b0a0096d9613ee878dba89bbe595f079d373e3f1960d882e4f2f78ff9c30a0a"
3715dependencies = [
Bring vidya in cfd3e36 nandi 19d ago3716 "block2 0.6.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3717 "dispatch2",
3718 "dlopen2",
3719 "ipnet",
3720 "libc",
3721 "mac-addr",
3722 "netlink-packet-core",
3723 "netlink-packet-route",
3724 "netlink-sys",
3725 "objc2-core-foundation",
3726 "objc2-system-configuration",
3727 "once_cell",
3728 "plist",
3729 "windows-sys 0.59.0",
3730]
3731
3732[[package]]
3733name = "netlink-packet-core"
3734version = "0.8.1"
3735source = "registry+https://github.com/rust-lang/crates.io-index"
3736checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4"
3737dependencies = [
3738 "paste",
3739]
3740
3741[[package]]
3742name = "netlink-packet-route"
3743version = "0.29.0"
3744source = "registry+https://github.com/rust-lang/crates.io-index"
3745checksum = "df9854ea6ad14e3f4698a7f03b65bce0833dd2d81d594a0e4a984170537146b6"
3746dependencies = [
3747 "bitflags 2.13.1",
3748 "libc",
3749 "log",
3750 "netlink-packet-core",
3751]
3752
3753[[package]]
3754name = "netlink-proto"
3755version = "0.12.1"
3756source = "registry+https://github.com/rust-lang/crates.io-index"
3757checksum = "e6f7398dddf5f152d2a91a2921a134c6097056e292c0d4b9906007855e7cece6"
3758dependencies = [
3759 "bytes",
3760 "futures-channel",
3761 "futures-util",
3762 "log",
3763 "netlink-packet-core",
3764 "netlink-sys",
3765 "thiserror 2.0.19",
3766]
3767
3768[[package]]
3769name = "netlink-sys"
3770version = "0.8.8"
3771source = "registry+https://github.com/rust-lang/crates.io-index"
3772checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae"
3773dependencies = [
3774 "bytes",
3775 "futures-util",
3776 "libc",
3777 "log",
3778 "tokio",
3779]
3780
3781[[package]]
3782name = "netwatch"
3783version = "0.15.0"
3784source = "registry+https://github.com/rust-lang/crates.io-index"
3785checksum = "3b1b27babe89ef9f2237bc6c028bea24fa84163a1b6f8f17ff93573ebd7d861f"
3786dependencies = [
3787 "atomic-waker",
3788 "bytes",
3789 "cfg_aliases 0.2.2",
3790 "derive_more",
3791 "js-sys",
3792 "libc",
3793 "n0-error",
3794 "n0-future",
3795 "n0-watcher",
3796 "netdev",
3797 "netlink-packet-core",
3798 "netlink-packet-route",
3799 "netlink-proto",
3800 "netlink-sys",
3801 "noq-udp",
3802 "objc2-core-foundation",
3803 "objc2-system-configuration",
3804 "pin-project-lite",
3805 "serde",
3806 "socket2",
3807 "time",
3808 "tokio",
3809 "tokio-util",
3810 "tracing",
3811 "web-sys",
3812 "windows",
3813 "windows-result",
3814 "wmi",
3815]
3816
3817[[package]]
3818name = "nix"
3819version = "0.28.0"
3820source = "registry+https://github.com/rust-lang/crates.io-index"
3821checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
3822dependencies = [
3823 "bitflags 2.13.1",
3824 "cfg-if",
3825 "cfg_aliases 0.1.1",
3826 "libc",
3827]
3828
3829[[package]]
3830name = "nix"
3831version = "0.30.1"
3832source = "registry+https://github.com/rust-lang/crates.io-index"
3833checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
3834dependencies = [
3835 "bitflags 2.13.1",
3836 "cfg-if",
3837 "cfg_aliases 0.2.2",
3838 "libc",
3839]
3840
Bring vidya in cfd3e36 nandi 19d ago3841[[package]]
3842name = "nohash-hasher"
3843version = "0.2.0"
3844source = "registry+https://github.com/rust-lang/crates.io-index"
3845checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
3846
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago3847[[package]]
3848name = "nom"
3849version = "7.1.3"
3850source = "registry+https://github.com/rust-lang/crates.io-index"
3851checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
3852dependencies = [
3853 "memchr",
3854 "minimal-lexical",
3855]
3856
3857[[package]]
3858name = "nom"
3859version = "8.0.0"
3860source = "registry+https://github.com/rust-lang/crates.io-index"
3861checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
3862dependencies = [
3863 "memchr",
3864]
3865
3866[[package]]
3867name = "noq"
3868version = "0.17.0"
3869source = "git+https://github.com/n0-computer/noq?rev=ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69#ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69"
3870dependencies = [
3871 "bytes",
3872 "cfg_aliases 0.2.2",
3873 "derive_more",
3874 "noq-proto",
3875 "noq-udp",
3876 "pin-project-lite",
3877 "rustc-hash 2.1.3",
3878 "rustls",
3879 "socket2",
3880 "thiserror 2.0.19",
3881 "tokio",
3882 "tokio-stream",
3883 "tracing",
3884 "web-time",
3885]
3886
3887[[package]]
3888name = "noq-proto"
3889version = "0.16.0"
3890source = "git+https://github.com/n0-computer/noq?rev=ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69#ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69"
3891dependencies = [
3892 "aes-gcm",
3893 "aws-lc-rs",
3894 "bytes",
3895 "derive_more",
3896 "enum-assoc",
3897 "fastbloom",
3898 "getrandom 0.4.3",
3899 "identity-hash",
3900 "lru-slab",
3901 "rand 0.10.2",
3902 "rustc-hash 2.1.3",
3903 "rustls",
3904 "rustls-pki-types",
3905 "rustls-platform-verifier 0.6.2",
3906 "slab",
3907 "sorted-index-buffer",
3908 "thiserror 2.0.19",
3909 "tinyvec",
3910 "tracing",
3911 "web-time",
3912]
3913
3914[[package]]
3915name = "noq-udp"
3916version = "0.9.0"
3917source = "git+https://github.com/n0-computer/noq?rev=ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69#ab042ea7e3f7bae1e43eaba2ac9dba47ddb52e69"
3918dependencies = [
3919 "cfg_aliases 0.2.2",
3920 "libc",
3921 "socket2",
3922 "tracing",
3923 "windows-sys 0.61.2",
3924]
3925
3926[[package]]
3927name = "novtb"
3928version = "0.1.13"
3929source = "registry+https://github.com/rust-lang/crates.io-index"
3930checksum = "75c0ea7569466bbce2394c0e5654b1e283c28ef7c70799e6f07b32029cca6d74"
3931dependencies = [
3932 "core_affinity",
3933]
3934
3935[[package]]
3936name = "ntimestamp"
3937version = "1.0.0"
3938source = "registry+https://github.com/rust-lang/crates.io-index"
3939checksum = "c50f94c405726d3e0095e89e72f75ce7f6587b94a8bd8dc8054b73f65c0fd68c"
3940dependencies = [
3941 "base32",
3942 "document-features",
3943 "getrandom 0.2.17",
3944 "httpdate",
3945 "js-sys",
3946 "once_cell",
3947 "serde",
3948]
3949
3950[[package]]
3951name = "nu-ansi-term"
3952version = "0.50.3"
3953source = "registry+https://github.com/rust-lang/crates.io-index"
3954checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
3955dependencies = [
3956 "windows-sys 0.61.2",
3957]
3958
3959[[package]]
3960name = "num-bigint"
3961version = "0.4.8"
3962source = "registry+https://github.com/rust-lang/crates.io-index"
3963checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
3964dependencies = [
3965 "num-integer",
3966 "num-traits",
3967]
3968
3969[[package]]
3970name = "num-complex"
3971version = "0.4.6"
3972source = "registry+https://github.com/rust-lang/crates.io-index"
3973checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
3974dependencies = [
3975 "num-traits",
3976]
3977
3978[[package]]
3979name = "num-conv"
3980version = "0.2.2"
3981source = "registry+https://github.com/rust-lang/crates.io-index"
3982checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
3983
3984[[package]]
3985name = "num-derive"
3986version = "0.4.2"
3987source = "registry+https://github.com/rust-lang/crates.io-index"
3988checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
3989dependencies = [
3990 "proc-macro2",
3991 "quote",
3992 "syn 2.0.119",
3993]
3994
3995[[package]]
3996name = "num-integer"
3997version = "0.1.46"
3998source = "registry+https://github.com/rust-lang/crates.io-index"
3999checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
4000dependencies = [
4001 "num-traits",
4002]
4003
Bring vidya in cfd3e36 nandi 19d ago4004[[package]]
4005name = "num-rational"
4006version = "0.4.2"
4007source = "registry+https://github.com/rust-lang/crates.io-index"
4008checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
4009dependencies = [
4010 "num-bigint",
4011 "num-integer",
4012 "num-traits",
4013 "serde",
4014]
4015
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4016[[package]]
4017name = "num-traits"
4018version = "0.2.19"
4019source = "registry+https://github.com/rust-lang/crates.io-index"
4020checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
4021dependencies = [
4022 "autocfg",
4023]
4024
4025[[package]]
4026name = "num_cpus"
4027version = "1.17.0"
4028source = "registry+https://github.com/rust-lang/crates.io-index"
4029checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
4030dependencies = [
4031 "hermit-abi",
4032 "libc",
4033]
4034
4035[[package]]
4036name = "num_enum"
4037version = "0.7.6"
4038source = "registry+https://github.com/rust-lang/crates.io-index"
4039checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
4040dependencies = [
4041 "num_enum_derive",
4042 "rustversion",
4043]
4044
4045[[package]]
4046name = "num_enum_derive"
4047version = "0.7.6"
4048source = "registry+https://github.com/rust-lang/crates.io-index"
4049checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
4050dependencies = [
4051 "proc-macro-crate",
4052 "proc-macro2",
4053 "quote",
4054 "syn 2.0.119",
4055]
4056
4057[[package]]
4058name = "num_threads"
4059version = "0.1.7"
4060source = "registry+https://github.com/rust-lang/crates.io-index"
4061checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
4062dependencies = [
4063 "libc",
4064]
4065
Bring vidya in cfd3e36 nandi 19d ago4066[[package]]
4067name = "objc-sys"
4068version = "0.3.5"
4069source = "registry+https://github.com/rust-lang/crates.io-index"
4070checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
4071
4072[[package]]
4073name = "objc2"
4074version = "0.5.2"
4075source = "registry+https://github.com/rust-lang/crates.io-index"
4076checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
4077dependencies = [
4078 "objc-sys",
4079 "objc2-encode",
4080]
4081
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4082[[package]]
4083name = "objc2"
4084version = "0.6.4"
4085source = "registry+https://github.com/rust-lang/crates.io-index"
4086checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
4087dependencies = [
4088 "objc2-encode",
4089]
4090
Bring vidya in cfd3e36 nandi 19d ago4091[[package]]
4092name = "objc2-app-kit"
4093version = "0.2.2"
4094source = "registry+https://github.com/rust-lang/crates.io-index"
4095checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
4096dependencies = [
4097 "bitflags 2.13.1",
4098 "block2 0.5.1",
4099 "libc",
4100 "objc2 0.5.2",
4101 "objc2-core-data",
4102 "objc2-core-image 0.2.2",
4103 "objc2-foundation 0.2.2",
4104 "objc2-quartz-core 0.2.2",
4105]
4106
4107[[package]]
4108name = "objc2-app-kit"
4109version = "0.3.2"
4110source = "registry+https://github.com/rust-lang/crates.io-index"
4111checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
4112dependencies = [
4113 "bitflags 2.13.1",
4114 "objc2 0.6.4",
4115 "objc2-core-foundation",
4116 "objc2-core-graphics",
4117 "objc2-foundation 0.3.2",
4118]
4119
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4120[[package]]
4121name = "objc2-audio-toolbox"
4122version = "0.3.2"
4123source = "registry+https://github.com/rust-lang/crates.io-index"
4124checksum = "6948501a91121d6399b79abaa33a8aa4ea7857fe019f341b8c23ad6e81b79b08"
4125dependencies = [
4126 "bitflags 2.13.1",
4127 "libc",
Bring vidya in cfd3e36 nandi 19d ago4128 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4129 "objc2-core-audio",
4130 "objc2-core-audio-types",
4131 "objc2-core-foundation",
Bring vidya in cfd3e36 nandi 19d ago4132 "objc2-foundation 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4133]
4134
4135[[package]]
4136name = "objc2-av-foundation"
4137version = "0.3.2"
4138source = "registry+https://github.com/rust-lang/crates.io-index"
4139checksum = "478ae33fcac9df0a18db8302387c666b8ef08a3e2d62b510ca4fc278a384b6c0"
4140dependencies = [
4141 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4142 "block2 0.6.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4143 "dispatch2",
Bring vidya in cfd3e36 nandi 19d ago4144 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4145 "objc2-avf-audio",
4146 "objc2-core-audio-types",
4147 "objc2-core-foundation",
4148 "objc2-core-graphics",
Bring vidya in cfd3e36 nandi 19d ago4149 "objc2-core-image 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4150 "objc2-core-video",
Bring vidya in cfd3e36 nandi 19d ago4151 "objc2-foundation 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4152 "objc2-image-io",
4153 "objc2-media-toolbox",
Bring vidya in cfd3e36 nandi 19d ago4154 "objc2-quartz-core 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4155]
4156
4157[[package]]
4158name = "objc2-avf-audio"
4159version = "0.3.2"
4160source = "registry+https://github.com/rust-lang/crates.io-index"
4161checksum = "13a380031deed8e99db00065c45937da434ca987c034e13b87e4441f9e4090be"
4162dependencies = [
Bring vidya in cfd3e36 nandi 19d ago4163 "objc2 0.6.4",
4164 "objc2-foundation 0.3.2",
4165]
4166
4167[[package]]
4168name = "objc2-cloud-kit"
4169version = "0.2.2"
4170source = "registry+https://github.com/rust-lang/crates.io-index"
4171checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
4172dependencies = [
4173 "bitflags 2.13.1",
4174 "block2 0.5.1",
4175 "objc2 0.5.2",
4176 "objc2-core-location",
4177 "objc2-foundation 0.2.2",
4178]
4179
4180[[package]]
4181name = "objc2-contacts"
4182version = "0.2.2"
4183source = "registry+https://github.com/rust-lang/crates.io-index"
4184checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
4185dependencies = [
4186 "block2 0.5.1",
4187 "objc2 0.5.2",
4188 "objc2-foundation 0.2.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4189]
4190
4191[[package]]
4192name = "objc2-core-audio"
4193version = "0.3.2"
4194source = "registry+https://github.com/rust-lang/crates.io-index"
4195checksum = "e1eebcea8b0dbff5f7c8504f3107c68fc061a3eb44932051c8cf8a68d969c3b2"
4196dependencies = [
4197 "dispatch2",
Bring vidya in cfd3e36 nandi 19d ago4198 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4199 "objc2-core-audio-types",
4200 "objc2-core-foundation",
Bring vidya in cfd3e36 nandi 19d ago4201 "objc2-foundation 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4202]
4203
4204[[package]]
4205name = "objc2-core-audio-types"
4206version = "0.3.2"
4207source = "registry+https://github.com/rust-lang/crates.io-index"
4208checksum = "5a89f2ec274a0cf4a32642b2991e8b351a404d290da87bb6a9a9d8632490bd1c"
4209dependencies = [
4210 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4211 "objc2 0.6.4",
4212]
4213
4214[[package]]
4215name = "objc2-core-data"
4216version = "0.2.2"
4217source = "registry+https://github.com/rust-lang/crates.io-index"
4218checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
4219dependencies = [
4220 "bitflags 2.13.1",
4221 "block2 0.5.1",
4222 "objc2 0.5.2",
4223 "objc2-foundation 0.2.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4224]
4225
4226[[package]]
4227name = "objc2-core-foundation"
4228version = "0.3.2"
4229source = "registry+https://github.com/rust-lang/crates.io-index"
4230checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
4231dependencies = [
4232 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4233 "block2 0.6.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4234 "dispatch2",
4235 "libc",
Bring vidya in cfd3e36 nandi 19d ago4236 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4237]
4238
4239[[package]]
4240name = "objc2-core-graphics"
4241version = "0.3.2"
4242source = "registry+https://github.com/rust-lang/crates.io-index"
4243checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
4244dependencies = [
4245 "bitflags 2.13.1",
4246 "dispatch2",
Bring vidya in cfd3e36 nandi 19d ago4247 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4248 "objc2-core-foundation",
4249 "objc2-io-surface",
4250]
4251
Bring vidya in cfd3e36 nandi 19d ago4252[[package]]
4253name = "objc2-core-image"
4254version = "0.2.2"
4255source = "registry+https://github.com/rust-lang/crates.io-index"
4256checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
4257dependencies = [
4258 "block2 0.5.1",
4259 "objc2 0.5.2",
4260 "objc2-foundation 0.2.2",
4261 "objc2-metal 0.2.2",
4262]
4263
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4264[[package]]
4265name = "objc2-core-image"
4266version = "0.3.2"
4267source = "registry+https://github.com/rust-lang/crates.io-index"
4268checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
4269dependencies = [
Bring vidya in cfd3e36 nandi 19d ago4270 "objc2 0.6.4",
4271 "objc2-foundation 0.3.2",
4272]
4273
4274[[package]]
4275name = "objc2-core-location"
4276version = "0.2.2"
4277source = "registry+https://github.com/rust-lang/crates.io-index"
4278checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
4279dependencies = [
4280 "block2 0.5.1",
4281 "objc2 0.5.2",
4282 "objc2-contacts",
4283 "objc2-foundation 0.2.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4284]
4285
4286[[package]]
4287name = "objc2-core-media"
4288version = "0.3.2"
4289source = "registry+https://github.com/rust-lang/crates.io-index"
4290checksum = "05ec576860167a15dd9fce7fbee7512beb4e31f532159d3482d1f9c6caedf31d"
4291dependencies = [
4292 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4293 "block2 0.6.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4294 "dispatch2",
Bring vidya in cfd3e36 nandi 19d ago4295 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4296 "objc2-core-audio",
4297 "objc2-core-audio-types",
4298 "objc2-core-foundation",
4299 "objc2-core-video",
4300]
4301
4302[[package]]
4303name = "objc2-core-video"
4304version = "0.3.2"
4305source = "registry+https://github.com/rust-lang/crates.io-index"
4306checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6"
4307dependencies = [
4308 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4309 "block2 0.6.2",
4310 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4311 "objc2-core-foundation",
4312 "objc2-core-graphics",
4313 "objc2-io-surface",
Bring vidya in cfd3e36 nandi 19d ago4314 "objc2-metal 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4315]
4316
4317[[package]]
4318name = "objc2-encode"
4319version = "4.1.0"
4320source = "registry+https://github.com/rust-lang/crates.io-index"
4321checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
4322
Bring vidya in cfd3e36 nandi 19d ago4323[[package]]
4324name = "objc2-foundation"
4325version = "0.2.2"
4326source = "registry+https://github.com/rust-lang/crates.io-index"
4327checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
4328dependencies = [
4329 "bitflags 2.13.1",
4330 "block2 0.5.1",
4331 "dispatch",
4332 "libc",
4333 "objc2 0.5.2",
4334]
4335
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4336[[package]]
4337name = "objc2-foundation"
4338version = "0.3.2"
4339source = "registry+https://github.com/rust-lang/crates.io-index"
4340checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
4341dependencies = [
4342 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4343 "block2 0.6.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4344 "libc",
Bring vidya in cfd3e36 nandi 19d ago4345 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4346 "objc2-core-foundation",
4347]
4348
4349[[package]]
4350name = "objc2-image-io"
4351version = "0.3.2"
4352source = "registry+https://github.com/rust-lang/crates.io-index"
4353checksum = "32b0446e98cf4a784cc7a0177715ff317eeaa8463841c616cfc78aa4f953c4ea"
4354dependencies = [
Bring vidya in cfd3e36 nandi 19d ago4355 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4356 "objc2-core-foundation",
4357 "objc2-core-graphics",
4358]
4359
4360[[package]]
4361name = "objc2-io-surface"
4362version = "0.3.2"
4363source = "registry+https://github.com/rust-lang/crates.io-index"
4364checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
4365dependencies = [
4366 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4367 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4368 "objc2-core-foundation",
4369]
4370
Bring vidya in cfd3e36 nandi 19d ago4371[[package]]
4372name = "objc2-link-presentation"
4373version = "0.2.2"
4374source = "registry+https://github.com/rust-lang/crates.io-index"
4375checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
4376dependencies = [
4377 "block2 0.5.1",
4378 "objc2 0.5.2",
4379 "objc2-app-kit 0.2.2",
4380 "objc2-foundation 0.2.2",
4381]
4382
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4383[[package]]
4384name = "objc2-media-toolbox"
4385version = "0.3.2"
4386source = "registry+https://github.com/rust-lang/crates.io-index"
4387checksum = "edd9fdde720df3da7046bb9097811000c1e7ab5cd579fa89d96b27d56781fb30"
4388dependencies = [
Bring vidya in cfd3e36 nandi 19d ago4389 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4390 "objc2-core-audio-types",
4391 "objc2-core-foundation",
4392 "objc2-core-media",
4393]
4394
Bring vidya in cfd3e36 nandi 19d ago4395[[package]]
4396name = "objc2-metal"
4397version = "0.2.2"
4398source = "registry+https://github.com/rust-lang/crates.io-index"
4399checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
4400dependencies = [
4401 "bitflags 2.13.1",
4402 "block2 0.5.1",
4403 "objc2 0.5.2",
4404 "objc2-foundation 0.2.2",
4405]
4406
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4407[[package]]
4408name = "objc2-metal"
4409version = "0.3.2"
4410source = "registry+https://github.com/rust-lang/crates.io-index"
4411checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
4412dependencies = [
4413 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4414 "objc2 0.6.4",
4415 "objc2-foundation 0.3.2",
4416]
4417
4418[[package]]
4419name = "objc2-quartz-core"
4420version = "0.2.2"
4421source = "registry+https://github.com/rust-lang/crates.io-index"
4422checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
4423dependencies = [
4424 "bitflags 2.13.1",
4425 "block2 0.5.1",
4426 "objc2 0.5.2",
4427 "objc2-foundation 0.2.2",
4428 "objc2-metal 0.2.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4429]
4430
4431[[package]]
4432name = "objc2-quartz-core"
4433version = "0.3.2"
4434source = "registry+https://github.com/rust-lang/crates.io-index"
4435checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
4436dependencies = [
4437 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4438 "objc2 0.6.4",
4439 "objc2-foundation 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4440]
4441
4442[[package]]
4443name = "objc2-security"
4444version = "0.3.2"
4445source = "registry+https://github.com/rust-lang/crates.io-index"
4446checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a"
4447dependencies = [
4448 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago4449 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4450 "objc2-core-foundation",
4451]
4452
Bring vidya in cfd3e36 nandi 19d ago4453[[package]]
4454name = "objc2-symbols"
4455version = "0.2.2"
4456source = "registry+https://github.com/rust-lang/crates.io-index"
4457checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
4458dependencies = [
4459 "objc2 0.5.2",
4460 "objc2-foundation 0.2.2",
4461]
4462
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4463[[package]]
4464name = "objc2-system-configuration"
4465version = "0.3.2"
4466source = "registry+https://github.com/rust-lang/crates.io-index"
4467checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
4468dependencies = [
4469 "bitflags 2.13.1",
4470 "dispatch2",
4471 "libc",
Bring vidya in cfd3e36 nandi 19d ago4472 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4473 "objc2-core-foundation",
4474 "objc2-security",
4475]
4476
Bring vidya in cfd3e36 nandi 19d ago4477[[package]]
4478name = "objc2-ui-kit"
4479version = "0.2.2"
4480source = "registry+https://github.com/rust-lang/crates.io-index"
4481checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
4482dependencies = [
4483 "bitflags 2.13.1",
4484 "block2 0.5.1",
4485 "objc2 0.5.2",
4486 "objc2-cloud-kit",
4487 "objc2-core-data",
4488 "objc2-core-image 0.2.2",
4489 "objc2-core-location",
4490 "objc2-foundation 0.2.2",
4491 "objc2-link-presentation",
4492 "objc2-quartz-core 0.2.2",
4493 "objc2-symbols",
4494 "objc2-uniform-type-identifiers",
4495 "objc2-user-notifications",
4496]
4497
4498[[package]]
4499name = "objc2-uniform-type-identifiers"
4500version = "0.2.2"
4501source = "registry+https://github.com/rust-lang/crates.io-index"
4502checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
4503dependencies = [
4504 "block2 0.5.1",
4505 "objc2 0.5.2",
4506 "objc2-foundation 0.2.2",
4507]
4508
4509[[package]]
4510name = "objc2-user-notifications"
4511version = "0.2.2"
4512source = "registry+https://github.com/rust-lang/crates.io-index"
4513checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
4514dependencies = [
4515 "bitflags 2.13.1",
4516 "block2 0.5.1",
4517 "objc2 0.5.2",
4518 "objc2-core-location",
4519 "objc2-foundation 0.2.2",
4520]
4521
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4522[[package]]
4523name = "object"
4524version = "0.37.3"
4525source = "registry+https://github.com/rust-lang/crates.io-index"
4526checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
4527dependencies = [
4528 "memchr",
4529]
4530
4531[[package]]
4532name = "oid-registry"
4533version = "0.8.1"
4534source = "registry+https://github.com/rust-lang/crates.io-index"
4535checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
4536dependencies = [
4537 "asn1-rs",
4538]
4539
4540[[package]]
4541name = "once_cell"
4542version = "1.21.4"
4543source = "registry+https://github.com/rust-lang/crates.io-index"
4544checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
4545dependencies = [
4546 "critical-section",
4547 "portable-atomic",
4548]
4549
4550[[package]]
4551name = "once_cell_polyfill"
4552version = "1.70.2"
4553source = "registry+https://github.com/rust-lang/crates.io-index"
4554checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
4555
4556[[package]]
4557name = "opaque-debug"
4558version = "0.3.1"
4559source = "registry+https://github.com/rust-lang/crates.io-index"
4560checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
4561
4562[[package]]
4563name = "openh264"
4564version = "0.9.7"
4565source = "registry+https://github.com/rust-lang/crates.io-index"
4566checksum = "e6b2b561d2103303e233779545da757ecd35bad82188d619a6d8901f3007e1ff"
4567dependencies = [
4568 "openh264-sys2",
4569 "wide",
4570]
4571
4572[[package]]
4573name = "openh264-sys2"
4574version = "0.9.7"
4575source = "registry+https://github.com/rust-lang/crates.io-index"
4576checksum = "75a8867e48183bbd9147380227448c065fe456eb30b0ebc68929809c36c30985"
4577dependencies = [
4578 "cc",
4579 "nasm-rs",
4580 "walkdir",
4581]
4582
4583[[package]]
4584name = "openssl-probe"
4585version = "0.2.1"
4586source = "registry+https://github.com/rust-lang/crates.io-index"
4587checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
4588
Bring vidya in cfd3e36 nandi 19d ago4589[[package]]
4590name = "orbclient"
4591version = "0.3.55"
4592source = "registry+https://github.com/rust-lang/crates.io-index"
4593checksum = "5df339f526ea9a60e371768d50efc2f2508c7203290731565d1f7a6f71d21747"
4594dependencies = [
4595 "libc",
4596 "libredox",
4597]
4598
4599[[package]]
4600name = "owned_ttf_parser"
4601version = "0.25.1"
4602source = "registry+https://github.com/rust-lang/crates.io-index"
4603checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
4604dependencies = [
4605 "ttf-parser",
4606]
4607
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4608[[package]]
4609name = "papaya"
4610version = "0.2.4"
4611source = "registry+https://github.com/rust-lang/crates.io-index"
4612checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7"
4613dependencies = [
4614 "equivalent",
4615 "seize",
4616]
4617
4618[[package]]
4619name = "parking"
4620version = "2.2.1"
4621source = "registry+https://github.com/rust-lang/crates.io-index"
4622checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
4623
4624[[package]]
4625name = "parking_lot"
4626version = "0.12.5"
4627source = "registry+https://github.com/rust-lang/crates.io-index"
4628checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
4629dependencies = [
4630 "lock_api",
4631 "parking_lot_core",
4632]
4633
4634[[package]]
4635name = "parking_lot_core"
4636version = "0.9.12"
4637source = "registry+https://github.com/rust-lang/crates.io-index"
4638checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
4639dependencies = [
4640 "backtrace",
4641 "cfg-if",
4642 "libc",
4643 "petgraph",
Bring vidya in cfd3e36 nandi 19d ago4644 "redox_syscall 0.5.18",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4645 "smallvec",
4646 "windows-link",
4647]
4648
4649[[package]]
4650name = "paste"
4651version = "1.0.15"
4652source = "registry+https://github.com/rust-lang/crates.io-index"
4653checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
4654
4655[[package]]
4656name = "pem-rfc7468"
4657version = "1.0.0"
4658source = "registry+https://github.com/rust-lang/crates.io-index"
4659checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
4660dependencies = [
4661 "base64ct",
4662]
4663
4664[[package]]
4665name = "percent-encoding"
4666version = "2.3.2"
4667source = "registry+https://github.com/rust-lang/crates.io-index"
4668checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
4669
4670[[package]]
4671name = "petgraph"
4672version = "0.6.5"
4673source = "registry+https://github.com/rust-lang/crates.io-index"
4674checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
4675dependencies = [
4676 "fixedbitset 0.4.2",
4677 "indexmap 2.14.0",
4678]
4679
4680[[package]]
4681name = "pharos"
4682version = "0.5.3"
4683source = "registry+https://github.com/rust-lang/crates.io-index"
4684checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414"
4685dependencies = [
4686 "futures",
4687 "rustc_version",
4688]
4689
4690[[package]]
4691name = "pic-scale"
4692version = "0.6.15"
4693source = "registry+https://github.com/rust-lang/crates.io-index"
4694checksum = "ff95ed1aee2a9952d6e292e3408024d212c4a2443174413f60480f2991a99727"
4695dependencies = [
4696 "colorutils-rs",
4697 "novtb",
4698 "num-traits",
4699 "pxfm",
4700 "rayon",
4701]
4702
4703[[package]]
4704name = "pin-project"
4705version = "1.1.13"
4706source = "registry+https://github.com/rust-lang/crates.io-index"
4707checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
4708dependencies = [
4709 "pin-project-internal",
4710]
4711
4712[[package]]
4713name = "pin-project-internal"
4714version = "1.1.13"
4715source = "registry+https://github.com/rust-lang/crates.io-index"
4716checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
4717dependencies = [
4718 "proc-macro2",
4719 "quote",
4720 "syn 2.0.119",
4721]
4722
4723[[package]]
4724name = "pin-project-lite"
4725version = "0.2.17"
4726source = "registry+https://github.com/rust-lang/crates.io-index"
4727checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
4728
4729[[package]]
4730name = "pin-utils"
4731version = "0.1.0"
4732source = "registry+https://github.com/rust-lang/crates.io-index"
4733checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
4734
4735[[package]]
4736name = "pipewire"
4737version = "0.9.2"
4738source = "registry+https://github.com/rust-lang/crates.io-index"
4739checksum = "9688b89abf11d756499f7c6190711d6dbe5a3acdb30c8fbf001d6596d06a8d44"
4740dependencies = [
4741 "anyhow",
4742 "bitflags 2.13.1",
4743 "libc",
4744 "libspa",
4745 "libspa-sys",
4746 "nix 0.30.1",
4747 "once_cell",
4748 "pipewire-sys",
4749 "thiserror 2.0.19",
4750]
4751
4752[[package]]
4753name = "pipewire-sys"
4754version = "0.9.2"
4755source = "registry+https://github.com/rust-lang/crates.io-index"
4756checksum = "cb028afee0d6ca17020b090e3b8fa2d7de23305aef975c7e5192a5050246ea36"
4757dependencies = [
4758 "bindgen 0.72.1",
4759 "libspa-sys",
4760 "system-deps",
4761]
4762
4763[[package]]
4764name = "pkarr"
4765version = "5.0.3"
4766source = "registry+https://github.com/rust-lang/crates.io-index"
4767checksum = "2f950360d31be432c0c9467fba5024a94f55128e7f32bc9d32db140369f24c77"
4768dependencies = [
4769 "base32",
4770 "bytes",
4771 "cfg_aliases 0.2.2",
4772 "document-features",
4773 "ed25519-dalek",
4774 "getrandom 0.4.3",
4775 "ntimestamp",
4776 "self_cell",
4777 "serde",
4778 "simple-dns",
4779 "thiserror 2.0.19",
4780]
4781
4782[[package]]
4783name = "pkcs8"
4784version = "0.11.0-rc.11"
4785source = "registry+https://github.com/rust-lang/crates.io-index"
4786checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
4787dependencies = [
4788 "der",
4789 "spki",
4790]
4791
4792[[package]]
4793name = "pkg-config"
4794version = "0.3.33"
4795source = "registry+https://github.com/rust-lang/crates.io-index"
4796checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
4797
Bring vidya in cfd3e36 nandi 19d ago4798[[package]]
4799name = "plain"
4800version = "0.2.3"
4801source = "registry+https://github.com/rust-lang/crates.io-index"
4802checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
4803
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4804[[package]]
4805name = "plist"
4806version = "1.10.0"
4807source = "registry+https://github.com/rust-lang/crates.io-index"
4808checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85"
4809dependencies = [
4810 "base64",
4811 "indexmap 2.14.0",
4812 "quick-xml",
4813 "serde",
4814 "time",
4815]
4816
Bring vidya in cfd3e36 nandi 19d ago4817[[package]]
4818name = "png"
4819version = "0.17.16"
4820source = "registry+https://github.com/rust-lang/crates.io-index"
4821checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
4822dependencies = [
4823 "bitflags 1.3.2",
4824 "crc32fast",
4825 "fdeflate",
4826 "flate2",
4827 "miniz_oxide 0.8.9",
4828]
4829
4830[[package]]
4831name = "png"
4832version = "0.18.1"
4833source = "registry+https://github.com/rust-lang/crates.io-index"
4834checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
4835dependencies = [
4836 "bitflags 2.13.1",
4837 "crc32fast",
4838 "fdeflate",
4839 "flate2",
4840 "miniz_oxide 0.8.9",
4841]
4842
4843[[package]]
4844name = "polling"
4845version = "3.11.0"
4846source = "registry+https://github.com/rust-lang/crates.io-index"
4847checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
4848dependencies = [
4849 "cfg-if",
4850 "concurrent-queue",
4851 "hermit-abi",
4852 "pin-project-lite",
4853 "rustix 1.1.4",
4854 "windows-sys 0.61.2",
4855]
4856
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago4857[[package]]
4858name = "polyval"
4859version = "0.6.2"
4860source = "registry+https://github.com/rust-lang/crates.io-index"
4861checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
4862dependencies = [
4863 "cfg-if",
4864 "cpufeatures 0.2.17",
4865 "opaque-debug",
4866 "universal-hash",
4867]
4868
4869[[package]]
4870name = "portable-atomic"
4871version = "1.14.0"
4872source = "registry+https://github.com/rust-lang/crates.io-index"
4873checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
4874dependencies = [
4875 "serde",
4876]
4877
4878[[package]]
4879name = "portable-atomic-util"
4880version = "0.2.7"
4881source = "registry+https://github.com/rust-lang/crates.io-index"
4882checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
4883dependencies = [
4884 "portable-atomic",
4885]
4886
4887[[package]]
4888name = "portmapper"
4889version = "0.15.0"
4890source = "registry+https://github.com/rust-lang/crates.io-index"
4891checksum = "74748bc706fa6b6aebac6bbe0bbe0de806b384cb5c557ea974f771360a4e3858"
4892dependencies = [
4893 "base64",
4894 "bytes",
4895 "derive_more",
4896 "futures-lite",
4897 "futures-util",
4898 "hyper-util",
4899 "igd-next",
4900 "iroh-metrics",
4901 "libc",
4902 "n0-error",
4903 "netwatch",
4904 "num_enum",
4905 "rand 0.9.5",
4906 "serde",
4907 "smallvec",
4908 "socket2",
4909 "time",
4910 "tokio",
4911 "tokio-util",
4912 "tower-layer",
4913 "tracing",
4914 "url",
4915]
4916
4917[[package]]
4918name = "postcard"
4919version = "1.1.3"
4920source = "registry+https://github.com/rust-lang/crates.io-index"
4921checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
4922dependencies = [
4923 "cobs",
4924 "embedded-io 0.4.0",
4925 "embedded-io 0.6.1",
4926 "heapless",
4927 "postcard-derive",
4928 "serde",
4929]
4930
4931[[package]]
4932name = "postcard-derive"
4933version = "0.2.2"
4934source = "registry+https://github.com/rust-lang/crates.io-index"
4935checksum = "e0232bd009a197ceec9cc881ba46f727fcd8060a2d8d6a9dde7a69030a6fe2bb"
4936dependencies = [
4937 "proc-macro2",
4938 "quote",
4939 "syn 2.0.119",
4940]
4941
4942[[package]]
4943name = "potential_utf"
4944version = "0.1.5"
4945source = "registry+https://github.com/rust-lang/crates.io-index"
4946checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
4947dependencies = [
4948 "zerovec",
4949]
4950
4951[[package]]
4952name = "powerfmt"
4953version = "0.2.0"
4954source = "registry+https://github.com/rust-lang/crates.io-index"
4955checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
4956
4957[[package]]
4958name = "ppv-lite86"
4959version = "0.2.21"
4960source = "registry+https://github.com/rust-lang/crates.io-index"
4961checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
4962dependencies = [
4963 "zerocopy",
4964]
4965
4966[[package]]
4967name = "prettyplease"
4968version = "0.2.37"
4969source = "registry+https://github.com/rust-lang/crates.io-index"
4970checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
4971dependencies = [
4972 "proc-macro2",
4973 "syn 2.0.119",
4974]
4975
4976[[package]]
4977name = "primal-check"
4978version = "0.3.4"
4979source = "registry+https://github.com/rust-lang/crates.io-index"
4980checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
4981dependencies = [
4982 "num-integer",
4983]
4984
4985[[package]]
4986name = "proc-macro-crate"
4987version = "3.5.0"
4988source = "registry+https://github.com/rust-lang/crates.io-index"
4989checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
4990dependencies = [
4991 "toml_edit",
4992]
4993
4994[[package]]
4995name = "proc-macro2"
4996version = "1.0.107"
4997source = "registry+https://github.com/rust-lang/crates.io-index"
4998checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
4999dependencies = [
5000 "unicode-ident",
5001]
5002
Bring vidya in cfd3e36 nandi 19d ago5003[[package]]
5004name = "profiling"
5005version = "1.0.18"
5006source = "registry+https://github.com/rust-lang/crates.io-index"
5007checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
5008
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5009[[package]]
5010name = "pxfm"
5011version = "0.1.30"
5012source = "registry+https://github.com/rust-lang/crates.io-index"
5013checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
5014
5015[[package]]
5016name = "qmux"
5017version = "0.0.5"
5018source = "registry+https://github.com/rust-lang/crates.io-index"
5019checksum = "32a87859012c43a1e38dda29f2464e0ee39b0e96d0f95f870a73610bc6f2c3c2"
5020dependencies = [
5021 "bytes",
5022 "futures",
5023 "rustls",
5024 "thiserror 2.0.19",
5025 "tokio",
5026 "tokio-rustls",
5027 "tokio-tungstenite",
5028 "tracing",
5029 "web-transport-proto",
5030 "web-transport-trait",
5031]
5032
Bring vidya in cfd3e36 nandi 19d ago5033[[package]]
5034name = "quick-error"
5035version = "2.0.1"
5036source = "registry+https://github.com/rust-lang/crates.io-index"
5037checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
5038
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5039[[package]]
5040name = "quick-xml"
5041version = "0.41.0"
5042source = "registry+https://github.com/rust-lang/crates.io-index"
5043checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
5044dependencies = [
5045 "memchr",
5046]
5047
5048[[package]]
5049name = "quinn"
5050version = "0.11.11"
5051source = "registry+https://github.com/rust-lang/crates.io-index"
5052checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
5053dependencies = [
5054 "bytes",
5055 "cfg_aliases 0.2.2",
5056 "pin-project-lite",
5057 "quinn-proto",
5058 "quinn-udp",
5059 "rustc-hash 2.1.3",
5060 "rustls",
5061 "socket2",
5062 "thiserror 2.0.19",
5063 "tokio",
5064 "tracing",
5065 "web-time",
5066]
5067
5068[[package]]
5069name = "quinn-proto"
5070version = "0.11.16"
5071source = "registry+https://github.com/rust-lang/crates.io-index"
5072checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
5073dependencies = [
5074 "aws-lc-rs",
5075 "bytes",
5076 "fastbloom",
5077 "getrandom 0.4.3",
5078 "lru-slab",
5079 "rand 0.10.2",
5080 "rand_pcg",
5081 "ring",
5082 "rustc-hash 2.1.3",
5083 "rustls",
5084 "rustls-pki-types",
5085 "rustls-platform-verifier 0.7.0",
5086 "slab",
5087 "thiserror 2.0.19",
5088 "tinyvec",
5089 "tracing",
5090 "web-time",
5091]
5092
5093[[package]]
5094name = "quinn-udp"
5095version = "0.5.15"
5096source = "registry+https://github.com/rust-lang/crates.io-index"
5097checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
5098dependencies = [
5099 "cfg_aliases 0.2.2",
5100 "libc",
5101 "once_cell",
5102 "socket2",
5103 "tracing",
5104 "windows-sys 0.61.2",
5105]
5106
5107[[package]]
5108name = "quote"
5109version = "1.0.47"
5110source = "registry+https://github.com/rust-lang/crates.io-index"
5111checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
5112dependencies = [
5113 "proc-macro2",
5114]
5115
5116[[package]]
5117name = "r-efi"
5118version = "5.3.0"
5119source = "registry+https://github.com/rust-lang/crates.io-index"
5120checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
5121
5122[[package]]
5123name = "r-efi"
5124version = "6.0.0"
5125source = "registry+https://github.com/rust-lang/crates.io-index"
5126checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
5127
5128[[package]]
5129name = "rand"
5130version = "0.8.7"
5131source = "registry+https://github.com/rust-lang/crates.io-index"
5132checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
5133dependencies = [
5134 "libc",
5135 "rand_chacha 0.3.1",
5136 "rand_core 0.6.4",
5137]
5138
5139[[package]]
5140name = "rand"
5141version = "0.9.5"
5142source = "registry+https://github.com/rust-lang/crates.io-index"
5143checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
5144dependencies = [
5145 "rand_chacha 0.9.0",
5146 "rand_core 0.9.5",
5147]
5148
5149[[package]]
5150name = "rand"
5151version = "0.10.2"
5152source = "registry+https://github.com/rust-lang/crates.io-index"
5153checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
5154dependencies = [
5155 "chacha20",
5156 "getrandom 0.4.3",
5157 "rand_core 0.10.1",
5158]
5159
5160[[package]]
5161name = "rand_chacha"
5162version = "0.3.1"
5163source = "registry+https://github.com/rust-lang/crates.io-index"
5164checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
5165dependencies = [
5166 "ppv-lite86",
5167 "rand_core 0.6.4",
5168]
5169
5170[[package]]
5171name = "rand_chacha"
5172version = "0.9.0"
5173source = "registry+https://github.com/rust-lang/crates.io-index"
5174checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
5175dependencies = [
5176 "ppv-lite86",
5177 "rand_core 0.9.5",
5178]
5179
5180[[package]]
5181name = "rand_core"
5182version = "0.6.4"
5183source = "registry+https://github.com/rust-lang/crates.io-index"
5184checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
5185dependencies = [
5186 "getrandom 0.2.17",
5187]
5188
5189[[package]]
5190name = "rand_core"
5191version = "0.9.5"
5192source = "registry+https://github.com/rust-lang/crates.io-index"
5193checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
5194dependencies = [
5195 "getrandom 0.3.4",
5196]
5197
5198[[package]]
5199name = "rand_core"
5200version = "0.10.1"
5201source = "registry+https://github.com/rust-lang/crates.io-index"
5202checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
5203
5204[[package]]
5205name = "rand_pcg"
5206version = "0.10.2"
5207source = "registry+https://github.com/rust-lang/crates.io-index"
5208checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
5209dependencies = [
5210 "rand_core 0.10.1",
5211]
5212
Bring vidya in cfd3e36 nandi 19d ago5213[[package]]
5214name = "raw-window-handle"
5215version = "0.6.2"
5216source = "registry+https://github.com/rust-lang/crates.io-index"
5217checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
5218
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5219[[package]]
5220name = "rayon"
5221version = "1.12.0"
5222source = "registry+https://github.com/rust-lang/crates.io-index"
5223checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
5224dependencies = [
5225 "either",
5226 "rayon-core",
5227]
5228
5229[[package]]
5230name = "rayon-core"
5231version = "1.13.0"
5232source = "registry+https://github.com/rust-lang/crates.io-index"
5233checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
5234dependencies = [
5235 "crossbeam-deque",
5236 "crossbeam-utils",
5237]
5238
5239[[package]]
5240name = "rcgen"
5241version = "0.14.8"
5242source = "registry+https://github.com/rust-lang/crates.io-index"
5243checksum = "57f6d249aad744e274e682777a50283a225a32705394ee6d5fcc01efa25e4055"
5244dependencies = [
5245 "aws-lc-rs",
5246 "rustls-pki-types",
5247 "time",
5248 "x509-parser",
5249 "yasna",
5250]
5251
5252[[package]]
5253name = "realfft"
5254version = "3.5.0"
5255source = "registry+https://github.com/rust-lang/crates.io-index"
5256checksum = "f821338fddb99d089116342c46e9f1fbf3828dba077674613e734e01d6ea8677"
5257dependencies = [
5258 "rustfft",
5259]
5260
Bring vidya in cfd3e36 nandi 19d ago5261[[package]]
5262name = "redox_syscall"
5263version = "0.4.1"
5264source = "registry+https://github.com/rust-lang/crates.io-index"
5265checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
5266dependencies = [
5267 "bitflags 1.3.2",
5268]
5269
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5270[[package]]
5271name = "redox_syscall"
5272version = "0.5.18"
5273source = "registry+https://github.com/rust-lang/crates.io-index"
5274checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
5275dependencies = [
5276 "bitflags 2.13.1",
5277]
5278
Bring vidya in cfd3e36 nandi 19d ago5279[[package]]
5280name = "redox_syscall"
5281version = "0.9.3"
5282source = "registry+https://github.com/rust-lang/crates.io-index"
5283checksum = "d678d17679829e73d371e96880897e98fee2ded7acc0a50bdf8af2affa4b2fe5"
5284dependencies = [
5285 "bitflags 2.13.1",
5286]
5287
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5288[[package]]
5289name = "ref-cast"
5290version = "1.0.26"
5291source = "registry+https://github.com/rust-lang/crates.io-index"
5292checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
5293dependencies = [
5294 "ref-cast-impl",
5295]
5296
5297[[package]]
5298name = "ref-cast-impl"
5299version = "1.0.26"
5300source = "registry+https://github.com/rust-lang/crates.io-index"
5301checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
5302dependencies = [
5303 "proc-macro2",
5304 "quote",
5305 "syn 3.0.3",
5306]
5307
5308[[package]]
5309name = "regex"
5310version = "1.13.1"
5311source = "registry+https://github.com/rust-lang/crates.io-index"
5312checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
5313dependencies = [
5314 "aho-corasick",
5315 "memchr",
5316 "regex-automata",
5317 "regex-syntax",
5318]
5319
5320[[package]]
5321name = "regex-automata"
5322version = "0.4.16"
5323source = "registry+https://github.com/rust-lang/crates.io-index"
5324checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
5325dependencies = [
5326 "aho-corasick",
5327 "memchr",
5328 "regex-syntax",
5329]
5330
5331[[package]]
5332name = "regex-syntax"
5333version = "0.8.11"
5334source = "registry+https://github.com/rust-lang/crates.io-index"
5335checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
5336
5337[[package]]
5338name = "reqwest"
5339version = "0.12.28"
5340source = "registry+https://github.com/rust-lang/crates.io-index"
5341checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
5342dependencies = [
5343 "base64",
5344 "bytes",
5345 "futures-core",
5346 "http",
5347 "http-body",
5348 "http-body-util",
5349 "hyper",
5350 "hyper-util",
5351 "js-sys",
5352 "log",
5353 "percent-encoding",
5354 "pin-project-lite",
5355 "serde",
5356 "serde_json",
5357 "serde_urlencoded",
5358 "sync_wrapper",
5359 "tokio",
5360 "tower",
5361 "tower-http",
5362 "tower-service",
5363 "url",
5364 "wasm-bindgen",
5365 "wasm-bindgen-futures",
5366 "web-sys",
5367]
5368
5369[[package]]
5370name = "reqwest"
5371version = "0.13.4"
5372source = "registry+https://github.com/rust-lang/crates.io-index"
5373checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
5374dependencies = [
5375 "base64",
5376 "bytes",
5377 "futures-core",
5378 "futures-util",
5379 "http",
5380 "http-body",
5381 "http-body-util",
5382 "hyper",
5383 "hyper-rustls",
5384 "hyper-util",
5385 "js-sys",
5386 "log",
5387 "percent-encoding",
5388 "pin-project-lite",
5389 "rustls",
5390 "rustls-pki-types",
5391 "rustls-platform-verifier 0.7.0",
5392 "sync_wrapper",
5393 "tokio",
5394 "tokio-rustls",
5395 "tokio-util",
5396 "tower",
5397 "tower-http",
5398 "tower-service",
5399 "url",
5400 "wasm-bindgen",
5401 "wasm-bindgen-futures",
5402 "wasm-streams",
5403 "web-sys",
5404]
5405
5406[[package]]
5407name = "resolv-conf"
5408version = "0.7.6"
5409source = "registry+https://github.com/rust-lang/crates.io-index"
5410checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
5411
5412[[package]]
5413name = "ring"
5414version = "0.17.14"
5415source = "registry+https://github.com/rust-lang/crates.io-index"
5416checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
5417dependencies = [
5418 "cc",
5419 "cfg-if",
5420 "getrandom 0.2.17",
5421 "libc",
5422 "untrusted 0.9.0",
5423 "windows-sys 0.52.0",
5424]
5425
5426[[package]]
5427name = "ringbuf"
5428version = "0.4.8"
5429source = "registry+https://github.com/rust-lang/crates.io-index"
5430checksum = "fe47b720588c8702e34b5979cb3271a8b1842c7cb6f57408efa70c779363488c"
5431dependencies = [
5432 "crossbeam-utils",
5433 "portable-atomic",
5434 "portable-atomic-util",
5435]
5436
5437[[package]]
5438name = "rpds"
5439version = "1.2.1"
5440source = "registry+https://github.com/rust-lang/crates.io-index"
5441checksum = "e025feb26210bc196b908e72deb063b1b4000754304341cbc168a1e72c857ebc"
5442dependencies = [
5443 "archery",
5444 "serde",
5445 "smallvec",
5446]
5447
5448[[package]]
5449name = "rubato"
5450version = "0.16.2"
5451source = "registry+https://github.com/rust-lang/crates.io-index"
5452checksum = "5258099699851cfd0082aeb645feb9c084d9a5e1f1b8d5372086b989fc5e56a1"
5453dependencies = [
5454 "num-complex",
5455 "num-integer",
5456 "num-traits",
5457 "realfft",
5458]
5459
5460[[package]]
5461name = "rubato"
5462version = "1.0.1"
5463source = "registry+https://github.com/rust-lang/crates.io-index"
5464checksum = "90173154a8a14e6adb109ea641743bc95ec81c093d94e70c6763565f7108ebeb"
5465dependencies = [
5466 "audioadapter",
5467 "audioadapter-buffers",
5468 "num-complex",
5469 "num-integer",
5470 "num-traits",
5471 "realfft",
5472 "visibility",
5473 "windowfunctions",
5474]
5475
5476[[package]]
5477name = "rustc-demangle"
5478version = "0.1.28"
5479source = "registry+https://github.com/rust-lang/crates.io-index"
5480checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb"
5481
5482[[package]]
5483name = "rustc-hash"
5484version = "1.1.0"
5485source = "registry+https://github.com/rust-lang/crates.io-index"
5486checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
5487
5488[[package]]
5489name = "rustc-hash"
5490version = "2.1.3"
5491source = "registry+https://github.com/rust-lang/crates.io-index"
5492checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
5493
5494[[package]]
5495name = "rustc_version"
5496version = "0.4.1"
5497source = "registry+https://github.com/rust-lang/crates.io-index"
5498checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
5499dependencies = [
5500 "semver",
5501]
5502
5503[[package]]
5504name = "rustfft"
5505version = "6.4.1"
5506source = "registry+https://github.com/rust-lang/crates.io-index"
5507checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
5508dependencies = [
5509 "num-complex",
5510 "num-integer",
5511 "num-traits",
5512 "primal-check",
5513 "strength_reduce",
5514 "transpose",
5515]
5516
5517[[package]]
5518name = "rusticata-macros"
5519version = "4.1.0"
5520source = "registry+https://github.com/rust-lang/crates.io-index"
5521checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
5522dependencies = [
5523 "nom 7.1.3",
5524]
5525
Bring vidya in cfd3e36 nandi 19d ago5526[[package]]
5527name = "rustix"
5528version = "0.38.44"
5529source = "registry+https://github.com/rust-lang/crates.io-index"
5530checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
5531dependencies = [
5532 "bitflags 2.13.1",
5533 "errno",
5534 "libc",
5535 "linux-raw-sys 0.4.15",
5536 "windows-sys 0.59.0",
5537]
5538
5539[[package]]
5540name = "rustix"
5541version = "1.1.4"
5542source = "registry+https://github.com/rust-lang/crates.io-index"
5543checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
5544dependencies = [
5545 "bitflags 2.13.1",
5546 "errno",
5547 "libc",
5548 "linux-raw-sys 0.12.1",
5549 "windows-sys 0.61.2",
5550]
5551
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5552[[package]]
5553name = "rustls"
5554version = "0.23.43"
5555source = "registry+https://github.com/rust-lang/crates.io-index"
5556checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
5557dependencies = [
5558 "aws-lc-rs",
5559 "log",
5560 "once_cell",
5561 "rustls-pki-types",
5562 "rustls-webpki",
5563 "subtle",
5564 "zeroize",
5565]
5566
5567[[package]]
5568name = "rustls-native-certs"
5569version = "0.8.4"
5570source = "registry+https://github.com/rust-lang/crates.io-index"
5571checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
5572dependencies = [
5573 "openssl-probe",
5574 "rustls-pki-types",
5575 "schannel",
5576 "security-framework",
5577]
5578
5579[[package]]
5580name = "rustls-pemfile"
5581version = "2.2.0"
5582source = "registry+https://github.com/rust-lang/crates.io-index"
5583checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
5584dependencies = [
5585 "rustls-pki-types",
5586]
5587
5588[[package]]
5589name = "rustls-pki-types"
5590version = "1.15.1"
5591source = "registry+https://github.com/rust-lang/crates.io-index"
5592checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
5593dependencies = [
5594 "web-time",
5595 "zeroize",
5596]
5597
5598[[package]]
5599name = "rustls-platform-verifier"
5600version = "0.6.2"
5601source = "registry+https://github.com/rust-lang/crates.io-index"
5602checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
5603dependencies = [
Bring vidya in cfd3e36 nandi 19d ago5604 "core-foundation 0.10.1",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5605 "core-foundation-sys",
5606 "jni 0.21.1",
5607 "log",
5608 "once_cell",
5609 "rustls",
5610 "rustls-native-certs",
5611 "rustls-platform-verifier-android",
5612 "rustls-webpki",
5613 "security-framework",
5614 "security-framework-sys",
5615 "webpki-root-certs",
5616 "windows-sys 0.61.2",
5617]
5618
5619[[package]]
5620name = "rustls-platform-verifier"
5621version = "0.7.0"
5622source = "registry+https://github.com/rust-lang/crates.io-index"
5623checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
5624dependencies = [
Bring vidya in cfd3e36 nandi 19d ago5625 "core-foundation 0.10.1",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5626 "core-foundation-sys",
5627 "jni 0.22.4",
5628 "log",
5629 "once_cell",
5630 "rustls",
5631 "rustls-native-certs",
5632 "rustls-platform-verifier-android",
5633 "rustls-webpki",
5634 "security-framework",
5635 "security-framework-sys",
5636 "webpki-root-certs",
5637 "windows-sys 0.61.2",
5638]
5639
5640[[package]]
5641name = "rustls-platform-verifier-android"
5642version = "0.1.1"
5643source = "registry+https://github.com/rust-lang/crates.io-index"
5644checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
5645
5646[[package]]
5647name = "rustls-webpki"
5648version = "0.103.13"
5649source = "registry+https://github.com/rust-lang/crates.io-index"
5650checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
5651dependencies = [
5652 "aws-lc-rs",
5653 "ring",
5654 "rustls-pki-types",
5655 "untrusted 0.9.0",
5656]
5657
5658[[package]]
5659name = "rustversion"
5660version = "1.0.23"
5661source = "registry+https://github.com/rust-lang/crates.io-index"
5662checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
5663
5664[[package]]
5665name = "rusty-capture"
5666version = "0.1.0"
5667source = "git+https://github.com/n0-computer/iroh-live?rev=edd9bcc530a615f3ab3a6919e96790a077905376#edd9bcc530a615f3ab3a6919e96790a077905376"
5668dependencies = [
5669 "anyhow",
Bring vidya in cfd3e36 nandi 19d ago5670 "block2 0.6.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5671 "bytes",
5672 "derive_more",
5673 "dispatch2",
5674 "image",
5675 "libc",
5676 "nix 0.30.1",
Bring vidya in cfd3e36 nandi 19d ago5677 "objc2 0.6.4",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5678 "objc2-av-foundation",
5679 "objc2-core-media",
5680 "objc2-core-video",
Bring vidya in cfd3e36 nandi 19d ago5681 "objc2-foundation 0.3.2",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5682 "rusty-codecs",
5683 "tracing",
5684 "v4l2r",
5685]
5686
5687[[package]]
5688name = "rusty-codecs"
5689version = "0.1.0"
5690source = "git+https://github.com/n0-computer/iroh-live?rev=edd9bcc530a615f3ab3a6919e96790a077905376#edd9bcc530a615f3ab3a6919e96790a077905376"
5691dependencies = [
5692 "anyhow",
5693 "audioadapter-buffers",
5694 "buf-list",
5695 "bytes",
5696 "derive_more",
5697 "hang",
5698 "image",
5699 "libc",
5700 "n0-future",
5701 "openh264",
5702 "pic-scale",
5703 "rubato 1.0.1",
5704 "strum",
5705 "throttled-tracing",
5706 "tracing",
5707 "unsafe-libopus",
5708 "yuv",
5709]
5710
5711[[package]]
5712name = "ryu"
5713version = "1.0.23"
5714source = "registry+https://github.com/rust-lang/crates.io-index"
5715checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
5716
5717[[package]]
5718name = "safe_arch"
5719version = "1.1.0"
5720source = "registry+https://github.com/rust-lang/crates.io-index"
5721checksum = "3a52ec151f024d703f9fd65abb7cbe81e7cdb39f18917a3a37e3014470dc7c59"
5722dependencies = [
5723 "bytemuck",
5724]
5725
5726[[package]]
5727name = "same-file"
5728version = "1.0.6"
5729source = "registry+https://github.com/rust-lang/crates.io-index"
5730checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
5731dependencies = [
5732 "winapi-util",
5733]
5734
5735[[package]]
5736name = "schannel"
5737version = "0.1.29"
5738source = "registry+https://github.com/rust-lang/crates.io-index"
5739checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
5740dependencies = [
5741 "windows-sys 0.61.2",
5742]
5743
5744[[package]]
5745name = "schemars"
5746version = "0.9.0"
5747source = "registry+https://github.com/rust-lang/crates.io-index"
5748checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
5749dependencies = [
5750 "dyn-clone",
5751 "ref-cast",
5752 "serde",
5753 "serde_json",
5754]
5755
5756[[package]]
5757name = "schemars"
5758version = "1.2.2"
5759source = "registry+https://github.com/rust-lang/crates.io-index"
5760checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
5761dependencies = [
5762 "dyn-clone",
5763 "ref-cast",
5764 "serde",
5765 "serde_json",
5766]
5767
5768[[package]]
5769name = "scoped-tls"
5770version = "1.0.1"
5771source = "registry+https://github.com/rust-lang/crates.io-index"
5772checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
5773
5774[[package]]
5775name = "scopeguard"
5776version = "1.2.0"
5777source = "registry+https://github.com/rust-lang/crates.io-index"
Bring vidya in cfd3e36 nandi 19d ago5778checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
5779
5780[[package]]
5781name = "sctk-adwaita"
5782version = "0.10.1"
5783source = "registry+https://github.com/rust-lang/crates.io-index"
5784checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec"
5785dependencies = [
5786 "ab_glyph",
5787 "log",
5788 "memmap2",
5789 "smithay-client-toolkit 0.19.2",
5790 "tiny-skia",
5791]
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5792
5793[[package]]
5794name = "security-framework"
5795version = "3.7.0"
5796source = "registry+https://github.com/rust-lang/crates.io-index"
5797checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
5798dependencies = [
5799 "bitflags 2.13.1",
Bring vidya in cfd3e36 nandi 19d ago5800 "core-foundation 0.10.1",
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago5801 "core-foundation-sys",
5802 "libc",
5803 "security-framework-sys",
5804]
5805
5806[[package]]
5807name = "security-framework-sys"
5808version = "2.17.0"
5809source = "registry+https://github.com/rust-lang/crates.io-index"
5810checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
5811dependencies = [
5812 "core-foundation-sys",
5813 "libc",
5814]
5815
5816[[package]]
5817name = "seize"
5818version = "0.5.1"
5819source = "registry+https://github.com/rust-lang/crates.io-index"
5820checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
5821dependencies = [
5822 "libc",
5823 "windows-sys 0.61.2",
5824]
5825
5826[[package]]
5827name = "self_cell"
5828version = "1.3.0"
5829source = "registry+https://github.com/rust-lang/crates.io-index"
5830checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
5831
5832[[package]]
5833name = "semver"
5834version = "1.0.28"
5835source = "registry+https://github.com/rust-lang/crates.io-index"
5836checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
5837
5838[[package]]
5839name = "send_wrapper"
5840version = "0.6.0"
5841source = "registry+https://github.com/rust-lang/crates.io-index"
5842checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
5843
5844[[package]]
5845name = "serde"
5846version = "1.0.229"
5847source = "registry+https://github.com/rust-lang/crates.io-index"
5848checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
5849dependencies = [
5850 "serde_core",
5851 "serde_derive",
5852]
5853
5854[[package]]
5855name = "serde-big-array"
5856version = "0.5.1"
5857source = "registry+https://github.com/rust-lang/crates.io-index"
5858checksum = "11fc7cc2c76d73e0f27ee52abbd64eec84d46f370c88371120433196934e4b7f"
5859dependencies = [
5860 "serde",
5861]
5862
5863[[package]]
5864name = "serde_bytes"
5865version = "0.11.19"
5866source = "registry+https://github.com/rust-lang/crates.io-index"
5867checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
5868dependencies = [
5869 "serde",
5870 "serde_core",
5871]
5872
5873[[package]]
5874name = "serde_core"
5875version = "1.0.229"
5876source = "registry+https://github.com/rust-lang/crates.io-index"
5877checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
5878dependencies = [
5879 "serde_derive",
5880]
5881
5882[[package]]
5883name = "serde_derive"
5884version = "1.0.229"
5885source = "registry+https://github.com/rust-lang/crates.io-index"
5886checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
5887dependencies = [
5888 "proc-macro2",
5889 "quote",
5890 "syn 3.0.3",
5891]
5892
5893[[package]]
5894name = "serde_json"
5895version = "1.0.151"
5896source = "registry+https://github.com/rust-lang/crates.io-index"
5897checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
5898dependencies = [
5899 "itoa",
5900 "memchr",
5901 "serde",
5902 "serde_core",
5903 "zmij",
5904]
5905
5906[[package]]
5907name = "serde_spanned"
5908version = "1.1.1"
5909source = "registry+https://github.com/rust-lang/crates.io-index"
5910checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
5911dependencies = [
5912 "serde_core",
5913]
5914
5915[[package]]
5916name = "serde_urlencoded"
5917version = "0.7.1"
5918source = "registry+https://github.com/rust-lang/crates.io-index"
5919checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
5920dependencies = [
5921 "form_urlencoded",
5922 "itoa",
5923 "ryu",
5924 "serde",
5925]
5926
5927[[package]]
5928name = "serde_with"
5929version = "3.21.0"
5930source = "registry+https://github.com/rust-lang/crates.io-index"
5931checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
5932dependencies = [
5933 "base64",
5934 "bs58",
5935 "chrono",
5936 "hex",
5937 "indexmap 1.9.3",
5938 "indexmap 2.14.0",
5939 "schemars 0.9.0",
5940 "schemars 1.2.2",
5941 "serde_core",
5942 "serde_json",
5943 "serde_with_macros",
5944 "time",
5945]
5946
5947[[package]]
5948name = "serde_with_macros"
5949version = "3.21.0"
5950source = "registry+https://github.com/rust-lang/crates.io-index"
5951checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
5952dependencies = [
5953 "darling 0.23.0",
5954 "proc-macro2",
5955 "quote",
5956 "syn 2.0.119",
5957]
5958
5959[[package]]
5960name = "sfv"
5961version = "0.14.0"
5962source = "registry+https://github.com/rust-lang/crates.io-index"
5963checksum = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87"
5964dependencies = [
5965 "base64",
5966 "indexmap 2.14.0",
5967 "ref-cast",
5968]
5969
5970[[package]]
5971name = "sha1"
5972version = "0.10.7"
5973source = "registry+https://github.com/rust-lang/crates.io-index"
5974checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
5975dependencies = [
5976 "cfg-if",
5977 "cpufeatures 0.2.17",
5978 "digest 0.10.7",
5979]
5980
5981[[package]]
5982name = "sha1_smol"
5983version = "1.0.1"
5984source = "registry+https://github.com/rust-lang/crates.io-index"
5985checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
5986
5987[[package]]
5988name = "sha2"
5989version = "0.11.0-rc.2"
5990source = "registry+https://github.com/rust-lang/crates.io-index"
5991checksum = "d1e3878ab0f98e35b2df35fe53201d088299b41a6bb63e3e34dada2ac4abd924"
5992dependencies = [
5993 "cfg-if",
5994 "cpufeatures 0.2.17",
5995 "digest 0.11.0-rc.10",
5996]
5997
5998[[package]]
5999name = "sharded-slab"
6000version = "0.1.7"
6001source = "registry+https://github.com/rust-lang/crates.io-index"
6002checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
6003dependencies = [
6004 "lazy_static",
6005]
6006
6007[[package]]
6008name = "shlex"
6009version = "1.3.0"
6010source = "registry+https://github.com/rust-lang/crates.io-index"
6011checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
6012
6013[[package]]
6014name = "shlex"
6015version = "2.0.1"
6016source = "registry+https://github.com/rust-lang/crates.io-index"
6017checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
6018
6019[[package]]
6020name = "signal-hook-registry"
6021version = "1.4.8"
6022source = "registry+https://github.com/rust-lang/crates.io-index"
6023checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
6024dependencies = [
6025 "errno",
6026 "libc",
6027]
6028
6029[[package]]
6030name = "signature"
6031version = "3.0.0-rc.10"
6032source = "registry+https://github.com/rust-lang/crates.io-index"
6033checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
6034
Bring vidya in cfd3e36 nandi 19d ago6035[[package]]
6036name = "simd-adler32"
6037version = "0.3.10"
6038source = "registry+https://github.com/rust-lang/crates.io-index"
6039checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
6040
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago6041[[package]]
6042name = "simd_cesu8"
6043version = "1.2.0"
6044source = "registry+https://github.com/rust-lang/crates.io-index"
6045checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
6046dependencies = [
6047 "rustc_version",
6048 "simdutf8",
6049]
6050
6051[[package]]
6052name = "simdutf8"
6053version = "0.1.5"
6054source = "registry+https://github.com/rust-lang/crates.io-index"
6055checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
6056
6057[[package]]
6058name = "simple-dns"
6059version = "0.9.3"
6060source = "registry+https://github.com/rust-lang/crates.io-index"
6061checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a"
6062dependencies = [
6063 "bitflags 2.13.1",
6064]
6065
6066[[package]]
6067name = "siphasher"
6068version = "1.0.3"
6069source = "registry+https://github.com/rust-lang/crates.io-index"
6070checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
6071
6072[[package]]
6073name = "slab"
6074version = "0.4.12"
6075source = "registry+https://github.com/rust-lang/crates.io-index"
6076checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
6077
Bring vidya in cfd3e36 nandi 19d ago6078[[package]]
6079name = "slotmap"
6080version = "1.1.1"
6081source = "registry+https://github.com/rust-lang/crates.io-index"
6082checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
6083dependencies = [
6084 "version_check",
6085]
6086
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago6087[[package]]
6088name = "smallvec"
6089version = "1.15.2"
6090source = "registry+https://github.com/rust-lang/crates.io-index"
6091checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
6092
Bring vidya in cfd3e36 nandi 19d ago6093[[package]]
6094name = "smithay-client-toolkit"
6095version = "0.19.2"
6096source = "registry+https://github.com/rust-lang/crates.io-index"
6097checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
6098dependencies = [
6099 "bitflags 2.13.1",
6100 "calloop 0.13.0",
6101 "calloop-wayland-source 0.3.0",
6102 "cursor-icon",
6103 "libc",
6104 "log",
6105 "memmap2",
6106 "rustix 0.38.44",
6107 "thiserror 1.0.69",
6108 "wayland-backend",
6109 "wayland-client",
6110 "wayland-csd-frame",
6111 "wayland-cursor",
6112 "wayland-protocols",
6113 "wayland-protocols-wlr",
6114 "wayland-scanner",
6115 "xkeysym",
6116]
6117
6118[[package]]
6119name = "smithay-client-toolkit"
6120version = "0.20.0"
6121source = "registry+https://github.com/rust-lang/crates.io-index"
6122checksum = "0512da38f5e2b31201a93524adb8d3136276fa4fe4aafab4e1f727a82b534cc0"
6123dependencies = [
6124 "bitflags 2.13.1",
6125 "calloop 0.14.4",
6126 "calloop-wayland-source 0.4.1",
6127 "cursor-icon",
6128 "libc",
6129 "log",
6130 "memmap2",
6131 "rustix 1.1.4",
6132 "thiserror 2.0.19",
6133 "wayland-backend",
6134 "wayland-client",
6135 "wayland-csd-frame",
6136 "wayland-cursor",
6137 "wayland-protocols",
6138 "wayland-protocols-experimental",
6139 "wayland-protocols-misc",
6140 "wayland-protocols-wlr",
6141 "wayland-scanner",
6142 "xkeysym",
6143]
6144
6145[[package]]
6146name = "smithay-clipboard"
6147version = "0.7.3"
6148source = "registry+https://github.com/rust-lang/crates.io-index"
6149checksum = "71704c03f739f7745053bde45fa203a46c58d25bc5c4efba1d9a60e9dba81226"
6150dependencies = [
6151 "libc",
6152 "smithay-client-toolkit 0.20.0",
6153 "wayland-backend",
6154]
6155
6156[[package]]
6157name = "smol_str"
6158version = "0.2.2"
6159source = "registry+https://github.com/rust-lang/crates.io-index"
6160checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
6161dependencies = [
6162 "serde",
6163]
6164
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago6165[[package]]
6166name = "socket2"
6167version = "0.6.5"
6168source = "registry+https://github.com/rust-lang/crates.io-index"
6169checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
6170dependencies = [
6171 "libc",
6172 "windows-sys 0.61.2",
6173]
6174
6175[[package]]
6176name = "sonora"
6177version = "0.1.0"
6178source = "registry+https://github.com/rust-lang/crates.io-index"
6179checksum = "559f6011d42721f7b4599ef4cf3224ac07539ee5bc25967169701c7aeb6c6bb1"
6180dependencies = [
6181 "sonora-aec3",
6182 "sonora-agc2",
6183 "sonora-common-audio",
6184 "sonora-ns",
6185 "sonora-simd",
6186 "tracing",
6187]
6188
6189[[package]]
6190name = "sonora-aec3"
6191version = "0.1.0"
6192source = "registry+https://github.com/rust-lang/crates.io-index"
6193checksum = "65d8b7e53b058aa4631cf2a8f483bd7a0dec093aa413d21b44b86d5704deedeb"
6194dependencies = [
6195 "sonora-common-audio",
6196 "sonora-fft",
6197 "sonora-simd",
6198]
6199
6200[[package]]
6201name = "sonora-agc2"
6202version = "0.1.0"
6203source = "registry+https://github.com/rust-lang/crates.io-index"
6204checksum = "132876fc38c4e191dee939a38243df5eb5830cd29f1d1ac9a67377389d74a10e"
6205dependencies = [
6206 "bytemuck",
6207 "derive_more",
6208 "sonora-common-audio",
6209 "sonora-fft",
6210 "sonora-simd",
6211 "tracing",
6212]
6213
6214[[package]]
6215name = "sonora-common-audio"
6216version = "0.1.0"
6217source = "registry+https://github.com/rust-lang/crates.io-index"
6218checksum = "30a16fa975fe4aa12e4d980d5453452bd3e6df2b33abfb89840e1757ebd212e6"
6219dependencies = [
6220 "derive_more",
6221 "sonora-simd",
6222]
6223
6224[[package]]
6225name = "sonora-fft"
6226version = "0.1.0"
6227source = "registry+https://github.com/rust-lang/crates.io-index"
6228checksum = "cca158c4b6ace2cb3f4fa8084842da2b4ffcc25cf8ac4366675aea541aabc6af"
6229
6230[[package]]
6231name = "sonora-ns"
6232version = "0.1.0"
6233source = "registry+https://github.com/rust-lang/crates.io-index"
6234checksum = "cc549f9bca1d60e7a2483e4949e9649467c5cca371a4341e44aaf24dae338fd4"
6235dependencies = [
6236 "sonora-fft",
6237]
6238
6239[[package]]
6240name = "sonora-simd"
6241version = "0.1.0"
6242source = "registry+https://github.com/rust-lang/crates.io-index"
6243checksum = "a053f93cc01f4e1cc51c61844a196b6d1da7e054cdd406d2cd27677ba4d898e0"
6244dependencies = [
6245 "cpufeatures 0.3.0",
6246]
6247
6248[[package]]
6249name = "sorted-index-buffer"
6250version = "0.2.1"
6251source = "registry+https://github.com/rust-lang/crates.io-index"
6252checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06"
6253
6254[[package]]
6255name = "spez"
6256version = "0.1.2"
6257source = "registry+https://github.com/rust-lang/crates.io-index"
6258checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8"
6259dependencies = [
6260 "proc-macro2",
6261 "quote",
6262 "syn 2.0.119",
6263]
6264
6265[[package]]
6266name = "spin"
6267version = "0.9.9"
6268source = "registry+https://github.com/rust-lang/crates.io-index"
6269checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
6270dependencies = [
6271 "lock_api",
6272]
6273
6274[[package]]
6275name = "spin"
6276version = "0.10.1"
6277source = "registry+https://github.com/rust-lang/crates.io-index"
6278checksum = "023a211cb3138dbc438680b32560ad89f699977624c9f8dbb95a47d5b4c07dd3"
6279
6280[[package]]
6281name = "spki"
6282version = "0.8.0"
6283source = "registry+https://github.com/rust-lang/crates.io-index"
6284checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
6285dependencies = [
6286 "base64ct",
6287 "der",
6288]
6289
6290[[package]]
6291name = "stable_deref_trait"
6292version = "1.2.1"
6293source = "registry+https://github.com/rust-lang/crates.io-index"
6294checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
6295
6296[[package]]
6297name = "strength_reduce"
6298version = "0.2.4"
6299source = "registry+https://github.com/rust-lang/crates.io-index"
6300checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
6301
Bring vidya in cfd3e36 nandi 19d ago6302[[package]]
6303name = "strict-num"
6304version = "0.1.1"
6305source = "registry+https://github.com/rust-lang/crates.io-index"
6306checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
6307
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago6308[[package]]
6309name = "strsim"
6310version = "0.11.1"
6311source = "registry+https://github.com/rust-lang/crates.io-index"
6312checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
6313
6314[[package]]
6315name = "strum"
6316version = "0.28.0"
6317source = "registry+https://github.com/rust-lang/crates.io-index"
6318checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
6319dependencies = [
6320 "strum_macros",
6321]
6322
6323[[package]]
6324name = "strum_macros"
6325version = "0.28.0"
6326source = "registry+https://github.com/rust-lang/crates.io-index"
6327checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
6328dependencies = [
6329 "heck",
6330 "proc-macro2",
6331 "quote",
6332 "syn 2.0.119",
6333]
6334
6335[[package]]
6336name = "subtle"
6337version = "2.6.1"
6338source = "registry+https://github.com/rust-lang/crates.io-index"
6339checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
6340
6341[[package]]
6342name = "symphonia"
6343version = "0.5.5"
6344source = "registry+https://github.com/rust-lang/crates.io-index"
6345checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039"
6346dependencies = [
6347 "lazy_static",
6348 "symphonia-bundle-mp3",
6349 "symphonia-codec-pcm",
6350 "symphonia-core",
6351 "symphonia-format-riff",
6352 "symphonia-metadata",
6353]
6354
6355[[package]]
6356name = "symphonia-bundle-mp3"
6357version = "0.5.5"
6358source = "registry+https://github.com/rust-lang/crates.io-index"
6359checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed"
6360dependencies = [
6361 "lazy_static",
6362 "log",
6363 "symphonia-core",
6364 "symphonia-metadata",
6365]
6366
6367[[package]]
6368name = "symphonia-codec-pcm"
6369version = "0.5.5"
6370source = "registry+https://github.com/rust-lang/crates.io-index"
6371checksum = "4e89d716c01541ad3ebe7c91ce4c8d38a7cf266a3f7b2f090b108fb0cb031d95"
6372dependencies = [
6373 "log",
6374 "symphonia-core",
6375]
6376
6377[[package]]
6378name = "symphonia-core"
6379version = "0.5.5"
6380source = "registry+https://github.com/rust-lang/crates.io-index"
6381checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af"
6382dependencies = [
6383 "arrayvec",
6384 "bitflags 1.3.2",
6385 "bytemuck",
6386 "lazy_static",
6387 "log",
6388]
6389
6390[[package]]
6391name = "symphonia-format-riff"
6392version = "0.5.5"
6393source = "registry+https://github.com/rust-lang/crates.io-index"
6394checksum = "c2d7c3df0e7d94efb68401d81906eae73c02b40d5ec1a141962c592d0f11a96f"
6395dependencies = [
6396 "extended",
6397 "log",
6398 "symphonia-core",
6399 "symphonia-metadata",
6400]
6401
6402[[package]]
6403name = "symphonia-metadata"
6404version = "0.5.5"
6405source = "registry+https://github.com/rust-lang/crates.io-index"
6406checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16"
6407dependencies = [
6408 "encoding_rs",
6409 "lazy_static",
6410 "log",
6411 "symphonia-core",
6412]
6413
6414[[package]]
6415name = "syn"
6416version = "2.0.119"
6417source = "registry+https://github.com/rust-lang/crates.io-index"
6418checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
6419dependencies = [
6420 "proc-macro2",
6421 "quote",
6422 "unicode-ident",
6423]
6424
6425[[package]]
6426name = "syn"
6427version = "3.0.3"
6428source = "registry+https://github.com/rust-lang/crates.io-index"
6429checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
6430dependencies = [
6431 "proc-macro2",
6432 "quote",
6433 "unicode-ident",
6434]
6435
6436[[package]]
6437name = "sync_wrapper"
6438version = "1.0.2"
6439source = "registry+https://github.com/rust-lang/crates.io-index"
6440checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
6441dependencies = [
6442 "futures-core",
6443]
6444
6445[[package]]
6446name = "synstructure"
6447version = "0.13.2"
6448source = "registry+https://github.com/rust-lang/crates.io-index"
6449checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
6450dependencies = [
6451 "proc-macro2",
6452 "quote",
6453 "syn 2.0.119",
6454]
6455
6456[[package]]
6457name = "system-deps"
6458version = "7.0.8"
6459source = "registry+https://github.com/rust-lang/crates.io-index"
6460checksum = "396a35feb67335377e0251fcbc1092fc85c484bd4e3a7a54319399da127796e7"
6461dependencies = [
6462 "cfg-expr",
6463 "heck",
6464 "pkg-config",
6465 "toml",
6466 "version-compare",
6467]
6468
6469[[package]]
6470name = "tagptr"
6471version = "0.2.0"
6472source = "registry+https://github.com/rust-lang/crates.io-index"
6473checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
6474
6475[[package]]
6476name = "target-lexicon"
6477version = "0.13.5"
6478source = "registry+https://github.com/rust-lang/crates.io-index"
6479checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
6480
6481[[package]]
6482name = "thiserror"
6483version = "1.0.69"
6484source = "registry+https://github.com/rust-lang/crates.io-index"
6485checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
6486dependencies = [
6487 "thiserror-impl 1.0.69",
6488]
6489
6490[[package]]
6491name = "thiserror"
6492version = "2.0.19"
6493source = "registry+https://github.com/rust-lang/crates.io-index"
6494checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
6495dependencies = [
6496 "thiserror-impl 2.0.19",
6497]
6498
6499[[package]]
6500name = "thiserror-impl"
6501version = "1.0.69"
6502source = "registry+https://github.com/rust-lang/crates.io-index"
6503checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
6504dependencies = [
6505 "proc-macro2",
6506 "quote",
6507 "syn 2.0.119",
6508]
6509
6510[[package]]
6511name = "thiserror-impl"
6512version = "2.0.19"
6513source = "registry+https://github.com/rust-lang/crates.io-index"
6514checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
6515dependencies = [
6516 "proc-macro2",
6517 "quote",
6518 "syn 3.0.3",
6519]
6520
6521[[package]]
6522name = "thread_local"
6523version = "1.1.10"
6524source = "registry+https://github.com/rust-lang/crates.io-index"
6525checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
6526dependencies = [
6527 "cfg-if",
6528]
6529
6530[[package]]
6531name = "throttled-tracing"
6532version = "0.1.0"
6533source = "registry+https://github.com/rust-lang/crates.io-index"
6534checksum = "5c8ec74140dfae112d4da4003f2cabdfd9b5efc84e8a4d610d87fc681280b642"
6535dependencies = [
6536 "fastrand",
6537 "parking_lot",
6538 "tracing",
6539]
6540
Bring vidya in cfd3e36 nandi 19d ago6541[[package]]
6542name = "tiff"
6543version = "0.11.3"
6544source = "registry+https://github.com/rust-lang/crates.io-index"
6545checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
6546dependencies = [
6547 "fax",
6548 "flate2",
6549 "half",
6550 "quick-error",
6551 "weezl",
6552 "zune-jpeg",
6553]
6554
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago6555[[package]]
6556name = "time"
6557version = "0.3.54"
6558source = "registry+https://github.com/rust-lang/crates.io-index"
6559checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244"
6560dependencies = [
6561 "deranged",
6562 "js-sys",
6563 "libc",
6564 "num-conv",
6565 "num_threads",
6566 "powerfmt",
6567 "serde_core",
6568 "time-core",
6569 "time-macros",
6570]
6571
6572[[package]]
6573name = "time-core"
6574version = "0.1.9"
6575source = "registry+https://github.com/rust-lang/crates.io-index"
6576checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
6577
6578[[package]]
6579name = "time-macros"
6580version = "0.2.32"
6581source = "registry+https://github.com/rust-lang/crates.io-index"
6582checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
6583dependencies = [
6584 "num-conv",
6585 "time-core",
6586]
6587
Bring vidya in cfd3e36 nandi 19d ago6588[[package]]
6589name = "tiny-skia"
6590version = "0.11.4"
6591source = "registry+https://github.com/rust-lang/crates.io-index"
6592checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
6593dependencies = [
6594 "arrayref",
6595 "arrayvec",
6596 "bytemuck",
6597 "cfg-if",
6598 "log",
6599 "tiny-skia-path",
6600]
6601
6602[[package]]
6603name = "tiny-skia-path"
6604version = "0.11.4"
6605source = "registry+https://github.com/rust-lang/crates.io-index"
6606checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
6607dependencies = [
6608 "arrayref",
6609 "bytemuck",
6610 "strict-num",
6611]
6612
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago6613[[package]]
6614name = "tinystr"
6615version = "0.8.3"
6616source = "registry+https://github.com/rust-lang/crates.io-index"
6617checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
6618dependencies = [
6619 "displaydoc",
6620 "zerovec",
6621]
6622
6623[[package]]
6624name = "tinyvec"
6625version = "1.12.0"
6626source = "registry+https://github.com/rust-lang/crates.io-index"
6627checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
6628dependencies = [
6629 "tinyvec_macros",
6630]
6631
6632[[package]]
6633name = "tinyvec_macros"
6634version = "0.1.1"
6635source = "registry+https://github.com/rust-lang/crates.io-index"
6636checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
6637
6638[[package]]
6639name = "tokio"
6640version = "1.53.1"
6641source = "registry+https://github.com/rust-lang/crates.io-index"
6642checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
6643dependencies = [
6644 "bytes",
6645 "libc",
6646 "mio",
6647 "parking_lot",
6648 "pin-project-lite",
6649 "signal-hook-registry",
6650 "socket2",
6651 "tokio-macros",
6652 "windows-sys 0.61.2",
6653]
6654
6655[[package]]
6656name = "tokio-macros"
6657version = "2.7.2"
6658source = "registry+https://github.com/rust-lang/crates.io-index"
6659checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
6660dependencies = [
6661 "proc-macro2",
6662 "quote",
6663 "syn 3.0.3",
6664]
6665
6666[[package]]
6667name = "tokio-rustls"
6668version = "0.26.4"
6669source = "registry+https://github.com/rust-lang/crates.io-index"
6670checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
6671dependencies = [
6672 "rustls",
6673 "tokio",
6674]
6675
6676[[package]]
6677name = "tokio-stream"
6678version = "0.1.19"
6679source = "registry+https://github.com/rust-lang/crates.io-index"
6680checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
6681dependencies = [
6682 "futures-core",
6683 "pin-project-lite",
6684 "tokio",
6685 "tokio-util",
6686]
6687
6688[[package]]
6689name = "tokio-tungstenite"
6690version = "0.28.0"
6691source = "registry+https://github.com/rust-lang/crates.io-index"
6692checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
6693dependencies = [
6694 "futures-util",
6695 "log",
6696 "rustls",
6697 "rustls-native-certs",
6698 "rustls-pki-types",
6699 "tokio",
6700 "tokio-rustls",
6701 "tungstenite",
6702]
6703
6704[[package]]
6705name = "tokio-util"
6706version = "0.7.19"
6707source = "registry+https://github.com/rust-lang/crates.io-index"
6708checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
6709dependencies = [
6710 "bytes",
6711 "futures-core",
6712 "futures-sink",
6713 "futures-util",
6714 "libc",
6715 "pin-project-lite",
6716 "tokio",
6717]
6718
6719[[package]]
6720name = "tokio-websockets"
6721version = "0.12.3"
6722source = "registry+https://github.com/rust-lang/crates.io-index"
6723checksum = "b1b6348ebfaaecd771cecb69e832961d277f59845d4220a584701f72728152b7"
6724dependencies = [
6725 "aws-lc-rs",
6726 "base64",
6727 "bytes",
6728 "futures-core",
6729 "futures-sink",
6730 "getrandom 0.3.4",
6731 "http",
6732 "httparse",
6733 "rand 0.9.5",
6734 "rustls-pki-types",
6735 "sha1_smol",
6736 "simdutf8",
6737 "tokio",
6738 "tokio-rustls",
6739 "tokio-util",
6740]
6741
6742[[package]]
6743name = "toml"
6744version = "1.1.4+spec-1.1.0"
6745source = "registry+https://github.com/rust-lang/crates.io-index"
6746checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
6747dependencies = [
6748 "indexmap 2.14.0",
6749 "serde_core",
6750 "serde_spanned",
6751 "toml_datetime",
6752 "toml_parser",
6753 "toml_writer",
6754 "winnow",
6755]
6756
6757[[package]]
6758name = "toml_datetime"
6759version = "1.1.1+spec-1.1.0"
6760source = "registry+https://github.com/rust-lang/crates.io-index"
6761checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
6762dependencies = [
6763 "serde_core",
6764]
6765
6766[[package]]
6767name = "toml_edit"
6768version = "0.25.13+spec-1.1.0"
6769source = "registry+https://github.com/rust-lang/crates.io-index"
6770checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
6771dependencies = [
6772 "indexmap 2.14.0",
6773 "toml_datetime",
6774 "toml_parser",
6775 "winnow",
6776]
6777
6778[[package]]
6779name = "toml_parser"
6780version = "1.1.3+spec-1.1.0"
6781source = "registry+https://github.com/rust-lang/crates.io-index"
6782checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
6783dependencies = [
6784 "winnow",
6785]
6786
6787[[package]]
6788name = "toml_writer"
6789version = "1.1.2+spec-1.1.0"
6790source = "registry+https://github.com/rust-lang/crates.io-index"
6791checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
6792
6793[[package]]
6794name = "tower"
6795version = "0.5.3"
6796source = "registry+https://github.com/rust-lang/crates.io-index"
6797checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
6798dependencies = [
6799 "futures-core",
6800 "futures-util",
6801 "pin-project-lite",
6802 "sync_wrapper",
6803 "tokio",
6804 "tower-layer",
6805 "tower-service",
6806]
6807
6808[[package]]
6809name = "tower-http"
6810version = "0.6.11"
6811source = "registry+https://github.com/rust-lang/crates.io-index"
6812checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
6813dependencies = [
6814 "bitflags 2.13.1",
6815 "bytes",
6816 "futures-util",
6817 "http",
6818 "http-body",
6819 "pin-project-lite",
6820 "tower",
6821 "tower-layer",
6822 "tower-service",
6823 "url",
6824]
6825
6826[[package]]
6827name = "tower-layer"
6828version = "0.3.3"
6829source = "registry+https://github.com/rust-lang/crates.io-index"
6830checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
6831
6832[[package]]
6833name = "tower-service"
6834version = "0.3.3"
6835source = "registry+https://github.com/rust-lang/crates.io-index"
6836checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
6837
6838[[package]]
6839name = "tracing"
6840version = "0.1.44"
6841source = "registry+https://github.com/rust-lang/crates.io-index"
6842checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
6843dependencies = [
6844 "log",
6845 "pin-project-lite",
6846 "tracing-attributes",
6847 "tracing-core",
6848]
6849
6850[[package]]
6851name = "tracing-attributes"
6852version = "0.1.31"
6853source = "registry+https://github.com/rust-lang/crates.io-index"
6854checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
6855dependencies = [
6856 "proc-macro2",
6857 "quote",
6858 "syn 2.0.119",
6859]
6860
6861[[package]]
6862name = "tracing-core"
6863version = "0.1.36"
6864source = "registry+https://github.com/rust-lang/crates.io-index"
6865checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
6866dependencies = [
6867 "once_cell",
6868 "valuable",
6869]
6870
6871[[package]]
6872name = "tracing-log"
6873version = "0.2.0"
6874source = "registry+https://github.com/rust-lang/crates.io-index"
6875checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
6876dependencies = [
6877 "log",
6878 "once_cell",
6879 "tracing-core",
6880]
6881
6882[[package]]
6883name = "tracing-subscriber"
6884version = "0.3.23"
6885source = "registry+https://github.com/rust-lang/crates.io-index"
6886checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
6887dependencies = [
6888 "matchers",
6889 "nu-ansi-term",
6890 "once_cell",
6891 "regex-automata",
6892 "sharded-slab",
6893 "smallvec",
6894 "thread_local",
6895 "tracing",
6896 "tracing-core",
6897 "tracing-log",
6898]
6899
6900[[package]]
6901name = "transpose"
6902version = "0.2.3"
6903source = "registry+https://github.com/rust-lang/crates.io-index"
6904checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
6905dependencies = [
6906 "num-integer",
6907 "strength_reduce",
6908]
6909
6910[[package]]
6911name = "triomphe"
6912version = "0.1.16"
6913source = "registry+https://github.com/rust-lang/crates.io-index"
6914checksum = "b40688ea6389c8171614b25491f71d4a27946e0c7ce2da1c6de27e25abf1a0ae"
6915
6916[[package]]
6917name = "try-lock"
6918version = "0.2.5"
6919source = "registry+https://github.com/rust-lang/crates.io-index"
6920checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
6921
Bring vidya in cfd3e36 nandi 19d ago6922[[package]]
6923name = "ttf-parser"
6924version = "0.25.1"
6925source = "registry+https://github.com/rust-lang/crates.io-index"
6926checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
6927
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago6928[[package]]
6929name = "tungstenite"
6930version = "0.28.0"
6931source = "registry+https://github.com/rust-lang/crates.io-index"
6932checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
6933dependencies = [
6934 "bytes",
6935 "data-encoding",
6936 "http",
6937 "httparse",
6938 "log",
6939 "rand 0.9.5",
6940 "rustls",
6941 "rustls-pki-types",
6942 "sha1",
6943 "thiserror 2.0.19",
6944 "utf-8",
6945]
6946
6947[[package]]
6948name = "typenum"
6949version = "1.20.1"
6950source = "registry+https://github.com/rust-lang/crates.io-index"
6951checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
6952
6953[[package]]
6954name = "unicode-ident"
6955version = "1.0.24"
6956source = "registry+https://github.com/rust-lang/crates.io-index"
6957checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
6958
6959[[package]]
6960name = "unicode-segmentation"
6961version = "1.13.3"
6962source = "registry+https://github.com/rust-lang/crates.io-index"
6963checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
6964
6965[[package]]
6966name = "unicode-width"
6967version = "0.2.2"
6968source = "registry+https://github.com/rust-lang/crates.io-index"
6969checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
6970
6971[[package]]
6972name = "unicode-xid"
6973version = "0.2.6"
6974source = "registry+https://github.com/rust-lang/crates.io-index"
6975checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
6976
6977[[package]]
6978name = "universal-hash"
6979version = "0.5.1"
6980source = "registry+https://github.com/rust-lang/crates.io-index"
6981checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
6982dependencies = [
6983 "crypto-common 0.1.6",
6984 "subtle",
6985]
6986
6987[[package]]
6988name = "unsafe-libopus"
6989version = "0.2.0"
6990source = "registry+https://github.com/rust-lang/crates.io-index"
6991checksum = "c757408e7256c910343c7b215c8c8b878948630eecc774baabcca0972376eb73"
6992dependencies = [
6993 "arrayref",
6994 "num-complex",
6995 "num-traits",
6996]
6997
6998[[package]]
6999name = "untrusted"
7000version = "0.7.1"
7001source = "registry+https://github.com/rust-lang/crates.io-index"
7002checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
7003
7004[[package]]
7005name = "untrusted"
7006version = "0.9.0"
7007source = "registry+https://github.com/rust-lang/crates.io-index"
7008checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
7009
7010[[package]]
7011name = "url"
7012version = "2.5.8"
7013source = "registry+https://github.com/rust-lang/crates.io-index"
7014checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
7015dependencies = [
7016 "form_urlencoded",
7017 "idna",
7018 "percent-encoding",
7019 "serde",
7020 "serde_derive",
7021]
7022
7023[[package]]
7024name = "urlencoding"
7025version = "2.1.3"
7026source = "registry+https://github.com/rust-lang/crates.io-index"
7027checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
7028
7029[[package]]
7030name = "utf-8"
7031version = "0.7.6"
7032source = "registry+https://github.com/rust-lang/crates.io-index"
7033checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
7034
7035[[package]]
7036name = "utf8_iter"
7037version = "1.0.4"
7038source = "registry+https://github.com/rust-lang/crates.io-index"
7039checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
7040
7041[[package]]
7042name = "utf8parse"
7043version = "0.2.2"
7044source = "registry+https://github.com/rust-lang/crates.io-index"
7045checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
7046
7047[[package]]
7048name = "uuid"
7049version = "1.24.0"
7050source = "registry+https://github.com/rust-lang/crates.io-index"
7051checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
7052dependencies = [
7053 "getrandom 0.4.3",
7054 "js-sys",
7055 "wasm-bindgen",
7056]
7057
7058[[package]]
7059name = "v4l2r"
7060version = "0.0.7"
7061source = "registry+https://github.com/rust-lang/crates.io-index"
7062checksum = "2b609e6cc820e3f95dac66f8ef4efbdf1f39b8d119ec16e6476f797ec95ebaa7"
7063dependencies = [
7064 "anyhow",
7065 "bindgen 0.70.1",
7066 "bitflags 2.13.1",
7067 "enumn",
7068 "log",
7069 "nix 0.28.0",
7070 "paste",
7071 "thiserror 1.0.69",
7072]
7073
7074[[package]]
7075name = "valuable"
7076version = "0.1.1"
7077source = "registry+https://github.com/rust-lang/crates.io-index"
7078checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
7079
7080[[package]]
7081name = "vergen"
7082version = "9.1.0"
7083source = "registry+https://github.com/rust-lang/crates.io-index"
7084checksum = "b849a1f6d8639e8de261e81ee0fc881e3e3620db1af9f2e0da015d4382ceaf75"
7085dependencies = [
7086 "anyhow",
7087 "derive_builder",
7088 "rustversion",
7089 "vergen-lib 9.1.0",
7090]
7091
7092[[package]]
7093name = "vergen-gitcl"
7094version = "1.0.8"
7095source = "registry+https://github.com/rust-lang/crates.io-index"
7096checksum = "b9dfc1de6eb2e08a4ddf152f1b179529638bedc0ea95e6d667c014506377aefe"
7097dependencies = [
7098 "anyhow",
7099 "derive_builder",
7100 "rustversion",
7101 "time",
7102 "vergen",
7103 "vergen-lib 0.1.6",
7104]
7105
7106[[package]]
7107name = "vergen-lib"
7108version = "0.1.6"
7109source = "registry+https://github.com/rust-lang/crates.io-index"
7110checksum = "9b07e6010c0f3e59fcb164e0163834597da68d1f864e2b8ca49f74de01e9c166"
7111dependencies = [
7112 "anyhow",
7113 "derive_builder",
7114 "rustversion",
7115]
7116
7117[[package]]
7118name = "vergen-lib"
7119version = "9.1.0"
7120source = "registry+https://github.com/rust-lang/crates.io-index"
7121checksum = "b34a29ba7e9c59e62f229ae1932fb1b8fb8a6fdcc99215a641913f5f5a59a569"
7122dependencies = [
7123 "anyhow",
7124 "derive_builder",
7125 "rustversion",
7126]
7127
7128[[package]]
7129name = "version-compare"
7130version = "0.2.1"
7131source = "registry+https://github.com/rust-lang/crates.io-index"
7132checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
7133
7134[[package]]
7135name = "version_check"
7136version = "0.9.5"
7137source = "registry+https://github.com/rust-lang/crates.io-index"
7138checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
7139
Bring vidya in cfd3e36 nandi 19d ago7140[[package]]
7141name = "vidya"
7142version = "0.1.0"
7143dependencies = [
7144 "egui",
7145 "mp4",
7146 "openh264",
7147 "png 0.17.16",
7148 "winit",
7149 "zip",
7150]
7151
7152[[package]]
7153name = "vidya-ffi"
7154version = "0.1.0"
7155dependencies = [
7156 "arboard",
7157 "egui",
7158 "egui-winit",
7159 "egui_glow",
7160 "glow",
7161 "glutin",
7162 "glutin-winit",
7163 "jni 0.22.4",
7164 "png 0.17.16",
7165 "vidya",
7166 "winit",
7167]
7168
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago7169[[package]]
7170name = "visibility"
7171version = "0.1.1"
7172source = "registry+https://github.com/rust-lang/crates.io-index"
7173checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
7174dependencies = [
7175 "proc-macro2",
7176 "quote",
7177 "syn 2.0.119",
7178]
7179
7180[[package]]
7181name = "walkdir"
7182version = "2.5.0"
7183source = "registry+https://github.com/rust-lang/crates.io-index"
7184checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
7185dependencies = [
7186 "same-file",
7187 "winapi-util",
7188]
7189
7190[[package]]
7191name = "want"
7192version = "0.3.1"
7193source = "registry+https://github.com/rust-lang/crates.io-index"
7194checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
7195dependencies = [
7196 "try-lock",
7197]
7198
7199[[package]]
7200name = "wasi"
7201version = "0.11.1+wasi-snapshot-preview1"
7202source = "registry+https://github.com/rust-lang/crates.io-index"
7203checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
7204
7205[[package]]
7206name = "wasip2"
7207version = "1.0.4+wasi-0.2.12"
7208source = "registry+https://github.com/rust-lang/crates.io-index"
7209checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
7210dependencies = [
7211 "wit-bindgen",
7212]
7213
7214[[package]]
7215name = "wasm-bindgen"
7216version = "0.2.126"
7217source = "registry+https://github.com/rust-lang/crates.io-index"
7218checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
7219dependencies = [
7220 "cfg-if",
7221 "once_cell",
7222 "rustversion",
7223 "wasm-bindgen-macro",
7224 "wasm-bindgen-shared",
7225]
7226
7227[[package]]
7228name = "wasm-bindgen-futures"
7229version = "0.4.76"
7230source = "registry+https://github.com/rust-lang/crates.io-index"
7231checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
7232dependencies = [
7233 "js-sys",
7234 "wasm-bindgen",
7235]
7236
7237[[package]]
7238name = "wasm-bindgen-macro"
7239version = "0.2.126"
7240source = "registry+https://github.com/rust-lang/crates.io-index"
7241checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
7242dependencies = [
7243 "quote",
7244 "wasm-bindgen-macro-support",
7245]
7246
7247[[package]]
7248name = "wasm-bindgen-macro-support"
7249version = "0.2.126"
7250source = "registry+https://github.com/rust-lang/crates.io-index"
7251checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
7252dependencies = [
7253 "bumpalo",
7254 "proc-macro2",
7255 "quote",
7256 "syn 2.0.119",
7257 "wasm-bindgen-shared",
7258]
7259
7260[[package]]
7261name = "wasm-bindgen-shared"
7262version = "0.2.126"
7263source = "registry+https://github.com/rust-lang/crates.io-index"
7264checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
7265dependencies = [
7266 "unicode-ident",
7267]
7268
7269[[package]]
7270name = "wasm-streams"
7271version = "0.5.0"
7272source = "registry+https://github.com/rust-lang/crates.io-index"
7273checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
7274dependencies = [
7275 "futures-util",
7276 "js-sys",
7277 "wasm-bindgen",
7278 "wasm-bindgen-futures",
7279 "web-sys",
7280]
7281
7282[[package]]
7283name = "wasmtimer"
7284version = "0.4.3"
7285source = "registry+https://github.com/rust-lang/crates.io-index"
7286checksum = "1c598d6b99ea013e35844697fc4670d08339d5cda15588f193c6beedd12f644b"
7287dependencies = [
7288 "futures",
7289 "js-sys",
7290 "parking_lot",
7291 "pin-utils",
7292 "wasm-bindgen",
7293]
7294
Bring vidya in cfd3e36 nandi 19d ago7295[[package]]
7296name = "wayland-backend"
7297version = "0.3.17"
7298source = "registry+https://github.com/rust-lang/crates.io-index"
7299checksum = "38a91b4eaddff87b1cd1074985e3713da4af2c49742d1b356b2c01670a67a078"
7300dependencies = [
7301 "cc",
7302 "downcast-rs",
7303 "rustix 1.1.4",
7304 "scoped-tls",
7305 "smallvec",
7306 "wayland-sys",
7307]
7308
7309[[package]]
7310name = "wayland-client"
7311version = "0.31.15"
7312source = "registry+https://github.com/rust-lang/crates.io-index"
7313checksum = "e3c36a0f861ad76d0901f2800b46321410d9f73f2ea88aac0650d86c32688073"
7314dependencies = [
7315 "bitflags 2.13.1",
7316 "rustix 1.1.4",
7317 "wayland-backend",
7318 "wayland-scanner",
7319]
7320
7321[[package]]
7322name = "wayland-csd-frame"
7323version = "0.3.0"
7324source = "registry+https://github.com/rust-lang/crates.io-index"
7325checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
7326dependencies = [
7327 "bitflags 2.13.1",
7328 "cursor-icon",
7329 "wayland-backend",
7330]
7331
7332[[package]]
7333name = "wayland-cursor"
7334version = "0.31.14"
7335source = "registry+https://github.com/rust-lang/crates.io-index"
7336checksum = "4a52d18780be9b1314328a3de5f930b73d2200112e3849ca6cb11822793fb34d"
7337dependencies = [
7338 "rustix 1.1.4",
7339 "wayland-client",
7340 "xcursor",
7341]
7342
7343[[package]]
7344name = "wayland-protocols"
7345version = "0.32.13"
7346source = "registry+https://github.com/rust-lang/crates.io-index"
7347checksum = "23d0c813de3daa2ed6520af85a3bd49b0e722a3078506899aa9686fea58dc4b6"
7348dependencies = [
7349 "bitflags 2.13.1",
7350 "wayland-backend",
7351 "wayland-client",
7352 "wayland-scanner",
7353]
7354
7355[[package]]
7356name = "wayland-protocols-experimental"
7357version = "20250721.0.1"
7358source = "registry+https://github.com/rust-lang/crates.io-index"
7359checksum = "40a1f863128dcaaec790d7b4b396cc9b9a7a079e878e18c47e6c2d2c5a8dcbb1"
7360dependencies = [
7361 "bitflags 2.13.1",
7362 "wayland-backend",
7363 "wayland-client",
7364 "wayland-protocols",
7365 "wayland-scanner",
7366]
7367
7368[[package]]
7369name = "wayland-protocols-misc"
7370version = "0.3.12"
7371source = "registry+https://github.com/rust-lang/crates.io-index"
7372checksum = "6e9567599ef23e09b8dad6e429e5738d4509dfc46b3b21f32841a304d16b29c8"
7373dependencies = [
7374 "bitflags 2.13.1",
7375 "wayland-backend",
7376 "wayland-client",
7377 "wayland-protocols",
7378 "wayland-scanner",
7379]
7380
7381[[package]]
7382name = "wayland-protocols-plasma"
7383version = "0.3.12"
7384source = "registry+https://github.com/rust-lang/crates.io-index"
7385checksum = "2b6d8cf1eb2c1c31ed1f5643c88a6e53538129d4af80030c8cabd1f9fa884d91"
7386dependencies = [
7387 "bitflags 2.13.1",
7388 "wayland-backend",
7389 "wayland-client",
7390 "wayland-protocols",
7391 "wayland-scanner",
7392]
7393
7394[[package]]
7395name = "wayland-protocols-wlr"
7396version = "0.3.12"
7397source = "registry+https://github.com/rust-lang/crates.io-index"
7398checksum = "eb04e52f7836d7c7976c78ca0250d61e33873c34156a2a1fc9474828ec268234"
7399dependencies = [
7400 "bitflags 2.13.1",
7401 "wayland-backend",
7402 "wayland-client",
7403 "wayland-protocols",
7404 "wayland-scanner",
7405]
7406
7407[[package]]
7408name = "wayland-scanner"
7409version = "0.31.11"
7410source = "registry+https://github.com/rust-lang/crates.io-index"
7411checksum = "338e30461b3a2b67d70eb30a6d89f8e0c93a833e07d2ae89085cd070c4a00ac0"
7412dependencies = [
7413 "proc-macro2",
7414 "quick-xml",
7415 "quote",
7416]
7417
7418[[package]]
7419name = "wayland-sys"
7420version = "0.31.11"
7421source = "registry+https://github.com/rust-lang/crates.io-index"
7422checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
7423dependencies = [
7424 "dlib",
7425 "log",
7426 "once_cell",
7427 "pkg-config",
7428]
7429
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago7430[[package]]
7431name = "web-async"
7432version = "0.1.5"
7433source = "registry+https://github.com/rust-lang/crates.io-index"
7434checksum = "1ba1426dcf56093a94d9415ba4c016e45c1323679501e7309f1919ab32f08206"
7435dependencies = [
7436 "tokio",
7437 "tracing",
7438 "wasm-bindgen-futures",
7439 "wasmtimer",
7440]
7441
7442[[package]]
7443name = "web-sys"
7444version = "0.3.103"
7445source = "registry+https://github.com/rust-lang/crates.io-index"
7446checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
7447dependencies = [
7448 "js-sys",
7449 "wasm-bindgen",
7450]
7451
7452[[package]]
7453name = "web-time"
7454version = "1.1.0"
7455source = "registry+https://github.com/rust-lang/crates.io-index"
7456checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
7457dependencies = [
7458 "js-sys",
7459 "wasm-bindgen",
7460]
7461
7462[[package]]
7463name = "web-transport-iroh"
7464version = "0.2.2"
7465source = "git+https://github.com/Frando/web-transport?rev=f7a523f1#f7a523f13f15c1568107a24b86a29929834b06bf"
7466dependencies = [
7467 "bytes",
7468 "http",
7469 "iroh",
7470 "n0-error",
7471 "n0-future",
7472 "tokio",
7473 "tracing",
7474 "url",
7475 "web-transport-proto",
7476 "web-transport-trait",
7477]
7478
7479[[package]]
7480name = "web-transport-noq"
7481version = "0.0.3"
7482source = "git+https://github.com/Frando/web-transport?rev=f7a523f1#f7a523f13f15c1568107a24b86a29929834b06bf"
7483dependencies = [
7484 "bytes",
7485 "futures",
7486 "http",
7487 "noq",
7488 "rustls",
7489 "rustls-native-certs",
7490 "thiserror 2.0.19",
7491 "tokio",
7492 "tracing",
7493 "url",
7494 "web-transport-proto",
7495 "web-transport-trait",
7496]
7497
7498[[package]]
7499name = "web-transport-proto"
7500version = "0.6.0"
7501source = "git+https://github.com/Frando/web-transport?rev=f7a523f1#f7a523f13f15c1568107a24b86a29929834b06bf"
7502dependencies = [
7503 "bytes",
7504 "http",
7505 "sfv",
7506 "thiserror 2.0.19",
7507 "tokio",
7508 "url",
7509]
7510
7511[[package]]
7512name = "web-transport-trait"
7513version = "0.3.4"
7514source = "git+https://github.com/Frando/web-transport?rev=f7a523f1#f7a523f13f15c1568107a24b86a29929834b06bf"
7515dependencies = [
7516 "bytes",
7517]
7518
Bring vidya in cfd3e36 nandi 19d ago7519[[package]]
7520name = "webbrowser"
7521version = "1.2.4"
7522source = "registry+https://github.com/rust-lang/crates.io-index"
7523checksum = "62c35be770821a214dbc362fc26908c853e776c0004294d0b10b8a6bad582f94"
7524dependencies = [
7525 "jni 0.22.4",
7526 "log",
7527 "ndk-context",
7528 "objc2 0.6.4",
7529 "objc2-app-kit 0.3.2",
7530 "objc2-foundation 0.3.2",
7531 "url",
7532 "web-sys",
7533]
7534
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago7535[[package]]
7536name = "webpki-root-certs"
7537version = "1.0.9"
7538source = "registry+https://github.com/rust-lang/crates.io-index"
7539checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
7540dependencies = [
7541 "rustls-pki-types",
7542]
7543
7544[[package]]
7545name = "webpki-roots"
7546version = "1.0.9"
7547source = "registry+https://github.com/rust-lang/crates.io-index"
7548checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
7549dependencies = [
7550 "rustls-pki-types",
7551]
7552
Bring vidya in cfd3e36 nandi 19d ago7553[[package]]
7554name = "weezl"
7555version = "0.1.12"
7556source = "registry+https://github.com/rust-lang/crates.io-index"
7557checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
7558
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago7559[[package]]
7560name = "wide"
7561version = "1.5.0"
7562source = "registry+https://github.com/rust-lang/crates.io-index"
7563checksum = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89"
7564dependencies = [
7565 "bytemuck",
7566 "safe_arch",
7567]
7568
7569[[package]]
7570name = "widestring"
7571version = "1.2.1"
7572source = "registry+https://github.com/rust-lang/crates.io-index"
7573checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
7574
7575[[package]]
7576name = "winapi"
7577version = "0.3.9"
7578source = "registry+https://github.com/rust-lang/crates.io-index"
7579checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
7580dependencies = [
7581 "winapi-i686-pc-windows-gnu",
7582 "winapi-x86_64-pc-windows-gnu",
7583]
7584
7585[[package]]
7586name = "winapi-i686-pc-windows-gnu"
7587version = "0.4.0"
7588source = "registry+https://github.com/rust-lang/crates.io-index"
7589checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
7590
7591[[package]]
7592name = "winapi-util"
7593version = "0.1.11"
7594source = "registry+https://github.com/rust-lang/crates.io-index"
7595checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
7596dependencies = [
7597 "windows-sys 0.61.2",
7598]
7599
7600[[package]]
7601name = "winapi-x86_64-pc-windows-gnu"
7602version = "0.4.0"
7603source = "registry+https://github.com/rust-lang/crates.io-index"
7604checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
7605
7606[[package]]
7607name = "windowfunctions"
7608version = "0.1.1"
7609source = "registry+https://github.com/rust-lang/crates.io-index"
7610checksum = "90628d739333b7c5d2ee0b70210b97b8cddc38440c682c96fd9e2c24c2db5f3a"
7611dependencies = [
7612 "num-traits",
7613]
7614
7615[[package]]
7616name = "windows"
7617version = "0.62.2"
7618source = "registry+https://github.com/rust-lang/crates.io-index"
7619checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
7620dependencies = [
7621 "windows-collections",
7622 "windows-core",
7623 "windows-future",
7624 "windows-numerics",
7625]
7626
7627[[package]]
7628name = "windows-collections"
7629version = "0.3.2"
7630source = "registry+https://github.com/rust-lang/crates.io-index"
7631checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
7632dependencies = [
7633 "windows-core",
7634]
7635
7636[[package]]
7637name = "windows-core"
7638version = "0.62.2"
7639source = "registry+https://github.com/rust-lang/crates.io-index"
7640checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
7641dependencies = [
7642 "windows-implement",
7643 "windows-interface",
7644 "windows-link",
7645 "windows-result",
7646 "windows-strings",
7647]
7648
7649[[package]]
7650name = "windows-future"
7651version = "0.3.2"
7652source = "registry+https://github.com/rust-lang/crates.io-index"
7653checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
7654dependencies = [
7655 "windows-core",
7656 "windows-link",
7657 "windows-threading",
7658]
7659
7660[[package]]
7661name = "windows-implement"
7662version = "0.60.2"
7663source = "registry+https://github.com/rust-lang/crates.io-index"
7664checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
7665dependencies = [
7666 "proc-macro2",
7667 "quote",
7668 "syn 2.0.119",
7669]
7670
7671[[package]]
7672name = "windows-interface"
7673version = "0.59.3"
7674source = "registry+https://github.com/rust-lang/crates.io-index"
7675checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
7676dependencies = [
7677 "proc-macro2",
7678 "quote",
7679 "syn 2.0.119",
7680]
7681
7682[[package]]
7683name = "windows-link"
7684version = "0.2.1"
7685source = "registry+https://github.com/rust-lang/crates.io-index"
7686checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
7687
7688[[package]]
7689name = "windows-numerics"
7690version = "0.3.1"
7691source = "registry+https://github.com/rust-lang/crates.io-index"
7692checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
7693dependencies = [
7694 "windows-core",
7695 "windows-link",
7696]
7697
7698[[package]]
7699name = "windows-registry"
7700version = "0.6.1"
7701source = "registry+https://github.com/rust-lang/crates.io-index"
7702checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
7703dependencies = [
7704 "windows-link",
7705 "windows-result",
7706 "windows-strings",
7707]
7708
7709[[package]]
7710name = "windows-result"
7711version = "0.4.1"
7712source = "registry+https://github.com/rust-lang/crates.io-index"
7713checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
7714dependencies = [
7715 "windows-link",
7716]
7717
7718[[package]]
7719name = "windows-strings"
7720version = "0.5.1"
7721source = "registry+https://github.com/rust-lang/crates.io-index"
7722checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
7723dependencies = [
7724 "windows-link",
7725]
7726
7727[[package]]
7728name = "windows-sys"
7729version = "0.45.0"
7730source = "registry+https://github.com/rust-lang/crates.io-index"
7731checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
7732dependencies = [
7733 "windows-targets 0.42.2",
7734]
7735
7736[[package]]
7737name = "windows-sys"
7738version = "0.52.0"
7739source = "registry+https://github.com/rust-lang/crates.io-index"
7740checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
7741dependencies = [
7742 "windows-targets 0.52.6",
7743]
7744
7745[[package]]
7746name = "windows-sys"
7747version = "0.59.0"
7748source = "registry+https://github.com/rust-lang/crates.io-index"
7749checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
7750dependencies = [
7751 "windows-targets 0.52.6",
7752]
7753
7754[[package]]
7755name = "windows-sys"
7756version = "0.61.2"
7757source = "registry+https://github.com/rust-lang/crates.io-index"
7758checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
7759dependencies = [
7760 "windows-link",
7761]
7762
7763[[package]]
7764name = "windows-targets"
7765version = "0.42.2"
7766source = "registry+https://github.com/rust-lang/crates.io-index"
7767checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
7768dependencies = [
7769 "windows_aarch64_gnullvm 0.42.2",
7770 "windows_aarch64_msvc 0.42.2",
7771 "windows_i686_gnu 0.42.2",
7772 "windows_i686_msvc 0.42.2",
7773 "windows_x86_64_gnu 0.42.2",
7774 "windows_x86_64_gnullvm 0.42.2",
7775 "windows_x86_64_msvc 0.42.2",
7776]
7777
7778[[package]]
7779name = "windows-targets"
7780version = "0.52.6"
7781source = "registry+https://github.com/rust-lang/crates.io-index"
7782checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
7783dependencies = [
7784 "windows_aarch64_gnullvm 0.52.6",
7785 "windows_aarch64_msvc 0.52.6",
7786 "windows_i686_gnu 0.52.6",
7787 "windows_i686_gnullvm",
7788 "windows_i686_msvc 0.52.6",
7789 "windows_x86_64_gnu 0.52.6",
7790 "windows_x86_64_gnullvm 0.52.6",
7791 "windows_x86_64_msvc 0.52.6",
7792]
7793
7794[[package]]
7795name = "windows-threading"
7796version = "0.2.1"
7797source = "registry+https://github.com/rust-lang/crates.io-index"
7798checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
7799dependencies = [
7800 "windows-link",
7801]
7802
7803[[package]]
7804name = "windows_aarch64_gnullvm"
7805version = "0.42.2"
7806source = "registry+https://github.com/rust-lang/crates.io-index"
7807checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
7808
7809[[package]]
7810name = "windows_aarch64_gnullvm"
7811version = "0.52.6"
7812source = "registry+https://github.com/rust-lang/crates.io-index"
7813checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
7814
7815[[package]]
7816name = "windows_aarch64_msvc"
7817version = "0.42.2"
7818source = "registry+https://github.com/rust-lang/crates.io-index"
7819checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
7820
7821[[package]]
7822name = "windows_aarch64_msvc"
7823version = "0.52.6"
7824source = "registry+https://github.com/rust-lang/crates.io-index"
7825checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
7826
7827[[package]]
7828name = "windows_i686_gnu"
7829version = "0.42.2"
7830source = "registry+https://github.com/rust-lang/crates.io-index"
7831checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
7832
7833[[package]]
7834name = "windows_i686_gnu"
7835version = "0.52.6"
7836source = "registry+https://github.com/rust-lang/crates.io-index"
7837checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
7838
7839[[package]]
7840name = "windows_i686_gnullvm"
7841version = "0.52.6"
7842source = "registry+https://github.com/rust-lang/crates.io-index"
7843checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
7844
7845[[package]]
7846name = "windows_i686_msvc"
7847version = "0.42.2"
7848source = "registry+https://github.com/rust-lang/crates.io-index"
7849checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
7850
7851[[package]]
7852name = "windows_i686_msvc"
7853version = "0.52.6"
7854source = "registry+https://github.com/rust-lang/crates.io-index"
7855checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
7856
7857[[package]]
7858name = "windows_x86_64_gnu"
7859version = "0.42.2"
7860source = "registry+https://github.com/rust-lang/crates.io-index"
7861checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
7862
7863[[package]]
7864name = "windows_x86_64_gnu"
7865version = "0.52.6"
7866source = "registry+https://github.com/rust-lang/crates.io-index"
7867checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
7868
7869[[package]]
7870name = "windows_x86_64_gnullvm"
7871version = "0.42.2"
7872source = "registry+https://github.com/rust-lang/crates.io-index"
7873checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
7874
7875[[package]]
7876name = "windows_x86_64_gnullvm"
7877version = "0.52.6"
7878source = "registry+https://github.com/rust-lang/crates.io-index"
7879checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
7880
7881[[package]]
7882name = "windows_x86_64_msvc"
7883version = "0.42.2"
7884source = "registry+https://github.com/rust-lang/crates.io-index"
7885checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
7886
7887[[package]]
7888name = "windows_x86_64_msvc"
7889version = "0.52.6"
7890source = "registry+https://github.com/rust-lang/crates.io-index"
7891checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
7892
Bring vidya in cfd3e36 nandi 19d ago7893[[package]]
7894name = "winit"
7895version = "0.30.13"
7896source = "registry+https://github.com/rust-lang/crates.io-index"
7897checksum = "a6755fa58a9f8350bd1e472d4c3fcc25f824ec358933bba33306d0b63df5978d"
7898dependencies = [
7899 "ahash",
7900 "android-activity",
7901 "atomic-waker",
7902 "bitflags 2.13.1",
7903 "block2 0.5.1",
7904 "bytemuck",
7905 "calloop 0.13.0",
7906 "cfg_aliases 0.2.2",
7907 "concurrent-queue",
7908 "core-foundation 0.9.4",
7909 "core-graphics",
7910 "cursor-icon",
7911 "dpi",
7912 "js-sys",
7913 "libc",
7914 "memmap2",
7915 "ndk",
7916 "objc2 0.5.2",
7917 "objc2-app-kit 0.2.2",
7918 "objc2-foundation 0.2.2",
7919 "objc2-ui-kit",
7920 "orbclient",
7921 "percent-encoding",
7922 "pin-project",
7923 "raw-window-handle",
7924 "redox_syscall 0.4.1",
7925 "rustix 0.38.44",
7926 "sctk-adwaita",
7927 "smithay-client-toolkit 0.19.2",
7928 "smol_str",
7929 "tracing",
7930 "unicode-segmentation",
7931 "wasm-bindgen",
7932 "wasm-bindgen-futures",
7933 "wayland-backend",
7934 "wayland-client",
7935 "wayland-protocols",
7936 "wayland-protocols-plasma",
7937 "web-sys",
7938 "web-time",
7939 "windows-sys 0.52.0",
7940 "x11-dl",
7941 "x11rb",
7942 "xkbcommon-dl",
7943]
7944
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago7945[[package]]
7946name = "winnow"
7947version = "1.0.4"
7948source = "registry+https://github.com/rust-lang/crates.io-index"
7949checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
7950dependencies = [
7951 "memchr",
7952]
7953
7954[[package]]
7955name = "wit-bindgen"
7956version = "0.57.1"
7957source = "registry+https://github.com/rust-lang/crates.io-index"
7958checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
7959
7960[[package]]
7961name = "wmi"
7962version = "0.18.4"
7963source = "registry+https://github.com/rust-lang/crates.io-index"
7964checksum = "7c81b85c57a57500e56669586496bf2abd5cf082b9d32995251185d105208b64"
7965dependencies = [
7966 "chrono",
7967 "futures",
7968 "log",
7969 "serde",
7970 "thiserror 2.0.19",
7971 "windows",
7972 "windows-core",
7973]
7974
7975[[package]]
7976name = "writeable"
7977version = "0.6.3"
7978source = "registry+https://github.com/rust-lang/crates.io-index"
7979checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
7980
7981[[package]]
7982name = "ws_stream_wasm"
7983version = "0.7.5"
7984source = "registry+https://github.com/rust-lang/crates.io-index"
7985checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc"
7986dependencies = [
7987 "async_io_stream",
7988 "futures",
7989 "js-sys",
7990 "log",
7991 "pharos",
7992 "rustc_version",
7993 "send_wrapper",
7994 "thiserror 2.0.19",
7995 "wasm-bindgen",
7996 "wasm-bindgen-futures",
7997 "web-sys",
7998]
7999
Bring vidya in cfd3e36 nandi 19d ago8000[[package]]
8001name = "x11-dl"
8002version = "2.21.0"
8003source = "registry+https://github.com/rust-lang/crates.io-index"
8004checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
8005dependencies = [
8006 "libc",
8007 "once_cell",
8008 "pkg-config",
8009]
8010
8011[[package]]
8012name = "x11rb"
8013version = "0.13.2"
8014source = "registry+https://github.com/rust-lang/crates.io-index"
8015checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
8016dependencies = [
8017 "as-raw-xcb-connection",
8018 "gethostname",
8019 "libc",
8020 "libloading",
8021 "once_cell",
8022 "rustix 1.1.4",
8023 "x11rb-protocol",
8024]
8025
8026[[package]]
8027name = "x11rb-protocol"
8028version = "0.13.2"
8029source = "registry+https://github.com/rust-lang/crates.io-index"
8030checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
8031
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago8032[[package]]
8033name = "x509-parser"
8034version = "0.18.1"
8035source = "registry+https://github.com/rust-lang/crates.io-index"
8036checksum = "d43b0f71ce057da06bc0851b23ee24f3f86190b07203dd8f567d0b706a185202"
8037dependencies = [
8038 "asn1-rs",
8039 "aws-lc-rs",
8040 "data-encoding",
8041 "der-parser",
8042 "lazy_static",
8043 "nom 7.1.3",
8044 "oid-registry",
8045 "rusticata-macros",
8046 "thiserror 2.0.19",
8047 "time",
8048]
8049
Bring vidya in cfd3e36 nandi 19d ago8050[[package]]
8051name = "xcursor"
8052version = "0.3.11"
8053source = "registry+https://github.com/rust-lang/crates.io-index"
8054checksum = "163b33ed8786455e2fa5d72f554057ce3f3182425434f756cd39c99839d88e23"
8055
8056[[package]]
8057name = "xkbcommon-dl"
8058version = "0.4.2"
8059source = "registry+https://github.com/rust-lang/crates.io-index"
8060checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
8061dependencies = [
8062 "bitflags 2.13.1",
8063 "dlib",
8064 "log",
8065 "once_cell",
8066 "xkeysym",
8067]
8068
8069[[package]]
8070name = "xkeysym"
8071version = "0.2.1"
8072source = "registry+https://github.com/rust-lang/crates.io-index"
8073checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
8074
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago8075[[package]]
8076name = "xml-rs"
8077version = "0.8.28"
8078source = "registry+https://github.com/rust-lang/crates.io-index"
8079checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
8080
8081[[package]]
8082name = "xmltree"
8083version = "0.10.3"
8084source = "registry+https://github.com/rust-lang/crates.io-index"
8085checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
8086dependencies = [
8087 "xml-rs",
8088]
8089
8090[[package]]
8091name = "yasna"
8092version = "0.6.0"
8093source = "registry+https://github.com/rust-lang/crates.io-index"
8094checksum = "b5f6765e852b9b4dc8e2a76843e4d64d1cea8e79bcde0b6901aea8e7c7f08282"
8095dependencies = [
8096 "bit-vec",
8097 "time",
8098]
8099
8100[[package]]
8101name = "yoke"
8102version = "0.8.3"
8103source = "registry+https://github.com/rust-lang/crates.io-index"
8104checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
8105dependencies = [
8106 "stable_deref_trait",
8107 "yoke-derive",
8108 "zerofrom",
8109]
8110
8111[[package]]
8112name = "yoke-derive"
8113version = "0.8.2"
8114source = "registry+https://github.com/rust-lang/crates.io-index"
8115checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
8116dependencies = [
8117 "proc-macro2",
8118 "quote",
8119 "syn 2.0.119",
8120 "synstructure",
8121]
8122
8123[[package]]
8124name = "yuv"
8125version = "0.8.16"
8126source = "registry+https://github.com/rust-lang/crates.io-index"
8127checksum = "5d85a782d94ee43f078bcfd6fa82d4e6a5b2d1cfbbad168e4df5a9f7b39ef48c"
8128dependencies = [
8129 "num-traits",
8130]
8131
8132[[package]]
8133name = "z32"
8134version = "1.3.0"
8135source = "registry+https://github.com/rust-lang/crates.io-index"
8136checksum = "2164e798d9e3d84ee2c91139ace54638059a3b23e361f5c11781c2c6459bde0f"
8137
8138[[package]]
8139name = "zerocopy"
8140version = "0.8.55"
8141source = "registry+https://github.com/rust-lang/crates.io-index"
8142checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
8143dependencies = [
8144 "zerocopy-derive",
8145]
8146
8147[[package]]
8148name = "zerocopy-derive"
8149version = "0.8.55"
8150source = "registry+https://github.com/rust-lang/crates.io-index"
8151checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
8152dependencies = [
8153 "proc-macro2",
8154 "quote",
8155 "syn 2.0.119",
8156]
8157
8158[[package]]
8159name = "zerofrom"
8160version = "0.1.8"
8161source = "registry+https://github.com/rust-lang/crates.io-index"
8162checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
8163dependencies = [
8164 "zerofrom-derive",
8165]
8166
8167[[package]]
8168name = "zerofrom-derive"
8169version = "0.1.7"
8170source = "registry+https://github.com/rust-lang/crates.io-index"
8171checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
8172dependencies = [
8173 "proc-macro2",
8174 "quote",
8175 "syn 2.0.119",
8176 "synstructure",
8177]
8178
8179[[package]]
8180name = "zeroize"
8181version = "1.9.0"
8182source = "registry+https://github.com/rust-lang/crates.io-index"
8183checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
8184dependencies = [
8185 "zeroize_derive",
8186]
8187
8188[[package]]
8189name = "zeroize_derive"
8190version = "1.5.0"
8191source = "registry+https://github.com/rust-lang/crates.io-index"
8192checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
8193dependencies = [
8194 "proc-macro2",
8195 "quote",
8196 "syn 2.0.119",
8197]
8198
8199[[package]]
8200name = "zerotrie"
8201version = "0.2.4"
8202source = "registry+https://github.com/rust-lang/crates.io-index"
8203checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
8204dependencies = [
8205 "displaydoc",
8206 "yoke",
8207 "zerofrom",
8208]
8209
8210[[package]]
8211name = "zerovec"
8212version = "0.11.6"
8213source = "registry+https://github.com/rust-lang/crates.io-index"
8214checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
8215dependencies = [
8216 "yoke",
8217 "zerofrom",
8218 "zerovec-derive",
8219]
8220
8221[[package]]
8222name = "zerovec-derive"
8223version = "0.11.3"
8224source = "registry+https://github.com/rust-lang/crates.io-index"
8225checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
8226dependencies = [
8227 "proc-macro2",
8228 "quote",
8229 "syn 2.0.119",
8230]
8231
Bring vidya in cfd3e36 nandi 19d ago8232[[package]]
8233name = "zip"
8234version = "2.4.2"
8235source = "registry+https://github.com/rust-lang/crates.io-index"
8236checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
8237dependencies = [
8238 "arbitrary",
8239 "crc32fast",
8240 "crossbeam-utils",
8241 "displaydoc",
8242 "flate2",
8243 "indexmap 2.14.0",
8244 "memchr",
8245 "thiserror 2.0.19",
8246 "zopfli",
8247]
8248
8249[[package]]
8250name = "zlib-rs"
8251version = "0.6.7"
8252source = "registry+https://github.com/rust-lang/crates.io-index"
8253checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
8254
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago8255[[package]]
8256name = "zmij"
8257version = "1.0.23"
8258source = "registry+https://github.com/rust-lang/crates.io-index"
8259checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
8260
Bring vidya in cfd3e36 nandi 19d ago8261[[package]]
8262name = "zopfli"
8263version = "0.8.3"
8264source = "registry+https://github.com/rust-lang/crates.io-index"
8265checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
8266dependencies = [
8267 "bumpalo",
8268 "crc32fast",
8269 "log",
8270 "simd-adler32",
8271]
8272
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago8273[[package]]
8274name = "zune-core"
8275version = "0.5.1"
8276source = "registry+https://github.com/rust-lang/crates.io-index"
8277checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
8278
8279[[package]]
8280name = "zune-jpeg"
8281version = "0.5.15"
8282source = "registry+https://github.com/rust-lang/crates.io-index"
8283checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
8284dependencies = [
8285 "zune-core",
8286]