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