Headless Rust gRPC daemon to drive Bluetooth, HLS/DASH playback, and snapcast/shairport-sync/squeezelite on Raspberry Pi audio rigs.
0

Configure Feed

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

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