Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 0e8a6f24 fced6fe6

+748 -349
+13 -3
nixos/modules/virtualisation/google-compute-config.nix
··· 1 1 { config, lib, pkgs, ... }: 2 - with lib; 2 + 3 + let 4 + inherit (lib) 5 + boolToString 6 + mkDefault 7 + mkIf 8 + optional 9 + readFile 10 + ; 11 + in 12 + 3 13 { 4 14 imports = [ 5 15 ../profiles/headless.nix ··· 65 75 systemd.services.google-guest-agent = { 66 76 wantedBy = [ "multi-user.target" ]; 67 77 restartTriggers = [ config.environment.etc."default/instance_configs.cfg".source ]; 68 - path = lib.optional config.users.mutableUsers pkgs.shadow; 78 + path = optional config.users.mutableUsers pkgs.shadow; 69 79 }; 70 80 systemd.services.google-startup-scripts.wantedBy = [ "multi-user.target" ]; 71 81 systemd.services.google-shutdown-scripts.wantedBy = [ "multi-user.target" ]; ··· 76 86 77 87 users.groups.google-sudoers = mkIf config.users.mutableUsers { }; 78 88 79 - boot.extraModprobeConfig = lib.readFile "${pkgs.google-guest-configs}/etc/modprobe.d/gce-blacklist.conf"; 89 + boot.extraModprobeConfig = readFile "${pkgs.google-guest-configs}/etc/modprobe.d/gce-blacklist.conf"; 80 90 81 91 environment.etc."sysctl.d/60-gce-network-security.conf".source = "${pkgs.google-guest-configs}/etc/sysctl.d/60-gce-network-security.conf"; 82 92
+263 -253
pkgs/applications/file-managers/felix-fm/Cargo.lock
··· 10 10 11 11 [[package]] 12 12 name = "aes" 13 - version = "0.7.5" 13 + version = "0.8.2" 14 14 source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 15 + checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 16 16 dependencies = [ 17 17 "cfg-if", 18 18 "cipher", 19 19 "cpufeatures", 20 - "opaque-debug", 21 20 ] 22 21 23 22 [[package]] ··· 37 36 38 37 [[package]] 39 38 name = "base64" 40 - version = "0.13.1" 39 + version = "0.21.2" 41 40 source = "registry+https://github.com/rust-lang/crates.io-index" 42 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 41 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 43 42 44 43 [[package]] 45 44 name = "base64ct" 46 - version = "1.5.3" 45 + version = "1.6.0" 47 46 source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 47 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 49 48 50 49 [[package]] 51 50 name = "bincode" ··· 64 63 65 64 [[package]] 66 65 name = "block-buffer" 67 - version = "0.10.3" 66 + version = "0.10.4" 68 67 source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 68 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 70 69 dependencies = [ 71 70 "generic-array", 72 71 ] ··· 79 78 80 79 [[package]] 81 80 name = "bumpalo" 82 - version = "3.11.1" 81 + version = "3.13.0" 83 82 source = "registry+https://github.com/rust-lang/crates.io-index" 84 - checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 83 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 85 84 86 85 [[package]] 87 86 name = "byteorder" ··· 91 90 92 91 [[package]] 93 92 name = "bzip2" 94 - version = "0.4.3" 93 + version = "0.4.4" 95 94 source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" 95 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 97 96 dependencies = [ 98 97 "bzip2-sys", 99 98 "libc", ··· 112 111 113 112 [[package]] 114 113 name = "cc" 115 - version = "1.0.77" 114 + version = "1.0.79" 116 115 source = "registry+https://github.com/rust-lang/crates.io-index" 117 - checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4" 116 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 118 117 dependencies = [ 119 118 "jobserver", 120 119 ] ··· 139 138 140 139 [[package]] 141 140 name = "cipher" 142 - version = "0.3.0" 141 + version = "0.4.4" 143 142 source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 143 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 145 144 dependencies = [ 146 - "generic-array", 147 - ] 148 - 149 - [[package]] 150 - name = "codespan-reporting" 151 - version = "0.11.1" 152 - source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 154 - dependencies = [ 155 - "termcolor", 156 - "unicode-width", 145 + "crypto-common", 146 + "inout", 157 147 ] 158 148 159 149 [[package]] ··· 173 163 174 164 [[package]] 175 165 name = "core-foundation-sys" 176 - version = "0.8.3" 166 + version = "0.8.4" 177 167 source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 168 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 179 169 180 170 [[package]] 181 171 name = "cpufeatures" 182 - version = "0.2.5" 172 + version = "0.2.7" 183 173 source = "registry+https://github.com/rust-lang/crates.io-index" 184 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 174 + checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 185 175 dependencies = [ 186 176 "libc", 187 177 ] ··· 206 196 207 197 [[package]] 208 198 name = "crossbeam-channel" 209 - version = "0.5.6" 199 + version = "0.5.8" 210 200 source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 201 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 212 202 dependencies = [ 213 203 "cfg-if", 214 204 "crossbeam-utils", ··· 216 206 217 207 [[package]] 218 208 name = "crossbeam-deque" 219 - version = "0.8.2" 209 + version = "0.8.3" 220 210 source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 211 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 222 212 dependencies = [ 223 213 "cfg-if", 224 214 "crossbeam-epoch", ··· 227 217 228 218 [[package]] 229 219 name = "crossbeam-epoch" 230 - version = "0.9.13" 220 + version = "0.9.14" 231 221 source = "registry+https://github.com/rust-lang/crates.io-index" 232 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 222 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 233 223 dependencies = [ 234 224 "autocfg", 235 225 "cfg-if", 236 226 "crossbeam-utils", 237 - "memoffset 0.7.1", 227 + "memoffset 0.8.0", 238 228 "scopeguard", 239 229 ] 240 230 241 231 [[package]] 242 232 name = "crossbeam-utils" 243 - version = "0.8.14" 233 + version = "0.8.15" 244 234 source = "registry+https://github.com/rust-lang/crates.io-index" 245 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 235 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 246 236 dependencies = [ 247 237 "cfg-if", 248 238 ] ··· 283 273 ] 284 274 285 275 [[package]] 286 - name = "cxx" 287 - version = "1.0.83" 288 - source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "bdf07d07d6531bfcdbe9b8b739b104610c6508dcc4d63b410585faf338241daf" 290 - dependencies = [ 291 - "cc", 292 - "cxxbridge-flags", 293 - "cxxbridge-macro", 294 - "link-cplusplus", 295 - ] 296 - 297 - [[package]] 298 - name = "cxx-build" 299 - version = "1.0.83" 300 - source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "d2eb5b96ecdc99f72657332953d4d9c50135af1bac34277801cc3937906ebd39" 302 - dependencies = [ 303 - "cc", 304 - "codespan-reporting", 305 - "once_cell", 306 - "proc-macro2", 307 - "quote", 308 - "scratch", 309 - "syn 1.0.105", 310 - ] 311 - 312 - [[package]] 313 - name = "cxxbridge-flags" 314 - version = "1.0.83" 315 - source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "ac040a39517fd1674e0f32177648334b0f4074625b5588a64519804ba0553b12" 317 - 318 - [[package]] 319 - name = "cxxbridge-macro" 320 - version = "1.0.83" 321 - source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "1362b0ddcfc4eb0a1f57b68bd77dd99f0e826958a96abd0ae9bd092e114ffed6" 323 - dependencies = [ 324 - "proc-macro2", 325 - "quote", 326 - "syn 1.0.105", 327 - ] 328 - 329 - [[package]] 330 276 name = "devtimer" 331 277 version = "4.0.1" 332 278 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 334 280 335 281 [[package]] 336 282 name = "digest" 337 - version = "0.10.6" 283 + version = "0.10.7" 338 284 source = "registry+https://github.com/rust-lang/crates.io-index" 339 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 285 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 340 286 dependencies = [ 341 287 "block-buffer", 342 288 "crypto-common", ··· 365 311 366 312 [[package]] 367 313 name = "either" 368 - version = "1.8.0" 314 + version = "1.8.1" 369 315 source = "registry+https://github.com/rust-lang/crates.io-index" 370 - checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 316 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 371 317 372 318 [[package]] 373 319 name = "felix" 374 - version = "2.2.8" 320 + version = "2.3.0" 375 321 dependencies = [ 376 322 "chrono", 377 323 "content_inspector", ··· 397 343 398 344 [[package]] 399 345 name = "filetime" 400 - version = "0.2.19" 346 + version = "0.2.21" 401 347 source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9" 348 + checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" 403 349 dependencies = [ 404 350 "cfg-if", 405 351 "libc", 406 352 "redox_syscall", 407 - "windows-sys", 353 + "windows-sys 0.48.0", 408 354 ] 409 355 410 356 [[package]] ··· 425 371 426 372 [[package]] 427 373 name = "generic-array" 428 - version = "0.14.6" 374 + version = "0.14.7" 429 375 source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 376 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 431 377 dependencies = [ 432 378 "typenum", 433 379 "version_check", ··· 435 381 436 382 [[package]] 437 383 name = "getrandom" 438 - version = "0.2.8" 384 + version = "0.2.9" 439 385 source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 386 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 441 387 dependencies = [ 442 388 "cfg-if", 443 389 "libc", ··· 470 416 471 417 [[package]] 472 418 name = "iana-time-zone" 473 - version = "0.1.53" 419 + version = "0.1.56" 474 420 source = "registry+https://github.com/rust-lang/crates.io-index" 475 - checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 421 + checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 476 422 dependencies = [ 477 423 "android_system_properties", 478 424 "core-foundation-sys", 479 425 "iana-time-zone-haiku", 480 426 "js-sys", 481 427 "wasm-bindgen", 482 - "winapi", 428 + "windows", 483 429 ] 484 430 485 431 [[package]] 486 432 name = "iana-time-zone-haiku" 487 - version = "0.1.1" 433 + version = "0.1.2" 488 434 source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 435 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 490 436 dependencies = [ 491 - "cxx", 492 - "cxx-build", 437 + "cc", 493 438 ] 494 439 495 440 [[package]] 496 441 name = "indexmap" 497 - version = "1.9.2" 442 + version = "1.9.3" 498 443 source = "registry+https://github.com/rust-lang/crates.io-index" 499 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 444 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 500 445 dependencies = [ 501 446 "autocfg", 502 447 "hashbrown", 503 448 ] 504 449 505 450 [[package]] 451 + name = "inout" 452 + version = "0.1.3" 453 + source = "registry+https://github.com/rust-lang/crates.io-index" 454 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 455 + dependencies = [ 456 + "generic-array", 457 + ] 458 + 459 + [[package]] 506 460 name = "itoa" 507 - version = "1.0.4" 461 + version = "1.0.6" 508 462 source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" 463 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 510 464 511 465 [[package]] 512 466 name = "jobserver" 513 - version = "0.1.25" 467 + version = "0.1.26" 514 468 source = "registry+https://github.com/rust-lang/crates.io-index" 515 - checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" 469 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 516 470 dependencies = [ 517 471 "libc", 518 472 ] 519 473 520 474 [[package]] 521 475 name = "js-sys" 522 - version = "0.3.60" 476 + version = "0.3.63" 523 477 source = "registry+https://github.com/rust-lang/crates.io-index" 524 - checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 478 + checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 525 479 dependencies = [ 526 480 "wasm-bindgen", 527 481 ] 528 482 529 483 [[package]] 530 484 name = "libc" 531 - version = "0.2.138" 485 + version = "0.2.144" 532 486 source = "registry+https://github.com/rust-lang/crates.io-index" 533 - checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8" 487 + checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 534 488 535 489 [[package]] 536 490 name = "line-wrap" ··· 539 493 checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 540 494 dependencies = [ 541 495 "safemem", 542 - ] 543 - 544 - [[package]] 545 - name = "link-cplusplus" 546 - version = "1.0.7" 547 - source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" 549 - dependencies = [ 550 - "cc", 551 496 ] 552 497 553 498 [[package]] ··· 602 547 603 548 [[package]] 604 549 name = "memoffset" 605 - version = "0.7.1" 550 + version = "0.8.0" 606 551 source = "registry+https://github.com/rust-lang/crates.io-index" 607 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 552 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 608 553 dependencies = [ 609 554 "autocfg", 610 555 ] ··· 620 565 621 566 [[package]] 622 567 name = "mio" 623 - version = "0.8.5" 568 + version = "0.8.6" 624 569 source = "registry+https://github.com/rust-lang/crates.io-index" 625 - checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 570 + checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 626 571 dependencies = [ 627 572 "libc", 628 573 "log", 629 574 "wasi", 630 - "windows-sys", 575 + "windows-sys 0.45.0", 631 576 ] 632 577 633 578 [[package]] ··· 690 635 691 636 [[package]] 692 637 name = "once_cell" 693 - version = "1.16.0" 638 + version = "1.17.1" 694 639 source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" 640 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 696 641 697 642 [[package]] 698 643 name = "onig" ··· 717 662 ] 718 663 719 664 [[package]] 720 - name = "opaque-debug" 721 - version = "0.3.0" 722 - source = "registry+https://github.com/rust-lang/crates.io-index" 723 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 724 - 725 - [[package]] 726 665 name = "parking_lot" 727 666 version = "0.12.1" 728 667 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 734 673 735 674 [[package]] 736 675 name = "parking_lot_core" 737 - version = "0.9.5" 676 + version = "0.9.7" 738 677 source = "registry+https://github.com/rust-lang/crates.io-index" 739 - checksum = "7ff9f3fef3968a3ec5945535ed654cb38ff72d7495a25619e2247fb15a2ed9ba" 678 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 740 679 dependencies = [ 741 680 "cfg-if", 742 681 "libc", 743 682 "redox_syscall", 744 683 "smallvec", 745 - "windows-sys", 684 + "windows-sys 0.45.0", 746 685 ] 747 686 748 687 [[package]] ··· 776 715 777 716 [[package]] 778 717 name = "pkg-config" 779 - version = "0.3.26" 718 + version = "0.3.27" 780 719 source = "registry+https://github.com/rust-lang/crates.io-index" 781 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 720 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 782 721 783 722 [[package]] 784 723 name = "plist" 785 - version = "1.3.1" 724 + version = "1.4.3" 786 725 source = "registry+https://github.com/rust-lang/crates.io-index" 787 - checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225" 726 + checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590" 788 727 dependencies = [ 789 728 "base64", 790 729 "indexmap", 791 730 "line-wrap", 731 + "quick-xml", 792 732 "serde", 793 733 "time", 794 - "xml-rs", 795 734 ] 796 735 797 736 [[package]] 798 737 name = "proc-macro2" 799 - version = "1.0.56" 738 + version = "1.0.58" 800 739 source = "registry+https://github.com/rust-lang/crates.io-index" 801 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 740 + checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" 802 741 dependencies = [ 803 742 "unicode-ident", 804 743 ] 805 744 806 745 [[package]] 746 + name = "quick-xml" 747 + version = "0.28.2" 748 + source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 750 + dependencies = [ 751 + "memchr", 752 + ] 753 + 754 + [[package]] 807 755 name = "quote" 808 - version = "1.0.26" 756 + version = "1.0.27" 809 757 source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 758 + checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 811 759 dependencies = [ 812 760 "proc-macro2", 813 761 ] ··· 820 768 821 769 [[package]] 822 770 name = "rayon" 823 - version = "1.6.1" 771 + version = "1.7.0" 824 772 source = "registry+https://github.com/rust-lang/crates.io-index" 825 - checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 773 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 826 774 dependencies = [ 827 775 "either", 828 776 "rayon-core", ··· 830 778 831 779 [[package]] 832 780 name = "rayon-core" 833 - version = "1.10.1" 781 + version = "1.11.0" 834 782 source = "registry+https://github.com/rust-lang/crates.io-index" 835 - checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" 783 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 836 784 dependencies = [ 837 785 "crossbeam-channel", 838 786 "crossbeam-deque", ··· 862 810 863 811 [[package]] 864 812 name = "regex-syntax" 865 - version = "0.6.28" 813 + version = "0.6.29" 866 814 source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 815 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 868 816 869 817 [[package]] 870 818 name = "ryu" 871 - version = "1.0.11" 819 + version = "1.0.13" 872 820 source = "registry+https://github.com/rust-lang/crates.io-index" 873 - checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 821 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 874 822 875 823 [[package]] 876 824 name = "safemem" ··· 894 842 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 895 843 896 844 [[package]] 897 - name = "scratch" 898 - version = "1.0.2" 899 - source = "registry+https://github.com/rust-lang/crates.io-index" 900 - checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" 901 - 902 - [[package]] 903 845 name = "serde" 904 - version = "1.0.162" 846 + version = "1.0.163" 905 847 source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "71b2f6e1ab5c2b98c05f0f35b236b22e8df7ead6ffbf51d7808da7f8817e7ab6" 848 + checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 907 849 dependencies = [ 908 850 "serde_derive", 909 851 ] 910 852 911 853 [[package]] 912 854 name = "serde_derive" 913 - version = "1.0.162" 855 + version = "1.0.163" 914 856 source = "registry+https://github.com/rust-lang/crates.io-index" 915 - checksum = "a2a0814352fd64b58489904a44ea8d90cb1a91dcb6b4f5ebabc32c8318e93cb6" 857 + checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 916 858 dependencies = [ 917 859 "proc-macro2", 918 860 "quote", 919 - "syn 2.0.15", 861 + "syn", 920 862 ] 921 863 922 864 [[package]] 923 865 name = "serde_json" 924 - version = "1.0.89" 866 + version = "1.0.96" 925 867 source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db" 868 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 927 869 dependencies = [ 928 870 "itoa", 929 871 "ryu", ··· 932 874 933 875 [[package]] 934 876 name = "serde_yaml" 935 - version = "0.9.14" 877 + version = "0.9.21" 936 878 source = "registry+https://github.com/rust-lang/crates.io-index" 937 - checksum = "6d232d893b10de3eb7258ff01974d6ee20663d8e833263c99409d4b13a0209da" 879 + checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c" 938 880 dependencies = [ 939 881 "indexmap", 940 882 "itoa", ··· 967 909 968 910 [[package]] 969 911 name = "signal-hook" 970 - version = "0.3.14" 912 + version = "0.3.15" 971 913 source = "registry+https://github.com/rust-lang/crates.io-index" 972 - checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d" 914 + checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 973 915 dependencies = [ 974 916 "libc", 975 917 "signal-hook-registry", ··· 988 930 989 931 [[package]] 990 932 name = "signal-hook-registry" 991 - version = "1.4.0" 933 + version = "1.4.1" 992 934 source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 935 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 994 936 dependencies = [ 995 937 "libc", 996 938 ] 997 939 998 940 [[package]] 999 941 name = "simplelog" 1000 - version = "0.12.0" 942 + version = "0.12.1" 1001 943 source = "registry+https://github.com/rust-lang/crates.io-index" 1002 - checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786" 944 + checksum = "acee08041c5de3d5048c8b3f6f13fafb3026b24ba43c6a695a0c76179b844369" 1003 945 dependencies = [ 1004 946 "log", 1005 947 "termcolor", ··· 1014 956 1015 957 [[package]] 1016 958 name = "subtle" 1017 - version = "2.4.1" 1018 - source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1020 - 1021 - [[package]] 1022 - name = "syn" 1023 - version = "1.0.105" 959 + version = "2.5.0" 1024 960 source = "registry+https://github.com/rust-lang/crates.io-index" 1025 - checksum = "60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908" 1026 - dependencies = [ 1027 - "proc-macro2", 1028 - "quote", 1029 - "unicode-ident", 1030 - ] 961 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 1031 962 1032 963 [[package]] 1033 964 name = "syn" 1034 - version = "2.0.15" 965 + version = "2.0.16" 1035 966 source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 967 + checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" 1037 968 dependencies = [ 1038 969 "proc-macro2", 1039 970 "quote", ··· 1043 974 [[package]] 1044 975 name = "syntect" 1045 976 version = "5.0.0" 1046 - source = "git+https://github.com/kyoheiu/syntect#b2dc4fb8ee192f27babb0535eb383b781ab5c8ce" 977 + source = "git+https://github.com/kyoheiu/syntect#b5212417475f678706bdc243d7adbf99b26923bd" 1047 978 dependencies = [ 1048 979 "bincode", 1049 980 "bitflags", ··· 1082 1013 1083 1014 [[package]] 1084 1015 name = "thiserror" 1085 - version = "1.0.37" 1016 + version = "1.0.40" 1086 1017 source = "registry+https://github.com/rust-lang/crates.io-index" 1087 - checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" 1018 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 1088 1019 dependencies = [ 1089 1020 "thiserror-impl", 1090 1021 ] 1091 1022 1092 1023 [[package]] 1093 1024 name = "thiserror-impl" 1094 - version = "1.0.37" 1025 + version = "1.0.40" 1095 1026 source = "registry+https://github.com/rust-lang/crates.io-index" 1096 - checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" 1027 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 1097 1028 dependencies = [ 1098 1029 "proc-macro2", 1099 1030 "quote", 1100 - "syn 1.0.105", 1031 + "syn", 1101 1032 ] 1102 1033 1103 1034 [[package]] 1104 1035 name = "time" 1105 - version = "0.3.17" 1036 + version = "0.3.21" 1106 1037 source = "registry+https://github.com/rust-lang/crates.io-index" 1107 - checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 1038 + checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc" 1108 1039 dependencies = [ 1109 1040 "itoa", 1110 1041 "libc", ··· 1116 1047 1117 1048 [[package]] 1118 1049 name = "time-core" 1119 - version = "0.1.0" 1050 + version = "0.1.1" 1120 1051 source = "registry+https://github.com/rust-lang/crates.io-index" 1121 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 1052 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 1122 1053 1123 1054 [[package]] 1124 1055 name = "time-macros" 1125 - version = "0.2.6" 1056 + version = "0.2.9" 1126 1057 source = "registry+https://github.com/rust-lang/crates.io-index" 1127 - checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 1058 + checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 1128 1059 dependencies = [ 1129 1060 "time-core", 1130 1061 ] ··· 1137 1068 1138 1069 [[package]] 1139 1070 name = "unicode-ident" 1140 - version = "1.0.5" 1071 + version = "1.0.9" 1141 1072 source = "registry+https://github.com/rust-lang/crates.io-index" 1142 - checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 1073 + checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 1143 1074 1144 1075 [[package]] 1145 1076 name = "unicode-width" ··· 1149 1080 1150 1081 [[package]] 1151 1082 name = "unsafe-libyaml" 1152 - version = "0.2.4" 1083 + version = "0.2.8" 1153 1084 source = "registry+https://github.com/rust-lang/crates.io-index" 1154 - checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68" 1085 + checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6" 1155 1086 1156 1087 [[package]] 1157 1088 name = "version_check" ··· 1177 1108 1178 1109 [[package]] 1179 1110 name = "wasm-bindgen" 1180 - version = "0.2.83" 1111 + version = "0.2.86" 1181 1112 source = "registry+https://github.com/rust-lang/crates.io-index" 1182 - checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 1113 + checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 1183 1114 dependencies = [ 1184 1115 "cfg-if", 1185 1116 "wasm-bindgen-macro", ··· 1187 1118 1188 1119 [[package]] 1189 1120 name = "wasm-bindgen-backend" 1190 - version = "0.2.83" 1121 + version = "0.2.86" 1191 1122 source = "registry+https://github.com/rust-lang/crates.io-index" 1192 - checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 1123 + checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 1193 1124 dependencies = [ 1194 1125 "bumpalo", 1195 1126 "log", 1196 1127 "once_cell", 1197 1128 "proc-macro2", 1198 1129 "quote", 1199 - "syn 1.0.105", 1130 + "syn", 1200 1131 "wasm-bindgen-shared", 1201 1132 ] 1202 1133 1203 1134 [[package]] 1204 1135 name = "wasm-bindgen-macro" 1205 - version = "0.2.83" 1136 + version = "0.2.86" 1206 1137 source = "registry+https://github.com/rust-lang/crates.io-index" 1207 - checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 1138 + checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 1208 1139 dependencies = [ 1209 1140 "quote", 1210 1141 "wasm-bindgen-macro-support", ··· 1212 1143 1213 1144 [[package]] 1214 1145 name = "wasm-bindgen-macro-support" 1215 - version = "0.2.83" 1146 + version = "0.2.86" 1216 1147 source = "registry+https://github.com/rust-lang/crates.io-index" 1217 - checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 1148 + checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 1218 1149 dependencies = [ 1219 1150 "proc-macro2", 1220 1151 "quote", 1221 - "syn 1.0.105", 1152 + "syn", 1222 1153 "wasm-bindgen-backend", 1223 1154 "wasm-bindgen-shared", 1224 1155 ] 1225 1156 1226 1157 [[package]] 1227 1158 name = "wasm-bindgen-shared" 1228 - version = "0.2.83" 1159 + version = "0.2.86" 1229 1160 source = "registry+https://github.com/rust-lang/crates.io-index" 1230 - checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 1161 + checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 1231 1162 1232 1163 [[package]] 1233 1164 name = "winapi" ··· 1261 1192 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1262 1193 1263 1194 [[package]] 1195 + name = "windows" 1196 + version = "0.48.0" 1197 + source = "registry+https://github.com/rust-lang/crates.io-index" 1198 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 1199 + dependencies = [ 1200 + "windows-targets 0.48.0", 1201 + ] 1202 + 1203 + [[package]] 1264 1204 name = "windows-sys" 1265 - version = "0.42.0" 1205 + version = "0.45.0" 1266 1206 source = "registry+https://github.com/rust-lang/crates.io-index" 1267 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1207 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1268 1208 dependencies = [ 1269 - "windows_aarch64_gnullvm", 1270 - "windows_aarch64_msvc", 1271 - "windows_i686_gnu", 1272 - "windows_i686_msvc", 1273 - "windows_x86_64_gnu", 1274 - "windows_x86_64_gnullvm", 1275 - "windows_x86_64_msvc", 1209 + "windows-targets 0.42.2", 1210 + ] 1211 + 1212 + [[package]] 1213 + name = "windows-sys" 1214 + version = "0.48.0" 1215 + source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1217 + dependencies = [ 1218 + "windows-targets 0.48.0", 1219 + ] 1220 + 1221 + [[package]] 1222 + name = "windows-targets" 1223 + version = "0.42.2" 1224 + source = "registry+https://github.com/rust-lang/crates.io-index" 1225 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1226 + dependencies = [ 1227 + "windows_aarch64_gnullvm 0.42.2", 1228 + "windows_aarch64_msvc 0.42.2", 1229 + "windows_i686_gnu 0.42.2", 1230 + "windows_i686_msvc 0.42.2", 1231 + "windows_x86_64_gnu 0.42.2", 1232 + "windows_x86_64_gnullvm 0.42.2", 1233 + "windows_x86_64_msvc 0.42.2", 1234 + ] 1235 + 1236 + [[package]] 1237 + name = "windows-targets" 1238 + version = "0.48.0" 1239 + source = "registry+https://github.com/rust-lang/crates.io-index" 1240 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1241 + dependencies = [ 1242 + "windows_aarch64_gnullvm 0.48.0", 1243 + "windows_aarch64_msvc 0.48.0", 1244 + "windows_i686_gnu 0.48.0", 1245 + "windows_i686_msvc 0.48.0", 1246 + "windows_x86_64_gnu 0.48.0", 1247 + "windows_x86_64_gnullvm 0.48.0", 1248 + "windows_x86_64_msvc 0.48.0", 1276 1249 ] 1277 1250 1278 1251 [[package]] 1279 1252 name = "windows_aarch64_gnullvm" 1280 - version = "0.42.0" 1253 + version = "0.42.2" 1281 1254 source = "registry+https://github.com/rust-lang/crates.io-index" 1282 - checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" 1255 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1256 + 1257 + [[package]] 1258 + name = "windows_aarch64_gnullvm" 1259 + version = "0.48.0" 1260 + source = "registry+https://github.com/rust-lang/crates.io-index" 1261 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1283 1262 1284 1263 [[package]] 1285 1264 name = "windows_aarch64_msvc" 1286 - version = "0.42.0" 1265 + version = "0.42.2" 1266 + source = "registry+https://github.com/rust-lang/crates.io-index" 1267 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1268 + 1269 + [[package]] 1270 + name = "windows_aarch64_msvc" 1271 + version = "0.48.0" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1274 + 1275 + [[package]] 1276 + name = "windows_i686_gnu" 1277 + version = "0.42.2" 1287 1278 source = "registry+https://github.com/rust-lang/crates.io-index" 1288 - checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" 1279 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1289 1280 1290 1281 [[package]] 1291 1282 name = "windows_i686_gnu" 1292 - version = "0.42.0" 1283 + version = "0.48.0" 1293 1284 source = "registry+https://github.com/rust-lang/crates.io-index" 1294 - checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" 1285 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1295 1286 1296 1287 [[package]] 1297 1288 name = "windows_i686_msvc" 1298 - version = "0.42.0" 1289 + version = "0.42.2" 1299 1290 source = "registry+https://github.com/rust-lang/crates.io-index" 1300 - checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" 1291 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1292 + 1293 + [[package]] 1294 + name = "windows_i686_msvc" 1295 + version = "0.48.0" 1296 + source = "registry+https://github.com/rust-lang/crates.io-index" 1297 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1301 1298 1302 1299 [[package]] 1303 1300 name = "windows_x86_64_gnu" 1304 - version = "0.42.0" 1301 + version = "0.42.2" 1305 1302 source = "registry+https://github.com/rust-lang/crates.io-index" 1306 - checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" 1303 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1304 + 1305 + [[package]] 1306 + name = "windows_x86_64_gnu" 1307 + version = "0.48.0" 1308 + source = "registry+https://github.com/rust-lang/crates.io-index" 1309 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1307 1310 1308 1311 [[package]] 1309 1312 name = "windows_x86_64_gnullvm" 1310 - version = "0.42.0" 1313 + version = "0.42.2" 1311 1314 source = "registry+https://github.com/rust-lang/crates.io-index" 1312 - checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" 1315 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1316 + 1317 + [[package]] 1318 + name = "windows_x86_64_gnullvm" 1319 + version = "0.48.0" 1320 + source = "registry+https://github.com/rust-lang/crates.io-index" 1321 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1313 1322 1314 1323 [[package]] 1315 1324 name = "windows_x86_64_msvc" 1316 - version = "0.42.0" 1325 + version = "0.42.2" 1317 1326 source = "registry+https://github.com/rust-lang/crates.io-index" 1318 - checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" 1327 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1328 + 1329 + [[package]] 1330 + name = "windows_x86_64_msvc" 1331 + version = "0.48.0" 1332 + source = "registry+https://github.com/rust-lang/crates.io-index" 1333 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1319 1334 1320 1335 [[package]] 1321 1336 name = "xattr" ··· 1327 1342 ] 1328 1343 1329 1344 [[package]] 1330 - name = "xml-rs" 1331 - version = "0.8.4" 1332 - source = "registry+https://github.com/rust-lang/crates.io-index" 1333 - checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 1334 - 1335 - [[package]] 1336 1345 name = "yaml-rust" 1337 1346 version = "0.4.5" 1338 1347 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1343 1352 1344 1353 [[package]] 1345 1354 name = "zip" 1346 - version = "0.6.4" 1355 + version = "0.6.6" 1347 1356 source = "registry+https://github.com/rust-lang/crates.io-index" 1348 - checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef" 1357 + checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 1349 1358 dependencies = [ 1350 1359 "aes", 1351 1360 "byteorder", ··· 1382 1391 1383 1392 [[package]] 1384 1393 name = "zstd-sys" 1385 - version = "2.0.4+zstd.1.5.2" 1394 + version = "2.0.8+zstd.1.5.5" 1386 1395 source = "registry+https://github.com/rust-lang/crates.io-index" 1387 - checksum = "4fa202f2ef00074143e219d15b62ffc317d17cc33909feac471c044087cad7b0" 1396 + checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" 1388 1397 dependencies = [ 1389 1398 "cc", 1390 1399 "libc", 1400 + "pkg-config", 1391 1401 ]
+3 -3
pkgs/applications/file-managers/felix-fm/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "felix"; 12 - version = "2.2.8"; 12 + version = "2.3.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kyoheiu"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-CSmp3dPNbYgL/CKJTVYIfPbKphblK1j6xr4Lr5RZRqk="; 18 + sha256 = "sha256-+8tYllK8UYW7hdA4qoH8Eiu6SbXvjRe4BFfEbwabuIY="; 19 19 }; 20 20 21 21 cargoLock = { 22 22 lockFile = ./Cargo.lock; 23 23 outputHashes = { 24 - "syntect-5.0.0" = "sha256-ZVCQIVUKwNdV6tyep9THvyM132faDK48crgpWEHrRSQ="; 24 + "syntect-5.0.0" = "sha256-Ql3zpfjZ5nopmqZyVOJ8qcRA8eXm6ZYzLsAnGA1+upY="; 25 25 }; 26 26 }; 27 27
+15 -15
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 82 82 "vendorHash": "sha256-+uWVo5UM2tuYXYn2eWf7yuAQ8THYvJSc5ZxD909bQSk=" 83 83 }, 84 84 "auth0": { 85 - "hash": "sha256-4NTWZ7aAPRB0EFdCypNNhDZsAql9jTW8FEpMA/mty7M=", 85 + "hash": "sha256-6wJvBwZ7PY1Jqx/r5YrZ0P4uHLiMvrFvsm3OEByrYyQ=", 86 86 "homepage": "https://registry.terraform.io/providers/auth0/auth0", 87 87 "owner": "auth0", 88 88 "repo": "terraform-provider-auth0", 89 - "rev": "v0.47.0", 89 + "rev": "v0.48.0", 90 90 "spdx": "MPL-2.0", 91 - "vendorHash": "sha256-93iYUZ/EJqSpb+KQvfH8f+We3PlZp296RfVZAY4OkOU=" 91 + "vendorHash": "sha256-bFnvZARj2WfZpftus2PTlrxAFdrrgk9N0UZfzhQ6DmI=" 92 92 }, 93 93 "avi": { 94 94 "hash": "sha256-mBLdIL4mUI4zA3c9gB4DL1QY0xHW15Q1rO/v1gVYKYU=", ··· 110 110 "vendorHash": null 111 111 }, 112 112 "aws": { 113 - "hash": "sha256-pU0FFIXe/Z0/0UVOyheEBwbWNeo+BdKD/6iacI8SP60=", 113 + "hash": "sha256-I0iGgrvgjdqjeoiRMzItg2FELC/X2ACP5qLW5HguP78=", 114 114 "homepage": "https://registry.terraform.io/providers/hashicorp/aws", 115 115 "owner": "hashicorp", 116 116 "repo": "terraform-provider-aws", 117 - "rev": "v4.67.0", 117 + "rev": "v5.0.0", 118 118 "spdx": "MPL-2.0", 119 - "vendorHash": "sha256-yVtxoIuID5nwrEiac/7lMBEm4iAisyEUK+4zDC0bksI=" 119 + "vendorHash": "sha256-53BHSeRBgnT5LuSuTUA5R/bbeozd2gOxsXd/2tlrbYU=" 120 120 }, 121 121 "azuread": { 122 122 "hash": "sha256-wBNS2a6O1QJgssbAWhSRSfxaVZ35zgT/qNdpE++NQ8U=", ··· 502 502 "vendorHash": null 503 503 }, 504 504 "heroku": { 505 - "hash": "sha256-HVTUd+oR0FBpATuUJs1phY1gfVnKsyHrArpVonHMUnQ=", 505 + "hash": "sha256-xxNFI36UYhCsz/mqcRkG+XEIlAyw4RCLuwrz02rdJqY=", 506 506 "homepage": "https://registry.terraform.io/providers/heroku/heroku", 507 507 "owner": "heroku", 508 508 "repo": "terraform-provider-heroku", 509 - "rev": "v5.2.1", 509 + "rev": "v5.2.2", 510 510 "spdx": "MPL-2.0", 511 511 "vendorHash": null 512 512 }, ··· 1044 1044 "vendorHash": "sha256-NO1r/EWLgH1Gogru+qPeZ4sW7FuDENxzNnpLSKstnE8=" 1045 1045 }, 1046 1046 "spotinst": { 1047 - "hash": "sha256-TAuPs8t7QsAJWxgCXfb2g3f+8pyCs5yxQFBL6U+4GSo=", 1047 + "hash": "sha256-fNJhshwaMX0w5SuL/B8MDMrUN/que8H8UXqiPfKuIVg=", 1048 1048 "homepage": "https://registry.terraform.io/providers/spotinst/spotinst", 1049 1049 "owner": "spotinst", 1050 1050 "repo": "terraform-provider-spotinst", 1051 - "rev": "v1.119.0", 1051 + "rev": "v1.119.1", 1052 1052 "spdx": "MPL-2.0", 1053 1053 "vendorHash": "sha256-VZlTrUcfE7ZoAU3wWrM31pZbKSsUc1Oph7b8wb6k8cY=" 1054 1054 }, ··· 1071 1071 "vendorHash": "sha256-fgvNdBwkz+YHOrLRQSe1D+3/VUhttKkJGzV6cg57g8s=" 1072 1072 }, 1073 1073 "sumologic": { 1074 - "hash": "sha256-iFN4dP9erg1NoYxyu6U4DTRvGUWTo63ZmxMu7Wxr0UI=", 1074 + "hash": "sha256-+9xH/cr+PMU3zd+WcfawVA0YsmOi9kc5pAe/YTsLoVw=", 1075 1075 "homepage": "https://registry.terraform.io/providers/SumoLogic/sumologic", 1076 1076 "owner": "SumoLogic", 1077 1077 "repo": "terraform-provider-sumologic", 1078 - "rev": "v2.22.1", 1078 + "rev": "v2.23.0", 1079 1079 "spdx": "MPL-2.0", 1080 1080 "vendorHash": "sha256-iNBM4Y24vDGPKyb5cppSogk145F0/pAFmOzEeiWgfLI=" 1081 1081 }, ··· 1107 1107 "vendorHash": null 1108 1108 }, 1109 1109 "tfe": { 1110 - "hash": "sha256-GQPp7od9KM8x82qg88JIITnkMMUzTAEDWeVX2VujKfM=", 1110 + "hash": "sha256-aDM6lTxESm9OFAE/p9SbuBe6Uaydprfw0/MxJitLnwY=", 1111 1111 "homepage": "https://registry.terraform.io/providers/hashicorp/tfe", 1112 1112 "owner": "hashicorp", 1113 1113 "repo": "terraform-provider-tfe", 1114 - "rev": "v0.44.1", 1114 + "rev": "v0.45.0", 1115 1115 "spdx": "MPL-2.0", 1116 - "vendorHash": "sha256-vKIbswlWQUIPeaFRAMPGygM/UlWiRIr66NuTNfnpGpc=" 1116 + "vendorHash": "sha256-CWQDFMvx8vMyeiMcMciZbnYpd56h4nA0ysJqNzEtSUo=" 1117 1117 }, 1118 1118 "thunder": { 1119 1119 "hash": "sha256-CZjoWme/f1F5JzYlntEKL5ijRF/qR3h4ZTiv9vwzbJI=",
+327 -54
pkgs/applications/virtualization/pods/Cargo.lock
··· 9 9 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 10 11 11 [[package]] 12 + name = "aes" 13 + version = "0.8.2" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 16 + dependencies = [ 17 + "cfg-if", 18 + "cipher", 19 + "cpufeatures", 20 + "zeroize", 21 + ] 22 + 23 + [[package]] 12 24 name = "aho-corasick" 13 25 version = "1.0.1" 14 26 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 71 83 dependencies = [ 72 84 "proc-macro2", 73 85 "quote", 74 - "syn 2.0.15", 86 + "syn 2.0.16", 75 87 ] 76 88 77 89 [[package]] ··· 82 94 dependencies = [ 83 95 "proc-macro2", 84 96 "quote", 85 - "syn 2.0.15", 97 + "syn 2.0.16", 86 98 ] 87 99 88 100 [[package]] ··· 119 131 ] 120 132 121 133 [[package]] 134 + name = "block-padding" 135 + version = "0.3.3" 136 + source = "registry+https://github.com/rust-lang/crates.io-index" 137 + checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 138 + dependencies = [ 139 + "generic-array", 140 + ] 141 + 142 + [[package]] 122 143 name = "bumpalo" 123 - version = "3.12.2" 144 + version = "3.13.0" 124 145 source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 146 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 126 147 127 148 [[package]] 128 149 name = "byteorder" ··· 168 189 ] 169 190 170 191 [[package]] 192 + name = "cbc" 193 + version = "0.1.2" 194 + source = "registry+https://github.com/rust-lang/crates.io-index" 195 + checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 196 + dependencies = [ 197 + "cipher", 198 + ] 199 + 200 + [[package]] 171 201 name = "cc" 172 202 version = "1.0.79" 173 203 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 206 236 ] 207 237 208 238 [[package]] 239 + name = "cipher" 240 + version = "0.4.4" 241 + source = "registry+https://github.com/rust-lang/crates.io-index" 242 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 243 + dependencies = [ 244 + "crypto-common", 245 + "inout", 246 + "zeroize", 247 + ] 248 + 249 + [[package]] 209 250 name = "containers-api" 210 251 version = "0.8.0" 211 252 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 260 301 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 261 302 dependencies = [ 262 303 "generic-array", 304 + "rand_core", 263 305 "typenum", 264 306 ] 265 307 ··· 276 318 277 319 [[package]] 278 320 name = "digest" 279 - version = "0.10.6" 321 + version = "0.10.7" 280 322 source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 323 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 282 324 dependencies = [ 283 325 "block-buffer", 284 326 "crypto-common", 327 + "subtle", 328 + ] 329 + 330 + [[package]] 331 + name = "dirs" 332 + version = "5.0.1" 333 + source = "registry+https://github.com/rust-lang/crates.io-index" 334 + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 335 + dependencies = [ 336 + "dirs-sys", 337 + ] 338 + 339 + [[package]] 340 + name = "dirs-sys" 341 + version = "0.4.1" 342 + source = "registry+https://github.com/rust-lang/crates.io-index" 343 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 344 + dependencies = [ 345 + "libc", 346 + "option-ext", 347 + "redox_users", 348 + "windows-sys 0.48.0", 285 349 ] 286 350 287 351 [[package]] ··· 302 366 dependencies = [ 303 367 "proc-macro2", 304 368 "quote", 305 - "syn 2.0.15", 369 + "syn 2.0.16", 306 370 ] 307 371 308 372 [[package]] ··· 453 517 dependencies = [ 454 518 "proc-macro2", 455 519 "quote", 456 - "syn 2.0.15", 520 + "syn 2.0.16", 457 521 ] 458 522 459 523 [[package]] ··· 885 949 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 886 950 887 951 [[package]] 952 + name = "hkdf" 953 + version = "0.12.3" 954 + source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 956 + dependencies = [ 957 + "hmac", 958 + ] 959 + 960 + [[package]] 961 + name = "hmac" 962 + version = "0.12.1" 963 + source = "registry+https://github.com/rust-lang/crates.io-index" 964 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 965 + dependencies = [ 966 + "digest", 967 + ] 968 + 969 + [[package]] 888 970 name = "hostname" 889 971 version = "0.3.1" 890 972 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1010 1092 ] 1011 1093 1012 1094 [[package]] 1095 + name = "inout" 1096 + version = "0.1.3" 1097 + source = "registry+https://github.com/rust-lang/crates.io-index" 1098 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1099 + dependencies = [ 1100 + "block-padding", 1101 + "generic-array", 1102 + ] 1103 + 1104 + [[package]] 1013 1105 name = "instant" 1014 1106 version = "0.1.12" 1015 1107 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1020 1112 1021 1113 [[package]] 1022 1114 name = "io-lifetimes" 1023 - version = "1.0.10" 1115 + version = "1.0.11" 1024 1116 source = "registry+https://github.com/rust-lang/crates.io-index" 1025 - checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 1117 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1026 1118 dependencies = [ 1027 1119 "hermit-abi 0.3.1", 1028 1120 "libc", ··· 1037 1129 1038 1130 [[package]] 1039 1131 name = "js-sys" 1040 - version = "0.3.62" 1132 + version = "0.3.63" 1041 1133 source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5" 1134 + checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 1043 1135 dependencies = [ 1044 1136 "wasm-bindgen", 1045 1137 ] ··· 1049 1141 version = "1.4.0" 1050 1142 source = "registry+https://github.com/rust-lang/crates.io-index" 1051 1143 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1144 + dependencies = [ 1145 + "spin", 1146 + ] 1052 1147 1053 1148 [[package]] 1054 1149 name = "libadwaita" ··· 1092 1187 checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 1093 1188 1094 1189 [[package]] 1190 + name = "libm" 1191 + version = "0.2.7" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 1194 + 1195 + [[package]] 1095 1196 name = "libpanel" 1096 1197 version = "0.2.0" 1097 1198 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1124 1225 1125 1226 [[package]] 1126 1227 name = "linux-raw-sys" 1127 - version = "0.3.7" 1228 + version = "0.3.8" 1128 1229 source = "registry+https://github.com/rust-lang/crates.io-index" 1129 - checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" 1230 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1130 1231 1131 1232 [[package]] 1132 1233 name = "locale_config" ··· 1239 1340 ] 1240 1341 1241 1342 [[package]] 1343 + name = "num" 1344 + version = "0.4.0" 1345 + source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" 1347 + dependencies = [ 1348 + "num-bigint", 1349 + "num-complex", 1350 + "num-integer", 1351 + "num-iter", 1352 + "num-rational", 1353 + "num-traits", 1354 + ] 1355 + 1356 + [[package]] 1357 + name = "num-bigint" 1358 + version = "0.4.3" 1359 + source = "registry+https://github.com/rust-lang/crates.io-index" 1360 + checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 1361 + dependencies = [ 1362 + "autocfg", 1363 + "num-integer", 1364 + "num-traits", 1365 + ] 1366 + 1367 + [[package]] 1368 + name = "num-bigint-dig" 1369 + version = "0.8.2" 1370 + source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905" 1372 + dependencies = [ 1373 + "byteorder", 1374 + "lazy_static", 1375 + "libm", 1376 + "num-integer", 1377 + "num-iter", 1378 + "num-traits", 1379 + "rand", 1380 + "serde", 1381 + "smallvec", 1382 + "zeroize", 1383 + ] 1384 + 1385 + [[package]] 1386 + name = "num-complex" 1387 + version = "0.4.3" 1388 + source = "registry+https://github.com/rust-lang/crates.io-index" 1389 + checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" 1390 + dependencies = [ 1391 + "num-traits", 1392 + ] 1393 + 1394 + [[package]] 1242 1395 name = "num-integer" 1243 1396 version = "0.1.45" 1244 1397 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1249 1402 ] 1250 1403 1251 1404 [[package]] 1405 + name = "num-iter" 1406 + version = "0.1.43" 1407 + source = "registry+https://github.com/rust-lang/crates.io-index" 1408 + checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1409 + dependencies = [ 1410 + "autocfg", 1411 + "num-integer", 1412 + "num-traits", 1413 + ] 1414 + 1415 + [[package]] 1416 + name = "num-rational" 1417 + version = "0.4.1" 1418 + source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1420 + dependencies = [ 1421 + "autocfg", 1422 + "num-bigint", 1423 + "num-integer", 1424 + "num-traits", 1425 + ] 1426 + 1427 + [[package]] 1252 1428 name = "num-traits" 1253 1429 version = "0.2.15" 1254 1430 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1312 1488 checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1313 1489 1314 1490 [[package]] 1491 + name = "oo7" 1492 + version = "0.1.2" 1493 + source = "registry+https://github.com/rust-lang/crates.io-index" 1494 + checksum = "1007a6c292751abc192f8dbeef8341bac074e991be7b0eb27a6aece5ee79b4dd" 1495 + dependencies = [ 1496 + "aes", 1497 + "byteorder", 1498 + "cbc", 1499 + "cipher", 1500 + "digest", 1501 + "dirs", 1502 + "futures-util", 1503 + "hkdf", 1504 + "hmac", 1505 + "num", 1506 + "num-bigint-dig", 1507 + "once_cell", 1508 + "pbkdf2", 1509 + "rand", 1510 + "serde", 1511 + "sha2", 1512 + "tokio", 1513 + "zbus", 1514 + "zeroize", 1515 + ] 1516 + 1517 + [[package]] 1518 + name = "option-ext" 1519 + version = "0.2.0" 1520 + source = "registry+https://github.com/rust-lang/crates.io-index" 1521 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1522 + 1523 + [[package]] 1315 1524 name = "ordered-stream" 1316 1525 version = "0.2.0" 1317 1526 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1354 1563 checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 1355 1564 1356 1565 [[package]] 1566 + name = "pbkdf2" 1567 + version = "0.12.1" 1568 + source = "registry+https://github.com/rust-lang/crates.io-index" 1569 + checksum = "f0ca0b5a68607598bf3bad68f32227a8164f6254833f84eafaac409cd6746c31" 1570 + dependencies = [ 1571 + "digest", 1572 + "hmac", 1573 + ] 1574 + 1575 + [[package]] 1357 1576 name = "percent-encoding" 1358 1577 version = "2.2.0" 1359 1578 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1396 1615 dependencies = [ 1397 1616 "proc-macro2", 1398 1617 "quote", 1399 - "syn 2.0.15", 1618 + "syn 2.0.16", 1400 1619 ] 1401 1620 1402 1621 [[package]] ··· 1420 1639 [[package]] 1421 1640 name = "podman-api" 1422 1641 version = "0.10.0" 1423 - source = "registry+https://github.com/rust-lang/crates.io-index" 1424 - checksum = "4d0ade207138f12695cb4be3b590283f1cf764c5c4909f39966c4b4b0dba7c1e" 1642 + source = "git+https://github.com/vv9k/podman-api-rs.git#363d945b9b9905c50dfa0bfe0f9331f9fdeef079" 1425 1643 dependencies = [ 1426 1644 "base64", 1427 1645 "byteorder", ··· 1454 1672 1455 1673 [[package]] 1456 1674 name = "pods" 1457 - version = "1.1.3" 1675 + version = "1.2.0" 1458 1676 dependencies = [ 1459 1677 "anyhow", 1460 1678 "ashpd", ··· 1467 1685 "log", 1468 1686 "names", 1469 1687 "once_cell", 1688 + "oo7", 1470 1689 "paste", 1471 1690 "podman-api", 1472 1691 "serde", ··· 1521 1740 1522 1741 [[package]] 1523 1742 name = "proc-macro2" 1524 - version = "1.0.56" 1743 + version = "1.0.58" 1525 1744 source = "registry+https://github.com/rust-lang/crates.io-index" 1526 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 1745 + checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" 1527 1746 dependencies = [ 1528 1747 "unicode-ident", 1529 1748 ] ··· 1586 1805 ] 1587 1806 1588 1807 [[package]] 1808 + name = "redox_users" 1809 + version = "0.4.3" 1810 + source = "registry+https://github.com/rust-lang/crates.io-index" 1811 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1812 + dependencies = [ 1813 + "getrandom", 1814 + "redox_syscall 0.2.16", 1815 + "thiserror", 1816 + ] 1817 + 1818 + [[package]] 1589 1819 name = "regex" 1590 - version = "1.8.1" 1820 + version = "1.8.3" 1591 1821 source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 1822 + checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390" 1593 1823 dependencies = [ 1594 1824 "aho-corasick", 1595 1825 "memchr", ··· 1598 1828 1599 1829 [[package]] 1600 1830 name = "regex-syntax" 1601 - version = "0.7.1" 1831 + version = "0.7.2" 1602 1832 source = "registry+https://github.com/rust-lang/crates.io-index" 1603 - checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 1833 + checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 1604 1834 1605 1835 [[package]] 1606 1836 name = "rustc_version" ··· 1654 1884 dependencies = [ 1655 1885 "proc-macro2", 1656 1886 "quote", 1657 - "syn 2.0.15", 1887 + "syn 2.0.16", 1658 1888 ] 1659 1889 1660 1890 [[package]] ··· 1676 1906 dependencies = [ 1677 1907 "proc-macro2", 1678 1908 "quote", 1679 - "syn 2.0.15", 1909 + "syn 2.0.16", 1680 1910 ] 1681 1911 1682 1912 [[package]] 1683 1913 name = "serde_spanned" 1684 - version = "0.6.1" 1914 + version = "0.6.2" 1685 1915 source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 1916 + checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" 1687 1917 dependencies = [ 1688 1918 "serde", 1689 1919 ] ··· 1700 1930 ] 1701 1931 1702 1932 [[package]] 1933 + name = "sha2" 1934 + version = "0.10.6" 1935 + source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1937 + dependencies = [ 1938 + "cfg-if", 1939 + "cpufeatures", 1940 + "digest", 1941 + ] 1942 + 1943 + [[package]] 1703 1944 name = "slab" 1704 1945 version = "0.4.8" 1705 1946 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1761 2002 ] 1762 2003 1763 2004 [[package]] 2005 + name = "spin" 2006 + version = "0.5.2" 2007 + source = "registry+https://github.com/rust-lang/crates.io-index" 2008 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2009 + 2010 + [[package]] 1764 2011 name = "static_assertions" 1765 2012 version = "1.1.0" 1766 2013 source = "registry+https://github.com/rust-lang/crates.io-index" 1767 2014 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1768 2015 1769 2016 [[package]] 2017 + name = "subtle" 2018 + version = "2.5.0" 2019 + source = "registry+https://github.com/rust-lang/crates.io-index" 2020 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 2021 + 2022 + [[package]] 1770 2023 name = "syn" 1771 2024 version = "1.0.109" 1772 2025 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1779 2032 1780 2033 [[package]] 1781 2034 name = "syn" 1782 - version = "2.0.15" 2035 + version = "2.0.16" 1783 2036 source = "registry+https://github.com/rust-lang/crates.io-index" 1784 - checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 2037 + checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" 1785 2038 dependencies = [ 1786 2039 "proc-macro2", 1787 2040 "quote", ··· 1867 2120 dependencies = [ 1868 2121 "proc-macro2", 1869 2122 "quote", 1870 - "syn 2.0.15", 2123 + "syn 2.0.16", 1871 2124 ] 1872 2125 1873 2126 [[package]] ··· 1970 2223 1971 2224 [[package]] 1972 2225 name = "toml" 1973 - version = "0.7.3" 2226 + version = "0.7.4" 1974 2227 source = "registry+https://github.com/rust-lang/crates.io-index" 1975 - checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 2228 + checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec" 1976 2229 dependencies = [ 1977 2230 "serde", 1978 2231 "serde_spanned", ··· 1982 2235 1983 2236 [[package]] 1984 2237 name = "toml_datetime" 1985 - version = "0.6.1" 2238 + version = "0.6.2" 1986 2239 source = "registry+https://github.com/rust-lang/crates.io-index" 1987 - checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 2240 + checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 1988 2241 dependencies = [ 1989 2242 "serde", 1990 2243 ] 1991 2244 1992 2245 [[package]] 1993 2246 name = "toml_edit" 1994 - version = "0.19.8" 2247 + version = "0.19.10" 1995 2248 source = "registry+https://github.com/rust-lang/crates.io-index" 1996 - checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 2249 + checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" 1997 2250 dependencies = [ 1998 2251 "indexmap", 1999 2252 "serde", ··· 2028 2281 dependencies = [ 2029 2282 "proc-macro2", 2030 2283 "quote", 2031 - "syn 2.0.15", 2284 + "syn 2.0.16", 2032 2285 ] 2033 2286 2034 2287 [[package]] ··· 2070 2323 2071 2324 [[package]] 2072 2325 name = "unicode-ident" 2073 - version = "1.0.8" 2326 + version = "1.0.9" 2074 2327 source = "registry+https://github.com/rust-lang/crates.io-index" 2075 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2328 + checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 2076 2329 2077 2330 [[package]] 2078 2331 name = "unicode-normalization" ··· 2115 2368 2116 2369 [[package]] 2117 2370 name = "vte" 2118 - version = "0.11.0" 2371 + version = "0.11.1" 2119 2372 source = "registry+https://github.com/rust-lang/crates.io-index" 2120 - checksum = "1aae21c12ad2ec2d168c236f369c38ff332bc1134f7246350dca641437365045" 2373 + checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" 2121 2374 dependencies = [ 2122 2375 "utf8parse", 2123 2376 "vte_generate_state_changes", ··· 2189 2442 2190 2443 [[package]] 2191 2444 name = "wasm-bindgen" 2192 - version = "0.2.85" 2445 + version = "0.2.86" 2193 2446 source = "registry+https://github.com/rust-lang/crates.io-index" 2194 - checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4" 2447 + checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 2195 2448 dependencies = [ 2196 2449 "cfg-if", 2197 2450 "wasm-bindgen-macro", ··· 2199 2452 2200 2453 [[package]] 2201 2454 name = "wasm-bindgen-backend" 2202 - version = "0.2.85" 2455 + version = "0.2.86" 2203 2456 source = "registry+https://github.com/rust-lang/crates.io-index" 2204 - checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822" 2457 + checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 2205 2458 dependencies = [ 2206 2459 "bumpalo", 2207 2460 "log", 2208 2461 "once_cell", 2209 2462 "proc-macro2", 2210 2463 "quote", 2211 - "syn 2.0.15", 2464 + "syn 2.0.16", 2212 2465 "wasm-bindgen-shared", 2213 2466 ] 2214 2467 2215 2468 [[package]] 2216 2469 name = "wasm-bindgen-macro" 2217 - version = "0.2.85" 2470 + version = "0.2.86" 2218 2471 source = "registry+https://github.com/rust-lang/crates.io-index" 2219 - checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434" 2472 + checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 2220 2473 dependencies = [ 2221 2474 "quote", 2222 2475 "wasm-bindgen-macro-support", ··· 2224 2477 2225 2478 [[package]] 2226 2479 name = "wasm-bindgen-macro-support" 2227 - version = "0.2.85" 2480 + version = "0.2.86" 2228 2481 source = "registry+https://github.com/rust-lang/crates.io-index" 2229 - checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869" 2482 + checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 2230 2483 dependencies = [ 2231 2484 "proc-macro2", 2232 2485 "quote", 2233 - "syn 2.0.15", 2486 + "syn 2.0.16", 2234 2487 "wasm-bindgen-backend", 2235 2488 "wasm-bindgen-shared", 2236 2489 ] 2237 2490 2238 2491 [[package]] 2239 2492 name = "wasm-bindgen-shared" 2240 - version = "0.2.85" 2493 + version = "0.2.86" 2241 2494 source = "registry+https://github.com/rust-lang/crates.io-index" 2242 - checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb" 2495 + checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 2243 2496 2244 2497 [[package]] 2245 2498 name = "winapi" ··· 2490 2743 "serde", 2491 2744 "static_assertions", 2492 2745 "zvariant", 2746 + ] 2747 + 2748 + [[package]] 2749 + name = "zeroize" 2750 + version = "1.6.0" 2751 + source = "registry+https://github.com/rust-lang/crates.io-index" 2752 + checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 2753 + dependencies = [ 2754 + "zeroize_derive", 2755 + ] 2756 + 2757 + [[package]] 2758 + name = "zeroize_derive" 2759 + version = "1.4.2" 2760 + source = "registry+https://github.com/rust-lang/crates.io-index" 2761 + checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 2762 + dependencies = [ 2763 + "proc-macro2", 2764 + "quote", 2765 + "syn 2.0.16", 2493 2766 ] 2494 2767 2495 2768 [[package]]
+5 -2
pkgs/applications/virtualization/pods/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "pods"; 22 - version = "1.1.3"; 22 + version = "1.2.0"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "marhkb"; 26 26 repo = pname; 27 27 rev = "v${version}"; 28 - sha256 = "sha256-wZZBtvSMC83P38jzbZ1fX5f42WTPI68XGB1aG3gMYG0="; 28 + sha256 = "sha256-BCsieVMH2G2vT/ohrVyeIkwO9Ud0N5rXpIQj5mL9L2g="; 29 29 }; 30 30 31 31 cargoDeps = rustPlatform.importCargoLock { 32 32 lockFile = ./Cargo.lock; 33 + outputHashes = { 34 + "podman-api-0.10.0" = "sha256-zZUQdBbzIfClS2EDSkOTlR1e0R9lYbbgsICZeo6Yalc="; 35 + }; 33 36 }; 34 37 35 38 nativeBuildInputs = [
+4
pkgs/desktops/cinnamon/default.nix
··· 13 13 }); 14 14 15 15 # Extensions added here will be shipped by default 16 + # We keep this in sync with a default Mint installation 17 + # Right now (only) nemo-share is missing 16 18 nemoExtensions = [ 17 19 folder-color-switcher 20 + nemo-emblems 18 21 nemo-fileroller 19 22 nemo-python 20 23 ]; ··· 33 36 cjs = callPackage ./cjs { }; 34 37 folder-color-switcher = callPackage ./folder-color-switcher { }; 35 38 nemo = callPackage ./nemo { }; 39 + nemo-emblems = callPackage ./nemo-extensions/nemo-emblems { }; 36 40 nemo-fileroller = callPackage ./nemo-extensions/nemo-fileroller { }; 37 41 nemo-python = callPackage ./nemo-extensions/nemo-python { }; 38 42 nemo-with-extensions = callPackage ./nemo/wrapper.nix { };
+37
pkgs/desktops/cinnamon/nemo-extensions/nemo-emblems/default.nix
··· 1 + { python3 2 + , lib 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "nemo-emblems"; 8 + version = "5.6.0"; 9 + 10 + format = "setuptools"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "linuxmint"; 14 + repo = "nemo-extensions"; 15 + rev = version; 16 + sha256 = "sha256-cxutiz5bc/dZ9D7XzvMWodWNYvNJPj+5IhJDPJwnb5I="; 17 + }; 18 + 19 + sourceRoot = "${src.name}/nemo-emblems"; 20 + 21 + postPatch = '' 22 + substituteInPlace setup.py \ 23 + --replace "/usr/share" "share" 24 + ''; 25 + 26 + meta = with lib; { 27 + homepage = "https://github.com/linuxmint/nemo-extensions/tree/master/nemo-emblems"; 28 + description = "Change a folder or file emblem in Nemo"; 29 + longDescription = '' 30 + Nemo extension that allows you to change folder or file emblems. 31 + When adding this to nemo-with-extensions you also need to add nemo-python. 32 + ''; 33 + license = licenses.gpl3Only; 34 + platforms = platforms.linux; 35 + maintainers = teams.cinnamon.members; 36 + }; 37 + }
+7
pkgs/desktops/cinnamon/nemo/default.nix
··· 67 67 "--localedir=${cinnamon-translations}/share/locale" 68 68 ]; 69 69 70 + preFixup = '' 71 + # Used for some non-fd.o icons (e.g. xapp-text-case-symbolic) 72 + gappsWrapperArgs+=( 73 + --prefix XDG_DATA_DIRS : "${xapp}/share" 74 + ) 75 + ''; 76 + 70 77 # Taken from libnemo-extension.pc. 71 78 passthru.extensiondir = "lib/nemo/extensions-3.0"; 72 79
+3 -3
pkgs/development/python-modules/m3u8/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "m3u8"; 11 - version = "3.4.0"; 11 + version = "3.5.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "globocom"; 15 15 repo = pname; 16 - rev = version; 17 - hash = "sha256-jfCmvAb7bF6nYFNUPXVG61x0RiO4vcyR+x7WzgPRLxI="; 16 + rev = "refs/tags/${version}"; 17 + hash = "sha256-9Xmbc1aL7SI24FFn0/5KJtAM3+Xyvd3bwUh8DU1wGKE="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+38
pkgs/development/tools/misc/licenseclassifier/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "licenseclassifier"; 8 + version = "2.0.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "google"; 12 + repo = "licenseclassifier"; 13 + rev = "v${version}"; 14 + hash = "sha256-j+8hX8W0VD0h09Qmu7POnHT8f8+SeG5Si1fI0CDIwuo="; 15 + }; 16 + 17 + # The new and improved "License Classifier v2" is hidden in a subdirectory. 18 + sourceRoot = "source/v2"; 19 + 20 + vendorHash = "sha256-u0VR8DCmbZS0MF26Y4HfqtLaGyX2n2INdAidVNbnXPE="; 21 + 22 + ldflags = [ "-s" "-w" ]; 23 + 24 + meta = with lib; { 25 + description = "A License Classifier"; 26 + longDescription = '' 27 + The license classifier can analyze text to determine what type of license 28 + it contains. It searches for license texts in a file and compares them to 29 + an archive of known licenses. These files could be, e.g., LICENSE files 30 + with a single or multiple licenses in it, or source code files with the 31 + license text in a comment. 32 + ''; 33 + homepage = "https://github.com/google/licenseclassifier"; 34 + license = licenses.asl20; 35 + platforms = platforms.unix; 36 + maintainers = with maintainers; [ tnias ]; 37 + }; 38 + }
+3 -3
pkgs/development/tools/toast/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "toast"; 8 - version = "0.47.2"; 8 + version = "0.47.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "stepchowfun"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-SWypxCtgVORYGOAiepfAfqnB4JjMwCC3e8lFZ/9tiCM="; 14 + sha256 = "sha256-rPS0jLlfZFeSHY/zdD1mAPm+00UPJAQuPnK7/hCHeGg="; 15 15 }; 16 16 17 - cargoHash = "sha256-OaPh3/Z9mF56NeHpCehsuJHU6ClzE+beRsAG/lWIwp0="; 17 + cargoHash = "sha256-zCM9h4sJlfeXKyNy5LWrPaAmo2+/um0WSoJcYchYa/E="; 18 18 19 19 checkFlags = [ "--skip=format::tests::code_str_display" ]; # fails 20 20
+3 -3
pkgs/servers/rustypaste/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rustypaste"; 5 - version = "0.9.0"; 5 + version = "0.9.1"; 6 6 7 7 src = fetchFromGitHub{ 8 8 owner = "orhun"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-s0IpyybF0haTQu30QBaPDmCSFivpMeESt9S6a6NWfTM="; 11 + sha256 = "sha256-e7GZlR3P0Jk8JNIHvEi1EWlyw6o+MeYNG+2uDKgo9Z8="; 12 12 }; 13 13 14 - cargoHash = "sha256-87JxmZsjXZ7kf4LHgqrgrWbQtVj/XdZrf0G/6wP/ip8="; 14 + cargoHash = "sha256-QFRZyJFZNg/IqEBAuBPE+hzKV4A6TVVU5Knhsgz279E="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 17 darwin.apple_sdk.frameworks.CoreServices
+3 -3
pkgs/tools/admin/aliyun-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "aliyun-cli"; 5 - version = "3.0.161"; 5 + version = "3.0.165"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "aliyun"; 10 10 repo = pname; 11 11 fetchSubmodules = true; 12 - sha256 = "sha256-UYRCVkeNLaTqjcf3cxIXoT+t1ZhDKUsxsbfJzRMaYVI="; 12 + sha256 = "sha256-WTdUlPtMK4Qssb3E8IBcencI+2gIP6d611tRLkFSV+A="; 13 13 }; 14 14 15 - vendorHash = "sha256-EyaJxlif+jo8N7oi6VCJx/kO+ZR4Mb3od8jJFWbwEoo="; 15 + vendorHash = "sha256-wrFRGzVRN9kJC7uXwh07e1FSv2LBo38AtSjcDOtewks="; 16 16 17 17 subPackages = [ "main" ]; 18 18
+3 -3
pkgs/tools/admin/syft/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "syft"; 5 - version = "0.80.0"; 5 + version = "0.82.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anchore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-q8xMa8Xw02+4w7zN1OkGbvd1NKZb3h4doFMuQzL2/x0="; 11 + hash = "sha256-Pdo/hRcHU0R7bcjFgCGB9cRGA9/OULNkj//VG8cowj0="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; ··· 22 22 }; 23 23 # hash mismatch with darwin 24 24 proxyVendor = true; 25 - vendorHash = "sha256-QhxodA8Qlr33qYIrsQMKePlOcthS6cQMniHCpnewqcQ="; 25 + vendorHash = "sha256-d3Nf/9IyPYbODJ3jL0CHa4Jl2GEoe0VdlR3Br80uYiQ="; 26 26 27 27 nativeBuildInputs = [ installShellFiles ]; 28 28
+16 -1
pkgs/tools/archivers/cpio/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + 5 + # for passthru.tests 6 + , git 7 + , libguestfs 8 + , nixosTests 9 + , rpm 10 + }: 2 11 3 12 stdenv.mkDerivation rec { 4 13 pname = "cpio"; ··· 16 25 ''; 17 26 18 27 enableParallelBuilding = true; 28 + 29 + passthru.tests = { 30 + inherit libguestfs rpm; 31 + git = git.tests.withInstallCheck; 32 + initrd = nixosTests.systemd-initrd-simple; 33 + }; 19 34 20 35 meta = with lib; { 21 36 homepage = "https://www.gnu.org/software/cpio/";
+3 -3
pkgs/tools/system/erdtree/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "erdtree"; 8 - version = "2.0.0"; 8 + version = "3.0.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "solidiquis"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-Bn3gW8jfiX7tuANktAKO5ceokFtvURy2UZoL0+IBPaM="; 14 + hash = "sha256-7PcDXqizLFNDYVPyUKSk4Eq3Zl+GUZfhrRSYnXVT4EQ="; 15 15 }; 16 16 17 - cargoHash = "sha256-Z3R8EmclmEditbGBb1Dd1hgGm34boCSI/fh3TBXxMG0="; 17 + cargoHash = "sha256-Bcw5f2yLhcm+gh6i2RSVTvZt+xU/PdpaWC3RGVm5tEw="; 18 18 19 19 meta = with lib; { 20 20 description = "File-tree visualizer and disk usage analyzer";
+2
pkgs/top-level/all-packages.nix
··· 1627 1627 1628 1628 kubevirt = callPackage ../tools/virtualization/kubevirt { }; 1629 1629 1630 + licenseclassifier = callPackage ../development/tools/misc/licenseclassifier { }; 1631 + 1630 1632 license-cli = callPackage ../tools/misc/license-cli { }; 1631 1633 1632 1634 license-generator = callPackage ../tools/misc/license-generator { };