nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 2999 lines 72 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "adler" 7version = "1.0.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 11[[package]] 12name = "aes" 13version = "0.7.5" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 16dependencies = [ 17 "cfg-if", 18 "cipher", 19 "cpufeatures", 20 "opaque-debug", 21] 22 23[[package]] 24name = "aho-corasick" 25version = "0.7.20" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 28dependencies = [ 29 "memchr", 30] 31 32[[package]] 33name = "android_system_properties" 34version = "0.1.5" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 37dependencies = [ 38 "libc", 39] 40 41[[package]] 42name = "anyhow" 43version = "1.0.69" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" 46 47[[package]] 48name = "async-broadcast" 49version = "0.5.1" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 52dependencies = [ 53 "event-listener", 54 "futures-core", 55] 56 57[[package]] 58name = "async-channel" 59version = "1.8.0" 60source = "registry+https://github.com/rust-lang/crates.io-index" 61checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 62dependencies = [ 63 "concurrent-queue", 64 "event-listener", 65 "futures-core", 66] 67 68[[package]] 69name = "async-executor" 70version = "1.5.0" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b" 73dependencies = [ 74 "async-lock", 75 "async-task", 76 "concurrent-queue", 77 "fastrand", 78 "futures-lite", 79 "slab", 80] 81 82[[package]] 83name = "async-fs" 84version = "1.6.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 87dependencies = [ 88 "async-lock", 89 "autocfg", 90 "blocking", 91 "futures-lite", 92] 93 94[[package]] 95name = "async-io" 96version = "1.12.0" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794" 99dependencies = [ 100 "async-lock", 101 "autocfg", 102 "concurrent-queue", 103 "futures-lite", 104 "libc", 105 "log", 106 "parking", 107 "polling", 108 "slab", 109 "socket2", 110 "waker-fn", 111 "windows-sys 0.42.0", 112] 113 114[[package]] 115name = "async-lock" 116version = "2.7.0" 117source = "registry+https://github.com/rust-lang/crates.io-index" 118checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 119dependencies = [ 120 "event-listener", 121] 122 123[[package]] 124name = "async-recursion" 125version = "1.0.2" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "3b015a331cc64ebd1774ba119538573603427eaace0a1950c423ab971f903796" 128dependencies = [ 129 "proc-macro2", 130 "quote", 131 "syn", 132] 133 134[[package]] 135name = "async-task" 136version = "4.3.0" 137source = "registry+https://github.com/rust-lang/crates.io-index" 138checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" 139 140[[package]] 141name = "async-trait" 142version = "0.1.66" 143source = "registry+https://github.com/rust-lang/crates.io-index" 144checksum = "b84f9ebcc6c1f5b8cb160f6990096a5c127f423fcb6e1ccc46c370cbdfb75dfc" 145dependencies = [ 146 "proc-macro2", 147 "quote", 148 "syn", 149] 150 151[[package]] 152name = "atomic-waker" 153version = "1.1.0" 154source = "registry+https://github.com/rust-lang/crates.io-index" 155checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599" 156 157[[package]] 158name = "autocfg" 159version = "1.1.0" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 162 163[[package]] 164name = "base64" 165version = "0.21.0" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 168 169[[package]] 170name = "base64ct" 171version = "1.6.0" 172source = "registry+https://github.com/rust-lang/crates.io-index" 173checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 174 175[[package]] 176name = "bitflags" 177version = "1.3.2" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 180 181[[package]] 182name = "block-buffer" 183version = "0.10.4" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 186dependencies = [ 187 "generic-array", 188] 189 190[[package]] 191name = "blocking" 192version = "1.3.0" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8" 195dependencies = [ 196 "async-channel", 197 "async-lock", 198 "async-task", 199 "atomic-waker", 200 "fastrand", 201 "futures-lite", 202] 203 204[[package]] 205name = "bluer" 206version = "0.15.7" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "3d76ba39a871348200bbbf7dbff9fbaec30f0b988420f7391bfd9fdc5f8b5144" 209dependencies = [ 210 "custom_debug", 211 "dbus", 212 "dbus-crossroads", 213 "dbus-tokio", 214 "displaydoc", 215 "futures", 216 "hex", 217 "lazy_static", 218 "libc", 219 "log", 220 "macaddr", 221 "nix", 222 "num-derive", 223 "num-traits", 224 "pin-project", 225 "serde", 226 "serde_json", 227 "strum", 228 "tokio", 229 "tokio-stream", 230 "uuid", 231] 232 233[[package]] 234name = "bumpalo" 235version = "3.12.0" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 238 239[[package]] 240name = "byteorder" 241version = "1.4.3" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 244 245[[package]] 246name = "bytes" 247version = "1.4.0" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 250 251[[package]] 252name = "bzip2" 253version = "0.4.4" 254source = "registry+https://github.com/rust-lang/crates.io-index" 255checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 256dependencies = [ 257 "bzip2-sys", 258 "libc", 259] 260 261[[package]] 262name = "bzip2-sys" 263version = "0.1.11+1.0.8" 264source = "registry+https://github.com/rust-lang/crates.io-index" 265checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 266dependencies = [ 267 "cc", 268 "libc", 269 "pkg-config", 270] 271 272[[package]] 273name = "cairo-rs" 274version = "0.17.0" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871" 277dependencies = [ 278 "bitflags", 279 "cairo-sys-rs", 280 "glib", 281 "libc", 282 "once_cell", 283 "thiserror", 284] 285 286[[package]] 287name = "cairo-sys-rs" 288version = "0.17.0" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e" 291dependencies = [ 292 "glib-sys", 293 "libc", 294 "system-deps", 295] 296 297[[package]] 298name = "cc" 299version = "1.0.79" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 302dependencies = [ 303 "jobserver", 304] 305 306[[package]] 307name = "cfg-expr" 308version = "0.11.0" 309source = "registry+https://github.com/rust-lang/crates.io-index" 310checksum = "b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa" 311dependencies = [ 312 "smallvec", 313] 314 315[[package]] 316name = "cfg-if" 317version = "1.0.0" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 320 321[[package]] 322name = "chrono" 323version = "0.4.24" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 326dependencies = [ 327 "iana-time-zone", 328 "js-sys", 329 "num-integer", 330 "num-traits", 331 "time 0.1.45", 332 "wasm-bindgen", 333 "winapi", 334] 335 336[[package]] 337name = "cipher" 338version = "0.3.0" 339source = "registry+https://github.com/rust-lang/crates.io-index" 340checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 341dependencies = [ 342 "generic-array", 343] 344 345[[package]] 346name = "codespan-reporting" 347version = "0.11.1" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 350dependencies = [ 351 "termcolor", 352 "unicode-width", 353] 354 355[[package]] 356name = "concurrent-queue" 357version = "2.1.0" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 360dependencies = [ 361 "crossbeam-utils", 362] 363 364[[package]] 365name = "constant_time_eq" 366version = "0.1.5" 367source = "registry+https://github.com/rust-lang/crates.io-index" 368checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 369 370[[package]] 371name = "core-foundation" 372version = "0.9.3" 373source = "registry+https://github.com/rust-lang/crates.io-index" 374checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 375dependencies = [ 376 "core-foundation-sys", 377 "libc", 378] 379 380[[package]] 381name = "core-foundation-sys" 382version = "0.8.3" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 385 386[[package]] 387name = "cpufeatures" 388version = "0.2.5" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 391dependencies = [ 392 "libc", 393] 394 395[[package]] 396name = "crc32fast" 397version = "1.3.2" 398source = "registry+https://github.com/rust-lang/crates.io-index" 399checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 400dependencies = [ 401 "cfg-if", 402] 403 404[[package]] 405name = "crossbeam-utils" 406version = "0.8.15" 407source = "registry+https://github.com/rust-lang/crates.io-index" 408checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 409dependencies = [ 410 "cfg-if", 411] 412 413[[package]] 414name = "crypto-common" 415version = "0.1.6" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 418dependencies = [ 419 "generic-array", 420 "typenum", 421] 422 423[[package]] 424name = "custom_debug" 425version = "0.5.1" 426source = "registry+https://github.com/rust-lang/crates.io-index" 427checksum = "e89e0ae2c2a42be29595d05c50e3ce6096c0698a97e021c3289790f0750cc8e2" 428dependencies = [ 429 "custom_debug_derive", 430] 431 432[[package]] 433name = "custom_debug_derive" 434version = "0.5.1" 435source = "registry+https://github.com/rust-lang/crates.io-index" 436checksum = "08a9f3941234c9f62ceaa2782974827749de9b0a8a6487275a278da068e1baf7" 437dependencies = [ 438 "proc-macro2", 439 "syn", 440 "synstructure", 441] 442 443[[package]] 444name = "cxx" 445version = "1.0.92" 446source = "registry+https://github.com/rust-lang/crates.io-index" 447checksum = "9a140f260e6f3f79013b8bfc65e7ce630c9ab4388c6a89c71e07226f49487b72" 448dependencies = [ 449 "cc", 450 "cxxbridge-flags", 451 "cxxbridge-macro", 452 "link-cplusplus", 453] 454 455[[package]] 456name = "cxx-build" 457version = "1.0.92" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "da6383f459341ea689374bf0a42979739dc421874f112ff26f829b8040b8e613" 460dependencies = [ 461 "cc", 462 "codespan-reporting", 463 "once_cell", 464 "proc-macro2", 465 "quote", 466 "scratch", 467 "syn", 468] 469 470[[package]] 471name = "cxxbridge-flags" 472version = "1.0.92" 473source = "registry+https://github.com/rust-lang/crates.io-index" 474checksum = "90201c1a650e95ccff1c8c0bb5a343213bdd317c6e600a93075bca2eff54ec97" 475 476[[package]] 477name = "cxxbridge-macro" 478version = "1.0.92" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "0b75aed41bb2e6367cae39e6326ef817a851db13c13e4f3263714ca3cfb8de56" 481dependencies = [ 482 "proc-macro2", 483 "quote", 484 "syn", 485] 486 487[[package]] 488name = "dbus" 489version = "0.9.7" 490source = "registry+https://github.com/rust-lang/crates.io-index" 491checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 492dependencies = [ 493 "futures-channel", 494 "futures-util", 495 "libc", 496 "libdbus-sys", 497 "winapi", 498] 499 500[[package]] 501name = "dbus-crossroads" 502version = "0.5.2" 503source = "registry+https://github.com/rust-lang/crates.io-index" 504checksum = "3a4c83437187544ba5142427746835061b330446ca8902eabd70e4afb8f76de0" 505dependencies = [ 506 "dbus", 507] 508 509[[package]] 510name = "dbus-tokio" 511version = "0.7.6" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "007688d459bc677131c063a3a77fb899526e17b7980f390b69644bdbc41fad13" 514dependencies = [ 515 "dbus", 516 "libc", 517 "tokio", 518] 519 520[[package]] 521name = "derivative" 522version = "2.2.0" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 525dependencies = [ 526 "proc-macro2", 527 "quote", 528 "syn", 529] 530 531[[package]] 532name = "digest" 533version = "0.10.6" 534source = "registry+https://github.com/rust-lang/crates.io-index" 535checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 536dependencies = [ 537 "block-buffer", 538 "crypto-common", 539 "subtle", 540] 541 542[[package]] 543name = "dirs" 544version = "4.0.0" 545source = "registry+https://github.com/rust-lang/crates.io-index" 546checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 547dependencies = [ 548 "dirs-sys", 549] 550 551[[package]] 552name = "dirs-sys" 553version = "0.3.7" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 556dependencies = [ 557 "libc", 558 "redox_users", 559 "winapi", 560] 561 562[[package]] 563name = "displaydoc" 564version = "0.2.3" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 567dependencies = [ 568 "proc-macro2", 569 "quote", 570 "syn", 571] 572 573[[package]] 574name = "encoding_rs" 575version = "0.8.32" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 578dependencies = [ 579 "cfg-if", 580] 581 582[[package]] 583name = "enumflags2" 584version = "0.7.5" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb" 587dependencies = [ 588 "enumflags2_derive", 589 "serde", 590] 591 592[[package]] 593name = "enumflags2_derive" 594version = "0.7.4" 595source = "registry+https://github.com/rust-lang/crates.io-index" 596checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae" 597dependencies = [ 598 "proc-macro2", 599 "quote", 600 "syn", 601] 602 603[[package]] 604name = "env_logger" 605version = "0.10.0" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 608dependencies = [ 609 "humantime", 610 "is-terminal", 611 "log", 612 "regex", 613 "termcolor", 614] 615 616[[package]] 617name = "errno" 618version = "0.2.8" 619source = "registry+https://github.com/rust-lang/crates.io-index" 620checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 621dependencies = [ 622 "errno-dragonfly", 623 "libc", 624 "winapi", 625] 626 627[[package]] 628name = "errno-dragonfly" 629version = "0.1.2" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 632dependencies = [ 633 "cc", 634 "libc", 635] 636 637[[package]] 638name = "event-listener" 639version = "2.5.3" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 642 643[[package]] 644name = "fastrand" 645version = "1.9.0" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 648dependencies = [ 649 "instant", 650] 651 652[[package]] 653name = "field-offset" 654version = "0.3.5" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535" 657dependencies = [ 658 "memoffset 0.8.0", 659 "rustc_version", 660] 661 662[[package]] 663name = "flate2" 664version = "1.0.25" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 667dependencies = [ 668 "crc32fast", 669 "miniz_oxide", 670] 671 672[[package]] 673name = "flume" 674version = "0.10.14" 675source = "registry+https://github.com/rust-lang/crates.io-index" 676checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 677dependencies = [ 678 "futures-core", 679 "futures-sink", 680 "nanorand", 681 "pin-project", 682 "spin", 683] 684 685[[package]] 686name = "fnv" 687version = "1.0.7" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 690 691[[package]] 692name = "foreign-types" 693version = "0.3.2" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 696dependencies = [ 697 "foreign-types-shared", 698] 699 700[[package]] 701name = "foreign-types-shared" 702version = "0.1.1" 703source = "registry+https://github.com/rust-lang/crates.io-index" 704checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 705 706[[package]] 707name = "form_urlencoded" 708version = "1.1.0" 709source = "registry+https://github.com/rust-lang/crates.io-index" 710checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 711dependencies = [ 712 "percent-encoding", 713] 714 715[[package]] 716name = "fragile" 717version = "2.0.0" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" 720 721[[package]] 722name = "futures" 723version = "0.3.27" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549" 726dependencies = [ 727 "futures-channel", 728 "futures-core", 729 "futures-executor", 730 "futures-io", 731 "futures-sink", 732 "futures-task", 733 "futures-util", 734] 735 736[[package]] 737name = "futures-channel" 738version = "0.3.27" 739source = "registry+https://github.com/rust-lang/crates.io-index" 740checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac" 741dependencies = [ 742 "futures-core", 743 "futures-sink", 744] 745 746[[package]] 747name = "futures-core" 748version = "0.3.27" 749source = "registry+https://github.com/rust-lang/crates.io-index" 750checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd" 751 752[[package]] 753name = "futures-executor" 754version = "0.3.27" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83" 757dependencies = [ 758 "futures-core", 759 "futures-task", 760 "futures-util", 761] 762 763[[package]] 764name = "futures-io" 765version = "0.3.27" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91" 768 769[[package]] 770name = "futures-lite" 771version = "1.12.0" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 774dependencies = [ 775 "fastrand", 776 "futures-core", 777 "futures-io", 778 "memchr", 779 "parking", 780 "pin-project-lite", 781 "waker-fn", 782] 783 784[[package]] 785name = "futures-macro" 786version = "0.3.27" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6" 789dependencies = [ 790 "proc-macro2", 791 "quote", 792 "syn", 793] 794 795[[package]] 796name = "futures-sink" 797version = "0.3.27" 798source = "registry+https://github.com/rust-lang/crates.io-index" 799checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2" 800 801[[package]] 802name = "futures-task" 803version = "0.3.27" 804source = "registry+https://github.com/rust-lang/crates.io-index" 805checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879" 806 807[[package]] 808name = "futures-util" 809version = "0.3.27" 810source = "registry+https://github.com/rust-lang/crates.io-index" 811checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab" 812dependencies = [ 813 "futures-channel", 814 "futures-core", 815 "futures-io", 816 "futures-macro", 817 "futures-sink", 818 "futures-task", 819 "memchr", 820 "pin-project-lite", 821 "pin-utils", 822 "slab", 823] 824 825[[package]] 826name = "gdk-pixbuf" 827version = "0.17.0" 828source = "registry+https://github.com/rust-lang/crates.io-index" 829checksum = "b023fbe0c6b407bd3d9805d107d9800da3829dc5a676653210f1d5f16d7f59bf" 830dependencies = [ 831 "bitflags", 832 "gdk-pixbuf-sys", 833 "gio", 834 "glib", 835 "libc", 836 "once_cell", 837] 838 839[[package]] 840name = "gdk-pixbuf-sys" 841version = "0.17.0" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "7b41bd2b44ed49d99277d3925652a163038bd5ed943ec9809338ffb2f4391e3b" 844dependencies = [ 845 "gio-sys", 846 "glib-sys", 847 "gobject-sys", 848 "libc", 849 "system-deps", 850] 851 852[[package]] 853name = "gdk4" 854version = "0.6.2" 855source = "registry+https://github.com/rust-lang/crates.io-index" 856checksum = "e5042053ee765aeef08d9d7e3f0f1e36a4d37f1659b3f93ad3d6997515dbb64a" 857dependencies = [ 858 "bitflags", 859 "cairo-rs", 860 "gdk-pixbuf", 861 "gdk4-sys", 862 "gio", 863 "glib", 864 "libc", 865 "pango", 866] 867 868[[package]] 869name = "gdk4-sys" 870version = "0.6.2" 871source = "registry+https://github.com/rust-lang/crates.io-index" 872checksum = "14f0fb00507af1e9299681dd09965f720e2b5ea95536d49a5681e8994ef10c7a" 873dependencies = [ 874 "cairo-sys-rs", 875 "gdk-pixbuf-sys", 876 "gio-sys", 877 "glib-sys", 878 "gobject-sys", 879 "libc", 880 "pango-sys", 881 "pkg-config", 882 "system-deps", 883] 884 885[[package]] 886name = "generic-array" 887version = "0.14.6" 888source = "registry+https://github.com/rust-lang/crates.io-index" 889checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 890dependencies = [ 891 "typenum", 892 "version_check", 893] 894 895[[package]] 896name = "getrandom" 897version = "0.2.8" 898source = "registry+https://github.com/rust-lang/crates.io-index" 899checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 900dependencies = [ 901 "cfg-if", 902 "js-sys", 903 "libc", 904 "wasi 0.11.0+wasi-snapshot-preview1", 905 "wasm-bindgen", 906] 907 908[[package]] 909name = "gio" 910version = "0.17.4" 911source = "registry+https://github.com/rust-lang/crates.io-index" 912checksum = "2261a3b4e922ec676d1c27ac466218c38cf5dcb49a759129e54bb5046e442125" 913dependencies = [ 914 "bitflags", 915 "futures-channel", 916 "futures-core", 917 "futures-io", 918 "futures-util", 919 "gio-sys", 920 "glib", 921 "libc", 922 "once_cell", 923 "pin-project-lite", 924 "smallvec", 925 "thiserror", 926] 927 928[[package]] 929name = "gio-sys" 930version = "0.17.4" 931source = "registry+https://github.com/rust-lang/crates.io-index" 932checksum = "6b1d43b0d7968b48455244ecafe41192871257f5740aa6b095eb19db78e362a5" 933dependencies = [ 934 "glib-sys", 935 "gobject-sys", 936 "libc", 937 "system-deps", 938 "winapi", 939] 940 941[[package]] 942name = "glib" 943version = "0.17.5" 944source = "registry+https://github.com/rust-lang/crates.io-index" 945checksum = "cfb53061756195d76969292c2d2e329e01259276524a9bae6c9b73af62854773" 946dependencies = [ 947 "bitflags", 948 "futures-channel", 949 "futures-core", 950 "futures-executor", 951 "futures-task", 952 "futures-util", 953 "gio-sys", 954 "glib-macros", 955 "glib-sys", 956 "gobject-sys", 957 "libc", 958 "memchr", 959 "once_cell", 960 "smallvec", 961 "thiserror", 962] 963 964[[package]] 965name = "glib-macros" 966version = "0.17.5" 967source = "registry+https://github.com/rust-lang/crates.io-index" 968checksum = "454924cafe58d9174dc32972261fe271d6cd3c10f5e9ff505522a28dcf601a40" 969dependencies = [ 970 "anyhow", 971 "heck", 972 "proc-macro-crate", 973 "proc-macro-error", 974 "proc-macro2", 975 "quote", 976 "syn", 977] 978 979[[package]] 980name = "glib-sys" 981version = "0.17.4" 982source = "registry+https://github.com/rust-lang/crates.io-index" 983checksum = "49f00ad0a1bf548e61adfff15d83430941d9e1bb620e334f779edd1c745680a5" 984dependencies = [ 985 "libc", 986 "system-deps", 987] 988 989[[package]] 990name = "gobject-sys" 991version = "0.17.4" 992source = "registry+https://github.com/rust-lang/crates.io-index" 993checksum = "15e75b0000a64632b2d8ca3cf856af9308e3a970844f6e9659bd197f026793d0" 994dependencies = [ 995 "glib-sys", 996 "libc", 997 "system-deps", 998] 999 1000[[package]] 1001name = "graphene-rs" 1002version = "0.17.1" 1003source = "registry+https://github.com/rust-lang/crates.io-index" 1004checksum = "21cf11565bb0e4dfc2f99d4775b6c329f0d40a2cff9c0066214d31a0e1b46256" 1005dependencies = [ 1006 "glib", 1007 "graphene-sys", 1008 "libc", 1009] 1010 1011[[package]] 1012name = "graphene-sys" 1013version = "0.17.0" 1014source = "registry+https://github.com/rust-lang/crates.io-index" 1015checksum = "cf80a4849a8d9565410a8fec6fc3678e9c617f4ac7be182ca55ab75016e07af9" 1016dependencies = [ 1017 "glib-sys", 1018 "libc", 1019 "pkg-config", 1020 "system-deps", 1021] 1022 1023[[package]] 1024name = "gsk4" 1025version = "0.6.2" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "2fa9cd285a72a95124b65c069a9cb1b8fb8e310be71783404c39fccf3bf7774c" 1028dependencies = [ 1029 "bitflags", 1030 "cairo-rs", 1031 "gdk4", 1032 "glib", 1033 "graphene-rs", 1034 "gsk4-sys", 1035 "libc", 1036 "pango", 1037] 1038 1039[[package]] 1040name = "gsk4-sys" 1041version = "0.6.2" 1042source = "registry+https://github.com/rust-lang/crates.io-index" 1043checksum = "5a445ae1e50cbf181a1d5c61b920a7e7e8657b96e0ecdbbf8911a86fad462a32" 1044dependencies = [ 1045 "cairo-sys-rs", 1046 "gdk4-sys", 1047 "glib-sys", 1048 "gobject-sys", 1049 "graphene-sys", 1050 "libc", 1051 "pango-sys", 1052 "system-deps", 1053] 1054 1055[[package]] 1056name = "gtk4" 1057version = "0.6.2" 1058source = "registry+https://github.com/rust-lang/crates.io-index" 1059checksum = "e47dca53cb1a8ae3006e869b5711ae7370180db537f6d98e3bcaf23fabfd911f" 1060dependencies = [ 1061 "bitflags", 1062 "cairo-rs", 1063 "field-offset", 1064 "futures-channel", 1065 "gdk-pixbuf", 1066 "gdk4", 1067 "gio", 1068 "glib", 1069 "graphene-rs", 1070 "gsk4", 1071 "gtk4-macros", 1072 "gtk4-sys", 1073 "libc", 1074 "once_cell", 1075 "pango", 1076] 1077 1078[[package]] 1079name = "gtk4-macros" 1080version = "0.6.0" 1081source = "registry+https://github.com/rust-lang/crates.io-index" 1082checksum = "db4676c4f90d8b010e88cb4558f61f47d76d6f6b8e6f6b89e62640f443907f61" 1083dependencies = [ 1084 "anyhow", 1085 "proc-macro-crate", 1086 "proc-macro-error", 1087 "proc-macro2", 1088 "quote", 1089 "syn", 1090] 1091 1092[[package]] 1093name = "gtk4-sys" 1094version = "0.6.2" 1095source = "registry+https://github.com/rust-lang/crates.io-index" 1096checksum = "65463dc801460e498d5e7ffa6e9ae2cfbed7d05fabd1ca5a8d024adbc89eeda6" 1097dependencies = [ 1098 "cairo-sys-rs", 1099 "gdk-pixbuf-sys", 1100 "gdk4-sys", 1101 "gio-sys", 1102 "glib-sys", 1103 "gobject-sys", 1104 "graphene-sys", 1105 "gsk4-sys", 1106 "libc", 1107 "pango-sys", 1108 "system-deps", 1109] 1110 1111[[package]] 1112name = "h2" 1113version = "0.3.16" 1114source = "registry+https://github.com/rust-lang/crates.io-index" 1115checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 1116dependencies = [ 1117 "bytes", 1118 "fnv", 1119 "futures-core", 1120 "futures-sink", 1121 "futures-util", 1122 "http", 1123 "indexmap", 1124 "slab", 1125 "tokio", 1126 "tokio-util", 1127 "tracing", 1128] 1129 1130[[package]] 1131name = "hashbrown" 1132version = "0.12.3" 1133source = "registry+https://github.com/rust-lang/crates.io-index" 1134checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1135 1136[[package]] 1137name = "heck" 1138version = "0.4.1" 1139source = "registry+https://github.com/rust-lang/crates.io-index" 1140checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1141 1142[[package]] 1143name = "hermit-abi" 1144version = "0.2.6" 1145source = "registry+https://github.com/rust-lang/crates.io-index" 1146checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1147dependencies = [ 1148 "libc", 1149] 1150 1151[[package]] 1152name = "hermit-abi" 1153version = "0.3.1" 1154source = "registry+https://github.com/rust-lang/crates.io-index" 1155checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1156 1157[[package]] 1158name = "hex" 1159version = "0.4.3" 1160source = "registry+https://github.com/rust-lang/crates.io-index" 1161checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1162 1163[[package]] 1164name = "hmac" 1165version = "0.12.1" 1166source = "registry+https://github.com/rust-lang/crates.io-index" 1167checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1168dependencies = [ 1169 "digest", 1170] 1171 1172[[package]] 1173name = "http" 1174version = "0.2.9" 1175source = "registry+https://github.com/rust-lang/crates.io-index" 1176checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1177dependencies = [ 1178 "bytes", 1179 "fnv", 1180 "itoa", 1181] 1182 1183[[package]] 1184name = "http-body" 1185version = "0.4.5" 1186source = "registry+https://github.com/rust-lang/crates.io-index" 1187checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1188dependencies = [ 1189 "bytes", 1190 "http", 1191 "pin-project-lite", 1192] 1193 1194[[package]] 1195name = "httparse" 1196version = "1.8.0" 1197source = "registry+https://github.com/rust-lang/crates.io-index" 1198checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1199 1200[[package]] 1201name = "httpdate" 1202version = "1.0.2" 1203source = "registry+https://github.com/rust-lang/crates.io-index" 1204checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1205 1206[[package]] 1207name = "humantime" 1208version = "2.1.0" 1209source = "registry+https://github.com/rust-lang/crates.io-index" 1210checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1211 1212[[package]] 1213name = "hyper" 1214version = "0.14.25" 1215source = "registry+https://github.com/rust-lang/crates.io-index" 1216checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" 1217dependencies = [ 1218 "bytes", 1219 "futures-channel", 1220 "futures-core", 1221 "futures-util", 1222 "h2", 1223 "http", 1224 "http-body", 1225 "httparse", 1226 "httpdate", 1227 "itoa", 1228 "pin-project-lite", 1229 "socket2", 1230 "tokio", 1231 "tower-service", 1232 "tracing", 1233 "want", 1234] 1235 1236[[package]] 1237name = "hyper-tls" 1238version = "0.5.0" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1241dependencies = [ 1242 "bytes", 1243 "hyper", 1244 "native-tls", 1245 "tokio", 1246 "tokio-native-tls", 1247] 1248 1249[[package]] 1250name = "iana-time-zone" 1251version = "0.1.53" 1252source = "registry+https://github.com/rust-lang/crates.io-index" 1253checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 1254dependencies = [ 1255 "android_system_properties", 1256 "core-foundation-sys", 1257 "iana-time-zone-haiku", 1258 "js-sys", 1259 "wasm-bindgen", 1260 "winapi", 1261] 1262 1263[[package]] 1264name = "iana-time-zone-haiku" 1265version = "0.1.1" 1266source = "registry+https://github.com/rust-lang/crates.io-index" 1267checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 1268dependencies = [ 1269 "cxx", 1270 "cxx-build", 1271] 1272 1273[[package]] 1274name = "idna" 1275version = "0.3.0" 1276source = "registry+https://github.com/rust-lang/crates.io-index" 1277checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1278dependencies = [ 1279 "unicode-bidi", 1280 "unicode-normalization", 1281] 1282 1283[[package]] 1284name = "indexmap" 1285version = "1.9.2" 1286source = "registry+https://github.com/rust-lang/crates.io-index" 1287checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 1288dependencies = [ 1289 "autocfg", 1290 "hashbrown", 1291] 1292 1293[[package]] 1294name = "infinitime" 1295version = "0.1.0" 1296dependencies = [ 1297 "anyhow", 1298 "bluer", 1299 "chrono", 1300 "futures", 1301 "log", 1302 "mpris2-zbus", 1303 "reqwest", 1304 "serde", 1305 "serde_json", 1306 "tokio", 1307 "uuid", 1308 "version-compare", 1309 "zbus", 1310 "zip", 1311] 1312 1313[[package]] 1314name = "instant" 1315version = "0.1.12" 1316source = "registry+https://github.com/rust-lang/crates.io-index" 1317checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1318dependencies = [ 1319 "cfg-if", 1320] 1321 1322[[package]] 1323name = "io-lifetimes" 1324version = "1.0.6" 1325source = "registry+https://github.com/rust-lang/crates.io-index" 1326checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3" 1327dependencies = [ 1328 "libc", 1329 "windows-sys 0.45.0", 1330] 1331 1332[[package]] 1333name = "ipnet" 1334version = "2.7.1" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 1337 1338[[package]] 1339name = "is-terminal" 1340version = "0.4.4" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" 1343dependencies = [ 1344 "hermit-abi 0.3.1", 1345 "io-lifetimes", 1346 "rustix", 1347 "windows-sys 0.45.0", 1348] 1349 1350[[package]] 1351name = "itoa" 1352version = "1.0.6" 1353source = "registry+https://github.com/rust-lang/crates.io-index" 1354checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1355 1356[[package]] 1357name = "jobserver" 1358version = "0.1.26" 1359source = "registry+https://github.com/rust-lang/crates.io-index" 1360checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1361dependencies = [ 1362 "libc", 1363] 1364 1365[[package]] 1366name = "js-sys" 1367version = "0.3.61" 1368source = "registry+https://github.com/rust-lang/crates.io-index" 1369checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1370dependencies = [ 1371 "wasm-bindgen", 1372] 1373 1374[[package]] 1375name = "lazy_static" 1376version = "1.4.0" 1377source = "registry+https://github.com/rust-lang/crates.io-index" 1378checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1379 1380[[package]] 1381name = "libadwaita" 1382version = "0.3.1" 1383source = "registry+https://github.com/rust-lang/crates.io-index" 1384checksum = "b1c4efd2020a4fcedbad2c4a97de97bf6045e5dc49d61d5a5d0cfd753db60700" 1385dependencies = [ 1386 "bitflags", 1387 "futures-channel", 1388 "gdk-pixbuf", 1389 "gdk4", 1390 "gio", 1391 "glib", 1392 "gtk4", 1393 "libadwaita-sys", 1394 "libc", 1395 "once_cell", 1396 "pango", 1397] 1398 1399[[package]] 1400name = "libadwaita-sys" 1401version = "0.3.0" 1402source = "registry+https://github.com/rust-lang/crates.io-index" 1403checksum = "0727b85b4fe2b1bed5ac90df6343de15cbf8118bfb96d7c3cc1512681a4b34ac" 1404dependencies = [ 1405 "gdk4-sys", 1406 "gio-sys", 1407 "glib-sys", 1408 "gobject-sys", 1409 "gtk4-sys", 1410 "libc", 1411 "pango-sys", 1412 "system-deps", 1413] 1414 1415[[package]] 1416name = "libc" 1417version = "0.2.140" 1418source = "registry+https://github.com/rust-lang/crates.io-index" 1419checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 1420 1421[[package]] 1422name = "libdbus-sys" 1423version = "0.2.4" 1424source = "registry+https://github.com/rust-lang/crates.io-index" 1425checksum = "9f8d7ae751e1cb825c840ae5e682f59b098cdfd213c350ac268b61449a5f58a0" 1426dependencies = [ 1427 "pkg-config", 1428] 1429 1430[[package]] 1431name = "link-cplusplus" 1432version = "1.0.8" 1433source = "registry+https://github.com/rust-lang/crates.io-index" 1434checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 1435dependencies = [ 1436 "cc", 1437] 1438 1439[[package]] 1440name = "linux-raw-sys" 1441version = "0.1.4" 1442source = "registry+https://github.com/rust-lang/crates.io-index" 1443checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 1444 1445[[package]] 1446name = "lock_api" 1447version = "0.4.9" 1448source = "registry+https://github.com/rust-lang/crates.io-index" 1449checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1450dependencies = [ 1451 "autocfg", 1452 "scopeguard", 1453] 1454 1455[[package]] 1456name = "log" 1457version = "0.4.17" 1458source = "registry+https://github.com/rust-lang/crates.io-index" 1459checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1460dependencies = [ 1461 "cfg-if", 1462] 1463 1464[[package]] 1465name = "macaddr" 1466version = "1.0.1" 1467source = "registry+https://github.com/rust-lang/crates.io-index" 1468checksum = "baee0bbc17ce759db233beb01648088061bf678383130602a298e6998eedb2d8" 1469 1470[[package]] 1471name = "memchr" 1472version = "2.5.0" 1473source = "registry+https://github.com/rust-lang/crates.io-index" 1474checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1475 1476[[package]] 1477name = "memoffset" 1478version = "0.7.1" 1479source = "registry+https://github.com/rust-lang/crates.io-index" 1480checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1481dependencies = [ 1482 "autocfg", 1483] 1484 1485[[package]] 1486name = "memoffset" 1487version = "0.8.0" 1488source = "registry+https://github.com/rust-lang/crates.io-index" 1489checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1490dependencies = [ 1491 "autocfg", 1492] 1493 1494[[package]] 1495name = "mime" 1496version = "0.3.16" 1497source = "registry+https://github.com/rust-lang/crates.io-index" 1498checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1499 1500[[package]] 1501name = "miniz_oxide" 1502version = "0.6.2" 1503source = "registry+https://github.com/rust-lang/crates.io-index" 1504checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1505dependencies = [ 1506 "adler", 1507] 1508 1509[[package]] 1510name = "mio" 1511version = "0.8.6" 1512source = "registry+https://github.com/rust-lang/crates.io-index" 1513checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 1514dependencies = [ 1515 "libc", 1516 "log", 1517 "wasi 0.11.0+wasi-snapshot-preview1", 1518 "windows-sys 0.45.0", 1519] 1520 1521[[package]] 1522name = "mpris2-zbus" 1523version = "0.1.0" 1524source = "git+https://github.com/pop-os/mpris2-zbus#a41a9b994a901cb2bb7a83424c8c21a78ba658c6" 1525dependencies = [ 1526 "serde", 1527 "thiserror", 1528 "time 0.3.20", 1529 "zbus", 1530 "zvariant", 1531] 1532 1533[[package]] 1534name = "nanorand" 1535version = "0.7.0" 1536source = "registry+https://github.com/rust-lang/crates.io-index" 1537checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 1538dependencies = [ 1539 "getrandom", 1540] 1541 1542[[package]] 1543name = "native-tls" 1544version = "0.2.11" 1545source = "registry+https://github.com/rust-lang/crates.io-index" 1546checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1547dependencies = [ 1548 "lazy_static", 1549 "libc", 1550 "log", 1551 "openssl", 1552 "openssl-probe", 1553 "openssl-sys", 1554 "schannel", 1555 "security-framework", 1556 "security-framework-sys", 1557 "tempfile", 1558] 1559 1560[[package]] 1561name = "nix" 1562version = "0.26.2" 1563source = "registry+https://github.com/rust-lang/crates.io-index" 1564checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 1565dependencies = [ 1566 "bitflags", 1567 "cfg-if", 1568 "libc", 1569 "memoffset 0.7.1", 1570 "pin-utils", 1571 "static_assertions", 1572] 1573 1574[[package]] 1575name = "num-derive" 1576version = "0.3.3" 1577source = "registry+https://github.com/rust-lang/crates.io-index" 1578checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 1579dependencies = [ 1580 "proc-macro2", 1581 "quote", 1582 "syn", 1583] 1584 1585[[package]] 1586name = "num-integer" 1587version = "0.1.45" 1588source = "registry+https://github.com/rust-lang/crates.io-index" 1589checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1590dependencies = [ 1591 "autocfg", 1592 "num-traits", 1593] 1594 1595[[package]] 1596name = "num-traits" 1597version = "0.2.15" 1598source = "registry+https://github.com/rust-lang/crates.io-index" 1599checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1600dependencies = [ 1601 "autocfg", 1602] 1603 1604[[package]] 1605name = "num_cpus" 1606version = "1.15.0" 1607source = "registry+https://github.com/rust-lang/crates.io-index" 1608checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1609dependencies = [ 1610 "hermit-abi 0.2.6", 1611 "libc", 1612] 1613 1614[[package]] 1615name = "once_cell" 1616version = "1.17.1" 1617source = "registry+https://github.com/rust-lang/crates.io-index" 1618checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1619 1620[[package]] 1621name = "opaque-debug" 1622version = "0.3.0" 1623source = "registry+https://github.com/rust-lang/crates.io-index" 1624checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1625 1626[[package]] 1627name = "openssl" 1628version = "0.10.46" 1629source = "registry+https://github.com/rust-lang/crates.io-index" 1630checksum = "fd2523381e46256e40930512c7fd25562b9eae4812cb52078f155e87217c9d1e" 1631dependencies = [ 1632 "bitflags", 1633 "cfg-if", 1634 "foreign-types", 1635 "libc", 1636 "once_cell", 1637 "openssl-macros", 1638 "openssl-sys", 1639] 1640 1641[[package]] 1642name = "openssl-macros" 1643version = "0.1.0" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1646dependencies = [ 1647 "proc-macro2", 1648 "quote", 1649 "syn", 1650] 1651 1652[[package]] 1653name = "openssl-probe" 1654version = "0.1.5" 1655source = "registry+https://github.com/rust-lang/crates.io-index" 1656checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1657 1658[[package]] 1659name = "openssl-sys" 1660version = "0.9.81" 1661source = "registry+https://github.com/rust-lang/crates.io-index" 1662checksum = "176be2629957c157240f68f61f2d0053ad3a4ecfdd9ebf1e6521d18d9635cf67" 1663dependencies = [ 1664 "autocfg", 1665 "cc", 1666 "libc", 1667 "pkg-config", 1668 "vcpkg", 1669] 1670 1671[[package]] 1672name = "ordered-stream" 1673version = "0.2.0" 1674source = "registry+https://github.com/rust-lang/crates.io-index" 1675checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 1676dependencies = [ 1677 "futures-core", 1678 "pin-project-lite", 1679] 1680 1681[[package]] 1682name = "pango" 1683version = "0.17.4" 1684source = "registry+https://github.com/rust-lang/crates.io-index" 1685checksum = "52c280b82a881e4208afb3359a8e7fde27a1b272280981f1f34610bed5770d37" 1686dependencies = [ 1687 "bitflags", 1688 "gio", 1689 "glib", 1690 "libc", 1691 "once_cell", 1692 "pango-sys", 1693] 1694 1695[[package]] 1696name = "pango-sys" 1697version = "0.17.0" 1698source = "registry+https://github.com/rust-lang/crates.io-index" 1699checksum = "4293d0f0b5525eb5c24734d30b0ed02cd02aa734f216883f376b54de49625de8" 1700dependencies = [ 1701 "glib-sys", 1702 "gobject-sys", 1703 "libc", 1704 "system-deps", 1705] 1706 1707[[package]] 1708name = "parking" 1709version = "2.0.0" 1710source = "registry+https://github.com/rust-lang/crates.io-index" 1711checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 1712 1713[[package]] 1714name = "password-hash" 1715version = "0.4.2" 1716source = "registry+https://github.com/rust-lang/crates.io-index" 1717checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 1718dependencies = [ 1719 "base64ct", 1720 "rand_core", 1721 "subtle", 1722] 1723 1724[[package]] 1725name = "pbkdf2" 1726version = "0.11.0" 1727source = "registry+https://github.com/rust-lang/crates.io-index" 1728checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 1729dependencies = [ 1730 "digest", 1731 "hmac", 1732 "password-hash", 1733 "sha2", 1734] 1735 1736[[package]] 1737name = "percent-encoding" 1738version = "2.2.0" 1739source = "registry+https://github.com/rust-lang/crates.io-index" 1740checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1741 1742[[package]] 1743name = "pin-project" 1744version = "1.0.12" 1745source = "registry+https://github.com/rust-lang/crates.io-index" 1746checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 1747dependencies = [ 1748 "pin-project-internal", 1749] 1750 1751[[package]] 1752name = "pin-project-internal" 1753version = "1.0.12" 1754source = "registry+https://github.com/rust-lang/crates.io-index" 1755checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 1756dependencies = [ 1757 "proc-macro2", 1758 "quote", 1759 "syn", 1760] 1761 1762[[package]] 1763name = "pin-project-lite" 1764version = "0.2.9" 1765source = "registry+https://github.com/rust-lang/crates.io-index" 1766checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1767 1768[[package]] 1769name = "pin-utils" 1770version = "0.1.0" 1771source = "registry+https://github.com/rust-lang/crates.io-index" 1772checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1773 1774[[package]] 1775name = "pkg-config" 1776version = "0.3.26" 1777source = "registry+https://github.com/rust-lang/crates.io-index" 1778checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 1779 1780[[package]] 1781name = "polling" 1782version = "2.6.0" 1783source = "registry+https://github.com/rust-lang/crates.io-index" 1784checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" 1785dependencies = [ 1786 "autocfg", 1787 "bitflags", 1788 "cfg-if", 1789 "concurrent-queue", 1790 "libc", 1791 "log", 1792 "pin-project-lite", 1793 "windows-sys 0.45.0", 1794] 1795 1796[[package]] 1797name = "ppv-lite86" 1798version = "0.2.17" 1799source = "registry+https://github.com/rust-lang/crates.io-index" 1800checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1801 1802[[package]] 1803name = "proc-macro-crate" 1804version = "1.3.1" 1805source = "registry+https://github.com/rust-lang/crates.io-index" 1806checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 1807dependencies = [ 1808 "once_cell", 1809 "toml_edit", 1810] 1811 1812[[package]] 1813name = "proc-macro-error" 1814version = "1.0.4" 1815source = "registry+https://github.com/rust-lang/crates.io-index" 1816checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1817dependencies = [ 1818 "proc-macro-error-attr", 1819 "proc-macro2", 1820 "quote", 1821 "syn", 1822 "version_check", 1823] 1824 1825[[package]] 1826name = "proc-macro-error-attr" 1827version = "1.0.4" 1828source = "registry+https://github.com/rust-lang/crates.io-index" 1829checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1830dependencies = [ 1831 "proc-macro2", 1832 "quote", 1833 "version_check", 1834] 1835 1836[[package]] 1837name = "proc-macro2" 1838version = "1.0.52" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224" 1841dependencies = [ 1842 "unicode-ident", 1843] 1844 1845[[package]] 1846name = "quote" 1847version = "1.0.26" 1848source = "registry+https://github.com/rust-lang/crates.io-index" 1849checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 1850dependencies = [ 1851 "proc-macro2", 1852] 1853 1854[[package]] 1855name = "rand" 1856version = "0.8.5" 1857source = "registry+https://github.com/rust-lang/crates.io-index" 1858checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1859dependencies = [ 1860 "libc", 1861 "rand_chacha", 1862 "rand_core", 1863] 1864 1865[[package]] 1866name = "rand_chacha" 1867version = "0.3.1" 1868source = "registry+https://github.com/rust-lang/crates.io-index" 1869checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1870dependencies = [ 1871 "ppv-lite86", 1872 "rand_core", 1873] 1874 1875[[package]] 1876name = "rand_core" 1877version = "0.6.4" 1878source = "registry+https://github.com/rust-lang/crates.io-index" 1879checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1880dependencies = [ 1881 "getrandom", 1882] 1883 1884[[package]] 1885name = "redox_syscall" 1886version = "0.2.16" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1889dependencies = [ 1890 "bitflags", 1891] 1892 1893[[package]] 1894name = "redox_users" 1895version = "0.4.3" 1896source = "registry+https://github.com/rust-lang/crates.io-index" 1897checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1898dependencies = [ 1899 "getrandom", 1900 "redox_syscall", 1901 "thiserror", 1902] 1903 1904[[package]] 1905name = "regex" 1906version = "1.7.1" 1907source = "registry+https://github.com/rust-lang/crates.io-index" 1908checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 1909dependencies = [ 1910 "aho-corasick", 1911 "memchr", 1912 "regex-syntax", 1913] 1914 1915[[package]] 1916name = "regex-syntax" 1917version = "0.6.28" 1918source = "registry+https://github.com/rust-lang/crates.io-index" 1919checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 1920 1921[[package]] 1922name = "relm4" 1923version = "0.6.0-alpha.2" 1924source = "registry+https://github.com/rust-lang/crates.io-index" 1925checksum = "7acc5e3ddd682eeb0ca33da36b821fc907017c6d7758b09ce280247b0b0ea8cd" 1926dependencies = [ 1927 "async-trait", 1928 "flume", 1929 "fragile", 1930 "futures", 1931 "gtk4", 1932 "libadwaita", 1933 "once_cell", 1934 "relm4-macros", 1935 "tokio", 1936 "tracing", 1937] 1938 1939[[package]] 1940name = "relm4-components" 1941version = "0.6.0-alpha.2" 1942source = "registry+https://github.com/rust-lang/crates.io-index" 1943checksum = "26bc1784d641cd5d97ac4d26c56f68699aaa4518b7c827c295c1515ddafa96e4" 1944dependencies = [ 1945 "once_cell", 1946 "relm4", 1947 "tracker", 1948] 1949 1950[[package]] 1951name = "relm4-macros" 1952version = "0.6.0-alpha.2" 1953source = "registry+https://github.com/rust-lang/crates.io-index" 1954checksum = "c8525ce12dcd7d2a9e9070d84b8b885600eccd0a143df6712ce34a87d001a8b7" 1955dependencies = [ 1956 "proc-macro2", 1957 "quote", 1958 "syn", 1959] 1960 1961[[package]] 1962name = "reqwest" 1963version = "0.11.14" 1964source = "registry+https://github.com/rust-lang/crates.io-index" 1965checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 1966dependencies = [ 1967 "base64", 1968 "bytes", 1969 "encoding_rs", 1970 "futures-core", 1971 "futures-util", 1972 "h2", 1973 "http", 1974 "http-body", 1975 "hyper", 1976 "hyper-tls", 1977 "ipnet", 1978 "js-sys", 1979 "log", 1980 "mime", 1981 "native-tls", 1982 "once_cell", 1983 "percent-encoding", 1984 "pin-project-lite", 1985 "serde", 1986 "serde_json", 1987 "serde_urlencoded", 1988 "tokio", 1989 "tokio-native-tls", 1990 "tower-service", 1991 "url", 1992 "wasm-bindgen", 1993 "wasm-bindgen-futures", 1994 "web-sys", 1995 "winreg", 1996] 1997 1998[[package]] 1999name = "rustc_version" 2000version = "0.4.0" 2001source = "registry+https://github.com/rust-lang/crates.io-index" 2002checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2003dependencies = [ 2004 "semver", 2005] 2006 2007[[package]] 2008name = "rustix" 2009version = "0.36.9" 2010source = "registry+https://github.com/rust-lang/crates.io-index" 2011checksum = "fd5c6ff11fecd55b40746d1995a02f2eb375bf8c00d192d521ee09f42bef37bc" 2012dependencies = [ 2013 "bitflags", 2014 "errno", 2015 "io-lifetimes", 2016 "libc", 2017 "linux-raw-sys", 2018 "windows-sys 0.45.0", 2019] 2020 2021[[package]] 2022name = "rustversion" 2023version = "1.0.12" 2024source = "registry+https://github.com/rust-lang/crates.io-index" 2025checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 2026 2027[[package]] 2028name = "ryu" 2029version = "1.0.13" 2030source = "registry+https://github.com/rust-lang/crates.io-index" 2031checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2032 2033[[package]] 2034name = "schannel" 2035version = "0.1.21" 2036source = "registry+https://github.com/rust-lang/crates.io-index" 2037checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 2038dependencies = [ 2039 "windows-sys 0.42.0", 2040] 2041 2042[[package]] 2043name = "scopeguard" 2044version = "1.1.0" 2045source = "registry+https://github.com/rust-lang/crates.io-index" 2046checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2047 2048[[package]] 2049name = "scratch" 2050version = "1.0.5" 2051source = "registry+https://github.com/rust-lang/crates.io-index" 2052checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" 2053 2054[[package]] 2055name = "security-framework" 2056version = "2.8.2" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 2059dependencies = [ 2060 "bitflags", 2061 "core-foundation", 2062 "core-foundation-sys", 2063 "libc", 2064 "security-framework-sys", 2065] 2066 2067[[package]] 2068name = "security-framework-sys" 2069version = "2.8.0" 2070source = "registry+https://github.com/rust-lang/crates.io-index" 2071checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 2072dependencies = [ 2073 "core-foundation-sys", 2074 "libc", 2075] 2076 2077[[package]] 2078name = "semver" 2079version = "1.0.17" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 2082 2083[[package]] 2084name = "serde" 2085version = "1.0.156" 2086source = "registry+https://github.com/rust-lang/crates.io-index" 2087checksum = "314b5b092c0ade17c00142951e50ced110ec27cea304b1037c6969246c2469a4" 2088dependencies = [ 2089 "serde_derive", 2090] 2091 2092[[package]] 2093name = "serde_derive" 2094version = "1.0.156" 2095source = "registry+https://github.com/rust-lang/crates.io-index" 2096checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d" 2097dependencies = [ 2098 "proc-macro2", 2099 "quote", 2100 "syn", 2101] 2102 2103[[package]] 2104name = "serde_json" 2105version = "1.0.94" 2106source = "registry+https://github.com/rust-lang/crates.io-index" 2107checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" 2108dependencies = [ 2109 "itoa", 2110 "ryu", 2111 "serde", 2112] 2113 2114[[package]] 2115name = "serde_repr" 2116version = "0.1.11" 2117source = "registry+https://github.com/rust-lang/crates.io-index" 2118checksum = "395627de918015623b32e7669714206363a7fc00382bf477e72c1f7533e8eafc" 2119dependencies = [ 2120 "proc-macro2", 2121 "quote", 2122 "syn", 2123] 2124 2125[[package]] 2126name = "serde_urlencoded" 2127version = "0.7.1" 2128source = "registry+https://github.com/rust-lang/crates.io-index" 2129checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2130dependencies = [ 2131 "form_urlencoded", 2132 "itoa", 2133 "ryu", 2134 "serde", 2135] 2136 2137[[package]] 2138name = "sha1" 2139version = "0.10.5" 2140source = "registry+https://github.com/rust-lang/crates.io-index" 2141checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 2142dependencies = [ 2143 "cfg-if", 2144 "cpufeatures", 2145 "digest", 2146] 2147 2148[[package]] 2149name = "sha2" 2150version = "0.10.6" 2151source = "registry+https://github.com/rust-lang/crates.io-index" 2152checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2153dependencies = [ 2154 "cfg-if", 2155 "cpufeatures", 2156 "digest", 2157] 2158 2159[[package]] 2160name = "slab" 2161version = "0.4.8" 2162source = "registry+https://github.com/rust-lang/crates.io-index" 2163checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2164dependencies = [ 2165 "autocfg", 2166] 2167 2168[[package]] 2169name = "smallvec" 2170version = "1.10.0" 2171source = "registry+https://github.com/rust-lang/crates.io-index" 2172checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2173 2174[[package]] 2175name = "socket2" 2176version = "0.4.9" 2177source = "registry+https://github.com/rust-lang/crates.io-index" 2178checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 2179dependencies = [ 2180 "libc", 2181 "winapi", 2182] 2183 2184[[package]] 2185name = "spin" 2186version = "0.9.6" 2187source = "registry+https://github.com/rust-lang/crates.io-index" 2188checksum = "b5d6e0250b93c8427a177b849d144a96d5acc57006149479403d7861ab721e34" 2189dependencies = [ 2190 "lock_api", 2191] 2192 2193[[package]] 2194name = "static_assertions" 2195version = "1.1.0" 2196source = "registry+https://github.com/rust-lang/crates.io-index" 2197checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2198 2199[[package]] 2200name = "strum" 2201version = "0.24.1" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 2204dependencies = [ 2205 "strum_macros", 2206] 2207 2208[[package]] 2209name = "strum_macros" 2210version = "0.24.3" 2211source = "registry+https://github.com/rust-lang/crates.io-index" 2212checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 2213dependencies = [ 2214 "heck", 2215 "proc-macro2", 2216 "quote", 2217 "rustversion", 2218 "syn", 2219] 2220 2221[[package]] 2222name = "subtle" 2223version = "2.4.1" 2224source = "registry+https://github.com/rust-lang/crates.io-index" 2225checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 2226 2227[[package]] 2228name = "syn" 2229version = "1.0.109" 2230source = "registry+https://github.com/rust-lang/crates.io-index" 2231checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2232dependencies = [ 2233 "proc-macro2", 2234 "quote", 2235 "unicode-ident", 2236] 2237 2238[[package]] 2239name = "synstructure" 2240version = "0.12.6" 2241source = "registry+https://github.com/rust-lang/crates.io-index" 2242checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 2243dependencies = [ 2244 "proc-macro2", 2245 "quote", 2246 "syn", 2247 "unicode-xid", 2248] 2249 2250[[package]] 2251name = "system-deps" 2252version = "6.0.3" 2253source = "registry+https://github.com/rust-lang/crates.io-index" 2254checksum = "2955b1fe31e1fa2fbd1976b71cc69a606d7d4da16f6de3333d0c92d51419aeff" 2255dependencies = [ 2256 "cfg-expr", 2257 "heck", 2258 "pkg-config", 2259 "toml", 2260 "version-compare", 2261] 2262 2263[[package]] 2264name = "tempfile" 2265version = "3.4.0" 2266source = "registry+https://github.com/rust-lang/crates.io-index" 2267checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" 2268dependencies = [ 2269 "cfg-if", 2270 "fastrand", 2271 "redox_syscall", 2272 "rustix", 2273 "windows-sys 0.42.0", 2274] 2275 2276[[package]] 2277name = "termcolor" 2278version = "1.2.0" 2279source = "registry+https://github.com/rust-lang/crates.io-index" 2280checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2281dependencies = [ 2282 "winapi-util", 2283] 2284 2285[[package]] 2286name = "thiserror" 2287version = "1.0.39" 2288source = "registry+https://github.com/rust-lang/crates.io-index" 2289checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c" 2290dependencies = [ 2291 "thiserror-impl", 2292] 2293 2294[[package]] 2295name = "thiserror-impl" 2296version = "1.0.39" 2297source = "registry+https://github.com/rust-lang/crates.io-index" 2298checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e" 2299dependencies = [ 2300 "proc-macro2", 2301 "quote", 2302 "syn", 2303] 2304 2305[[package]] 2306name = "time" 2307version = "0.1.45" 2308source = "registry+https://github.com/rust-lang/crates.io-index" 2309checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 2310dependencies = [ 2311 "libc", 2312 "wasi 0.10.0+wasi-snapshot-preview1", 2313 "winapi", 2314] 2315 2316[[package]] 2317name = "time" 2318version = "0.3.20" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 2321dependencies = [ 2322 "serde", 2323 "time-core", 2324 "time-macros", 2325] 2326 2327[[package]] 2328name = "time-core" 2329version = "0.1.0" 2330source = "registry+https://github.com/rust-lang/crates.io-index" 2331checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 2332 2333[[package]] 2334name = "time-macros" 2335version = "0.2.8" 2336source = "registry+https://github.com/rust-lang/crates.io-index" 2337checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 2338dependencies = [ 2339 "time-core", 2340] 2341 2342[[package]] 2343name = "tinyvec" 2344version = "1.6.0" 2345source = "registry+https://github.com/rust-lang/crates.io-index" 2346checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2347dependencies = [ 2348 "tinyvec_macros", 2349] 2350 2351[[package]] 2352name = "tinyvec_macros" 2353version = "0.1.1" 2354source = "registry+https://github.com/rust-lang/crates.io-index" 2355checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2356 2357[[package]] 2358name = "tokio" 2359version = "1.26.0" 2360source = "registry+https://github.com/rust-lang/crates.io-index" 2361checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 2362dependencies = [ 2363 "autocfg", 2364 "bytes", 2365 "libc", 2366 "memchr", 2367 "mio", 2368 "num_cpus", 2369 "pin-project-lite", 2370 "socket2", 2371 "tokio-macros", 2372 "tracing", 2373 "windows-sys 0.45.0", 2374] 2375 2376[[package]] 2377name = "tokio-macros" 2378version = "1.8.2" 2379source = "registry+https://github.com/rust-lang/crates.io-index" 2380checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 2381dependencies = [ 2382 "proc-macro2", 2383 "quote", 2384 "syn", 2385] 2386 2387[[package]] 2388name = "tokio-native-tls" 2389version = "0.3.1" 2390source = "registry+https://github.com/rust-lang/crates.io-index" 2391checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 2392dependencies = [ 2393 "native-tls", 2394 "tokio", 2395] 2396 2397[[package]] 2398name = "tokio-stream" 2399version = "0.1.12" 2400source = "registry+https://github.com/rust-lang/crates.io-index" 2401checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313" 2402dependencies = [ 2403 "futures-core", 2404 "pin-project-lite", 2405 "tokio", 2406] 2407 2408[[package]] 2409name = "tokio-util" 2410version = "0.7.7" 2411source = "registry+https://github.com/rust-lang/crates.io-index" 2412checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 2413dependencies = [ 2414 "bytes", 2415 "futures-core", 2416 "futures-sink", 2417 "pin-project-lite", 2418 "tokio", 2419 "tracing", 2420] 2421 2422[[package]] 2423name = "toml" 2424version = "0.5.11" 2425source = "registry+https://github.com/rust-lang/crates.io-index" 2426checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 2427dependencies = [ 2428 "serde", 2429] 2430 2431[[package]] 2432name = "toml_datetime" 2433version = "0.6.1" 2434source = "registry+https://github.com/rust-lang/crates.io-index" 2435checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 2436 2437[[package]] 2438name = "toml_edit" 2439version = "0.19.7" 2440source = "registry+https://github.com/rust-lang/crates.io-index" 2441checksum = "dc18466501acd8ac6a3f615dd29a3438f8ca6bb3b19537138b3106e575621274" 2442dependencies = [ 2443 "indexmap", 2444 "toml_datetime", 2445 "winnow", 2446] 2447 2448[[package]] 2449name = "tower-service" 2450version = "0.3.2" 2451source = "registry+https://github.com/rust-lang/crates.io-index" 2452checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2453 2454[[package]] 2455name = "tracing" 2456version = "0.1.37" 2457source = "registry+https://github.com/rust-lang/crates.io-index" 2458checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2459dependencies = [ 2460 "cfg-if", 2461 "pin-project-lite", 2462 "tracing-attributes", 2463 "tracing-core", 2464] 2465 2466[[package]] 2467name = "tracing-attributes" 2468version = "0.1.23" 2469source = "registry+https://github.com/rust-lang/crates.io-index" 2470checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 2471dependencies = [ 2472 "proc-macro2", 2473 "quote", 2474 "syn", 2475] 2476 2477[[package]] 2478name = "tracing-core" 2479version = "0.1.30" 2480source = "registry+https://github.com/rust-lang/crates.io-index" 2481checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2482dependencies = [ 2483 "once_cell", 2484] 2485 2486[[package]] 2487name = "tracker" 2488version = "0.2.0" 2489source = "registry+https://github.com/rust-lang/crates.io-index" 2490checksum = "4948dd579c7facd8b583a8838956177740021c7bbcc1074ff49f7a5e76a150fd" 2491dependencies = [ 2492 "tracker-macros", 2493] 2494 2495[[package]] 2496name = "tracker-macros" 2497version = "0.2.0" 2498source = "registry+https://github.com/rust-lang/crates.io-index" 2499checksum = "32b086e6cb7f65c79bc0b132db4e468c4159133c917da44e1b97594101e9e7e0" 2500dependencies = [ 2501 "proc-macro2", 2502 "quote", 2503 "syn", 2504] 2505 2506[[package]] 2507name = "try-lock" 2508version = "0.2.4" 2509source = "registry+https://github.com/rust-lang/crates.io-index" 2510checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 2511 2512[[package]] 2513name = "typenum" 2514version = "1.16.0" 2515source = "registry+https://github.com/rust-lang/crates.io-index" 2516checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 2517 2518[[package]] 2519name = "uds_windows" 2520version = "1.0.2" 2521source = "registry+https://github.com/rust-lang/crates.io-index" 2522checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 2523dependencies = [ 2524 "tempfile", 2525 "winapi", 2526] 2527 2528[[package]] 2529name = "unicode-bidi" 2530version = "0.3.11" 2531source = "registry+https://github.com/rust-lang/crates.io-index" 2532checksum = "524b68aca1d05e03fdf03fcdce2c6c94b6daf6d16861ddaa7e4f2b6638a9052c" 2533 2534[[package]] 2535name = "unicode-ident" 2536version = "1.0.8" 2537source = "registry+https://github.com/rust-lang/crates.io-index" 2538checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2539 2540[[package]] 2541name = "unicode-normalization" 2542version = "0.1.22" 2543source = "registry+https://github.com/rust-lang/crates.io-index" 2544checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2545dependencies = [ 2546 "tinyvec", 2547] 2548 2549[[package]] 2550name = "unicode-width" 2551version = "0.1.10" 2552source = "registry+https://github.com/rust-lang/crates.io-index" 2553checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2554 2555[[package]] 2556name = "unicode-xid" 2557version = "0.2.4" 2558source = "registry+https://github.com/rust-lang/crates.io-index" 2559checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 2560 2561[[package]] 2562name = "url" 2563version = "2.3.1" 2564source = "registry+https://github.com/rust-lang/crates.io-index" 2565checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2566dependencies = [ 2567 "form_urlencoded", 2568 "idna", 2569 "percent-encoding", 2570] 2571 2572[[package]] 2573name = "uuid" 2574version = "1.3.0" 2575source = "registry+https://github.com/rust-lang/crates.io-index" 2576checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" 2577dependencies = [ 2578 "getrandom", 2579] 2580 2581[[package]] 2582name = "vcpkg" 2583version = "0.2.15" 2584source = "registry+https://github.com/rust-lang/crates.io-index" 2585checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2586 2587[[package]] 2588name = "version-compare" 2589version = "0.1.1" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 2592 2593[[package]] 2594name = "version_check" 2595version = "0.9.4" 2596source = "registry+https://github.com/rust-lang/crates.io-index" 2597checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2598 2599[[package]] 2600name = "waker-fn" 2601version = "1.1.0" 2602source = "registry+https://github.com/rust-lang/crates.io-index" 2603checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 2604 2605[[package]] 2606name = "want" 2607version = "0.3.0" 2608source = "registry+https://github.com/rust-lang/crates.io-index" 2609checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2610dependencies = [ 2611 "log", 2612 "try-lock", 2613] 2614 2615[[package]] 2616name = "wasi" 2617version = "0.10.0+wasi-snapshot-preview1" 2618source = "registry+https://github.com/rust-lang/crates.io-index" 2619checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 2620 2621[[package]] 2622name = "wasi" 2623version = "0.11.0+wasi-snapshot-preview1" 2624source = "registry+https://github.com/rust-lang/crates.io-index" 2625checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2626 2627[[package]] 2628name = "wasm-bindgen" 2629version = "0.2.84" 2630source = "registry+https://github.com/rust-lang/crates.io-index" 2631checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 2632dependencies = [ 2633 "cfg-if", 2634 "wasm-bindgen-macro", 2635] 2636 2637[[package]] 2638name = "wasm-bindgen-backend" 2639version = "0.2.84" 2640source = "registry+https://github.com/rust-lang/crates.io-index" 2641checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 2642dependencies = [ 2643 "bumpalo", 2644 "log", 2645 "once_cell", 2646 "proc-macro2", 2647 "quote", 2648 "syn", 2649 "wasm-bindgen-shared", 2650] 2651 2652[[package]] 2653name = "wasm-bindgen-futures" 2654version = "0.4.34" 2655source = "registry+https://github.com/rust-lang/crates.io-index" 2656checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 2657dependencies = [ 2658 "cfg-if", 2659 "js-sys", 2660 "wasm-bindgen", 2661 "web-sys", 2662] 2663 2664[[package]] 2665name = "wasm-bindgen-macro" 2666version = "0.2.84" 2667source = "registry+https://github.com/rust-lang/crates.io-index" 2668checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 2669dependencies = [ 2670 "quote", 2671 "wasm-bindgen-macro-support", 2672] 2673 2674[[package]] 2675name = "wasm-bindgen-macro-support" 2676version = "0.2.84" 2677source = "registry+https://github.com/rust-lang/crates.io-index" 2678checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 2679dependencies = [ 2680 "proc-macro2", 2681 "quote", 2682 "syn", 2683 "wasm-bindgen-backend", 2684 "wasm-bindgen-shared", 2685] 2686 2687[[package]] 2688name = "wasm-bindgen-shared" 2689version = "0.2.84" 2690source = "registry+https://github.com/rust-lang/crates.io-index" 2691checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 2692 2693[[package]] 2694name = "watchmate" 2695version = "0.4.4" 2696dependencies = [ 2697 "anyhow", 2698 "env_logger", 2699 "futures", 2700 "infinitime", 2701 "log", 2702 "relm4", 2703 "relm4-components", 2704 "version-compare", 2705] 2706 2707[[package]] 2708name = "web-sys" 2709version = "0.3.61" 2710source = "registry+https://github.com/rust-lang/crates.io-index" 2711checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 2712dependencies = [ 2713 "js-sys", 2714 "wasm-bindgen", 2715] 2716 2717[[package]] 2718name = "winapi" 2719version = "0.3.9" 2720source = "registry+https://github.com/rust-lang/crates.io-index" 2721checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2722dependencies = [ 2723 "winapi-i686-pc-windows-gnu", 2724 "winapi-x86_64-pc-windows-gnu", 2725] 2726 2727[[package]] 2728name = "winapi-i686-pc-windows-gnu" 2729version = "0.4.0" 2730source = "registry+https://github.com/rust-lang/crates.io-index" 2731checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2732 2733[[package]] 2734name = "winapi-util" 2735version = "0.1.5" 2736source = "registry+https://github.com/rust-lang/crates.io-index" 2737checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2738dependencies = [ 2739 "winapi", 2740] 2741 2742[[package]] 2743name = "winapi-x86_64-pc-windows-gnu" 2744version = "0.4.0" 2745source = "registry+https://github.com/rust-lang/crates.io-index" 2746checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2747 2748[[package]] 2749name = "windows-sys" 2750version = "0.42.0" 2751source = "registry+https://github.com/rust-lang/crates.io-index" 2752checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 2753dependencies = [ 2754 "windows_aarch64_gnullvm", 2755 "windows_aarch64_msvc", 2756 "windows_i686_gnu", 2757 "windows_i686_msvc", 2758 "windows_x86_64_gnu", 2759 "windows_x86_64_gnullvm", 2760 "windows_x86_64_msvc", 2761] 2762 2763[[package]] 2764name = "windows-sys" 2765version = "0.45.0" 2766source = "registry+https://github.com/rust-lang/crates.io-index" 2767checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2768dependencies = [ 2769 "windows-targets", 2770] 2771 2772[[package]] 2773name = "windows-targets" 2774version = "0.42.2" 2775source = "registry+https://github.com/rust-lang/crates.io-index" 2776checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2777dependencies = [ 2778 "windows_aarch64_gnullvm", 2779 "windows_aarch64_msvc", 2780 "windows_i686_gnu", 2781 "windows_i686_msvc", 2782 "windows_x86_64_gnu", 2783 "windows_x86_64_gnullvm", 2784 "windows_x86_64_msvc", 2785] 2786 2787[[package]] 2788name = "windows_aarch64_gnullvm" 2789version = "0.42.2" 2790source = "registry+https://github.com/rust-lang/crates.io-index" 2791checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2792 2793[[package]] 2794name = "windows_aarch64_msvc" 2795version = "0.42.2" 2796source = "registry+https://github.com/rust-lang/crates.io-index" 2797checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2798 2799[[package]] 2800name = "windows_i686_gnu" 2801version = "0.42.2" 2802source = "registry+https://github.com/rust-lang/crates.io-index" 2803checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2804 2805[[package]] 2806name = "windows_i686_msvc" 2807version = "0.42.2" 2808source = "registry+https://github.com/rust-lang/crates.io-index" 2809checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2810 2811[[package]] 2812name = "windows_x86_64_gnu" 2813version = "0.42.2" 2814source = "registry+https://github.com/rust-lang/crates.io-index" 2815checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2816 2817[[package]] 2818name = "windows_x86_64_gnullvm" 2819version = "0.42.2" 2820source = "registry+https://github.com/rust-lang/crates.io-index" 2821checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2822 2823[[package]] 2824name = "windows_x86_64_msvc" 2825version = "0.42.2" 2826source = "registry+https://github.com/rust-lang/crates.io-index" 2827checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2828 2829[[package]] 2830name = "winnow" 2831version = "0.3.6" 2832source = "registry+https://github.com/rust-lang/crates.io-index" 2833checksum = "23d020b441f92996c80d94ae9166e8501e59c7bb56121189dc9eab3bd8216966" 2834dependencies = [ 2835 "memchr", 2836] 2837 2838[[package]] 2839name = "winreg" 2840version = "0.10.1" 2841source = "registry+https://github.com/rust-lang/crates.io-index" 2842checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 2843dependencies = [ 2844 "winapi", 2845] 2846 2847[[package]] 2848name = "zbus" 2849version = "3.11.0" 2850source = "registry+https://github.com/rust-lang/crates.io-index" 2851checksum = "20aae5dd5b051971cd2f49f9f3b860e57b2b495ba5ba254eaec42d34ede57e97" 2852dependencies = [ 2853 "async-broadcast", 2854 "async-executor", 2855 "async-fs", 2856 "async-io", 2857 "async-lock", 2858 "async-recursion", 2859 "async-task", 2860 "async-trait", 2861 "byteorder", 2862 "derivative", 2863 "dirs", 2864 "enumflags2", 2865 "event-listener", 2866 "futures-core", 2867 "futures-sink", 2868 "futures-util", 2869 "hex", 2870 "lazy_static", 2871 "nix", 2872 "once_cell", 2873 "ordered-stream", 2874 "rand", 2875 "serde", 2876 "serde_repr", 2877 "sha1", 2878 "static_assertions", 2879 "tokio", 2880 "tracing", 2881 "uds_windows", 2882 "winapi", 2883 "zbus_macros", 2884 "zbus_names", 2885 "zvariant", 2886] 2887 2888[[package]] 2889name = "zbus_macros" 2890version = "3.11.0" 2891source = "registry+https://github.com/rust-lang/crates.io-index" 2892checksum = "9264b3a1bcf5503d4e0348b6e7efe1da58d4f92a913c15ed9e63b52de85faaa1" 2893dependencies = [ 2894 "proc-macro-crate", 2895 "proc-macro2", 2896 "quote", 2897 "regex", 2898 "syn", 2899 "zvariant_utils", 2900] 2901 2902[[package]] 2903name = "zbus_names" 2904version = "2.5.0" 2905source = "registry+https://github.com/rust-lang/crates.io-index" 2906checksum = "f34f314916bd89bdb9934154627fab152f4f28acdda03e7c4c68181b214fe7e3" 2907dependencies = [ 2908 "serde", 2909 "static_assertions", 2910 "zvariant", 2911] 2912 2913[[package]] 2914name = "zip" 2915version = "0.6.4" 2916source = "registry+https://github.com/rust-lang/crates.io-index" 2917checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef" 2918dependencies = [ 2919 "aes", 2920 "byteorder", 2921 "bzip2", 2922 "constant_time_eq", 2923 "crc32fast", 2924 "crossbeam-utils", 2925 "flate2", 2926 "hmac", 2927 "pbkdf2", 2928 "sha1", 2929 "time 0.3.20", 2930 "zstd", 2931] 2932 2933[[package]] 2934name = "zstd" 2935version = "0.11.2+zstd.1.5.2" 2936source = "registry+https://github.com/rust-lang/crates.io-index" 2937checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 2938dependencies = [ 2939 "zstd-safe", 2940] 2941 2942[[package]] 2943name = "zstd-safe" 2944version = "5.0.2+zstd.1.5.2" 2945source = "registry+https://github.com/rust-lang/crates.io-index" 2946checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 2947dependencies = [ 2948 "libc", 2949 "zstd-sys", 2950] 2951 2952[[package]] 2953name = "zstd-sys" 2954version = "2.0.7+zstd.1.5.4" 2955source = "registry+https://github.com/rust-lang/crates.io-index" 2956checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5" 2957dependencies = [ 2958 "cc", 2959 "libc", 2960 "pkg-config", 2961] 2962 2963[[package]] 2964name = "zvariant" 2965version = "3.12.0" 2966source = "registry+https://github.com/rust-lang/crates.io-index" 2967checksum = "46fe4914a985446d6fd287019b5fceccce38303d71407d9e6e711d44954a05d8" 2968dependencies = [ 2969 "byteorder", 2970 "enumflags2", 2971 "libc", 2972 "serde", 2973 "static_assertions", 2974 "zvariant_derive", 2975] 2976 2977[[package]] 2978name = "zvariant_derive" 2979version = "3.12.0" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "34c20260af4b28b3275d6676c7e2a6be0d4332e8e0aba4616d34007fd84e462a" 2982dependencies = [ 2983 "proc-macro-crate", 2984 "proc-macro2", 2985 "quote", 2986 "syn", 2987 "zvariant_utils", 2988] 2989 2990[[package]] 2991name = "zvariant_utils" 2992version = "1.0.0" 2993source = "registry+https://github.com/rust-lang/crates.io-index" 2994checksum = "53b22993dbc4d128a17a3b6c92f1c63872dd67198537ee728d8b5d7c40640a8b" 2995dependencies = [ 2996 "proc-macro2", 2997 "quote", 2998 "syn", 2999]