Browse and listen to thousands of radio stations across the globe right from your terminal ๐ŸŒŽ ๐Ÿ“ป ๐ŸŽตโœจ
radio rust tokio web-radio command-line-tool tui
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "addr2line" 7version = "0.24.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.0" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 20[[package]] 21name = "aead" 22version = "0.3.2" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" 25dependencies = [ 26 "generic-array", 27] 28 29[[package]] 30name = "aes" 31version = "0.6.0" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" 34dependencies = [ 35 "aes-soft", 36 "aesni", 37 "cipher", 38] 39 40[[package]] 41name = "aes-gcm" 42version = "0.8.0" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da" 45dependencies = [ 46 "aead", 47 "aes", 48 "cipher", 49 "ctr", 50 "ghash", 51 "subtle", 52] 53 54[[package]] 55name = "aes-soft" 56version = "0.6.4" 57source = "registry+https://github.com/rust-lang/crates.io-index" 58checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" 59dependencies = [ 60 "cipher", 61 "opaque-debug", 62] 63 64[[package]] 65name = "aesni" 66version = "0.10.0" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" 69dependencies = [ 70 "cipher", 71 "opaque-debug", 72] 73 74[[package]] 75name = "aho-corasick" 76version = "1.1.3" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 79dependencies = [ 80 "memchr", 81] 82 83[[package]] 84name = "allocator-api2" 85version = "0.2.21" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 88 89[[package]] 90name = "alsa" 91version = "0.6.0" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b" 94dependencies = [ 95 "alsa-sys", 96 "bitflags 1.3.2", 97 "libc", 98 "nix", 99] 100 101[[package]] 102name = "alsa-sys" 103version = "0.3.1" 104source = "registry+https://github.com/rust-lang/crates.io-index" 105checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527" 106dependencies = [ 107 "libc", 108 "pkg-config", 109] 110 111[[package]] 112name = "android-tzdata" 113version = "0.1.1" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 116 117[[package]] 118name = "android_system_properties" 119version = "0.1.5" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 122dependencies = [ 123 "libc", 124] 125 126[[package]] 127name = "anyhow" 128version = "1.0.95" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" 131 132[[package]] 133name = "arrayvec" 134version = "0.5.2" 135source = "registry+https://github.com/rust-lang/crates.io-index" 136checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 137 138[[package]] 139name = "arrayvec" 140version = "0.7.6" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 143 144[[package]] 145name = "async-attributes" 146version = "1.1.2" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5" 149dependencies = [ 150 "quote", 151 "syn 1.0.109", 152] 153 154[[package]] 155name = "async-channel" 156version = "1.9.0" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 159dependencies = [ 160 "concurrent-queue", 161 "event-listener 2.5.3", 162 "futures-core", 163] 164 165[[package]] 166name = "async-channel" 167version = "2.3.1" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 170dependencies = [ 171 "concurrent-queue", 172 "event-listener-strategy", 173 "futures-core", 174 "pin-project-lite", 175] 176 177[[package]] 178name = "async-dup" 179version = "1.2.4" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "7c2886ab563af5038f79ec016dd7b87947ed138b794e8dd64992962c9cca0411" 182dependencies = [ 183 "async-lock 3.4.0", 184 "futures-io", 185] 186 187[[package]] 188name = "async-executor" 189version = "1.13.1" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" 192dependencies = [ 193 "async-task", 194 "concurrent-queue", 195 "fastrand 2.3.0", 196 "futures-lite 2.6.0", 197 "slab", 198] 199 200[[package]] 201name = "async-global-executor" 202version = "2.4.1" 203source = "registry+https://github.com/rust-lang/crates.io-index" 204checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 205dependencies = [ 206 "async-channel 2.3.1", 207 "async-executor", 208 "async-io 2.4.0", 209 "async-lock 3.4.0", 210 "blocking", 211 "futures-lite 2.6.0", 212 "once_cell", 213 "tokio", 214] 215 216[[package]] 217name = "async-h1" 218version = "2.3.4" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "5d1d1dae8cb2c4258a79d6ed088b7fb9b4763bf4e9b22d040779761e046a2971" 221dependencies = [ 222 "async-channel 1.9.0", 223 "async-dup", 224 "async-global-executor", 225 "async-io 1.13.0", 226 "futures-lite 1.13.0", 227 "http-types", 228 "httparse", 229 "log", 230 "pin-project", 231] 232 233[[package]] 234name = "async-io" 235version = "1.13.0" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 238dependencies = [ 239 "async-lock 2.8.0", 240 "autocfg", 241 "cfg-if", 242 "concurrent-queue", 243 "futures-lite 1.13.0", 244 "log", 245 "parking", 246 "polling 2.8.0", 247 "rustix 0.37.28", 248 "slab", 249 "socket2 0.4.10", 250 "waker-fn", 251] 252 253[[package]] 254name = "async-io" 255version = "2.4.0" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" 258dependencies = [ 259 "async-lock 3.4.0", 260 "cfg-if", 261 "concurrent-queue", 262 "futures-io", 263 "futures-lite 2.6.0", 264 "parking", 265 "polling 3.7.4", 266 "rustix 0.38.44", 267 "slab", 268 "tracing", 269 "windows-sys 0.59.0", 270] 271 272[[package]] 273name = "async-lock" 274version = "2.8.0" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 277dependencies = [ 278 "event-listener 2.5.3", 279] 280 281[[package]] 282name = "async-lock" 283version = "3.4.0" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 286dependencies = [ 287 "event-listener 5.4.0", 288 "event-listener-strategy", 289 "pin-project-lite", 290] 291 292[[package]] 293name = "async-process" 294version = "2.3.0" 295source = "registry+https://github.com/rust-lang/crates.io-index" 296checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb" 297dependencies = [ 298 "async-channel 2.3.1", 299 "async-io 2.4.0", 300 "async-lock 3.4.0", 301 "async-signal", 302 "async-task", 303 "blocking", 304 "cfg-if", 305 "event-listener 5.4.0", 306 "futures-lite 2.6.0", 307 "rustix 0.38.44", 308 "tracing", 309] 310 311[[package]] 312name = "async-signal" 313version = "0.2.10" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" 316dependencies = [ 317 "async-io 2.4.0", 318 "async-lock 3.4.0", 319 "atomic-waker", 320 "cfg-if", 321 "futures-core", 322 "futures-io", 323 "rustix 0.38.44", 324 "signal-hook-registry", 325 "slab", 326 "windows-sys 0.59.0", 327] 328 329[[package]] 330name = "async-std" 331version = "1.13.0" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615" 334dependencies = [ 335 "async-attributes", 336 "async-channel 1.9.0", 337 "async-global-executor", 338 "async-io 2.4.0", 339 "async-lock 3.4.0", 340 "async-process", 341 "crossbeam-utils", 342 "futures-channel", 343 "futures-core", 344 "futures-io", 345 "futures-lite 2.6.0", 346 "gloo-timers", 347 "kv-log-macro", 348 "log", 349 "memchr", 350 "once_cell", 351 "pin-project-lite", 352 "pin-utils", 353 "slab", 354 "wasm-bindgen-futures", 355] 356 357[[package]] 358name = "async-std-resolver" 359version = "0.24.2" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "fa5ee46ec0c518414838d2fdc7dd18f6ba7d934b6e728005c958621da450682d" 362dependencies = [ 363 "async-std", 364 "async-trait", 365 "futures-io", 366 "futures-util", 367 "hickory-resolver", 368 "pin-utils", 369 "socket2 0.5.8", 370] 371 372[[package]] 373name = "async-stream" 374version = "0.3.6" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" 377dependencies = [ 378 "async-stream-impl", 379 "futures-core", 380 "pin-project-lite", 381] 382 383[[package]] 384name = "async-stream-impl" 385version = "0.3.6" 386source = "registry+https://github.com/rust-lang/crates.io-index" 387checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" 388dependencies = [ 389 "proc-macro2", 390 "quote", 391 "syn 2.0.96", 392] 393 394[[package]] 395name = "async-task" 396version = "4.7.1" 397source = "registry+https://github.com/rust-lang/crates.io-index" 398checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 399 400[[package]] 401name = "async-tls" 402version = "0.10.0" 403source = "registry+https://github.com/rust-lang/crates.io-index" 404checksum = "d85a97c4a0ecce878efd3f945f119c78a646d8975340bca0398f9bb05c30cc52" 405dependencies = [ 406 "futures-core", 407 "futures-io", 408 "rustls 0.18.1", 409 "webpki", 410 "webpki-roots 0.20.0", 411] 412 413[[package]] 414name = "async-trait" 415version = "0.1.85" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056" 418dependencies = [ 419 "proc-macro2", 420 "quote", 421 "syn 2.0.96", 422] 423 424[[package]] 425name = "atomic-waker" 426version = "1.1.2" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 429 430[[package]] 431name = "atty" 432version = "0.2.14" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 435dependencies = [ 436 "hermit-abi 0.1.19", 437 "libc", 438 "winapi", 439] 440 441[[package]] 442name = "autocfg" 443version = "1.4.0" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 446 447[[package]] 448name = "axum" 449version = "0.7.9" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" 452dependencies = [ 453 "async-trait", 454 "axum-core", 455 "bytes", 456 "futures-util", 457 "http 1.2.0", 458 "http-body 1.0.1", 459 "http-body-util", 460 "itoa", 461 "matchit", 462 "memchr", 463 "mime", 464 "percent-encoding 2.3.1", 465 "pin-project-lite", 466 "rustversion", 467 "serde", 468 "sync_wrapper 1.0.2", 469 "tower 0.5.2", 470 "tower-layer", 471 "tower-service", 472] 473 474[[package]] 475name = "axum-core" 476version = "0.4.5" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" 479dependencies = [ 480 "async-trait", 481 "bytes", 482 "futures-util", 483 "http 1.2.0", 484 "http-body 1.0.1", 485 "http-body-util", 486 "mime", 487 "pin-project-lite", 488 "rustversion", 489 "sync_wrapper 1.0.2", 490 "tower-layer", 491 "tower-service", 492] 493 494[[package]] 495name = "backtrace" 496version = "0.3.74" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 499dependencies = [ 500 "addr2line", 501 "cfg-if", 502 "libc", 503 "miniz_oxide", 504 "object", 505 "rustc-demangle", 506 "windows-targets 0.52.6", 507] 508 509[[package]] 510name = "base-x" 511version = "0.2.11" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 514 515[[package]] 516name = "base64" 517version = "0.12.3" 518source = "registry+https://github.com/rust-lang/crates.io-index" 519checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 520 521[[package]] 522name = "base64" 523version = "0.13.1" 524source = "registry+https://github.com/rust-lang/crates.io-index" 525checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 526 527[[package]] 528name = "base64" 529version = "0.21.7" 530source = "registry+https://github.com/rust-lang/crates.io-index" 531checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 532 533[[package]] 534name = "base64" 535version = "0.22.1" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 538 539[[package]] 540name = "bindgen" 541version = "0.70.1" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f" 544dependencies = [ 545 "bitflags 2.8.0", 546 "cexpr", 547 "clang-sys", 548 "itertools 0.13.0", 549 "proc-macro2", 550 "quote", 551 "regex", 552 "rustc-hash", 553 "shlex", 554 "syn 2.0.96", 555] 556 557[[package]] 558name = "bitflags" 559version = "1.3.2" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 562 563[[package]] 564name = "bitflags" 565version = "2.8.0" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" 568 569[[package]] 570name = "block-buffer" 571version = "0.9.0" 572source = "registry+https://github.com/rust-lang/crates.io-index" 573checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 574dependencies = [ 575 "generic-array", 576] 577 578[[package]] 579name = "blocking" 580version = "1.6.1" 581source = "registry+https://github.com/rust-lang/crates.io-index" 582checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 583dependencies = [ 584 "async-channel 2.3.1", 585 "async-task", 586 "futures-io", 587 "futures-lite 2.6.0", 588 "piper", 589] 590 591[[package]] 592name = "bumpalo" 593version = "3.16.0" 594source = "registry+https://github.com/rust-lang/crates.io-index" 595checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 596 597[[package]] 598name = "bytemuck" 599version = "1.21.0" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" 602 603[[package]] 604name = "byteorder" 605version = "1.5.0" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 608 609[[package]] 610name = "bytes" 611version = "1.9.0" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" 614 615[[package]] 616name = "cassowary" 617version = "0.3.0" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" 620 621[[package]] 622name = "castaway" 623version = "0.2.3" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5" 626dependencies = [ 627 "rustversion", 628] 629 630[[package]] 631name = "cc" 632version = "1.2.10" 633source = "registry+https://github.com/rust-lang/crates.io-index" 634checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" 635dependencies = [ 636 "jobserver", 637 "libc", 638 "shlex", 639] 640 641[[package]] 642name = "cesu8" 643version = "1.1.0" 644source = "registry+https://github.com/rust-lang/crates.io-index" 645checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 646 647[[package]] 648name = "cexpr" 649version = "0.6.0" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 652dependencies = [ 653 "nom 7.1.3", 654] 655 656[[package]] 657name = "cfg-if" 658version = "1.0.0" 659source = "registry+https://github.com/rust-lang/crates.io-index" 660checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 661 662[[package]] 663name = "chrono" 664version = "0.4.39" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" 667dependencies = [ 668 "android-tzdata", 669 "iana-time-zone", 670 "js-sys", 671 "num-traits", 672 "serde", 673 "wasm-bindgen", 674 "windows-targets 0.52.6", 675] 676 677[[package]] 678name = "cipher" 679version = "0.2.5" 680source = "registry+https://github.com/rust-lang/crates.io-index" 681checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" 682dependencies = [ 683 "generic-array", 684] 685 686[[package]] 687name = "clang-sys" 688version = "1.8.1" 689source = "registry+https://github.com/rust-lang/crates.io-index" 690checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 691dependencies = [ 692 "glob", 693 "libc", 694 "libloading", 695] 696 697[[package]] 698name = "clap" 699version = "3.2.25" 700source = "registry+https://github.com/rust-lang/crates.io-index" 701checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 702dependencies = [ 703 "atty", 704 "bitflags 1.3.2", 705 "clap_lex", 706 "indexmap 1.9.3", 707 "strsim", 708 "termcolor", 709 "textwrap", 710] 711 712[[package]] 713name = "clap_lex" 714version = "0.2.4" 715source = "registry+https://github.com/rust-lang/crates.io-index" 716checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 717dependencies = [ 718 "os_str_bytes", 719] 720 721[[package]] 722name = "claxon" 723version = "0.4.3" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "4bfbf56724aa9eca8afa4fcfadeb479e722935bb2a0900c2d37e0cc477af0688" 726 727[[package]] 728name = "combine" 729version = "4.6.7" 730source = "registry+https://github.com/rust-lang/crates.io-index" 731checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 732dependencies = [ 733 "bytes", 734 "memchr", 735] 736 737[[package]] 738name = "compact_str" 739version = "0.7.1" 740source = "registry+https://github.com/rust-lang/crates.io-index" 741checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f" 742dependencies = [ 743 "castaway", 744 "cfg-if", 745 "itoa", 746 "ryu", 747 "static_assertions", 748] 749 750[[package]] 751name = "concurrent-queue" 752version = "2.5.0" 753source = "registry+https://github.com/rust-lang/crates.io-index" 754checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 755dependencies = [ 756 "crossbeam-utils", 757] 758 759[[package]] 760name = "config" 761version = "0.10.1" 762source = "registry+https://github.com/rust-lang/crates.io-index" 763checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3" 764dependencies = [ 765 "lazy_static", 766 "nom 5.1.3", 767 "serde", 768] 769 770[[package]] 771name = "const_fn" 772version = "0.4.11" 773source = "registry+https://github.com/rust-lang/crates.io-index" 774checksum = "2f8a2ca5ac02d09563609681103aada9e1777d54fc57a5acd7a41404f9c93b6e" 775 776[[package]] 777name = "convert_case" 778version = "0.4.0" 779source = "registry+https://github.com/rust-lang/crates.io-index" 780checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 781 782[[package]] 783name = "cookie" 784version = "0.14.4" 785source = "registry+https://github.com/rust-lang/crates.io-index" 786checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951" 787dependencies = [ 788 "aes-gcm", 789 "base64 0.13.1", 790 "hkdf", 791 "hmac", 792 "percent-encoding 2.3.1", 793 "rand 0.8.5", 794 "sha2", 795 "time", 796 "version_check", 797] 798 799[[package]] 800name = "core-foundation" 801version = "0.9.4" 802source = "registry+https://github.com/rust-lang/crates.io-index" 803checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 804dependencies = [ 805 "core-foundation-sys", 806 "libc", 807] 808 809[[package]] 810name = "core-foundation-sys" 811version = "0.8.7" 812source = "registry+https://github.com/rust-lang/crates.io-index" 813checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 814 815[[package]] 816name = "coreaudio-rs" 817version = "0.10.0" 818source = "registry+https://github.com/rust-lang/crates.io-index" 819checksum = "11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88" 820dependencies = [ 821 "bitflags 1.3.2", 822 "coreaudio-sys", 823] 824 825[[package]] 826name = "coreaudio-sys" 827version = "0.2.16" 828source = "registry+https://github.com/rust-lang/crates.io-index" 829checksum = "2ce857aa0b77d77287acc1ac3e37a05a8c95a2af3647d23b15f263bdaeb7562b" 830dependencies = [ 831 "bindgen", 832] 833 834[[package]] 835name = "cpal" 836version = "0.14.2" 837source = "registry+https://github.com/rust-lang/crates.io-index" 838checksum = "f342c1b63e185e9953584ff2199726bf53850d96610a310e3aca09e9405a2d0b" 839dependencies = [ 840 "alsa", 841 "core-foundation-sys", 842 "coreaudio-rs", 843 "jni", 844 "js-sys", 845 "libc", 846 "mach", 847 "ndk 0.7.0", 848 "ndk-context", 849 "oboe", 850 "once_cell", 851 "parking_lot", 852 "stdweb", 853 "thiserror", 854 "web-sys", 855 "windows", 856] 857 858[[package]] 859name = "cpufeatures" 860version = "0.2.17" 861source = "registry+https://github.com/rust-lang/crates.io-index" 862checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 863dependencies = [ 864 "libc", 865] 866 867[[package]] 868name = "cpuid-bool" 869version = "0.2.0" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" 872 873[[package]] 874name = "crossbeam-queue" 875version = "0.3.12" 876source = "registry+https://github.com/rust-lang/crates.io-index" 877checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 878dependencies = [ 879 "crossbeam-utils", 880] 881 882[[package]] 883name = "crossbeam-utils" 884version = "0.8.21" 885source = "registry+https://github.com/rust-lang/crates.io-index" 886checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 887 888[[package]] 889name = "crossterm" 890version = "0.27.0" 891source = "registry+https://github.com/rust-lang/crates.io-index" 892checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" 893dependencies = [ 894 "bitflags 2.8.0", 895 "crossterm_winapi", 896 "libc", 897 "mio 0.8.11", 898 "parking_lot", 899 "signal-hook", 900 "signal-hook-mio", 901 "winapi", 902] 903 904[[package]] 905name = "crossterm_winapi" 906version = "0.9.1" 907source = "registry+https://github.com/rust-lang/crates.io-index" 908checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 909dependencies = [ 910 "winapi", 911] 912 913[[package]] 914name = "crypto-mac" 915version = "0.10.1" 916source = "registry+https://github.com/rust-lang/crates.io-index" 917checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" 918dependencies = [ 919 "generic-array", 920 "subtle", 921] 922 923[[package]] 924name = "ctr" 925version = "0.6.0" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 928dependencies = [ 929 "cipher", 930] 931 932[[package]] 933name = "dashmap" 934version = "5.5.3" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 937dependencies = [ 938 "cfg-if", 939 "hashbrown 0.14.5", 940 "lock_api", 941 "once_cell", 942 "parking_lot_core", 943] 944 945[[package]] 946name = "data-encoding" 947version = "2.7.0" 948source = "registry+https://github.com/rust-lang/crates.io-index" 949checksum = "0e60eed09d8c01d3cee5b7d30acb059b76614c918fa0f992e0dd6eeb10daad6f" 950 951[[package]] 952name = "deadpool" 953version = "0.7.0" 954source = "registry+https://github.com/rust-lang/crates.io-index" 955checksum = "3d126179d86aee4556e54f5f3c6bf6d9884e7cc52cef82f77ee6f90a7747616d" 956dependencies = [ 957 "async-trait", 958 "config", 959 "crossbeam-queue", 960 "num_cpus", 961 "serde", 962 "tokio", 963] 964 965[[package]] 966name = "derive_more" 967version = "0.99.18" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" 970dependencies = [ 971 "convert_case", 972 "proc-macro2", 973 "quote", 974 "rustc_version 0.4.1", 975 "syn 2.0.96", 976] 977 978[[package]] 979name = "digest" 980version = "0.9.0" 981source = "registry+https://github.com/rust-lang/crates.io-index" 982checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 983dependencies = [ 984 "generic-array", 985] 986 987[[package]] 988name = "discard" 989version = "1.0.4" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" 992 993[[package]] 994name = "displaydoc" 995version = "0.2.5" 996source = "registry+https://github.com/rust-lang/crates.io-index" 997checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 998dependencies = [ 999 "proc-macro2", 1000 "quote", 1001 "syn 2.0.96", 1002] 1003 1004[[package]] 1005name = "either" 1006version = "1.13.0" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 1009 1010[[package]] 1011name = "encoding_rs" 1012version = "0.8.35" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1015dependencies = [ 1016 "cfg-if", 1017] 1018 1019[[package]] 1020name = "enum-as-inner" 1021version = "0.6.1" 1022source = "registry+https://github.com/rust-lang/crates.io-index" 1023checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 1024dependencies = [ 1025 "heck", 1026 "proc-macro2", 1027 "quote", 1028 "syn 2.0.96", 1029] 1030 1031[[package]] 1032name = "equivalent" 1033version = "1.0.1" 1034source = "registry+https://github.com/rust-lang/crates.io-index" 1035checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1036 1037[[package]] 1038name = "errno" 1039version = "0.3.10" 1040source = "registry+https://github.com/rust-lang/crates.io-index" 1041checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" 1042dependencies = [ 1043 "libc", 1044 "windows-sys 0.59.0", 1045] 1046 1047[[package]] 1048name = "event-listener" 1049version = "2.5.3" 1050source = "registry+https://github.com/rust-lang/crates.io-index" 1051checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1052 1053[[package]] 1054name = "event-listener" 1055version = "5.4.0" 1056source = "registry+https://github.com/rust-lang/crates.io-index" 1057checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" 1058dependencies = [ 1059 "concurrent-queue", 1060 "parking", 1061 "pin-project-lite", 1062] 1063 1064[[package]] 1065name = "event-listener-strategy" 1066version = "0.5.3" 1067source = "registry+https://github.com/rust-lang/crates.io-index" 1068checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" 1069dependencies = [ 1070 "event-listener 5.4.0", 1071 "pin-project-lite", 1072] 1073 1074[[package]] 1075name = "extended" 1076version = "0.1.0" 1077source = "registry+https://github.com/rust-lang/crates.io-index" 1078checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365" 1079 1080[[package]] 1081name = "fastrand" 1082version = "1.9.0" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1085dependencies = [ 1086 "instant", 1087] 1088 1089[[package]] 1090name = "fastrand" 1091version = "2.3.0" 1092source = "registry+https://github.com/rust-lang/crates.io-index" 1093checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1094 1095[[package]] 1096name = "fixedbitset" 1097version = "0.4.2" 1098source = "registry+https://github.com/rust-lang/crates.io-index" 1099checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1100 1101[[package]] 1102name = "fnv" 1103version = "1.0.7" 1104source = "registry+https://github.com/rust-lang/crates.io-index" 1105checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1106 1107[[package]] 1108name = "foldhash" 1109version = "0.1.4" 1110source = "registry+https://github.com/rust-lang/crates.io-index" 1111checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" 1112 1113[[package]] 1114name = "form_urlencoded" 1115version = "1.2.1" 1116source = "registry+https://github.com/rust-lang/crates.io-index" 1117checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1118dependencies = [ 1119 "percent-encoding 2.3.1", 1120] 1121 1122[[package]] 1123name = "futures" 1124version = "0.3.31" 1125source = "registry+https://github.com/rust-lang/crates.io-index" 1126checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1127dependencies = [ 1128 "futures-channel", 1129 "futures-core", 1130 "futures-executor", 1131 "futures-io", 1132 "futures-sink", 1133 "futures-task", 1134 "futures-util", 1135] 1136 1137[[package]] 1138name = "futures-channel" 1139version = "0.3.31" 1140source = "registry+https://github.com/rust-lang/crates.io-index" 1141checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1142dependencies = [ 1143 "futures-core", 1144 "futures-sink", 1145] 1146 1147[[package]] 1148name = "futures-core" 1149version = "0.3.31" 1150source = "registry+https://github.com/rust-lang/crates.io-index" 1151checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1152 1153[[package]] 1154name = "futures-executor" 1155version = "0.3.31" 1156source = "registry+https://github.com/rust-lang/crates.io-index" 1157checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1158dependencies = [ 1159 "futures-core", 1160 "futures-task", 1161 "futures-util", 1162] 1163 1164[[package]] 1165name = "futures-io" 1166version = "0.3.31" 1167source = "registry+https://github.com/rust-lang/crates.io-index" 1168checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1169 1170[[package]] 1171name = "futures-lite" 1172version = "1.13.0" 1173source = "registry+https://github.com/rust-lang/crates.io-index" 1174checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1175dependencies = [ 1176 "fastrand 1.9.0", 1177 "futures-core", 1178 "futures-io", 1179 "memchr", 1180 "parking", 1181 "pin-project-lite", 1182 "waker-fn", 1183] 1184 1185[[package]] 1186name = "futures-lite" 1187version = "2.6.0" 1188source = "registry+https://github.com/rust-lang/crates.io-index" 1189checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" 1190dependencies = [ 1191 "fastrand 2.3.0", 1192 "futures-core", 1193 "futures-io", 1194 "parking", 1195 "pin-project-lite", 1196] 1197 1198[[package]] 1199name = "futures-macro" 1200version = "0.3.31" 1201source = "registry+https://github.com/rust-lang/crates.io-index" 1202checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1203dependencies = [ 1204 "proc-macro2", 1205 "quote", 1206 "syn 2.0.96", 1207] 1208 1209[[package]] 1210name = "futures-sink" 1211version = "0.3.31" 1212source = "registry+https://github.com/rust-lang/crates.io-index" 1213checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1214 1215[[package]] 1216name = "futures-task" 1217version = "0.3.31" 1218source = "registry+https://github.com/rust-lang/crates.io-index" 1219checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1220 1221[[package]] 1222name = "futures-util" 1223version = "0.3.31" 1224source = "registry+https://github.com/rust-lang/crates.io-index" 1225checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1226dependencies = [ 1227 "futures-channel", 1228 "futures-core", 1229 "futures-io", 1230 "futures-macro", 1231 "futures-sink", 1232 "futures-task", 1233 "memchr", 1234 "pin-project-lite", 1235 "pin-utils", 1236 "slab", 1237] 1238 1239[[package]] 1240name = "generic-array" 1241version = "0.14.7" 1242source = "registry+https://github.com/rust-lang/crates.io-index" 1243checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1244dependencies = [ 1245 "typenum", 1246 "version_check", 1247] 1248 1249[[package]] 1250name = "getrandom" 1251version = "0.1.16" 1252source = "registry+https://github.com/rust-lang/crates.io-index" 1253checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1254dependencies = [ 1255 "cfg-if", 1256 "libc", 1257 "wasi 0.9.0+wasi-snapshot-preview1", 1258] 1259 1260[[package]] 1261name = "getrandom" 1262version = "0.2.15" 1263source = "registry+https://github.com/rust-lang/crates.io-index" 1264checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1265dependencies = [ 1266 "cfg-if", 1267 "libc", 1268 "wasi 0.11.0+wasi-snapshot-preview1", 1269] 1270 1271[[package]] 1272name = "ghash" 1273version = "0.3.1" 1274source = "registry+https://github.com/rust-lang/crates.io-index" 1275checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375" 1276dependencies = [ 1277 "opaque-debug", 1278 "polyval", 1279] 1280 1281[[package]] 1282name = "gimli" 1283version = "0.31.1" 1284source = "registry+https://github.com/rust-lang/crates.io-index" 1285checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1286 1287[[package]] 1288name = "glob" 1289version = "0.3.2" 1290source = "registry+https://github.com/rust-lang/crates.io-index" 1291checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 1292 1293[[package]] 1294name = "gloo-timers" 1295version = "0.3.0" 1296source = "registry+https://github.com/rust-lang/crates.io-index" 1297checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 1298dependencies = [ 1299 "futures-channel", 1300 "futures-core", 1301 "js-sys", 1302 "wasm-bindgen", 1303] 1304 1305[[package]] 1306name = "h2" 1307version = "0.3.26" 1308source = "registry+https://github.com/rust-lang/crates.io-index" 1309checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 1310dependencies = [ 1311 "bytes", 1312 "fnv", 1313 "futures-core", 1314 "futures-sink", 1315 "futures-util", 1316 "http 0.2.12", 1317 "indexmap 2.7.1", 1318 "slab", 1319 "tokio", 1320 "tokio-util", 1321 "tracing", 1322] 1323 1324[[package]] 1325name = "h2" 1326version = "0.4.7" 1327source = "registry+https://github.com/rust-lang/crates.io-index" 1328checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" 1329dependencies = [ 1330 "atomic-waker", 1331 "bytes", 1332 "fnv", 1333 "futures-core", 1334 "futures-sink", 1335 "http 1.2.0", 1336 "indexmap 2.7.1", 1337 "slab", 1338 "tokio", 1339 "tokio-util", 1340 "tracing", 1341] 1342 1343[[package]] 1344name = "hashbrown" 1345version = "0.12.3" 1346source = "registry+https://github.com/rust-lang/crates.io-index" 1347checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1348 1349[[package]] 1350name = "hashbrown" 1351version = "0.14.5" 1352source = "registry+https://github.com/rust-lang/crates.io-index" 1353checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1354 1355[[package]] 1356name = "hashbrown" 1357version = "0.15.2" 1358source = "registry+https://github.com/rust-lang/crates.io-index" 1359checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 1360dependencies = [ 1361 "allocator-api2", 1362 "equivalent", 1363 "foldhash", 1364] 1365 1366[[package]] 1367name = "heck" 1368version = "0.5.0" 1369source = "registry+https://github.com/rust-lang/crates.io-index" 1370checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1371 1372[[package]] 1373name = "hermit-abi" 1374version = "0.1.19" 1375source = "registry+https://github.com/rust-lang/crates.io-index" 1376checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1377dependencies = [ 1378 "libc", 1379] 1380 1381[[package]] 1382name = "hermit-abi" 1383version = "0.3.9" 1384source = "registry+https://github.com/rust-lang/crates.io-index" 1385checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1386 1387[[package]] 1388name = "hermit-abi" 1389version = "0.4.0" 1390source = "registry+https://github.com/rust-lang/crates.io-index" 1391checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 1392 1393[[package]] 1394name = "hickory-proto" 1395version = "0.24.2" 1396source = "registry+https://github.com/rust-lang/crates.io-index" 1397checksum = "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" 1398dependencies = [ 1399 "async-trait", 1400 "cfg-if", 1401 "data-encoding", 1402 "enum-as-inner", 1403 "futures-channel", 1404 "futures-io", 1405 "futures-util", 1406 "idna 1.0.3", 1407 "ipnet", 1408 "once_cell", 1409 "rand 0.8.5", 1410 "thiserror", 1411 "tinyvec", 1412 "tracing", 1413 "url 2.5.4", 1414] 1415 1416[[package]] 1417name = "hickory-resolver" 1418version = "0.24.2" 1419source = "registry+https://github.com/rust-lang/crates.io-index" 1420checksum = "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" 1421dependencies = [ 1422 "cfg-if", 1423 "futures-util", 1424 "hickory-proto", 1425 "ipconfig", 1426 "lru-cache", 1427 "once_cell", 1428 "parking_lot", 1429 "rand 0.8.5", 1430 "resolv-conf", 1431 "smallvec", 1432 "thiserror", 1433 "tracing", 1434] 1435 1436[[package]] 1437name = "hkdf" 1438version = "0.10.0" 1439source = "registry+https://github.com/rust-lang/crates.io-index" 1440checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" 1441dependencies = [ 1442 "digest", 1443 "hmac", 1444] 1445 1446[[package]] 1447name = "hmac" 1448version = "0.10.1" 1449source = "registry+https://github.com/rust-lang/crates.io-index" 1450checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" 1451dependencies = [ 1452 "crypto-mac", 1453 "digest", 1454] 1455 1456[[package]] 1457name = "hostname" 1458version = "0.3.1" 1459source = "registry+https://github.com/rust-lang/crates.io-index" 1460checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 1461dependencies = [ 1462 "libc", 1463 "match_cfg", 1464 "winapi", 1465] 1466 1467[[package]] 1468name = "hound" 1469version = "3.5.1" 1470source = "registry+https://github.com/rust-lang/crates.io-index" 1471checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f" 1472 1473[[package]] 1474name = "http" 1475version = "0.2.12" 1476source = "registry+https://github.com/rust-lang/crates.io-index" 1477checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1478dependencies = [ 1479 "bytes", 1480 "fnv", 1481 "itoa", 1482] 1483 1484[[package]] 1485name = "http" 1486version = "1.2.0" 1487source = "registry+https://github.com/rust-lang/crates.io-index" 1488checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" 1489dependencies = [ 1490 "bytes", 1491 "fnv", 1492 "itoa", 1493] 1494 1495[[package]] 1496name = "http-body" 1497version = "0.4.6" 1498source = "registry+https://github.com/rust-lang/crates.io-index" 1499checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1500dependencies = [ 1501 "bytes", 1502 "http 0.2.12", 1503 "pin-project-lite", 1504] 1505 1506[[package]] 1507name = "http-body" 1508version = "1.0.1" 1509source = "registry+https://github.com/rust-lang/crates.io-index" 1510checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1511dependencies = [ 1512 "bytes", 1513 "http 1.2.0", 1514] 1515 1516[[package]] 1517name = "http-body-util" 1518version = "0.1.2" 1519source = "registry+https://github.com/rust-lang/crates.io-index" 1520checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 1521dependencies = [ 1522 "bytes", 1523 "futures-util", 1524 "http 1.2.0", 1525 "http-body 1.0.1", 1526 "pin-project-lite", 1527] 1528 1529[[package]] 1530name = "http-client" 1531version = "6.5.3" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5" 1534dependencies = [ 1535 "async-h1", 1536 "async-std", 1537 "async-tls", 1538 "async-trait", 1539 "cfg-if", 1540 "dashmap", 1541 "deadpool", 1542 "futures", 1543 "http-types", 1544 "log", 1545 "rustls 0.18.1", 1546] 1547 1548[[package]] 1549name = "http-types" 1550version = "2.12.0" 1551source = "registry+https://github.com/rust-lang/crates.io-index" 1552checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 1553dependencies = [ 1554 "anyhow", 1555 "async-channel 1.9.0", 1556 "async-std", 1557 "base64 0.13.1", 1558 "cookie", 1559 "futures-lite 1.13.0", 1560 "infer", 1561 "pin-project-lite", 1562 "rand 0.7.3", 1563 "serde", 1564 "serde_json", 1565 "serde_qs", 1566 "serde_urlencoded", 1567 "url 2.5.4", 1568] 1569 1570[[package]] 1571name = "httparse" 1572version = "1.9.5" 1573source = "registry+https://github.com/rust-lang/crates.io-index" 1574checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 1575 1576[[package]] 1577name = "httpdate" 1578version = "1.0.3" 1579source = "registry+https://github.com/rust-lang/crates.io-index" 1580checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1581 1582[[package]] 1583name = "hyper" 1584version = "0.14.32" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" 1587dependencies = [ 1588 "bytes", 1589 "futures-channel", 1590 "futures-core", 1591 "futures-util", 1592 "h2 0.3.26", 1593 "http 0.2.12", 1594 "http-body 0.4.6", 1595 "httparse", 1596 "httpdate", 1597 "itoa", 1598 "pin-project-lite", 1599 "socket2 0.5.8", 1600 "tokio", 1601 "tower-service", 1602 "tracing", 1603 "want", 1604] 1605 1606[[package]] 1607name = "hyper" 1608version = "1.5.2" 1609source = "registry+https://github.com/rust-lang/crates.io-index" 1610checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" 1611dependencies = [ 1612 "bytes", 1613 "futures-channel", 1614 "futures-util", 1615 "h2 0.4.7", 1616 "http 1.2.0", 1617 "http-body 1.0.1", 1618 "httparse", 1619 "httpdate", 1620 "itoa", 1621 "pin-project-lite", 1622 "smallvec", 1623 "tokio", 1624 "want", 1625] 1626 1627[[package]] 1628name = "hyper-rustls" 1629version = "0.24.2" 1630source = "registry+https://github.com/rust-lang/crates.io-index" 1631checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1632dependencies = [ 1633 "futures-util", 1634 "http 0.2.12", 1635 "hyper 0.14.32", 1636 "rustls 0.21.12", 1637 "tokio", 1638 "tokio-rustls", 1639] 1640 1641[[package]] 1642name = "hyper-timeout" 1643version = "0.5.2" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" 1646dependencies = [ 1647 "hyper 1.5.2", 1648 "hyper-util", 1649 "pin-project-lite", 1650 "tokio", 1651 "tower-service", 1652] 1653 1654[[package]] 1655name = "hyper-util" 1656version = "0.1.10" 1657source = "registry+https://github.com/rust-lang/crates.io-index" 1658checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" 1659dependencies = [ 1660 "bytes", 1661 "futures-channel", 1662 "futures-util", 1663 "http 1.2.0", 1664 "http-body 1.0.1", 1665 "hyper 1.5.2", 1666 "pin-project-lite", 1667 "socket2 0.5.8", 1668 "tokio", 1669 "tower-service", 1670 "tracing", 1671] 1672 1673[[package]] 1674name = "iana-time-zone" 1675version = "0.1.61" 1676source = "registry+https://github.com/rust-lang/crates.io-index" 1677checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 1678dependencies = [ 1679 "android_system_properties", 1680 "core-foundation-sys", 1681 "iana-time-zone-haiku", 1682 "js-sys", 1683 "wasm-bindgen", 1684 "windows-core", 1685] 1686 1687[[package]] 1688name = "iana-time-zone-haiku" 1689version = "0.1.2" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1692dependencies = [ 1693 "cc", 1694] 1695 1696[[package]] 1697name = "icu_collections" 1698version = "1.5.0" 1699source = "registry+https://github.com/rust-lang/crates.io-index" 1700checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 1701dependencies = [ 1702 "displaydoc", 1703 "yoke", 1704 "zerofrom", 1705 "zerovec", 1706] 1707 1708[[package]] 1709name = "icu_locid" 1710version = "1.5.0" 1711source = "registry+https://github.com/rust-lang/crates.io-index" 1712checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 1713dependencies = [ 1714 "displaydoc", 1715 "litemap", 1716 "tinystr", 1717 "writeable", 1718 "zerovec", 1719] 1720 1721[[package]] 1722name = "icu_locid_transform" 1723version = "1.5.0" 1724source = "registry+https://github.com/rust-lang/crates.io-index" 1725checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 1726dependencies = [ 1727 "displaydoc", 1728 "icu_locid", 1729 "icu_locid_transform_data", 1730 "icu_provider", 1731 "tinystr", 1732 "zerovec", 1733] 1734 1735[[package]] 1736name = "icu_locid_transform_data" 1737version = "1.5.0" 1738source = "registry+https://github.com/rust-lang/crates.io-index" 1739checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 1740 1741[[package]] 1742name = "icu_normalizer" 1743version = "1.5.0" 1744source = "registry+https://github.com/rust-lang/crates.io-index" 1745checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 1746dependencies = [ 1747 "displaydoc", 1748 "icu_collections", 1749 "icu_normalizer_data", 1750 "icu_properties", 1751 "icu_provider", 1752 "smallvec", 1753 "utf16_iter", 1754 "utf8_iter", 1755 "write16", 1756 "zerovec", 1757] 1758 1759[[package]] 1760name = "icu_normalizer_data" 1761version = "1.5.0" 1762source = "registry+https://github.com/rust-lang/crates.io-index" 1763checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 1764 1765[[package]] 1766name = "icu_properties" 1767version = "1.5.1" 1768source = "registry+https://github.com/rust-lang/crates.io-index" 1769checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 1770dependencies = [ 1771 "displaydoc", 1772 "icu_collections", 1773 "icu_locid_transform", 1774 "icu_properties_data", 1775 "icu_provider", 1776 "tinystr", 1777 "zerovec", 1778] 1779 1780[[package]] 1781name = "icu_properties_data" 1782version = "1.5.0" 1783source = "registry+https://github.com/rust-lang/crates.io-index" 1784checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 1785 1786[[package]] 1787name = "icu_provider" 1788version = "1.5.0" 1789source = "registry+https://github.com/rust-lang/crates.io-index" 1790checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 1791dependencies = [ 1792 "displaydoc", 1793 "icu_locid", 1794 "icu_provider_macros", 1795 "stable_deref_trait", 1796 "tinystr", 1797 "writeable", 1798 "yoke", 1799 "zerofrom", 1800 "zerovec", 1801] 1802 1803[[package]] 1804name = "icu_provider_macros" 1805version = "1.5.0" 1806source = "registry+https://github.com/rust-lang/crates.io-index" 1807checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 1808dependencies = [ 1809 "proc-macro2", 1810 "quote", 1811 "syn 2.0.96", 1812] 1813 1814[[package]] 1815name = "idna" 1816version = "0.1.5" 1817source = "registry+https://github.com/rust-lang/crates.io-index" 1818checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 1819dependencies = [ 1820 "matches", 1821 "unicode-bidi", 1822 "unicode-normalization", 1823] 1824 1825[[package]] 1826name = "idna" 1827version = "1.0.3" 1828source = "registry+https://github.com/rust-lang/crates.io-index" 1829checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1830dependencies = [ 1831 "idna_adapter", 1832 "smallvec", 1833 "utf8_iter", 1834] 1835 1836[[package]] 1837name = "idna_adapter" 1838version = "1.2.0" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 1841dependencies = [ 1842 "icu_normalizer", 1843 "icu_properties", 1844] 1845 1846[[package]] 1847name = "indexmap" 1848version = "1.9.3" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1851dependencies = [ 1852 "autocfg", 1853 "hashbrown 0.12.3", 1854] 1855 1856[[package]] 1857name = "indexmap" 1858version = "2.7.1" 1859source = "registry+https://github.com/rust-lang/crates.io-index" 1860checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" 1861dependencies = [ 1862 "equivalent", 1863 "hashbrown 0.15.2", 1864] 1865 1866[[package]] 1867name = "infer" 1868version = "0.2.3" 1869source = "registry+https://github.com/rust-lang/crates.io-index" 1870checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 1871 1872[[package]] 1873name = "instant" 1874version = "0.1.13" 1875source = "registry+https://github.com/rust-lang/crates.io-index" 1876checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 1877dependencies = [ 1878 "cfg-if", 1879] 1880 1881[[package]] 1882name = "io-lifetimes" 1883version = "1.0.11" 1884source = "registry+https://github.com/rust-lang/crates.io-index" 1885checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1886dependencies = [ 1887 "hermit-abi 0.3.9", 1888 "libc", 1889 "windows-sys 0.48.0", 1890] 1891 1892[[package]] 1893name = "ipconfig" 1894version = "0.3.2" 1895source = "registry+https://github.com/rust-lang/crates.io-index" 1896checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1897dependencies = [ 1898 "socket2 0.5.8", 1899 "widestring", 1900 "windows-sys 0.48.0", 1901 "winreg", 1902] 1903 1904[[package]] 1905name = "ipnet" 1906version = "2.11.0" 1907source = "registry+https://github.com/rust-lang/crates.io-index" 1908checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1909 1910[[package]] 1911name = "itertools" 1912version = "0.12.1" 1913source = "registry+https://github.com/rust-lang/crates.io-index" 1914checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1915dependencies = [ 1916 "either", 1917] 1918 1919[[package]] 1920name = "itertools" 1921version = "0.13.0" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1924dependencies = [ 1925 "either", 1926] 1927 1928[[package]] 1929name = "itoa" 1930version = "1.0.14" 1931source = "registry+https://github.com/rust-lang/crates.io-index" 1932checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" 1933 1934[[package]] 1935name = "jni" 1936version = "0.19.0" 1937source = "registry+https://github.com/rust-lang/crates.io-index" 1938checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 1939dependencies = [ 1940 "cesu8", 1941 "combine", 1942 "jni-sys", 1943 "log", 1944 "thiserror", 1945 "walkdir", 1946] 1947 1948[[package]] 1949name = "jni-sys" 1950version = "0.3.0" 1951source = "registry+https://github.com/rust-lang/crates.io-index" 1952checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1953 1954[[package]] 1955name = "jobserver" 1956version = "0.1.32" 1957source = "registry+https://github.com/rust-lang/crates.io-index" 1958checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 1959dependencies = [ 1960 "libc", 1961] 1962 1963[[package]] 1964name = "js-sys" 1965version = "0.3.77" 1966source = "registry+https://github.com/rust-lang/crates.io-index" 1967checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 1968dependencies = [ 1969 "once_cell", 1970 "wasm-bindgen", 1971] 1972 1973[[package]] 1974name = "kv-log-macro" 1975version = "1.0.7" 1976source = "registry+https://github.com/rust-lang/crates.io-index" 1977checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 1978dependencies = [ 1979 "log", 1980] 1981 1982[[package]] 1983name = "lazy_static" 1984version = "1.5.0" 1985source = "registry+https://github.com/rust-lang/crates.io-index" 1986checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1987 1988[[package]] 1989name = "lewton" 1990version = "0.10.2" 1991source = "registry+https://github.com/rust-lang/crates.io-index" 1992checksum = "777b48df9aaab155475a83a7df3070395ea1ac6902f5cd062b8f2b028075c030" 1993dependencies = [ 1994 "byteorder", 1995 "ogg", 1996 "tinyvec", 1997] 1998 1999[[package]] 2000name = "lexical-core" 2001version = "0.7.6" 2002source = "registry+https://github.com/rust-lang/crates.io-index" 2003checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" 2004dependencies = [ 2005 "arrayvec 0.5.2", 2006 "bitflags 1.3.2", 2007 "cfg-if", 2008 "ryu", 2009 "static_assertions", 2010] 2011 2012[[package]] 2013name = "libc" 2014version = "0.2.169" 2015source = "registry+https://github.com/rust-lang/crates.io-index" 2016checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" 2017 2018[[package]] 2019name = "libloading" 2020version = "0.8.6" 2021source = "registry+https://github.com/rust-lang/crates.io-index" 2022checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" 2023dependencies = [ 2024 "cfg-if", 2025 "windows-targets 0.52.6", 2026] 2027 2028[[package]] 2029name = "libredox" 2030version = "0.0.2" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607" 2033dependencies = [ 2034 "bitflags 2.8.0", 2035 "libc", 2036 "redox_syscall 0.4.1", 2037] 2038 2039[[package]] 2040name = "linked-hash-map" 2041version = "0.5.6" 2042source = "registry+https://github.com/rust-lang/crates.io-index" 2043checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2044 2045[[package]] 2046name = "linux-raw-sys" 2047version = "0.3.8" 2048source = "registry+https://github.com/rust-lang/crates.io-index" 2049checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 2050 2051[[package]] 2052name = "linux-raw-sys" 2053version = "0.4.15" 2054source = "registry+https://github.com/rust-lang/crates.io-index" 2055checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 2056 2057[[package]] 2058name = "litemap" 2059version = "0.7.4" 2060source = "registry+https://github.com/rust-lang/crates.io-index" 2061checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" 2062 2063[[package]] 2064name = "lock_api" 2065version = "0.4.12" 2066source = "registry+https://github.com/rust-lang/crates.io-index" 2067checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 2068dependencies = [ 2069 "autocfg", 2070 "scopeguard", 2071] 2072 2073[[package]] 2074name = "log" 2075version = "0.4.25" 2076source = "registry+https://github.com/rust-lang/crates.io-index" 2077checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" 2078dependencies = [ 2079 "value-bag", 2080] 2081 2082[[package]] 2083name = "lru" 2084version = "0.12.5" 2085source = "registry+https://github.com/rust-lang/crates.io-index" 2086checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 2087dependencies = [ 2088 "hashbrown 0.15.2", 2089] 2090 2091[[package]] 2092name = "lru-cache" 2093version = "0.1.2" 2094source = "registry+https://github.com/rust-lang/crates.io-index" 2095checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 2096dependencies = [ 2097 "linked-hash-map", 2098] 2099 2100[[package]] 2101name = "m3u" 2102version = "1.0.0" 2103source = "registry+https://github.com/rust-lang/crates.io-index" 2104checksum = "ca48bebf6a7397a81aa8b9dcc8a7cfcbacab3e15a28f49d2aabaa9e3c06def4d" 2105dependencies = [ 2106 "url 1.7.2", 2107] 2108 2109[[package]] 2110name = "mach" 2111version = "0.3.2" 2112source = "registry+https://github.com/rust-lang/crates.io-index" 2113checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 2114dependencies = [ 2115 "libc", 2116] 2117 2118[[package]] 2119name = "match_cfg" 2120version = "0.1.0" 2121source = "registry+https://github.com/rust-lang/crates.io-index" 2122checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 2123 2124[[package]] 2125name = "matches" 2126version = "0.1.10" 2127source = "registry+https://github.com/rust-lang/crates.io-index" 2128checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2129 2130[[package]] 2131name = "matchit" 2132version = "0.7.3" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 2135 2136[[package]] 2137name = "memchr" 2138version = "2.7.4" 2139source = "registry+https://github.com/rust-lang/crates.io-index" 2140checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 2141 2142[[package]] 2143name = "memoffset" 2144version = "0.6.5" 2145source = "registry+https://github.com/rust-lang/crates.io-index" 2146checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 2147dependencies = [ 2148 "autocfg", 2149] 2150 2151[[package]] 2152name = "mime" 2153version = "0.3.17" 2154source = "registry+https://github.com/rust-lang/crates.io-index" 2155checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2156 2157[[package]] 2158name = "mime_guess" 2159version = "2.0.5" 2160source = "registry+https://github.com/rust-lang/crates.io-index" 2161checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 2162dependencies = [ 2163 "mime", 2164 "unicase", 2165] 2166 2167[[package]] 2168name = "minimal-lexical" 2169version = "0.2.1" 2170source = "registry+https://github.com/rust-lang/crates.io-index" 2171checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2172 2173[[package]] 2174name = "minimp3" 2175version = "0.5.1" 2176source = "registry+https://github.com/rust-lang/crates.io-index" 2177checksum = "985438f75febf74c392071a975a29641b420dd84431135a6e6db721de4b74372" 2178dependencies = [ 2179 "minimp3-sys", 2180 "slice-deque", 2181 "thiserror", 2182] 2183 2184[[package]] 2185name = "minimp3-sys" 2186version = "0.3.2" 2187source = "registry+https://github.com/rust-lang/crates.io-index" 2188checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90" 2189dependencies = [ 2190 "cc", 2191] 2192 2193[[package]] 2194name = "miniz_oxide" 2195version = "0.8.3" 2196source = "registry+https://github.com/rust-lang/crates.io-index" 2197checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" 2198dependencies = [ 2199 "adler2", 2200] 2201 2202[[package]] 2203name = "mio" 2204version = "0.8.11" 2205source = "registry+https://github.com/rust-lang/crates.io-index" 2206checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2207dependencies = [ 2208 "libc", 2209 "log", 2210 "wasi 0.11.0+wasi-snapshot-preview1", 2211 "windows-sys 0.48.0", 2212] 2213 2214[[package]] 2215name = "mio" 2216version = "1.0.3" 2217source = "registry+https://github.com/rust-lang/crates.io-index" 2218checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" 2219dependencies = [ 2220 "libc", 2221 "wasi 0.11.0+wasi-snapshot-preview1", 2222 "windows-sys 0.52.0", 2223] 2224 2225[[package]] 2226name = "multimap" 2227version = "0.10.0" 2228source = "registry+https://github.com/rust-lang/crates.io-index" 2229checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" 2230 2231[[package]] 2232name = "ndk" 2233version = "0.6.0" 2234source = "registry+https://github.com/rust-lang/crates.io-index" 2235checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 2236dependencies = [ 2237 "bitflags 1.3.2", 2238 "jni-sys", 2239 "ndk-sys 0.3.0", 2240 "num_enum", 2241 "thiserror", 2242] 2243 2244[[package]] 2245name = "ndk" 2246version = "0.7.0" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 2249dependencies = [ 2250 "bitflags 1.3.2", 2251 "jni-sys", 2252 "ndk-sys 0.4.1+23.1.7779620", 2253 "num_enum", 2254 "raw-window-handle", 2255 "thiserror", 2256] 2257 2258[[package]] 2259name = "ndk-context" 2260version = "0.1.1" 2261source = "registry+https://github.com/rust-lang/crates.io-index" 2262checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2263 2264[[package]] 2265name = "ndk-sys" 2266version = "0.3.0" 2267source = "registry+https://github.com/rust-lang/crates.io-index" 2268checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 2269dependencies = [ 2270 "jni-sys", 2271] 2272 2273[[package]] 2274name = "ndk-sys" 2275version = "0.4.1+23.1.7779620" 2276source = "registry+https://github.com/rust-lang/crates.io-index" 2277checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" 2278dependencies = [ 2279 "jni-sys", 2280] 2281 2282[[package]] 2283name = "nix" 2284version = "0.23.2" 2285source = "registry+https://github.com/rust-lang/crates.io-index" 2286checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c" 2287dependencies = [ 2288 "bitflags 1.3.2", 2289 "cc", 2290 "cfg-if", 2291 "libc", 2292 "memoffset", 2293] 2294 2295[[package]] 2296name = "nom" 2297version = "5.1.3" 2298source = "registry+https://github.com/rust-lang/crates.io-index" 2299checksum = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b" 2300dependencies = [ 2301 "lexical-core", 2302 "memchr", 2303 "version_check", 2304] 2305 2306[[package]] 2307name = "nom" 2308version = "7.1.3" 2309source = "registry+https://github.com/rust-lang/crates.io-index" 2310checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2311dependencies = [ 2312 "memchr", 2313 "minimal-lexical", 2314] 2315 2316[[package]] 2317name = "num-complex" 2318version = "0.4.6" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 2321dependencies = [ 2322 "num-traits", 2323] 2324 2325[[package]] 2326name = "num-derive" 2327version = "0.3.3" 2328source = "registry+https://github.com/rust-lang/crates.io-index" 2329checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 2330dependencies = [ 2331 "proc-macro2", 2332 "quote", 2333 "syn 1.0.109", 2334] 2335 2336[[package]] 2337name = "num-integer" 2338version = "0.1.46" 2339source = "registry+https://github.com/rust-lang/crates.io-index" 2340checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2341dependencies = [ 2342 "num-traits", 2343] 2344 2345[[package]] 2346name = "num-traits" 2347version = "0.2.19" 2348source = "registry+https://github.com/rust-lang/crates.io-index" 2349checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2350dependencies = [ 2351 "autocfg", 2352] 2353 2354[[package]] 2355name = "num_cpus" 2356version = "1.16.0" 2357source = "registry+https://github.com/rust-lang/crates.io-index" 2358checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2359dependencies = [ 2360 "hermit-abi 0.3.9", 2361 "libc", 2362] 2363 2364[[package]] 2365name = "num_enum" 2366version = "0.5.11" 2367source = "registry+https://github.com/rust-lang/crates.io-index" 2368checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2369dependencies = [ 2370 "num_enum_derive", 2371] 2372 2373[[package]] 2374name = "num_enum_derive" 2375version = "0.5.11" 2376source = "registry+https://github.com/rust-lang/crates.io-index" 2377checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2378dependencies = [ 2379 "proc-macro-crate", 2380 "proc-macro2", 2381 "quote", 2382 "syn 1.0.109", 2383] 2384 2385[[package]] 2386name = "numtoa" 2387version = "0.1.0" 2388source = "registry+https://github.com/rust-lang/crates.io-index" 2389checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" 2390 2391[[package]] 2392name = "object" 2393version = "0.36.7" 2394source = "registry+https://github.com/rust-lang/crates.io-index" 2395checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 2396dependencies = [ 2397 "memchr", 2398] 2399 2400[[package]] 2401name = "oboe" 2402version = "0.4.6" 2403source = "registry+https://github.com/rust-lang/crates.io-index" 2404checksum = "27f63c358b4fa0fbcfefd7c8be5cfc39c08ce2389f5325687e7762a48d30a5c1" 2405dependencies = [ 2406 "jni", 2407 "ndk 0.6.0", 2408 "ndk-context", 2409 "num-derive", 2410 "num-traits", 2411 "oboe-sys", 2412] 2413 2414[[package]] 2415name = "oboe-sys" 2416version = "0.4.5" 2417source = "registry+https://github.com/rust-lang/crates.io-index" 2418checksum = "3370abb7372ed744232c12954d920d1a40f1c4686de9e79e800021ef492294bd" 2419dependencies = [ 2420 "cc", 2421] 2422 2423[[package]] 2424name = "ogg" 2425version = "0.8.0" 2426source = "registry+https://github.com/rust-lang/crates.io-index" 2427checksum = "6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e" 2428dependencies = [ 2429 "byteorder", 2430] 2431 2432[[package]] 2433name = "once_cell" 2434version = "1.20.2" 2435source = "registry+https://github.com/rust-lang/crates.io-index" 2436checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 2437 2438[[package]] 2439name = "opaque-debug" 2440version = "0.3.1" 2441source = "registry+https://github.com/rust-lang/crates.io-index" 2442checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 2443 2444[[package]] 2445name = "os_str_bytes" 2446version = "6.6.1" 2447source = "registry+https://github.com/rust-lang/crates.io-index" 2448checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 2449 2450[[package]] 2451name = "owo-colors" 2452version = "3.5.0" 2453source = "registry+https://github.com/rust-lang/crates.io-index" 2454checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 2455 2456[[package]] 2457name = "parking" 2458version = "2.2.1" 2459source = "registry+https://github.com/rust-lang/crates.io-index" 2460checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2461 2462[[package]] 2463name = "parking_lot" 2464version = "0.12.3" 2465source = "registry+https://github.com/rust-lang/crates.io-index" 2466checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2467dependencies = [ 2468 "lock_api", 2469 "parking_lot_core", 2470] 2471 2472[[package]] 2473name = "parking_lot_core" 2474version = "0.9.10" 2475source = "registry+https://github.com/rust-lang/crates.io-index" 2476checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2477dependencies = [ 2478 "cfg-if", 2479 "libc", 2480 "redox_syscall 0.5.8", 2481 "smallvec", 2482 "windows-targets 0.52.6", 2483] 2484 2485[[package]] 2486name = "paste" 2487version = "1.0.15" 2488source = "registry+https://github.com/rust-lang/crates.io-index" 2489checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 2490 2491[[package]] 2492name = "percent-encoding" 2493version = "1.0.1" 2494source = "registry+https://github.com/rust-lang/crates.io-index" 2495checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 2496 2497[[package]] 2498name = "percent-encoding" 2499version = "2.3.1" 2500source = "registry+https://github.com/rust-lang/crates.io-index" 2501checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2502 2503[[package]] 2504name = "petgraph" 2505version = "0.6.5" 2506source = "registry+https://github.com/rust-lang/crates.io-index" 2507checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" 2508dependencies = [ 2509 "fixedbitset", 2510 "indexmap 2.7.1", 2511] 2512 2513[[package]] 2514name = "pin-project" 2515version = "1.1.8" 2516source = "registry+https://github.com/rust-lang/crates.io-index" 2517checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" 2518dependencies = [ 2519 "pin-project-internal", 2520] 2521 2522[[package]] 2523name = "pin-project-internal" 2524version = "1.1.8" 2525source = "registry+https://github.com/rust-lang/crates.io-index" 2526checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" 2527dependencies = [ 2528 "proc-macro2", 2529 "quote", 2530 "syn 2.0.96", 2531] 2532 2533[[package]] 2534name = "pin-project-lite" 2535version = "0.2.16" 2536source = "registry+https://github.com/rust-lang/crates.io-index" 2537checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2538 2539[[package]] 2540name = "pin-utils" 2541version = "0.1.0" 2542source = "registry+https://github.com/rust-lang/crates.io-index" 2543checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2544 2545[[package]] 2546name = "piper" 2547version = "0.2.4" 2548source = "registry+https://github.com/rust-lang/crates.io-index" 2549checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2550dependencies = [ 2551 "atomic-waker", 2552 "fastrand 2.3.0", 2553 "futures-io", 2554] 2555 2556[[package]] 2557name = "pkg-config" 2558version = "0.3.31" 2559source = "registry+https://github.com/rust-lang/crates.io-index" 2560checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 2561 2562[[package]] 2563name = "pls" 2564version = "0.2.2" 2565source = "registry+https://github.com/rust-lang/crates.io-index" 2566checksum = "3fa4b7fc7e288a7e43658f494dda9b9ee01cbcfc4a99931e90191cccbc5f2b45" 2567dependencies = [ 2568 "rust-ini", 2569] 2570 2571[[package]] 2572name = "polling" 2573version = "2.8.0" 2574source = "registry+https://github.com/rust-lang/crates.io-index" 2575checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 2576dependencies = [ 2577 "autocfg", 2578 "bitflags 1.3.2", 2579 "cfg-if", 2580 "concurrent-queue", 2581 "libc", 2582 "log", 2583 "pin-project-lite", 2584 "windows-sys 0.48.0", 2585] 2586 2587[[package]] 2588name = "polling" 2589version = "3.7.4" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" 2592dependencies = [ 2593 "cfg-if", 2594 "concurrent-queue", 2595 "hermit-abi 0.4.0", 2596 "pin-project-lite", 2597 "rustix 0.38.44", 2598 "tracing", 2599 "windows-sys 0.59.0", 2600] 2601 2602[[package]] 2603name = "polyval" 2604version = "0.4.5" 2605source = "registry+https://github.com/rust-lang/crates.io-index" 2606checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd" 2607dependencies = [ 2608 "cpuid-bool", 2609 "opaque-debug", 2610 "universal-hash", 2611] 2612 2613[[package]] 2614name = "ppv-lite86" 2615version = "0.2.20" 2616source = "registry+https://github.com/rust-lang/crates.io-index" 2617checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 2618dependencies = [ 2619 "zerocopy", 2620] 2621 2622[[package]] 2623name = "prettyplease" 2624version = "0.2.29" 2625source = "registry+https://github.com/rust-lang/crates.io-index" 2626checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" 2627dependencies = [ 2628 "proc-macro2", 2629 "syn 2.0.96", 2630] 2631 2632[[package]] 2633name = "primal-check" 2634version = "0.3.4" 2635source = "registry+https://github.com/rust-lang/crates.io-index" 2636checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08" 2637dependencies = [ 2638 "num-integer", 2639] 2640 2641[[package]] 2642name = "proc-macro-crate" 2643version = "1.3.1" 2644source = "registry+https://github.com/rust-lang/crates.io-index" 2645checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2646dependencies = [ 2647 "once_cell", 2648 "toml_edit", 2649] 2650 2651[[package]] 2652name = "proc-macro-hack" 2653version = "0.5.20+deprecated" 2654source = "registry+https://github.com/rust-lang/crates.io-index" 2655checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2656 2657[[package]] 2658name = "proc-macro2" 2659version = "1.0.93" 2660source = "registry+https://github.com/rust-lang/crates.io-index" 2661checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" 2662dependencies = [ 2663 "unicode-ident", 2664] 2665 2666[[package]] 2667name = "prost" 2668version = "0.13.4" 2669source = "registry+https://github.com/rust-lang/crates.io-index" 2670checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" 2671dependencies = [ 2672 "bytes", 2673 "prost-derive", 2674] 2675 2676[[package]] 2677name = "prost-build" 2678version = "0.13.4" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" 2681dependencies = [ 2682 "heck", 2683 "itertools 0.13.0", 2684 "log", 2685 "multimap", 2686 "once_cell", 2687 "petgraph", 2688 "prettyplease", 2689 "prost", 2690 "prost-types", 2691 "regex", 2692 "syn 2.0.96", 2693 "tempfile", 2694] 2695 2696[[package]] 2697name = "prost-derive" 2698version = "0.13.4" 2699source = "registry+https://github.com/rust-lang/crates.io-index" 2700checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" 2701dependencies = [ 2702 "anyhow", 2703 "itertools 0.13.0", 2704 "proc-macro2", 2705 "quote", 2706 "syn 2.0.96", 2707] 2708 2709[[package]] 2710name = "prost-types" 2711version = "0.13.4" 2712source = "registry+https://github.com/rust-lang/crates.io-index" 2713checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" 2714dependencies = [ 2715 "prost", 2716] 2717 2718[[package]] 2719name = "quick-error" 2720version = "1.2.3" 2721source = "registry+https://github.com/rust-lang/crates.io-index" 2722checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 2723 2724[[package]] 2725name = "quote" 2726version = "1.0.38" 2727source = "registry+https://github.com/rust-lang/crates.io-index" 2728checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" 2729dependencies = [ 2730 "proc-macro2", 2731] 2732 2733[[package]] 2734name = "radiobrowser" 2735version = "0.6.1" 2736source = "registry+https://github.com/rust-lang/crates.io-index" 2737checksum = "763ad5f847e3d2e3221dac4e87370297a970e3f9eb8f2760b915001b9c79023b" 2738dependencies = [ 2739 "async-std", 2740 "async-std-resolver", 2741 "chrono", 2742 "log", 2743 "rand 0.8.5", 2744 "reqwest", 2745 "serde", 2746] 2747 2748[[package]] 2749name = "rand" 2750version = "0.7.3" 2751source = "registry+https://github.com/rust-lang/crates.io-index" 2752checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2753dependencies = [ 2754 "getrandom 0.1.16", 2755 "libc", 2756 "rand_chacha 0.2.2", 2757 "rand_core 0.5.1", 2758 "rand_hc", 2759] 2760 2761[[package]] 2762name = "rand" 2763version = "0.8.5" 2764source = "registry+https://github.com/rust-lang/crates.io-index" 2765checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2766dependencies = [ 2767 "libc", 2768 "rand_chacha 0.3.1", 2769 "rand_core 0.6.4", 2770] 2771 2772[[package]] 2773name = "rand_chacha" 2774version = "0.2.2" 2775source = "registry+https://github.com/rust-lang/crates.io-index" 2776checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2777dependencies = [ 2778 "ppv-lite86", 2779 "rand_core 0.5.1", 2780] 2781 2782[[package]] 2783name = "rand_chacha" 2784version = "0.3.1" 2785source = "registry+https://github.com/rust-lang/crates.io-index" 2786checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2787dependencies = [ 2788 "ppv-lite86", 2789 "rand_core 0.6.4", 2790] 2791 2792[[package]] 2793name = "rand_core" 2794version = "0.5.1" 2795source = "registry+https://github.com/rust-lang/crates.io-index" 2796checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2797dependencies = [ 2798 "getrandom 0.1.16", 2799] 2800 2801[[package]] 2802name = "rand_core" 2803version = "0.6.4" 2804source = "registry+https://github.com/rust-lang/crates.io-index" 2805checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2806dependencies = [ 2807 "getrandom 0.2.15", 2808] 2809 2810[[package]] 2811name = "rand_hc" 2812version = "0.2.0" 2813source = "registry+https://github.com/rust-lang/crates.io-index" 2814checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2815dependencies = [ 2816 "rand_core 0.5.1", 2817] 2818 2819[[package]] 2820name = "ratatui" 2821version = "0.26.3" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "f44c9e68fd46eda15c646fbb85e1040b657a58cdc8c98db1d97a55930d991eef" 2824dependencies = [ 2825 "bitflags 2.8.0", 2826 "cassowary", 2827 "compact_str", 2828 "crossterm", 2829 "itertools 0.12.1", 2830 "lru", 2831 "paste", 2832 "stability", 2833 "strum", 2834 "unicode-segmentation", 2835 "unicode-truncate", 2836 "unicode-width", 2837] 2838 2839[[package]] 2840name = "raw-window-handle" 2841version = "0.5.2" 2842source = "registry+https://github.com/rust-lang/crates.io-index" 2843checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 2844 2845[[package]] 2846name = "redox_syscall" 2847version = "0.4.1" 2848source = "registry+https://github.com/rust-lang/crates.io-index" 2849checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2850dependencies = [ 2851 "bitflags 1.3.2", 2852] 2853 2854[[package]] 2855name = "redox_syscall" 2856version = "0.5.8" 2857source = "registry+https://github.com/rust-lang/crates.io-index" 2858checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" 2859dependencies = [ 2860 "bitflags 2.8.0", 2861] 2862 2863[[package]] 2864name = "redox_termios" 2865version = "0.1.3" 2866source = "registry+https://github.com/rust-lang/crates.io-index" 2867checksum = "20145670ba436b55d91fc92d25e71160fbfbdd57831631c8d7d36377a476f1cb" 2868 2869[[package]] 2870name = "regex" 2871version = "1.11.1" 2872source = "registry+https://github.com/rust-lang/crates.io-index" 2873checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 2874dependencies = [ 2875 "aho-corasick", 2876 "memchr", 2877 "regex-automata", 2878 "regex-syntax", 2879] 2880 2881[[package]] 2882name = "regex-automata" 2883version = "0.4.9" 2884source = "registry+https://github.com/rust-lang/crates.io-index" 2885checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 2886dependencies = [ 2887 "aho-corasick", 2888 "memchr", 2889 "regex-syntax", 2890] 2891 2892[[package]] 2893name = "regex-syntax" 2894version = "0.8.5" 2895source = "registry+https://github.com/rust-lang/crates.io-index" 2896checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 2897 2898[[package]] 2899name = "reqwest" 2900version = "0.11.27" 2901source = "registry+https://github.com/rust-lang/crates.io-index" 2902checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 2903dependencies = [ 2904 "base64 0.21.7", 2905 "bytes", 2906 "encoding_rs", 2907 "futures-core", 2908 "futures-util", 2909 "h2 0.3.26", 2910 "http 0.2.12", 2911 "http-body 0.4.6", 2912 "hyper 0.14.32", 2913 "hyper-rustls", 2914 "ipnet", 2915 "js-sys", 2916 "log", 2917 "mime", 2918 "once_cell", 2919 "percent-encoding 2.3.1", 2920 "pin-project-lite", 2921 "rustls 0.21.12", 2922 "rustls-pemfile", 2923 "serde", 2924 "serde_json", 2925 "serde_urlencoded", 2926 "sync_wrapper 0.1.2", 2927 "system-configuration", 2928 "tokio", 2929 "tokio-rustls", 2930 "tower-service", 2931 "url 2.5.4", 2932 "wasm-bindgen", 2933 "wasm-bindgen-futures", 2934 "web-sys", 2935 "webpki-roots 0.25.4", 2936 "winreg", 2937] 2938 2939[[package]] 2940name = "resolv-conf" 2941version = "0.7.0" 2942source = "registry+https://github.com/rust-lang/crates.io-index" 2943checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" 2944dependencies = [ 2945 "hostname", 2946 "quick-error", 2947] 2948 2949[[package]] 2950name = "ring" 2951version = "0.16.20" 2952source = "registry+https://github.com/rust-lang/crates.io-index" 2953checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 2954dependencies = [ 2955 "cc", 2956 "libc", 2957 "once_cell", 2958 "spin 0.5.2", 2959 "untrusted 0.7.1", 2960 "web-sys", 2961 "winapi", 2962] 2963 2964[[package]] 2965name = "ring" 2966version = "0.17.8" 2967source = "registry+https://github.com/rust-lang/crates.io-index" 2968checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 2969dependencies = [ 2970 "cc", 2971 "cfg-if", 2972 "getrandom 0.2.15", 2973 "libc", 2974 "spin 0.9.8", 2975 "untrusted 0.9.0", 2976 "windows-sys 0.52.0", 2977] 2978 2979[[package]] 2980name = "rodio" 2981version = "0.16.0" 2982source = "registry+https://github.com/rust-lang/crates.io-index" 2983checksum = "eb10b653d5ec0e9411a2e7d46e2c7f4046fd87d35b9955bd73ba4108d69072b5" 2984dependencies = [ 2985 "claxon", 2986 "cpal", 2987 "hound", 2988 "lewton", 2989 "minimp3", 2990] 2991 2992[[package]] 2993name = "rust-ini" 2994version = "0.10.3" 2995source = "registry+https://github.com/rust-lang/crates.io-index" 2996checksum = "8a654c5bda722c699be6b0fe4c0d90de218928da5b724c3e467fc48865c37263" 2997 2998[[package]] 2999name = "rustc-demangle" 3000version = "0.1.24" 3001source = "registry+https://github.com/rust-lang/crates.io-index" 3002checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3003 3004[[package]] 3005name = "rustc-hash" 3006version = "1.1.0" 3007source = "registry+https://github.com/rust-lang/crates.io-index" 3008checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3009 3010[[package]] 3011name = "rustc_version" 3012version = "0.2.3" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 3015dependencies = [ 3016 "semver 0.9.0", 3017] 3018 3019[[package]] 3020name = "rustc_version" 3021version = "0.4.1" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 3024dependencies = [ 3025 "semver 1.0.25", 3026] 3027 3028[[package]] 3029name = "rustfft" 3030version = "6.2.0" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "43806561bc506d0c5d160643ad742e3161049ac01027b5e6d7524091fd401d86" 3033dependencies = [ 3034 "num-complex", 3035 "num-integer", 3036 "num-traits", 3037 "primal-check", 3038 "strength_reduce", 3039 "transpose", 3040 "version_check", 3041] 3042 3043[[package]] 3044name = "rustix" 3045version = "0.37.28" 3046source = "registry+https://github.com/rust-lang/crates.io-index" 3047checksum = "519165d378b97752ca44bbe15047d5d3409e875f39327546b42ac81d7e18c1b6" 3048dependencies = [ 3049 "bitflags 1.3.2", 3050 "errno", 3051 "io-lifetimes", 3052 "libc", 3053 "linux-raw-sys 0.3.8", 3054 "windows-sys 0.48.0", 3055] 3056 3057[[package]] 3058name = "rustix" 3059version = "0.38.44" 3060source = "registry+https://github.com/rust-lang/crates.io-index" 3061checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 3062dependencies = [ 3063 "bitflags 2.8.0", 3064 "errno", 3065 "libc", 3066 "linux-raw-sys 0.4.15", 3067 "windows-sys 0.59.0", 3068] 3069 3070[[package]] 3071name = "rustls" 3072version = "0.18.1" 3073source = "registry+https://github.com/rust-lang/crates.io-index" 3074checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81" 3075dependencies = [ 3076 "base64 0.12.3", 3077 "log", 3078 "ring 0.16.20", 3079 "sct 0.6.1", 3080 "webpki", 3081] 3082 3083[[package]] 3084name = "rustls" 3085version = "0.21.12" 3086source = "registry+https://github.com/rust-lang/crates.io-index" 3087checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 3088dependencies = [ 3089 "log", 3090 "ring 0.17.8", 3091 "rustls-webpki", 3092 "sct 0.7.1", 3093] 3094 3095[[package]] 3096name = "rustls-pemfile" 3097version = "1.0.4" 3098source = "registry+https://github.com/rust-lang/crates.io-index" 3099checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3100dependencies = [ 3101 "base64 0.21.7", 3102] 3103 3104[[package]] 3105name = "rustls-webpki" 3106version = "0.101.7" 3107source = "registry+https://github.com/rust-lang/crates.io-index" 3108checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3109dependencies = [ 3110 "ring 0.17.8", 3111 "untrusted 0.9.0", 3112] 3113 3114[[package]] 3115name = "rustversion" 3116version = "1.0.19" 3117source = "registry+https://github.com/rust-lang/crates.io-index" 3118checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" 3119 3120[[package]] 3121name = "ryu" 3122version = "1.0.18" 3123source = "registry+https://github.com/rust-lang/crates.io-index" 3124checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 3125 3126[[package]] 3127name = "same-file" 3128version = "1.0.6" 3129source = "registry+https://github.com/rust-lang/crates.io-index" 3130checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3131dependencies = [ 3132 "winapi-util", 3133] 3134 3135[[package]] 3136name = "scopeguard" 3137version = "1.2.0" 3138source = "registry+https://github.com/rust-lang/crates.io-index" 3139checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3140 3141[[package]] 3142name = "sct" 3143version = "0.6.1" 3144source = "registry+https://github.com/rust-lang/crates.io-index" 3145checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" 3146dependencies = [ 3147 "ring 0.16.20", 3148 "untrusted 0.7.1", 3149] 3150 3151[[package]] 3152name = "sct" 3153version = "0.7.1" 3154source = "registry+https://github.com/rust-lang/crates.io-index" 3155checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3156dependencies = [ 3157 "ring 0.17.8", 3158 "untrusted 0.9.0", 3159] 3160 3161[[package]] 3162name = "semver" 3163version = "0.9.0" 3164source = "registry+https://github.com/rust-lang/crates.io-index" 3165checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 3166dependencies = [ 3167 "semver-parser", 3168] 3169 3170[[package]] 3171name = "semver" 3172version = "1.0.25" 3173source = "registry+https://github.com/rust-lang/crates.io-index" 3174checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03" 3175 3176[[package]] 3177name = "semver-parser" 3178version = "0.7.0" 3179source = "registry+https://github.com/rust-lang/crates.io-index" 3180checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 3181 3182[[package]] 3183name = "serde" 3184version = "1.0.217" 3185source = "registry+https://github.com/rust-lang/crates.io-index" 3186checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" 3187dependencies = [ 3188 "serde_derive", 3189] 3190 3191[[package]] 3192name = "serde_derive" 3193version = "1.0.217" 3194source = "registry+https://github.com/rust-lang/crates.io-index" 3195checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" 3196dependencies = [ 3197 "proc-macro2", 3198 "quote", 3199 "syn 2.0.96", 3200] 3201 3202[[package]] 3203name = "serde_json" 3204version = "1.0.137" 3205source = "registry+https://github.com/rust-lang/crates.io-index" 3206checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" 3207dependencies = [ 3208 "itoa", 3209 "memchr", 3210 "ryu", 3211 "serde", 3212] 3213 3214[[package]] 3215name = "serde_qs" 3216version = "0.8.5" 3217source = "registry+https://github.com/rust-lang/crates.io-index" 3218checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 3219dependencies = [ 3220 "percent-encoding 2.3.1", 3221 "serde", 3222 "thiserror", 3223] 3224 3225[[package]] 3226name = "serde_urlencoded" 3227version = "0.7.1" 3228source = "registry+https://github.com/rust-lang/crates.io-index" 3229checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3230dependencies = [ 3231 "form_urlencoded", 3232 "itoa", 3233 "ryu", 3234 "serde", 3235] 3236 3237[[package]] 3238name = "sha1" 3239version = "0.6.1" 3240source = "registry+https://github.com/rust-lang/crates.io-index" 3241checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" 3242dependencies = [ 3243 "sha1_smol", 3244] 3245 3246[[package]] 3247name = "sha1_smol" 3248version = "1.0.1" 3249source = "registry+https://github.com/rust-lang/crates.io-index" 3250checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 3251 3252[[package]] 3253name = "sha2" 3254version = "0.9.9" 3255source = "registry+https://github.com/rust-lang/crates.io-index" 3256checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 3257dependencies = [ 3258 "block-buffer", 3259 "cfg-if", 3260 "cpufeatures", 3261 "digest", 3262 "opaque-debug", 3263] 3264 3265[[package]] 3266name = "shlex" 3267version = "1.3.0" 3268source = "registry+https://github.com/rust-lang/crates.io-index" 3269checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3270 3271[[package]] 3272name = "signal-hook" 3273version = "0.3.17" 3274source = "registry+https://github.com/rust-lang/crates.io-index" 3275checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 3276dependencies = [ 3277 "libc", 3278 "signal-hook-registry", 3279] 3280 3281[[package]] 3282name = "signal-hook-mio" 3283version = "0.2.4" 3284source = "registry+https://github.com/rust-lang/crates.io-index" 3285checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" 3286dependencies = [ 3287 "libc", 3288 "mio 0.8.11", 3289 "signal-hook", 3290] 3291 3292[[package]] 3293name = "signal-hook-registry" 3294version = "1.4.2" 3295source = "registry+https://github.com/rust-lang/crates.io-index" 3296checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 3297dependencies = [ 3298 "libc", 3299] 3300 3301[[package]] 3302name = "slab" 3303version = "0.4.9" 3304source = "registry+https://github.com/rust-lang/crates.io-index" 3305checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 3306dependencies = [ 3307 "autocfg", 3308] 3309 3310[[package]] 3311name = "slice-deque" 3312version = "0.3.0" 3313source = "registry+https://github.com/rust-lang/crates.io-index" 3314checksum = "31ef6ee280cdefba6d2d0b4b78a84a1c1a3f3a4cec98c2d4231c8bc225de0f25" 3315dependencies = [ 3316 "libc", 3317 "mach", 3318 "winapi", 3319] 3320 3321[[package]] 3322name = "smallvec" 3323version = "1.13.2" 3324source = "registry+https://github.com/rust-lang/crates.io-index" 3325checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 3326 3327[[package]] 3328name = "socket2" 3329version = "0.4.10" 3330source = "registry+https://github.com/rust-lang/crates.io-index" 3331checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 3332dependencies = [ 3333 "libc", 3334 "winapi", 3335] 3336 3337[[package]] 3338name = "socket2" 3339version = "0.5.8" 3340source = "registry+https://github.com/rust-lang/crates.io-index" 3341checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" 3342dependencies = [ 3343 "libc", 3344 "windows-sys 0.52.0", 3345] 3346 3347[[package]] 3348name = "spin" 3349version = "0.5.2" 3350source = "registry+https://github.com/rust-lang/crates.io-index" 3351checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3352 3353[[package]] 3354name = "spin" 3355version = "0.9.8" 3356source = "registry+https://github.com/rust-lang/crates.io-index" 3357checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3358 3359[[package]] 3360name = "stability" 3361version = "0.2.1" 3362source = "registry+https://github.com/rust-lang/crates.io-index" 3363checksum = "d904e7009df136af5297832a3ace3370cd14ff1546a232f4f185036c2736fcac" 3364dependencies = [ 3365 "quote", 3366 "syn 2.0.96", 3367] 3368 3369[[package]] 3370name = "stable_deref_trait" 3371version = "1.2.0" 3372source = "registry+https://github.com/rust-lang/crates.io-index" 3373checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3374 3375[[package]] 3376name = "standback" 3377version = "0.2.17" 3378source = "registry+https://github.com/rust-lang/crates.io-index" 3379checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" 3380dependencies = [ 3381 "version_check", 3382] 3383 3384[[package]] 3385name = "static_assertions" 3386version = "1.1.0" 3387source = "registry+https://github.com/rust-lang/crates.io-index" 3388checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3389 3390[[package]] 3391name = "stdweb" 3392version = "0.4.20" 3393source = "registry+https://github.com/rust-lang/crates.io-index" 3394checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" 3395dependencies = [ 3396 "discard", 3397 "rustc_version 0.2.3", 3398 "stdweb-derive", 3399 "stdweb-internal-macros", 3400 "stdweb-internal-runtime", 3401 "wasm-bindgen", 3402] 3403 3404[[package]] 3405name = "stdweb-derive" 3406version = "0.5.3" 3407source = "registry+https://github.com/rust-lang/crates.io-index" 3408checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" 3409dependencies = [ 3410 "proc-macro2", 3411 "quote", 3412 "serde", 3413 "serde_derive", 3414 "syn 1.0.109", 3415] 3416 3417[[package]] 3418name = "stdweb-internal-macros" 3419version = "0.2.9" 3420source = "registry+https://github.com/rust-lang/crates.io-index" 3421checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" 3422dependencies = [ 3423 "base-x", 3424 "proc-macro2", 3425 "quote", 3426 "serde", 3427 "serde_derive", 3428 "serde_json", 3429 "sha1", 3430 "syn 1.0.109", 3431] 3432 3433[[package]] 3434name = "stdweb-internal-runtime" 3435version = "0.1.5" 3436source = "registry+https://github.com/rust-lang/crates.io-index" 3437checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" 3438 3439[[package]] 3440name = "strength_reduce" 3441version = "0.2.4" 3442source = "registry+https://github.com/rust-lang/crates.io-index" 3443checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" 3444 3445[[package]] 3446name = "strsim" 3447version = "0.10.0" 3448source = "registry+https://github.com/rust-lang/crates.io-index" 3449checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3450 3451[[package]] 3452name = "strum" 3453version = "0.26.3" 3454source = "registry+https://github.com/rust-lang/crates.io-index" 3455checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 3456dependencies = [ 3457 "strum_macros", 3458] 3459 3460[[package]] 3461name = "strum_macros" 3462version = "0.26.4" 3463source = "registry+https://github.com/rust-lang/crates.io-index" 3464checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 3465dependencies = [ 3466 "heck", 3467 "proc-macro2", 3468 "quote", 3469 "rustversion", 3470 "syn 2.0.96", 3471] 3472 3473[[package]] 3474name = "subtle" 3475version = "2.4.1" 3476source = "registry+https://github.com/rust-lang/crates.io-index" 3477checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3478 3479[[package]] 3480name = "surf" 3481version = "2.3.2" 3482source = "registry+https://github.com/rust-lang/crates.io-index" 3483checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7" 3484dependencies = [ 3485 "async-std", 3486 "async-trait", 3487 "cfg-if", 3488 "futures-util", 3489 "getrandom 0.2.15", 3490 "http-client", 3491 "http-types", 3492 "log", 3493 "mime_guess", 3494 "once_cell", 3495 "pin-project-lite", 3496 "rustls 0.18.1", 3497 "serde", 3498 "serde_json", 3499] 3500 3501[[package]] 3502name = "symphonia" 3503version = "0.5.4" 3504source = "registry+https://github.com/rust-lang/crates.io-index" 3505checksum = "815c942ae7ee74737bb00f965fa5b5a2ac2ce7b6c01c0cc169bbeaf7abd5f5a9" 3506dependencies = [ 3507 "lazy_static", 3508 "symphonia-bundle-flac", 3509 "symphonia-bundle-mp3", 3510 "symphonia-codec-aac", 3511 "symphonia-codec-adpcm", 3512 "symphonia-codec-alac", 3513 "symphonia-codec-pcm", 3514 "symphonia-codec-vorbis", 3515 "symphonia-core", 3516 "symphonia-format-isomp4", 3517 "symphonia-format-mkv", 3518 "symphonia-format-ogg", 3519 "symphonia-format-riff", 3520 "symphonia-metadata", 3521] 3522 3523[[package]] 3524name = "symphonia-bundle-flac" 3525version = "0.5.4" 3526source = "registry+https://github.com/rust-lang/crates.io-index" 3527checksum = "72e34f34298a7308d4397a6c7fbf5b84c5d491231ce3dd379707ba673ab3bd97" 3528dependencies = [ 3529 "log", 3530 "symphonia-core", 3531 "symphonia-metadata", 3532 "symphonia-utils-xiph", 3533] 3534 3535[[package]] 3536name = "symphonia-bundle-mp3" 3537version = "0.5.4" 3538source = "registry+https://github.com/rust-lang/crates.io-index" 3539checksum = "c01c2aae70f0f1fb096b6f0ff112a930b1fb3626178fba3ae68b09dce71706d4" 3540dependencies = [ 3541 "lazy_static", 3542 "log", 3543 "symphonia-core", 3544 "symphonia-metadata", 3545] 3546 3547[[package]] 3548name = "symphonia-codec-aac" 3549version = "0.5.4" 3550source = "registry+https://github.com/rust-lang/crates.io-index" 3551checksum = "cdbf25b545ad0d3ee3e891ea643ad115aff4ca92f6aec472086b957a58522f70" 3552dependencies = [ 3553 "lazy_static", 3554 "log", 3555 "symphonia-core", 3556] 3557 3558[[package]] 3559name = "symphonia-codec-adpcm" 3560version = "0.5.4" 3561source = "registry+https://github.com/rust-lang/crates.io-index" 3562checksum = "c94e1feac3327cd616e973d5be69ad36b3945f16b06f19c6773fc3ac0b426a0f" 3563dependencies = [ 3564 "log", 3565 "symphonia-core", 3566] 3567 3568[[package]] 3569name = "symphonia-codec-alac" 3570version = "0.5.4" 3571source = "registry+https://github.com/rust-lang/crates.io-index" 3572checksum = "2d8a6666649a08412906476a8b0efd9b9733e241180189e9f92b09c08d0e38f3" 3573dependencies = [ 3574 "log", 3575 "symphonia-core", 3576] 3577 3578[[package]] 3579name = "symphonia-codec-pcm" 3580version = "0.5.4" 3581source = "registry+https://github.com/rust-lang/crates.io-index" 3582checksum = "f395a67057c2ebc5e84d7bb1be71cce1a7ba99f64e0f0f0e303a03f79116f89b" 3583dependencies = [ 3584 "log", 3585 "symphonia-core", 3586] 3587 3588[[package]] 3589name = "symphonia-codec-vorbis" 3590version = "0.5.4" 3591source = "registry+https://github.com/rust-lang/crates.io-index" 3592checksum = "5a98765fb46a0a6732b007f7e2870c2129b6f78d87db7987e6533c8f164a9f30" 3593dependencies = [ 3594 "log", 3595 "symphonia-core", 3596 "symphonia-utils-xiph", 3597] 3598 3599[[package]] 3600name = "symphonia-core" 3601version = "0.5.4" 3602source = "registry+https://github.com/rust-lang/crates.io-index" 3603checksum = "798306779e3dc7d5231bd5691f5a813496dc79d3f56bf82e25789f2094e022c3" 3604dependencies = [ 3605 "arrayvec 0.7.6", 3606 "bitflags 1.3.2", 3607 "bytemuck", 3608 "lazy_static", 3609 "log", 3610] 3611 3612[[package]] 3613name = "symphonia-format-isomp4" 3614version = "0.5.4" 3615source = "registry+https://github.com/rust-lang/crates.io-index" 3616checksum = "abfdf178d697e50ce1e5d9b982ba1b94c47218e03ec35022d9f0e071a16dc844" 3617dependencies = [ 3618 "encoding_rs", 3619 "log", 3620 "symphonia-core", 3621 "symphonia-metadata", 3622 "symphonia-utils-xiph", 3623] 3624 3625[[package]] 3626name = "symphonia-format-mkv" 3627version = "0.5.4" 3628source = "registry+https://github.com/rust-lang/crates.io-index" 3629checksum = "1bb43471a100f7882dc9937395bd5ebee8329298e766250b15b3875652fe3d6f" 3630dependencies = [ 3631 "lazy_static", 3632 "log", 3633 "symphonia-core", 3634 "symphonia-metadata", 3635 "symphonia-utils-xiph", 3636] 3637 3638[[package]] 3639name = "symphonia-format-ogg" 3640version = "0.5.4" 3641source = "registry+https://github.com/rust-lang/crates.io-index" 3642checksum = "ada3505789516bcf00fc1157c67729eded428b455c27ca370e41f4d785bfa931" 3643dependencies = [ 3644 "log", 3645 "symphonia-core", 3646 "symphonia-metadata", 3647 "symphonia-utils-xiph", 3648] 3649 3650[[package]] 3651name = "symphonia-format-riff" 3652version = "0.5.4" 3653source = "registry+https://github.com/rust-lang/crates.io-index" 3654checksum = "05f7be232f962f937f4b7115cbe62c330929345434c834359425e043bfd15f50" 3655dependencies = [ 3656 "extended", 3657 "log", 3658 "symphonia-core", 3659 "symphonia-metadata", 3660] 3661 3662[[package]] 3663name = "symphonia-metadata" 3664version = "0.5.4" 3665source = "registry+https://github.com/rust-lang/crates.io-index" 3666checksum = "bc622b9841a10089c5b18e99eb904f4341615d5aa55bbf4eedde1be721a4023c" 3667dependencies = [ 3668 "encoding_rs", 3669 "lazy_static", 3670 "log", 3671 "symphonia-core", 3672] 3673 3674[[package]] 3675name = "symphonia-utils-xiph" 3676version = "0.5.4" 3677source = "registry+https://github.com/rust-lang/crates.io-index" 3678checksum = "484472580fa49991afda5f6550ece662237b00c6f562c7d9638d1b086ed010fe" 3679dependencies = [ 3680 "symphonia-core", 3681 "symphonia-metadata", 3682] 3683 3684[[package]] 3685name = "syn" 3686version = "1.0.109" 3687source = "registry+https://github.com/rust-lang/crates.io-index" 3688checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3689dependencies = [ 3690 "proc-macro2", 3691 "quote", 3692 "unicode-ident", 3693] 3694 3695[[package]] 3696name = "syn" 3697version = "2.0.96" 3698source = "registry+https://github.com/rust-lang/crates.io-index" 3699checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" 3700dependencies = [ 3701 "proc-macro2", 3702 "quote", 3703 "unicode-ident", 3704] 3705 3706[[package]] 3707name = "sync_wrapper" 3708version = "0.1.2" 3709source = "registry+https://github.com/rust-lang/crates.io-index" 3710checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 3711 3712[[package]] 3713name = "sync_wrapper" 3714version = "1.0.2" 3715source = "registry+https://github.com/rust-lang/crates.io-index" 3716checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3717 3718[[package]] 3719name = "synstructure" 3720version = "0.13.1" 3721source = "registry+https://github.com/rust-lang/crates.io-index" 3722checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 3723dependencies = [ 3724 "proc-macro2", 3725 "quote", 3726 "syn 2.0.96", 3727] 3728 3729[[package]] 3730name = "system-configuration" 3731version = "0.5.1" 3732source = "registry+https://github.com/rust-lang/crates.io-index" 3733checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 3734dependencies = [ 3735 "bitflags 1.3.2", 3736 "core-foundation", 3737 "system-configuration-sys", 3738] 3739 3740[[package]] 3741name = "system-configuration-sys" 3742version = "0.5.0" 3743source = "registry+https://github.com/rust-lang/crates.io-index" 3744checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 3745dependencies = [ 3746 "core-foundation-sys", 3747 "libc", 3748] 3749 3750[[package]] 3751name = "tempfile" 3752version = "3.15.0" 3753source = "registry+https://github.com/rust-lang/crates.io-index" 3754checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" 3755dependencies = [ 3756 "cfg-if", 3757 "fastrand 2.3.0", 3758 "getrandom 0.2.15", 3759 "once_cell", 3760 "rustix 0.38.44", 3761 "windows-sys 0.59.0", 3762] 3763 3764[[package]] 3765name = "termcolor" 3766version = "1.4.1" 3767source = "registry+https://github.com/rust-lang/crates.io-index" 3768checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 3769dependencies = [ 3770 "winapi-util", 3771] 3772 3773[[package]] 3774name = "termion" 3775version = "2.0.3" 3776source = "registry+https://github.com/rust-lang/crates.io-index" 3777checksum = "c4648c7def6f2043b2568617b9f9b75eae88ca185dbc1f1fda30e95a85d49d7d" 3778dependencies = [ 3779 "libc", 3780 "libredox", 3781 "numtoa", 3782 "redox_termios", 3783] 3784 3785[[package]] 3786name = "textwrap" 3787version = "0.16.1" 3788source = "registry+https://github.com/rust-lang/crates.io-index" 3789checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 3790 3791[[package]] 3792name = "thiserror" 3793version = "1.0.69" 3794source = "registry+https://github.com/rust-lang/crates.io-index" 3795checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3796dependencies = [ 3797 "thiserror-impl", 3798] 3799 3800[[package]] 3801name = "thiserror-impl" 3802version = "1.0.69" 3803source = "registry+https://github.com/rust-lang/crates.io-index" 3804checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3805dependencies = [ 3806 "proc-macro2", 3807 "quote", 3808 "syn 2.0.96", 3809] 3810 3811[[package]] 3812name = "time" 3813version = "0.2.27" 3814source = "registry+https://github.com/rust-lang/crates.io-index" 3815checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" 3816dependencies = [ 3817 "const_fn", 3818 "libc", 3819 "standback", 3820 "stdweb", 3821 "time-macros", 3822 "version_check", 3823 "winapi", 3824] 3825 3826[[package]] 3827name = "time-macros" 3828version = "0.1.1" 3829source = "registry+https://github.com/rust-lang/crates.io-index" 3830checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" 3831dependencies = [ 3832 "proc-macro-hack", 3833 "time-macros-impl", 3834] 3835 3836[[package]] 3837name = "time-macros-impl" 3838version = "0.1.2" 3839source = "registry+https://github.com/rust-lang/crates.io-index" 3840checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" 3841dependencies = [ 3842 "proc-macro-hack", 3843 "proc-macro2", 3844 "quote", 3845 "standback", 3846 "syn 1.0.109", 3847] 3848 3849[[package]] 3850name = "tinystr" 3851version = "0.7.6" 3852source = "registry+https://github.com/rust-lang/crates.io-index" 3853checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 3854dependencies = [ 3855 "displaydoc", 3856 "zerovec", 3857] 3858 3859[[package]] 3860name = "tinyvec" 3861version = "1.8.1" 3862source = "registry+https://github.com/rust-lang/crates.io-index" 3863checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" 3864dependencies = [ 3865 "tinyvec_macros", 3866] 3867 3868[[package]] 3869name = "tinyvec_macros" 3870version = "0.1.1" 3871source = "registry+https://github.com/rust-lang/crates.io-index" 3872checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3873 3874[[package]] 3875name = "tokio" 3876version = "1.43.0" 3877source = "registry+https://github.com/rust-lang/crates.io-index" 3878checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" 3879dependencies = [ 3880 "backtrace", 3881 "bytes", 3882 "libc", 3883 "mio 1.0.3", 3884 "pin-project-lite", 3885 "socket2 0.5.8", 3886 "tokio-macros", 3887 "windows-sys 0.52.0", 3888] 3889 3890[[package]] 3891name = "tokio-macros" 3892version = "2.5.0" 3893source = "registry+https://github.com/rust-lang/crates.io-index" 3894checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 3895dependencies = [ 3896 "proc-macro2", 3897 "quote", 3898 "syn 2.0.96", 3899] 3900 3901[[package]] 3902name = "tokio-rustls" 3903version = "0.24.1" 3904source = "registry+https://github.com/rust-lang/crates.io-index" 3905checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 3906dependencies = [ 3907 "rustls 0.21.12", 3908 "tokio", 3909] 3910 3911[[package]] 3912name = "tokio-stream" 3913version = "0.1.17" 3914source = "registry+https://github.com/rust-lang/crates.io-index" 3915checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 3916dependencies = [ 3917 "futures-core", 3918 "pin-project-lite", 3919 "tokio", 3920] 3921 3922[[package]] 3923name = "tokio-util" 3924version = "0.7.13" 3925source = "registry+https://github.com/rust-lang/crates.io-index" 3926checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" 3927dependencies = [ 3928 "bytes", 3929 "futures-core", 3930 "futures-sink", 3931 "pin-project-lite", 3932 "tokio", 3933] 3934 3935[[package]] 3936name = "toml_datetime" 3937version = "0.6.8" 3938source = "registry+https://github.com/rust-lang/crates.io-index" 3939checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 3940 3941[[package]] 3942name = "toml_edit" 3943version = "0.19.15" 3944source = "registry+https://github.com/rust-lang/crates.io-index" 3945checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3946dependencies = [ 3947 "indexmap 2.7.1", 3948 "toml_datetime", 3949 "winnow", 3950] 3951 3952[[package]] 3953name = "tonic" 3954version = "0.12.3" 3955source = "registry+https://github.com/rust-lang/crates.io-index" 3956checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" 3957dependencies = [ 3958 "async-stream", 3959 "async-trait", 3960 "axum", 3961 "base64 0.22.1", 3962 "bytes", 3963 "h2 0.4.7", 3964 "http 1.2.0", 3965 "http-body 1.0.1", 3966 "http-body-util", 3967 "hyper 1.5.2", 3968 "hyper-timeout", 3969 "hyper-util", 3970 "percent-encoding 2.3.1", 3971 "pin-project", 3972 "prost", 3973 "socket2 0.5.8", 3974 "tokio", 3975 "tokio-stream", 3976 "tower 0.4.13", 3977 "tower-layer", 3978 "tower-service", 3979 "tracing", 3980] 3981 3982[[package]] 3983name = "tonic-build" 3984version = "0.12.3" 3985source = "registry+https://github.com/rust-lang/crates.io-index" 3986checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" 3987dependencies = [ 3988 "prettyplease", 3989 "proc-macro2", 3990 "prost-build", 3991 "prost-types", 3992 "quote", 3993 "syn 2.0.96", 3994] 3995 3996[[package]] 3997name = "tonic-reflection" 3998version = "0.12.3" 3999source = "registry+https://github.com/rust-lang/crates.io-index" 4000checksum = "878d81f52e7fcfd80026b7fdb6a9b578b3c3653ba987f87f0dce4b64043cba27" 4001dependencies = [ 4002 "prost", 4003 "prost-types", 4004 "tokio", 4005 "tokio-stream", 4006 "tonic", 4007] 4008 4009[[package]] 4010name = "tonic-web" 4011version = "0.12.3" 4012source = "registry+https://github.com/rust-lang/crates.io-index" 4013checksum = "5299dd20801ad736dccb4a5ea0da7376e59cd98f213bf1c3d478cf53f4834b58" 4014dependencies = [ 4015 "base64 0.22.1", 4016 "bytes", 4017 "http 1.2.0", 4018 "http-body 1.0.1", 4019 "http-body-util", 4020 "pin-project", 4021 "tokio-stream", 4022 "tonic", 4023 "tower-http", 4024 "tower-layer", 4025 "tower-service", 4026 "tracing", 4027] 4028 4029[[package]] 4030name = "tower" 4031version = "0.4.13" 4032source = "registry+https://github.com/rust-lang/crates.io-index" 4033checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 4034dependencies = [ 4035 "futures-core", 4036 "futures-util", 4037 "indexmap 1.9.3", 4038 "pin-project", 4039 "pin-project-lite", 4040 "rand 0.8.5", 4041 "slab", 4042 "tokio", 4043 "tokio-util", 4044 "tower-layer", 4045 "tower-service", 4046 "tracing", 4047] 4048 4049[[package]] 4050name = "tower" 4051version = "0.5.2" 4052source = "registry+https://github.com/rust-lang/crates.io-index" 4053checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 4054dependencies = [ 4055 "futures-core", 4056 "futures-util", 4057 "pin-project-lite", 4058 "sync_wrapper 1.0.2", 4059 "tower-layer", 4060 "tower-service", 4061] 4062 4063[[package]] 4064name = "tower-http" 4065version = "0.5.2" 4066source = "registry+https://github.com/rust-lang/crates.io-index" 4067checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" 4068dependencies = [ 4069 "bitflags 2.8.0", 4070 "bytes", 4071 "http 1.2.0", 4072 "http-body 1.0.1", 4073 "http-body-util", 4074 "pin-project-lite", 4075 "tower-layer", 4076 "tower-service", 4077] 4078 4079[[package]] 4080name = "tower-layer" 4081version = "0.3.3" 4082source = "registry+https://github.com/rust-lang/crates.io-index" 4083checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 4084 4085[[package]] 4086name = "tower-service" 4087version = "0.3.3" 4088source = "registry+https://github.com/rust-lang/crates.io-index" 4089checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 4090 4091[[package]] 4092name = "tracing" 4093version = "0.1.41" 4094source = "registry+https://github.com/rust-lang/crates.io-index" 4095checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 4096dependencies = [ 4097 "pin-project-lite", 4098 "tracing-attributes", 4099 "tracing-core", 4100] 4101 4102[[package]] 4103name = "tracing-attributes" 4104version = "0.1.28" 4105source = "registry+https://github.com/rust-lang/crates.io-index" 4106checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 4107dependencies = [ 4108 "proc-macro2", 4109 "quote", 4110 "syn 2.0.96", 4111] 4112 4113[[package]] 4114name = "tracing-core" 4115version = "0.1.33" 4116source = "registry+https://github.com/rust-lang/crates.io-index" 4117checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 4118dependencies = [ 4119 "once_cell", 4120] 4121 4122[[package]] 4123name = "transpose" 4124version = "0.2.3" 4125source = "registry+https://github.com/rust-lang/crates.io-index" 4126checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e" 4127dependencies = [ 4128 "num-integer", 4129 "strength_reduce", 4130] 4131 4132[[package]] 4133name = "try-lock" 4134version = "0.2.5" 4135source = "registry+https://github.com/rust-lang/crates.io-index" 4136checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4137 4138[[package]] 4139name = "tunein" 4140version = "0.1.3" 4141source = "registry+https://github.com/rust-lang/crates.io-index" 4142checksum = "9d33b9d790869737661ff1f34a95da32a1288373c5b78c66d098cff2df045055" 4143dependencies = [ 4144 "anyhow", 4145 "m3u", 4146 "pls", 4147 "serde", 4148 "serde_json", 4149 "surf", 4150 "tokio", 4151] 4152 4153[[package]] 4154name = "tunein-cli" 4155version = "0.3.1" 4156dependencies = [ 4157 "anyhow", 4158 "async-trait", 4159 "clap", 4160 "cpal", 4161 "crossterm", 4162 "derive_more", 4163 "futures", 4164 "futures-util", 4165 "hyper 0.14.32", 4166 "m3u", 4167 "minimp3", 4168 "owo-colors", 4169 "pls", 4170 "prost", 4171 "radiobrowser", 4172 "ratatui", 4173 "regex", 4174 "reqwest", 4175 "rodio", 4176 "rustfft", 4177 "serde", 4178 "surf", 4179 "symphonia", 4180 "termion", 4181 "thiserror", 4182 "tokio", 4183 "tonic", 4184 "tonic-build", 4185 "tonic-reflection", 4186 "tonic-web", 4187 "tunein", 4188 "url 2.5.4", 4189] 4190 4191[[package]] 4192name = "typenum" 4193version = "1.17.0" 4194source = "registry+https://github.com/rust-lang/crates.io-index" 4195checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 4196 4197[[package]] 4198name = "unicase" 4199version = "2.8.1" 4200source = "registry+https://github.com/rust-lang/crates.io-index" 4201checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 4202 4203[[package]] 4204name = "unicode-bidi" 4205version = "0.3.18" 4206source = "registry+https://github.com/rust-lang/crates.io-index" 4207checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 4208 4209[[package]] 4210name = "unicode-ident" 4211version = "1.0.15" 4212source = "registry+https://github.com/rust-lang/crates.io-index" 4213checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243" 4214 4215[[package]] 4216name = "unicode-normalization" 4217version = "0.1.24" 4218source = "registry+https://github.com/rust-lang/crates.io-index" 4219checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 4220dependencies = [ 4221 "tinyvec", 4222] 4223 4224[[package]] 4225name = "unicode-segmentation" 4226version = "1.12.0" 4227source = "registry+https://github.com/rust-lang/crates.io-index" 4228checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 4229 4230[[package]] 4231name = "unicode-truncate" 4232version = "1.1.0" 4233source = "registry+https://github.com/rust-lang/crates.io-index" 4234checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" 4235dependencies = [ 4236 "itertools 0.13.0", 4237 "unicode-segmentation", 4238 "unicode-width", 4239] 4240 4241[[package]] 4242name = "unicode-width" 4243version = "0.1.14" 4244source = "registry+https://github.com/rust-lang/crates.io-index" 4245checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 4246 4247[[package]] 4248name = "universal-hash" 4249version = "0.4.1" 4250source = "registry+https://github.com/rust-lang/crates.io-index" 4251checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 4252dependencies = [ 4253 "generic-array", 4254 "subtle", 4255] 4256 4257[[package]] 4258name = "untrusted" 4259version = "0.7.1" 4260source = "registry+https://github.com/rust-lang/crates.io-index" 4261checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4262 4263[[package]] 4264name = "untrusted" 4265version = "0.9.0" 4266source = "registry+https://github.com/rust-lang/crates.io-index" 4267checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4268 4269[[package]] 4270name = "url" 4271version = "1.7.2" 4272source = "registry+https://github.com/rust-lang/crates.io-index" 4273checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 4274dependencies = [ 4275 "idna 0.1.5", 4276 "matches", 4277 "percent-encoding 1.0.1", 4278] 4279 4280[[package]] 4281name = "url" 4282version = "2.5.4" 4283source = "registry+https://github.com/rust-lang/crates.io-index" 4284checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 4285dependencies = [ 4286 "form_urlencoded", 4287 "idna 1.0.3", 4288 "percent-encoding 2.3.1", 4289 "serde", 4290] 4291 4292[[package]] 4293name = "utf16_iter" 4294version = "1.0.5" 4295source = "registry+https://github.com/rust-lang/crates.io-index" 4296checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 4297 4298[[package]] 4299name = "utf8_iter" 4300version = "1.0.4" 4301source = "registry+https://github.com/rust-lang/crates.io-index" 4302checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 4303 4304[[package]] 4305name = "value-bag" 4306version = "1.10.0" 4307source = "registry+https://github.com/rust-lang/crates.io-index" 4308checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2" 4309 4310[[package]] 4311name = "version_check" 4312version = "0.9.5" 4313source = "registry+https://github.com/rust-lang/crates.io-index" 4314checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 4315 4316[[package]] 4317name = "waker-fn" 4318version = "1.2.0" 4319source = "registry+https://github.com/rust-lang/crates.io-index" 4320checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 4321 4322[[package]] 4323name = "walkdir" 4324version = "2.5.0" 4325source = "registry+https://github.com/rust-lang/crates.io-index" 4326checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 4327dependencies = [ 4328 "same-file", 4329 "winapi-util", 4330] 4331 4332[[package]] 4333name = "want" 4334version = "0.3.1" 4335source = "registry+https://github.com/rust-lang/crates.io-index" 4336checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 4337dependencies = [ 4338 "try-lock", 4339] 4340 4341[[package]] 4342name = "wasi" 4343version = "0.9.0+wasi-snapshot-preview1" 4344source = "registry+https://github.com/rust-lang/crates.io-index" 4345checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4346 4347[[package]] 4348name = "wasi" 4349version = "0.11.0+wasi-snapshot-preview1" 4350source = "registry+https://github.com/rust-lang/crates.io-index" 4351checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4352 4353[[package]] 4354name = "wasm-bindgen" 4355version = "0.2.100" 4356source = "registry+https://github.com/rust-lang/crates.io-index" 4357checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 4358dependencies = [ 4359 "cfg-if", 4360 "once_cell", 4361 "rustversion", 4362 "wasm-bindgen-macro", 4363] 4364 4365[[package]] 4366name = "wasm-bindgen-backend" 4367version = "0.2.100" 4368source = "registry+https://github.com/rust-lang/crates.io-index" 4369checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 4370dependencies = [ 4371 "bumpalo", 4372 "log", 4373 "proc-macro2", 4374 "quote", 4375 "syn 2.0.96", 4376 "wasm-bindgen-shared", 4377] 4378 4379[[package]] 4380name = "wasm-bindgen-futures" 4381version = "0.4.50" 4382source = "registry+https://github.com/rust-lang/crates.io-index" 4383checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 4384dependencies = [ 4385 "cfg-if", 4386 "js-sys", 4387 "once_cell", 4388 "wasm-bindgen", 4389 "web-sys", 4390] 4391 4392[[package]] 4393name = "wasm-bindgen-macro" 4394version = "0.2.100" 4395source = "registry+https://github.com/rust-lang/crates.io-index" 4396checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 4397dependencies = [ 4398 "quote", 4399 "wasm-bindgen-macro-support", 4400] 4401 4402[[package]] 4403name = "wasm-bindgen-macro-support" 4404version = "0.2.100" 4405source = "registry+https://github.com/rust-lang/crates.io-index" 4406checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 4407dependencies = [ 4408 "proc-macro2", 4409 "quote", 4410 "syn 2.0.96", 4411 "wasm-bindgen-backend", 4412 "wasm-bindgen-shared", 4413] 4414 4415[[package]] 4416name = "wasm-bindgen-shared" 4417version = "0.2.100" 4418source = "registry+https://github.com/rust-lang/crates.io-index" 4419checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 4420dependencies = [ 4421 "unicode-ident", 4422] 4423 4424[[package]] 4425name = "web-sys" 4426version = "0.3.77" 4427source = "registry+https://github.com/rust-lang/crates.io-index" 4428checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 4429dependencies = [ 4430 "js-sys", 4431 "wasm-bindgen", 4432] 4433 4434[[package]] 4435name = "webpki" 4436version = "0.21.4" 4437source = "registry+https://github.com/rust-lang/crates.io-index" 4438checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" 4439dependencies = [ 4440 "ring 0.16.20", 4441 "untrusted 0.7.1", 4442] 4443 4444[[package]] 4445name = "webpki-roots" 4446version = "0.20.0" 4447source = "registry+https://github.com/rust-lang/crates.io-index" 4448checksum = "0f20dea7535251981a9670857150d571846545088359b28e4951d350bdaf179f" 4449dependencies = [ 4450 "webpki", 4451] 4452 4453[[package]] 4454name = "webpki-roots" 4455version = "0.25.4" 4456source = "registry+https://github.com/rust-lang/crates.io-index" 4457checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 4458 4459[[package]] 4460name = "widestring" 4461version = "1.1.0" 4462source = "registry+https://github.com/rust-lang/crates.io-index" 4463checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 4464 4465[[package]] 4466name = "winapi" 4467version = "0.3.9" 4468source = "registry+https://github.com/rust-lang/crates.io-index" 4469checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4470dependencies = [ 4471 "winapi-i686-pc-windows-gnu", 4472 "winapi-x86_64-pc-windows-gnu", 4473] 4474 4475[[package]] 4476name = "winapi-i686-pc-windows-gnu" 4477version = "0.4.0" 4478source = "registry+https://github.com/rust-lang/crates.io-index" 4479checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4480 4481[[package]] 4482name = "winapi-util" 4483version = "0.1.9" 4484source = "registry+https://github.com/rust-lang/crates.io-index" 4485checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 4486dependencies = [ 4487 "windows-sys 0.59.0", 4488] 4489 4490[[package]] 4491name = "winapi-x86_64-pc-windows-gnu" 4492version = "0.4.0" 4493source = "registry+https://github.com/rust-lang/crates.io-index" 4494checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4495 4496[[package]] 4497name = "windows" 4498version = "0.37.0" 4499source = "registry+https://github.com/rust-lang/crates.io-index" 4500checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 4501dependencies = [ 4502 "windows_aarch64_msvc 0.37.0", 4503 "windows_i686_gnu 0.37.0", 4504 "windows_i686_msvc 0.37.0", 4505 "windows_x86_64_gnu 0.37.0", 4506 "windows_x86_64_msvc 0.37.0", 4507] 4508 4509[[package]] 4510name = "windows-core" 4511version = "0.52.0" 4512source = "registry+https://github.com/rust-lang/crates.io-index" 4513checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4514dependencies = [ 4515 "windows-targets 0.52.6", 4516] 4517 4518[[package]] 4519name = "windows-sys" 4520version = "0.48.0" 4521source = "registry+https://github.com/rust-lang/crates.io-index" 4522checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4523dependencies = [ 4524 "windows-targets 0.48.5", 4525] 4526 4527[[package]] 4528name = "windows-sys" 4529version = "0.52.0" 4530source = "registry+https://github.com/rust-lang/crates.io-index" 4531checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4532dependencies = [ 4533 "windows-targets 0.52.6", 4534] 4535 4536[[package]] 4537name = "windows-sys" 4538version = "0.59.0" 4539source = "registry+https://github.com/rust-lang/crates.io-index" 4540checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 4541dependencies = [ 4542 "windows-targets 0.52.6", 4543] 4544 4545[[package]] 4546name = "windows-targets" 4547version = "0.48.5" 4548source = "registry+https://github.com/rust-lang/crates.io-index" 4549checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4550dependencies = [ 4551 "windows_aarch64_gnullvm 0.48.5", 4552 "windows_aarch64_msvc 0.48.5", 4553 "windows_i686_gnu 0.48.5", 4554 "windows_i686_msvc 0.48.5", 4555 "windows_x86_64_gnu 0.48.5", 4556 "windows_x86_64_gnullvm 0.48.5", 4557 "windows_x86_64_msvc 0.48.5", 4558] 4559 4560[[package]] 4561name = "windows-targets" 4562version = "0.52.6" 4563source = "registry+https://github.com/rust-lang/crates.io-index" 4564checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4565dependencies = [ 4566 "windows_aarch64_gnullvm 0.52.6", 4567 "windows_aarch64_msvc 0.52.6", 4568 "windows_i686_gnu 0.52.6", 4569 "windows_i686_gnullvm", 4570 "windows_i686_msvc 0.52.6", 4571 "windows_x86_64_gnu 0.52.6", 4572 "windows_x86_64_gnullvm 0.52.6", 4573 "windows_x86_64_msvc 0.52.6", 4574] 4575 4576[[package]] 4577name = "windows_aarch64_gnullvm" 4578version = "0.48.5" 4579source = "registry+https://github.com/rust-lang/crates.io-index" 4580checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4581 4582[[package]] 4583name = "windows_aarch64_gnullvm" 4584version = "0.52.6" 4585source = "registry+https://github.com/rust-lang/crates.io-index" 4586checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4587 4588[[package]] 4589name = "windows_aarch64_msvc" 4590version = "0.37.0" 4591source = "registry+https://github.com/rust-lang/crates.io-index" 4592checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 4593 4594[[package]] 4595name = "windows_aarch64_msvc" 4596version = "0.48.5" 4597source = "registry+https://github.com/rust-lang/crates.io-index" 4598checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4599 4600[[package]] 4601name = "windows_aarch64_msvc" 4602version = "0.52.6" 4603source = "registry+https://github.com/rust-lang/crates.io-index" 4604checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4605 4606[[package]] 4607name = "windows_i686_gnu" 4608version = "0.37.0" 4609source = "registry+https://github.com/rust-lang/crates.io-index" 4610checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 4611 4612[[package]] 4613name = "windows_i686_gnu" 4614version = "0.48.5" 4615source = "registry+https://github.com/rust-lang/crates.io-index" 4616checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4617 4618[[package]] 4619name = "windows_i686_gnu" 4620version = "0.52.6" 4621source = "registry+https://github.com/rust-lang/crates.io-index" 4622checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4623 4624[[package]] 4625name = "windows_i686_gnullvm" 4626version = "0.52.6" 4627source = "registry+https://github.com/rust-lang/crates.io-index" 4628checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4629 4630[[package]] 4631name = "windows_i686_msvc" 4632version = "0.37.0" 4633source = "registry+https://github.com/rust-lang/crates.io-index" 4634checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 4635 4636[[package]] 4637name = "windows_i686_msvc" 4638version = "0.48.5" 4639source = "registry+https://github.com/rust-lang/crates.io-index" 4640checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4641 4642[[package]] 4643name = "windows_i686_msvc" 4644version = "0.52.6" 4645source = "registry+https://github.com/rust-lang/crates.io-index" 4646checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4647 4648[[package]] 4649name = "windows_x86_64_gnu" 4650version = "0.37.0" 4651source = "registry+https://github.com/rust-lang/crates.io-index" 4652checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 4653 4654[[package]] 4655name = "windows_x86_64_gnu" 4656version = "0.48.5" 4657source = "registry+https://github.com/rust-lang/crates.io-index" 4658checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4659 4660[[package]] 4661name = "windows_x86_64_gnu" 4662version = "0.52.6" 4663source = "registry+https://github.com/rust-lang/crates.io-index" 4664checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4665 4666[[package]] 4667name = "windows_x86_64_gnullvm" 4668version = "0.48.5" 4669source = "registry+https://github.com/rust-lang/crates.io-index" 4670checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4671 4672[[package]] 4673name = "windows_x86_64_gnullvm" 4674version = "0.52.6" 4675source = "registry+https://github.com/rust-lang/crates.io-index" 4676checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4677 4678[[package]] 4679name = "windows_x86_64_msvc" 4680version = "0.37.0" 4681source = "registry+https://github.com/rust-lang/crates.io-index" 4682checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 4683 4684[[package]] 4685name = "windows_x86_64_msvc" 4686version = "0.48.5" 4687source = "registry+https://github.com/rust-lang/crates.io-index" 4688checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4689 4690[[package]] 4691name = "windows_x86_64_msvc" 4692version = "0.52.6" 4693source = "registry+https://github.com/rust-lang/crates.io-index" 4694checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4695 4696[[package]] 4697name = "winnow" 4698version = "0.5.40" 4699source = "registry+https://github.com/rust-lang/crates.io-index" 4700checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 4701dependencies = [ 4702 "memchr", 4703] 4704 4705[[package]] 4706name = "winreg" 4707version = "0.50.0" 4708source = "registry+https://github.com/rust-lang/crates.io-index" 4709checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4710dependencies = [ 4711 "cfg-if", 4712 "windows-sys 0.48.0", 4713] 4714 4715[[package]] 4716name = "write16" 4717version = "1.0.0" 4718source = "registry+https://github.com/rust-lang/crates.io-index" 4719checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 4720 4721[[package]] 4722name = "writeable" 4723version = "0.5.5" 4724source = "registry+https://github.com/rust-lang/crates.io-index" 4725checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 4726 4727[[package]] 4728name = "yoke" 4729version = "0.7.5" 4730source = "registry+https://github.com/rust-lang/crates.io-index" 4731checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 4732dependencies = [ 4733 "serde", 4734 "stable_deref_trait", 4735 "yoke-derive", 4736 "zerofrom", 4737] 4738 4739[[package]] 4740name = "yoke-derive" 4741version = "0.7.5" 4742source = "registry+https://github.com/rust-lang/crates.io-index" 4743checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 4744dependencies = [ 4745 "proc-macro2", 4746 "quote", 4747 "syn 2.0.96", 4748 "synstructure", 4749] 4750 4751[[package]] 4752name = "zerocopy" 4753version = "0.7.35" 4754source = "registry+https://github.com/rust-lang/crates.io-index" 4755checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 4756dependencies = [ 4757 "byteorder", 4758 "zerocopy-derive", 4759] 4760 4761[[package]] 4762name = "zerocopy-derive" 4763version = "0.7.35" 4764source = "registry+https://github.com/rust-lang/crates.io-index" 4765checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 4766dependencies = [ 4767 "proc-macro2", 4768 "quote", 4769 "syn 2.0.96", 4770] 4771 4772[[package]] 4773name = "zerofrom" 4774version = "0.1.5" 4775source = "registry+https://github.com/rust-lang/crates.io-index" 4776checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" 4777dependencies = [ 4778 "zerofrom-derive", 4779] 4780 4781[[package]] 4782name = "zerofrom-derive" 4783version = "0.1.5" 4784source = "registry+https://github.com/rust-lang/crates.io-index" 4785checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" 4786dependencies = [ 4787 "proc-macro2", 4788 "quote", 4789 "syn 2.0.96", 4790 "synstructure", 4791] 4792 4793[[package]] 4794name = "zerovec" 4795version = "0.10.4" 4796source = "registry+https://github.com/rust-lang/crates.io-index" 4797checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 4798dependencies = [ 4799 "yoke", 4800 "zerofrom", 4801 "zerovec-derive", 4802] 4803 4804[[package]] 4805name = "zerovec-derive" 4806version = "0.10.3" 4807source = "registry+https://github.com/rust-lang/crates.io-index" 4808checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 4809dependencies = [ 4810 "proc-macro2", 4811 "quote", 4812 "syn 2.0.96", 4813]