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
110 kB 4501 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 1.1.4", 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 1.1.4", 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 1.1.4", 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 = "flume" 967version = "0.11.1" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 970dependencies = [ 971 "futures-core", 972 "futures-sink", 973 "spin", 974] 975 976[[package]] 977name = "fnv" 978version = "1.0.7" 979source = "registry+https://github.com/rust-lang/crates.io-index" 980checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 981 982[[package]] 983name = "foldhash" 984version = "0.1.5" 985source = "registry+https://github.com/rust-lang/crates.io-index" 986checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 987 988[[package]] 989name = "form_urlencoded" 990version = "1.2.2" 991source = "registry+https://github.com/rust-lang/crates.io-index" 992checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 993dependencies = [ 994 "percent-encoding", 995] 996 997[[package]] 998name = "fs-err" 999version = "3.3.0" 1000source = "registry+https://github.com/rust-lang/crates.io-index" 1001checksum = "73fde052dbfc920003cfd2c8e2c6e6d4cc7c1091538c3a24226cec0665ab08c0" 1002dependencies = [ 1003 "autocfg", 1004] 1005 1006[[package]] 1007name = "futures" 1008version = "0.3.32" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 1011dependencies = [ 1012 "futures-channel", 1013 "futures-core", 1014 "futures-executor", 1015 "futures-io", 1016 "futures-sink", 1017 "futures-task", 1018 "futures-util", 1019] 1020 1021[[package]] 1022name = "futures-channel" 1023version = "0.3.32" 1024source = "registry+https://github.com/rust-lang/crates.io-index" 1025checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 1026dependencies = [ 1027 "futures-core", 1028 "futures-sink", 1029] 1030 1031[[package]] 1032name = "futures-core" 1033version = "0.3.32" 1034source = "registry+https://github.com/rust-lang/crates.io-index" 1035checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 1036 1037[[package]] 1038name = "futures-executor" 1039version = "0.3.32" 1040source = "registry+https://github.com/rust-lang/crates.io-index" 1041checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 1042dependencies = [ 1043 "futures-core", 1044 "futures-task", 1045 "futures-util", 1046] 1047 1048[[package]] 1049name = "futures-io" 1050version = "0.3.32" 1051source = "registry+https://github.com/rust-lang/crates.io-index" 1052checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 1053 1054[[package]] 1055name = "futures-lite" 1056version = "2.6.1" 1057source = "registry+https://github.com/rust-lang/crates.io-index" 1058checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1059dependencies = [ 1060 "fastrand", 1061 "futures-core", 1062 "futures-io", 1063 "parking", 1064 "pin-project-lite", 1065] 1066 1067[[package]] 1068name = "futures-macro" 1069version = "0.3.32" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 1072dependencies = [ 1073 "proc-macro2", 1074 "quote", 1075 "syn 2.0.117", 1076] 1077 1078[[package]] 1079name = "futures-sink" 1080version = "0.3.32" 1081source = "registry+https://github.com/rust-lang/crates.io-index" 1082checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 1083 1084[[package]] 1085name = "futures-task" 1086version = "0.3.32" 1087source = "registry+https://github.com/rust-lang/crates.io-index" 1088checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 1089 1090[[package]] 1091name = "futures-util" 1092version = "0.3.32" 1093source = "registry+https://github.com/rust-lang/crates.io-index" 1094checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 1095dependencies = [ 1096 "futures-channel", 1097 "futures-core", 1098 "futures-io", 1099 "futures-macro", 1100 "futures-sink", 1101 "futures-task", 1102 "memchr", 1103 "pin-project-lite", 1104 "slab", 1105] 1106 1107[[package]] 1108name = "generic-array" 1109version = "0.14.7" 1110source = "registry+https://github.com/rust-lang/crates.io-index" 1111checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1112dependencies = [ 1113 "typenum", 1114 "version_check", 1115] 1116 1117[[package]] 1118name = "gethostname" 1119version = "0.5.0" 1120source = "registry+https://github.com/rust-lang/crates.io-index" 1121checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" 1122dependencies = [ 1123 "rustix 0.38.44", 1124 "windows-targets 0.52.6", 1125] 1126 1127[[package]] 1128name = "getrandom" 1129version = "0.2.17" 1130source = "registry+https://github.com/rust-lang/crates.io-index" 1131checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1132dependencies = [ 1133 "cfg-if", 1134 "js-sys", 1135 "libc", 1136 "wasi", 1137 "wasm-bindgen", 1138] 1139 1140[[package]] 1141name = "getrandom" 1142version = "0.3.4" 1143source = "registry+https://github.com/rust-lang/crates.io-index" 1144checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1145dependencies = [ 1146 "cfg-if", 1147 "js-sys", 1148 "libc", 1149 "r-efi 5.3.0", 1150 "wasip2", 1151 "wasm-bindgen", 1152] 1153 1154[[package]] 1155name = "getrandom" 1156version = "0.4.2" 1157source = "registry+https://github.com/rust-lang/crates.io-index" 1158checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" 1159dependencies = [ 1160 "cfg-if", 1161 "libc", 1162 "r-efi 6.0.0", 1163 "wasip2", 1164 "wasip3", 1165] 1166 1167[[package]] 1168name = "glob" 1169version = "0.3.3" 1170source = "registry+https://github.com/rust-lang/crates.io-index" 1171checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 1172 1173[[package]] 1174name = "h2" 1175version = "0.4.14" 1176source = "registry+https://github.com/rust-lang/crates.io-index" 1177checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733" 1178dependencies = [ 1179 "atomic-waker", 1180 "bytes", 1181 "fnv", 1182 "futures-core", 1183 "futures-sink", 1184 "http", 1185 "indexmap 2.14.0", 1186 "slab", 1187 "tokio", 1188 "tokio-util", 1189 "tracing", 1190] 1191 1192[[package]] 1193name = "hashbrown" 1194version = "0.12.3" 1195source = "registry+https://github.com/rust-lang/crates.io-index" 1196checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1197 1198[[package]] 1199name = "hashbrown" 1200version = "0.15.5" 1201source = "registry+https://github.com/rust-lang/crates.io-index" 1202checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1203dependencies = [ 1204 "foldhash", 1205] 1206 1207[[package]] 1208name = "hashbrown" 1209version = "0.17.1" 1210source = "registry+https://github.com/rust-lang/crates.io-index" 1211checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" 1212 1213[[package]] 1214name = "heck" 1215version = "0.5.0" 1216source = "registry+https://github.com/rust-lang/crates.io-index" 1217checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1218 1219[[package]] 1220name = "hermit-abi" 1221version = "0.5.2" 1222source = "registry+https://github.com/rust-lang/crates.io-index" 1223checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1224 1225[[package]] 1226name = "hex" 1227version = "0.4.3" 1228source = "registry+https://github.com/rust-lang/crates.io-index" 1229checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1230 1231[[package]] 1232name = "http" 1233version = "1.4.2" 1234source = "registry+https://github.com/rust-lang/crates.io-index" 1235checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" 1236dependencies = [ 1237 "bytes", 1238 "itoa", 1239] 1240 1241[[package]] 1242name = "http-body" 1243version = "1.0.1" 1244source = "registry+https://github.com/rust-lang/crates.io-index" 1245checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1246dependencies = [ 1247 "bytes", 1248 "http", 1249] 1250 1251[[package]] 1252name = "http-body-util" 1253version = "0.1.3" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1256dependencies = [ 1257 "bytes", 1258 "futures-core", 1259 "http", 1260 "http-body", 1261 "pin-project-lite", 1262] 1263 1264[[package]] 1265name = "httparse" 1266version = "1.10.1" 1267source = "registry+https://github.com/rust-lang/crates.io-index" 1268checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1269 1270[[package]] 1271name = "httpdate" 1272version = "1.0.3" 1273source = "registry+https://github.com/rust-lang/crates.io-index" 1274checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1275 1276[[package]] 1277name = "hxdmp" 1278version = "0.2.1" 1279source = "registry+https://github.com/rust-lang/crates.io-index" 1280checksum = "a17b27f28a7466846baca75f0a5244e546e44178eb7f1c07a3820f413e91c6b0" 1281 1282[[package]] 1283name = "hyper" 1284version = "1.10.1" 1285source = "registry+https://github.com/rust-lang/crates.io-index" 1286checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" 1287dependencies = [ 1288 "atomic-waker", 1289 "bytes", 1290 "futures-channel", 1291 "futures-core", 1292 "h2", 1293 "http", 1294 "http-body", 1295 "httparse", 1296 "httpdate", 1297 "itoa", 1298 "pin-project-lite", 1299 "smallvec", 1300 "tokio", 1301 "want", 1302] 1303 1304[[package]] 1305name = "hyper-rustls" 1306version = "0.27.9" 1307source = "registry+https://github.com/rust-lang/crates.io-index" 1308checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" 1309dependencies = [ 1310 "http", 1311 "hyper", 1312 "hyper-util", 1313 "rustls", 1314 "rustls-native-certs", 1315 "tokio", 1316 "tokio-rustls", 1317 "tower-service", 1318] 1319 1320[[package]] 1321name = "hyper-timeout" 1322version = "0.5.2" 1323source = "registry+https://github.com/rust-lang/crates.io-index" 1324checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" 1325dependencies = [ 1326 "hyper", 1327 "hyper-util", 1328 "pin-project-lite", 1329 "tokio", 1330 "tower-service", 1331] 1332 1333[[package]] 1334name = "hyper-util" 1335version = "0.1.20" 1336source = "registry+https://github.com/rust-lang/crates.io-index" 1337checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 1338dependencies = [ 1339 "base64", 1340 "bytes", 1341 "futures-channel", 1342 "futures-util", 1343 "http", 1344 "http-body", 1345 "hyper", 1346 "ipnet", 1347 "libc", 1348 "percent-encoding", 1349 "pin-project-lite", 1350 "socket2 0.6.4", 1351 "tokio", 1352 "tower-service", 1353 "tracing", 1354] 1355 1356[[package]] 1357name = "iana-time-zone" 1358version = "0.1.65" 1359source = "registry+https://github.com/rust-lang/crates.io-index" 1360checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 1361dependencies = [ 1362 "android_system_properties", 1363 "core-foundation-sys", 1364 "iana-time-zone-haiku", 1365 "js-sys", 1366 "log", 1367 "wasm-bindgen", 1368 "windows-core 0.62.2", 1369] 1370 1371[[package]] 1372name = "iana-time-zone-haiku" 1373version = "0.1.2" 1374source = "registry+https://github.com/rust-lang/crates.io-index" 1375checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1376dependencies = [ 1377 "cc", 1378] 1379 1380[[package]] 1381name = "icu_collections" 1382version = "2.2.0" 1383source = "registry+https://github.com/rust-lang/crates.io-index" 1384checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" 1385dependencies = [ 1386 "displaydoc", 1387 "potential_utf", 1388 "utf8_iter", 1389 "yoke", 1390 "zerofrom", 1391 "zerovec", 1392] 1393 1394[[package]] 1395name = "icu_locale_core" 1396version = "2.2.0" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" 1399dependencies = [ 1400 "displaydoc", 1401 "litemap", 1402 "tinystr", 1403 "writeable", 1404 "zerovec", 1405] 1406 1407[[package]] 1408name = "icu_normalizer" 1409version = "2.2.0" 1410source = "registry+https://github.com/rust-lang/crates.io-index" 1411checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" 1412dependencies = [ 1413 "icu_collections", 1414 "icu_normalizer_data", 1415 "icu_properties", 1416 "icu_provider", 1417 "smallvec", 1418 "zerovec", 1419] 1420 1421[[package]] 1422name = "icu_normalizer_data" 1423version = "2.2.0" 1424source = "registry+https://github.com/rust-lang/crates.io-index" 1425checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" 1426 1427[[package]] 1428name = "icu_properties" 1429version = "2.2.0" 1430source = "registry+https://github.com/rust-lang/crates.io-index" 1431checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" 1432dependencies = [ 1433 "icu_collections", 1434 "icu_locale_core", 1435 "icu_properties_data", 1436 "icu_provider", 1437 "zerotrie", 1438 "zerovec", 1439] 1440 1441[[package]] 1442name = "icu_properties_data" 1443version = "2.2.0" 1444source = "registry+https://github.com/rust-lang/crates.io-index" 1445checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" 1446 1447[[package]] 1448name = "icu_provider" 1449version = "2.2.0" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" 1452dependencies = [ 1453 "displaydoc", 1454 "icu_locale_core", 1455 "writeable", 1456 "yoke", 1457 "zerofrom", 1458 "zerotrie", 1459 "zerovec", 1460] 1461 1462[[package]] 1463name = "id-arena" 1464version = "2.3.0" 1465source = "registry+https://github.com/rust-lang/crates.io-index" 1466checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 1467 1468[[package]] 1469name = "ident_case" 1470version = "1.0.1" 1471source = "registry+https://github.com/rust-lang/crates.io-index" 1472checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1473 1474[[package]] 1475name = "idna" 1476version = "1.1.0" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1479dependencies = [ 1480 "idna_adapter", 1481 "smallvec", 1482 "utf8_iter", 1483] 1484 1485[[package]] 1486name = "idna_adapter" 1487version = "1.2.2" 1488source = "registry+https://github.com/rust-lang/crates.io-index" 1489checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" 1490dependencies = [ 1491 "icu_normalizer", 1492 "icu_properties", 1493] 1494 1495[[package]] 1496name = "if-addrs" 1497version = "0.15.0" 1498source = "registry+https://github.com/rust-lang/crates.io-index" 1499checksum = "c0a05c691e1fae256cf7013d99dad472dc52d5543322761f83ec8d47eab40d2b" 1500dependencies = [ 1501 "libc", 1502 "windows-sys 0.61.2", 1503] 1504 1505[[package]] 1506name = "indexmap" 1507version = "1.9.3" 1508source = "registry+https://github.com/rust-lang/crates.io-index" 1509checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1510dependencies = [ 1511 "autocfg", 1512 "hashbrown 0.12.3", 1513 "serde", 1514] 1515 1516[[package]] 1517name = "indexmap" 1518version = "2.14.0" 1519source = "registry+https://github.com/rust-lang/crates.io-index" 1520checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" 1521dependencies = [ 1522 "equivalent", 1523 "hashbrown 0.17.1", 1524 "serde", 1525 "serde_core", 1526] 1527 1528[[package]] 1529name = "ipnet" 1530version = "2.12.0" 1531source = "registry+https://github.com/rust-lang/crates.io-index" 1532checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" 1533 1534[[package]] 1535name = "is_terminal_polyfill" 1536version = "1.70.2" 1537source = "registry+https://github.com/rust-lang/crates.io-index" 1538checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 1539 1540[[package]] 1541name = "iso8601" 1542version = "0.6.3" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "e1082f0c48f143442a1ac6122f67e360ceee130b967af4d50996e5154a45df46" 1545dependencies = [ 1546 "nom 8.0.0", 1547] 1548 1549[[package]] 1550name = "itertools" 1551version = "0.13.0" 1552source = "registry+https://github.com/rust-lang/crates.io-index" 1553checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1554dependencies = [ 1555 "either", 1556] 1557 1558[[package]] 1559name = "itertools" 1560version = "0.14.0" 1561source = "registry+https://github.com/rust-lang/crates.io-index" 1562checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 1563dependencies = [ 1564 "either", 1565] 1566 1567[[package]] 1568name = "itoa" 1569version = "1.0.18" 1570source = "registry+https://github.com/rust-lang/crates.io-index" 1571checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 1572 1573[[package]] 1574name = "jni" 1575version = "0.21.1" 1576source = "registry+https://github.com/rust-lang/crates.io-index" 1577checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1578dependencies = [ 1579 "cesu8", 1580 "cfg-if", 1581 "combine", 1582 "jni-sys 0.3.1", 1583 "log", 1584 "thiserror 1.0.69", 1585 "walkdir", 1586 "windows-sys 0.45.0", 1587] 1588 1589[[package]] 1590name = "jni-sys" 1591version = "0.3.1" 1592source = "registry+https://github.com/rust-lang/crates.io-index" 1593checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" 1594dependencies = [ 1595 "jni-sys 0.4.1", 1596] 1597 1598[[package]] 1599name = "jni-sys" 1600version = "0.4.1" 1601source = "registry+https://github.com/rust-lang/crates.io-index" 1602checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" 1603dependencies = [ 1604 "jni-sys-macros", 1605] 1606 1607[[package]] 1608name = "jni-sys-macros" 1609version = "0.4.1" 1610source = "registry+https://github.com/rust-lang/crates.io-index" 1611checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" 1612dependencies = [ 1613 "quote", 1614 "syn 2.0.117", 1615] 1616 1617[[package]] 1618name = "jobserver" 1619version = "0.1.34" 1620source = "registry+https://github.com/rust-lang/crates.io-index" 1621checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 1622dependencies = [ 1623 "getrandom 0.3.4", 1624 "libc", 1625] 1626 1627[[package]] 1628name = "js-sys" 1629version = "0.3.100" 1630source = "registry+https://github.com/rust-lang/crates.io-index" 1631checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162" 1632dependencies = [ 1633 "cfg-if", 1634 "futures-util", 1635 "wasm-bindgen", 1636] 1637 1638[[package]] 1639name = "lazy_static" 1640version = "1.5.0" 1641source = "registry+https://github.com/rust-lang/crates.io-index" 1642checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1643 1644[[package]] 1645name = "leb128fmt" 1646version = "0.1.0" 1647source = "registry+https://github.com/rust-lang/crates.io-index" 1648checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 1649 1650[[package]] 1651name = "libc" 1652version = "0.2.186" 1653source = "registry+https://github.com/rust-lang/crates.io-index" 1654checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" 1655 1656[[package]] 1657name = "libdbus-sys" 1658version = "0.2.7" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043" 1661dependencies = [ 1662 "pkg-config", 1663] 1664 1665[[package]] 1666name = "libloading" 1667version = "0.8.9" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" 1670dependencies = [ 1671 "cfg-if", 1672 "windows-link", 1673] 1674 1675[[package]] 1676name = "linux-raw-sys" 1677version = "0.4.15" 1678source = "registry+https://github.com/rust-lang/crates.io-index" 1679checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 1680 1681[[package]] 1682name = "linux-raw-sys" 1683version = "0.12.1" 1684source = "registry+https://github.com/rust-lang/crates.io-index" 1685checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 1686 1687[[package]] 1688name = "litemap" 1689version = "0.8.2" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" 1692 1693[[package]] 1694name = "lock_api" 1695version = "0.4.14" 1696source = "registry+https://github.com/rust-lang/crates.io-index" 1697checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1698dependencies = [ 1699 "scopeguard", 1700] 1701 1702[[package]] 1703name = "log" 1704version = "0.4.32" 1705source = "registry+https://github.com/rust-lang/crates.io-index" 1706checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a" 1707 1708[[package]] 1709name = "lru-slab" 1710version = "0.1.2" 1711source = "registry+https://github.com/rust-lang/crates.io-index" 1712checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1713 1714[[package]] 1715name = "m3u8-rs" 1716version = "6.0.0" 1717source = "registry+https://github.com/rust-lang/crates.io-index" 1718checksum = "f03cd3335fb5f2447755d45cda9c70f76013626a9db44374973791b0926a86c3" 1719dependencies = [ 1720 "chrono", 1721 "nom 7.1.3", 1722] 1723 1724[[package]] 1725name = "macaddr" 1726version = "1.0.1" 1727source = "registry+https://github.com/rust-lang/crates.io-index" 1728checksum = "baee0bbc17ce759db233beb01648088061bf678383130602a298e6998eedb2d8" 1729 1730[[package]] 1731name = "mach2" 1732version = "0.4.3" 1733source = "registry+https://github.com/rust-lang/crates.io-index" 1734checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" 1735dependencies = [ 1736 "libc", 1737] 1738 1739[[package]] 1740name = "matchers" 1741version = "0.2.0" 1742source = "registry+https://github.com/rust-lang/crates.io-index" 1743checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 1744dependencies = [ 1745 "regex-automata", 1746] 1747 1748[[package]] 1749name = "matchit" 1750version = "0.7.3" 1751source = "registry+https://github.com/rust-lang/crates.io-index" 1752checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 1753 1754[[package]] 1755name = "mdns-sd" 1756version = "0.20.0" 1757source = "registry+https://github.com/rust-lang/crates.io-index" 1758checksum = "892f96f6d2ebe1ea641279f986ac52a2a6bac71e8f743bb258315cfe2bd7e88e" 1759dependencies = [ 1760 "fastrand", 1761 "flume", 1762 "if-addrs", 1763 "log", 1764 "mio", 1765 "socket-pktinfo", 1766 "socket2 0.6.4", 1767] 1768 1769[[package]] 1770name = "memchr" 1771version = "2.8.1" 1772source = "registry+https://github.com/rust-lang/crates.io-index" 1773checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8" 1774 1775[[package]] 1776name = "memoffset" 1777version = "0.9.1" 1778source = "registry+https://github.com/rust-lang/crates.io-index" 1779checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1780dependencies = [ 1781 "autocfg", 1782] 1783 1784[[package]] 1785name = "mime" 1786version = "0.3.17" 1787source = "registry+https://github.com/rust-lang/crates.io-index" 1788checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1789 1790[[package]] 1791name = "minimal-lexical" 1792version = "0.2.1" 1793source = "registry+https://github.com/rust-lang/crates.io-index" 1794checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1795 1796[[package]] 1797name = "mio" 1798version = "1.2.1" 1799source = "registry+https://github.com/rust-lang/crates.io-index" 1800checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda" 1801dependencies = [ 1802 "libc", 1803 "log", 1804 "wasi", 1805 "windows-sys 0.61.2", 1806] 1807 1808[[package]] 1809name = "multimap" 1810version = "0.10.1" 1811source = "registry+https://github.com/rust-lang/crates.io-index" 1812checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" 1813 1814[[package]] 1815name = "ndk" 1816version = "0.8.0" 1817source = "registry+https://github.com/rust-lang/crates.io-index" 1818checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7" 1819dependencies = [ 1820 "bitflags 2.13.0", 1821 "jni-sys 0.3.1", 1822 "log", 1823 "ndk-sys", 1824 "num_enum", 1825 "thiserror 1.0.69", 1826] 1827 1828[[package]] 1829name = "ndk-context" 1830version = "0.1.1" 1831source = "registry+https://github.com/rust-lang/crates.io-index" 1832checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1833 1834[[package]] 1835name = "ndk-sys" 1836version = "0.5.0+25.2.9519653" 1837source = "registry+https://github.com/rust-lang/crates.io-index" 1838checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" 1839dependencies = [ 1840 "jni-sys 0.3.1", 1841] 1842 1843[[package]] 1844name = "nix" 1845version = "0.29.0" 1846source = "registry+https://github.com/rust-lang/crates.io-index" 1847checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 1848dependencies = [ 1849 "bitflags 2.13.0", 1850 "cfg-if", 1851 "cfg_aliases", 1852 "libc", 1853 "memoffset", 1854] 1855 1856[[package]] 1857name = "nom" 1858version = "7.1.3" 1859source = "registry+https://github.com/rust-lang/crates.io-index" 1860checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1861dependencies = [ 1862 "memchr", 1863 "minimal-lexical", 1864] 1865 1866[[package]] 1867name = "nom" 1868version = "8.0.0" 1869source = "registry+https://github.com/rust-lang/crates.io-index" 1870checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" 1871dependencies = [ 1872 "memchr", 1873] 1874 1875[[package]] 1876name = "nu-ansi-term" 1877version = "0.50.3" 1878source = "registry+https://github.com/rust-lang/crates.io-index" 1879checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 1880dependencies = [ 1881 "windows-sys 0.61.2", 1882] 1883 1884[[package]] 1885name = "num-conv" 1886version = "0.2.2" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" 1889 1890[[package]] 1891name = "num-derive" 1892version = "0.4.2" 1893source = "registry+https://github.com/rust-lang/crates.io-index" 1894checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 1895dependencies = [ 1896 "proc-macro2", 1897 "quote", 1898 "syn 2.0.117", 1899] 1900 1901[[package]] 1902name = "num-traits" 1903version = "0.2.19" 1904source = "registry+https://github.com/rust-lang/crates.io-index" 1905checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1906dependencies = [ 1907 "autocfg", 1908] 1909 1910[[package]] 1911name = "num_enum" 1912version = "0.7.6" 1913source = "registry+https://github.com/rust-lang/crates.io-index" 1914checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" 1915dependencies = [ 1916 "num_enum_derive", 1917 "rustversion", 1918] 1919 1920[[package]] 1921name = "num_enum_derive" 1922version = "0.7.6" 1923source = "registry+https://github.com/rust-lang/crates.io-index" 1924checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" 1925dependencies = [ 1926 "proc-macro-crate", 1927 "proc-macro2", 1928 "quote", 1929 "syn 2.0.117", 1930] 1931 1932[[package]] 1933name = "oboe" 1934version = "0.6.1" 1935source = "registry+https://github.com/rust-lang/crates.io-index" 1936checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb" 1937dependencies = [ 1938 "jni", 1939 "ndk", 1940 "ndk-context", 1941 "num-derive", 1942 "num-traits", 1943 "oboe-sys", 1944] 1945 1946[[package]] 1947name = "oboe-sys" 1948version = "0.6.1" 1949source = "registry+https://github.com/rust-lang/crates.io-index" 1950checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d" 1951dependencies = [ 1952 "cc", 1953] 1954 1955[[package]] 1956name = "once_cell" 1957version = "1.21.4" 1958source = "registry+https://github.com/rust-lang/crates.io-index" 1959checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 1960 1961[[package]] 1962name = "once_cell_polyfill" 1963version = "1.70.2" 1964source = "registry+https://github.com/rust-lang/crates.io-index" 1965checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 1966 1967[[package]] 1968name = "openssl-probe" 1969version = "0.2.1" 1970source = "registry+https://github.com/rust-lang/crates.io-index" 1971checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 1972 1973[[package]] 1974name = "ordered-stream" 1975version = "0.2.0" 1976source = "registry+https://github.com/rust-lang/crates.io-index" 1977checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 1978dependencies = [ 1979 "futures-core", 1980 "pin-project-lite", 1981] 1982 1983[[package]] 1984name = "parking" 1985version = "2.2.1" 1986source = "registry+https://github.com/rust-lang/crates.io-index" 1987checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1988 1989[[package]] 1990name = "parking_lot" 1991version = "0.12.5" 1992source = "registry+https://github.com/rust-lang/crates.io-index" 1993checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1994dependencies = [ 1995 "lock_api", 1996 "parking_lot_core", 1997] 1998 1999[[package]] 2000name = "parking_lot_core" 2001version = "0.9.12" 2002source = "registry+https://github.com/rust-lang/crates.io-index" 2003checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2004dependencies = [ 2005 "cfg-if", 2006 "libc", 2007 "redox_syscall", 2008 "smallvec", 2009 "windows-link", 2010] 2011 2012[[package]] 2013name = "percent-encoding" 2014version = "2.3.2" 2015source = "registry+https://github.com/rust-lang/crates.io-index" 2016checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2017 2018[[package]] 2019name = "petgraph" 2020version = "0.7.1" 2021source = "registry+https://github.com/rust-lang/crates.io-index" 2022checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" 2023dependencies = [ 2024 "fixedbitset", 2025 "indexmap 2.14.0", 2026] 2027 2028[[package]] 2029name = "pin-project" 2030version = "1.1.13" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" 2033dependencies = [ 2034 "pin-project-internal", 2035] 2036 2037[[package]] 2038name = "pin-project-internal" 2039version = "1.1.13" 2040source = "registry+https://github.com/rust-lang/crates.io-index" 2041checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" 2042dependencies = [ 2043 "proc-macro2", 2044 "quote", 2045 "syn 2.0.117", 2046] 2047 2048[[package]] 2049name = "pin-project-lite" 2050version = "0.2.17" 2051source = "registry+https://github.com/rust-lang/crates.io-index" 2052checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 2053 2054[[package]] 2055name = "piper" 2056version = "0.2.5" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" 2059dependencies = [ 2060 "atomic-waker", 2061 "fastrand", 2062 "futures-io", 2063] 2064 2065[[package]] 2066name = "pkg-config" 2067version = "0.3.33" 2068source = "registry+https://github.com/rust-lang/crates.io-index" 2069checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" 2070 2071[[package]] 2072name = "polling" 2073version = "3.11.0" 2074source = "registry+https://github.com/rust-lang/crates.io-index" 2075checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 2076dependencies = [ 2077 "cfg-if", 2078 "concurrent-queue", 2079 "hermit-abi", 2080 "pin-project-lite", 2081 "rustix 1.1.4", 2082 "windows-sys 0.61.2", 2083] 2084 2085[[package]] 2086name = "potential_utf" 2087version = "0.1.5" 2088source = "registry+https://github.com/rust-lang/crates.io-index" 2089checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" 2090dependencies = [ 2091 "zerovec", 2092] 2093 2094[[package]] 2095name = "powerfmt" 2096version = "0.2.0" 2097source = "registry+https://github.com/rust-lang/crates.io-index" 2098checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2099 2100[[package]] 2101name = "ppv-lite86" 2102version = "0.2.21" 2103source = "registry+https://github.com/rust-lang/crates.io-index" 2104checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2105dependencies = [ 2106 "zerocopy", 2107] 2108 2109[[package]] 2110name = "prettyplease" 2111version = "0.2.37" 2112source = "registry+https://github.com/rust-lang/crates.io-index" 2113checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 2114dependencies = [ 2115 "proc-macro2", 2116 "syn 2.0.117", 2117] 2118 2119[[package]] 2120name = "proc-macro-crate" 2121version = "3.5.0" 2122source = "registry+https://github.com/rust-lang/crates.io-index" 2123checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" 2124dependencies = [ 2125 "toml_edit 0.25.12+spec-1.1.0", 2126] 2127 2128[[package]] 2129name = "proc-macro2" 2130version = "1.0.106" 2131source = "registry+https://github.com/rust-lang/crates.io-index" 2132checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 2133dependencies = [ 2134 "unicode-ident", 2135] 2136 2137[[package]] 2138name = "prost" 2139version = "0.13.5" 2140source = "registry+https://github.com/rust-lang/crates.io-index" 2141checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" 2142dependencies = [ 2143 "bytes", 2144 "prost-derive", 2145] 2146 2147[[package]] 2148name = "prost-build" 2149version = "0.13.5" 2150source = "registry+https://github.com/rust-lang/crates.io-index" 2151checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" 2152dependencies = [ 2153 "heck", 2154 "itertools 0.14.0", 2155 "log", 2156 "multimap", 2157 "once_cell", 2158 "petgraph", 2159 "prettyplease", 2160 "prost", 2161 "prost-types", 2162 "regex", 2163 "syn 2.0.117", 2164 "tempfile", 2165] 2166 2167[[package]] 2168name = "prost-derive" 2169version = "0.13.5" 2170source = "registry+https://github.com/rust-lang/crates.io-index" 2171checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" 2172dependencies = [ 2173 "anyhow", 2174 "itertools 0.14.0", 2175 "proc-macro2", 2176 "quote", 2177 "syn 2.0.117", 2178] 2179 2180[[package]] 2181name = "prost-types" 2182version = "0.13.5" 2183source = "registry+https://github.com/rust-lang/crates.io-index" 2184checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" 2185dependencies = [ 2186 "prost", 2187] 2188 2189[[package]] 2190name = "quick-xml" 2191version = "0.37.5" 2192source = "registry+https://github.com/rust-lang/crates.io-index" 2193checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 2194dependencies = [ 2195 "memchr", 2196 "serde", 2197] 2198 2199[[package]] 2200name = "quinn" 2201version = "0.11.9" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 2204dependencies = [ 2205 "bytes", 2206 "cfg_aliases", 2207 "pin-project-lite", 2208 "quinn-proto", 2209 "quinn-udp", 2210 "rustc-hash", 2211 "rustls", 2212 "socket2 0.6.4", 2213 "thiserror 2.0.18", 2214 "tokio", 2215 "tracing", 2216 "web-time", 2217] 2218 2219[[package]] 2220name = "quinn-proto" 2221version = "0.11.14" 2222source = "registry+https://github.com/rust-lang/crates.io-index" 2223checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 2224dependencies = [ 2225 "bytes", 2226 "getrandom 0.3.4", 2227 "lru-slab", 2228 "rand 0.9.4", 2229 "ring", 2230 "rustc-hash", 2231 "rustls", 2232 "rustls-pki-types", 2233 "slab", 2234 "thiserror 2.0.18", 2235 "tinyvec", 2236 "tracing", 2237 "web-time", 2238] 2239 2240[[package]] 2241name = "quinn-udp" 2242version = "0.5.14" 2243source = "registry+https://github.com/rust-lang/crates.io-index" 2244checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 2245dependencies = [ 2246 "cfg_aliases", 2247 "libc", 2248 "once_cell", 2249 "socket2 0.6.4", 2250 "tracing", 2251 "windows-sys 0.60.2", 2252] 2253 2254[[package]] 2255name = "quote" 2256version = "1.0.45" 2257source = "registry+https://github.com/rust-lang/crates.io-index" 2258checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" 2259dependencies = [ 2260 "proc-macro2", 2261] 2262 2263[[package]] 2264name = "r-efi" 2265version = "5.3.0" 2266source = "registry+https://github.com/rust-lang/crates.io-index" 2267checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2268 2269[[package]] 2270name = "r-efi" 2271version = "6.0.0" 2272source = "registry+https://github.com/rust-lang/crates.io-index" 2273checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 2274 2275[[package]] 2276name = "rand" 2277version = "0.8.6" 2278source = "registry+https://github.com/rust-lang/crates.io-index" 2279checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" 2280dependencies = [ 2281 "libc", 2282 "rand_chacha 0.3.1", 2283 "rand_core 0.6.4", 2284] 2285 2286[[package]] 2287name = "rand" 2288version = "0.9.4" 2289source = "registry+https://github.com/rust-lang/crates.io-index" 2290checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" 2291dependencies = [ 2292 "rand_chacha 0.9.0", 2293 "rand_core 0.9.5", 2294] 2295 2296[[package]] 2297name = "rand_chacha" 2298version = "0.3.1" 2299source = "registry+https://github.com/rust-lang/crates.io-index" 2300checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2301dependencies = [ 2302 "ppv-lite86", 2303 "rand_core 0.6.4", 2304] 2305 2306[[package]] 2307name = "rand_chacha" 2308version = "0.9.0" 2309source = "registry+https://github.com/rust-lang/crates.io-index" 2310checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2311dependencies = [ 2312 "ppv-lite86", 2313 "rand_core 0.9.5", 2314] 2315 2316[[package]] 2317name = "rand_core" 2318version = "0.6.4" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2321dependencies = [ 2322 "getrandom 0.2.17", 2323] 2324 2325[[package]] 2326name = "rand_core" 2327version = "0.9.5" 2328source = "registry+https://github.com/rust-lang/crates.io-index" 2329checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 2330dependencies = [ 2331 "getrandom 0.3.4", 2332] 2333 2334[[package]] 2335name = "redox_syscall" 2336version = "0.5.18" 2337source = "registry+https://github.com/rust-lang/crates.io-index" 2338checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2339dependencies = [ 2340 "bitflags 2.13.0", 2341] 2342 2343[[package]] 2344name = "ref-cast" 2345version = "1.0.25" 2346source = "registry+https://github.com/rust-lang/crates.io-index" 2347checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 2348dependencies = [ 2349 "ref-cast-impl", 2350] 2351 2352[[package]] 2353name = "ref-cast-impl" 2354version = "1.0.25" 2355source = "registry+https://github.com/rust-lang/crates.io-index" 2356checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 2357dependencies = [ 2358 "proc-macro2", 2359 "quote", 2360 "syn 2.0.117", 2361] 2362 2363[[package]] 2364name = "regex" 2365version = "1.12.4" 2366source = "registry+https://github.com/rust-lang/crates.io-index" 2367checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba" 2368dependencies = [ 2369 "aho-corasick", 2370 "memchr", 2371 "regex-automata", 2372 "regex-syntax", 2373] 2374 2375[[package]] 2376name = "regex-automata" 2377version = "0.4.14" 2378source = "registry+https://github.com/rust-lang/crates.io-index" 2379checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 2380dependencies = [ 2381 "aho-corasick", 2382 "memchr", 2383 "regex-syntax", 2384] 2385 2386[[package]] 2387name = "regex-syntax" 2388version = "0.8.11" 2389source = "registry+https://github.com/rust-lang/crates.io-index" 2390checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" 2391 2392[[package]] 2393name = "reqwest" 2394version = "0.12.28" 2395source = "registry+https://github.com/rust-lang/crates.io-index" 2396checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 2397dependencies = [ 2398 "base64", 2399 "bytes", 2400 "futures-core", 2401 "http", 2402 "http-body", 2403 "http-body-util", 2404 "hyper", 2405 "hyper-rustls", 2406 "hyper-util", 2407 "js-sys", 2408 "log", 2409 "percent-encoding", 2410 "pin-project-lite", 2411 "quinn", 2412 "rustls", 2413 "rustls-native-certs", 2414 "rustls-pki-types", 2415 "serde", 2416 "serde_json", 2417 "serde_urlencoded", 2418 "sync_wrapper", 2419 "tokio", 2420 "tokio-rustls", 2421 "tower 0.5.3", 2422 "tower-http", 2423 "tower-service", 2424 "url", 2425 "wasm-bindgen", 2426 "wasm-bindgen-futures", 2427 "web-sys", 2428] 2429 2430[[package]] 2431name = "ring" 2432version = "0.17.14" 2433source = "registry+https://github.com/rust-lang/crates.io-index" 2434checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2435dependencies = [ 2436 "cc", 2437 "cfg-if", 2438 "getrandom 0.2.17", 2439 "libc", 2440 "untrusted", 2441 "windows-sys 0.52.0", 2442] 2443 2444[[package]] 2445name = "rustc-hash" 2446version = "2.1.2" 2447source = "registry+https://github.com/rust-lang/crates.io-index" 2448checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" 2449 2450[[package]] 2451name = "rustix" 2452version = "0.38.44" 2453source = "registry+https://github.com/rust-lang/crates.io-index" 2454checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 2455dependencies = [ 2456 "bitflags 2.13.0", 2457 "errno", 2458 "libc", 2459 "linux-raw-sys 0.4.15", 2460 "windows-sys 0.59.0", 2461] 2462 2463[[package]] 2464name = "rustix" 2465version = "1.1.4" 2466source = "registry+https://github.com/rust-lang/crates.io-index" 2467checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 2468dependencies = [ 2469 "bitflags 2.13.0", 2470 "errno", 2471 "libc", 2472 "linux-raw-sys 0.12.1", 2473 "windows-sys 0.61.2", 2474] 2475 2476[[package]] 2477name = "rustls" 2478version = "0.23.40" 2479source = "registry+https://github.com/rust-lang/crates.io-index" 2480checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b" 2481dependencies = [ 2482 "once_cell", 2483 "ring", 2484 "rustls-pki-types", 2485 "rustls-webpki", 2486 "subtle", 2487 "zeroize", 2488] 2489 2490[[package]] 2491name = "rustls-native-certs" 2492version = "0.8.4" 2493source = "registry+https://github.com/rust-lang/crates.io-index" 2494checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" 2495dependencies = [ 2496 "openssl-probe", 2497 "rustls-pki-types", 2498 "schannel", 2499 "security-framework", 2500] 2501 2502[[package]] 2503name = "rustls-pki-types" 2504version = "1.14.1" 2505source = "registry+https://github.com/rust-lang/crates.io-index" 2506checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9" 2507dependencies = [ 2508 "web-time", 2509 "zeroize", 2510] 2511 2512[[package]] 2513name = "rustls-webpki" 2514version = "0.103.13" 2515source = "registry+https://github.com/rust-lang/crates.io-index" 2516checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" 2517dependencies = [ 2518 "ring", 2519 "rustls-pki-types", 2520 "untrusted", 2521] 2522 2523[[package]] 2524name = "rustversion" 2525version = "1.0.22" 2526source = "registry+https://github.com/rust-lang/crates.io-index" 2527checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2528 2529[[package]] 2530name = "ryu" 2531version = "1.0.23" 2532source = "registry+https://github.com/rust-lang/crates.io-index" 2533checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 2534 2535[[package]] 2536name = "same-file" 2537version = "1.0.6" 2538source = "registry+https://github.com/rust-lang/crates.io-index" 2539checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2540dependencies = [ 2541 "winapi-util", 2542] 2543 2544[[package]] 2545name = "schannel" 2546version = "0.1.29" 2547source = "registry+https://github.com/rust-lang/crates.io-index" 2548checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 2549dependencies = [ 2550 "windows-sys 0.61.2", 2551] 2552 2553[[package]] 2554name = "schemars" 2555version = "0.9.0" 2556source = "registry+https://github.com/rust-lang/crates.io-index" 2557checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 2558dependencies = [ 2559 "dyn-clone", 2560 "ref-cast", 2561 "serde", 2562 "serde_json", 2563] 2564 2565[[package]] 2566name = "schemars" 2567version = "1.2.1" 2568source = "registry+https://github.com/rust-lang/crates.io-index" 2569checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" 2570dependencies = [ 2571 "dyn-clone", 2572 "ref-cast", 2573 "serde", 2574 "serde_json", 2575] 2576 2577[[package]] 2578name = "scopeguard" 2579version = "1.2.0" 2580source = "registry+https://github.com/rust-lang/crates.io-index" 2581checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2582 2583[[package]] 2584name = "security-framework" 2585version = "3.7.0" 2586source = "registry+https://github.com/rust-lang/crates.io-index" 2587checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 2588dependencies = [ 2589 "bitflags 2.13.0", 2590 "core-foundation", 2591 "core-foundation-sys", 2592 "libc", 2593 "security-framework-sys", 2594] 2595 2596[[package]] 2597name = "security-framework-sys" 2598version = "2.17.0" 2599source = "registry+https://github.com/rust-lang/crates.io-index" 2600checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 2601dependencies = [ 2602 "core-foundation-sys", 2603 "libc", 2604] 2605 2606[[package]] 2607name = "semver" 2608version = "1.0.28" 2609source = "registry+https://github.com/rust-lang/crates.io-index" 2610checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" 2611 2612[[package]] 2613name = "serde" 2614version = "1.0.228" 2615source = "registry+https://github.com/rust-lang/crates.io-index" 2616checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 2617dependencies = [ 2618 "serde_core", 2619 "serde_derive", 2620] 2621 2622[[package]] 2623name = "serde_core" 2624version = "1.0.228" 2625source = "registry+https://github.com/rust-lang/crates.io-index" 2626checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 2627dependencies = [ 2628 "serde_derive", 2629] 2630 2631[[package]] 2632name = "serde_derive" 2633version = "1.0.228" 2634source = "registry+https://github.com/rust-lang/crates.io-index" 2635checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 2636dependencies = [ 2637 "proc-macro2", 2638 "quote", 2639 "syn 2.0.117", 2640] 2641 2642[[package]] 2643name = "serde_json" 2644version = "1.0.150" 2645source = "registry+https://github.com/rust-lang/crates.io-index" 2646checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" 2647dependencies = [ 2648 "itoa", 2649 "memchr", 2650 "serde", 2651 "serde_core", 2652 "zmij", 2653] 2654 2655[[package]] 2656name = "serde_path_to_error" 2657version = "0.1.20" 2658source = "registry+https://github.com/rust-lang/crates.io-index" 2659checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 2660dependencies = [ 2661 "itoa", 2662 "serde", 2663 "serde_core", 2664] 2665 2666[[package]] 2667name = "serde_repr" 2668version = "0.1.20" 2669source = "registry+https://github.com/rust-lang/crates.io-index" 2670checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 2671dependencies = [ 2672 "proc-macro2", 2673 "quote", 2674 "syn 2.0.117", 2675] 2676 2677[[package]] 2678name = "serde_spanned" 2679version = "0.6.9" 2680source = "registry+https://github.com/rust-lang/crates.io-index" 2681checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 2682dependencies = [ 2683 "serde", 2684] 2685 2686[[package]] 2687name = "serde_urlencoded" 2688version = "0.7.1" 2689source = "registry+https://github.com/rust-lang/crates.io-index" 2690checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2691dependencies = [ 2692 "form_urlencoded", 2693 "itoa", 2694 "ryu", 2695 "serde", 2696] 2697 2698[[package]] 2699name = "serde_with" 2700version = "3.21.0" 2701source = "registry+https://github.com/rust-lang/crates.io-index" 2702checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c" 2703dependencies = [ 2704 "base64", 2705 "bs58", 2706 "chrono", 2707 "hex", 2708 "indexmap 1.9.3", 2709 "indexmap 2.14.0", 2710 "schemars 0.9.0", 2711 "schemars 1.2.1", 2712 "serde_core", 2713 "serde_json", 2714 "serde_with_macros", 2715 "time", 2716] 2717 2718[[package]] 2719name = "serde_with_macros" 2720version = "3.21.0" 2721source = "registry+https://github.com/rust-lang/crates.io-index" 2722checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660" 2723dependencies = [ 2724 "darling 0.23.0", 2725 "proc-macro2", 2726 "quote", 2727 "syn 2.0.117", 2728] 2729 2730[[package]] 2731name = "sha1" 2732version = "0.10.6" 2733source = "registry+https://github.com/rust-lang/crates.io-index" 2734checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2735dependencies = [ 2736 "cfg-if", 2737 "cpufeatures", 2738 "digest", 2739] 2740 2741[[package]] 2742name = "sharded-slab" 2743version = "0.1.7" 2744source = "registry+https://github.com/rust-lang/crates.io-index" 2745checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2746dependencies = [ 2747 "lazy_static", 2748] 2749 2750[[package]] 2751name = "shlex" 2752version = "1.3.0" 2753source = "registry+https://github.com/rust-lang/crates.io-index" 2754checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2755 2756[[package]] 2757name = "shlex" 2758version = "2.0.1" 2759source = "registry+https://github.com/rust-lang/crates.io-index" 2760checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" 2761 2762[[package]] 2763name = "signal-hook-registry" 2764version = "1.4.8" 2765source = "registry+https://github.com/rust-lang/crates.io-index" 2766checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 2767dependencies = [ 2768 "errno", 2769 "libc", 2770] 2771 2772[[package]] 2773name = "slab" 2774version = "0.4.12" 2775source = "registry+https://github.com/rust-lang/crates.io-index" 2776checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 2777 2778[[package]] 2779name = "smallvec" 2780version = "1.15.1" 2781source = "registry+https://github.com/rust-lang/crates.io-index" 2782checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 2783 2784[[package]] 2785name = "socket-pktinfo" 2786version = "0.3.2" 2787source = "registry+https://github.com/rust-lang/crates.io-index" 2788checksum = "927136cc2ae6a1b0e66ac6b1210902b75c3f726db004a73bc18686dcd0dcd22f" 2789dependencies = [ 2790 "libc", 2791 "socket2 0.6.4", 2792 "windows-sys 0.60.2", 2793] 2794 2795[[package]] 2796name = "socket2" 2797version = "0.5.10" 2798source = "registry+https://github.com/rust-lang/crates.io-index" 2799checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 2800dependencies = [ 2801 "libc", 2802 "windows-sys 0.52.0", 2803] 2804 2805[[package]] 2806name = "socket2" 2807version = "0.6.4" 2808source = "registry+https://github.com/rust-lang/crates.io-index" 2809checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51" 2810dependencies = [ 2811 "libc", 2812 "windows-sys 0.61.2", 2813] 2814 2815[[package]] 2816name = "spin" 2817version = "0.9.8" 2818source = "registry+https://github.com/rust-lang/crates.io-index" 2819checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2820dependencies = [ 2821 "lock_api", 2822] 2823 2824[[package]] 2825name = "stable_deref_trait" 2826version = "1.2.1" 2827source = "registry+https://github.com/rust-lang/crates.io-index" 2828checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 2829 2830[[package]] 2831name = "static_assertions" 2832version = "1.1.0" 2833source = "registry+https://github.com/rust-lang/crates.io-index" 2834checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2835 2836[[package]] 2837name = "strsim" 2838version = "0.11.1" 2839source = "registry+https://github.com/rust-lang/crates.io-index" 2840checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2841 2842[[package]] 2843name = "strum" 2844version = "0.26.3" 2845source = "registry+https://github.com/rust-lang/crates.io-index" 2846checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 2847dependencies = [ 2848 "strum_macros", 2849] 2850 2851[[package]] 2852name = "strum_macros" 2853version = "0.26.4" 2854source = "registry+https://github.com/rust-lang/crates.io-index" 2855checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 2856dependencies = [ 2857 "heck", 2858 "proc-macro2", 2859 "quote", 2860 "rustversion", 2861 "syn 2.0.117", 2862] 2863 2864[[package]] 2865name = "subtle" 2866version = "2.6.1" 2867source = "registry+https://github.com/rust-lang/crates.io-index" 2868checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2869 2870[[package]] 2871name = "symphonia" 2872version = "0.5.5" 2873source = "registry+https://github.com/rust-lang/crates.io-index" 2874checksum = "5773a4c030a19d9bfaa090f49746ff35c75dfddfa700df7a5939d5e076a57039" 2875dependencies = [ 2876 "lazy_static", 2877 "symphonia-bundle-mp3", 2878 "symphonia-codec-aac", 2879 "symphonia-core", 2880 "symphonia-format-isomp4", 2881 "symphonia-metadata", 2882] 2883 2884[[package]] 2885name = "symphonia-bundle-mp3" 2886version = "0.5.5" 2887source = "registry+https://github.com/rust-lang/crates.io-index" 2888checksum = "4872dd6bb56bf5eac799e3e957aa1981086c3e613b27e0ac23b176054f7c57ed" 2889dependencies = [ 2890 "lazy_static", 2891 "log", 2892 "symphonia-core", 2893 "symphonia-metadata", 2894] 2895 2896[[package]] 2897name = "symphonia-codec-aac" 2898version = "0.5.5" 2899source = "registry+https://github.com/rust-lang/crates.io-index" 2900checksum = "4c263845aa86881416849c1729a54c7f55164f8b96111dba59de46849e73a790" 2901dependencies = [ 2902 "lazy_static", 2903 "log", 2904 "symphonia-core", 2905] 2906 2907[[package]] 2908name = "symphonia-core" 2909version = "0.5.5" 2910source = "registry+https://github.com/rust-lang/crates.io-index" 2911checksum = "ea00cc4f79b7f6bb7ff87eddc065a1066f3a43fe1875979056672c9ef948c2af" 2912dependencies = [ 2913 "arrayvec", 2914 "bitflags 1.3.2", 2915 "bytemuck", 2916 "lazy_static", 2917 "log", 2918] 2919 2920[[package]] 2921name = "symphonia-format-isomp4" 2922version = "0.5.5" 2923source = "registry+https://github.com/rust-lang/crates.io-index" 2924checksum = "243739585d11f81daf8dac8d9f3d18cc7898f6c09a259675fc364b382c30e0a5" 2925dependencies = [ 2926 "encoding_rs", 2927 "log", 2928 "symphonia-core", 2929 "symphonia-metadata", 2930 "symphonia-utils-xiph", 2931] 2932 2933[[package]] 2934name = "symphonia-metadata" 2935version = "0.5.5" 2936source = "registry+https://github.com/rust-lang/crates.io-index" 2937checksum = "36306ff42b9ffe6e5afc99d49e121e0bd62fe79b9db7b9681d48e29fa19e6b16" 2938dependencies = [ 2939 "encoding_rs", 2940 "lazy_static", 2941 "log", 2942 "symphonia-core", 2943] 2944 2945[[package]] 2946name = "symphonia-utils-xiph" 2947version = "0.5.5" 2948source = "registry+https://github.com/rust-lang/crates.io-index" 2949checksum = "ee27c85ab799a338446b68eec77abf42e1a6f1bb490656e121c6e27bfbab9f16" 2950dependencies = [ 2951 "symphonia-core", 2952 "symphonia-metadata", 2953] 2954 2955[[package]] 2956name = "syn" 2957version = "1.0.109" 2958source = "registry+https://github.com/rust-lang/crates.io-index" 2959checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2960dependencies = [ 2961 "proc-macro2", 2962 "quote", 2963 "unicode-ident", 2964] 2965 2966[[package]] 2967name = "syn" 2968version = "2.0.117" 2969source = "registry+https://github.com/rust-lang/crates.io-index" 2970checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" 2971dependencies = [ 2972 "proc-macro2", 2973 "quote", 2974 "unicode-ident", 2975] 2976 2977[[package]] 2978name = "sync_wrapper" 2979version = "1.0.2" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 2982dependencies = [ 2983 "futures-core", 2984] 2985 2986[[package]] 2987name = "synstructure" 2988version = "0.13.2" 2989source = "registry+https://github.com/rust-lang/crates.io-index" 2990checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 2991dependencies = [ 2992 "proc-macro2", 2993 "quote", 2994 "syn 2.0.117", 2995] 2996 2997[[package]] 2998name = "tempfile" 2999version = "3.27.0" 3000source = "registry+https://github.com/rust-lang/crates.io-index" 3001checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 3002dependencies = [ 3003 "fastrand", 3004 "getrandom 0.4.2", 3005 "once_cell", 3006 "rustix 1.1.4", 3007 "windows-sys 0.61.2", 3008] 3009 3010[[package]] 3011name = "thiserror" 3012version = "1.0.69" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3015dependencies = [ 3016 "thiserror-impl 1.0.69", 3017] 3018 3019[[package]] 3020name = "thiserror" 3021version = "2.0.18" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 3024dependencies = [ 3025 "thiserror-impl 2.0.18", 3026] 3027 3028[[package]] 3029name = "thiserror-impl" 3030version = "1.0.69" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3033dependencies = [ 3034 "proc-macro2", 3035 "quote", 3036 "syn 2.0.117", 3037] 3038 3039[[package]] 3040name = "thiserror-impl" 3041version = "2.0.18" 3042source = "registry+https://github.com/rust-lang/crates.io-index" 3043checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 3044dependencies = [ 3045 "proc-macro2", 3046 "quote", 3047 "syn 2.0.117", 3048] 3049 3050[[package]] 3051name = "thread_local" 3052version = "1.1.9" 3053source = "registry+https://github.com/rust-lang/crates.io-index" 3054checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 3055dependencies = [ 3056 "cfg-if", 3057] 3058 3059[[package]] 3060name = "time" 3061version = "0.3.47" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" 3064dependencies = [ 3065 "deranged", 3066 "itoa", 3067 "num-conv", 3068 "powerfmt", 3069 "serde_core", 3070 "time-core", 3071 "time-macros", 3072] 3073 3074[[package]] 3075name = "time-core" 3076version = "0.1.8" 3077source = "registry+https://github.com/rust-lang/crates.io-index" 3078checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" 3079 3080[[package]] 3081name = "time-macros" 3082version = "0.2.27" 3083source = "registry+https://github.com/rust-lang/crates.io-index" 3084checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" 3085dependencies = [ 3086 "num-conv", 3087 "time-core", 3088] 3089 3090[[package]] 3091name = "tinystr" 3092version = "0.8.3" 3093source = "registry+https://github.com/rust-lang/crates.io-index" 3094checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" 3095dependencies = [ 3096 "displaydoc", 3097 "zerovec", 3098] 3099 3100[[package]] 3101name = "tinyvec" 3102version = "1.11.0" 3103source = "registry+https://github.com/rust-lang/crates.io-index" 3104checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 3105dependencies = [ 3106 "tinyvec_macros", 3107] 3108 3109[[package]] 3110name = "tinyvec_macros" 3111version = "0.1.1" 3112source = "registry+https://github.com/rust-lang/crates.io-index" 3113checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3114 3115[[package]] 3116name = "tokio" 3117version = "1.52.3" 3118source = "registry+https://github.com/rust-lang/crates.io-index" 3119checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" 3120dependencies = [ 3121 "bytes", 3122 "libc", 3123 "mio", 3124 "parking_lot", 3125 "pin-project-lite", 3126 "signal-hook-registry", 3127 "socket2 0.6.4", 3128 "tokio-macros", 3129 "tracing", 3130 "windows-sys 0.61.2", 3131] 3132 3133[[package]] 3134name = "tokio-macros" 3135version = "2.7.0" 3136source = "registry+https://github.com/rust-lang/crates.io-index" 3137checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" 3138dependencies = [ 3139 "proc-macro2", 3140 "quote", 3141 "syn 2.0.117", 3142] 3143 3144[[package]] 3145name = "tokio-rustls" 3146version = "0.26.4" 3147source = "registry+https://github.com/rust-lang/crates.io-index" 3148checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 3149dependencies = [ 3150 "rustls", 3151 "tokio", 3152] 3153 3154[[package]] 3155name = "tokio-stream" 3156version = "0.1.18" 3157source = "registry+https://github.com/rust-lang/crates.io-index" 3158checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" 3159dependencies = [ 3160 "futures-core", 3161 "pin-project-lite", 3162 "tokio", 3163 "tokio-util", 3164] 3165 3166[[package]] 3167name = "tokio-util" 3168version = "0.7.18" 3169source = "registry+https://github.com/rust-lang/crates.io-index" 3170checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 3171dependencies = [ 3172 "bytes", 3173 "futures-core", 3174 "futures-sink", 3175 "pin-project-lite", 3176 "tokio", 3177] 3178 3179[[package]] 3180name = "toml" 3181version = "0.8.23" 3182source = "registry+https://github.com/rust-lang/crates.io-index" 3183checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 3184dependencies = [ 3185 "serde", 3186 "serde_spanned", 3187 "toml_datetime 0.6.11", 3188 "toml_edit 0.22.27", 3189] 3190 3191[[package]] 3192name = "toml_datetime" 3193version = "0.6.11" 3194source = "registry+https://github.com/rust-lang/crates.io-index" 3195checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 3196dependencies = [ 3197 "serde", 3198] 3199 3200[[package]] 3201name = "toml_datetime" 3202version = "1.1.1+spec-1.1.0" 3203source = "registry+https://github.com/rust-lang/crates.io-index" 3204checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" 3205dependencies = [ 3206 "serde_core", 3207] 3208 3209[[package]] 3210name = "toml_edit" 3211version = "0.22.27" 3212source = "registry+https://github.com/rust-lang/crates.io-index" 3213checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 3214dependencies = [ 3215 "indexmap 2.14.0", 3216 "serde", 3217 "serde_spanned", 3218 "toml_datetime 0.6.11", 3219 "toml_write", 3220 "winnow 0.7.15", 3221] 3222 3223[[package]] 3224name = "toml_edit" 3225version = "0.25.12+spec-1.1.0" 3226source = "registry+https://github.com/rust-lang/crates.io-index" 3227checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7" 3228dependencies = [ 3229 "indexmap 2.14.0", 3230 "toml_datetime 1.1.1+spec-1.1.0", 3231 "toml_parser", 3232 "winnow 1.0.3", 3233] 3234 3235[[package]] 3236name = "toml_parser" 3237version = "1.1.2+spec-1.1.0" 3238source = "registry+https://github.com/rust-lang/crates.io-index" 3239checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" 3240dependencies = [ 3241 "winnow 1.0.3", 3242] 3243 3244[[package]] 3245name = "toml_write" 3246version = "0.1.2" 3247source = "registry+https://github.com/rust-lang/crates.io-index" 3248checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 3249 3250[[package]] 3251name = "tonic" 3252version = "0.12.3" 3253source = "registry+https://github.com/rust-lang/crates.io-index" 3254checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" 3255dependencies = [ 3256 "async-stream", 3257 "async-trait", 3258 "axum", 3259 "base64", 3260 "bytes", 3261 "h2", 3262 "http", 3263 "http-body", 3264 "http-body-util", 3265 "hyper", 3266 "hyper-timeout", 3267 "hyper-util", 3268 "percent-encoding", 3269 "pin-project", 3270 "prost", 3271 "socket2 0.5.10", 3272 "tokio", 3273 "tokio-stream", 3274 "tower 0.4.13", 3275 "tower-layer", 3276 "tower-service", 3277 "tracing", 3278] 3279 3280[[package]] 3281name = "tonic-build" 3282version = "0.12.3" 3283source = "registry+https://github.com/rust-lang/crates.io-index" 3284checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" 3285dependencies = [ 3286 "prettyplease", 3287 "proc-macro2", 3288 "prost-build", 3289 "prost-types", 3290 "quote", 3291 "syn 2.0.117", 3292] 3293 3294[[package]] 3295name = "tonic-reflection" 3296version = "0.12.3" 3297source = "registry+https://github.com/rust-lang/crates.io-index" 3298checksum = "878d81f52e7fcfd80026b7fdb6a9b578b3c3653ba987f87f0dce4b64043cba27" 3299dependencies = [ 3300 "prost", 3301 "prost-types", 3302 "tokio", 3303 "tokio-stream", 3304 "tonic", 3305] 3306 3307[[package]] 3308name = "tower" 3309version = "0.4.13" 3310source = "registry+https://github.com/rust-lang/crates.io-index" 3311checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 3312dependencies = [ 3313 "futures-core", 3314 "futures-util", 3315 "indexmap 1.9.3", 3316 "pin-project", 3317 "pin-project-lite", 3318 "rand 0.8.6", 3319 "slab", 3320 "tokio", 3321 "tokio-util", 3322 "tower-layer", 3323 "tower-service", 3324 "tracing", 3325] 3326 3327[[package]] 3328name = "tower" 3329version = "0.5.3" 3330source = "registry+https://github.com/rust-lang/crates.io-index" 3331checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 3332dependencies = [ 3333 "futures-core", 3334 "futures-util", 3335 "pin-project-lite", 3336 "sync_wrapper", 3337 "tokio", 3338 "tower-layer", 3339 "tower-service", 3340] 3341 3342[[package]] 3343name = "tower-http" 3344version = "0.6.11" 3345source = "registry+https://github.com/rust-lang/crates.io-index" 3346checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" 3347dependencies = [ 3348 "bitflags 2.13.0", 3349 "bytes", 3350 "futures-util", 3351 "http", 3352 "http-body", 3353 "pin-project-lite", 3354 "tower 0.5.3", 3355 "tower-layer", 3356 "tower-service", 3357 "url", 3358] 3359 3360[[package]] 3361name = "tower-layer" 3362version = "0.3.3" 3363source = "registry+https://github.com/rust-lang/crates.io-index" 3364checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 3365 3366[[package]] 3367name = "tower-service" 3368version = "0.3.3" 3369source = "registry+https://github.com/rust-lang/crates.io-index" 3370checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3371 3372[[package]] 3373name = "tracing" 3374version = "0.1.44" 3375source = "registry+https://github.com/rust-lang/crates.io-index" 3376checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 3377dependencies = [ 3378 "pin-project-lite", 3379 "tracing-attributes", 3380 "tracing-core", 3381] 3382 3383[[package]] 3384name = "tracing-attributes" 3385version = "0.1.31" 3386source = "registry+https://github.com/rust-lang/crates.io-index" 3387checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 3388dependencies = [ 3389 "proc-macro2", 3390 "quote", 3391 "syn 2.0.117", 3392] 3393 3394[[package]] 3395name = "tracing-core" 3396version = "0.1.36" 3397source = "registry+https://github.com/rust-lang/crates.io-index" 3398checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 3399dependencies = [ 3400 "once_cell", 3401 "valuable", 3402] 3403 3404[[package]] 3405name = "tracing-log" 3406version = "0.2.0" 3407source = "registry+https://github.com/rust-lang/crates.io-index" 3408checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3409dependencies = [ 3410 "log", 3411 "once_cell", 3412 "tracing-core", 3413] 3414 3415[[package]] 3416name = "tracing-subscriber" 3417version = "0.3.23" 3418source = "registry+https://github.com/rust-lang/crates.io-index" 3419checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 3420dependencies = [ 3421 "matchers", 3422 "nu-ansi-term", 3423 "once_cell", 3424 "regex-automata", 3425 "sharded-slab", 3426 "smallvec", 3427 "thread_local", 3428 "tracing", 3429 "tracing-core", 3430 "tracing-log", 3431] 3432 3433[[package]] 3434name = "try-lock" 3435version = "0.2.5" 3436source = "registry+https://github.com/rust-lang/crates.io-index" 3437checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3438 3439[[package]] 3440name = "typenum" 3441version = "1.20.1" 3442source = "registry+https://github.com/rust-lang/crates.io-index" 3443checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" 3444 3445[[package]] 3446name = "uds_windows" 3447version = "1.2.1" 3448source = "registry+https://github.com/rust-lang/crates.io-index" 3449checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e" 3450dependencies = [ 3451 "memoffset", 3452 "tempfile", 3453 "windows-sys 0.61.2", 3454] 3455 3456[[package]] 3457name = "unicode-ident" 3458version = "1.0.24" 3459source = "registry+https://github.com/rust-lang/crates.io-index" 3460checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 3461 3462[[package]] 3463name = "unicode-xid" 3464version = "0.2.6" 3465source = "registry+https://github.com/rust-lang/crates.io-index" 3466checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 3467 3468[[package]] 3469name = "untrusted" 3470version = "0.9.0" 3471source = "registry+https://github.com/rust-lang/crates.io-index" 3472checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3473 3474[[package]] 3475name = "url" 3476version = "2.5.8" 3477source = "registry+https://github.com/rust-lang/crates.io-index" 3478checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 3479dependencies = [ 3480 "form_urlencoded", 3481 "idna", 3482 "percent-encoding", 3483 "serde", 3484] 3485 3486[[package]] 3487name = "utf8_iter" 3488version = "1.0.4" 3489source = "registry+https://github.com/rust-lang/crates.io-index" 3490checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3491 3492[[package]] 3493name = "utf8parse" 3494version = "0.2.2" 3495source = "registry+https://github.com/rust-lang/crates.io-index" 3496checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3497 3498[[package]] 3499name = "uuid" 3500version = "1.23.3" 3501source = "registry+https://github.com/rust-lang/crates.io-index" 3502checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7" 3503dependencies = [ 3504 "getrandom 0.4.2", 3505 "js-sys", 3506 "wasm-bindgen", 3507] 3508 3509[[package]] 3510name = "valuable" 3511version = "0.1.1" 3512source = "registry+https://github.com/rust-lang/crates.io-index" 3513checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 3514 3515[[package]] 3516name = "version_check" 3517version = "0.9.5" 3518source = "registry+https://github.com/rust-lang/crates.io-index" 3519checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3520 3521[[package]] 3522name = "walkdir" 3523version = "2.5.0" 3524source = "registry+https://github.com/rust-lang/crates.io-index" 3525checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3526dependencies = [ 3527 "same-file", 3528 "winapi-util", 3529] 3530 3531[[package]] 3532name = "want" 3533version = "0.3.1" 3534source = "registry+https://github.com/rust-lang/crates.io-index" 3535checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3536dependencies = [ 3537 "try-lock", 3538] 3539 3540[[package]] 3541name = "wasi" 3542version = "0.11.1+wasi-snapshot-preview1" 3543source = "registry+https://github.com/rust-lang/crates.io-index" 3544checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3545 3546[[package]] 3547name = "wasip2" 3548version = "1.0.3+wasi-0.2.9" 3549source = "registry+https://github.com/rust-lang/crates.io-index" 3550checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6" 3551dependencies = [ 3552 "wit-bindgen 0.57.1", 3553] 3554 3555[[package]] 3556name = "wasip3" 3557version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 3558source = "registry+https://github.com/rust-lang/crates.io-index" 3559checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 3560dependencies = [ 3561 "wit-bindgen 0.51.0", 3562] 3563 3564[[package]] 3565name = "wasm-bindgen" 3566version = "0.2.123" 3567source = "registry+https://github.com/rust-lang/crates.io-index" 3568checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563" 3569dependencies = [ 3570 "cfg-if", 3571 "once_cell", 3572 "rustversion", 3573 "wasm-bindgen-macro", 3574 "wasm-bindgen-shared", 3575] 3576 3577[[package]] 3578name = "wasm-bindgen-futures" 3579version = "0.4.73" 3580source = "registry+https://github.com/rust-lang/crates.io-index" 3581checksum = "54568702fabf5d4849ce2b90fadfa64168a097eaf4b351ce9df8b687a0086aaf" 3582dependencies = [ 3583 "js-sys", 3584 "wasm-bindgen", 3585] 3586 3587[[package]] 3588name = "wasm-bindgen-macro" 3589version = "0.2.123" 3590source = "registry+https://github.com/rust-lang/crates.io-index" 3591checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc" 3592dependencies = [ 3593 "quote", 3594 "wasm-bindgen-macro-support", 3595] 3596 3597[[package]] 3598name = "wasm-bindgen-macro-support" 3599version = "0.2.123" 3600source = "registry+https://github.com/rust-lang/crates.io-index" 3601checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b" 3602dependencies = [ 3603 "bumpalo", 3604 "proc-macro2", 3605 "quote", 3606 "syn 2.0.117", 3607 "wasm-bindgen-shared", 3608] 3609 3610[[package]] 3611name = "wasm-bindgen-shared" 3612version = "0.2.123" 3613source = "registry+https://github.com/rust-lang/crates.io-index" 3614checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92" 3615dependencies = [ 3616 "unicode-ident", 3617] 3618 3619[[package]] 3620name = "wasm-encoder" 3621version = "0.244.0" 3622source = "registry+https://github.com/rust-lang/crates.io-index" 3623checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 3624dependencies = [ 3625 "leb128fmt", 3626 "wasmparser", 3627] 3628 3629[[package]] 3630name = "wasm-metadata" 3631version = "0.244.0" 3632source = "registry+https://github.com/rust-lang/crates.io-index" 3633checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 3634dependencies = [ 3635 "anyhow", 3636 "indexmap 2.14.0", 3637 "wasm-encoder", 3638 "wasmparser", 3639] 3640 3641[[package]] 3642name = "wasmparser" 3643version = "0.244.0" 3644source = "registry+https://github.com/rust-lang/crates.io-index" 3645checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 3646dependencies = [ 3647 "bitflags 2.13.0", 3648 "hashbrown 0.15.5", 3649 "indexmap 2.14.0", 3650 "semver", 3651] 3652 3653[[package]] 3654name = "web-sys" 3655version = "0.3.100" 3656source = "registry+https://github.com/rust-lang/crates.io-index" 3657checksum = "6e0871acf327f283dc6da28a1696cdc64fb355ba9f935d052021fa77f35cce69" 3658dependencies = [ 3659 "js-sys", 3660 "wasm-bindgen", 3661] 3662 3663[[package]] 3664name = "web-time" 3665version = "1.1.0" 3666source = "registry+https://github.com/rust-lang/crates.io-index" 3667checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3668dependencies = [ 3669 "js-sys", 3670 "wasm-bindgen", 3671] 3672 3673[[package]] 3674name = "webm-iterable" 3675version = "0.6.4" 3676source = "registry+https://github.com/rust-lang/crates.io-index" 3677checksum = "cd9fbf173b4b38f2f8bbb0082a0d4cb21f263a70811f5fccb1663c421c66d9f9" 3678dependencies = [ 3679 "ebml-iterable", 3680] 3681 3682[[package]] 3683name = "winapi-util" 3684version = "0.1.11" 3685source = "registry+https://github.com/rust-lang/crates.io-index" 3686checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 3687dependencies = [ 3688 "windows-sys 0.61.2", 3689] 3690 3691[[package]] 3692name = "windows" 3693version = "0.54.0" 3694source = "registry+https://github.com/rust-lang/crates.io-index" 3695checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 3696dependencies = [ 3697 "windows-core 0.54.0", 3698 "windows-targets 0.52.6", 3699] 3700 3701[[package]] 3702name = "windows-core" 3703version = "0.54.0" 3704source = "registry+https://github.com/rust-lang/crates.io-index" 3705checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 3706dependencies = [ 3707 "windows-result 0.1.2", 3708 "windows-targets 0.52.6", 3709] 3710 3711[[package]] 3712name = "windows-core" 3713version = "0.62.2" 3714source = "registry+https://github.com/rust-lang/crates.io-index" 3715checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 3716dependencies = [ 3717 "windows-implement", 3718 "windows-interface", 3719 "windows-link", 3720 "windows-result 0.4.1", 3721 "windows-strings", 3722] 3723 3724[[package]] 3725name = "windows-implement" 3726version = "0.60.2" 3727source = "registry+https://github.com/rust-lang/crates.io-index" 3728checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 3729dependencies = [ 3730 "proc-macro2", 3731 "quote", 3732 "syn 2.0.117", 3733] 3734 3735[[package]] 3736name = "windows-interface" 3737version = "0.59.3" 3738source = "registry+https://github.com/rust-lang/crates.io-index" 3739checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 3740dependencies = [ 3741 "proc-macro2", 3742 "quote", 3743 "syn 2.0.117", 3744] 3745 3746[[package]] 3747name = "windows-link" 3748version = "0.2.1" 3749source = "registry+https://github.com/rust-lang/crates.io-index" 3750checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 3751 3752[[package]] 3753name = "windows-result" 3754version = "0.1.2" 3755source = "registry+https://github.com/rust-lang/crates.io-index" 3756checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 3757dependencies = [ 3758 "windows-targets 0.52.6", 3759] 3760 3761[[package]] 3762name = "windows-result" 3763version = "0.4.1" 3764source = "registry+https://github.com/rust-lang/crates.io-index" 3765checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 3766dependencies = [ 3767 "windows-link", 3768] 3769 3770[[package]] 3771name = "windows-strings" 3772version = "0.5.1" 3773source = "registry+https://github.com/rust-lang/crates.io-index" 3774checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 3775dependencies = [ 3776 "windows-link", 3777] 3778 3779[[package]] 3780name = "windows-sys" 3781version = "0.45.0" 3782source = "registry+https://github.com/rust-lang/crates.io-index" 3783checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3784dependencies = [ 3785 "windows-targets 0.42.2", 3786] 3787 3788[[package]] 3789name = "windows-sys" 3790version = "0.52.0" 3791source = "registry+https://github.com/rust-lang/crates.io-index" 3792checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3793dependencies = [ 3794 "windows-targets 0.52.6", 3795] 3796 3797[[package]] 3798name = "windows-sys" 3799version = "0.59.0" 3800source = "registry+https://github.com/rust-lang/crates.io-index" 3801checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3802dependencies = [ 3803 "windows-targets 0.52.6", 3804] 3805 3806[[package]] 3807name = "windows-sys" 3808version = "0.60.2" 3809source = "registry+https://github.com/rust-lang/crates.io-index" 3810checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 3811dependencies = [ 3812 "windows-targets 0.53.5", 3813] 3814 3815[[package]] 3816name = "windows-sys" 3817version = "0.61.2" 3818source = "registry+https://github.com/rust-lang/crates.io-index" 3819checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 3820dependencies = [ 3821 "windows-link", 3822] 3823 3824[[package]] 3825name = "windows-targets" 3826version = "0.42.2" 3827source = "registry+https://github.com/rust-lang/crates.io-index" 3828checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3829dependencies = [ 3830 "windows_aarch64_gnullvm 0.42.2", 3831 "windows_aarch64_msvc 0.42.2", 3832 "windows_i686_gnu 0.42.2", 3833 "windows_i686_msvc 0.42.2", 3834 "windows_x86_64_gnu 0.42.2", 3835 "windows_x86_64_gnullvm 0.42.2", 3836 "windows_x86_64_msvc 0.42.2", 3837] 3838 3839[[package]] 3840name = "windows-targets" 3841version = "0.52.6" 3842source = "registry+https://github.com/rust-lang/crates.io-index" 3843checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3844dependencies = [ 3845 "windows_aarch64_gnullvm 0.52.6", 3846 "windows_aarch64_msvc 0.52.6", 3847 "windows_i686_gnu 0.52.6", 3848 "windows_i686_gnullvm 0.52.6", 3849 "windows_i686_msvc 0.52.6", 3850 "windows_x86_64_gnu 0.52.6", 3851 "windows_x86_64_gnullvm 0.52.6", 3852 "windows_x86_64_msvc 0.52.6", 3853] 3854 3855[[package]] 3856name = "windows-targets" 3857version = "0.53.5" 3858source = "registry+https://github.com/rust-lang/crates.io-index" 3859checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 3860dependencies = [ 3861 "windows-link", 3862 "windows_aarch64_gnullvm 0.53.1", 3863 "windows_aarch64_msvc 0.53.1", 3864 "windows_i686_gnu 0.53.1", 3865 "windows_i686_gnullvm 0.53.1", 3866 "windows_i686_msvc 0.53.1", 3867 "windows_x86_64_gnu 0.53.1", 3868 "windows_x86_64_gnullvm 0.53.1", 3869 "windows_x86_64_msvc 0.53.1", 3870] 3871 3872[[package]] 3873name = "windows_aarch64_gnullvm" 3874version = "0.42.2" 3875source = "registry+https://github.com/rust-lang/crates.io-index" 3876checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3877 3878[[package]] 3879name = "windows_aarch64_gnullvm" 3880version = "0.52.6" 3881source = "registry+https://github.com/rust-lang/crates.io-index" 3882checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3883 3884[[package]] 3885name = "windows_aarch64_gnullvm" 3886version = "0.53.1" 3887source = "registry+https://github.com/rust-lang/crates.io-index" 3888checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 3889 3890[[package]] 3891name = "windows_aarch64_msvc" 3892version = "0.42.2" 3893source = "registry+https://github.com/rust-lang/crates.io-index" 3894checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3895 3896[[package]] 3897name = "windows_aarch64_msvc" 3898version = "0.52.6" 3899source = "registry+https://github.com/rust-lang/crates.io-index" 3900checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3901 3902[[package]] 3903name = "windows_aarch64_msvc" 3904version = "0.53.1" 3905source = "registry+https://github.com/rust-lang/crates.io-index" 3906checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 3907 3908[[package]] 3909name = "windows_i686_gnu" 3910version = "0.42.2" 3911source = "registry+https://github.com/rust-lang/crates.io-index" 3912checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3913 3914[[package]] 3915name = "windows_i686_gnu" 3916version = "0.52.6" 3917source = "registry+https://github.com/rust-lang/crates.io-index" 3918checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3919 3920[[package]] 3921name = "windows_i686_gnu" 3922version = "0.53.1" 3923source = "registry+https://github.com/rust-lang/crates.io-index" 3924checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 3925 3926[[package]] 3927name = "windows_i686_gnullvm" 3928version = "0.52.6" 3929source = "registry+https://github.com/rust-lang/crates.io-index" 3930checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3931 3932[[package]] 3933name = "windows_i686_gnullvm" 3934version = "0.53.1" 3935source = "registry+https://github.com/rust-lang/crates.io-index" 3936checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 3937 3938[[package]] 3939name = "windows_i686_msvc" 3940version = "0.42.2" 3941source = "registry+https://github.com/rust-lang/crates.io-index" 3942checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3943 3944[[package]] 3945name = "windows_i686_msvc" 3946version = "0.52.6" 3947source = "registry+https://github.com/rust-lang/crates.io-index" 3948checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3949 3950[[package]] 3951name = "windows_i686_msvc" 3952version = "0.53.1" 3953source = "registry+https://github.com/rust-lang/crates.io-index" 3954checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 3955 3956[[package]] 3957name = "windows_x86_64_gnu" 3958version = "0.42.2" 3959source = "registry+https://github.com/rust-lang/crates.io-index" 3960checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3961 3962[[package]] 3963name = "windows_x86_64_gnu" 3964version = "0.52.6" 3965source = "registry+https://github.com/rust-lang/crates.io-index" 3966checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3967 3968[[package]] 3969name = "windows_x86_64_gnu" 3970version = "0.53.1" 3971source = "registry+https://github.com/rust-lang/crates.io-index" 3972checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 3973 3974[[package]] 3975name = "windows_x86_64_gnullvm" 3976version = "0.42.2" 3977source = "registry+https://github.com/rust-lang/crates.io-index" 3978checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3979 3980[[package]] 3981name = "windows_x86_64_gnullvm" 3982version = "0.52.6" 3983source = "registry+https://github.com/rust-lang/crates.io-index" 3984checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3985 3986[[package]] 3987name = "windows_x86_64_gnullvm" 3988version = "0.53.1" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 3991 3992[[package]] 3993name = "windows_x86_64_msvc" 3994version = "0.42.2" 3995source = "registry+https://github.com/rust-lang/crates.io-index" 3996checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3997 3998[[package]] 3999name = "windows_x86_64_msvc" 4000version = "0.52.6" 4001source = "registry+https://github.com/rust-lang/crates.io-index" 4002checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4003 4004[[package]] 4005name = "windows_x86_64_msvc" 4006version = "0.53.1" 4007source = "registry+https://github.com/rust-lang/crates.io-index" 4008checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 4009 4010[[package]] 4011name = "winnow" 4012version = "0.7.15" 4013source = "registry+https://github.com/rust-lang/crates.io-index" 4014checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" 4015dependencies = [ 4016 "memchr", 4017] 4018 4019[[package]] 4020name = "winnow" 4021version = "1.0.3" 4022source = "registry+https://github.com/rust-lang/crates.io-index" 4023checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" 4024dependencies = [ 4025 "memchr", 4026] 4027 4028[[package]] 4029name = "wit-bindgen" 4030version = "0.51.0" 4031source = "registry+https://github.com/rust-lang/crates.io-index" 4032checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 4033dependencies = [ 4034 "wit-bindgen-rust-macro", 4035] 4036 4037[[package]] 4038name = "wit-bindgen" 4039version = "0.57.1" 4040source = "registry+https://github.com/rust-lang/crates.io-index" 4041checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" 4042 4043[[package]] 4044name = "wit-bindgen-core" 4045version = "0.51.0" 4046source = "registry+https://github.com/rust-lang/crates.io-index" 4047checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 4048dependencies = [ 4049 "anyhow", 4050 "heck", 4051 "wit-parser", 4052] 4053 4054[[package]] 4055name = "wit-bindgen-rust" 4056version = "0.51.0" 4057source = "registry+https://github.com/rust-lang/crates.io-index" 4058checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 4059dependencies = [ 4060 "anyhow", 4061 "heck", 4062 "indexmap 2.14.0", 4063 "prettyplease", 4064 "syn 2.0.117", 4065 "wasm-metadata", 4066 "wit-bindgen-core", 4067 "wit-component", 4068] 4069 4070[[package]] 4071name = "wit-bindgen-rust-macro" 4072version = "0.51.0" 4073source = "registry+https://github.com/rust-lang/crates.io-index" 4074checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 4075dependencies = [ 4076 "anyhow", 4077 "prettyplease", 4078 "proc-macro2", 4079 "quote", 4080 "syn 2.0.117", 4081 "wit-bindgen-core", 4082 "wit-bindgen-rust", 4083] 4084 4085[[package]] 4086name = "wit-component" 4087version = "0.244.0" 4088source = "registry+https://github.com/rust-lang/crates.io-index" 4089checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 4090dependencies = [ 4091 "anyhow", 4092 "bitflags 2.13.0", 4093 "indexmap 2.14.0", 4094 "log", 4095 "serde", 4096 "serde_derive", 4097 "serde_json", 4098 "wasm-encoder", 4099 "wasm-metadata", 4100 "wasmparser", 4101 "wit-parser", 4102] 4103 4104[[package]] 4105name = "wit-parser" 4106version = "0.244.0" 4107source = "registry+https://github.com/rust-lang/crates.io-index" 4108checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 4109dependencies = [ 4110 "anyhow", 4111 "id-arena", 4112 "indexmap 2.14.0", 4113 "log", 4114 "semver", 4115 "serde", 4116 "serde_derive", 4117 "serde_json", 4118 "unicode-xid", 4119 "wasmparser", 4120] 4121 4122[[package]] 4123name = "writeable" 4124version = "0.6.3" 4125source = "registry+https://github.com/rust-lang/crates.io-index" 4126checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" 4127 4128[[package]] 4129name = "xattr" 4130version = "1.6.1" 4131source = "registry+https://github.com/rust-lang/crates.io-index" 4132checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" 4133dependencies = [ 4134 "libc", 4135 "rustix 1.1.4", 4136] 4137 4138[[package]] 4139name = "xdg-home" 4140version = "1.3.0" 4141source = "registry+https://github.com/rust-lang/crates.io-index" 4142checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" 4143dependencies = [ 4144 "libc", 4145 "windows-sys 0.59.0", 4146] 4147 4148[[package]] 4149name = "yoke" 4150version = "0.8.3" 4151source = "registry+https://github.com/rust-lang/crates.io-index" 4152checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" 4153dependencies = [ 4154 "stable_deref_trait", 4155 "yoke-derive", 4156 "zerofrom", 4157] 4158 4159[[package]] 4160name = "yoke-derive" 4161version = "0.8.2" 4162source = "registry+https://github.com/rust-lang/crates.io-index" 4163checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" 4164dependencies = [ 4165 "proc-macro2", 4166 "quote", 4167 "syn 2.0.117", 4168 "synstructure", 4169] 4170 4171[[package]] 4172name = "zbus" 4173version = "4.4.0" 4174source = "registry+https://github.com/rust-lang/crates.io-index" 4175checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725" 4176dependencies = [ 4177 "async-broadcast", 4178 "async-process", 4179 "async-recursion", 4180 "async-trait", 4181 "enumflags2", 4182 "event-listener", 4183 "futures-core", 4184 "futures-sink", 4185 "futures-util", 4186 "hex", 4187 "nix", 4188 "ordered-stream", 4189 "rand 0.8.6", 4190 "serde", 4191 "serde_repr", 4192 "sha1", 4193 "static_assertions", 4194 "tokio", 4195 "tracing", 4196 "uds_windows", 4197 "windows-sys 0.52.0", 4198 "xdg-home", 4199 "zbus_macros", 4200 "zbus_names", 4201 "zvariant", 4202] 4203 4204[[package]] 4205name = "zbus_macros" 4206version = "4.4.0" 4207source = "registry+https://github.com/rust-lang/crates.io-index" 4208checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e" 4209dependencies = [ 4210 "proc-macro-crate", 4211 "proc-macro2", 4212 "quote", 4213 "syn 2.0.117", 4214 "zvariant_utils", 4215] 4216 4217[[package]] 4218name = "zbus_names" 4219version = "3.0.0" 4220source = "registry+https://github.com/rust-lang/crates.io-index" 4221checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" 4222dependencies = [ 4223 "serde", 4224 "static_assertions", 4225 "zvariant", 4226] 4227 4228[[package]] 4229name = "zerocopy" 4230version = "0.8.52" 4231source = "registry+https://github.com/rust-lang/crates.io-index" 4232checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f" 4233dependencies = [ 4234 "zerocopy-derive", 4235] 4236 4237[[package]] 4238name = "zerocopy-derive" 4239version = "0.8.52" 4240source = "registry+https://github.com/rust-lang/crates.io-index" 4241checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930" 4242dependencies = [ 4243 "proc-macro2", 4244 "quote", 4245 "syn 2.0.117", 4246] 4247 4248[[package]] 4249name = "zerod" 4250version = "0.2.0" 4251dependencies = [ 4252 "anyhow", 4253 "clap", 4254 "getrandom 0.2.17", 4255 "serde_json", 4256 "tokio", 4257 "tonic", 4258 "tracing", 4259 "tracing-subscriber", 4260 "zerod-discovery", 4261 "zerod-proto", 4262 "zerod-server", 4263] 4264 4265[[package]] 4266name = "zerod-bluetooth" 4267version = "0.1.0" 4268dependencies = [ 4269 "anyhow", 4270 "bluer", 4271 "futures", 4272 "once_cell", 4273 "serde", 4274 "tokio", 4275 "tracing", 4276 "zerod-events", 4277] 4278 4279[[package]] 4280name = "zerod-config" 4281version = "0.1.0" 4282dependencies = [ 4283 "anyhow", 4284 "serde", 4285 "tokio", 4286 "tracing", 4287 "zerod-systemd", 4288] 4289 4290[[package]] 4291name = "zerod-discovery" 4292version = "0.1.0" 4293dependencies = [ 4294 "anyhow", 4295 "mdns-sd", 4296 "tracing", 4297] 4298 4299[[package]] 4300name = "zerod-events" 4301version = "0.1.0" 4302dependencies = [ 4303 "once_cell", 4304 "tokio", 4305] 4306 4307[[package]] 4308name = "zerod-proto" 4309version = "0.1.0" 4310dependencies = [ 4311 "prost", 4312 "tonic", 4313 "tonic-build", 4314] 4315 4316[[package]] 4317name = "zerod-server" 4318version = "0.1.0" 4319dependencies = [ 4320 "anyhow", 4321 "async-trait", 4322 "futures", 4323 "gethostname", 4324 "getrandom 0.2.17", 4325 "serde", 4326 "serde_json", 4327 "tokio", 4328 "tokio-stream", 4329 "toml", 4330 "tonic", 4331 "tonic-reflection", 4332 "tracing", 4333 "zerod-bluetooth", 4334 "zerod-config", 4335 "zerod-discovery", 4336 "zerod-events", 4337 "zerod-proto", 4338 "zerod-snapcast", 4339 "zerod-stream", 4340 "zerod-systemd", 4341 "zerod-volume", 4342] 4343 4344[[package]] 4345name = "zerod-snapcast" 4346version = "0.1.0" 4347dependencies = [ 4348 "anyhow", 4349 "serde", 4350 "serde_json", 4351 "tokio", 4352 "tracing", 4353 "zerod-events", 4354] 4355 4356[[package]] 4357name = "zerod-stream" 4358version = "0.1.0" 4359dependencies = [ 4360 "alsa", 4361 "anyhow", 4362 "async-trait", 4363 "bytes", 4364 "cpal", 4365 "dash-mpd", 4366 "m3u8-rs", 4367 "once_cell", 4368 "reqwest", 4369 "serde_json", 4370 "symphonia", 4371 "tokio", 4372 "tracing", 4373 "url", 4374 "zerod-events", 4375] 4376 4377[[package]] 4378name = "zerod-systemd" 4379version = "0.1.0" 4380dependencies = [ 4381 "anyhow", 4382 "serde", 4383 "tokio", 4384 "tracing", 4385 "zbus", 4386 "zerod-events", 4387] 4388 4389[[package]] 4390name = "zerod-volume" 4391version = "0.1.0" 4392dependencies = [ 4393 "alsa", 4394 "anyhow", 4395 "serde", 4396 "tracing", 4397 "zerod-events", 4398] 4399 4400[[package]] 4401name = "zerofrom" 4402version = "0.1.8" 4403source = "registry+https://github.com/rust-lang/crates.io-index" 4404checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" 4405dependencies = [ 4406 "zerofrom-derive", 4407] 4408 4409[[package]] 4410name = "zerofrom-derive" 4411version = "0.1.7" 4412source = "registry+https://github.com/rust-lang/crates.io-index" 4413checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" 4414dependencies = [ 4415 "proc-macro2", 4416 "quote", 4417 "syn 2.0.117", 4418 "synstructure", 4419] 4420 4421[[package]] 4422name = "zeroize" 4423version = "1.8.2" 4424source = "registry+https://github.com/rust-lang/crates.io-index" 4425checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 4426 4427[[package]] 4428name = "zerotrie" 4429version = "0.2.4" 4430source = "registry+https://github.com/rust-lang/crates.io-index" 4431checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" 4432dependencies = [ 4433 "displaydoc", 4434 "yoke", 4435 "zerofrom", 4436] 4437 4438[[package]] 4439name = "zerovec" 4440version = "0.11.6" 4441source = "registry+https://github.com/rust-lang/crates.io-index" 4442checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" 4443dependencies = [ 4444 "yoke", 4445 "zerofrom", 4446 "zerovec-derive", 4447] 4448 4449[[package]] 4450name = "zerovec-derive" 4451version = "0.11.3" 4452source = "registry+https://github.com/rust-lang/crates.io-index" 4453checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" 4454dependencies = [ 4455 "proc-macro2", 4456 "quote", 4457 "syn 2.0.117", 4458] 4459 4460[[package]] 4461name = "zmij" 4462version = "1.0.21" 4463source = "registry+https://github.com/rust-lang/crates.io-index" 4464checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 4465 4466[[package]] 4467name = "zvariant" 4468version = "4.2.0" 4469source = "registry+https://github.com/rust-lang/crates.io-index" 4470checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe" 4471dependencies = [ 4472 "endi", 4473 "enumflags2", 4474 "serde", 4475 "static_assertions", 4476 "zvariant_derive", 4477] 4478 4479[[package]] 4480name = "zvariant_derive" 4481version = "4.2.0" 4482source = "registry+https://github.com/rust-lang/crates.io-index" 4483checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" 4484dependencies = [ 4485 "proc-macro-crate", 4486 "proc-macro2", 4487 "quote", 4488 "syn 2.0.117", 4489 "zvariant_utils", 4490] 4491 4492[[package]] 4493name = "zvariant_utils" 4494version = "2.1.0" 4495source = "registry+https://github.com/rust-lang/crates.io-index" 4496checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" 4497dependencies = [ 4498 "proc-macro2", 4499 "quote", 4500 "syn 2.0.117", 4501]