A small utility to inhibit idle on wayland for mpris clients
0
fork

Configure Feed

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

at main 1685 lines 43 kB view raw
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 = "anstream" 16version = "0.6.21" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 19dependencies = [ 20 "anstyle", 21 "anstyle-parse", 22 "anstyle-query", 23 "anstyle-wincon", 24 "colorchoice", 25 "is_terminal_polyfill", 26 "utf8parse", 27] 28 29[[package]] 30name = "anstyle" 31version = "1.0.13" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 34 35[[package]] 36name = "anstyle-parse" 37version = "0.2.7" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 40dependencies = [ 41 "utf8parse", 42] 43 44[[package]] 45name = "anstyle-query" 46version = "1.1.5" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 49dependencies = [ 50 "windows-sys 0.61.2", 51] 52 53[[package]] 54name = "anstyle-wincon" 55version = "3.0.11" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 58dependencies = [ 59 "anstyle", 60 "once_cell_polyfill", 61 "windows-sys 0.61.2", 62] 63 64[[package]] 65name = "anyhow" 66version = "1.0.102" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" 69 70[[package]] 71name = "async-broadcast" 72version = "0.7.2" 73source = "registry+https://github.com/rust-lang/crates.io-index" 74checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 75dependencies = [ 76 "event-listener", 77 "event-listener-strategy", 78 "futures-core", 79 "pin-project-lite", 80] 81 82[[package]] 83name = "async-channel" 84version = "2.5.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 87dependencies = [ 88 "concurrent-queue", 89 "event-listener-strategy", 90 "futures-core", 91 "pin-project-lite", 92] 93 94[[package]] 95name = "async-executor" 96version = "1.14.0" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" 99dependencies = [ 100 "async-task", 101 "concurrent-queue", 102 "fastrand", 103 "futures-lite", 104 "pin-project-lite", 105 "slab", 106] 107 108[[package]] 109name = "async-io" 110version = "2.6.0" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 113dependencies = [ 114 "autocfg", 115 "cfg-if", 116 "concurrent-queue", 117 "futures-io", 118 "futures-lite", 119 "parking", 120 "polling", 121 "rustix", 122 "slab", 123 "windows-sys 0.61.2", 124] 125 126[[package]] 127name = "async-lock" 128version = "3.4.2" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 131dependencies = [ 132 "event-listener", 133 "event-listener-strategy", 134 "pin-project-lite", 135] 136 137[[package]] 138name = "async-process" 139version = "2.5.0" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" 142dependencies = [ 143 "async-channel", 144 "async-io", 145 "async-lock", 146 "async-signal", 147 "async-task", 148 "blocking", 149 "cfg-if", 150 "event-listener", 151 "futures-lite", 152 "rustix", 153] 154 155[[package]] 156name = "async-recursion" 157version = "1.1.1" 158source = "registry+https://github.com/rust-lang/crates.io-index" 159checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 160dependencies = [ 161 "proc-macro2", 162 "quote 1.0.45", 163 "syn 2.0.117", 164] 165 166[[package]] 167name = "async-signal" 168version = "0.2.13" 169source = "registry+https://github.com/rust-lang/crates.io-index" 170checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" 171dependencies = [ 172 "async-io", 173 "async-lock", 174 "atomic-waker", 175 "cfg-if", 176 "futures-core", 177 "futures-io", 178 "rustix", 179 "signal-hook-registry", 180 "slab", 181 "windows-sys 0.61.2", 182] 183 184[[package]] 185name = "async-task" 186version = "4.7.1" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 189 190[[package]] 191name = "async-trait" 192version = "0.1.89" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 195dependencies = [ 196 "proc-macro2", 197 "quote 1.0.45", 198 "syn 2.0.117", 199] 200 201[[package]] 202name = "atomic-waker" 203version = "1.1.2" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 206 207[[package]] 208name = "autocfg" 209version = "1.5.0" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 212 213[[package]] 214name = "bitflags" 215version = "2.11.0" 216source = "registry+https://github.com/rust-lang/crates.io-index" 217checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" 218 219[[package]] 220name = "blocking" 221version = "1.6.2" 222source = "registry+https://github.com/rust-lang/crates.io-index" 223checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 224dependencies = [ 225 "async-channel", 226 "async-task", 227 "futures-io", 228 "futures-lite", 229 "piper", 230] 231 232[[package]] 233name = "bumpalo" 234version = "3.20.2" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" 237 238[[package]] 239name = "cc" 240version = "1.2.56" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" 243dependencies = [ 244 "find-msvc-tools", 245 "shlex", 246] 247 248[[package]] 249name = "cfg-if" 250version = "1.0.4" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 253 254[[package]] 255name = "clap" 256version = "4.5.60" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a" 259dependencies = [ 260 "clap_builder", 261 "clap_derive", 262] 263 264[[package]] 265name = "clap_builder" 266version = "4.5.60" 267source = "registry+https://github.com/rust-lang/crates.io-index" 268checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876" 269dependencies = [ 270 "anstream", 271 "anstyle", 272 "clap_lex", 273 "strsim 0.11.1", 274] 275 276[[package]] 277name = "clap_derive" 278version = "4.5.55" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" 281dependencies = [ 282 "heck 0.5.0", 283 "proc-macro2", 284 "quote 1.0.45", 285 "syn 2.0.117", 286] 287 288[[package]] 289name = "clap_lex" 290version = "1.0.0" 291source = "registry+https://github.com/rust-lang/crates.io-index" 292checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" 293 294[[package]] 295name = "colog" 296version = "1.4.0" 297source = "registry+https://github.com/rust-lang/crates.io-index" 298checksum = "df62599ba6adc9c6c04a54278c8209125343dc4775f57b9d76c9a4287e58f2bd" 299dependencies = [ 300 "colored", 301 "env_logger", 302 "log", 303] 304 305[[package]] 306name = "colorchoice" 307version = "1.0.4" 308source = "registry+https://github.com/rust-lang/crates.io-index" 309checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 310 311[[package]] 312name = "colored" 313version = "3.1.1" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" 316dependencies = [ 317 "windows-sys 0.61.2", 318] 319 320[[package]] 321name = "concurrent-queue" 322version = "2.5.0" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 325dependencies = [ 326 "crossbeam-utils", 327] 328 329[[package]] 330name = "crossbeam-utils" 331version = "0.8.21" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 334 335[[package]] 336name = "darling" 337version = "0.14.4" 338source = "registry+https://github.com/rust-lang/crates.io-index" 339checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" 340dependencies = [ 341 "darling_core", 342 "darling_macro", 343] 344 345[[package]] 346name = "darling_core" 347version = "0.14.4" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" 350dependencies = [ 351 "fnv", 352 "ident_case", 353 "proc-macro2", 354 "quote 1.0.45", 355 "strsim 0.10.0", 356 "syn 1.0.109", 357] 358 359[[package]] 360name = "darling_macro" 361version = "0.14.4" 362source = "registry+https://github.com/rust-lang/crates.io-index" 363checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" 364dependencies = [ 365 "darling_core", 366 "quote 1.0.45", 367 "syn 1.0.109", 368] 369 370[[package]] 371name = "dbus" 372version = "0.9.10" 373source = "registry+https://github.com/rust-lang/crates.io-index" 374checksum = "21b3aa68d7e7abee336255bd7248ea965cc393f3e70411135a6f6a4b651345d4" 375dependencies = [ 376 "libc", 377 "libdbus-sys", 378 "windows-sys 0.59.0", 379] 380 381[[package]] 382name = "derive_is_enum_variant" 383version = "0.1.1" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "d0ac8859845146979953797f03cc5b282fb4396891807cdb3d04929a88418197" 386dependencies = [ 387 "heck 0.3.3", 388 "quote 0.3.15", 389 "syn 0.11.11", 390] 391 392[[package]] 393name = "downcast-rs" 394version = "1.2.1" 395source = "registry+https://github.com/rust-lang/crates.io-index" 396checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 397 398[[package]] 399name = "endi" 400version = "1.1.1" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" 403 404[[package]] 405name = "enum-kinds" 406version = "0.5.1" 407source = "registry+https://github.com/rust-lang/crates.io-index" 408checksum = "4e40a16955681d469ab3da85aaa6b42ff656b3c67b52e1d8d3dd36afe97fd462" 409dependencies = [ 410 "proc-macro2", 411 "quote 1.0.45", 412 "syn 1.0.109", 413] 414 415[[package]] 416name = "enumflags2" 417version = "0.7.12" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 420dependencies = [ 421 "enumflags2_derive", 422 "serde", 423] 424 425[[package]] 426name = "enumflags2_derive" 427version = "0.7.12" 428source = "registry+https://github.com/rust-lang/crates.io-index" 429checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 430dependencies = [ 431 "proc-macro2", 432 "quote 1.0.45", 433 "syn 2.0.117", 434] 435 436[[package]] 437name = "env_filter" 438version = "1.0.0" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f" 441dependencies = [ 442 "log", 443 "regex", 444] 445 446[[package]] 447name = "env_logger" 448version = "0.11.9" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d" 451dependencies = [ 452 "anstream", 453 "anstyle", 454 "env_filter", 455 "jiff", 456 "log", 457] 458 459[[package]] 460name = "equivalent" 461version = "1.0.2" 462source = "registry+https://github.com/rust-lang/crates.io-index" 463checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 464 465[[package]] 466name = "errno" 467version = "0.3.14" 468source = "registry+https://github.com/rust-lang/crates.io-index" 469checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 470dependencies = [ 471 "libc", 472 "windows-sys 0.61.2", 473] 474 475[[package]] 476name = "event-listener" 477version = "5.4.1" 478source = "registry+https://github.com/rust-lang/crates.io-index" 479checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 480dependencies = [ 481 "concurrent-queue", 482 "parking", 483 "pin-project-lite", 484] 485 486[[package]] 487name = "event-listener-strategy" 488version = "0.5.4" 489source = "registry+https://github.com/rust-lang/crates.io-index" 490checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 491dependencies = [ 492 "event-listener", 493 "pin-project-lite", 494] 495 496[[package]] 497name = "fastrand" 498version = "2.3.0" 499source = "registry+https://github.com/rust-lang/crates.io-index" 500checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 501 502[[package]] 503name = "find-msvc-tools" 504version = "0.1.9" 505source = "registry+https://github.com/rust-lang/crates.io-index" 506checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 507 508[[package]] 509name = "fnv" 510version = "1.0.7" 511source = "registry+https://github.com/rust-lang/crates.io-index" 512checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 513 514[[package]] 515name = "foldhash" 516version = "0.1.5" 517source = "registry+https://github.com/rust-lang/crates.io-index" 518checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 519 520[[package]] 521name = "from_variants" 522version = "1.0.2" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "4e859c8f2057687618905dbe99fc76e836e0a69738865ef90e46fc214a41bbf2" 525dependencies = [ 526 "from_variants_impl", 527] 528 529[[package]] 530name = "from_variants_impl" 531version = "1.0.2" 532source = "registry+https://github.com/rust-lang/crates.io-index" 533checksum = "55a5e644a80e6d96b2b4910fa7993301d7b7926c045b475b62202b20a36ce69e" 534dependencies = [ 535 "darling", 536 "proc-macro2", 537 "quote 1.0.45", 538 "syn 1.0.109", 539] 540 541[[package]] 542name = "futures-core" 543version = "0.3.32" 544source = "registry+https://github.com/rust-lang/crates.io-index" 545checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 546 547[[package]] 548name = "futures-io" 549version = "0.3.32" 550source = "registry+https://github.com/rust-lang/crates.io-index" 551checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 552 553[[package]] 554name = "futures-lite" 555version = "2.6.1" 556source = "registry+https://github.com/rust-lang/crates.io-index" 557checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 558dependencies = [ 559 "fastrand", 560 "futures-core", 561 "futures-io", 562 "parking", 563 "pin-project-lite", 564] 565 566[[package]] 567name = "getrandom" 568version = "0.4.2" 569source = "registry+https://github.com/rust-lang/crates.io-index" 570checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" 571dependencies = [ 572 "cfg-if", 573 "libc", 574 "r-efi", 575 "wasip2", 576 "wasip3", 577] 578 579[[package]] 580name = "hashbrown" 581version = "0.15.5" 582source = "registry+https://github.com/rust-lang/crates.io-index" 583checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 584dependencies = [ 585 "foldhash", 586] 587 588[[package]] 589name = "hashbrown" 590version = "0.16.1" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 593 594[[package]] 595name = "heck" 596version = "0.3.3" 597source = "registry+https://github.com/rust-lang/crates.io-index" 598checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 599dependencies = [ 600 "unicode-segmentation", 601] 602 603[[package]] 604name = "heck" 605version = "0.5.0" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 608 609[[package]] 610name = "hermit-abi" 611version = "0.5.2" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 614 615[[package]] 616name = "hex" 617version = "0.4.3" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 620 621[[package]] 622name = "id-arena" 623version = "2.3.0" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 626 627[[package]] 628name = "ident_case" 629version = "1.0.1" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 632 633[[package]] 634name = "indexmap" 635version = "2.13.0" 636source = "registry+https://github.com/rust-lang/crates.io-index" 637checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" 638dependencies = [ 639 "equivalent", 640 "hashbrown 0.16.1", 641 "serde", 642 "serde_core", 643] 644 645[[package]] 646name = "is_terminal_polyfill" 647version = "1.70.2" 648source = "registry+https://github.com/rust-lang/crates.io-index" 649checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 650 651[[package]] 652name = "itoa" 653version = "1.0.17" 654source = "registry+https://github.com/rust-lang/crates.io-index" 655checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 656 657[[package]] 658name = "jiff" 659version = "0.2.23" 660source = "registry+https://github.com/rust-lang/crates.io-index" 661checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" 662dependencies = [ 663 "jiff-static", 664 "log", 665 "portable-atomic", 666 "portable-atomic-util", 667 "serde_core", 668] 669 670[[package]] 671name = "jiff-static" 672version = "0.2.23" 673source = "registry+https://github.com/rust-lang/crates.io-index" 674checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" 675dependencies = [ 676 "proc-macro2", 677 "quote 1.0.45", 678 "syn 2.0.117", 679] 680 681[[package]] 682name = "js-sys" 683version = "0.3.91" 684source = "registry+https://github.com/rust-lang/crates.io-index" 685checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" 686dependencies = [ 687 "once_cell", 688 "wasm-bindgen", 689] 690 691[[package]] 692name = "leb128fmt" 693version = "0.1.0" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 696 697[[package]] 698name = "libc" 699version = "0.2.182" 700source = "registry+https://github.com/rust-lang/crates.io-index" 701checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" 702 703[[package]] 704name = "libdbus-sys" 705version = "0.2.7" 706source = "registry+https://github.com/rust-lang/crates.io-index" 707checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043" 708dependencies = [ 709 "pkg-config", 710] 711 712[[package]] 713name = "linux-raw-sys" 714version = "0.12.1" 715source = "registry+https://github.com/rust-lang/crates.io-index" 716checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 717 718[[package]] 719name = "log" 720version = "0.4.29" 721source = "registry+https://github.com/rust-lang/crates.io-index" 722checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 723 724[[package]] 725name = "memchr" 726version = "2.8.0" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" 729 730[[package]] 731name = "memoffset" 732version = "0.9.1" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 735dependencies = [ 736 "autocfg", 737] 738 739[[package]] 740name = "mpris" 741version = "2.0.1" 742source = "registry+https://github.com/rust-lang/crates.io-index" 743checksum = "55cef955a7826b1e00e901a3652e7a895abd221fb4ab61547e7d0e4c235d7feb" 744dependencies = [ 745 "dbus", 746 "derive_is_enum_variant", 747 "enum-kinds", 748 "from_variants", 749 "thiserror", 750] 751 752[[package]] 753name = "once_cell" 754version = "1.21.3" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 757 758[[package]] 759name = "once_cell_polyfill" 760version = "1.70.2" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 763 764[[package]] 765name = "ordered-stream" 766version = "0.2.0" 767source = "registry+https://github.com/rust-lang/crates.io-index" 768checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 769dependencies = [ 770 "futures-core", 771 "pin-project-lite", 772] 773 774[[package]] 775name = "parking" 776version = "2.2.1" 777source = "registry+https://github.com/rust-lang/crates.io-index" 778checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 779 780[[package]] 781name = "pin-project-lite" 782version = "0.2.17" 783source = "registry+https://github.com/rust-lang/crates.io-index" 784checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 785 786[[package]] 787name = "piper" 788version = "0.2.5" 789source = "registry+https://github.com/rust-lang/crates.io-index" 790checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" 791dependencies = [ 792 "atomic-waker", 793 "fastrand", 794 "futures-io", 795] 796 797[[package]] 798name = "pkg-config" 799version = "0.3.32" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 802 803[[package]] 804name = "polling" 805version = "3.11.0" 806source = "registry+https://github.com/rust-lang/crates.io-index" 807checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 808dependencies = [ 809 "cfg-if", 810 "concurrent-queue", 811 "hermit-abi", 812 "pin-project-lite", 813 "rustix", 814 "windows-sys 0.61.2", 815] 816 817[[package]] 818name = "portable-atomic" 819version = "1.13.1" 820source = "registry+https://github.com/rust-lang/crates.io-index" 821checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 822 823[[package]] 824name = "portable-atomic-util" 825version = "0.2.5" 826source = "registry+https://github.com/rust-lang/crates.io-index" 827checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" 828dependencies = [ 829 "portable-atomic", 830] 831 832[[package]] 833name = "prettyplease" 834version = "0.2.37" 835source = "registry+https://github.com/rust-lang/crates.io-index" 836checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 837dependencies = [ 838 "proc-macro2", 839 "syn 2.0.117", 840] 841 842[[package]] 843name = "proc-macro-crate" 844version = "3.5.0" 845source = "registry+https://github.com/rust-lang/crates.io-index" 846checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" 847dependencies = [ 848 "toml_edit", 849] 850 851[[package]] 852name = "proc-macro2" 853version = "1.0.106" 854source = "registry+https://github.com/rust-lang/crates.io-index" 855checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 856dependencies = [ 857 "unicode-ident", 858] 859 860[[package]] 861name = "quick-xml" 862version = "0.39.2" 863source = "registry+https://github.com/rust-lang/crates.io-index" 864checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d" 865dependencies = [ 866 "memchr", 867] 868 869[[package]] 870name = "quote" 871version = "0.3.15" 872source = "registry+https://github.com/rust-lang/crates.io-index" 873checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" 874 875[[package]] 876name = "quote" 877version = "1.0.45" 878source = "registry+https://github.com/rust-lang/crates.io-index" 879checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" 880dependencies = [ 881 "proc-macro2", 882] 883 884[[package]] 885name = "r-efi" 886version = "6.0.0" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 889 890[[package]] 891name = "regex" 892version = "1.12.3" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" 895dependencies = [ 896 "aho-corasick", 897 "memchr", 898 "regex-automata", 899 "regex-syntax", 900] 901 902[[package]] 903name = "regex-automata" 904version = "0.4.14" 905source = "registry+https://github.com/rust-lang/crates.io-index" 906checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 907dependencies = [ 908 "aho-corasick", 909 "memchr", 910 "regex-syntax", 911] 912 913[[package]] 914name = "regex-syntax" 915version = "0.8.10" 916source = "registry+https://github.com/rust-lang/crates.io-index" 917checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" 918 919[[package]] 920name = "rustix" 921version = "1.1.4" 922source = "registry+https://github.com/rust-lang/crates.io-index" 923checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 924dependencies = [ 925 "bitflags", 926 "errno", 927 "libc", 928 "linux-raw-sys", 929 "windows-sys 0.61.2", 930] 931 932[[package]] 933name = "rustversion" 934version = "1.0.22" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 937 938[[package]] 939name = "semver" 940version = "1.0.27" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 943 944[[package]] 945name = "serde" 946version = "1.0.228" 947source = "registry+https://github.com/rust-lang/crates.io-index" 948checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 949dependencies = [ 950 "serde_core", 951 "serde_derive", 952] 953 954[[package]] 955name = "serde_core" 956version = "1.0.228" 957source = "registry+https://github.com/rust-lang/crates.io-index" 958checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 959dependencies = [ 960 "serde_derive", 961] 962 963[[package]] 964name = "serde_derive" 965version = "1.0.228" 966source = "registry+https://github.com/rust-lang/crates.io-index" 967checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 968dependencies = [ 969 "proc-macro2", 970 "quote 1.0.45", 971 "syn 2.0.117", 972] 973 974[[package]] 975name = "serde_json" 976version = "1.0.149" 977source = "registry+https://github.com/rust-lang/crates.io-index" 978checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 979dependencies = [ 980 "itoa", 981 "memchr", 982 "serde", 983 "serde_core", 984 "zmij", 985] 986 987[[package]] 988name = "serde_repr" 989version = "0.1.20" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 992dependencies = [ 993 "proc-macro2", 994 "quote 1.0.45", 995 "syn 2.0.117", 996] 997 998[[package]] 999name = "shlex" 1000version = "1.3.0" 1001source = "registry+https://github.com/rust-lang/crates.io-index" 1002checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1003 1004[[package]] 1005name = "signal-hook-registry" 1006version = "1.4.8" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 1009dependencies = [ 1010 "errno", 1011 "libc", 1012] 1013 1014[[package]] 1015name = "slab" 1016version = "0.4.12" 1017source = "registry+https://github.com/rust-lang/crates.io-index" 1018checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 1019 1020[[package]] 1021name = "smallvec" 1022version = "1.15.1" 1023source = "registry+https://github.com/rust-lang/crates.io-index" 1024checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1025 1026[[package]] 1027name = "strsim" 1028version = "0.10.0" 1029source = "registry+https://github.com/rust-lang/crates.io-index" 1030checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1031 1032[[package]] 1033name = "strsim" 1034version = "0.11.1" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1037 1038[[package]] 1039name = "syn" 1040version = "0.11.11" 1041source = "registry+https://github.com/rust-lang/crates.io-index" 1042checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" 1043dependencies = [ 1044 "quote 0.3.15", 1045 "synom", 1046 "unicode-xid 0.0.4", 1047] 1048 1049[[package]] 1050name = "syn" 1051version = "1.0.109" 1052source = "registry+https://github.com/rust-lang/crates.io-index" 1053checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1054dependencies = [ 1055 "proc-macro2", 1056 "quote 1.0.45", 1057 "unicode-ident", 1058] 1059 1060[[package]] 1061name = "syn" 1062version = "2.0.117" 1063source = "registry+https://github.com/rust-lang/crates.io-index" 1064checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" 1065dependencies = [ 1066 "proc-macro2", 1067 "quote 1.0.45", 1068 "unicode-ident", 1069] 1070 1071[[package]] 1072name = "synom" 1073version = "0.11.3" 1074source = "registry+https://github.com/rust-lang/crates.io-index" 1075checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" 1076dependencies = [ 1077 "unicode-xid 0.0.4", 1078] 1079 1080[[package]] 1081name = "tempfile" 1082version = "3.26.0" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0" 1085dependencies = [ 1086 "fastrand", 1087 "getrandom", 1088 "once_cell", 1089 "rustix", 1090 "windows-sys 0.61.2", 1091] 1092 1093[[package]] 1094name = "thiserror" 1095version = "1.0.69" 1096source = "registry+https://github.com/rust-lang/crates.io-index" 1097checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 1098dependencies = [ 1099 "thiserror-impl", 1100] 1101 1102[[package]] 1103name = "thiserror-impl" 1104version = "1.0.69" 1105source = "registry+https://github.com/rust-lang/crates.io-index" 1106checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 1107dependencies = [ 1108 "proc-macro2", 1109 "quote 1.0.45", 1110 "syn 2.0.117", 1111] 1112 1113[[package]] 1114name = "toml_datetime" 1115version = "1.0.0+spec-1.1.0" 1116source = "registry+https://github.com/rust-lang/crates.io-index" 1117checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" 1118dependencies = [ 1119 "serde_core", 1120] 1121 1122[[package]] 1123name = "toml_edit" 1124version = "0.25.4+spec-1.1.0" 1125source = "registry+https://github.com/rust-lang/crates.io-index" 1126checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2" 1127dependencies = [ 1128 "indexmap", 1129 "toml_datetime", 1130 "toml_parser", 1131 "winnow", 1132] 1133 1134[[package]] 1135name = "toml_parser" 1136version = "1.0.9+spec-1.1.0" 1137source = "registry+https://github.com/rust-lang/crates.io-index" 1138checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" 1139dependencies = [ 1140 "winnow", 1141] 1142 1143[[package]] 1144name = "tracing" 1145version = "0.1.44" 1146source = "registry+https://github.com/rust-lang/crates.io-index" 1147checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 1148dependencies = [ 1149 "pin-project-lite", 1150 "tracing-attributes", 1151 "tracing-core", 1152] 1153 1154[[package]] 1155name = "tracing-attributes" 1156version = "0.1.31" 1157source = "registry+https://github.com/rust-lang/crates.io-index" 1158checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 1159dependencies = [ 1160 "proc-macro2", 1161 "quote 1.0.45", 1162 "syn 2.0.117", 1163] 1164 1165[[package]] 1166name = "tracing-core" 1167version = "0.1.36" 1168source = "registry+https://github.com/rust-lang/crates.io-index" 1169checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 1170dependencies = [ 1171 "once_cell", 1172] 1173 1174[[package]] 1175name = "uds_windows" 1176version = "1.2.0" 1177source = "registry+https://github.com/rust-lang/crates.io-index" 1178checksum = "51b70b87d15e91f553711b40df3048faf27a7a04e01e0ddc0cf9309f0af7c2ca" 1179dependencies = [ 1180 "memoffset", 1181 "tempfile", 1182 "windows-sys 0.61.2", 1183] 1184 1185[[package]] 1186name = "unicode-ident" 1187version = "1.0.24" 1188source = "registry+https://github.com/rust-lang/crates.io-index" 1189checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 1190 1191[[package]] 1192name = "unicode-segmentation" 1193version = "1.12.0" 1194source = "registry+https://github.com/rust-lang/crates.io-index" 1195checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 1196 1197[[package]] 1198name = "unicode-xid" 1199version = "0.0.4" 1200source = "registry+https://github.com/rust-lang/crates.io-index" 1201checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" 1202 1203[[package]] 1204name = "unicode-xid" 1205version = "0.2.6" 1206source = "registry+https://github.com/rust-lang/crates.io-index" 1207checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 1208 1209[[package]] 1210name = "utf8parse" 1211version = "0.2.2" 1212source = "registry+https://github.com/rust-lang/crates.io-index" 1213checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1214 1215[[package]] 1216name = "uuid" 1217version = "1.21.0" 1218source = "registry+https://github.com/rust-lang/crates.io-index" 1219checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb" 1220dependencies = [ 1221 "js-sys", 1222 "serde_core", 1223 "wasm-bindgen", 1224] 1225 1226[[package]] 1227name = "wasip2" 1228version = "1.0.2+wasi-0.2.9" 1229source = "registry+https://github.com/rust-lang/crates.io-index" 1230checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" 1231dependencies = [ 1232 "wit-bindgen", 1233] 1234 1235[[package]] 1236name = "wasip3" 1237version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 1238source = "registry+https://github.com/rust-lang/crates.io-index" 1239checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 1240dependencies = [ 1241 "wit-bindgen", 1242] 1243 1244[[package]] 1245name = "wasm-bindgen" 1246version = "0.2.114" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" 1249dependencies = [ 1250 "cfg-if", 1251 "once_cell", 1252 "rustversion", 1253 "wasm-bindgen-macro", 1254 "wasm-bindgen-shared", 1255] 1256 1257[[package]] 1258name = "wasm-bindgen-macro" 1259version = "0.2.114" 1260source = "registry+https://github.com/rust-lang/crates.io-index" 1261checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" 1262dependencies = [ 1263 "quote 1.0.45", 1264 "wasm-bindgen-macro-support", 1265] 1266 1267[[package]] 1268name = "wasm-bindgen-macro-support" 1269version = "0.2.114" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" 1272dependencies = [ 1273 "bumpalo", 1274 "proc-macro2", 1275 "quote 1.0.45", 1276 "syn 2.0.117", 1277 "wasm-bindgen-shared", 1278] 1279 1280[[package]] 1281name = "wasm-bindgen-shared" 1282version = "0.2.114" 1283source = "registry+https://github.com/rust-lang/crates.io-index" 1284checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" 1285dependencies = [ 1286 "unicode-ident", 1287] 1288 1289[[package]] 1290name = "wasm-encoder" 1291version = "0.244.0" 1292source = "registry+https://github.com/rust-lang/crates.io-index" 1293checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 1294dependencies = [ 1295 "leb128fmt", 1296 "wasmparser", 1297] 1298 1299[[package]] 1300name = "wasm-metadata" 1301version = "0.244.0" 1302source = "registry+https://github.com/rust-lang/crates.io-index" 1303checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 1304dependencies = [ 1305 "anyhow", 1306 "indexmap", 1307 "wasm-encoder", 1308 "wasmparser", 1309] 1310 1311[[package]] 1312name = "wasmparser" 1313version = "0.244.0" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 1316dependencies = [ 1317 "bitflags", 1318 "hashbrown 0.15.5", 1319 "indexmap", 1320 "semver", 1321] 1322 1323[[package]] 1324name = "wayland-backend" 1325version = "0.3.13" 1326source = "registry+https://github.com/rust-lang/crates.io-index" 1327checksum = "eaa6143502b9a87f759cb6a649ca801a226f77740eb54f3951cba2227790afeb" 1328dependencies = [ 1329 "cc", 1330 "downcast-rs", 1331 "rustix", 1332 "smallvec", 1333 "wayland-sys", 1334] 1335 1336[[package]] 1337name = "wayland-client" 1338version = "0.31.13" 1339source = "registry+https://github.com/rust-lang/crates.io-index" 1340checksum = "ab51d9f7c071abeee76007e2b742499e535148035bb835f97aaed1338cf516c3" 1341dependencies = [ 1342 "bitflags", 1343 "rustix", 1344 "wayland-backend", 1345 "wayland-scanner", 1346] 1347 1348[[package]] 1349name = "wayland-mpris-idle-inhibit" 1350version = "0.1.0" 1351dependencies = [ 1352 "anyhow", 1353 "clap", 1354 "colog", 1355 "env_logger", 1356 "log", 1357 "mpris", 1358 "wayland-client", 1359 "wayland-protocols", 1360 "zbus", 1361] 1362 1363[[package]] 1364name = "wayland-protocols" 1365version = "0.32.11" 1366source = "registry+https://github.com/rust-lang/crates.io-index" 1367checksum = "b23b5df31ceff1328f06ac607591d5ba360cf58f90c8fad4ac8d3a55a3c4aec7" 1368dependencies = [ 1369 "bitflags", 1370 "wayland-backend", 1371 "wayland-client", 1372 "wayland-scanner", 1373] 1374 1375[[package]] 1376name = "wayland-scanner" 1377version = "0.31.9" 1378source = "registry+https://github.com/rust-lang/crates.io-index" 1379checksum = "c86287151a309799b821ca709b7345a048a2956af05957c89cb824ab919fa4e3" 1380dependencies = [ 1381 "proc-macro2", 1382 "quick-xml", 1383 "quote 1.0.45", 1384] 1385 1386[[package]] 1387name = "wayland-sys" 1388version = "0.31.9" 1389source = "registry+https://github.com/rust-lang/crates.io-index" 1390checksum = "81d2bd69b1dadd601d0e98ef2fc9339a1b1e00cec5ee7545a77b5a0f52a90394" 1391dependencies = [ 1392 "pkg-config", 1393] 1394 1395[[package]] 1396name = "windows-link" 1397version = "0.2.1" 1398source = "registry+https://github.com/rust-lang/crates.io-index" 1399checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 1400 1401[[package]] 1402name = "windows-sys" 1403version = "0.59.0" 1404source = "registry+https://github.com/rust-lang/crates.io-index" 1405checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1406dependencies = [ 1407 "windows-targets", 1408] 1409 1410[[package]] 1411name = "windows-sys" 1412version = "0.61.2" 1413source = "registry+https://github.com/rust-lang/crates.io-index" 1414checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 1415dependencies = [ 1416 "windows-link", 1417] 1418 1419[[package]] 1420name = "windows-targets" 1421version = "0.52.6" 1422source = "registry+https://github.com/rust-lang/crates.io-index" 1423checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1424dependencies = [ 1425 "windows_aarch64_gnullvm", 1426 "windows_aarch64_msvc", 1427 "windows_i686_gnu", 1428 "windows_i686_gnullvm", 1429 "windows_i686_msvc", 1430 "windows_x86_64_gnu", 1431 "windows_x86_64_gnullvm", 1432 "windows_x86_64_msvc", 1433] 1434 1435[[package]] 1436name = "windows_aarch64_gnullvm" 1437version = "0.52.6" 1438source = "registry+https://github.com/rust-lang/crates.io-index" 1439checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1440 1441[[package]] 1442name = "windows_aarch64_msvc" 1443version = "0.52.6" 1444source = "registry+https://github.com/rust-lang/crates.io-index" 1445checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1446 1447[[package]] 1448name = "windows_i686_gnu" 1449version = "0.52.6" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1452 1453[[package]] 1454name = "windows_i686_gnullvm" 1455version = "0.52.6" 1456source = "registry+https://github.com/rust-lang/crates.io-index" 1457checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1458 1459[[package]] 1460name = "windows_i686_msvc" 1461version = "0.52.6" 1462source = "registry+https://github.com/rust-lang/crates.io-index" 1463checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1464 1465[[package]] 1466name = "windows_x86_64_gnu" 1467version = "0.52.6" 1468source = "registry+https://github.com/rust-lang/crates.io-index" 1469checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1470 1471[[package]] 1472name = "windows_x86_64_gnullvm" 1473version = "0.52.6" 1474source = "registry+https://github.com/rust-lang/crates.io-index" 1475checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1476 1477[[package]] 1478name = "windows_x86_64_msvc" 1479version = "0.52.6" 1480source = "registry+https://github.com/rust-lang/crates.io-index" 1481checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1482 1483[[package]] 1484name = "winnow" 1485version = "0.7.14" 1486source = "registry+https://github.com/rust-lang/crates.io-index" 1487checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 1488dependencies = [ 1489 "memchr", 1490] 1491 1492[[package]] 1493name = "wit-bindgen" 1494version = "0.51.0" 1495source = "registry+https://github.com/rust-lang/crates.io-index" 1496checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 1497dependencies = [ 1498 "wit-bindgen-rust-macro", 1499] 1500 1501[[package]] 1502name = "wit-bindgen-core" 1503version = "0.51.0" 1504source = "registry+https://github.com/rust-lang/crates.io-index" 1505checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 1506dependencies = [ 1507 "anyhow", 1508 "heck 0.5.0", 1509 "wit-parser", 1510] 1511 1512[[package]] 1513name = "wit-bindgen-rust" 1514version = "0.51.0" 1515source = "registry+https://github.com/rust-lang/crates.io-index" 1516checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 1517dependencies = [ 1518 "anyhow", 1519 "heck 0.5.0", 1520 "indexmap", 1521 "prettyplease", 1522 "syn 2.0.117", 1523 "wasm-metadata", 1524 "wit-bindgen-core", 1525 "wit-component", 1526] 1527 1528[[package]] 1529name = "wit-bindgen-rust-macro" 1530version = "0.51.0" 1531source = "registry+https://github.com/rust-lang/crates.io-index" 1532checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 1533dependencies = [ 1534 "anyhow", 1535 "prettyplease", 1536 "proc-macro2", 1537 "quote 1.0.45", 1538 "syn 2.0.117", 1539 "wit-bindgen-core", 1540 "wit-bindgen-rust", 1541] 1542 1543[[package]] 1544name = "wit-component" 1545version = "0.244.0" 1546source = "registry+https://github.com/rust-lang/crates.io-index" 1547checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 1548dependencies = [ 1549 "anyhow", 1550 "bitflags", 1551 "indexmap", 1552 "log", 1553 "serde", 1554 "serde_derive", 1555 "serde_json", 1556 "wasm-encoder", 1557 "wasm-metadata", 1558 "wasmparser", 1559 "wit-parser", 1560] 1561 1562[[package]] 1563name = "wit-parser" 1564version = "0.244.0" 1565source = "registry+https://github.com/rust-lang/crates.io-index" 1566checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 1567dependencies = [ 1568 "anyhow", 1569 "id-arena", 1570 "indexmap", 1571 "log", 1572 "semver", 1573 "serde", 1574 "serde_derive", 1575 "serde_json", 1576 "unicode-xid 0.2.6", 1577 "wasmparser", 1578] 1579 1580[[package]] 1581name = "zbus" 1582version = "5.14.0" 1583source = "registry+https://github.com/rust-lang/crates.io-index" 1584checksum = "ca82f95dbd3943a40a53cfded6c2d0a2ca26192011846a1810c4256ef92c60bc" 1585dependencies = [ 1586 "async-broadcast", 1587 "async-executor", 1588 "async-io", 1589 "async-lock", 1590 "async-process", 1591 "async-recursion", 1592 "async-task", 1593 "async-trait", 1594 "blocking", 1595 "enumflags2", 1596 "event-listener", 1597 "futures-core", 1598 "futures-lite", 1599 "hex", 1600 "libc", 1601 "ordered-stream", 1602 "rustix", 1603 "serde", 1604 "serde_repr", 1605 "tracing", 1606 "uds_windows", 1607 "uuid", 1608 "windows-sys 0.61.2", 1609 "winnow", 1610 "zbus_macros", 1611 "zbus_names", 1612 "zvariant", 1613] 1614 1615[[package]] 1616name = "zbus_macros" 1617version = "5.14.0" 1618source = "registry+https://github.com/rust-lang/crates.io-index" 1619checksum = "897e79616e84aac4b2c46e9132a4f63b93105d54fe8c0e8f6bffc21fa8d49222" 1620dependencies = [ 1621 "proc-macro-crate", 1622 "proc-macro2", 1623 "quote 1.0.45", 1624 "syn 2.0.117", 1625 "zbus_names", 1626 "zvariant", 1627 "zvariant_utils", 1628] 1629 1630[[package]] 1631name = "zbus_names" 1632version = "4.3.1" 1633source = "registry+https://github.com/rust-lang/crates.io-index" 1634checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f" 1635dependencies = [ 1636 "serde", 1637 "winnow", 1638 "zvariant", 1639] 1640 1641[[package]] 1642name = "zmij" 1643version = "1.0.21" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 1646 1647[[package]] 1648name = "zvariant" 1649version = "5.10.0" 1650source = "registry+https://github.com/rust-lang/crates.io-index" 1651checksum = "5708299b21903bbe348e94729f22c49c55d04720a004aa350f1f9c122fd2540b" 1652dependencies = [ 1653 "endi", 1654 "enumflags2", 1655 "serde", 1656 "winnow", 1657 "zvariant_derive", 1658 "zvariant_utils", 1659] 1660 1661[[package]] 1662name = "zvariant_derive" 1663version = "5.10.0" 1664source = "registry+https://github.com/rust-lang/crates.io-index" 1665checksum = "5b59b012ebe9c46656f9cc08d8da8b4c726510aef12559da3e5f1bf72780752c" 1666dependencies = [ 1667 "proc-macro-crate", 1668 "proc-macro2", 1669 "quote 1.0.45", 1670 "syn 2.0.117", 1671 "zvariant_utils", 1672] 1673 1674[[package]] 1675name = "zvariant_utils" 1676version = "3.3.0" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9" 1679dependencies = [ 1680 "proc-macro2", 1681 "quote 1.0.45", 1682 "serde", 1683 "syn 2.0.117", 1684 "winnow", 1685]