Merge pull request #244632 from GaetanLepage/mission-center

mission-center: init at 0.2.5

authored by Sandro and committed by GitHub f1aa6180 dfcffbd7

+2831
+2183
pkgs/applications/misc/mission-center/Cargo.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "adler32" 7 + version = "1.2.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 10 + 11 + [[package]] 12 + name = "ahash" 13 + version = "0.3.8" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217" 16 + 17 + [[package]] 18 + name = "ahash" 19 + version = "0.8.3" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 22 + dependencies = [ 23 + "cfg-if 1.0.0", 24 + "once_cell", 25 + "version_check", 26 + ] 27 + 28 + [[package]] 29 + name = "aho-corasick" 30 + version = "1.0.2" 31 + source = "registry+https://github.com/rust-lang/crates.io-index" 32 + checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 33 + dependencies = [ 34 + "memchr", 35 + ] 36 + 37 + [[package]] 38 + name = "allocator-api2" 39 + version = "0.2.15" 40 + source = "registry+https://github.com/rust-lang/crates.io-index" 41 + checksum = "56fc6cf8dc8c4158eed8649f9b8b0ea1518eb62b544fe9490d66fa0b349eafe9" 42 + 43 + [[package]] 44 + name = "anyhow" 45 + version = "1.0.71" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 48 + 49 + [[package]] 50 + name = "arrayvec" 51 + version = "0.5.2" 52 + source = "registry+https://github.com/rust-lang/crates.io-index" 53 + checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 54 + 55 + [[package]] 56 + name = "autocfg" 57 + version = "1.1.0" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 60 + 61 + [[package]] 62 + name = "bitflags" 63 + version = "1.3.2" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 66 + 67 + [[package]] 68 + name = "bitflags" 69 + version = "2.3.3" 70 + source = "registry+https://github.com/rust-lang/crates.io-index" 71 + checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" 72 + 73 + [[package]] 74 + name = "block" 75 + version = "0.1.6" 76 + source = "registry+https://github.com/rust-lang/crates.io-index" 77 + checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 78 + 79 + [[package]] 80 + name = "block-buffer" 81 + version = "0.10.4" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 84 + dependencies = [ 85 + "generic-array", 86 + ] 87 + 88 + [[package]] 89 + name = "bumpalo" 90 + version = "3.13.0" 91 + source = "registry+https://github.com/rust-lang/crates.io-index" 92 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 93 + 94 + [[package]] 95 + name = "byte-slice-cast" 96 + version = "0.3.5" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3" 99 + 100 + [[package]] 101 + name = "bytemuck" 102 + version = "1.13.1" 103 + source = "registry+https://github.com/rust-lang/crates.io-index" 104 + checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 105 + dependencies = [ 106 + "bytemuck_derive", 107 + ] 108 + 109 + [[package]] 110 + name = "bytemuck_derive" 111 + version = "1.4.1" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192" 114 + dependencies = [ 115 + "proc-macro2", 116 + "quote", 117 + "syn 2.0.23", 118 + ] 119 + 120 + [[package]] 121 + name = "byteorder" 122 + version = "1.4.3" 123 + source = "registry+https://github.com/rust-lang/crates.io-index" 124 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 125 + 126 + [[package]] 127 + name = "cairo-rs" 128 + version = "0.17.10" 129 + source = "registry+https://github.com/rust-lang/crates.io-index" 130 + checksum = "ab3603c4028a5e368d09b51c8b624b9a46edcd7c3778284077a6125af73c9f0a" 131 + dependencies = [ 132 + "bitflags 1.3.2", 133 + "cairo-sys-rs", 134 + "glib", 135 + "libc 0.2.147", 136 + "once_cell", 137 + "thiserror", 138 + ] 139 + 140 + [[package]] 141 + name = "cairo-sys-rs" 142 + version = "0.17.10" 143 + source = "registry+https://github.com/rust-lang/crates.io-index" 144 + checksum = "691d0c66b1fb4881be80a760cb8fe76ea97218312f9dfe2c9cc0f496ca279cb1" 145 + dependencies = [ 146 + "glib-sys", 147 + "libc 0.2.147", 148 + "system-deps", 149 + ] 150 + 151 + [[package]] 152 + name = "cc" 153 + version = "1.0.79" 154 + source = "registry+https://github.com/rust-lang/crates.io-index" 155 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 156 + 157 + [[package]] 158 + name = "cfg-expr" 159 + version = "0.15.3" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c" 162 + dependencies = [ 163 + "smallvec", 164 + "target-lexicon", 165 + ] 166 + 167 + [[package]] 168 + name = "cfg-if" 169 + version = "0.1.10" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 172 + 173 + [[package]] 174 + name = "cfg-if" 175 + version = "1.0.0" 176 + source = "registry+https://github.com/rust-lang/crates.io-index" 177 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 178 + 179 + [[package]] 180 + name = "color_quant" 181 + version = "1.1.0" 182 + source = "registry+https://github.com/rust-lang/crates.io-index" 183 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 184 + 185 + [[package]] 186 + name = "const-random" 187 + version = "0.1.15" 188 + source = "registry+https://github.com/rust-lang/crates.io-index" 189 + checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 190 + dependencies = [ 191 + "const-random-macro", 192 + "proc-macro-hack", 193 + ] 194 + 195 + [[package]] 196 + name = "const-random-macro" 197 + version = "0.1.15" 198 + source = "registry+https://github.com/rust-lang/crates.io-index" 199 + checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 200 + dependencies = [ 201 + "getrandom", 202 + "once_cell", 203 + "proc-macro-hack", 204 + "tiny-keccak", 205 + ] 206 + 207 + [[package]] 208 + name = "core-foundation-sys" 209 + version = "0.8.4" 210 + source = "registry+https://github.com/rust-lang/crates.io-index" 211 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 212 + 213 + [[package]] 214 + name = "cpufeatures" 215 + version = "0.2.9" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 218 + dependencies = [ 219 + "libc 0.2.147", 220 + ] 221 + 222 + [[package]] 223 + name = "crc32fast" 224 + version = "1.3.2" 225 + source = "registry+https://github.com/rust-lang/crates.io-index" 226 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 227 + dependencies = [ 228 + "cfg-if 1.0.0", 229 + ] 230 + 231 + [[package]] 232 + name = "crossbeam-channel" 233 + version = "0.4.4" 234 + source = "registry+https://github.com/rust-lang/crates.io-index" 235 + checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" 236 + dependencies = [ 237 + "crossbeam-utils 0.7.2", 238 + "maybe-uninit", 239 + ] 240 + 241 + [[package]] 242 + name = "crossbeam-channel" 243 + version = "0.5.8" 244 + source = "registry+https://github.com/rust-lang/crates.io-index" 245 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 246 + dependencies = [ 247 + "cfg-if 1.0.0", 248 + "crossbeam-utils 0.8.16", 249 + ] 250 + 251 + [[package]] 252 + name = "crossbeam-deque" 253 + version = "0.8.3" 254 + source = "registry+https://github.com/rust-lang/crates.io-index" 255 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 256 + dependencies = [ 257 + "cfg-if 1.0.0", 258 + "crossbeam-epoch", 259 + "crossbeam-utils 0.8.16", 260 + ] 261 + 262 + [[package]] 263 + name = "crossbeam-epoch" 264 + version = "0.9.15" 265 + source = "registry+https://github.com/rust-lang/crates.io-index" 266 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 267 + dependencies = [ 268 + "autocfg", 269 + "cfg-if 1.0.0", 270 + "crossbeam-utils 0.8.16", 271 + "memoffset 0.9.0", 272 + "scopeguard", 273 + ] 274 + 275 + [[package]] 276 + name = "crossbeam-utils" 277 + version = "0.7.2" 278 + source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" 280 + dependencies = [ 281 + "autocfg", 282 + "cfg-if 0.1.10", 283 + "lazy_static", 284 + ] 285 + 286 + [[package]] 287 + name = "crossbeam-utils" 288 + version = "0.8.16" 289 + source = "registry+https://github.com/rust-lang/crates.io-index" 290 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 291 + dependencies = [ 292 + "cfg-if 1.0.0", 293 + ] 294 + 295 + [[package]] 296 + name = "crunchy" 297 + version = "0.2.2" 298 + source = "registry+https://github.com/rust-lang/crates.io-index" 299 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 300 + 301 + [[package]] 302 + name = "crypto-common" 303 + version = "0.1.6" 304 + source = "registry+https://github.com/rust-lang/crates.io-index" 305 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 306 + dependencies = [ 307 + "generic-array", 308 + "typenum", 309 + ] 310 + 311 + [[package]] 312 + name = "deflate" 313 + version = "0.8.6" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174" 316 + dependencies = [ 317 + "adler32", 318 + "byteorder", 319 + ] 320 + 321 + [[package]] 322 + name = "digest" 323 + version = "0.10.7" 324 + source = "registry+https://github.com/rust-lang/crates.io-index" 325 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 326 + dependencies = [ 327 + "block-buffer", 328 + "crypto-common", 329 + ] 330 + 331 + [[package]] 332 + name = "dlib" 333 + version = "0.5.2" 334 + source = "registry+https://github.com/rust-lang/crates.io-index" 335 + checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 336 + dependencies = [ 337 + "libloading", 338 + ] 339 + 340 + [[package]] 341 + name = "dlv-list" 342 + version = "0.5.0" 343 + source = "registry+https://github.com/rust-lang/crates.io-index" 344 + checksum = "d529fd73d344663edfd598ccb3f344e46034db51ebd103518eae34338248ad73" 345 + dependencies = [ 346 + "const-random", 347 + ] 348 + 349 + [[package]] 350 + name = "downcast-rs" 351 + version = "1.2.0" 352 + source = "registry+https://github.com/rust-lang/crates.io-index" 353 + checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 354 + 355 + [[package]] 356 + name = "drm" 357 + version = "0.9.0" 358 + source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "edf9159ef4bcecd0c5e4cbeb573b8d0037493403d542780dba5d840bbf9df56f" 360 + dependencies = [ 361 + "bitflags 1.3.2", 362 + "bytemuck", 363 + "drm-ffi", 364 + "drm-fourcc", 365 + "nix", 366 + ] 367 + 368 + [[package]] 369 + name = "drm-ffi" 370 + version = "0.5.0" 371 + source = "registry+https://github.com/rust-lang/crates.io-index" 372 + checksum = "1352481b7b90e27a8a1bf8ef6b33cf18b98dba7c410e75c24bb3eef2f0d8d525" 373 + dependencies = [ 374 + "drm-sys", 375 + "nix", 376 + ] 377 + 378 + [[package]] 379 + name = "drm-fourcc" 380 + version = "2.2.0" 381 + source = "registry+https://github.com/rust-lang/crates.io-index" 382 + checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4" 383 + 384 + [[package]] 385 + name = "drm-sys" 386 + version = "0.4.0" 387 + source = "registry+https://github.com/rust-lang/crates.io-index" 388 + checksum = "1369f1679d6b706d234c4c1e0613c415c2c74b598a09ad28080ba2474b72e42d" 389 + dependencies = [ 390 + "libc 0.2.147", 391 + ] 392 + 393 + [[package]] 394 + name = "egl" 395 + version = "0.2.7" 396 + source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "a373bc9844200b1ff15bd1b245931d1c20d09d06e4ec09f361171f29a4b0752d" 398 + dependencies = [ 399 + "khronos", 400 + "libc 0.2.147", 401 + ] 402 + 403 + [[package]] 404 + name = "either" 405 + version = "1.8.1" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 408 + 409 + [[package]] 410 + name = "equivalent" 411 + version = "1.0.0" 412 + source = "registry+https://github.com/rust-lang/crates.io-index" 413 + checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1" 414 + 415 + [[package]] 416 + name = "errno-sys" 417 + version = "0.1.0" 418 + source = "registry+https://github.com/rust-lang/crates.io-index" 419 + checksum = "9c0007216af1525058024bc6dc15bbd2ffe8af877f0fbf754fbdb78c59d634e8" 420 + dependencies = [ 421 + "cc", 422 + "libc 0.2.147", 423 + ] 424 + 425 + [[package]] 426 + name = "fallible-iterator" 427 + version = "0.2.0" 428 + source = "registry+https://github.com/rust-lang/crates.io-index" 429 + checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 430 + 431 + [[package]] 432 + name = "fallible-streaming-iterator" 433 + version = "0.1.9" 434 + source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 436 + 437 + [[package]] 438 + name = "field-offset" 439 + version = "0.3.6" 440 + source = "registry+https://github.com/rust-lang/crates.io-index" 441 + checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 442 + dependencies = [ 443 + "memoffset 0.9.0", 444 + "rustc_version 0.4.0", 445 + ] 446 + 447 + [[package]] 448 + name = "futures-channel" 449 + version = "0.3.28" 450 + source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 452 + dependencies = [ 453 + "futures-core", 454 + ] 455 + 456 + [[package]] 457 + name = "futures-core" 458 + version = "0.3.28" 459 + source = "registry+https://github.com/rust-lang/crates.io-index" 460 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 461 + 462 + [[package]] 463 + name = "futures-executor" 464 + version = "0.3.28" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 467 + dependencies = [ 468 + "futures-core", 469 + "futures-task", 470 + "futures-util", 471 + ] 472 + 473 + [[package]] 474 + name = "futures-io" 475 + version = "0.3.28" 476 + source = "registry+https://github.com/rust-lang/crates.io-index" 477 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 478 + 479 + [[package]] 480 + name = "futures-macro" 481 + version = "0.3.28" 482 + source = "registry+https://github.com/rust-lang/crates.io-index" 483 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 484 + dependencies = [ 485 + "proc-macro2", 486 + "quote", 487 + "syn 2.0.23", 488 + ] 489 + 490 + [[package]] 491 + name = "futures-task" 492 + version = "0.3.28" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 495 + 496 + [[package]] 497 + name = "futures-util" 498 + version = "0.3.28" 499 + source = "registry+https://github.com/rust-lang/crates.io-index" 500 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 501 + dependencies = [ 502 + "futures-core", 503 + "futures-macro", 504 + "futures-task", 505 + "pin-project-lite", 506 + "pin-utils", 507 + "slab", 508 + ] 509 + 510 + [[package]] 511 + name = "fxhash" 512 + version = "0.2.1" 513 + source = "registry+https://github.com/rust-lang/crates.io-index" 514 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 515 + dependencies = [ 516 + "byteorder", 517 + ] 518 + 519 + [[package]] 520 + name = "gbm" 521 + version = "0.12.0" 522 + source = "registry+https://github.com/rust-lang/crates.io-index" 523 + checksum = "f2ec389cda876966cf824111bf6e533fb934c711d473498279964a990853b3c6" 524 + dependencies = [ 525 + "bitflags 1.3.2", 526 + "drm", 527 + "drm-fourcc", 528 + "gbm-sys", 529 + "libc 0.2.147", 530 + "wayland-backend", 531 + "wayland-server", 532 + ] 533 + 534 + [[package]] 535 + name = "gbm-sys" 536 + version = "0.2.2" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + checksum = "b63eba9b9b7a231514482deb08759301c9f9f049ac6869403f381834ebfeaf67" 539 + dependencies = [ 540 + "libc 0.2.147", 541 + ] 542 + 543 + [[package]] 544 + name = "gdk-pixbuf" 545 + version = "0.17.10" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "695d6bc846438c5708b07007537b9274d883373dd30858ca881d7d71b5540717" 548 + dependencies = [ 549 + "bitflags 1.3.2", 550 + "gdk-pixbuf-sys", 551 + "gio", 552 + "glib", 553 + "libc 0.2.147", 554 + "once_cell", 555 + ] 556 + 557 + [[package]] 558 + name = "gdk-pixbuf-sys" 559 + version = "0.17.10" 560 + source = "registry+https://github.com/rust-lang/crates.io-index" 561 + checksum = "9285ec3c113c66d7d0ab5676599176f1f42f4944ca1b581852215bf5694870cb" 562 + dependencies = [ 563 + "gio-sys", 564 + "glib-sys", 565 + "gobject-sys", 566 + "libc 0.2.147", 567 + "system-deps", 568 + ] 569 + 570 + [[package]] 571 + name = "gdk4" 572 + version = "0.6.3" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "c3abf96408a26e3eddf881a7f893a1e111767137136e347745e8ea6ed12731ff" 575 + dependencies = [ 576 + "bitflags 1.3.2", 577 + "cairo-rs", 578 + "gdk-pixbuf", 579 + "gdk4-sys", 580 + "gio", 581 + "glib", 582 + "libc 0.2.147", 583 + "pango", 584 + ] 585 + 586 + [[package]] 587 + name = "gdk4-sys" 588 + version = "0.6.3" 589 + source = "registry+https://github.com/rust-lang/crates.io-index" 590 + checksum = "1bc92aa1608c089c49393d014c38ac0390d01e4841e1fedaa75dbcef77aaed64" 591 + dependencies = [ 592 + "cairo-sys-rs", 593 + "gdk-pixbuf-sys", 594 + "gio-sys", 595 + "glib-sys", 596 + "gobject-sys", 597 + "libc 0.2.147", 598 + "pango-sys", 599 + "pkg-config", 600 + "system-deps", 601 + ] 602 + 603 + [[package]] 604 + name = "generic-array" 605 + version = "0.14.7" 606 + source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 608 + dependencies = [ 609 + "typenum", 610 + "version_check", 611 + ] 612 + 613 + [[package]] 614 + name = "getrandom" 615 + version = "0.2.10" 616 + source = "registry+https://github.com/rust-lang/crates.io-index" 617 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 618 + dependencies = [ 619 + "cfg-if 1.0.0", 620 + "libc 0.2.147", 621 + "wasi", 622 + ] 623 + 624 + [[package]] 625 + name = "gettext-rs" 626 + version = "0.7.0" 627 + source = "registry+https://github.com/rust-lang/crates.io-index" 628 + checksum = "e49ea8a8fad198aaa1f9655a2524b64b70eb06b2f3ff37da407566c93054f364" 629 + dependencies = [ 630 + "gettext-sys", 631 + "locale_config", 632 + ] 633 + 634 + [[package]] 635 + name = "gettext-sys" 636 + version = "0.21.3" 637 + source = "registry+https://github.com/rust-lang/crates.io-index" 638 + checksum = "c63ce2e00f56a206778276704bbe38564c8695249fdc8f354b4ef71c57c3839d" 639 + dependencies = [ 640 + "cc", 641 + "temp-dir", 642 + ] 643 + 644 + [[package]] 645 + name = "gio" 646 + version = "0.17.10" 647 + source = "registry+https://github.com/rust-lang/crates.io-index" 648 + checksum = "a6973e92937cf98689b6a054a9e56c657ed4ff76de925e36fc331a15f0c5d30a" 649 + dependencies = [ 650 + "bitflags 1.3.2", 651 + "futures-channel", 652 + "futures-core", 653 + "futures-io", 654 + "futures-util", 655 + "gio-sys", 656 + "glib", 657 + "libc 0.2.147", 658 + "once_cell", 659 + "pin-project-lite", 660 + "smallvec", 661 + "thiserror", 662 + ] 663 + 664 + [[package]] 665 + name = "gio-sys" 666 + version = "0.17.10" 667 + source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "0ccf87c30a12c469b6d958950f6a9c09f2be20b7773f7e70d20b867fdf2628c3" 669 + dependencies = [ 670 + "glib-sys", 671 + "gobject-sys", 672 + "libc 0.2.147", 673 + "system-deps", 674 + "winapi", 675 + ] 676 + 677 + [[package]] 678 + name = "gl" 679 + version = "0.14.0" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "a94edab108827d67608095e269cf862e60d920f144a5026d3dbcfd8b877fb404" 682 + dependencies = [ 683 + "gl_generator", 684 + ] 685 + 686 + [[package]] 687 + name = "gl_generator" 688 + version = "0.14.0" 689 + source = "registry+https://github.com/rust-lang/crates.io-index" 690 + checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" 691 + dependencies = [ 692 + "khronos_api", 693 + "log", 694 + "xml-rs", 695 + ] 696 + 697 + [[package]] 698 + name = "glib" 699 + version = "0.17.10" 700 + source = "registry+https://github.com/rust-lang/crates.io-index" 701 + checksum = "d3fad45ba8d4d2cea612b432717e834f48031cd8853c8aaf43b2c79fec8d144b" 702 + dependencies = [ 703 + "bitflags 1.3.2", 704 + "futures-channel", 705 + "futures-core", 706 + "futures-executor", 707 + "futures-task", 708 + "futures-util", 709 + "gio-sys", 710 + "glib-macros", 711 + "glib-sys", 712 + "gobject-sys", 713 + "libc 0.2.147", 714 + "memchr", 715 + "once_cell", 716 + "smallvec", 717 + "thiserror", 718 + ] 719 + 720 + [[package]] 721 + name = "glib-macros" 722 + version = "0.17.10" 723 + source = "registry+https://github.com/rust-lang/crates.io-index" 724 + checksum = "eca5c79337338391f1ab8058d6698125034ce8ef31b72a442437fa6c8580de26" 725 + dependencies = [ 726 + "anyhow", 727 + "heck", 728 + "proc-macro-crate", 729 + "proc-macro-error", 730 + "proc-macro2", 731 + "quote", 732 + "syn 1.0.109", 733 + ] 734 + 735 + [[package]] 736 + name = "glib-sys" 737 + version = "0.17.10" 738 + source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "d80aa6ea7bba0baac79222204aa786a6293078c210abe69ef1336911d4bdc4f0" 740 + dependencies = [ 741 + "libc 0.2.147", 742 + "system-deps", 743 + ] 744 + 745 + [[package]] 746 + name = "gobject-sys" 747 + version = "0.17.10" 748 + source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "cd34c3317740a6358ec04572c1bcfd3ac0b5b6529275fae255b237b314bb8062" 750 + dependencies = [ 751 + "glib-sys", 752 + "libc 0.2.147", 753 + "system-deps", 754 + ] 755 + 756 + [[package]] 757 + name = "graphene-rs" 758 + version = "0.17.10" 759 + source = "registry+https://github.com/rust-lang/crates.io-index" 760 + checksum = "def4bb01265b59ed548b05455040d272d989b3012c42d4c1bbd39083cb9b40d9" 761 + dependencies = [ 762 + "glib", 763 + "graphene-sys", 764 + "libc 0.2.147", 765 + ] 766 + 767 + [[package]] 768 + name = "graphene-sys" 769 + version = "0.17.10" 770 + source = "registry+https://github.com/rust-lang/crates.io-index" 771 + checksum = "1856fc817e6a6675e36cea0bd9a3afe296f5d9709d1e2d3182803ac77f0ab21d" 772 + dependencies = [ 773 + "glib-sys", 774 + "libc 0.2.147", 775 + "pkg-config", 776 + "system-deps", 777 + ] 778 + 779 + [[package]] 780 + name = "gsk4" 781 + version = "0.6.3" 782 + source = "registry+https://github.com/rust-lang/crates.io-index" 783 + checksum = "6f01ef44fa7cac15e2da9978529383e6bee03e570ba5bf7036b4c10a15cc3a3c" 784 + dependencies = [ 785 + "bitflags 1.3.2", 786 + "cairo-rs", 787 + "gdk4", 788 + "glib", 789 + "graphene-rs", 790 + "gsk4-sys", 791 + "libc 0.2.147", 792 + "pango", 793 + ] 794 + 795 + [[package]] 796 + name = "gsk4-sys" 797 + version = "0.6.3" 798 + source = "registry+https://github.com/rust-lang/crates.io-index" 799 + checksum = "c07a84fb4dcf1323d29435aa85e2f5f58bef564342bef06775ec7bd0da1f01b0" 800 + dependencies = [ 801 + "cairo-sys-rs", 802 + "gdk4-sys", 803 + "glib-sys", 804 + "gobject-sys", 805 + "graphene-sys", 806 + "libc 0.2.147", 807 + "pango-sys", 808 + "system-deps", 809 + ] 810 + 811 + [[package]] 812 + name = "gtk4" 813 + version = "0.6.6" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "b28a32a04cd75cef14a0983f8b0c669e0fe152a0a7725accdeb594e2c764c88b" 816 + dependencies = [ 817 + "bitflags 1.3.2", 818 + "cairo-rs", 819 + "field-offset", 820 + "futures-channel", 821 + "gdk-pixbuf", 822 + "gdk4", 823 + "gio", 824 + "glib", 825 + "graphene-rs", 826 + "gsk4", 827 + "gtk4-macros", 828 + "gtk4-sys", 829 + "libc 0.2.147", 830 + "once_cell", 831 + "pango", 832 + ] 833 + 834 + [[package]] 835 + name = "gtk4-macros" 836 + version = "0.6.6" 837 + source = "registry+https://github.com/rust-lang/crates.io-index" 838 + checksum = "6a4d6b61570f76d3ee542d984da443b1cd69b6105264c61afec3abed08c2500f" 839 + dependencies = [ 840 + "anyhow", 841 + "proc-macro-crate", 842 + "proc-macro-error", 843 + "proc-macro2", 844 + "quote", 845 + "syn 1.0.109", 846 + ] 847 + 848 + [[package]] 849 + name = "gtk4-sys" 850 + version = "0.6.3" 851 + source = "registry+https://github.com/rust-lang/crates.io-index" 852 + checksum = "5f8283f707b07e019e76c7f2934bdd4180c277e08aa93f4c0d8dd07b7a34e22f" 853 + dependencies = [ 854 + "cairo-sys-rs", 855 + "gdk-pixbuf-sys", 856 + "gdk4-sys", 857 + "gio-sys", 858 + "glib-sys", 859 + "gobject-sys", 860 + "graphene-sys", 861 + "gsk4-sys", 862 + "libc 0.2.147", 863 + "pango-sys", 864 + "system-deps", 865 + ] 866 + 867 + [[package]] 868 + name = "half" 869 + version = "1.8.2" 870 + source = "registry+https://github.com/rust-lang/crates.io-index" 871 + checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 872 + 873 + [[package]] 874 + name = "hashbrown" 875 + version = "0.7.2" 876 + source = "registry+https://github.com/rust-lang/crates.io-index" 877 + checksum = "96282e96bfcd3da0d3aa9938bedf1e50df3269b6db08b4876d2da0bb1a0841cf" 878 + dependencies = [ 879 + "ahash 0.3.8", 880 + "autocfg", 881 + "serde", 882 + ] 883 + 884 + [[package]] 885 + name = "hashbrown" 886 + version = "0.13.2" 887 + source = "registry+https://github.com/rust-lang/crates.io-index" 888 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 889 + 890 + [[package]] 891 + name = "hashbrown" 892 + version = "0.14.0" 893 + source = "registry+https://github.com/rust-lang/crates.io-index" 894 + checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 895 + dependencies = [ 896 + "ahash 0.8.3", 897 + "allocator-api2", 898 + ] 899 + 900 + [[package]] 901 + name = "hashlink" 902 + version = "0.8.3" 903 + source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" 905 + dependencies = [ 906 + "hashbrown 0.14.0", 907 + ] 908 + 909 + [[package]] 910 + name = "heck" 911 + version = "0.4.1" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 914 + 915 + [[package]] 916 + name = "hermit-abi" 917 + version = "0.3.2" 918 + source = "registry+https://github.com/rust-lang/crates.io-index" 919 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 920 + 921 + [[package]] 922 + name = "image" 923 + version = "0.23.14" 924 + source = "registry+https://github.com/rust-lang/crates.io-index" 925 + checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1" 926 + dependencies = [ 927 + "bytemuck", 928 + "byteorder", 929 + "color_quant", 930 + "num-iter", 931 + "num-rational", 932 + "num-traits", 933 + "png", 934 + ] 935 + 936 + [[package]] 937 + name = "indexmap" 938 + version = "2.0.0" 939 + source = "registry+https://github.com/rust-lang/crates.io-index" 940 + checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 941 + dependencies = [ 942 + "equivalent", 943 + "hashbrown 0.14.0", 944 + ] 945 + 946 + [[package]] 947 + name = "instant" 948 + version = "0.1.12" 949 + source = "registry+https://github.com/rust-lang/crates.io-index" 950 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 951 + dependencies = [ 952 + "cfg-if 1.0.0", 953 + "js-sys", 954 + "wasm-bindgen", 955 + "web-sys", 956 + ] 957 + 958 + [[package]] 959 + name = "io-lifetimes" 960 + version = "1.0.11" 961 + source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 963 + dependencies = [ 964 + "hermit-abi", 965 + "libc 0.2.147", 966 + "windows-sys", 967 + ] 968 + 969 + [[package]] 970 + name = "itoa" 971 + version = "1.0.8" 972 + source = "registry+https://github.com/rust-lang/crates.io-index" 973 + checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a" 974 + 975 + [[package]] 976 + name = "js-sys" 977 + version = "0.3.64" 978 + source = "registry+https://github.com/rust-lang/crates.io-index" 979 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 980 + dependencies = [ 981 + "wasm-bindgen", 982 + ] 983 + 984 + [[package]] 985 + name = "khronos" 986 + version = "0.1.2" 987 + source = "registry+https://github.com/rust-lang/crates.io-index" 988 + checksum = "c0711aaa80e6ba6eb1fa8978f1f46bfcb38ceb2f3f33f3736efbff39dac89f50" 989 + dependencies = [ 990 + "libc 0.1.12", 991 + ] 992 + 993 + [[package]] 994 + name = "khronos_api" 995 + version = "3.1.0" 996 + source = "registry+https://github.com/rust-lang/crates.io-index" 997 + checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 998 + 999 + [[package]] 1000 + name = "lazy_static" 1001 + version = "1.4.0" 1002 + source = "registry+https://github.com/rust-lang/crates.io-index" 1003 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1004 + 1005 + [[package]] 1006 + name = "libadwaita" 1007 + version = "0.4.4" 1008 + source = "registry+https://github.com/rust-lang/crates.io-index" 1009 + checksum = "1ab9c0843f9f23ff25634df2743690c3a1faffe0a190e60c490878517eb81abf" 1010 + dependencies = [ 1011 + "bitflags 1.3.2", 1012 + "gdk-pixbuf", 1013 + "gdk4", 1014 + "gio", 1015 + "glib", 1016 + "gtk4", 1017 + "libadwaita-sys", 1018 + "libc 0.2.147", 1019 + "pango", 1020 + ] 1021 + 1022 + [[package]] 1023 + name = "libadwaita-sys" 1024 + version = "0.4.4" 1025 + source = "registry+https://github.com/rust-lang/crates.io-index" 1026 + checksum = "4231cb2499a9f0c4cdfa4885414b33e39901ddcac61150bc0bb4ff8a57ede404" 1027 + dependencies = [ 1028 + "gdk4-sys", 1029 + "gio-sys", 1030 + "glib-sys", 1031 + "gobject-sys", 1032 + "gtk4-sys", 1033 + "libc 0.2.147", 1034 + "pango-sys", 1035 + "system-deps", 1036 + ] 1037 + 1038 + [[package]] 1039 + name = "libc" 1040 + version = "0.1.12" 1041 + source = "registry+https://github.com/rust-lang/crates.io-index" 1042 + checksum = "e32a70cf75e5846d53a673923498228bbec6a8624708a9ea5645f075d6276122" 1043 + 1044 + [[package]] 1045 + name = "libc" 1046 + version = "0.2.147" 1047 + source = "registry+https://github.com/rust-lang/crates.io-index" 1048 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1049 + 1050 + [[package]] 1051 + name = "libloading" 1052 + version = "0.8.0" 1053 + source = "registry+https://github.com/rust-lang/crates.io-index" 1054 + checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb" 1055 + dependencies = [ 1056 + "cfg-if 1.0.0", 1057 + "windows-sys", 1058 + ] 1059 + 1060 + [[package]] 1061 + name = "libsqlite3-sys" 1062 + version = "0.26.0" 1063 + source = "registry+https://github.com/rust-lang/crates.io-index" 1064 + checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 1065 + dependencies = [ 1066 + "cc", 1067 + "pkg-config", 1068 + "vcpkg", 1069 + ] 1070 + 1071 + [[package]] 1072 + name = "libudev-sys" 1073 + version = "0.1.4" 1074 + source = "registry+https://github.com/rust-lang/crates.io-index" 1075 + checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324" 1076 + dependencies = [ 1077 + "libc 0.2.147", 1078 + "pkg-config", 1079 + ] 1080 + 1081 + [[package]] 1082 + name = "locale_config" 1083 + version = "0.3.0" 1084 + source = "registry+https://github.com/rust-lang/crates.io-index" 1085 + checksum = "08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934" 1086 + dependencies = [ 1087 + "lazy_static", 1088 + "objc", 1089 + "objc-foundation", 1090 + "regex", 1091 + "winapi", 1092 + ] 1093 + 1094 + [[package]] 1095 + name = "log" 1096 + version = "0.4.19" 1097 + source = "registry+https://github.com/rust-lang/crates.io-index" 1098 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1099 + 1100 + [[package]] 1101 + name = "malloc_buf" 1102 + version = "0.0.6" 1103 + source = "registry+https://github.com/rust-lang/crates.io-index" 1104 + checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1105 + dependencies = [ 1106 + "libc 0.2.147", 1107 + ] 1108 + 1109 + [[package]] 1110 + name = "maybe-uninit" 1111 + version = "2.0.0" 1112 + source = "registry+https://github.com/rust-lang/crates.io-index" 1113 + checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" 1114 + 1115 + [[package]] 1116 + name = "memchr" 1117 + version = "2.5.0" 1118 + source = "registry+https://github.com/rust-lang/crates.io-index" 1119 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1120 + 1121 + [[package]] 1122 + name = "memoffset" 1123 + version = "0.7.1" 1124 + source = "registry+https://github.com/rust-lang/crates.io-index" 1125 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1126 + dependencies = [ 1127 + "autocfg", 1128 + ] 1129 + 1130 + [[package]] 1131 + name = "memoffset" 1132 + version = "0.9.0" 1133 + source = "registry+https://github.com/rust-lang/crates.io-index" 1134 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1135 + dependencies = [ 1136 + "autocfg", 1137 + ] 1138 + 1139 + [[package]] 1140 + name = "minidl" 1141 + version = "0.1.5" 1142 + source = "registry+https://github.com/rust-lang/crates.io-index" 1143 + checksum = "87d3d8666e5ed22230c0096edcccf7097905b1e2975869e1b9fe5df40d26d801" 1144 + 1145 + [[package]] 1146 + name = "miniz_oxide" 1147 + version = "0.3.7" 1148 + source = "registry+https://github.com/rust-lang/crates.io-index" 1149 + checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" 1150 + dependencies = [ 1151 + "adler32", 1152 + ] 1153 + 1154 + [[package]] 1155 + name = "missioncenter" 1156 + version = "0.2.5" 1157 + dependencies = [ 1158 + "drm", 1159 + "egl", 1160 + "errno-sys", 1161 + "gbm", 1162 + "gettext-rs", 1163 + "gl", 1164 + "gtk4", 1165 + "lazy_static", 1166 + "libadwaita", 1167 + "libc 0.2.147", 1168 + "libudev-sys", 1169 + "minidl", 1170 + "num_cpus", 1171 + "pathfinder_canvas", 1172 + "pathfinder_color", 1173 + "pathfinder_geometry", 1174 + "pathfinder_gl", 1175 + "pathfinder_gpu", 1176 + "pathfinder_renderer", 1177 + "pathfinder_resources", 1178 + "raw-cpuid", 1179 + "regex", 1180 + "rusqlite", 1181 + "rust-ini", 1182 + "serde", 1183 + "serde_json", 1184 + "sha2", 1185 + "sysinfo", 1186 + "textdistance", 1187 + ] 1188 + 1189 + [[package]] 1190 + name = "nix" 1191 + version = "0.26.2" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 1194 + dependencies = [ 1195 + "bitflags 1.3.2", 1196 + "cfg-if 1.0.0", 1197 + "libc 0.2.147", 1198 + "memoffset 0.7.1", 1199 + "static_assertions", 1200 + ] 1201 + 1202 + [[package]] 1203 + name = "ntapi" 1204 + version = "0.4.1" 1205 + source = "registry+https://github.com/rust-lang/crates.io-index" 1206 + checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 1207 + dependencies = [ 1208 + "winapi", 1209 + ] 1210 + 1211 + [[package]] 1212 + name = "num-integer" 1213 + version = "0.1.45" 1214 + source = "registry+https://github.com/rust-lang/crates.io-index" 1215 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1216 + dependencies = [ 1217 + "autocfg", 1218 + "num-traits", 1219 + ] 1220 + 1221 + [[package]] 1222 + name = "num-iter" 1223 + version = "0.1.43" 1224 + source = "registry+https://github.com/rust-lang/crates.io-index" 1225 + checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1226 + dependencies = [ 1227 + "autocfg", 1228 + "num-integer", 1229 + "num-traits", 1230 + ] 1231 + 1232 + [[package]] 1233 + name = "num-rational" 1234 + version = "0.3.2" 1235 + source = "registry+https://github.com/rust-lang/crates.io-index" 1236 + checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" 1237 + dependencies = [ 1238 + "autocfg", 1239 + "num-integer", 1240 + "num-traits", 1241 + ] 1242 + 1243 + [[package]] 1244 + name = "num-traits" 1245 + version = "0.2.15" 1246 + source = "registry+https://github.com/rust-lang/crates.io-index" 1247 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1248 + dependencies = [ 1249 + "autocfg", 1250 + ] 1251 + 1252 + [[package]] 1253 + name = "num_cpus" 1254 + version = "1.16.0" 1255 + source = "registry+https://github.com/rust-lang/crates.io-index" 1256 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1257 + dependencies = [ 1258 + "hermit-abi", 1259 + "libc 0.2.147", 1260 + ] 1261 + 1262 + [[package]] 1263 + name = "objc" 1264 + version = "0.2.7" 1265 + source = "registry+https://github.com/rust-lang/crates.io-index" 1266 + checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1267 + dependencies = [ 1268 + "malloc_buf", 1269 + ] 1270 + 1271 + [[package]] 1272 + name = "objc-foundation" 1273 + version = "0.1.1" 1274 + source = "registry+https://github.com/rust-lang/crates.io-index" 1275 + checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1276 + dependencies = [ 1277 + "block", 1278 + "objc", 1279 + "objc_id", 1280 + ] 1281 + 1282 + [[package]] 1283 + name = "objc_id" 1284 + version = "0.1.1" 1285 + source = "registry+https://github.com/rust-lang/crates.io-index" 1286 + checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1287 + dependencies = [ 1288 + "objc", 1289 + ] 1290 + 1291 + [[package]] 1292 + name = "once_cell" 1293 + version = "1.18.0" 1294 + source = "registry+https://github.com/rust-lang/crates.io-index" 1295 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1296 + 1297 + [[package]] 1298 + name = "ordered-multimap" 1299 + version = "0.6.0" 1300 + source = "registry+https://github.com/rust-lang/crates.io-index" 1301 + checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e" 1302 + dependencies = [ 1303 + "dlv-list", 1304 + "hashbrown 0.13.2", 1305 + ] 1306 + 1307 + [[package]] 1308 + name = "pango" 1309 + version = "0.17.10" 1310 + source = "registry+https://github.com/rust-lang/crates.io-index" 1311 + checksum = "35be456fc620e61f62dff7ff70fbd54dcbaf0a4b920c0f16de1107c47d921d48" 1312 + dependencies = [ 1313 + "bitflags 1.3.2", 1314 + "gio", 1315 + "glib", 1316 + "libc 0.2.147", 1317 + "once_cell", 1318 + "pango-sys", 1319 + ] 1320 + 1321 + [[package]] 1322 + name = "pango-sys" 1323 + version = "0.17.10" 1324 + source = "registry+https://github.com/rust-lang/crates.io-index" 1325 + checksum = "3da69f9f3850b0d8990d462f8c709561975e95f689c1cdf0fecdebde78b35195" 1326 + dependencies = [ 1327 + "glib-sys", 1328 + "gobject-sys", 1329 + "libc 0.2.147", 1330 + "system-deps", 1331 + ] 1332 + 1333 + [[package]] 1334 + name = "pathfinder_canvas" 1335 + version = "0.5.0" 1336 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1337 + dependencies = [ 1338 + "pathfinder_color", 1339 + "pathfinder_content", 1340 + "pathfinder_geometry", 1341 + "pathfinder_renderer", 1342 + ] 1343 + 1344 + [[package]] 1345 + name = "pathfinder_color" 1346 + version = "0.5.0" 1347 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1348 + dependencies = [ 1349 + "pathfinder_simd", 1350 + ] 1351 + 1352 + [[package]] 1353 + name = "pathfinder_content" 1354 + version = "0.5.0" 1355 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1356 + dependencies = [ 1357 + "arrayvec", 1358 + "bitflags 1.3.2", 1359 + "image", 1360 + "log", 1361 + "pathfinder_color", 1362 + "pathfinder_geometry", 1363 + "pathfinder_simd", 1364 + "smallvec", 1365 + ] 1366 + 1367 + [[package]] 1368 + name = "pathfinder_geometry" 1369 + version = "0.5.1" 1370 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1371 + dependencies = [ 1372 + "log", 1373 + "pathfinder_simd", 1374 + ] 1375 + 1376 + [[package]] 1377 + name = "pathfinder_gl" 1378 + version = "0.5.0" 1379 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1380 + dependencies = [ 1381 + "gl", 1382 + "half", 1383 + "log", 1384 + "pathfinder_geometry", 1385 + "pathfinder_gpu", 1386 + "pathfinder_resources", 1387 + "pathfinder_simd", 1388 + ] 1389 + 1390 + [[package]] 1391 + name = "pathfinder_gpu" 1392 + version = "0.5.0" 1393 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1394 + dependencies = [ 1395 + "bitflags 1.3.2", 1396 + "fxhash", 1397 + "half", 1398 + "image", 1399 + "instant", 1400 + "log", 1401 + "pathfinder_color", 1402 + "pathfinder_geometry", 1403 + "pathfinder_resources", 1404 + "pathfinder_simd", 1405 + ] 1406 + 1407 + [[package]] 1408 + name = "pathfinder_renderer" 1409 + version = "0.5.0" 1410 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1411 + dependencies = [ 1412 + "bitflags 1.3.2", 1413 + "byte-slice-cast", 1414 + "byteorder", 1415 + "crossbeam-channel 0.4.4", 1416 + "fxhash", 1417 + "half", 1418 + "hashbrown 0.7.2", 1419 + "instant", 1420 + "log", 1421 + "pathfinder_color", 1422 + "pathfinder_content", 1423 + "pathfinder_geometry", 1424 + "pathfinder_gpu", 1425 + "pathfinder_resources", 1426 + "pathfinder_simd", 1427 + "pathfinder_ui", 1428 + "rayon", 1429 + "serde", 1430 + "serde_json", 1431 + "smallvec", 1432 + "vec_map", 1433 + ] 1434 + 1435 + [[package]] 1436 + name = "pathfinder_resources" 1437 + version = "0.5.0" 1438 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1439 + 1440 + [[package]] 1441 + name = "pathfinder_simd" 1442 + version = "0.5.1" 1443 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1444 + dependencies = [ 1445 + "rustc_version 0.3.3", 1446 + ] 1447 + 1448 + [[package]] 1449 + name = "pathfinder_ui" 1450 + version = "0.5.0" 1451 + source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1452 + dependencies = [ 1453 + "hashbrown 0.7.2", 1454 + "pathfinder_color", 1455 + "pathfinder_geometry", 1456 + "pathfinder_gpu", 1457 + "pathfinder_resources", 1458 + "pathfinder_simd", 1459 + "serde", 1460 + "serde_derive", 1461 + "serde_json", 1462 + ] 1463 + 1464 + [[package]] 1465 + name = "pest" 1466 + version = "2.7.0" 1467 + source = "registry+https://github.com/rust-lang/crates.io-index" 1468 + checksum = "f73935e4d55e2abf7f130186537b19e7a4abc886a0252380b59248af473a3fc9" 1469 + dependencies = [ 1470 + "thiserror", 1471 + "ucd-trie", 1472 + ] 1473 + 1474 + [[package]] 1475 + name = "pin-project-lite" 1476 + version = "0.2.10" 1477 + source = "registry+https://github.com/rust-lang/crates.io-index" 1478 + checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 1479 + 1480 + [[package]] 1481 + name = "pin-utils" 1482 + version = "0.1.0" 1483 + source = "registry+https://github.com/rust-lang/crates.io-index" 1484 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1485 + 1486 + [[package]] 1487 + name = "pkg-config" 1488 + version = "0.3.27" 1489 + source = "registry+https://github.com/rust-lang/crates.io-index" 1490 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1491 + 1492 + [[package]] 1493 + name = "png" 1494 + version = "0.16.8" 1495 + source = "registry+https://github.com/rust-lang/crates.io-index" 1496 + checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" 1497 + dependencies = [ 1498 + "bitflags 1.3.2", 1499 + "crc32fast", 1500 + "deflate", 1501 + "miniz_oxide", 1502 + ] 1503 + 1504 + [[package]] 1505 + name = "proc-macro-crate" 1506 + version = "1.3.1" 1507 + source = "registry+https://github.com/rust-lang/crates.io-index" 1508 + checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 1509 + dependencies = [ 1510 + "once_cell", 1511 + "toml_edit", 1512 + ] 1513 + 1514 + [[package]] 1515 + name = "proc-macro-error" 1516 + version = "1.0.4" 1517 + source = "registry+https://github.com/rust-lang/crates.io-index" 1518 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1519 + dependencies = [ 1520 + "proc-macro-error-attr", 1521 + "proc-macro2", 1522 + "quote", 1523 + "syn 1.0.109", 1524 + "version_check", 1525 + ] 1526 + 1527 + [[package]] 1528 + name = "proc-macro-error-attr" 1529 + version = "1.0.4" 1530 + source = "registry+https://github.com/rust-lang/crates.io-index" 1531 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1532 + dependencies = [ 1533 + "proc-macro2", 1534 + "quote", 1535 + "version_check", 1536 + ] 1537 + 1538 + [[package]] 1539 + name = "proc-macro-hack" 1540 + version = "0.5.20+deprecated" 1541 + source = "registry+https://github.com/rust-lang/crates.io-index" 1542 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 1543 + 1544 + [[package]] 1545 + name = "proc-macro2" 1546 + version = "1.0.63" 1547 + source = "registry+https://github.com/rust-lang/crates.io-index" 1548 + checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb" 1549 + dependencies = [ 1550 + "unicode-ident", 1551 + ] 1552 + 1553 + [[package]] 1554 + name = "quick-xml" 1555 + version = "0.28.2" 1556 + source = "registry+https://github.com/rust-lang/crates.io-index" 1557 + checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 1558 + dependencies = [ 1559 + "memchr", 1560 + ] 1561 + 1562 + [[package]] 1563 + name = "quote" 1564 + version = "1.0.29" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" 1567 + dependencies = [ 1568 + "proc-macro2", 1569 + ] 1570 + 1571 + [[package]] 1572 + name = "raw-cpuid" 1573 + version = "11.0.1" 1574 + source = "registry+https://github.com/rust-lang/crates.io-index" 1575 + checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1" 1576 + dependencies = [ 1577 + "bitflags 2.3.3", 1578 + ] 1579 + 1580 + [[package]] 1581 + name = "rayon" 1582 + version = "1.7.0" 1583 + source = "registry+https://github.com/rust-lang/crates.io-index" 1584 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 1585 + dependencies = [ 1586 + "either", 1587 + "rayon-core", 1588 + ] 1589 + 1590 + [[package]] 1591 + name = "rayon-core" 1592 + version = "1.11.0" 1593 + source = "registry+https://github.com/rust-lang/crates.io-index" 1594 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 1595 + dependencies = [ 1596 + "crossbeam-channel 0.5.8", 1597 + "crossbeam-deque", 1598 + "crossbeam-utils 0.8.16", 1599 + "num_cpus", 1600 + ] 1601 + 1602 + [[package]] 1603 + name = "regex" 1604 + version = "1.9.1" 1605 + source = "registry+https://github.com/rust-lang/crates.io-index" 1606 + checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" 1607 + dependencies = [ 1608 + "aho-corasick", 1609 + "memchr", 1610 + "regex-automata", 1611 + "regex-syntax", 1612 + ] 1613 + 1614 + [[package]] 1615 + name = "regex-automata" 1616 + version = "0.3.2" 1617 + source = "registry+https://github.com/rust-lang/crates.io-index" 1618 + checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf" 1619 + dependencies = [ 1620 + "aho-corasick", 1621 + "memchr", 1622 + "regex-syntax", 1623 + ] 1624 + 1625 + [[package]] 1626 + name = "regex-syntax" 1627 + version = "0.7.3" 1628 + source = "registry+https://github.com/rust-lang/crates.io-index" 1629 + checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846" 1630 + 1631 + [[package]] 1632 + name = "rusqlite" 1633 + version = "0.29.0" 1634 + source = "registry+https://github.com/rust-lang/crates.io-index" 1635 + checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" 1636 + dependencies = [ 1637 + "bitflags 2.3.3", 1638 + "fallible-iterator", 1639 + "fallible-streaming-iterator", 1640 + "hashlink", 1641 + "libsqlite3-sys", 1642 + "smallvec", 1643 + ] 1644 + 1645 + [[package]] 1646 + name = "rust-ini" 1647 + version = "0.19.0" 1648 + source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091" 1650 + dependencies = [ 1651 + "cfg-if 1.0.0", 1652 + "ordered-multimap", 1653 + ] 1654 + 1655 + [[package]] 1656 + name = "rustc_version" 1657 + version = "0.3.3" 1658 + source = "registry+https://github.com/rust-lang/crates.io-index" 1659 + checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 1660 + dependencies = [ 1661 + "semver 0.11.0", 1662 + ] 1663 + 1664 + [[package]] 1665 + name = "rustc_version" 1666 + version = "0.4.0" 1667 + source = "registry+https://github.com/rust-lang/crates.io-index" 1668 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1669 + dependencies = [ 1670 + "semver 1.0.17", 1671 + ] 1672 + 1673 + [[package]] 1674 + name = "ryu" 1675 + version = "1.0.14" 1676 + source = "registry+https://github.com/rust-lang/crates.io-index" 1677 + checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9" 1678 + 1679 + [[package]] 1680 + name = "scoped-tls" 1681 + version = "1.0.1" 1682 + source = "registry+https://github.com/rust-lang/crates.io-index" 1683 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1684 + 1685 + [[package]] 1686 + name = "scopeguard" 1687 + version = "1.1.0" 1688 + source = "registry+https://github.com/rust-lang/crates.io-index" 1689 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1690 + 1691 + [[package]] 1692 + name = "semver" 1693 + version = "0.11.0" 1694 + source = "registry+https://github.com/rust-lang/crates.io-index" 1695 + checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 1696 + dependencies = [ 1697 + "semver-parser", 1698 + ] 1699 + 1700 + [[package]] 1701 + name = "semver" 1702 + version = "1.0.17" 1703 + source = "registry+https://github.com/rust-lang/crates.io-index" 1704 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 1705 + 1706 + [[package]] 1707 + name = "semver-parser" 1708 + version = "0.10.2" 1709 + source = "registry+https://github.com/rust-lang/crates.io-index" 1710 + checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 1711 + dependencies = [ 1712 + "pest", 1713 + ] 1714 + 1715 + [[package]] 1716 + name = "serde" 1717 + version = "1.0.167" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "7daf513456463b42aa1d94cff7e0c24d682b429f020b9afa4f5ba5c40a22b237" 1720 + dependencies = [ 1721 + "serde_derive", 1722 + ] 1723 + 1724 + [[package]] 1725 + name = "serde_derive" 1726 + version = "1.0.167" 1727 + source = "registry+https://github.com/rust-lang/crates.io-index" 1728 + checksum = "b69b106b68bc8054f0e974e70d19984040f8a5cf9215ca82626ea4853f82c4b9" 1729 + dependencies = [ 1730 + "proc-macro2", 1731 + "quote", 1732 + "syn 2.0.23", 1733 + ] 1734 + 1735 + [[package]] 1736 + name = "serde_json" 1737 + version = "1.0.100" 1738 + source = "registry+https://github.com/rust-lang/crates.io-index" 1739 + checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c" 1740 + dependencies = [ 1741 + "itoa", 1742 + "ryu", 1743 + "serde", 1744 + ] 1745 + 1746 + [[package]] 1747 + name = "serde_spanned" 1748 + version = "0.6.3" 1749 + source = "registry+https://github.com/rust-lang/crates.io-index" 1750 + checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 1751 + dependencies = [ 1752 + "serde", 1753 + ] 1754 + 1755 + [[package]] 1756 + name = "sha2" 1757 + version = "0.10.7" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 1760 + dependencies = [ 1761 + "cfg-if 1.0.0", 1762 + "cpufeatures", 1763 + "digest", 1764 + ] 1765 + 1766 + [[package]] 1767 + name = "slab" 1768 + version = "0.4.8" 1769 + source = "registry+https://github.com/rust-lang/crates.io-index" 1770 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1771 + dependencies = [ 1772 + "autocfg", 1773 + ] 1774 + 1775 + [[package]] 1776 + name = "smallvec" 1777 + version = "1.11.0" 1778 + source = "registry+https://github.com/rust-lang/crates.io-index" 1779 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 1780 + 1781 + [[package]] 1782 + name = "static_assertions" 1783 + version = "1.1.0" 1784 + source = "registry+https://github.com/rust-lang/crates.io-index" 1785 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1786 + 1787 + [[package]] 1788 + name = "syn" 1789 + version = "1.0.109" 1790 + source = "registry+https://github.com/rust-lang/crates.io-index" 1791 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1792 + dependencies = [ 1793 + "proc-macro2", 1794 + "quote", 1795 + "unicode-ident", 1796 + ] 1797 + 1798 + [[package]] 1799 + name = "syn" 1800 + version = "2.0.23" 1801 + source = "registry+https://github.com/rust-lang/crates.io-index" 1802 + checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737" 1803 + dependencies = [ 1804 + "proc-macro2", 1805 + "quote", 1806 + "unicode-ident", 1807 + ] 1808 + 1809 + [[package]] 1810 + name = "sysinfo" 1811 + version = "0.29.4" 1812 + source = "registry+https://github.com/rust-lang/crates.io-index" 1813 + checksum = "751e810399bba86e9326f5762b7f32ac5a085542df78da6a78d94e07d14d7c11" 1814 + dependencies = [ 1815 + "cfg-if 1.0.0", 1816 + "core-foundation-sys", 1817 + "libc 0.2.147", 1818 + "ntapi", 1819 + "once_cell", 1820 + "winapi", 1821 + ] 1822 + 1823 + [[package]] 1824 + name = "system-deps" 1825 + version = "6.1.1" 1826 + source = "registry+https://github.com/rust-lang/crates.io-index" 1827 + checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" 1828 + dependencies = [ 1829 + "cfg-expr", 1830 + "heck", 1831 + "pkg-config", 1832 + "toml", 1833 + "version-compare", 1834 + ] 1835 + 1836 + [[package]] 1837 + name = "target-lexicon" 1838 + version = "0.12.8" 1839 + source = "registry+https://github.com/rust-lang/crates.io-index" 1840 + checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac" 1841 + 1842 + [[package]] 1843 + name = "temp-dir" 1844 + version = "0.1.11" 1845 + source = "registry+https://github.com/rust-lang/crates.io-index" 1846 + checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab" 1847 + 1848 + [[package]] 1849 + name = "textdistance" 1850 + version = "1.0.2" 1851 + source = "registry+https://github.com/rust-lang/crates.io-index" 1852 + checksum = "d321c8576c2b47e43953e9cce236550d4cd6af0a6ce518fe084340082ca6037b" 1853 + 1854 + [[package]] 1855 + name = "thiserror" 1856 + version = "1.0.43" 1857 + source = "registry+https://github.com/rust-lang/crates.io-index" 1858 + checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42" 1859 + dependencies = [ 1860 + "thiserror-impl", 1861 + ] 1862 + 1863 + [[package]] 1864 + name = "thiserror-impl" 1865 + version = "1.0.43" 1866 + source = "registry+https://github.com/rust-lang/crates.io-index" 1867 + checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f" 1868 + dependencies = [ 1869 + "proc-macro2", 1870 + "quote", 1871 + "syn 2.0.23", 1872 + ] 1873 + 1874 + [[package]] 1875 + name = "tiny-keccak" 1876 + version = "2.0.2" 1877 + source = "registry+https://github.com/rust-lang/crates.io-index" 1878 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 1879 + dependencies = [ 1880 + "crunchy", 1881 + ] 1882 + 1883 + [[package]] 1884 + name = "toml" 1885 + version = "0.7.6" 1886 + source = "registry+https://github.com/rust-lang/crates.io-index" 1887 + checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 1888 + dependencies = [ 1889 + "serde", 1890 + "serde_spanned", 1891 + "toml_datetime", 1892 + "toml_edit", 1893 + ] 1894 + 1895 + [[package]] 1896 + name = "toml_datetime" 1897 + version = "0.6.3" 1898 + source = "registry+https://github.com/rust-lang/crates.io-index" 1899 + checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 1900 + dependencies = [ 1901 + "serde", 1902 + ] 1903 + 1904 + [[package]] 1905 + name = "toml_edit" 1906 + version = "0.19.12" 1907 + source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78" 1909 + dependencies = [ 1910 + "indexmap", 1911 + "serde", 1912 + "serde_spanned", 1913 + "toml_datetime", 1914 + "winnow", 1915 + ] 1916 + 1917 + [[package]] 1918 + name = "typenum" 1919 + version = "1.16.0" 1920 + source = "registry+https://github.com/rust-lang/crates.io-index" 1921 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 1922 + 1923 + [[package]] 1924 + name = "ucd-trie" 1925 + version = "0.1.6" 1926 + source = "registry+https://github.com/rust-lang/crates.io-index" 1927 + checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 1928 + 1929 + [[package]] 1930 + name = "unicode-ident" 1931 + version = "1.0.10" 1932 + source = "registry+https://github.com/rust-lang/crates.io-index" 1933 + checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73" 1934 + 1935 + [[package]] 1936 + name = "vcpkg" 1937 + version = "0.2.15" 1938 + source = "registry+https://github.com/rust-lang/crates.io-index" 1939 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1940 + 1941 + [[package]] 1942 + name = "vec_map" 1943 + version = "0.8.2" 1944 + source = "registry+https://github.com/rust-lang/crates.io-index" 1945 + checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 1946 + 1947 + [[package]] 1948 + name = "version-compare" 1949 + version = "0.1.1" 1950 + source = "registry+https://github.com/rust-lang/crates.io-index" 1951 + checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 1952 + 1953 + [[package]] 1954 + name = "version_check" 1955 + version = "0.9.4" 1956 + source = "registry+https://github.com/rust-lang/crates.io-index" 1957 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1958 + 1959 + [[package]] 1960 + name = "wasi" 1961 + version = "0.11.0+wasi-snapshot-preview1" 1962 + source = "registry+https://github.com/rust-lang/crates.io-index" 1963 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1964 + 1965 + [[package]] 1966 + name = "wasm-bindgen" 1967 + version = "0.2.87" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 1970 + dependencies = [ 1971 + "cfg-if 1.0.0", 1972 + "wasm-bindgen-macro", 1973 + ] 1974 + 1975 + [[package]] 1976 + name = "wasm-bindgen-backend" 1977 + version = "0.2.87" 1978 + source = "registry+https://github.com/rust-lang/crates.io-index" 1979 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 1980 + dependencies = [ 1981 + "bumpalo", 1982 + "log", 1983 + "once_cell", 1984 + "proc-macro2", 1985 + "quote", 1986 + "syn 2.0.23", 1987 + "wasm-bindgen-shared", 1988 + ] 1989 + 1990 + [[package]] 1991 + name = "wasm-bindgen-macro" 1992 + version = "0.2.87" 1993 + source = "registry+https://github.com/rust-lang/crates.io-index" 1994 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 1995 + dependencies = [ 1996 + "quote", 1997 + "wasm-bindgen-macro-support", 1998 + ] 1999 + 2000 + [[package]] 2001 + name = "wasm-bindgen-macro-support" 2002 + version = "0.2.87" 2003 + source = "registry+https://github.com/rust-lang/crates.io-index" 2004 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 2005 + dependencies = [ 2006 + "proc-macro2", 2007 + "quote", 2008 + "syn 2.0.23", 2009 + "wasm-bindgen-backend", 2010 + "wasm-bindgen-shared", 2011 + ] 2012 + 2013 + [[package]] 2014 + name = "wasm-bindgen-shared" 2015 + version = "0.2.87" 2016 + source = "registry+https://github.com/rust-lang/crates.io-index" 2017 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 2018 + 2019 + [[package]] 2020 + name = "wayland-backend" 2021 + version = "0.1.2" 2022 + source = "registry+https://github.com/rust-lang/crates.io-index" 2023 + checksum = "41b48e27457e8da3b2260ac60d0a94512f5cba36448679f3747c0865b7893ed8" 2024 + dependencies = [ 2025 + "cc", 2026 + "downcast-rs", 2027 + "io-lifetimes", 2028 + "nix", 2029 + "scoped-tls", 2030 + "smallvec", 2031 + "wayland-sys", 2032 + ] 2033 + 2034 + [[package]] 2035 + name = "wayland-scanner" 2036 + version = "0.30.1" 2037 + source = "registry+https://github.com/rust-lang/crates.io-index" 2038 + checksum = "b9b873b257fbc32ec909c0eb80dea312076a67014e65e245f5eb69a6b8ab330e" 2039 + dependencies = [ 2040 + "proc-macro2", 2041 + "quick-xml", 2042 + "quote", 2043 + ] 2044 + 2045 + [[package]] 2046 + name = "wayland-server" 2047 + version = "0.30.1" 2048 + source = "registry+https://github.com/rust-lang/crates.io-index" 2049 + checksum = "9c43c28096fe1d49fff7d1079404fdd0f669cd1a5b00c615bdfe71bb1884d23a" 2050 + dependencies = [ 2051 + "bitflags 1.3.2", 2052 + "downcast-rs", 2053 + "io-lifetimes", 2054 + "nix", 2055 + "wayland-backend", 2056 + "wayland-scanner", 2057 + ] 2058 + 2059 + [[package]] 2060 + name = "wayland-sys" 2061 + version = "0.30.1" 2062 + source = "registry+https://github.com/rust-lang/crates.io-index" 2063 + checksum = "96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06" 2064 + dependencies = [ 2065 + "dlib", 2066 + "libc 0.2.147", 2067 + "log", 2068 + "memoffset 0.7.1", 2069 + "pkg-config", 2070 + ] 2071 + 2072 + [[package]] 2073 + name = "web-sys" 2074 + version = "0.3.64" 2075 + source = "registry+https://github.com/rust-lang/crates.io-index" 2076 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 2077 + dependencies = [ 2078 + "js-sys", 2079 + "wasm-bindgen", 2080 + ] 2081 + 2082 + [[package]] 2083 + name = "winapi" 2084 + version = "0.3.9" 2085 + source = "registry+https://github.com/rust-lang/crates.io-index" 2086 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2087 + dependencies = [ 2088 + "winapi-i686-pc-windows-gnu", 2089 + "winapi-x86_64-pc-windows-gnu", 2090 + ] 2091 + 2092 + [[package]] 2093 + name = "winapi-i686-pc-windows-gnu" 2094 + version = "0.4.0" 2095 + source = "registry+https://github.com/rust-lang/crates.io-index" 2096 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2097 + 2098 + [[package]] 2099 + name = "winapi-x86_64-pc-windows-gnu" 2100 + version = "0.4.0" 2101 + source = "registry+https://github.com/rust-lang/crates.io-index" 2102 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2103 + 2104 + [[package]] 2105 + name = "windows-sys" 2106 + version = "0.48.0" 2107 + source = "registry+https://github.com/rust-lang/crates.io-index" 2108 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2109 + dependencies = [ 2110 + "windows-targets", 2111 + ] 2112 + 2113 + [[package]] 2114 + name = "windows-targets" 2115 + version = "0.48.1" 2116 + source = "registry+https://github.com/rust-lang/crates.io-index" 2117 + checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2118 + dependencies = [ 2119 + "windows_aarch64_gnullvm", 2120 + "windows_aarch64_msvc", 2121 + "windows_i686_gnu", 2122 + "windows_i686_msvc", 2123 + "windows_x86_64_gnu", 2124 + "windows_x86_64_gnullvm", 2125 + "windows_x86_64_msvc", 2126 + ] 2127 + 2128 + [[package]] 2129 + name = "windows_aarch64_gnullvm" 2130 + version = "0.48.0" 2131 + source = "registry+https://github.com/rust-lang/crates.io-index" 2132 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2133 + 2134 + [[package]] 2135 + name = "windows_aarch64_msvc" 2136 + version = "0.48.0" 2137 + source = "registry+https://github.com/rust-lang/crates.io-index" 2138 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2139 + 2140 + [[package]] 2141 + name = "windows_i686_gnu" 2142 + version = "0.48.0" 2143 + source = "registry+https://github.com/rust-lang/crates.io-index" 2144 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2145 + 2146 + [[package]] 2147 + name = "windows_i686_msvc" 2148 + version = "0.48.0" 2149 + source = "registry+https://github.com/rust-lang/crates.io-index" 2150 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2151 + 2152 + [[package]] 2153 + name = "windows_x86_64_gnu" 2154 + version = "0.48.0" 2155 + source = "registry+https://github.com/rust-lang/crates.io-index" 2156 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2157 + 2158 + [[package]] 2159 + name = "windows_x86_64_gnullvm" 2160 + version = "0.48.0" 2161 + source = "registry+https://github.com/rust-lang/crates.io-index" 2162 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2163 + 2164 + [[package]] 2165 + name = "windows_x86_64_msvc" 2166 + version = "0.48.0" 2167 + source = "registry+https://github.com/rust-lang/crates.io-index" 2168 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2169 + 2170 + [[package]] 2171 + name = "winnow" 2172 + version = "0.4.9" 2173 + source = "registry+https://github.com/rust-lang/crates.io-index" 2174 + checksum = "81a2094c43cc94775293eaa0e499fbc30048a6d824ac82c0351a8c0bf9112529" 2175 + dependencies = [ 2176 + "memchr", 2177 + ] 2178 + 2179 + [[package]] 2180 + name = "xml-rs" 2181 + version = "0.8.15" 2182 + source = "registry+https://github.com/rust-lang/crates.io-index" 2183 + checksum = "5a56c84a8ccd4258aed21c92f70c0f6dea75356b6892ae27c24139da456f9336"
+124
pkgs/applications/misc/mission-center/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + , fetchFromGitHub 5 + , cargo 6 + , libxml2 7 + , meson 8 + , ninja 9 + , pkg-config 10 + , python311 11 + , rustPlatform 12 + , symlinkJoin 13 + , rustc 14 + , wrapGAppsHook4 15 + , appstream-glib 16 + , blueprint-compiler 17 + , cairo 18 + , cmake 19 + , desktop-file-utils 20 + , dmidecode 21 + , gdk-pixbuf 22 + , gettext 23 + , glib 24 + , graphene 25 + , gtk4 26 + , libadwaita 27 + , libdrm 28 + , mesa 29 + , pango 30 + , sqlite 31 + , udev 32 + , wayland 33 + }: 34 + 35 + let 36 + nvtop = fetchFromGitHub { 37 + owner = "Syllo"; 38 + repo = "nvtop"; 39 + rev = "9a8458b541a195a0c5cadafb66e240962c852b39"; 40 + hash = "sha256-iFBZbESRTuwgLSUuHnjcXwmpvdeQrd3oUJd7BRyxu84="; 41 + }; 42 + in 43 + stdenv.mkDerivation rec { 44 + pname = "mission-center"; 45 + version = "0.2.5"; 46 + 47 + src = fetchFromGitLab { 48 + owner = "mission-center-devs"; 49 + repo = "mission-center"; 50 + rev = "v${version}"; 51 + hash = "sha256-f6GkwF+3USl60pUxxTu90KzdsfxBiAkiqnBSTTmC2Lc="; 52 + }; 53 + 54 + cargoDeps = symlinkJoin { 55 + name = "cargo-vendor-dir"; 56 + paths = [ 57 + (rustPlatform.importCargoLock { 58 + lockFile = ./Cargo.lock; 59 + outputHashes = { 60 + "pathfinder_canvas-0.5.0" = "sha256-k2Sj69hWA0UzRfv91aG1TAygVIuOX3gmipcDbuZxxc8="; 61 + }; 62 + }) 63 + (rustPlatform.importCargoLock { 64 + lockFile = ./proxy-Cargo.lock; 65 + }) 66 + ]; 67 + }; 68 + 69 + 70 + nativeBuildInputs = [ 71 + blueprint-compiler 72 + cargo 73 + libxml2 74 + meson 75 + ninja 76 + pkg-config 77 + python311 78 + rustPlatform.cargoSetupHook 79 + rustc 80 + wrapGAppsHook4 81 + ]; 82 + 83 + buildInputs = [ 84 + appstream-glib 85 + blueprint-compiler 86 + cairo 87 + cmake 88 + desktop-file-utils 89 + dmidecode 90 + gdk-pixbuf 91 + gettext 92 + glib 93 + graphene 94 + gtk4 95 + libadwaita 96 + libdrm 97 + mesa 98 + pango 99 + sqlite 100 + udev 101 + wayland 102 + ]; 103 + 104 + postPatch = '' 105 + echo -e "[wrap-file]\ndirectory = nvtop-src\n[provide]\ndependency_names = nvtop" > ./subprojects/nvtop.wrap 106 + cp -r --no-preserve=mode,ownership "${nvtop}" ./subprojects/nvtop-src 107 + cd ./subprojects/nvtop-src 108 + mkdir -p include/libdrm 109 + for patchfile in $(ls ../packagefiles/nvtop*.patch); do 110 + patch -p1 < $patchfile 111 + done 112 + cd ../.. 113 + patchShebangs data/hwdb/generate_hwdb.py 114 + sed -i 's|cmd.arg("dmidecode")|cmd.arg("${dmidecode}/bin/dmidecode")|g' src/sys_info_v2/mem_info.rs 115 + ''; 116 + 117 + meta = with lib; { 118 + description = "Monitor your CPU, Memory, Disk, Network and GPU usage"; 119 + homepage = "https://gitlab.com/mission-center-devs/mission-center"; 120 + license = licenses.gpl3Only; 121 + maintainers = with maintainers; [ GaetanLepage ]; 122 + platforms = platforms.linux; 123 + }; 124 + }
+522
pkgs/applications/misc/mission-center/proxy-Cargo.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "anstream" 7 + version = "0.3.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 10 + dependencies = [ 11 + "anstyle", 12 + "anstyle-parse", 13 + "anstyle-query", 14 + "anstyle-wincon", 15 + "colorchoice", 16 + "is-terminal", 17 + "utf8parse", 18 + ] 19 + 20 + [[package]] 21 + name = "anstyle" 22 + version = "1.0.0" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 25 + 26 + [[package]] 27 + name = "anstyle-parse" 28 + version = "0.2.0" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 31 + dependencies = [ 32 + "utf8parse", 33 + ] 34 + 35 + [[package]] 36 + name = "anstyle-query" 37 + version = "1.0.0" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 40 + dependencies = [ 41 + "windows-sys", 42 + ] 43 + 44 + [[package]] 45 + name = "anstyle-wincon" 46 + version = "1.0.1" 47 + source = "registry+https://github.com/rust-lang/crates.io-index" 48 + checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 49 + dependencies = [ 50 + "anstyle", 51 + "windows-sys", 52 + ] 53 + 54 + [[package]] 55 + name = "bitflags" 56 + version = "1.3.2" 57 + source = "registry+https://github.com/rust-lang/crates.io-index" 58 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 59 + 60 + [[package]] 61 + name = "block-buffer" 62 + version = "0.10.4" 63 + source = "registry+https://github.com/rust-lang/crates.io-index" 64 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 65 + dependencies = [ 66 + "generic-array", 67 + ] 68 + 69 + [[package]] 70 + name = "cc" 71 + version = "1.0.79" 72 + source = "registry+https://github.com/rust-lang/crates.io-index" 73 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 74 + 75 + [[package]] 76 + name = "cfg-if" 77 + version = "1.0.0" 78 + source = "registry+https://github.com/rust-lang/crates.io-index" 79 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 80 + 81 + [[package]] 82 + name = "clap" 83 + version = "4.3.4" 84 + source = "registry+https://github.com/rust-lang/crates.io-index" 85 + checksum = "80672091db20273a15cf9fdd4e47ed43b5091ec9841bf4c6145c9dfbbcae09ed" 86 + dependencies = [ 87 + "clap_builder", 88 + "clap_derive", 89 + "once_cell", 90 + ] 91 + 92 + [[package]] 93 + name = "clap_builder" 94 + version = "4.3.4" 95 + source = "registry+https://github.com/rust-lang/crates.io-index" 96 + checksum = "c1458a1df40e1e2afebb7ab60ce55c1fa8f431146205aa5f4887e0b111c27636" 97 + dependencies = [ 98 + "anstream", 99 + "anstyle", 100 + "bitflags", 101 + "clap_lex", 102 + "strsim", 103 + ] 104 + 105 + [[package]] 106 + name = "clap_derive" 107 + version = "4.3.2" 108 + source = "registry+https://github.com/rust-lang/crates.io-index" 109 + checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f" 110 + dependencies = [ 111 + "heck", 112 + "proc-macro2", 113 + "quote", 114 + "syn", 115 + ] 116 + 117 + [[package]] 118 + name = "clap_lex" 119 + version = "0.5.0" 120 + source = "registry+https://github.com/rust-lang/crates.io-index" 121 + checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 122 + 123 + [[package]] 124 + name = "colorchoice" 125 + version = "1.0.0" 126 + source = "registry+https://github.com/rust-lang/crates.io-index" 127 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 128 + 129 + [[package]] 130 + name = "const-random" 131 + version = "0.1.15" 132 + source = "registry+https://github.com/rust-lang/crates.io-index" 133 + checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 134 + dependencies = [ 135 + "const-random-macro", 136 + "proc-macro-hack", 137 + ] 138 + 139 + [[package]] 140 + name = "const-random-macro" 141 + version = "0.1.15" 142 + source = "registry+https://github.com/rust-lang/crates.io-index" 143 + checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 144 + dependencies = [ 145 + "getrandom", 146 + "once_cell", 147 + "proc-macro-hack", 148 + "tiny-keccak", 149 + ] 150 + 151 + [[package]] 152 + name = "cpufeatures" 153 + version = "0.2.9" 154 + source = "registry+https://github.com/rust-lang/crates.io-index" 155 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 156 + dependencies = [ 157 + "libc", 158 + ] 159 + 160 + [[package]] 161 + name = "crunchy" 162 + version = "0.2.2" 163 + source = "registry+https://github.com/rust-lang/crates.io-index" 164 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 165 + 166 + [[package]] 167 + name = "crypto-common" 168 + version = "0.1.6" 169 + source = "registry+https://github.com/rust-lang/crates.io-index" 170 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 171 + dependencies = [ 172 + "generic-array", 173 + "typenum", 174 + ] 175 + 176 + [[package]] 177 + name = "digest" 178 + version = "0.10.7" 179 + source = "registry+https://github.com/rust-lang/crates.io-index" 180 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 181 + dependencies = [ 182 + "block-buffer", 183 + "crypto-common", 184 + ] 185 + 186 + [[package]] 187 + name = "dlv-list" 188 + version = "0.5.0" 189 + source = "registry+https://github.com/rust-lang/crates.io-index" 190 + checksum = "d529fd73d344663edfd598ccb3f344e46034db51ebd103518eae34338248ad73" 191 + dependencies = [ 192 + "const-random", 193 + ] 194 + 195 + [[package]] 196 + name = "errno" 197 + version = "0.3.1" 198 + source = "registry+https://github.com/rust-lang/crates.io-index" 199 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 200 + dependencies = [ 201 + "errno-dragonfly", 202 + "libc", 203 + "windows-sys", 204 + ] 205 + 206 + [[package]] 207 + name = "errno-dragonfly" 208 + version = "0.1.2" 209 + source = "registry+https://github.com/rust-lang/crates.io-index" 210 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 211 + dependencies = [ 212 + "cc", 213 + "libc", 214 + ] 215 + 216 + [[package]] 217 + name = "generic-array" 218 + version = "0.14.7" 219 + source = "registry+https://github.com/rust-lang/crates.io-index" 220 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 221 + dependencies = [ 222 + "typenum", 223 + "version_check", 224 + ] 225 + 226 + [[package]] 227 + name = "getrandom" 228 + version = "0.2.10" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 231 + dependencies = [ 232 + "cfg-if", 233 + "libc", 234 + "wasi", 235 + ] 236 + 237 + [[package]] 238 + name = "hashbrown" 239 + version = "0.13.2" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 242 + 243 + [[package]] 244 + name = "heck" 245 + version = "0.4.1" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 248 + 249 + [[package]] 250 + name = "hermit-abi" 251 + version = "0.2.6" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 254 + dependencies = [ 255 + "libc", 256 + ] 257 + 258 + [[package]] 259 + name = "hermit-abi" 260 + version = "0.3.1" 261 + source = "registry+https://github.com/rust-lang/crates.io-index" 262 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 263 + 264 + [[package]] 265 + name = "io-lifetimes" 266 + version = "1.0.11" 267 + source = "registry+https://github.com/rust-lang/crates.io-index" 268 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 269 + dependencies = [ 270 + "hermit-abi 0.3.1", 271 + "libc", 272 + "windows-sys", 273 + ] 274 + 275 + [[package]] 276 + name = "is-terminal" 277 + version = "0.4.7" 278 + source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 280 + dependencies = [ 281 + "hermit-abi 0.3.1", 282 + "io-lifetimes", 283 + "rustix", 284 + "windows-sys", 285 + ] 286 + 287 + [[package]] 288 + name = "lazy_static" 289 + version = "1.4.0" 290 + source = "registry+https://github.com/rust-lang/crates.io-index" 291 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 292 + 293 + [[package]] 294 + name = "libc" 295 + version = "0.2.146" 296 + source = "registry+https://github.com/rust-lang/crates.io-index" 297 + checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 298 + 299 + [[package]] 300 + name = "linux-raw-sys" 301 + version = "0.3.8" 302 + source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 304 + 305 + [[package]] 306 + name = "num_cpus" 307 + version = "1.15.0" 308 + source = "registry+https://github.com/rust-lang/crates.io-index" 309 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 310 + dependencies = [ 311 + "hermit-abi 0.2.6", 312 + "libc", 313 + ] 314 + 315 + [[package]] 316 + name = "once_cell" 317 + version = "1.18.0" 318 + source = "registry+https://github.com/rust-lang/crates.io-index" 319 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 320 + 321 + [[package]] 322 + name = "ordered-multimap" 323 + version = "0.6.0" 324 + source = "registry+https://github.com/rust-lang/crates.io-index" 325 + checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e" 326 + dependencies = [ 327 + "dlv-list", 328 + "hashbrown", 329 + ] 330 + 331 + [[package]] 332 + name = "proc-macro-hack" 333 + version = "0.5.20+deprecated" 334 + source = "registry+https://github.com/rust-lang/crates.io-index" 335 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 336 + 337 + [[package]] 338 + name = "proc-macro2" 339 + version = "1.0.60" 340 + source = "registry+https://github.com/rust-lang/crates.io-index" 341 + checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406" 342 + dependencies = [ 343 + "unicode-ident", 344 + ] 345 + 346 + [[package]] 347 + name = "proxy" 348 + version = "0.2.5" 349 + dependencies = [ 350 + "clap", 351 + "lazy_static", 352 + "libc", 353 + "num_cpus", 354 + "rust-ini", 355 + "sha2", 356 + ] 357 + 358 + [[package]] 359 + name = "quote" 360 + version = "1.0.28" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 363 + dependencies = [ 364 + "proc-macro2", 365 + ] 366 + 367 + [[package]] 368 + name = "rust-ini" 369 + version = "0.19.0" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091" 372 + dependencies = [ 373 + "cfg-if", 374 + "ordered-multimap", 375 + ] 376 + 377 + [[package]] 378 + name = "rustix" 379 + version = "0.37.20" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" 382 + dependencies = [ 383 + "bitflags", 384 + "errno", 385 + "io-lifetimes", 386 + "libc", 387 + "linux-raw-sys", 388 + "windows-sys", 389 + ] 390 + 391 + [[package]] 392 + name = "sha2" 393 + version = "0.10.7" 394 + source = "registry+https://github.com/rust-lang/crates.io-index" 395 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 396 + dependencies = [ 397 + "cfg-if", 398 + "cpufeatures", 399 + "digest", 400 + ] 401 + 402 + [[package]] 403 + name = "strsim" 404 + version = "0.10.0" 405 + source = "registry+https://github.com/rust-lang/crates.io-index" 406 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 407 + 408 + [[package]] 409 + name = "syn" 410 + version = "2.0.18" 411 + source = "registry+https://github.com/rust-lang/crates.io-index" 412 + checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 413 + dependencies = [ 414 + "proc-macro2", 415 + "quote", 416 + "unicode-ident", 417 + ] 418 + 419 + [[package]] 420 + name = "tiny-keccak" 421 + version = "2.0.2" 422 + source = "registry+https://github.com/rust-lang/crates.io-index" 423 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 424 + dependencies = [ 425 + "crunchy", 426 + ] 427 + 428 + [[package]] 429 + name = "typenum" 430 + version = "1.16.0" 431 + source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 433 + 434 + [[package]] 435 + name = "unicode-ident" 436 + version = "1.0.9" 437 + source = "registry+https://github.com/rust-lang/crates.io-index" 438 + checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 439 + 440 + [[package]] 441 + name = "utf8parse" 442 + version = "0.2.1" 443 + source = "registry+https://github.com/rust-lang/crates.io-index" 444 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 445 + 446 + [[package]] 447 + name = "version_check" 448 + version = "0.9.4" 449 + source = "registry+https://github.com/rust-lang/crates.io-index" 450 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 451 + 452 + [[package]] 453 + name = "wasi" 454 + version = "0.11.0+wasi-snapshot-preview1" 455 + source = "registry+https://github.com/rust-lang/crates.io-index" 456 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 457 + 458 + [[package]] 459 + name = "windows-sys" 460 + version = "0.48.0" 461 + source = "registry+https://github.com/rust-lang/crates.io-index" 462 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 463 + dependencies = [ 464 + "windows-targets", 465 + ] 466 + 467 + [[package]] 468 + name = "windows-targets" 469 + version = "0.48.0" 470 + source = "registry+https://github.com/rust-lang/crates.io-index" 471 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 472 + dependencies = [ 473 + "windows_aarch64_gnullvm", 474 + "windows_aarch64_msvc", 475 + "windows_i686_gnu", 476 + "windows_i686_msvc", 477 + "windows_x86_64_gnu", 478 + "windows_x86_64_gnullvm", 479 + "windows_x86_64_msvc", 480 + ] 481 + 482 + [[package]] 483 + name = "windows_aarch64_gnullvm" 484 + version = "0.48.0" 485 + source = "registry+https://github.com/rust-lang/crates.io-index" 486 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 487 + 488 + [[package]] 489 + name = "windows_aarch64_msvc" 490 + version = "0.48.0" 491 + source = "registry+https://github.com/rust-lang/crates.io-index" 492 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 493 + 494 + [[package]] 495 + name = "windows_i686_gnu" 496 + version = "0.48.0" 497 + source = "registry+https://github.com/rust-lang/crates.io-index" 498 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 499 + 500 + [[package]] 501 + name = "windows_i686_msvc" 502 + version = "0.48.0" 503 + source = "registry+https://github.com/rust-lang/crates.io-index" 504 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 505 + 506 + [[package]] 507 + name = "windows_x86_64_gnu" 508 + version = "0.48.0" 509 + source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 511 + 512 + [[package]] 513 + name = "windows_x86_64_gnullvm" 514 + version = "0.48.0" 515 + source = "registry+https://github.com/rust-lang/crates.io-index" 516 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 517 + 518 + [[package]] 519 + name = "windows_x86_64_msvc" 520 + version = "0.48.0" 521 + source = "registry+https://github.com/rust-lang/crates.io-index" 522 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
+2
pkgs/top-level/all-packages.nix
··· 33322 33323 mimic = callPackage ../applications/audio/mimic { }; 33324 33325 meh = callPackage ../applications/graphics/meh { }; 33326 33327 mixxx = libsForQt5.callPackage ../applications/audio/mixxx { };
··· 33322 33323 mimic = callPackage ../applications/audio/mimic { }; 33324 33325 + mission-center = callPackage ../applications/misc/mission-center { }; 33326 + 33327 meh = callPackage ../applications/graphics/meh { }; 33328 33329 mixxx = libsForQt5.callPackage ../applications/audio/mixxx { };