@@ -2,6 +2,12 @@ |
| 2 | 2 | # It is not intended for manual editing. |
| 3 | 3 | version = 4 |
| 4 | 4 | |
| 5 | +[[package]] |
| 6 | +name = "adler2" |
| 7 | +version = "2.0.1" |
| 8 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 9 | +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" |
| 10 | + |
| 5 | 11 | [[package]] |
| 6 | 12 | name = "aho-corasick" |
| 7 | 13 | version = "1.1.4" |
@@ -73,6 +79,12 @@ version = "1.0.1" |
| 73 | 79 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 74 | 80 | checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" |
| 75 | 81 | |
| 82 | +[[package]] |
| 83 | +name = "autocfg" |
| 84 | +version = "1.5.0" |
| 85 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 86 | +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" |
| 87 | + |
| 76 | 88 | [[package]] |
| 77 | 89 | name = "bindgen" |
| 78 | 90 | version = "0.69.5" |
@@ -93,6 +105,12 @@ dependencies = [ |
| 93 | 105 | "syn 2.0.114", |
| 94 | 106 | ] |
| 95 | 107 | |
| 108 | +[[package]] |
| 109 | +name = "bit_field" |
| 110 | +version = "0.10.3" |
| 111 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 112 | +checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6" |
| 113 | + |
| 96 | 114 | [[package]] |
| 97 | 115 | name = "bitflags" |
| 98 | 116 | version = "1.3.2" |
@@ -105,12 +123,49 @@ version = "2.10.0" |
| 105 | 123 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 106 | 124 | checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" |
| 107 | 125 | |
| 126 | +[[package]] |
| 127 | +name = "bytemuck" |
| 128 | +version = "1.24.0" |
| 129 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 130 | +checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" |
| 131 | + |
| 132 | +[[package]] |
| 133 | +name = "byteorder" |
| 134 | +version = "1.5.0" |
| 135 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 136 | +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" |
| 137 | + |
| 108 | 138 | [[package]] |
| 109 | 139 | name = "bytes" |
| 110 | 140 | version = "1.11.0" |
| 111 | 141 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 112 | 142 | checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" |
| 113 | 143 | |
| 144 | +[[package]] |
| 145 | +name = "cairo-rs" |
| 146 | +version = "0.18.5" |
| 147 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 148 | +checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" |
| 149 | +dependencies = [ |
| 150 | + "bitflags 2.10.0", |
| 151 | + "cairo-sys-rs", |
| 152 | + "glib", |
| 153 | + "libc", |
| 154 | + "once_cell", |
| 155 | + "thiserror", |
| 156 | +] |
| 157 | + |
| 158 | +[[package]] |
| 159 | +name = "cairo-sys-rs" |
| 160 | +version = "0.18.2" |
| 161 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 162 | +checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" |
| 163 | +dependencies = [ |
| 164 | + "glib-sys", |
| 165 | + "libc", |
| 166 | + "system-deps", |
| 167 | +] |
| 168 | + |
| 114 | 169 | [[package]] |
| 115 | 170 | name = "cexpr" |
| 116 | 171 | version = "0.6.0" |
@@ -120,6 +175,16 @@ dependencies = [ |
| 120 | 175 | "nom", |
| 121 | 176 | ] |
| 122 | 177 | |
| 178 | +[[package]] |
| 179 | +name = "cfg-expr" |
| 180 | +version = "0.15.8" |
| 181 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 182 | +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" |
| 183 | +dependencies = [ |
| 184 | + "smallvec", |
| 185 | + "target-lexicon", |
| 186 | +] |
| 187 | + |
| 123 | 188 | [[package]] |
| 124 | 189 | name = "cfg-if" |
| 125 | 190 | version = "1.0.4" |
@@ -164,7 +229,7 @@ version = "4.5.49" |
| 164 | 229 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 165 | 230 | checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" |
| 166 | 231 | dependencies = [ |
| 167 | | - "heck", |
| 232 | + "heck 0.5.0", |
| 168 | 233 | "proc-macro2", |
| 169 | 234 | "quote", |
| 170 | 235 | "syn 2.0.114", |
@@ -176,12 +241,58 @@ version = "0.7.7" |
| 176 | 241 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 177 | 242 | checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" |
| 178 | 243 | |
| 244 | +[[package]] |
| 245 | +name = "color_quant" |
| 246 | +version = "1.1.0" |
| 247 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 248 | +checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" |
| 249 | + |
| 179 | 250 | [[package]] |
| 180 | 251 | name = "colorchoice" |
| 181 | 252 | version = "1.0.4" |
| 182 | 253 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 183 | 254 | checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" |
| 184 | 255 | |
| 256 | +[[package]] |
| 257 | +name = "crc32fast" |
| 258 | +version = "1.5.0" |
| 259 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 260 | +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" |
| 261 | +dependencies = [ |
| 262 | + "cfg-if", |
| 263 | +] |
| 264 | + |
| 265 | +[[package]] |
| 266 | +name = "crossbeam-deque" |
| 267 | +version = "0.8.6" |
| 268 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 269 | +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" |
| 270 | +dependencies = [ |
| 271 | + "crossbeam-epoch", |
| 272 | + "crossbeam-utils", |
| 273 | +] |
| 274 | + |
| 275 | +[[package]] |
| 276 | +name = "crossbeam-epoch" |
| 277 | +version = "0.9.18" |
| 278 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 279 | +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" |
| 280 | +dependencies = [ |
| 281 | + "crossbeam-utils", |
| 282 | +] |
| 283 | + |
| 284 | +[[package]] |
| 285 | +name = "crossbeam-utils" |
| 286 | +version = "0.8.21" |
| 287 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 288 | +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" |
| 289 | + |
| 290 | +[[package]] |
| 291 | +name = "crunchy" |
| 292 | +version = "0.2.4" |
| 293 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 294 | +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" |
| 295 | + |
| 185 | 296 | [[package]] |
| 186 | 297 | name = "either" |
| 187 | 298 | version = "1.15.0" |
@@ -215,18 +326,120 @@ dependencies = [ |
| 215 | 326 | "windows-sys 0.61.2", |
| 216 | 327 | ] |
| 217 | 328 | |
| 329 | +[[package]] |
| 330 | +name = "exr" |
| 331 | +version = "1.74.0" |
| 332 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 333 | +checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be" |
| 334 | +dependencies = [ |
| 335 | + "bit_field", |
| 336 | + "half", |
| 337 | + "lebe", |
| 338 | + "miniz_oxide", |
| 339 | + "rayon-core", |
| 340 | + "smallvec", |
| 341 | + "zune-inflate", |
| 342 | +] |
| 343 | + |
| 344 | +[[package]] |
| 345 | +name = "fdeflate" |
| 346 | +version = "0.3.7" |
| 347 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 348 | +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" |
| 349 | +dependencies = [ |
| 350 | + "simd-adler32", |
| 351 | +] |
| 352 | + |
| 353 | +[[package]] |
| 354 | +name = "flate2" |
| 355 | +version = "1.1.8" |
| 356 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 357 | +checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369" |
| 358 | +dependencies = [ |
| 359 | + "crc32fast", |
| 360 | + "miniz_oxide", |
| 361 | +] |
| 362 | + |
| 363 | +[[package]] |
| 364 | +name = "futures-channel" |
| 365 | +version = "0.3.31" |
| 366 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 367 | +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" |
| 368 | +dependencies = [ |
| 369 | + "futures-core", |
| 370 | +] |
| 371 | + |
| 372 | +[[package]] |
| 373 | +name = "futures-core" |
| 374 | +version = "0.3.31" |
| 375 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 376 | +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" |
| 377 | + |
| 378 | +[[package]] |
| 379 | +name = "futures-executor" |
| 380 | +version = "0.3.31" |
| 381 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 382 | +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" |
| 383 | +dependencies = [ |
| 384 | + "futures-core", |
| 385 | + "futures-task", |
| 386 | + "futures-util", |
| 387 | +] |
| 388 | + |
| 389 | +[[package]] |
| 390 | +name = "futures-io" |
| 391 | +version = "0.3.31" |
| 392 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 393 | +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" |
| 394 | + |
| 395 | +[[package]] |
| 396 | +name = "futures-macro" |
| 397 | +version = "0.3.31" |
| 398 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 399 | +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" |
| 400 | +dependencies = [ |
| 401 | + "proc-macro2", |
| 402 | + "quote", |
| 403 | + "syn 2.0.114", |
| 404 | +] |
| 405 | + |
| 406 | +[[package]] |
| 407 | +name = "futures-task" |
| 408 | +version = "0.3.31" |
| 409 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 410 | +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" |
| 411 | + |
| 412 | +[[package]] |
| 413 | +name = "futures-util" |
| 414 | +version = "0.3.31" |
| 415 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 416 | +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" |
| 417 | +dependencies = [ |
| 418 | + "futures-core", |
| 419 | + "futures-macro", |
| 420 | + "futures-task", |
| 421 | + "pin-project-lite", |
| 422 | + "pin-utils", |
| 423 | + "slab", |
| 424 | +] |
| 425 | + |
| 218 | 426 | [[package]] |
| 219 | 427 | name = "gardm-greeter" |
| 220 | 428 | version = "0.1.0" |
| 221 | 429 | dependencies = [ |
| 222 | 430 | "anyhow", |
| 431 | + "cairo-rs", |
| 223 | 432 | "gardm-ipc", |
| 433 | + "image", |
| 434 | + "pango", |
| 435 | + "pangocairo", |
| 224 | 436 | "rpassword 7.4.0", |
| 225 | 437 | "serde_json", |
| 226 | 438 | "thiserror", |
| 227 | 439 | "tokio", |
| 228 | 440 | "tracing", |
| 229 | 441 | "tracing-subscriber", |
| 442 | + "x11rb", |
| 230 | 443 | ] |
| 231 | 444 | |
| 232 | 445 | [[package]] |
@@ -270,24 +483,159 @@ dependencies = [ |
| 270 | 483 | "windows-link", |
| 271 | 484 | ] |
| 272 | 485 | |
| 486 | +[[package]] |
| 487 | +name = "gif" |
| 488 | +version = "0.13.3" |
| 489 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 490 | +checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b" |
| 491 | +dependencies = [ |
| 492 | + "color_quant", |
| 493 | + "weezl", |
| 494 | +] |
| 495 | + |
| 496 | +[[package]] |
| 497 | +name = "gio" |
| 498 | +version = "0.18.4" |
| 499 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 500 | +checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" |
| 501 | +dependencies = [ |
| 502 | + "futures-channel", |
| 503 | + "futures-core", |
| 504 | + "futures-io", |
| 505 | + "futures-util", |
| 506 | + "gio-sys", |
| 507 | + "glib", |
| 508 | + "libc", |
| 509 | + "once_cell", |
| 510 | + "pin-project-lite", |
| 511 | + "smallvec", |
| 512 | + "thiserror", |
| 513 | +] |
| 514 | + |
| 515 | +[[package]] |
| 516 | +name = "gio-sys" |
| 517 | +version = "0.18.1" |
| 518 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 519 | +checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" |
| 520 | +dependencies = [ |
| 521 | + "glib-sys", |
| 522 | + "gobject-sys", |
| 523 | + "libc", |
| 524 | + "system-deps", |
| 525 | + "winapi", |
| 526 | +] |
| 527 | + |
| 528 | +[[package]] |
| 529 | +name = "glib" |
| 530 | +version = "0.18.5" |
| 531 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 532 | +checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" |
| 533 | +dependencies = [ |
| 534 | + "bitflags 2.10.0", |
| 535 | + "futures-channel", |
| 536 | + "futures-core", |
| 537 | + "futures-executor", |
| 538 | + "futures-task", |
| 539 | + "futures-util", |
| 540 | + "gio-sys", |
| 541 | + "glib-macros", |
| 542 | + "glib-sys", |
| 543 | + "gobject-sys", |
| 544 | + "libc", |
| 545 | + "memchr", |
| 546 | + "once_cell", |
| 547 | + "smallvec", |
| 548 | + "thiserror", |
| 549 | +] |
| 550 | + |
| 551 | +[[package]] |
| 552 | +name = "glib-macros" |
| 553 | +version = "0.18.5" |
| 554 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 555 | +checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" |
| 556 | +dependencies = [ |
| 557 | + "heck 0.4.1", |
| 558 | + "proc-macro-crate", |
| 559 | + "proc-macro-error", |
| 560 | + "proc-macro2", |
| 561 | + "quote", |
| 562 | + "syn 2.0.114", |
| 563 | +] |
| 564 | + |
| 565 | +[[package]] |
| 566 | +name = "glib-sys" |
| 567 | +version = "0.18.1" |
| 568 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 569 | +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" |
| 570 | +dependencies = [ |
| 571 | + "libc", |
| 572 | + "system-deps", |
| 573 | +] |
| 574 | + |
| 273 | 575 | [[package]] |
| 274 | 576 | name = "glob" |
| 275 | 577 | version = "0.3.3" |
| 276 | 578 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 277 | 579 | checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" |
| 278 | 580 | |
| 581 | +[[package]] |
| 582 | +name = "gobject-sys" |
| 583 | +version = "0.18.0" |
| 584 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 585 | +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" |
| 586 | +dependencies = [ |
| 587 | + "glib-sys", |
| 588 | + "libc", |
| 589 | + "system-deps", |
| 590 | +] |
| 591 | + |
| 592 | +[[package]] |
| 593 | +name = "half" |
| 594 | +version = "2.7.1" |
| 595 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 596 | +checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" |
| 597 | +dependencies = [ |
| 598 | + "cfg-if", |
| 599 | + "crunchy", |
| 600 | + "zerocopy", |
| 601 | +] |
| 602 | + |
| 279 | 603 | [[package]] |
| 280 | 604 | name = "hashbrown" |
| 281 | 605 | version = "0.16.1" |
| 282 | 606 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 283 | 607 | checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" |
| 284 | 608 | |
| 609 | +[[package]] |
| 610 | +name = "heck" |
| 611 | +version = "0.4.1" |
| 612 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 613 | +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" |
| 614 | + |
| 285 | 615 | [[package]] |
| 286 | 616 | name = "heck" |
| 287 | 617 | version = "0.5.0" |
| 288 | 618 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 289 | 619 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" |
| 290 | 620 | |
| 621 | +[[package]] |
| 622 | +name = "image" |
| 623 | +version = "0.24.9" |
| 624 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 625 | +checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" |
| 626 | +dependencies = [ |
| 627 | + "bytemuck", |
| 628 | + "byteorder", |
| 629 | + "color_quant", |
| 630 | + "exr", |
| 631 | + "gif", |
| 632 | + "jpeg-decoder", |
| 633 | + "num-traits", |
| 634 | + "png", |
| 635 | + "qoi", |
| 636 | + "tiff", |
| 637 | +] |
| 638 | + |
| 291 | 639 | [[package]] |
| 292 | 640 | name = "indexmap" |
| 293 | 641 | version = "2.13.0" |
@@ -319,6 +667,15 @@ version = "1.0.17" |
| 319 | 667 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 320 | 668 | checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" |
| 321 | 669 | |
| 670 | +[[package]] |
| 671 | +name = "jpeg-decoder" |
| 672 | +version = "0.3.2" |
| 673 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 674 | +checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07" |
| 675 | +dependencies = [ |
| 676 | + "rayon", |
| 677 | +] |
| 678 | + |
| 322 | 679 | [[package]] |
| 323 | 680 | name = "lazy_static" |
| 324 | 681 | version = "1.5.0" |
@@ -331,6 +688,12 @@ version = "1.3.0" |
| 331 | 688 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 332 | 689 | checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" |
| 333 | 690 | |
| 691 | +[[package]] |
| 692 | +name = "lebe" |
| 693 | +version = "0.5.3" |
| 694 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 695 | +checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8" |
| 696 | + |
| 334 | 697 | [[package]] |
| 335 | 698 | name = "libc" |
| 336 | 699 | version = "0.2.180" |
@@ -379,6 +742,16 @@ version = "0.2.1" |
| 379 | 742 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 380 | 743 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" |
| 381 | 744 | |
| 745 | +[[package]] |
| 746 | +name = "miniz_oxide" |
| 747 | +version = "0.8.9" |
| 748 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 749 | +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" |
| 750 | +dependencies = [ |
| 751 | + "adler2", |
| 752 | + "simd-adler32", |
| 753 | +] |
| 754 | + |
| 382 | 755 | [[package]] |
| 383 | 756 | name = "mio" |
| 384 | 757 | version = "1.1.1" |
@@ -420,6 +793,15 @@ dependencies = [ |
| 420 | 793 | "windows-sys 0.61.2", |
| 421 | 794 | ] |
| 422 | 795 | |
| 796 | +[[package]] |
| 797 | +name = "num-traits" |
| 798 | +version = "0.2.19" |
| 799 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 800 | +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" |
| 801 | +dependencies = [ |
| 802 | + "autocfg", |
| 803 | +] |
| 804 | + |
| 423 | 805 | [[package]] |
| 424 | 806 | name = "once_cell" |
| 425 | 807 | version = "1.21.3" |
@@ -456,6 +838,57 @@ dependencies = [ |
| 456 | 838 | "libc", |
| 457 | 839 | ] |
| 458 | 840 | |
| 841 | +[[package]] |
| 842 | +name = "pango" |
| 843 | +version = "0.18.3" |
| 844 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 845 | +checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" |
| 846 | +dependencies = [ |
| 847 | + "gio", |
| 848 | + "glib", |
| 849 | + "libc", |
| 850 | + "once_cell", |
| 851 | + "pango-sys", |
| 852 | +] |
| 853 | + |
| 854 | +[[package]] |
| 855 | +name = "pango-sys" |
| 856 | +version = "0.18.0" |
| 857 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 858 | +checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" |
| 859 | +dependencies = [ |
| 860 | + "glib-sys", |
| 861 | + "gobject-sys", |
| 862 | + "libc", |
| 863 | + "system-deps", |
| 864 | +] |
| 865 | + |
| 866 | +[[package]] |
| 867 | +name = "pangocairo" |
| 868 | +version = "0.18.0" |
| 869 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 870 | +checksum = "57036589a9cfcacf83f9e606d15813fc6bf03f0e9e69aa2b5e3bb85af86b38a5" |
| 871 | +dependencies = [ |
| 872 | + "cairo-rs", |
| 873 | + "glib", |
| 874 | + "libc", |
| 875 | + "pango", |
| 876 | + "pangocairo-sys", |
| 877 | +] |
| 878 | + |
| 879 | +[[package]] |
| 880 | +name = "pangocairo-sys" |
| 881 | +version = "0.18.0" |
| 882 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 883 | +checksum = "fc3c8ff676a37e7a72ec1d5fc029f91c407278083d2752784ff9f5188c108833" |
| 884 | +dependencies = [ |
| 885 | + "cairo-sys-rs", |
| 886 | + "glib-sys", |
| 887 | + "libc", |
| 888 | + "pango-sys", |
| 889 | + "system-deps", |
| 890 | +] |
| 891 | + |
| 459 | 892 | [[package]] |
| 460 | 893 | name = "parking_lot" |
| 461 | 894 | version = "0.12.5" |
@@ -485,6 +918,65 @@ version = "0.2.16" |
| 485 | 918 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 486 | 919 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" |
| 487 | 920 | |
| 921 | +[[package]] |
| 922 | +name = "pin-utils" |
| 923 | +version = "0.1.0" |
| 924 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 925 | +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" |
| 926 | + |
| 927 | +[[package]] |
| 928 | +name = "pkg-config" |
| 929 | +version = "0.3.32" |
| 930 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 931 | +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" |
| 932 | + |
| 933 | +[[package]] |
| 934 | +name = "png" |
| 935 | +version = "0.17.16" |
| 936 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 937 | +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" |
| 938 | +dependencies = [ |
| 939 | + "bitflags 1.3.2", |
| 940 | + "crc32fast", |
| 941 | + "fdeflate", |
| 942 | + "flate2", |
| 943 | + "miniz_oxide", |
| 944 | +] |
| 945 | + |
| 946 | +[[package]] |
| 947 | +name = "proc-macro-crate" |
| 948 | +version = "2.0.2" |
| 949 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 950 | +checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" |
| 951 | +dependencies = [ |
| 952 | + "toml_datetime", |
| 953 | + "toml_edit", |
| 954 | +] |
| 955 | + |
| 956 | +[[package]] |
| 957 | +name = "proc-macro-error" |
| 958 | +version = "1.0.4" |
| 959 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 960 | +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" |
| 961 | +dependencies = [ |
| 962 | + "proc-macro-error-attr", |
| 963 | + "proc-macro2", |
| 964 | + "quote", |
| 965 | + "syn 1.0.109", |
| 966 | + "version_check", |
| 967 | +] |
| 968 | + |
| 969 | +[[package]] |
| 970 | +name = "proc-macro-error-attr" |
| 971 | +version = "1.0.4" |
| 972 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 973 | +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" |
| 974 | +dependencies = [ |
| 975 | + "proc-macro2", |
| 976 | + "quote", |
| 977 | + "version_check", |
| 978 | +] |
| 979 | + |
| 488 | 980 | [[package]] |
| 489 | 981 | name = "proc-macro2" |
| 490 | 982 | version = "1.0.105" |
@@ -494,6 +986,15 @@ dependencies = [ |
| 494 | 986 | "unicode-ident", |
| 495 | 987 | ] |
| 496 | 988 | |
| 989 | +[[package]] |
| 990 | +name = "qoi" |
| 991 | +version = "0.4.1" |
| 992 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 993 | +checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" |
| 994 | +dependencies = [ |
| 995 | + "bytemuck", |
| 996 | +] |
| 997 | + |
| 497 | 998 | [[package]] |
| 498 | 999 | name = "quote" |
| 499 | 1000 | version = "1.0.43" |
@@ -503,6 +1004,26 @@ dependencies = [ |
| 503 | 1004 | "proc-macro2", |
| 504 | 1005 | ] |
| 505 | 1006 | |
| 1007 | +[[package]] |
| 1008 | +name = "rayon" |
| 1009 | +version = "1.11.0" |
| 1010 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1011 | +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" |
| 1012 | +dependencies = [ |
| 1013 | + "either", |
| 1014 | + "rayon-core", |
| 1015 | +] |
| 1016 | + |
| 1017 | +[[package]] |
| 1018 | +name = "rayon-core" |
| 1019 | +version = "1.13.0" |
| 1020 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1021 | +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" |
| 1022 | +dependencies = [ |
| 1023 | + "crossbeam-deque", |
| 1024 | + "crossbeam-utils", |
| 1025 | +] |
| 1026 | + |
| 506 | 1027 | [[package]] |
| 507 | 1028 | name = "redox_syscall" |
| 508 | 1029 | version = "0.5.18" |
@@ -691,6 +1212,18 @@ dependencies = [ |
| 691 | 1212 | "libc", |
| 692 | 1213 | ] |
| 693 | 1214 | |
| 1215 | +[[package]] |
| 1216 | +name = "simd-adler32" |
| 1217 | +version = "0.3.8" |
| 1218 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1219 | +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" |
| 1220 | + |
| 1221 | +[[package]] |
| 1222 | +name = "slab" |
| 1223 | +version = "0.4.11" |
| 1224 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1225 | +checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" |
| 1226 | + |
| 694 | 1227 | [[package]] |
| 695 | 1228 | name = "smallvec" |
| 696 | 1229 | version = "1.15.1" |
@@ -735,6 +1268,25 @@ dependencies = [ |
| 735 | 1268 | "unicode-ident", |
| 736 | 1269 | ] |
| 737 | 1270 | |
| 1271 | +[[package]] |
| 1272 | +name = "system-deps" |
| 1273 | +version = "6.2.2" |
| 1274 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1275 | +checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" |
| 1276 | +dependencies = [ |
| 1277 | + "cfg-expr", |
| 1278 | + "heck 0.5.0", |
| 1279 | + "pkg-config", |
| 1280 | + "toml", |
| 1281 | + "version-compare", |
| 1282 | +] |
| 1283 | + |
| 1284 | +[[package]] |
| 1285 | +name = "target-lexicon" |
| 1286 | +version = "0.12.16" |
| 1287 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1288 | +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" |
| 1289 | + |
| 738 | 1290 | [[package]] |
| 739 | 1291 | name = "thiserror" |
| 740 | 1292 | version = "1.0.69" |
@@ -764,6 +1316,17 @@ dependencies = [ |
| 764 | 1316 | "cfg-if", |
| 765 | 1317 | ] |
| 766 | 1318 | |
| 1319 | +[[package]] |
| 1320 | +name = "tiff" |
| 1321 | +version = "0.9.1" |
| 1322 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1323 | +checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" |
| 1324 | +dependencies = [ |
| 1325 | + "flate2", |
| 1326 | + "jpeg-decoder", |
| 1327 | + "weezl", |
| 1328 | +] |
| 1329 | + |
| 767 | 1330 | [[package]] |
| 768 | 1331 | name = "tokio" |
| 769 | 1332 | version = "1.49.0" |
@@ -794,9 +1357,9 @@ dependencies = [ |
| 794 | 1357 | |
| 795 | 1358 | [[package]] |
| 796 | 1359 | name = "toml" |
| 797 | | -version = "0.8.23" |
| 1360 | +version = "0.8.2" |
| 798 | 1361 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 799 | | -checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" |
| 1362 | +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" |
| 800 | 1363 | dependencies = [ |
| 801 | 1364 | "serde", |
| 802 | 1365 | "serde_spanned", |
@@ -806,33 +1369,26 @@ dependencies = [ |
| 806 | 1369 | |
| 807 | 1370 | [[package]] |
| 808 | 1371 | name = "toml_datetime" |
| 809 | | -version = "0.6.11" |
| 1372 | +version = "0.6.3" |
| 810 | 1373 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 811 | | -checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" |
| 1374 | +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" |
| 812 | 1375 | dependencies = [ |
| 813 | 1376 | "serde", |
| 814 | 1377 | ] |
| 815 | 1378 | |
| 816 | 1379 | [[package]] |
| 817 | 1380 | name = "toml_edit" |
| 818 | | -version = "0.22.27" |
| 1381 | +version = "0.20.2" |
| 819 | 1382 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 820 | | -checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" |
| 1383 | +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" |
| 821 | 1384 | dependencies = [ |
| 822 | 1385 | "indexmap", |
| 823 | 1386 | "serde", |
| 824 | 1387 | "serde_spanned", |
| 825 | 1388 | "toml_datetime", |
| 826 | | - "toml_write", |
| 827 | 1389 | "winnow", |
| 828 | 1390 | ] |
| 829 | 1391 | |
| 830 | | -[[package]] |
| 831 | | -name = "toml_write" |
| 832 | | -version = "0.1.2" |
| 833 | | -source = "registry+https://github.com/rust-lang/crates.io-index" |
| 834 | | -checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" |
| 835 | | - |
| 836 | 1392 | [[package]] |
| 837 | 1393 | name = "tracing" |
| 838 | 1394 | version = "0.1.44" |
@@ -912,12 +1468,30 @@ version = "0.1.1" |
| 912 | 1468 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 913 | 1469 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" |
| 914 | 1470 | |
| 1471 | +[[package]] |
| 1472 | +name = "version-compare" |
| 1473 | +version = "0.2.1" |
| 1474 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1475 | +checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" |
| 1476 | + |
| 1477 | +[[package]] |
| 1478 | +name = "version_check" |
| 1479 | +version = "0.9.5" |
| 1480 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1481 | +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" |
| 1482 | + |
| 915 | 1483 | [[package]] |
| 916 | 1484 | name = "wasi" |
| 917 | 1485 | version = "0.11.1+wasi-snapshot-preview1" |
| 918 | 1486 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 919 | 1487 | checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" |
| 920 | 1488 | |
| 1489 | +[[package]] |
| 1490 | +name = "weezl" |
| 1491 | +version = "0.1.12" |
| 1492 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1493 | +checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" |
| 1494 | + |
| 921 | 1495 | [[package]] |
| 922 | 1496 | name = "winapi" |
| 923 | 1497 | version = "0.3.9" |
@@ -1113,9 +1687,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" |
| 1113 | 1687 | |
| 1114 | 1688 | [[package]] |
| 1115 | 1689 | name = "winnow" |
| 1116 | | -version = "0.7.14" |
| 1690 | +version = "0.5.40" |
| 1117 | 1691 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1118 | | -checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" |
| 1692 | +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" |
| 1119 | 1693 | dependencies = [ |
| 1120 | 1694 | "memchr", |
| 1121 | 1695 | ] |
@@ -1139,8 +1713,37 @@ version = "0.13.2" |
| 1139 | 1713 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1140 | 1714 | checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd" |
| 1141 | 1715 | |
| 1716 | +[[package]] |
| 1717 | +name = "zerocopy" |
| 1718 | +version = "0.8.33" |
| 1719 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1720 | +checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" |
| 1721 | +dependencies = [ |
| 1722 | + "zerocopy-derive", |
| 1723 | +] |
| 1724 | + |
| 1725 | +[[package]] |
| 1726 | +name = "zerocopy-derive" |
| 1727 | +version = "0.8.33" |
| 1728 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1729 | +checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" |
| 1730 | +dependencies = [ |
| 1731 | + "proc-macro2", |
| 1732 | + "quote", |
| 1733 | + "syn 2.0.114", |
| 1734 | +] |
| 1735 | + |
| 1142 | 1736 | [[package]] |
| 1143 | 1737 | name = "zmij" |
| 1144 | 1738 | version = "1.0.14" |
| 1145 | 1739 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1146 | 1740 | checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea" |
| 1741 | + |
| 1742 | +[[package]] |
| 1743 | +name = "zune-inflate" |
| 1744 | +version = "0.2.54" |
| 1745 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1746 | +checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" |
| 1747 | +dependencies = [ |
| 1748 | + "simd-adler32", |
| 1749 | +] |