a Jellyfin & Subsonic client for the terminal — powered by mpv, Chromecast and UPnP MediaRenderer
mpv chromecast mpris navidrome jellyfin upnp tui
0

Configure Feed

Select the types of activity you want to include in your feed.

fin / Cargo.lock
98 kB 3962 lines
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "aho-corasick" 7version = "1.1.4" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "allocator-api2" 16version = "0.2.21" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 19 20[[package]] 21name = "alsa" 22version = "0.9.1" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "ed7572b7ba83a31e20d1b48970ee402d2e3e0537dcfe0a3ff4d6eb7508617d43" 25dependencies = [ 26 "alsa-sys", 27 "bitflags 2.13.0", 28 "cfg-if", 29 "libc", 30] 31 32[[package]] 33name = "alsa-sys" 34version = "0.3.1" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527" 37dependencies = [ 38 "libc", 39 "pkg-config", 40] 41 42[[package]] 43name = "android_system_properties" 44version = "0.1.5" 45source = "registry+https://github.com/rust-lang/crates.io-index" 46checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 47dependencies = [ 48 "libc", 49] 50 51[[package]] 52name = "anstream" 53version = "1.0.0" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" 56dependencies = [ 57 "anstyle", 58 "anstyle-parse", 59 "anstyle-query", 60 "anstyle-wincon", 61 "colorchoice", 62 "is_terminal_polyfill", 63 "utf8parse", 64] 65 66[[package]] 67name = "anstyle" 68version = "1.0.14" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" 71 72[[package]] 73name = "anstyle-parse" 74version = "1.0.0" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" 77dependencies = [ 78 "utf8parse", 79] 80 81[[package]] 82name = "anstyle-query" 83version = "1.1.5" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 86dependencies = [ 87 "windows-sys 0.61.2", 88] 89 90[[package]] 91name = "anstyle-wincon" 92version = "3.0.11" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 95dependencies = [ 96 "anstyle", 97 "once_cell_polyfill", 98 "windows-sys 0.61.2", 99] 100 101[[package]] 102name = "anyhow" 103version = "1.0.103" 104source = "registry+https://github.com/rust-lang/crates.io-index" 105checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" 106 107[[package]] 108name = "async-broadcast" 109version = "0.7.2" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 112dependencies = [ 113 "event-listener", 114 "event-listener-strategy", 115 "futures-core", 116 "pin-project-lite", 117] 118 119[[package]] 120name = "async-channel" 121version = "2.5.0" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 124dependencies = [ 125 "concurrent-queue", 126 "event-listener-strategy", 127 "futures-core", 128 "pin-project-lite", 129] 130 131[[package]] 132name = "async-executor" 133version = "1.14.0" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" 136dependencies = [ 137 "async-task", 138 "concurrent-queue", 139 "fastrand", 140 "futures-lite", 141 "pin-project-lite", 142 "slab", 143] 144 145[[package]] 146name = "async-io" 147version = "2.6.0" 148source = "registry+https://github.com/rust-lang/crates.io-index" 149checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 150dependencies = [ 151 "autocfg", 152 "cfg-if", 153 "concurrent-queue", 154 "futures-io", 155 "futures-lite", 156 "parking", 157 "polling 3.11.0", 158 "rustix 1.1.4", 159 "slab", 160 "windows-sys 0.61.2", 161] 162 163[[package]] 164name = "async-lock" 165version = "3.4.2" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 168dependencies = [ 169 "event-listener", 170 "event-listener-strategy", 171 "pin-project-lite", 172] 173 174[[package]] 175name = "async-process" 176version = "2.5.0" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" 179dependencies = [ 180 "async-channel", 181 "async-io", 182 "async-lock", 183 "async-signal", 184 "async-task", 185 "blocking", 186 "cfg-if", 187 "event-listener", 188 "futures-lite", 189 "rustix 1.1.4", 190] 191 192[[package]] 193name = "async-recursion" 194version = "1.1.1" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 197dependencies = [ 198 "proc-macro2", 199 "quote", 200 "syn", 201] 202 203[[package]] 204name = "async-signal" 205version = "0.2.14" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485" 208dependencies = [ 209 "async-io", 210 "async-lock", 211 "atomic-waker", 212 "cfg-if", 213 "futures-core", 214 "futures-io", 215 "rustix 1.1.4", 216 "signal-hook-registry", 217 "slab", 218 "windows-sys 0.61.2", 219] 220 221[[package]] 222name = "async-task" 223version = "4.7.1" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 226 227[[package]] 228name = "async-trait" 229version = "0.1.89" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 232dependencies = [ 233 "proc-macro2", 234 "quote", 235 "syn", 236] 237 238[[package]] 239name = "atomic-waker" 240version = "1.1.2" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 243 244[[package]] 245name = "autocfg" 246version = "1.5.1" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" 249 250[[package]] 251name = "aws-lc-rs" 252version = "1.17.1" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad" 255dependencies = [ 256 "aws-lc-sys", 257 "zeroize", 258] 259 260[[package]] 261name = "aws-lc-sys" 262version = "0.42.0" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444" 265dependencies = [ 266 "cc", 267 "cmake", 268 "dunce", 269 "fs_extra", 270 "pkg-config", 271] 272 273[[package]] 274name = "base64" 275version = "0.22.1" 276source = "registry+https://github.com/rust-lang/crates.io-index" 277checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 278 279[[package]] 280name = "bindgen" 281version = "0.72.1" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" 284dependencies = [ 285 "bitflags 2.13.0", 286 "cexpr", 287 "clang-sys", 288 "itertools", 289 "proc-macro2", 290 "quote", 291 "regex", 292 "rustc-hash", 293 "shlex 1.3.0", 294 "syn", 295] 296 297[[package]] 298name = "bitflags" 299version = "1.3.2" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 302 303[[package]] 304name = "bitflags" 305version = "2.13.0" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8" 308 309[[package]] 310name = "blocking" 311version = "1.6.2" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 314dependencies = [ 315 "async-channel", 316 "async-task", 317 "futures-io", 318 "futures-lite", 319 "piper", 320] 321 322[[package]] 323name = "bumpalo" 324version = "3.20.3" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" 327 328[[package]] 329name = "byteorder" 330version = "1.5.0" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 333 334[[package]] 335name = "bytes" 336version = "1.12.0" 337source = "registry+https://github.com/rust-lang/crates.io-index" 338checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593" 339 340[[package]] 341name = "cassowary" 342version = "0.3.0" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" 345 346[[package]] 347name = "castaway" 348version = "0.2.4" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a" 351dependencies = [ 352 "rustversion", 353] 354 355[[package]] 356name = "cc" 357version = "1.2.65" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96" 360dependencies = [ 361 "find-msvc-tools", 362 "jobserver", 363 "libc", 364 "shlex 2.0.1", 365] 366 367[[package]] 368name = "cesu8" 369version = "1.1.0" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 372 373[[package]] 374name = "cexpr" 375version = "0.6.0" 376source = "registry+https://github.com/rust-lang/crates.io-index" 377checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 378dependencies = [ 379 "nom", 380] 381 382[[package]] 383name = "cfg-if" 384version = "1.0.4" 385source = "registry+https://github.com/rust-lang/crates.io-index" 386checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 387 388[[package]] 389name = "cfg_aliases" 390version = "0.2.1" 391source = "registry+https://github.com/rust-lang/crates.io-index" 392checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 393 394[[package]] 395name = "chrono" 396version = "0.4.45" 397source = "registry+https://github.com/rust-lang/crates.io-index" 398checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" 399dependencies = [ 400 "iana-time-zone", 401 "js-sys", 402 "num-traits", 403 "serde", 404 "wasm-bindgen", 405 "windows-link", 406] 407 408[[package]] 409name = "clang-sys" 410version = "1.8.1" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 413dependencies = [ 414 "glob", 415 "libc", 416 "libloading", 417] 418 419[[package]] 420name = "clap" 421version = "4.6.1" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" 424dependencies = [ 425 "clap_builder", 426 "clap_derive", 427] 428 429[[package]] 430name = "clap_builder" 431version = "4.6.0" 432source = "registry+https://github.com/rust-lang/crates.io-index" 433checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" 434dependencies = [ 435 "anstream", 436 "anstyle", 437 "clap_lex", 438 "strsim", 439] 440 441[[package]] 442name = "clap_derive" 443version = "4.6.1" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" 446dependencies = [ 447 "heck", 448 "proc-macro2", 449 "quote", 450 "syn", 451] 452 453[[package]] 454name = "clap_lex" 455version = "1.1.0" 456source = "registry+https://github.com/rust-lang/crates.io-index" 457checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" 458 459[[package]] 460name = "cmake" 461version = "0.1.58" 462source = "registry+https://github.com/rust-lang/crates.io-index" 463checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678" 464dependencies = [ 465 "cc", 466] 467 468[[package]] 469name = "colorchoice" 470version = "1.0.5" 471source = "registry+https://github.com/rust-lang/crates.io-index" 472checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" 473 474[[package]] 475name = "combine" 476version = "4.6.7" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 479dependencies = [ 480 "bytes", 481 "memchr", 482] 483 484[[package]] 485name = "compact_str" 486version = "0.8.2" 487source = "registry+https://github.com/rust-lang/crates.io-index" 488checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e" 489dependencies = [ 490 "castaway", 491 "cfg-if", 492 "itoa", 493 "rustversion", 494 "ryu", 495 "static_assertions", 496] 497 498[[package]] 499name = "concurrent-queue" 500version = "2.5.0" 501source = "registry+https://github.com/rust-lang/crates.io-index" 502checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 503dependencies = [ 504 "crossbeam-utils", 505] 506 507[[package]] 508name = "core-foundation" 509version = "0.10.1" 510source = "registry+https://github.com/rust-lang/crates.io-index" 511checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 512dependencies = [ 513 "core-foundation-sys", 514 "libc", 515] 516 517[[package]] 518name = "core-foundation-sys" 519version = "0.8.7" 520source = "registry+https://github.com/rust-lang/crates.io-index" 521checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 522 523[[package]] 524name = "coreaudio-rs" 525version = "0.11.3" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "321077172d79c662f64f5071a03120748d5bb652f5231570141be24cfcd2bace" 528dependencies = [ 529 "bitflags 1.3.2", 530 "core-foundation-sys", 531 "coreaudio-sys", 532] 533 534[[package]] 535name = "coreaudio-sys" 536version = "0.2.18" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "b9b4739a805a62757a83e5654fa3faabec0442666b263bb2287d5a8185bfd953" 539dependencies = [ 540 "bindgen", 541] 542 543[[package]] 544name = "cpal" 545version = "0.15.3" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "873dab07c8f743075e57f524c583985fbaf745602acbe916a01539364369a779" 548dependencies = [ 549 "alsa", 550 "core-foundation-sys", 551 "coreaudio-rs", 552 "dasp_sample", 553 "jni", 554 "js-sys", 555 "libc", 556 "mach2", 557 "ndk", 558 "ndk-context", 559 "oboe", 560 "wasm-bindgen", 561 "wasm-bindgen-futures", 562 "web-sys", 563 "windows", 564] 565 566[[package]] 567name = "crossbeam-utils" 568version = "0.8.21" 569source = "registry+https://github.com/rust-lang/crates.io-index" 570checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 571 572[[package]] 573name = "crossterm" 574version = "0.28.1" 575source = "registry+https://github.com/rust-lang/crates.io-index" 576checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" 577dependencies = [ 578 "bitflags 2.13.0", 579 "crossterm_winapi", 580 "futures-core", 581 "mio", 582 "parking_lot", 583 "rustix 0.38.44", 584 "signal-hook", 585 "signal-hook-mio", 586 "winapi", 587] 588 589[[package]] 590name = "crossterm_winapi" 591version = "0.9.1" 592source = "registry+https://github.com/rust-lang/crates.io-index" 593checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 594dependencies = [ 595 "winapi", 596] 597 598[[package]] 599name = "darling" 600version = "0.23.0" 601source = "registry+https://github.com/rust-lang/crates.io-index" 602checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" 603dependencies = [ 604 "darling_core", 605 "darling_macro", 606] 607 608[[package]] 609name = "darling_core" 610version = "0.23.0" 611source = "registry+https://github.com/rust-lang/crates.io-index" 612checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" 613dependencies = [ 614 "ident_case", 615 "proc-macro2", 616 "quote", 617 "strsim", 618 "syn", 619] 620 621[[package]] 622name = "darling_macro" 623version = "0.23.0" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" 626dependencies = [ 627 "darling_core", 628 "quote", 629 "syn", 630] 631 632[[package]] 633name = "dasp_sample" 634version = "0.11.0" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" 637 638[[package]] 639name = "directories" 640version = "5.0.1" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" 643dependencies = [ 644 "dirs-sys", 645] 646 647[[package]] 648name = "dirs-sys" 649version = "0.4.1" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 652dependencies = [ 653 "libc", 654 "option-ext", 655 "redox_users", 656 "windows-sys 0.48.0", 657] 658 659[[package]] 660name = "displaydoc" 661version = "0.2.6" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" 664dependencies = [ 665 "proc-macro2", 666 "quote", 667 "syn", 668] 669 670[[package]] 671name = "dunce" 672version = "1.0.5" 673source = "registry+https://github.com/rust-lang/crates.io-index" 674checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 675 676[[package]] 677name = "either" 678version = "1.16.0" 679source = "registry+https://github.com/rust-lang/crates.io-index" 680checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" 681 682[[package]] 683name = "endi" 684version = "1.1.1" 685source = "registry+https://github.com/rust-lang/crates.io-index" 686checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" 687 688[[package]] 689name = "enumflags2" 690version = "0.7.12" 691source = "registry+https://github.com/rust-lang/crates.io-index" 692checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 693dependencies = [ 694 "enumflags2_derive", 695 "serde", 696] 697 698[[package]] 699name = "enumflags2_derive" 700version = "0.7.12" 701source = "registry+https://github.com/rust-lang/crates.io-index" 702checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 703dependencies = [ 704 "proc-macro2", 705 "quote", 706 "syn", 707] 708 709[[package]] 710name = "equivalent" 711version = "1.0.2" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 714 715[[package]] 716name = "errno" 717version = "0.3.14" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 720dependencies = [ 721 "libc", 722 "windows-sys 0.61.2", 723] 724 725[[package]] 726name = "event-listener" 727version = "5.4.1" 728source = "registry+https://github.com/rust-lang/crates.io-index" 729checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 730dependencies = [ 731 "concurrent-queue", 732 "parking", 733 "pin-project-lite", 734] 735 736[[package]] 737name = "event-listener-strategy" 738version = "0.5.4" 739source = "registry+https://github.com/rust-lang/crates.io-index" 740checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 741dependencies = [ 742 "event-listener", 743 "pin-project-lite", 744] 745 746[[package]] 747name = "fastrand" 748version = "2.4.1" 749source = "registry+https://github.com/rust-lang/crates.io-index" 750checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" 751 752[[package]] 753name = "fin" 754version = "0.5.0" 755dependencies = [ 756 "anyhow", 757 "clap", 758 "directories", 759 "fin-config", 760 "fin-jellyfin", 761 "fin-media", 762 "fin-mediarenderer", 763 "fin-mpris", 764 "fin-player", 765 "fin-tui", 766 "rpassword", 767 "rustls", 768 "serde", 769 "serde_json", 770 "tokio", 771 "toml", 772 "tracing", 773 "tracing-subscriber", 774 "uuid", 775 "whoami", 776] 777 778[[package]] 779name = "fin-config" 780version = "0.5.0" 781dependencies = [ 782 "anyhow", 783 "directories", 784 "serde", 785 "toml", 786] 787 788[[package]] 789name = "fin-jellyfin" 790version = "0.5.0" 791dependencies = [ 792 "anyhow", 793 "chrono", 794 "fin-config", 795 "percent-encoding", 796 "reqwest", 797 "serde", 798 "serde_json", 799 "thiserror 1.0.69", 800 "tokio", 801 "tracing", 802 "url", 803 "uuid", 804 "whoami", 805] 806 807[[package]] 808name = "fin-media" 809version = "0.5.0" 810dependencies = [ 811 "anyhow", 812 "async-trait", 813 "fin-config", 814 "fin-jellyfin", 815 "fin-subsonic", 816 "reqwest", 817 "serde", 818 "serde_json", 819 "tokio", 820 "tracing", 821] 822 823[[package]] 824name = "fin-mediarenderer" 825version = "0.5.0" 826dependencies = [ 827 "anyhow", 828 "chrono", 829 "fin-player", 830 "parking_lot", 831 "percent-encoding", 832 "reqwest", 833 "socket2 0.5.10", 834 "tokio", 835 "tracing", 836 "tracing-subscriber", 837 "uuid", 838] 839 840[[package]] 841name = "fin-mpris" 842version = "0.5.0" 843dependencies = [ 844 "anyhow", 845 "fin-player", 846 "mpris-server", 847 "parking_lot", 848 "tokio", 849 "tracing", 850] 851 852[[package]] 853name = "fin-player" 854version = "0.5.0" 855dependencies = [ 856 "anyhow", 857 "async-trait", 858 "fin-config", 859 "fin-jellyfin", 860 "futures", 861 "mdns-sd", 862 "parking_lot", 863 "rand", 864 "reqwest", 865 "rockbox-playback", 866 "rust_cast", 867 "serde", 868 "serde_json", 869 "thiserror 1.0.69", 870 "tokio", 871 "tracing", 872 "url", 873 "uuid", 874] 875 876[[package]] 877name = "fin-subsonic" 878version = "0.5.0" 879dependencies = [ 880 "anyhow", 881 "async-trait", 882 "fin-jellyfin", 883 "md5", 884 "parking_lot", 885 "percent-encoding", 886 "rand", 887 "reqwest", 888 "serde", 889 "serde_json", 890 "tokio", 891 "tracing", 892 "url", 893 "uuid", 894] 895 896[[package]] 897name = "fin-tui" 898version = "0.5.0" 899dependencies = [ 900 "anyhow", 901 "async-trait", 902 "chrono", 903 "crossterm", 904 "fin-config", 905 "fin-jellyfin", 906 "fin-media", 907 "fin-player", 908 "futures", 909 "parking_lot", 910 "rand", 911 "ratatui", 912 "serde", 913 "serde_json", 914 "thiserror 1.0.69", 915 "tokio", 916 "tracing", 917 "unicode-width 0.2.0", 918 "uuid", 919] 920 921[[package]] 922name = "find-msvc-tools" 923version = "0.1.9" 924source = "registry+https://github.com/rust-lang/crates.io-index" 925checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 926 927[[package]] 928name = "flume" 929version = "0.11.1" 930source = "registry+https://github.com/rust-lang/crates.io-index" 931checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 932dependencies = [ 933 "futures-core", 934 "futures-sink", 935 "spin", 936] 937 938[[package]] 939name = "foldhash" 940version = "0.1.5" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 943 944[[package]] 945name = "form_urlencoded" 946version = "1.2.2" 947source = "registry+https://github.com/rust-lang/crates.io-index" 948checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 949dependencies = [ 950 "percent-encoding", 951] 952 953[[package]] 954name = "fs_extra" 955version = "1.3.0" 956source = "registry+https://github.com/rust-lang/crates.io-index" 957checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 958 959[[package]] 960name = "futures" 961version = "0.3.32" 962source = "registry+https://github.com/rust-lang/crates.io-index" 963checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 964dependencies = [ 965 "futures-channel", 966 "futures-core", 967 "futures-executor", 968 "futures-io", 969 "futures-sink", 970 "futures-task", 971 "futures-util", 972] 973 974[[package]] 975name = "futures-channel" 976version = "0.3.32" 977source = "registry+https://github.com/rust-lang/crates.io-index" 978checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 979dependencies = [ 980 "futures-core", 981 "futures-sink", 982] 983 984[[package]] 985name = "futures-core" 986version = "0.3.32" 987source = "registry+https://github.com/rust-lang/crates.io-index" 988checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 989 990[[package]] 991name = "futures-executor" 992version = "0.3.32" 993source = "registry+https://github.com/rust-lang/crates.io-index" 994checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 995dependencies = [ 996 "futures-core", 997 "futures-task", 998 "futures-util", 999] 1000 1001[[package]] 1002name = "futures-io" 1003version = "0.3.32" 1004source = "registry+https://github.com/rust-lang/crates.io-index" 1005checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 1006 1007[[package]] 1008name = "futures-lite" 1009version = "2.6.1" 1010source = "registry+https://github.com/rust-lang/crates.io-index" 1011checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1012dependencies = [ 1013 "fastrand", 1014 "futures-core", 1015 "futures-io", 1016 "parking", 1017 "pin-project-lite", 1018] 1019 1020[[package]] 1021name = "futures-macro" 1022version = "0.3.32" 1023source = "registry+https://github.com/rust-lang/crates.io-index" 1024checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 1025dependencies = [ 1026 "proc-macro2", 1027 "quote", 1028 "syn", 1029] 1030 1031[[package]] 1032name = "futures-sink" 1033version = "0.3.32" 1034source = "registry+https://github.com/rust-lang/crates.io-index" 1035checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 1036 1037[[package]] 1038name = "futures-task" 1039version = "0.3.32" 1040source = "registry+https://github.com/rust-lang/crates.io-index" 1041checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 1042 1043[[package]] 1044name = "futures-util" 1045version = "0.3.32" 1046source = "registry+https://github.com/rust-lang/crates.io-index" 1047checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 1048dependencies = [ 1049 "futures-channel", 1050 "futures-core", 1051 "futures-io", 1052 "futures-macro", 1053 "futures-sink", 1054 "futures-task", 1055 "memchr", 1056 "pin-project-lite", 1057 "slab", 1058] 1059 1060[[package]] 1061name = "getrandom" 1062version = "0.2.17" 1063source = "registry+https://github.com/rust-lang/crates.io-index" 1064checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1065dependencies = [ 1066 "cfg-if", 1067 "js-sys", 1068 "libc", 1069 "wasi", 1070 "wasm-bindgen", 1071] 1072 1073[[package]] 1074name = "getrandom" 1075version = "0.3.4" 1076source = "registry+https://github.com/rust-lang/crates.io-index" 1077checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1078dependencies = [ 1079 "cfg-if", 1080 "js-sys", 1081 "libc", 1082 "r-efi 5.3.0", 1083 "wasip2", 1084 "wasm-bindgen", 1085] 1086 1087[[package]] 1088name = "getrandom" 1089version = "0.4.3" 1090source = "registry+https://github.com/rust-lang/crates.io-index" 1091checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" 1092dependencies = [ 1093 "cfg-if", 1094 "libc", 1095 "r-efi 6.0.0", 1096] 1097 1098[[package]] 1099name = "glob" 1100version = "0.3.3" 1101source = "registry+https://github.com/rust-lang/crates.io-index" 1102checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 1103 1104[[package]] 1105name = "hashbrown" 1106version = "0.15.5" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1109dependencies = [ 1110 "allocator-api2", 1111 "equivalent", 1112 "foldhash", 1113] 1114 1115[[package]] 1116name = "hashbrown" 1117version = "0.17.1" 1118source = "registry+https://github.com/rust-lang/crates.io-index" 1119checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" 1120 1121[[package]] 1122name = "heck" 1123version = "0.5.0" 1124source = "registry+https://github.com/rust-lang/crates.io-index" 1125checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1126 1127[[package]] 1128name = "hermit-abi" 1129version = "0.5.2" 1130source = "registry+https://github.com/rust-lang/crates.io-index" 1131checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1132 1133[[package]] 1134name = "hex" 1135version = "0.4.3" 1136source = "registry+https://github.com/rust-lang/crates.io-index" 1137checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1138 1139[[package]] 1140name = "home" 1141version = "0.5.12" 1142source = "registry+https://github.com/rust-lang/crates.io-index" 1143checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" 1144dependencies = [ 1145 "windows-sys 0.61.2", 1146] 1147 1148[[package]] 1149name = "http" 1150version = "1.4.2" 1151source = "registry+https://github.com/rust-lang/crates.io-index" 1152checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" 1153dependencies = [ 1154 "bytes", 1155 "itoa", 1156] 1157 1158[[package]] 1159name = "http-body" 1160version = "1.0.1" 1161source = "registry+https://github.com/rust-lang/crates.io-index" 1162checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1163dependencies = [ 1164 "bytes", 1165 "http", 1166] 1167 1168[[package]] 1169name = "http-body-util" 1170version = "0.1.3" 1171source = "registry+https://github.com/rust-lang/crates.io-index" 1172checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1173dependencies = [ 1174 "bytes", 1175 "futures-core", 1176 "http", 1177 "http-body", 1178 "pin-project-lite", 1179] 1180 1181[[package]] 1182name = "httparse" 1183version = "1.10.1" 1184source = "registry+https://github.com/rust-lang/crates.io-index" 1185checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1186 1187[[package]] 1188name = "hyper" 1189version = "1.10.1" 1190source = "registry+https://github.com/rust-lang/crates.io-index" 1191checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" 1192dependencies = [ 1193 "atomic-waker", 1194 "bytes", 1195 "futures-channel", 1196 "futures-core", 1197 "http", 1198 "http-body", 1199 "httparse", 1200 "itoa", 1201 "pin-project-lite", 1202 "smallvec", 1203 "tokio", 1204 "want", 1205] 1206 1207[[package]] 1208name = "hyper-rustls" 1209version = "0.27.9" 1210source = "registry+https://github.com/rust-lang/crates.io-index" 1211checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" 1212dependencies = [ 1213 "http", 1214 "hyper", 1215 "hyper-util", 1216 "rustls", 1217 "rustls-native-certs", 1218 "tokio", 1219 "tokio-rustls", 1220 "tower-service", 1221 "webpki-roots", 1222] 1223 1224[[package]] 1225name = "hyper-util" 1226version = "0.1.20" 1227source = "registry+https://github.com/rust-lang/crates.io-index" 1228checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 1229dependencies = [ 1230 "base64", 1231 "bytes", 1232 "futures-channel", 1233 "futures-util", 1234 "http", 1235 "http-body", 1236 "hyper", 1237 "ipnet", 1238 "libc", 1239 "percent-encoding", 1240 "pin-project-lite", 1241 "socket2 0.6.4", 1242 "tokio", 1243 "tower-service", 1244 "tracing", 1245] 1246 1247[[package]] 1248name = "iana-time-zone" 1249version = "0.1.65" 1250source = "registry+https://github.com/rust-lang/crates.io-index" 1251checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 1252dependencies = [ 1253 "android_system_properties", 1254 "core-foundation-sys", 1255 "iana-time-zone-haiku", 1256 "js-sys", 1257 "log", 1258 "wasm-bindgen", 1259 "windows-core 0.62.2", 1260] 1261 1262[[package]] 1263name = "iana-time-zone-haiku" 1264version = "0.1.2" 1265source = "registry+https://github.com/rust-lang/crates.io-index" 1266checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1267dependencies = [ 1268 "cc", 1269] 1270 1271[[package]] 1272name = "icu_collections" 1273version = "2.2.0" 1274source = "registry+https://github.com/rust-lang/crates.io-index" 1275checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" 1276dependencies = [ 1277 "displaydoc", 1278 "potential_utf", 1279 "utf8_iter", 1280 "yoke", 1281 "zerofrom", 1282 "zerovec", 1283] 1284 1285[[package]] 1286name = "icu_locale_core" 1287version = "2.2.0" 1288source = "registry+https://github.com/rust-lang/crates.io-index" 1289checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" 1290dependencies = [ 1291 "displaydoc", 1292 "litemap", 1293 "tinystr", 1294 "writeable", 1295 "zerovec", 1296] 1297 1298[[package]] 1299name = "icu_normalizer" 1300version = "2.2.0" 1301source = "registry+https://github.com/rust-lang/crates.io-index" 1302checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" 1303dependencies = [ 1304 "icu_collections", 1305 "icu_normalizer_data", 1306 "icu_properties", 1307 "icu_provider", 1308 "smallvec", 1309 "zerovec", 1310] 1311 1312[[package]] 1313name = "icu_normalizer_data" 1314version = "2.2.0" 1315source = "registry+https://github.com/rust-lang/crates.io-index" 1316checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" 1317 1318[[package]] 1319name = "icu_properties" 1320version = "2.2.0" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" 1323dependencies = [ 1324 "icu_collections", 1325 "icu_locale_core", 1326 "icu_properties_data", 1327 "icu_provider", 1328 "zerotrie", 1329 "zerovec", 1330] 1331 1332[[package]] 1333name = "icu_properties_data" 1334version = "2.2.0" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" 1337 1338[[package]] 1339name = "icu_provider" 1340version = "2.2.0" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" 1343dependencies = [ 1344 "displaydoc", 1345 "icu_locale_core", 1346 "writeable", 1347 "yoke", 1348 "zerofrom", 1349 "zerotrie", 1350 "zerovec", 1351] 1352 1353[[package]] 1354name = "ident_case" 1355version = "1.0.1" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1358 1359[[package]] 1360name = "idna" 1361version = "1.1.0" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1364dependencies = [ 1365 "idna_adapter", 1366 "smallvec", 1367 "utf8_iter", 1368] 1369 1370[[package]] 1371name = "idna_adapter" 1372version = "1.2.2" 1373source = "registry+https://github.com/rust-lang/crates.io-index" 1374checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" 1375dependencies = [ 1376 "icu_normalizer", 1377 "icu_properties", 1378] 1379 1380[[package]] 1381name = "if-addrs" 1382version = "0.13.4" 1383source = "registry+https://github.com/rust-lang/crates.io-index" 1384checksum = "69b2eeee38fef3aa9b4cc5f1beea8a2444fc00e7377cafae396de3f5c2065e24" 1385dependencies = [ 1386 "libc", 1387 "windows-sys 0.59.0", 1388] 1389 1390[[package]] 1391name = "indexmap" 1392version = "2.14.0" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" 1395dependencies = [ 1396 "equivalent", 1397 "hashbrown 0.17.1", 1398] 1399 1400[[package]] 1401name = "indoc" 1402version = "2.0.7" 1403source = "registry+https://github.com/rust-lang/crates.io-index" 1404checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" 1405dependencies = [ 1406 "rustversion", 1407] 1408 1409[[package]] 1410name = "instability" 1411version = "0.3.12" 1412source = "registry+https://github.com/rust-lang/crates.io-index" 1413checksum = "5eb2d60ef19920a3a9193c3e371f726ec1dafc045dac788d0fb3704272458971" 1414dependencies = [ 1415 "darling", 1416 "indoc", 1417 "proc-macro2", 1418 "quote", 1419 "syn", 1420] 1421 1422[[package]] 1423name = "ipnet" 1424version = "2.12.0" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" 1427 1428[[package]] 1429name = "is_terminal_polyfill" 1430version = "1.70.2" 1431source = "registry+https://github.com/rust-lang/crates.io-index" 1432checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 1433 1434[[package]] 1435name = "itertools" 1436version = "0.13.0" 1437source = "registry+https://github.com/rust-lang/crates.io-index" 1438checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1439dependencies = [ 1440 "either", 1441] 1442 1443[[package]] 1444name = "itoa" 1445version = "1.0.18" 1446source = "registry+https://github.com/rust-lang/crates.io-index" 1447checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 1448 1449[[package]] 1450name = "jni" 1451version = "0.21.1" 1452source = "registry+https://github.com/rust-lang/crates.io-index" 1453checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1454dependencies = [ 1455 "cesu8", 1456 "cfg-if", 1457 "combine", 1458 "jni-sys 0.3.1", 1459 "log", 1460 "thiserror 1.0.69", 1461 "walkdir", 1462 "windows-sys 0.45.0", 1463] 1464 1465[[package]] 1466name = "jni-sys" 1467version = "0.3.1" 1468source = "registry+https://github.com/rust-lang/crates.io-index" 1469checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" 1470dependencies = [ 1471 "jni-sys 0.4.1", 1472] 1473 1474[[package]] 1475name = "jni-sys" 1476version = "0.4.1" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" 1479dependencies = [ 1480 "jni-sys-macros", 1481] 1482 1483[[package]] 1484name = "jni-sys-macros" 1485version = "0.4.1" 1486source = "registry+https://github.com/rust-lang/crates.io-index" 1487checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" 1488dependencies = [ 1489 "quote", 1490 "syn", 1491] 1492 1493[[package]] 1494name = "jobserver" 1495version = "0.1.34" 1496source = "registry+https://github.com/rust-lang/crates.io-index" 1497checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 1498dependencies = [ 1499 "getrandom 0.3.4", 1500 "libc", 1501] 1502 1503[[package]] 1504name = "js-sys" 1505version = "0.3.103" 1506source = "registry+https://github.com/rust-lang/crates.io-index" 1507checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" 1508dependencies = [ 1509 "cfg-if", 1510 "futures-util", 1511 "wasm-bindgen", 1512] 1513 1514[[package]] 1515name = "lazy_static" 1516version = "1.5.0" 1517source = "registry+https://github.com/rust-lang/crates.io-index" 1518checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1519 1520[[package]] 1521name = "libc" 1522version = "0.2.186" 1523source = "registry+https://github.com/rust-lang/crates.io-index" 1524checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" 1525 1526[[package]] 1527name = "libloading" 1528version = "0.8.9" 1529source = "registry+https://github.com/rust-lang/crates.io-index" 1530checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" 1531dependencies = [ 1532 "cfg-if", 1533 "windows-link", 1534] 1535 1536[[package]] 1537name = "libredox" 1538version = "0.1.18" 1539source = "registry+https://github.com/rust-lang/crates.io-index" 1540checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652" 1541dependencies = [ 1542 "bitflags 2.13.0", 1543 "libc", 1544 "plain", 1545 "redox_syscall 0.9.0", 1546] 1547 1548[[package]] 1549name = "linux-raw-sys" 1550version = "0.4.15" 1551source = "registry+https://github.com/rust-lang/crates.io-index" 1552checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 1553 1554[[package]] 1555name = "linux-raw-sys" 1556version = "0.12.1" 1557source = "registry+https://github.com/rust-lang/crates.io-index" 1558checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 1559 1560[[package]] 1561name = "litemap" 1562version = "0.8.2" 1563source = "registry+https://github.com/rust-lang/crates.io-index" 1564checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" 1565 1566[[package]] 1567name = "lock_api" 1568version = "0.4.14" 1569source = "registry+https://github.com/rust-lang/crates.io-index" 1570checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1571dependencies = [ 1572 "scopeguard", 1573] 1574 1575[[package]] 1576name = "log" 1577version = "0.4.33" 1578source = "registry+https://github.com/rust-lang/crates.io-index" 1579checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" 1580 1581[[package]] 1582name = "lru" 1583version = "0.12.5" 1584source = "registry+https://github.com/rust-lang/crates.io-index" 1585checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 1586dependencies = [ 1587 "hashbrown 0.15.5", 1588] 1589 1590[[package]] 1591name = "lru-slab" 1592version = "0.1.2" 1593source = "registry+https://github.com/rust-lang/crates.io-index" 1594checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1595 1596[[package]] 1597name = "mach2" 1598version = "0.4.3" 1599source = "registry+https://github.com/rust-lang/crates.io-index" 1600checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" 1601dependencies = [ 1602 "libc", 1603] 1604 1605[[package]] 1606name = "matchers" 1607version = "0.2.0" 1608source = "registry+https://github.com/rust-lang/crates.io-index" 1609checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 1610dependencies = [ 1611 "regex-automata", 1612] 1613 1614[[package]] 1615name = "md5" 1616version = "0.7.0" 1617source = "registry+https://github.com/rust-lang/crates.io-index" 1618checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 1619 1620[[package]] 1621name = "mdns-sd" 1622version = "0.11.5" 1623source = "registry+https://github.com/rust-lang/crates.io-index" 1624checksum = "8fe7c11a1eb3cfbfcf702d1601c1f5f4c102cdc8665b8a557783ef634741676e" 1625dependencies = [ 1626 "flume", 1627 "if-addrs", 1628 "log", 1629 "polling 2.8.0", 1630 "socket2 0.5.10", 1631] 1632 1633[[package]] 1634name = "memchr" 1635version = "2.8.2" 1636source = "registry+https://github.com/rust-lang/crates.io-index" 1637checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4" 1638 1639[[package]] 1640name = "memoffset" 1641version = "0.9.1" 1642source = "registry+https://github.com/rust-lang/crates.io-index" 1643checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1644dependencies = [ 1645 "autocfg", 1646] 1647 1648[[package]] 1649name = "minimal-lexical" 1650version = "0.2.1" 1651source = "registry+https://github.com/rust-lang/crates.io-index" 1652checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1653 1654[[package]] 1655name = "mio" 1656version = "1.2.1" 1657source = "registry+https://github.com/rust-lang/crates.io-index" 1658checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda" 1659dependencies = [ 1660 "libc", 1661 "log", 1662 "wasi", 1663 "windows-sys 0.61.2", 1664] 1665 1666[[package]] 1667name = "mpris-server" 1668version = "0.10.0" 1669source = "registry+https://github.com/rust-lang/crates.io-index" 1670checksum = "70cf358e9a9516cc35ed40eebd56cbe80f5190a7a2b3cd0c2d358c86b879132b" 1671dependencies = [ 1672 "async-channel", 1673 "futures-channel", 1674 "serde", 1675 "trait-variant", 1676 "zbus", 1677] 1678 1679[[package]] 1680name = "ndk" 1681version = "0.8.0" 1682source = "registry+https://github.com/rust-lang/crates.io-index" 1683checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7" 1684dependencies = [ 1685 "bitflags 2.13.0", 1686 "jni-sys 0.3.1", 1687 "log", 1688 "ndk-sys", 1689 "num_enum", 1690 "thiserror 1.0.69", 1691] 1692 1693[[package]] 1694name = "ndk-context" 1695version = "0.1.1" 1696source = "registry+https://github.com/rust-lang/crates.io-index" 1697checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1698 1699[[package]] 1700name = "ndk-sys" 1701version = "0.5.0+25.2.9519653" 1702source = "registry+https://github.com/rust-lang/crates.io-index" 1703checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 1704dependencies = [ 1705 "jni-sys 0.3.1", 1706] 1707 1708[[package]] 1709name = "nom" 1710version = "7.1.3" 1711source = "registry+https://github.com/rust-lang/crates.io-index" 1712checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1713dependencies = [ 1714 "memchr", 1715 "minimal-lexical", 1716] 1717 1718[[package]] 1719name = "nu-ansi-term" 1720version = "0.50.3" 1721source = "registry+https://github.com/rust-lang/crates.io-index" 1722checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 1723dependencies = [ 1724 "windows-sys 0.61.2", 1725] 1726 1727[[package]] 1728name = "num-derive" 1729version = "0.4.2" 1730source = "registry+https://github.com/rust-lang/crates.io-index" 1731checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 1732dependencies = [ 1733 "proc-macro2", 1734 "quote", 1735 "syn", 1736] 1737 1738[[package]] 1739name = "num-traits" 1740version = "0.2.19" 1741source = "registry+https://github.com/rust-lang/crates.io-index" 1742checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1743dependencies = [ 1744 "autocfg", 1745] 1746 1747[[package]] 1748name = "num_enum" 1749version = "0.7.6" 1750source = "registry+https://github.com/rust-lang/crates.io-index" 1751checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" 1752dependencies = [ 1753 "num_enum_derive", 1754 "rustversion", 1755] 1756 1757[[package]] 1758name = "num_enum_derive" 1759version = "0.7.6" 1760source = "registry+https://github.com/rust-lang/crates.io-index" 1761checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" 1762dependencies = [ 1763 "proc-macro-crate", 1764 "proc-macro2", 1765 "quote", 1766 "syn", 1767] 1768 1769[[package]] 1770name = "oboe" 1771version = "0.6.1" 1772source = "registry+https://github.com/rust-lang/crates.io-index" 1773checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb" 1774dependencies = [ 1775 "jni", 1776 "ndk", 1777 "ndk-context", 1778 "num-derive", 1779 "num-traits", 1780 "oboe-sys", 1781] 1782 1783[[package]] 1784name = "oboe-sys" 1785version = "0.6.1" 1786source = "registry+https://github.com/rust-lang/crates.io-index" 1787checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d" 1788dependencies = [ 1789 "cc", 1790] 1791 1792[[package]] 1793name = "once_cell" 1794version = "1.21.4" 1795source = "registry+https://github.com/rust-lang/crates.io-index" 1796checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 1797 1798[[package]] 1799name = "once_cell_polyfill" 1800version = "1.70.2" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 1803 1804[[package]] 1805name = "openssl-probe" 1806version = "0.2.1" 1807source = "registry+https://github.com/rust-lang/crates.io-index" 1808checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 1809 1810[[package]] 1811name = "option-ext" 1812version = "0.2.0" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1815 1816[[package]] 1817name = "ordered-stream" 1818version = "0.2.0" 1819source = "registry+https://github.com/rust-lang/crates.io-index" 1820checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 1821dependencies = [ 1822 "futures-core", 1823 "pin-project-lite", 1824] 1825 1826[[package]] 1827name = "parking" 1828version = "2.2.1" 1829source = "registry+https://github.com/rust-lang/crates.io-index" 1830checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1831 1832[[package]] 1833name = "parking_lot" 1834version = "0.12.5" 1835source = "registry+https://github.com/rust-lang/crates.io-index" 1836checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1837dependencies = [ 1838 "lock_api", 1839 "parking_lot_core", 1840] 1841 1842[[package]] 1843name = "parking_lot_core" 1844version = "0.9.12" 1845source = "registry+https://github.com/rust-lang/crates.io-index" 1846checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 1847dependencies = [ 1848 "cfg-if", 1849 "libc", 1850 "redox_syscall 0.5.18", 1851 "smallvec", 1852 "windows-link", 1853] 1854 1855[[package]] 1856name = "paste" 1857version = "1.0.15" 1858source = "registry+https://github.com/rust-lang/crates.io-index" 1859checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 1860 1861[[package]] 1862name = "percent-encoding" 1863version = "2.3.2" 1864source = "registry+https://github.com/rust-lang/crates.io-index" 1865checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1866 1867[[package]] 1868name = "pin-project-lite" 1869version = "0.2.17" 1870source = "registry+https://github.com/rust-lang/crates.io-index" 1871checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 1872 1873[[package]] 1874name = "piper" 1875version = "0.2.5" 1876source = "registry+https://github.com/rust-lang/crates.io-index" 1877checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" 1878dependencies = [ 1879 "atomic-waker", 1880 "fastrand", 1881 "futures-io", 1882] 1883 1884[[package]] 1885name = "pkg-config" 1886version = "0.3.33" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" 1889 1890[[package]] 1891name = "plain" 1892version = "0.2.3" 1893source = "registry+https://github.com/rust-lang/crates.io-index" 1894checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 1895 1896[[package]] 1897name = "polling" 1898version = "2.8.0" 1899source = "registry+https://github.com/rust-lang/crates.io-index" 1900checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 1901dependencies = [ 1902 "autocfg", 1903 "bitflags 1.3.2", 1904 "cfg-if", 1905 "concurrent-queue", 1906 "libc", 1907 "log", 1908 "pin-project-lite", 1909 "windows-sys 0.48.0", 1910] 1911 1912[[package]] 1913name = "polling" 1914version = "3.11.0" 1915source = "registry+https://github.com/rust-lang/crates.io-index" 1916checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 1917dependencies = [ 1918 "cfg-if", 1919 "concurrent-queue", 1920 "hermit-abi", 1921 "pin-project-lite", 1922 "rustix 1.1.4", 1923 "windows-sys 0.61.2", 1924] 1925 1926[[package]] 1927name = "potential_utf" 1928version = "0.1.5" 1929source = "registry+https://github.com/rust-lang/crates.io-index" 1930checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" 1931dependencies = [ 1932 "zerovec", 1933] 1934 1935[[package]] 1936name = "ppv-lite86" 1937version = "0.2.21" 1938source = "registry+https://github.com/rust-lang/crates.io-index" 1939checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1940dependencies = [ 1941 "zerocopy", 1942] 1943 1944[[package]] 1945name = "proc-macro-crate" 1946version = "3.5.0" 1947source = "registry+https://github.com/rust-lang/crates.io-index" 1948checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" 1949dependencies = [ 1950 "toml_edit 0.25.12+spec-1.1.0", 1951] 1952 1953[[package]] 1954name = "proc-macro2" 1955version = "1.0.106" 1956source = "registry+https://github.com/rust-lang/crates.io-index" 1957checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 1958dependencies = [ 1959 "unicode-ident", 1960] 1961 1962[[package]] 1963name = "protobuf" 1964version = "3.7.2" 1965source = "registry+https://github.com/rust-lang/crates.io-index" 1966checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" 1967dependencies = [ 1968 "once_cell", 1969 "protobuf-support", 1970 "thiserror 1.0.69", 1971] 1972 1973[[package]] 1974name = "protobuf-codegen" 1975version = "3.7.2" 1976source = "registry+https://github.com/rust-lang/crates.io-index" 1977checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace" 1978dependencies = [ 1979 "anyhow", 1980 "once_cell", 1981 "protobuf", 1982 "protobuf-parse", 1983 "regex", 1984 "tempfile", 1985 "thiserror 1.0.69", 1986] 1987 1988[[package]] 1989name = "protobuf-parse" 1990version = "3.7.2" 1991source = "registry+https://github.com/rust-lang/crates.io-index" 1992checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973" 1993dependencies = [ 1994 "anyhow", 1995 "indexmap", 1996 "log", 1997 "protobuf", 1998 "protobuf-support", 1999 "tempfile", 2000 "thiserror 1.0.69", 2001 "which", 2002] 2003 2004[[package]] 2005name = "protobuf-support" 2006version = "3.7.2" 2007source = "registry+https://github.com/rust-lang/crates.io-index" 2008checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" 2009dependencies = [ 2010 "thiserror 1.0.69", 2011] 2012 2013[[package]] 2014name = "quinn" 2015version = "0.11.11" 2016source = "registry+https://github.com/rust-lang/crates.io-index" 2017checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8" 2018dependencies = [ 2019 "bytes", 2020 "cfg_aliases", 2021 "pin-project-lite", 2022 "quinn-proto", 2023 "quinn-udp", 2024 "rustc-hash", 2025 "rustls", 2026 "socket2 0.6.4", 2027 "thiserror 2.0.18", 2028 "tokio", 2029 "tracing", 2030 "web-time", 2031] 2032 2033[[package]] 2034name = "quinn-proto" 2035version = "0.11.15" 2036source = "registry+https://github.com/rust-lang/crates.io-index" 2037checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e" 2038dependencies = [ 2039 "bytes", 2040 "getrandom 0.3.4", 2041 "lru-slab", 2042 "rand", 2043 "ring", 2044 "rustc-hash", 2045 "rustls", 2046 "rustls-pki-types", 2047 "slab", 2048 "thiserror 2.0.18", 2049 "tinyvec", 2050 "tracing", 2051 "web-time", 2052] 2053 2054[[package]] 2055name = "quinn-udp" 2056version = "0.5.14" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 2059dependencies = [ 2060 "cfg_aliases", 2061 "libc", 2062 "once_cell", 2063 "socket2 0.6.4", 2064 "tracing", 2065 "windows-sys 0.60.2", 2066] 2067 2068[[package]] 2069name = "quote" 2070version = "1.0.46" 2071source = "registry+https://github.com/rust-lang/crates.io-index" 2072checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368" 2073dependencies = [ 2074 "proc-macro2", 2075] 2076 2077[[package]] 2078name = "r-efi" 2079version = "5.3.0" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2082 2083[[package]] 2084name = "r-efi" 2085version = "6.0.0" 2086source = "registry+https://github.com/rust-lang/crates.io-index" 2087checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 2088 2089[[package]] 2090name = "rand" 2091version = "0.9.4" 2092source = "registry+https://github.com/rust-lang/crates.io-index" 2093checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" 2094dependencies = [ 2095 "rand_chacha", 2096 "rand_core", 2097] 2098 2099[[package]] 2100name = "rand_chacha" 2101version = "0.9.0" 2102source = "registry+https://github.com/rust-lang/crates.io-index" 2103checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2104dependencies = [ 2105 "ppv-lite86", 2106 "rand_core", 2107] 2108 2109[[package]] 2110name = "rand_core" 2111version = "0.9.5" 2112source = "registry+https://github.com/rust-lang/crates.io-index" 2113checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 2114dependencies = [ 2115 "getrandom 0.3.4", 2116] 2117 2118[[package]] 2119name = "ratatui" 2120version = "0.29.0" 2121source = "registry+https://github.com/rust-lang/crates.io-index" 2122checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b" 2123dependencies = [ 2124 "bitflags 2.13.0", 2125 "cassowary", 2126 "compact_str", 2127 "crossterm", 2128 "indoc", 2129 "instability", 2130 "itertools", 2131 "lru", 2132 "paste", 2133 "strum", 2134 "unicode-segmentation", 2135 "unicode-truncate", 2136 "unicode-width 0.2.0", 2137] 2138 2139[[package]] 2140name = "redox_syscall" 2141version = "0.5.18" 2142source = "registry+https://github.com/rust-lang/crates.io-index" 2143checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2144dependencies = [ 2145 "bitflags 2.13.0", 2146] 2147 2148[[package]] 2149name = "redox_syscall" 2150version = "0.9.0" 2151source = "registry+https://github.com/rust-lang/crates.io-index" 2152checksum = "c5102a6aaa05aa011a238e178e6bca86d2cb56fc9f586d37cb80f5bca6e07759" 2153dependencies = [ 2154 "bitflags 2.13.0", 2155] 2156 2157[[package]] 2158name = "redox_users" 2159version = "0.4.6" 2160source = "registry+https://github.com/rust-lang/crates.io-index" 2161checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 2162dependencies = [ 2163 "getrandom 0.2.17", 2164 "libredox", 2165 "thiserror 1.0.69", 2166] 2167 2168[[package]] 2169name = "regex" 2170version = "1.12.4" 2171source = "registry+https://github.com/rust-lang/crates.io-index" 2172checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba" 2173dependencies = [ 2174 "aho-corasick", 2175 "memchr", 2176 "regex-automata", 2177 "regex-syntax", 2178] 2179 2180[[package]] 2181name = "regex-automata" 2182version = "0.4.14" 2183source = "registry+https://github.com/rust-lang/crates.io-index" 2184checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 2185dependencies = [ 2186 "aho-corasick", 2187 "memchr", 2188 "regex-syntax", 2189] 2190 2191[[package]] 2192name = "regex-syntax" 2193version = "0.8.11" 2194source = "registry+https://github.com/rust-lang/crates.io-index" 2195checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" 2196 2197[[package]] 2198name = "reqwest" 2199version = "0.12.28" 2200source = "registry+https://github.com/rust-lang/crates.io-index" 2201checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 2202dependencies = [ 2203 "base64", 2204 "bytes", 2205 "futures-channel", 2206 "futures-core", 2207 "futures-util", 2208 "http", 2209 "http-body", 2210 "http-body-util", 2211 "hyper", 2212 "hyper-rustls", 2213 "hyper-util", 2214 "js-sys", 2215 "log", 2216 "percent-encoding", 2217 "pin-project-lite", 2218 "quinn", 2219 "rustls", 2220 "rustls-native-certs", 2221 "rustls-pki-types", 2222 "serde", 2223 "serde_json", 2224 "serde_urlencoded", 2225 "sync_wrapper", 2226 "tokio", 2227 "tokio-rustls", 2228 "tokio-util", 2229 "tower", 2230 "tower-http", 2231 "tower-service", 2232 "url", 2233 "wasm-bindgen", 2234 "wasm-bindgen-futures", 2235 "wasm-streams", 2236 "web-sys", 2237 "webpki-roots", 2238] 2239 2240[[package]] 2241name = "ring" 2242version = "0.17.14" 2243source = "registry+https://github.com/rust-lang/crates.io-index" 2244checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2245dependencies = [ 2246 "cc", 2247 "cfg-if", 2248 "getrandom 0.2.17", 2249 "libc", 2250 "untrusted", 2251 "windows-sys 0.52.0", 2252] 2253 2254[[package]] 2255name = "rockbox-codecs" 2256version = "0.2.0" 2257source = "registry+https://github.com/rust-lang/crates.io-index" 2258checksum = "f2fad09bba95a53f6f26b9722d1521b0d786410fa18a51ca432d6b0a0ea7d87e" 2259dependencies = [ 2260 "cc", 2261 "rockbox-metadata", 2262] 2263 2264[[package]] 2265name = "rockbox-dsp" 2266version = "0.3.0" 2267source = "registry+https://github.com/rust-lang/crates.io-index" 2268checksum = "413a59a41ed9e936c283b28d494c22d19e42c1043292a920b84b3ff0bd5af6c2" 2269dependencies = [ 2270 "cc", 2271] 2272 2273[[package]] 2274name = "rockbox-metadata" 2275version = "0.1.0" 2276source = "registry+https://github.com/rust-lang/crates.io-index" 2277checksum = "a4d438a91e9bb4fe2243acfef1c135a229b6a64f95f48b0d7eaf7a936e5abb92" 2278dependencies = [ 2279 "cc", 2280] 2281 2282[[package]] 2283name = "rockbox-playback" 2284version = "0.4.0" 2285source = "registry+https://github.com/rust-lang/crates.io-index" 2286checksum = "39ac1f8715f88a47e8ab6ed3963e17d17e0d78690659d657aa93977de4c13706" 2287dependencies = [ 2288 "cpal", 2289 "reqwest", 2290 "rockbox-codecs", 2291 "rockbox-dsp", 2292 "rockbox-metadata", 2293 "tempfile", 2294] 2295 2296[[package]] 2297name = "rpassword" 2298version = "7.5.4" 2299source = "registry+https://github.com/rust-lang/crates.io-index" 2300checksum = "2da316a15f47e3d053de9cb2c439650bd8fa4aaeb9365f2e5f27f492ff73c196" 2301dependencies = [ 2302 "libc", 2303 "rtoolbox", 2304 "windows-sys 0.61.2", 2305] 2306 2307[[package]] 2308name = "rtoolbox" 2309version = "0.0.5" 2310source = "registry+https://github.com/rust-lang/crates.io-index" 2311checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844" 2312dependencies = [ 2313 "libc", 2314 "windows-sys 0.59.0", 2315] 2316 2317[[package]] 2318name = "rust_cast" 2319version = "0.20.0" 2320source = "registry+https://github.com/rust-lang/crates.io-index" 2321checksum = "c403f9630e398a4a5f2655df392254fcade5e4df94b11308487f2aea49ddee46" 2322dependencies = [ 2323 "byteorder", 2324 "log", 2325 "protobuf", 2326 "protobuf-codegen", 2327 "rustls", 2328 "rustls-native-certs", 2329 "serde", 2330 "serde_json", 2331 "thiserror 1.0.69", 2332] 2333 2334[[package]] 2335name = "rustc-hash" 2336version = "2.1.2" 2337source = "registry+https://github.com/rust-lang/crates.io-index" 2338checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" 2339 2340[[package]] 2341name = "rustix" 2342version = "0.38.44" 2343source = "registry+https://github.com/rust-lang/crates.io-index" 2344checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 2345dependencies = [ 2346 "bitflags 2.13.0", 2347 "errno", 2348 "libc", 2349 "linux-raw-sys 0.4.15", 2350 "windows-sys 0.59.0", 2351] 2352 2353[[package]] 2354name = "rustix" 2355version = "1.1.4" 2356source = "registry+https://github.com/rust-lang/crates.io-index" 2357checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 2358dependencies = [ 2359 "bitflags 2.13.0", 2360 "errno", 2361 "libc", 2362 "linux-raw-sys 0.12.1", 2363 "windows-sys 0.61.2", 2364] 2365 2366[[package]] 2367name = "rustls" 2368version = "0.23.41" 2369source = "registry+https://github.com/rust-lang/crates.io-index" 2370checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f" 2371dependencies = [ 2372 "aws-lc-rs", 2373 "log", 2374 "once_cell", 2375 "ring", 2376 "rustls-pki-types", 2377 "rustls-webpki", 2378 "subtle", 2379 "zeroize", 2380] 2381 2382[[package]] 2383name = "rustls-native-certs" 2384version = "0.8.4" 2385source = "registry+https://github.com/rust-lang/crates.io-index" 2386checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" 2387dependencies = [ 2388 "openssl-probe", 2389 "rustls-pki-types", 2390 "schannel", 2391 "security-framework", 2392] 2393 2394[[package]] 2395name = "rustls-pki-types" 2396version = "1.15.0" 2397source = "registry+https://github.com/rust-lang/crates.io-index" 2398checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046" 2399dependencies = [ 2400 "web-time", 2401 "zeroize", 2402] 2403 2404[[package]] 2405name = "rustls-webpki" 2406version = "0.103.13" 2407source = "registry+https://github.com/rust-lang/crates.io-index" 2408checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" 2409dependencies = [ 2410 "aws-lc-rs", 2411 "ring", 2412 "rustls-pki-types", 2413 "untrusted", 2414] 2415 2416[[package]] 2417name = "rustversion" 2418version = "1.0.22" 2419source = "registry+https://github.com/rust-lang/crates.io-index" 2420checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2421 2422[[package]] 2423name = "ryu" 2424version = "1.0.23" 2425source = "registry+https://github.com/rust-lang/crates.io-index" 2426checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 2427 2428[[package]] 2429name = "same-file" 2430version = "1.0.6" 2431source = "registry+https://github.com/rust-lang/crates.io-index" 2432checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2433dependencies = [ 2434 "winapi-util", 2435] 2436 2437[[package]] 2438name = "schannel" 2439version = "0.1.29" 2440source = "registry+https://github.com/rust-lang/crates.io-index" 2441checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 2442dependencies = [ 2443 "windows-sys 0.61.2", 2444] 2445 2446[[package]] 2447name = "scopeguard" 2448version = "1.2.0" 2449source = "registry+https://github.com/rust-lang/crates.io-index" 2450checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2451 2452[[package]] 2453name = "security-framework" 2454version = "3.7.0" 2455source = "registry+https://github.com/rust-lang/crates.io-index" 2456checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 2457dependencies = [ 2458 "bitflags 2.13.0", 2459 "core-foundation", 2460 "core-foundation-sys", 2461 "libc", 2462 "security-framework-sys", 2463] 2464 2465[[package]] 2466name = "security-framework-sys" 2467version = "2.17.0" 2468source = "registry+https://github.com/rust-lang/crates.io-index" 2469checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 2470dependencies = [ 2471 "core-foundation-sys", 2472 "libc", 2473] 2474 2475[[package]] 2476name = "serde" 2477version = "1.0.228" 2478source = "registry+https://github.com/rust-lang/crates.io-index" 2479checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 2480dependencies = [ 2481 "serde_core", 2482 "serde_derive", 2483] 2484 2485[[package]] 2486name = "serde_core" 2487version = "1.0.228" 2488source = "registry+https://github.com/rust-lang/crates.io-index" 2489checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 2490dependencies = [ 2491 "serde_derive", 2492] 2493 2494[[package]] 2495name = "serde_derive" 2496version = "1.0.228" 2497source = "registry+https://github.com/rust-lang/crates.io-index" 2498checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 2499dependencies = [ 2500 "proc-macro2", 2501 "quote", 2502 "syn", 2503] 2504 2505[[package]] 2506name = "serde_json" 2507version = "1.0.150" 2508source = "registry+https://github.com/rust-lang/crates.io-index" 2509checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" 2510dependencies = [ 2511 "itoa", 2512 "memchr", 2513 "serde", 2514 "serde_core", 2515 "zmij", 2516] 2517 2518[[package]] 2519name = "serde_repr" 2520version = "0.1.20" 2521source = "registry+https://github.com/rust-lang/crates.io-index" 2522checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 2523dependencies = [ 2524 "proc-macro2", 2525 "quote", 2526 "syn", 2527] 2528 2529[[package]] 2530name = "serde_spanned" 2531version = "0.6.9" 2532source = "registry+https://github.com/rust-lang/crates.io-index" 2533checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 2534dependencies = [ 2535 "serde", 2536] 2537 2538[[package]] 2539name = "serde_urlencoded" 2540version = "0.7.1" 2541source = "registry+https://github.com/rust-lang/crates.io-index" 2542checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2543dependencies = [ 2544 "form_urlencoded", 2545 "itoa", 2546 "ryu", 2547 "serde", 2548] 2549 2550[[package]] 2551name = "sharded-slab" 2552version = "0.1.7" 2553source = "registry+https://github.com/rust-lang/crates.io-index" 2554checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2555dependencies = [ 2556 "lazy_static", 2557] 2558 2559[[package]] 2560name = "shlex" 2561version = "1.3.0" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2564 2565[[package]] 2566name = "shlex" 2567version = "2.0.1" 2568source = "registry+https://github.com/rust-lang/crates.io-index" 2569checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" 2570 2571[[package]] 2572name = "signal-hook" 2573version = "0.3.18" 2574source = "registry+https://github.com/rust-lang/crates.io-index" 2575checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2" 2576dependencies = [ 2577 "libc", 2578 "signal-hook-registry", 2579] 2580 2581[[package]] 2582name = "signal-hook-mio" 2583version = "0.2.5" 2584source = "registry+https://github.com/rust-lang/crates.io-index" 2585checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc" 2586dependencies = [ 2587 "libc", 2588 "mio", 2589 "signal-hook", 2590] 2591 2592[[package]] 2593name = "signal-hook-registry" 2594version = "1.4.8" 2595source = "registry+https://github.com/rust-lang/crates.io-index" 2596checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 2597dependencies = [ 2598 "errno", 2599 "libc", 2600] 2601 2602[[package]] 2603name = "slab" 2604version = "0.4.12" 2605source = "registry+https://github.com/rust-lang/crates.io-index" 2606checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 2607 2608[[package]] 2609name = "smallvec" 2610version = "1.15.2" 2611source = "registry+https://github.com/rust-lang/crates.io-index" 2612checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" 2613 2614[[package]] 2615name = "socket2" 2616version = "0.5.10" 2617source = "registry+https://github.com/rust-lang/crates.io-index" 2618checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 2619dependencies = [ 2620 "libc", 2621 "windows-sys 0.52.0", 2622] 2623 2624[[package]] 2625name = "socket2" 2626version = "0.6.4" 2627source = "registry+https://github.com/rust-lang/crates.io-index" 2628checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51" 2629dependencies = [ 2630 "libc", 2631 "windows-sys 0.61.2", 2632] 2633 2634[[package]] 2635name = "spin" 2636version = "0.9.8" 2637source = "registry+https://github.com/rust-lang/crates.io-index" 2638checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2639dependencies = [ 2640 "lock_api", 2641] 2642 2643[[package]] 2644name = "stable_deref_trait" 2645version = "1.2.1" 2646source = "registry+https://github.com/rust-lang/crates.io-index" 2647checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 2648 2649[[package]] 2650name = "static_assertions" 2651version = "1.1.0" 2652source = "registry+https://github.com/rust-lang/crates.io-index" 2653checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2654 2655[[package]] 2656name = "strsim" 2657version = "0.11.1" 2658source = "registry+https://github.com/rust-lang/crates.io-index" 2659checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2660 2661[[package]] 2662name = "strum" 2663version = "0.26.3" 2664source = "registry+https://github.com/rust-lang/crates.io-index" 2665checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 2666dependencies = [ 2667 "strum_macros", 2668] 2669 2670[[package]] 2671name = "strum_macros" 2672version = "0.26.4" 2673source = "registry+https://github.com/rust-lang/crates.io-index" 2674checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 2675dependencies = [ 2676 "heck", 2677 "proc-macro2", 2678 "quote", 2679 "rustversion", 2680 "syn", 2681] 2682 2683[[package]] 2684name = "subtle" 2685version = "2.6.1" 2686source = "registry+https://github.com/rust-lang/crates.io-index" 2687checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2688 2689[[package]] 2690name = "syn" 2691version = "2.0.118" 2692source = "registry+https://github.com/rust-lang/crates.io-index" 2693checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422" 2694dependencies = [ 2695 "proc-macro2", 2696 "quote", 2697 "unicode-ident", 2698] 2699 2700[[package]] 2701name = "sync_wrapper" 2702version = "1.0.2" 2703source = "registry+https://github.com/rust-lang/crates.io-index" 2704checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 2705dependencies = [ 2706 "futures-core", 2707] 2708 2709[[package]] 2710name = "synstructure" 2711version = "0.13.2" 2712source = "registry+https://github.com/rust-lang/crates.io-index" 2713checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 2714dependencies = [ 2715 "proc-macro2", 2716 "quote", 2717 "syn", 2718] 2719 2720[[package]] 2721name = "tempfile" 2722version = "3.27.0" 2723source = "registry+https://github.com/rust-lang/crates.io-index" 2724checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 2725dependencies = [ 2726 "fastrand", 2727 "getrandom 0.4.3", 2728 "once_cell", 2729 "rustix 1.1.4", 2730 "windows-sys 0.61.2", 2731] 2732 2733[[package]] 2734name = "thiserror" 2735version = "1.0.69" 2736source = "registry+https://github.com/rust-lang/crates.io-index" 2737checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2738dependencies = [ 2739 "thiserror-impl 1.0.69", 2740] 2741 2742[[package]] 2743name = "thiserror" 2744version = "2.0.18" 2745source = "registry+https://github.com/rust-lang/crates.io-index" 2746checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 2747dependencies = [ 2748 "thiserror-impl 2.0.18", 2749] 2750 2751[[package]] 2752name = "thiserror-impl" 2753version = "1.0.69" 2754source = "registry+https://github.com/rust-lang/crates.io-index" 2755checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2756dependencies = [ 2757 "proc-macro2", 2758 "quote", 2759 "syn", 2760] 2761 2762[[package]] 2763name = "thiserror-impl" 2764version = "2.0.18" 2765source = "registry+https://github.com/rust-lang/crates.io-index" 2766checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 2767dependencies = [ 2768 "proc-macro2", 2769 "quote", 2770 "syn", 2771] 2772 2773[[package]] 2774name = "thread_local" 2775version = "1.1.9" 2776source = "registry+https://github.com/rust-lang/crates.io-index" 2777checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 2778dependencies = [ 2779 "cfg-if", 2780] 2781 2782[[package]] 2783name = "tinystr" 2784version = "0.8.3" 2785source = "registry+https://github.com/rust-lang/crates.io-index" 2786checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" 2787dependencies = [ 2788 "displaydoc", 2789 "zerovec", 2790] 2791 2792[[package]] 2793name = "tinyvec" 2794version = "1.11.0" 2795source = "registry+https://github.com/rust-lang/crates.io-index" 2796checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 2797dependencies = [ 2798 "tinyvec_macros", 2799] 2800 2801[[package]] 2802name = "tinyvec_macros" 2803version = "0.1.1" 2804source = "registry+https://github.com/rust-lang/crates.io-index" 2805checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2806 2807[[package]] 2808name = "tokio" 2809version = "1.52.3" 2810source = "registry+https://github.com/rust-lang/crates.io-index" 2811checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" 2812dependencies = [ 2813 "bytes", 2814 "libc", 2815 "mio", 2816 "parking_lot", 2817 "pin-project-lite", 2818 "signal-hook-registry", 2819 "socket2 0.6.4", 2820 "tokio-macros", 2821 "tracing", 2822 "windows-sys 0.61.2", 2823] 2824 2825[[package]] 2826name = "tokio-macros" 2827version = "2.7.0" 2828source = "registry+https://github.com/rust-lang/crates.io-index" 2829checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" 2830dependencies = [ 2831 "proc-macro2", 2832 "quote", 2833 "syn", 2834] 2835 2836[[package]] 2837name = "tokio-rustls" 2838version = "0.26.4" 2839source = "registry+https://github.com/rust-lang/crates.io-index" 2840checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 2841dependencies = [ 2842 "rustls", 2843 "tokio", 2844] 2845 2846[[package]] 2847name = "tokio-util" 2848version = "0.7.18" 2849source = "registry+https://github.com/rust-lang/crates.io-index" 2850checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 2851dependencies = [ 2852 "bytes", 2853 "futures-core", 2854 "futures-sink", 2855 "pin-project-lite", 2856 "tokio", 2857] 2858 2859[[package]] 2860name = "toml" 2861version = "0.8.23" 2862source = "registry+https://github.com/rust-lang/crates.io-index" 2863checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 2864dependencies = [ 2865 "serde", 2866 "serde_spanned", 2867 "toml_datetime 0.6.11", 2868 "toml_edit 0.22.27", 2869] 2870 2871[[package]] 2872name = "toml_datetime" 2873version = "0.6.11" 2874source = "registry+https://github.com/rust-lang/crates.io-index" 2875checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 2876dependencies = [ 2877 "serde", 2878] 2879 2880[[package]] 2881name = "toml_datetime" 2882version = "1.1.1+spec-1.1.0" 2883source = "registry+https://github.com/rust-lang/crates.io-index" 2884checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" 2885dependencies = [ 2886 "serde_core", 2887] 2888 2889[[package]] 2890name = "toml_edit" 2891version = "0.22.27" 2892source = "registry+https://github.com/rust-lang/crates.io-index" 2893checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 2894dependencies = [ 2895 "indexmap", 2896 "serde", 2897 "serde_spanned", 2898 "toml_datetime 0.6.11", 2899 "toml_write", 2900 "winnow 0.7.15", 2901] 2902 2903[[package]] 2904name = "toml_edit" 2905version = "0.25.12+spec-1.1.0" 2906source = "registry+https://github.com/rust-lang/crates.io-index" 2907checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7" 2908dependencies = [ 2909 "indexmap", 2910 "toml_datetime 1.1.1+spec-1.1.0", 2911 "toml_parser", 2912 "winnow 1.0.3", 2913] 2914 2915[[package]] 2916name = "toml_parser" 2917version = "1.1.2+spec-1.1.0" 2918source = "registry+https://github.com/rust-lang/crates.io-index" 2919checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" 2920dependencies = [ 2921 "winnow 1.0.3", 2922] 2923 2924[[package]] 2925name = "toml_write" 2926version = "0.1.2" 2927source = "registry+https://github.com/rust-lang/crates.io-index" 2928checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 2929 2930[[package]] 2931name = "tower" 2932version = "0.5.3" 2933source = "registry+https://github.com/rust-lang/crates.io-index" 2934checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 2935dependencies = [ 2936 "futures-core", 2937 "futures-util", 2938 "pin-project-lite", 2939 "sync_wrapper", 2940 "tokio", 2941 "tower-layer", 2942 "tower-service", 2943] 2944 2945[[package]] 2946name = "tower-http" 2947version = "0.6.11" 2948source = "registry+https://github.com/rust-lang/crates.io-index" 2949checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" 2950dependencies = [ 2951 "bitflags 2.13.0", 2952 "bytes", 2953 "futures-util", 2954 "http", 2955 "http-body", 2956 "pin-project-lite", 2957 "tower", 2958 "tower-layer", 2959 "tower-service", 2960 "url", 2961] 2962 2963[[package]] 2964name = "tower-layer" 2965version = "0.3.3" 2966source = "registry+https://github.com/rust-lang/crates.io-index" 2967checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 2968 2969[[package]] 2970name = "tower-service" 2971version = "0.3.3" 2972source = "registry+https://github.com/rust-lang/crates.io-index" 2973checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2974 2975[[package]] 2976name = "tracing" 2977version = "0.1.44" 2978source = "registry+https://github.com/rust-lang/crates.io-index" 2979checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 2980dependencies = [ 2981 "pin-project-lite", 2982 "tracing-attributes", 2983 "tracing-core", 2984] 2985 2986[[package]] 2987name = "tracing-attributes" 2988version = "0.1.31" 2989source = "registry+https://github.com/rust-lang/crates.io-index" 2990checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 2991dependencies = [ 2992 "proc-macro2", 2993 "quote", 2994 "syn", 2995] 2996 2997[[package]] 2998name = "tracing-core" 2999version = "0.1.36" 3000source = "registry+https://github.com/rust-lang/crates.io-index" 3001checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 3002dependencies = [ 3003 "once_cell", 3004 "valuable", 3005] 3006 3007[[package]] 3008name = "tracing-log" 3009version = "0.2.0" 3010source = "registry+https://github.com/rust-lang/crates.io-index" 3011checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3012dependencies = [ 3013 "log", 3014 "once_cell", 3015 "tracing-core", 3016] 3017 3018[[package]] 3019name = "tracing-subscriber" 3020version = "0.3.23" 3021source = "registry+https://github.com/rust-lang/crates.io-index" 3022checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 3023dependencies = [ 3024 "matchers", 3025 "nu-ansi-term", 3026 "once_cell", 3027 "regex-automata", 3028 "sharded-slab", 3029 "smallvec", 3030 "thread_local", 3031 "tracing", 3032 "tracing-core", 3033 "tracing-log", 3034] 3035 3036[[package]] 3037name = "trait-variant" 3038version = "0.1.2" 3039source = "registry+https://github.com/rust-lang/crates.io-index" 3040checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 3041dependencies = [ 3042 "proc-macro2", 3043 "quote", 3044 "syn", 3045] 3046 3047[[package]] 3048name = "try-lock" 3049version = "0.2.5" 3050source = "registry+https://github.com/rust-lang/crates.io-index" 3051checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3052 3053[[package]] 3054name = "uds_windows" 3055version = "1.2.1" 3056source = "registry+https://github.com/rust-lang/crates.io-index" 3057checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e" 3058dependencies = [ 3059 "memoffset", 3060 "tempfile", 3061 "windows-sys 0.61.2", 3062] 3063 3064[[package]] 3065name = "unicode-ident" 3066version = "1.0.24" 3067source = "registry+https://github.com/rust-lang/crates.io-index" 3068checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 3069 3070[[package]] 3071name = "unicode-segmentation" 3072version = "1.13.3" 3073source = "registry+https://github.com/rust-lang/crates.io-index" 3074checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" 3075 3076[[package]] 3077name = "unicode-truncate" 3078version = "1.1.0" 3079source = "registry+https://github.com/rust-lang/crates.io-index" 3080checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" 3081dependencies = [ 3082 "itertools", 3083 "unicode-segmentation", 3084 "unicode-width 0.1.14", 3085] 3086 3087[[package]] 3088name = "unicode-width" 3089version = "0.1.14" 3090source = "registry+https://github.com/rust-lang/crates.io-index" 3091checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 3092 3093[[package]] 3094name = "unicode-width" 3095version = "0.2.0" 3096source = "registry+https://github.com/rust-lang/crates.io-index" 3097checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" 3098 3099[[package]] 3100name = "untrusted" 3101version = "0.9.0" 3102source = "registry+https://github.com/rust-lang/crates.io-index" 3103checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3104 3105[[package]] 3106name = "url" 3107version = "2.5.8" 3108source = "registry+https://github.com/rust-lang/crates.io-index" 3109checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 3110dependencies = [ 3111 "form_urlencoded", 3112 "idna", 3113 "percent-encoding", 3114 "serde", 3115] 3116 3117[[package]] 3118name = "utf8_iter" 3119version = "1.0.4" 3120source = "registry+https://github.com/rust-lang/crates.io-index" 3121checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3122 3123[[package]] 3124name = "utf8parse" 3125version = "0.2.2" 3126source = "registry+https://github.com/rust-lang/crates.io-index" 3127checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3128 3129[[package]] 3130name = "uuid" 3131version = "1.23.4" 3132source = "registry+https://github.com/rust-lang/crates.io-index" 3133checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53" 3134dependencies = [ 3135 "getrandom 0.4.3", 3136 "js-sys", 3137 "serde_core", 3138 "wasm-bindgen", 3139] 3140 3141[[package]] 3142name = "valuable" 3143version = "0.1.1" 3144source = "registry+https://github.com/rust-lang/crates.io-index" 3145checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 3146 3147[[package]] 3148name = "walkdir" 3149version = "2.5.0" 3150source = "registry+https://github.com/rust-lang/crates.io-index" 3151checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3152dependencies = [ 3153 "same-file", 3154 "winapi-util", 3155] 3156 3157[[package]] 3158name = "want" 3159version = "0.3.1" 3160source = "registry+https://github.com/rust-lang/crates.io-index" 3161checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3162dependencies = [ 3163 "try-lock", 3164] 3165 3166[[package]] 3167name = "wasi" 3168version = "0.11.1+wasi-snapshot-preview1" 3169source = "registry+https://github.com/rust-lang/crates.io-index" 3170checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3171 3172[[package]] 3173name = "wasip2" 3174version = "1.0.4+wasi-0.2.12" 3175source = "registry+https://github.com/rust-lang/crates.io-index" 3176checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" 3177dependencies = [ 3178 "wit-bindgen", 3179] 3180 3181[[package]] 3182name = "wasite" 3183version = "0.1.0" 3184source = "registry+https://github.com/rust-lang/crates.io-index" 3185checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 3186 3187[[package]] 3188name = "wasm-bindgen" 3189version = "0.2.126" 3190source = "registry+https://github.com/rust-lang/crates.io-index" 3191checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" 3192dependencies = [ 3193 "cfg-if", 3194 "once_cell", 3195 "rustversion", 3196 "wasm-bindgen-macro", 3197 "wasm-bindgen-shared", 3198] 3199 3200[[package]] 3201name = "wasm-bindgen-futures" 3202version = "0.4.76" 3203source = "registry+https://github.com/rust-lang/crates.io-index" 3204checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" 3205dependencies = [ 3206 "js-sys", 3207 "wasm-bindgen", 3208] 3209 3210[[package]] 3211name = "wasm-bindgen-macro" 3212version = "0.2.126" 3213source = "registry+https://github.com/rust-lang/crates.io-index" 3214checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" 3215dependencies = [ 3216 "quote", 3217 "wasm-bindgen-macro-support", 3218] 3219 3220[[package]] 3221name = "wasm-bindgen-macro-support" 3222version = "0.2.126" 3223source = "registry+https://github.com/rust-lang/crates.io-index" 3224checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" 3225dependencies = [ 3226 "bumpalo", 3227 "proc-macro2", 3228 "quote", 3229 "syn", 3230 "wasm-bindgen-shared", 3231] 3232 3233[[package]] 3234name = "wasm-bindgen-shared" 3235version = "0.2.126" 3236source = "registry+https://github.com/rust-lang/crates.io-index" 3237checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" 3238dependencies = [ 3239 "unicode-ident", 3240] 3241 3242[[package]] 3243name = "wasm-streams" 3244version = "0.4.2" 3245source = "registry+https://github.com/rust-lang/crates.io-index" 3246checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 3247dependencies = [ 3248 "futures-util", 3249 "js-sys", 3250 "wasm-bindgen", 3251 "wasm-bindgen-futures", 3252 "web-sys", 3253] 3254 3255[[package]] 3256name = "web-sys" 3257version = "0.3.103" 3258source = "registry+https://github.com/rust-lang/crates.io-index" 3259checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" 3260dependencies = [ 3261 "js-sys", 3262 "wasm-bindgen", 3263] 3264 3265[[package]] 3266name = "web-time" 3267version = "1.1.0" 3268source = "registry+https://github.com/rust-lang/crates.io-index" 3269checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3270dependencies = [ 3271 "js-sys", 3272 "wasm-bindgen", 3273] 3274 3275[[package]] 3276name = "webpki-roots" 3277version = "1.0.8" 3278source = "registry+https://github.com/rust-lang/crates.io-index" 3279checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf" 3280dependencies = [ 3281 "rustls-pki-types", 3282] 3283 3284[[package]] 3285name = "which" 3286version = "4.4.2" 3287source = "registry+https://github.com/rust-lang/crates.io-index" 3288checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 3289dependencies = [ 3290 "either", 3291 "home", 3292 "once_cell", 3293 "rustix 0.38.44", 3294] 3295 3296[[package]] 3297name = "whoami" 3298version = "1.6.1" 3299source = "registry+https://github.com/rust-lang/crates.io-index" 3300checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 3301dependencies = [ 3302 "libredox", 3303 "wasite", 3304 "web-sys", 3305] 3306 3307[[package]] 3308name = "winapi" 3309version = "0.3.9" 3310source = "registry+https://github.com/rust-lang/crates.io-index" 3311checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3312dependencies = [ 3313 "winapi-i686-pc-windows-gnu", 3314 "winapi-x86_64-pc-windows-gnu", 3315] 3316 3317[[package]] 3318name = "winapi-i686-pc-windows-gnu" 3319version = "0.4.0" 3320source = "registry+https://github.com/rust-lang/crates.io-index" 3321checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3322 3323[[package]] 3324name = "winapi-util" 3325version = "0.1.11" 3326source = "registry+https://github.com/rust-lang/crates.io-index" 3327checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 3328dependencies = [ 3329 "windows-sys 0.61.2", 3330] 3331 3332[[package]] 3333name = "winapi-x86_64-pc-windows-gnu" 3334version = "0.4.0" 3335source = "registry+https://github.com/rust-lang/crates.io-index" 3336checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3337 3338[[package]] 3339name = "windows" 3340version = "0.54.0" 3341source = "registry+https://github.com/rust-lang/crates.io-index" 3342checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 3343dependencies = [ 3344 "windows-core 0.54.0", 3345 "windows-targets 0.52.6", 3346] 3347 3348[[package]] 3349name = "windows-core" 3350version = "0.54.0" 3351source = "registry+https://github.com/rust-lang/crates.io-index" 3352checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 3353dependencies = [ 3354 "windows-result 0.1.2", 3355 "windows-targets 0.52.6", 3356] 3357 3358[[package]] 3359name = "windows-core" 3360version = "0.62.2" 3361source = "registry+https://github.com/rust-lang/crates.io-index" 3362checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 3363dependencies = [ 3364 "windows-implement", 3365 "windows-interface", 3366 "windows-link", 3367 "windows-result 0.4.1", 3368 "windows-strings", 3369] 3370 3371[[package]] 3372name = "windows-implement" 3373version = "0.60.2" 3374source = "registry+https://github.com/rust-lang/crates.io-index" 3375checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 3376dependencies = [ 3377 "proc-macro2", 3378 "quote", 3379 "syn", 3380] 3381 3382[[package]] 3383name = "windows-interface" 3384version = "0.59.3" 3385source = "registry+https://github.com/rust-lang/crates.io-index" 3386checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 3387dependencies = [ 3388 "proc-macro2", 3389 "quote", 3390 "syn", 3391] 3392 3393[[package]] 3394name = "windows-link" 3395version = "0.2.1" 3396source = "registry+https://github.com/rust-lang/crates.io-index" 3397checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 3398 3399[[package]] 3400name = "windows-result" 3401version = "0.1.2" 3402source = "registry+https://github.com/rust-lang/crates.io-index" 3403checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 3404dependencies = [ 3405 "windows-targets 0.52.6", 3406] 3407 3408[[package]] 3409name = "windows-result" 3410version = "0.4.1" 3411source = "registry+https://github.com/rust-lang/crates.io-index" 3412checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 3413dependencies = [ 3414 "windows-link", 3415] 3416 3417[[package]] 3418name = "windows-strings" 3419version = "0.5.1" 3420source = "registry+https://github.com/rust-lang/crates.io-index" 3421checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 3422dependencies = [ 3423 "windows-link", 3424] 3425 3426[[package]] 3427name = "windows-sys" 3428version = "0.45.0" 3429source = "registry+https://github.com/rust-lang/crates.io-index" 3430checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3431dependencies = [ 3432 "windows-targets 0.42.2", 3433] 3434 3435[[package]] 3436name = "windows-sys" 3437version = "0.48.0" 3438source = "registry+https://github.com/rust-lang/crates.io-index" 3439checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3440dependencies = [ 3441 "windows-targets 0.48.5", 3442] 3443 3444[[package]] 3445name = "windows-sys" 3446version = "0.52.0" 3447source = "registry+https://github.com/rust-lang/crates.io-index" 3448checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3449dependencies = [ 3450 "windows-targets 0.52.6", 3451] 3452 3453[[package]] 3454name = "windows-sys" 3455version = "0.59.0" 3456source = "registry+https://github.com/rust-lang/crates.io-index" 3457checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3458dependencies = [ 3459 "windows-targets 0.52.6", 3460] 3461 3462[[package]] 3463name = "windows-sys" 3464version = "0.60.2" 3465source = "registry+https://github.com/rust-lang/crates.io-index" 3466checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 3467dependencies = [ 3468 "windows-targets 0.53.5", 3469] 3470 3471[[package]] 3472name = "windows-sys" 3473version = "0.61.2" 3474source = "registry+https://github.com/rust-lang/crates.io-index" 3475checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 3476dependencies = [ 3477 "windows-link", 3478] 3479 3480[[package]] 3481name = "windows-targets" 3482version = "0.42.2" 3483source = "registry+https://github.com/rust-lang/crates.io-index" 3484checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3485dependencies = [ 3486 "windows_aarch64_gnullvm 0.42.2", 3487 "windows_aarch64_msvc 0.42.2", 3488 "windows_i686_gnu 0.42.2", 3489 "windows_i686_msvc 0.42.2", 3490 "windows_x86_64_gnu 0.42.2", 3491 "windows_x86_64_gnullvm 0.42.2", 3492 "windows_x86_64_msvc 0.42.2", 3493] 3494 3495[[package]] 3496name = "windows-targets" 3497version = "0.48.5" 3498source = "registry+https://github.com/rust-lang/crates.io-index" 3499checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3500dependencies = [ 3501 "windows_aarch64_gnullvm 0.48.5", 3502 "windows_aarch64_msvc 0.48.5", 3503 "windows_i686_gnu 0.48.5", 3504 "windows_i686_msvc 0.48.5", 3505 "windows_x86_64_gnu 0.48.5", 3506 "windows_x86_64_gnullvm 0.48.5", 3507 "windows_x86_64_msvc 0.48.5", 3508] 3509 3510[[package]] 3511name = "windows-targets" 3512version = "0.52.6" 3513source = "registry+https://github.com/rust-lang/crates.io-index" 3514checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3515dependencies = [ 3516 "windows_aarch64_gnullvm 0.52.6", 3517 "windows_aarch64_msvc 0.52.6", 3518 "windows_i686_gnu 0.52.6", 3519 "windows_i686_gnullvm 0.52.6", 3520 "windows_i686_msvc 0.52.6", 3521 "windows_x86_64_gnu 0.52.6", 3522 "windows_x86_64_gnullvm 0.52.6", 3523 "windows_x86_64_msvc 0.52.6", 3524] 3525 3526[[package]] 3527name = "windows-targets" 3528version = "0.53.5" 3529source = "registry+https://github.com/rust-lang/crates.io-index" 3530checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 3531dependencies = [ 3532 "windows-link", 3533 "windows_aarch64_gnullvm 0.53.1", 3534 "windows_aarch64_msvc 0.53.1", 3535 "windows_i686_gnu 0.53.1", 3536 "windows_i686_gnullvm 0.53.1", 3537 "windows_i686_msvc 0.53.1", 3538 "windows_x86_64_gnu 0.53.1", 3539 "windows_x86_64_gnullvm 0.53.1", 3540 "windows_x86_64_msvc 0.53.1", 3541] 3542 3543[[package]] 3544name = "windows_aarch64_gnullvm" 3545version = "0.42.2" 3546source = "registry+https://github.com/rust-lang/crates.io-index" 3547checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3548 3549[[package]] 3550name = "windows_aarch64_gnullvm" 3551version = "0.48.5" 3552source = "registry+https://github.com/rust-lang/crates.io-index" 3553checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3554 3555[[package]] 3556name = "windows_aarch64_gnullvm" 3557version = "0.52.6" 3558source = "registry+https://github.com/rust-lang/crates.io-index" 3559checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3560 3561[[package]] 3562name = "windows_aarch64_gnullvm" 3563version = "0.53.1" 3564source = "registry+https://github.com/rust-lang/crates.io-index" 3565checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 3566 3567[[package]] 3568name = "windows_aarch64_msvc" 3569version = "0.42.2" 3570source = "registry+https://github.com/rust-lang/crates.io-index" 3571checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3572 3573[[package]] 3574name = "windows_aarch64_msvc" 3575version = "0.48.5" 3576source = "registry+https://github.com/rust-lang/crates.io-index" 3577checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3578 3579[[package]] 3580name = "windows_aarch64_msvc" 3581version = "0.52.6" 3582source = "registry+https://github.com/rust-lang/crates.io-index" 3583checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3584 3585[[package]] 3586name = "windows_aarch64_msvc" 3587version = "0.53.1" 3588source = "registry+https://github.com/rust-lang/crates.io-index" 3589checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 3590 3591[[package]] 3592name = "windows_i686_gnu" 3593version = "0.42.2" 3594source = "registry+https://github.com/rust-lang/crates.io-index" 3595checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3596 3597[[package]] 3598name = "windows_i686_gnu" 3599version = "0.48.5" 3600source = "registry+https://github.com/rust-lang/crates.io-index" 3601checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3602 3603[[package]] 3604name = "windows_i686_gnu" 3605version = "0.52.6" 3606source = "registry+https://github.com/rust-lang/crates.io-index" 3607checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3608 3609[[package]] 3610name = "windows_i686_gnu" 3611version = "0.53.1" 3612source = "registry+https://github.com/rust-lang/crates.io-index" 3613checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 3614 3615[[package]] 3616name = "windows_i686_gnullvm" 3617version = "0.52.6" 3618source = "registry+https://github.com/rust-lang/crates.io-index" 3619checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3620 3621[[package]] 3622name = "windows_i686_gnullvm" 3623version = "0.53.1" 3624source = "registry+https://github.com/rust-lang/crates.io-index" 3625checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 3626 3627[[package]] 3628name = "windows_i686_msvc" 3629version = "0.42.2" 3630source = "registry+https://github.com/rust-lang/crates.io-index" 3631checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3632 3633[[package]] 3634name = "windows_i686_msvc" 3635version = "0.48.5" 3636source = "registry+https://github.com/rust-lang/crates.io-index" 3637checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3638 3639[[package]] 3640name = "windows_i686_msvc" 3641version = "0.52.6" 3642source = "registry+https://github.com/rust-lang/crates.io-index" 3643checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3644 3645[[package]] 3646name = "windows_i686_msvc" 3647version = "0.53.1" 3648source = "registry+https://github.com/rust-lang/crates.io-index" 3649checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 3650 3651[[package]] 3652name = "windows_x86_64_gnu" 3653version = "0.42.2" 3654source = "registry+https://github.com/rust-lang/crates.io-index" 3655checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3656 3657[[package]] 3658name = "windows_x86_64_gnu" 3659version = "0.48.5" 3660source = "registry+https://github.com/rust-lang/crates.io-index" 3661checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3662 3663[[package]] 3664name = "windows_x86_64_gnu" 3665version = "0.52.6" 3666source = "registry+https://github.com/rust-lang/crates.io-index" 3667checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3668 3669[[package]] 3670name = "windows_x86_64_gnu" 3671version = "0.53.1" 3672source = "registry+https://github.com/rust-lang/crates.io-index" 3673checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 3674 3675[[package]] 3676name = "windows_x86_64_gnullvm" 3677version = "0.42.2" 3678source = "registry+https://github.com/rust-lang/crates.io-index" 3679checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3680 3681[[package]] 3682name = "windows_x86_64_gnullvm" 3683version = "0.48.5" 3684source = "registry+https://github.com/rust-lang/crates.io-index" 3685checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3686 3687[[package]] 3688name = "windows_x86_64_gnullvm" 3689version = "0.52.6" 3690source = "registry+https://github.com/rust-lang/crates.io-index" 3691checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3692 3693[[package]] 3694name = "windows_x86_64_gnullvm" 3695version = "0.53.1" 3696source = "registry+https://github.com/rust-lang/crates.io-index" 3697checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 3698 3699[[package]] 3700name = "windows_x86_64_msvc" 3701version = "0.42.2" 3702source = "registry+https://github.com/rust-lang/crates.io-index" 3703checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3704 3705[[package]] 3706name = "windows_x86_64_msvc" 3707version = "0.48.5" 3708source = "registry+https://github.com/rust-lang/crates.io-index" 3709checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3710 3711[[package]] 3712name = "windows_x86_64_msvc" 3713version = "0.52.6" 3714source = "registry+https://github.com/rust-lang/crates.io-index" 3715checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3716 3717[[package]] 3718name = "windows_x86_64_msvc" 3719version = "0.53.1" 3720source = "registry+https://github.com/rust-lang/crates.io-index" 3721checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 3722 3723[[package]] 3724name = "winnow" 3725version = "0.7.15" 3726source = "registry+https://github.com/rust-lang/crates.io-index" 3727checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" 3728dependencies = [ 3729 "memchr", 3730] 3731 3732[[package]] 3733name = "winnow" 3734version = "1.0.3" 3735source = "registry+https://github.com/rust-lang/crates.io-index" 3736checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" 3737dependencies = [ 3738 "memchr", 3739] 3740 3741[[package]] 3742name = "wit-bindgen" 3743version = "0.57.1" 3744source = "registry+https://github.com/rust-lang/crates.io-index" 3745checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" 3746 3747[[package]] 3748name = "writeable" 3749version = "0.6.3" 3750source = "registry+https://github.com/rust-lang/crates.io-index" 3751checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" 3752 3753[[package]] 3754name = "yoke" 3755version = "0.8.3" 3756source = "registry+https://github.com/rust-lang/crates.io-index" 3757checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" 3758dependencies = [ 3759 "stable_deref_trait", 3760 "yoke-derive", 3761 "zerofrom", 3762] 3763 3764[[package]] 3765name = "yoke-derive" 3766version = "0.8.2" 3767source = "registry+https://github.com/rust-lang/crates.io-index" 3768checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" 3769dependencies = [ 3770 "proc-macro2", 3771 "quote", 3772 "syn", 3773 "synstructure", 3774] 3775 3776[[package]] 3777name = "zbus" 3778version = "5.17.0" 3779source = "registry+https://github.com/rust-lang/crates.io-index" 3780checksum = "a28b97f866896a4be7aefd2b5a8e01bb6773d19a775d54ab28b4d094b9a4480e" 3781dependencies = [ 3782 "async-broadcast", 3783 "async-executor", 3784 "async-io", 3785 "async-lock", 3786 "async-process", 3787 "async-recursion", 3788 "async-task", 3789 "async-trait", 3790 "blocking", 3791 "enumflags2", 3792 "event-listener", 3793 "futures-core", 3794 "futures-lite", 3795 "hex", 3796 "libc", 3797 "ordered-stream", 3798 "rustix 1.1.4", 3799 "serde", 3800 "serde_repr", 3801 "tokio", 3802 "tracing", 3803 "uds_windows", 3804 "uuid", 3805 "windows-sys 0.61.2", 3806 "winnow 1.0.3", 3807 "zbus_macros", 3808 "zbus_names", 3809 "zvariant", 3810] 3811 3812[[package]] 3813name = "zbus_macros" 3814version = "5.17.0" 3815source = "registry+https://github.com/rust-lang/crates.io-index" 3816checksum = "5e05ad887425eecf5e8384dc2406a4a9313eb73468712fc1cdea362eb4fe0469" 3817dependencies = [ 3818 "proc-macro-crate", 3819 "proc-macro2", 3820 "quote", 3821 "syn", 3822 "zbus_names", 3823 "zvariant", 3824 "zvariant_utils", 3825] 3826 3827[[package]] 3828name = "zbus_names" 3829version = "4.3.3" 3830source = "registry+https://github.com/rust-lang/crates.io-index" 3831checksum = "1039ca249fee9559680f3a9f05b55e0761fee51af4f6c1e7d8c1f31e549721d2" 3832dependencies = [ 3833 "serde", 3834 "winnow 1.0.3", 3835 "zvariant", 3836] 3837 3838[[package]] 3839name = "zerocopy" 3840version = "0.8.52" 3841source = "registry+https://github.com/rust-lang/crates.io-index" 3842checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f" 3843dependencies = [ 3844 "zerocopy-derive", 3845] 3846 3847[[package]] 3848name = "zerocopy-derive" 3849version = "0.8.52" 3850source = "registry+https://github.com/rust-lang/crates.io-index" 3851checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930" 3852dependencies = [ 3853 "proc-macro2", 3854 "quote", 3855 "syn", 3856] 3857 3858[[package]] 3859name = "zerofrom" 3860version = "0.1.8" 3861source = "registry+https://github.com/rust-lang/crates.io-index" 3862checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" 3863dependencies = [ 3864 "zerofrom-derive", 3865] 3866 3867[[package]] 3868name = "zerofrom-derive" 3869version = "0.1.7" 3870source = "registry+https://github.com/rust-lang/crates.io-index" 3871checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" 3872dependencies = [ 3873 "proc-macro2", 3874 "quote", 3875 "syn", 3876 "synstructure", 3877] 3878 3879[[package]] 3880name = "zeroize" 3881version = "1.9.0" 3882source = "registry+https://github.com/rust-lang/crates.io-index" 3883checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" 3884 3885[[package]] 3886name = "zerotrie" 3887version = "0.2.4" 3888source = "registry+https://github.com/rust-lang/crates.io-index" 3889checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" 3890dependencies = [ 3891 "displaydoc", 3892 "yoke", 3893 "zerofrom", 3894] 3895 3896[[package]] 3897name = "zerovec" 3898version = "0.11.6" 3899source = "registry+https://github.com/rust-lang/crates.io-index" 3900checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" 3901dependencies = [ 3902 "yoke", 3903 "zerofrom", 3904 "zerovec-derive", 3905] 3906 3907[[package]] 3908name = "zerovec-derive" 3909version = "0.11.3" 3910source = "registry+https://github.com/rust-lang/crates.io-index" 3911checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" 3912dependencies = [ 3913 "proc-macro2", 3914 "quote", 3915 "syn", 3916] 3917 3918[[package]] 3919name = "zmij" 3920version = "1.0.21" 3921source = "registry+https://github.com/rust-lang/crates.io-index" 3922checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 3923 3924[[package]] 3925name = "zvariant" 3926version = "5.13.0" 3927source = "registry+https://github.com/rust-lang/crates.io-index" 3928checksum = "7cf057bb00bf5c9ad77abb6147b0ca4818236a1858416e9d988e40d6322fefa7" 3929dependencies = [ 3930 "endi", 3931 "enumflags2", 3932 "serde", 3933 "winnow 1.0.3", 3934 "zvariant_derive", 3935 "zvariant_utils", 3936] 3937 3938[[package]] 3939name = "zvariant_derive" 3940version = "5.13.0" 3941source = "registry+https://github.com/rust-lang/crates.io-index" 3942checksum = "8118ca6bda77bfc0ab51d660db0c955f2505eef854c9a449435bccb616933b31" 3943dependencies = [ 3944 "proc-macro-crate", 3945 "proc-macro2", 3946 "quote", 3947 "syn", 3948 "zvariant_utils", 3949] 3950 3951[[package]] 3952name = "zvariant_utils" 3953version = "3.5.0" 3954source = "registry+https://github.com/rust-lang/crates.io-index" 3955checksum = "90cb9383f9b45290407a1258b202d3f8f01db719eb60b4e4055c6375af4fc7c7" 3956dependencies = [ 3957 "proc-macro2", 3958 "quote", 3959 "serde", 3960 "syn", 3961 "winnow 1.0.3", 3962]