Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
47157337 4e2c1815

+6295 -757
+1 -1
doc/contributing/coding-conventions.chapter.md
··· 454 454 owner = "NixOS"; 455 455 repo = "nix"; 456 456 rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae"; 457 - hash = "ha256-7D4m+saJjbSFP5hOwpQq2FGR2rr+psQMTcyb1ZvtXsQ=; 457 + hash = "ha256-7D4m+saJjbSFP5hOwpQq2FGR2rr+psQMTcyb1ZvtXsQ="; 458 458 } 459 459 ``` 460 460
+7
maintainers/maintainer-list.nix
··· 5005 5005 keys = [{ fingerprint = "7391 BF2D A2C3 B2C9 BE25 ACA9 C7A7 4616 F302 5DF4"; }]; 5006 5006 matrix = "@felipeqq2:pub.solar"; 5007 5007 }; 5008 + felixalbrigtsen = { 5009 + email = "felixalbrigtsen@gmail.com"; 5010 + github = "felixalbrigtsen"; 5011 + githubId = 64613093; 5012 + name = "Felix Albrigtsen"; 5013 + matrix = "@felixalb:pvv.ntnu.no"; 5014 + }; 5008 5015 felixscheinost = { 5009 5016 name = "Felix Scheinost"; 5010 5017 email = "felix.scheinost@posteo.de";
+10
nixos/modules/services/backup/borgbackup.nix
··· 66 66 ${mkKeepArgs cfg} \ 67 67 ${optionalString (cfg.prune.prefix != null) "--glob-archives ${escapeShellArg "${cfg.prune.prefix}*"}"} \ 68 68 $extraPruneArgs 69 + borg compact $extraArgs $extraCompactArgs 69 70 ${cfg.postPrune} 70 71 ''); 71 72 ··· 638 639 example = "--save-space"; 639 640 }; 640 641 642 + extraCompactArgs = mkOption { 643 + type = types.str; 644 + description = lib.mdDoc '' 645 + Additional arguments for {command}`borg compact`. 646 + Can also be set at runtime using `$extraCompactArgs`. 647 + ''; 648 + default = ""; 649 + example = "--cleanup-commits"; 650 + }; 641 651 }; 642 652 } 643 653 ));
+6 -5
nixos/modules/services/continuous-integration/buildbot/master.nix
··· 8 8 cfg = config.services.buildbot-master; 9 9 opt = options.services.buildbot-master; 10 10 11 - python = cfg.package.pythonModule; 11 + package = pkgs.python3.pkgs.toPythonModule cfg.package; 12 + python = package.pythonModule; 12 13 13 14 escapeStr = escape [ "'" ]; 14 15 ··· 212 213 213 214 package = mkOption { 214 215 type = types.package; 215 - default = pkgs.python3Packages.buildbot-full; 216 - defaultText = literalExpression "pkgs.python3Packages.buildbot-full"; 216 + default = pkgs.buildbot-full; 217 + defaultText = literalExpression "pkgs.buildbot-full"; 217 218 description = lib.mdDoc "Package to use for buildbot."; 218 - example = literalExpression "pkgs.python3Packages.buildbot"; 219 + example = literalExpression "pkgs.buildbot"; 219 220 }; 220 221 221 222 packages = mkOption { ··· 255 256 after = [ "network-online.target" ]; 256 257 wantedBy = [ "multi-user.target" ]; 257 258 path = cfg.packages ++ cfg.pythonPackages python.pkgs; 258 - environment.PYTHONPATH = "${python.withPackages (self: cfg.pythonPackages self ++ [ cfg.package ])}/${python.sitePackages}"; 259 + environment.PYTHONPATH = "${python.withPackages (self: cfg.pythonPackages self ++ [ package ])}/${python.sitePackages}"; 259 260 260 261 preStart = '' 261 262 mkdir -vp "${cfg.buildbotDir}"
+4 -3
nixos/modules/services/continuous-integration/buildbot/worker.nix
··· 8 8 cfg = config.services.buildbot-worker; 9 9 opt = options.services.buildbot-worker; 10 10 11 - python = cfg.package.pythonModule; 11 + package = pkgs.python3.pkgs.toPythonModule cfg.package; 12 + python = package.pythonModule; 12 13 13 14 tacFile = pkgs.writeText "aur-buildbot-worker.tac" '' 14 15 import os ··· 129 130 130 131 package = mkOption { 131 132 type = types.package; 132 - default = pkgs.python3Packages.buildbot-worker; 133 + default = pkgs.buildbot-worker; 133 134 defaultText = literalExpression "pkgs.python3Packages.buildbot-worker"; 134 135 description = lib.mdDoc "Package to use for buildbot worker."; 135 136 example = literalExpression "pkgs.python2Packages.buildbot-worker"; ··· 168 169 after = [ "network.target" "buildbot-master.service" ]; 169 170 wantedBy = [ "multi-user.target" ]; 170 171 path = cfg.packages; 171 - environment.PYTHONPATH = "${python.withPackages (p: [ cfg.package ])}/${python.sitePackages}"; 172 + environment.PYTHONPATH = "${python.withPackages (p: [ package ])}/${python.sitePackages}"; 172 173 173 174 preStart = '' 174 175 mkdir -vp "${cfg.buildbotDir}/info"
+7
nixos/modules/services/networking/dhcpd.nix
··· 218 218 219 219 systemd.services = dhcpdService "4" cfg4 // dhcpdService "6" cfg6; 220 220 221 + warnings = [ 222 + '' 223 + The dhcpd4 and dhcpd6 modules will be removed from NixOS 23.11, because ISC DHCP reached its end of life. 224 + See https://www.isc.org/blogs/isc-dhcp-eol/ for details. 225 + Please switch to a different implementation like kea, systemd-networkd or dnsmasq. 226 + '' 227 + ]; 221 228 }; 222 229 223 230 }
+2 -2
nixos/tests/buildbot.nix
··· 23 23 ]; 24 24 }; 25 25 networking.firewall.allowedTCPPorts = [ 8010 8011 9989 ]; 26 - environment.systemPackages = with pkgs; [ git python3Packages.buildbot-full ]; 26 + environment.systemPackages = with pkgs; [ git buildbot-full ]; 27 27 }; 28 28 29 29 bbworker = { pkgs, ... }: { ··· 31 31 enable = true; 32 32 masterUrl = "bbmaster:9989"; 33 33 }; 34 - environment.systemPackages = with pkgs; [ git python3Packages.buildbot-worker ]; 34 + environment.systemPackages = with pkgs; [ git buildbot-worker ]; 35 35 }; 36 36 37 37 gitrepo = { pkgs, ... }: {
+2 -2
pkgs/applications/blockchains/stellar-core/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "stellar-core"; 6 - version = "19.8.0"; 6 + version = "19.9.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "stellar"; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-OaJztBOl5rDiCq+s1sXwuX+Yh+LSJtcnGIQeuMANLdU="; 12 + sha256 = "sha256-00bTqc3YDl/o03Y7NBsgGFwUzb2zYe/A3ccpHPIann8="; 13 13 fetchSubmodules = true; 14 14 }; 15 15
+2 -9
pkgs/applications/editors/neovim/default.nix
··· 35 35 in 36 36 stdenv.mkDerivation rec { 37 37 pname = "neovim-unwrapped"; 38 - version = "0.8.3"; 38 + version = "0.9.0"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "neovim"; 42 42 repo = "neovim"; 43 43 rev = "v${version}"; 44 - hash = "sha256-ItJ8aX/WUfcAovxRsXXyWKBAI92hFloYIZiv7viPIdQ="; 44 + hash = "sha256-4uCPWnjSMU7ac6Q3LT+Em8lVk1MuSegxHMLGQRtFqAs="; 45 45 }; 46 46 47 47 patches = [ ··· 49 49 # necessary so that nix can handle `UpdateRemotePlugins` for the plugins 50 50 # it installs. See https://github.com/neovim/neovim/issues/9413. 51 51 ./system_rplugin_manifest.patch 52 - # make the build reproducible, rebased version of 53 - # https://github.com/neovim/neovim/pull/21586 54 - (fetchpatch { 55 - name = "neovim-build-make-generated-source-files-reproducible.patch"; 56 - url = "https://github.com/raboof/neovim/commit/485dd2af3efbfd174163583c46e0bb2a01ff04f1.patch"; 57 - hash = "sha256-9aRVK4lDkL/W4RVjeKptrZFY7rYYBx6/RGR4bQSbCsM="; 58 - }) 59 52 ]; 60 53 61 54 dontFixCmake = true;
+8 -3
pkgs/applications/editors/vim/plugins/overrides.nix
··· 852 852 853 853 sniprun = 854 854 let 855 - version = "1.2.13"; 855 + version = "1.3.0"; 856 856 src = fetchFromGitHub { 857 857 owner = "michaelb"; 858 858 repo = "sniprun"; 859 859 rev = "v${version}"; 860 - hash = "sha256-VDLBktZChRgorJt/V/wuFQn/SL4yOZIElmntEQEi8Tc="; 860 + hash = "sha256-6UDjrrEtOuB+lrCZVBO4BcZm78qwq8YbQcXAdjNbicY="; 861 861 }; 862 862 sniprun-bin = rustPlatform.buildRustPackage { 863 863 pname = "sniprun-bin"; 864 864 inherit version src; 865 865 866 - cargoSha256 = "sha256-cJwmuwsC81fSH36TRU7xGzlR4pVdjsw73uRaH1uWY+0="; 866 + cargoSha256 = "sha256-ghXYUgXqXvK9RySG/hQR5zpLsyk6L9Htb/UYgMPyWUk="; 867 867 868 868 nativeBuildInputs = [ makeWrapper ]; 869 869 ··· 882 882 patches = [ ./patches/sniprun/fix-paths.patch ]; 883 883 postPatch = '' 884 884 substituteInPlace lua/sniprun.lua --replace '@sniprun_bin@' ${sniprun-bin} 885 + ''; 886 + 887 + postInstall = '' 888 + mkdir $out/doc 889 + ln -s $out/docs/sniprun.txt $out/doc/sniprun.txt 885 890 ''; 886 891 887 892 propagatedBuildInputs = [ sniprun-bin ];
+2 -2
pkgs/applications/file-managers/doublecmd/default.nix
··· 13 13 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 pname = "doublecmd"; 16 - version = "1.0.10"; 16 + version = "1.0.11"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "doublecmd"; 20 20 repo = "doublecmd"; 21 21 rev = "v${finalAttrs.version}"; 22 - hash = "sha256-S30/exZsw9Rs/l5Sml/q7dqUIcS55ZxbLFYv+M9Jr6o="; 22 + hash = "sha256-UV5LooVkCBzUk9E7dYje6t19HOuMCO8jY+fNGTES0KA="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+38
pkgs/applications/file-managers/tuifimanager/default.nix
··· 1 + { lib, python3Packages, fetchFromGitHub }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "tuifimanager"; 5 + version = "2.3.4"; 6 + format = "setuptools"; 7 + 8 + src = fetchFromGitHub { 9 + repo = pname; 10 + owner = "GiorgosXou"; 11 + rev = "v.${version}"; 12 + hash = "sha256-KJYPpeBALyg6Gd1GQgJbvGdJbAT47qO9FnSH7GhO4oQ="; 13 + }; 14 + 15 + postPatch = '' 16 + substituteInPlace pyproject.toml \ 17 + --replace "Send2Trash == 1.8.0" "Send2Trash >= 1.8.0" 18 + ''; 19 + 20 + propagatedBuildInputs = with python3Packages; [ unicurses send2trash ]; 21 + pythonImportsCheck = [ "TUIFIManager" ]; 22 + 23 + # Tests currently cause build to fail 24 + doCheck = false; 25 + 26 + meta = with lib; { 27 + description = "A cross-platform terminal-based termux-oriented file manager"; 28 + longDescription = '' 29 + A cross-platform terminal-based termux-oriented file manager (and component), 30 + meant to be used with a Uni-Curses project or as is. This project is mainly an 31 + attempt to get more attention to the Uni-Curses project. 32 + ''; 33 + homepage = "https://github.com/GiorgosXou/TUIFIManager"; 34 + license = licenses.gpl3Only; 35 + maintainers = with maintainers; [ michaelBelsanti ]; 36 + mainProgram = "tuifi"; 37 + }; 38 + }
+4 -4
pkgs/applications/graphics/image_optim/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - exifr (1.3.9) 4 + exifr (1.3.10) 5 5 fspath (3.1.2) 6 - image_optim (0.31.1) 6 + image_optim (0.31.3) 7 7 exifr (~> 1.2, >= 1.2.2) 8 8 fspath (~> 3.0) 9 9 image_size (>= 1.5, < 4) 10 10 in_threads (~> 1.3) 11 11 progress (~> 3.0, >= 3.0.1) 12 - image_size (3.0.2) 12 + image_size (3.2.0) 13 13 in_threads (1.6.0) 14 14 progress (3.6.0) 15 15 ··· 20 20 image_optim 21 21 22 22 BUNDLED WITH 23 - 2.3.9 23 + 2.4.6
+29 -8
pkgs/applications/graphics/image_optim/default.nix
··· 1 1 { lib, bundlerApp, bundlerUpdateScript, makeWrapper, 2 2 withPngcrush ? true, pngcrush, 3 - withPngout ? true, pngout, 3 + withPngout ? false, pngout, # disabled by default because it's unfree 4 4 withAdvpng ? true, advancecomp, 5 5 withOptipng ? true, optipng, 6 6 withPngquant ? true, pngquant, 7 + withOxipng ? true, oxipng, 7 8 withJhead ? true, jhead, 8 9 withJpegoptim ? true, jpegoptim, 9 10 withJpegrecompress ? true, jpeg-archive, ··· 15 16 with lib; 16 17 17 18 let 18 - optionalDepsPath = [] 19 - ++ optional withPngcrush pngcrush 19 + optionalDepsPath = optional withPngcrush pngcrush 20 20 ++ optional withPngout pngout 21 21 ++ optional withAdvpng advancecomp 22 22 ++ optional withOptipng optipng 23 23 ++ optional withPngquant pngquant 24 + ++ optional withOxipng oxipng 24 25 ++ optional withJhead jhead 25 26 ++ optional withJpegoptim jpegoptim 26 27 ++ optional withJpegrecompress jpeg-archive 27 28 ++ optional withJpegtran libjpeg 28 29 ++ optional withGifsicle gifsicle 29 30 ++ optional withSvgo svgo; 31 + 32 + disabledWorkersFlags = optional (!withPngcrush) "--no-pngcrush" 33 + ++ optional (!withPngout) "--no-pngout" 34 + ++ optional (!withAdvpng) "--no-advpng" 35 + ++ optional (!withOptipng) "--no-optipng" 36 + ++ optional (!withPngquant) "--no-pngquant" 37 + ++ optional (!withOxipng) "--no-oxipng" 38 + ++ optional (!withJhead) "--no-jhead" 39 + ++ optional (!withJpegoptim) "--no-jpegoptim" 40 + ++ optional (!withJpegrecompress) "--no-jpegrecompress" 41 + ++ optional (!withJpegtran) "--no-jpegtran" 42 + ++ optional (!withGifsicle) "--no-gifsicle" 43 + ++ optional (!withSvgo) "--no-svgo"; 30 44 in 31 45 32 46 bundlerApp { ··· 39 53 40 54 postBuild = '' 41 55 wrapProgram $out/bin/image_optim \ 42 - --prefix PATH : ${lib.escapeShellArg (makeBinPath optionalDepsPath)} 56 + --prefix PATH : ${lib.escapeShellArg (makeBinPath optionalDepsPath)} \ 57 + --add-flags "${lib.concatStringsSep " " disabledWorkersFlags}" 43 58 ''; 44 59 45 60 passthru.updateScript = bundlerUpdateScript "image_optim"; 46 61 47 62 meta = with lib; { 48 - description = "Command line tool and ruby interface to optimize (lossless compress, optionally lossy) jpeg, png, gif and svg images using external utilities (advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegrescan, jpegtran, optipng, pngcrush, pngout, pngquant, svgo)"; 49 - homepage = "https://github.com/toy/image_optim"; 50 - license = licenses.mit; 63 + description = "Optimize images using multiple utilities"; 64 + longDescription = '' 65 + Command line tool and ruby interface to optimize (lossless compress, 66 + optionally lossy) jpeg, png, gif and svg images using external utilities 67 + (advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegrescan, 68 + jpegtran, optipng, oxipng, pngcrush, pngout, pngquant, svgo) 69 + ''; 70 + homepage = "https://github.com/toy/image_optim"; 71 + license = licenses.mit; 51 72 maintainers = with maintainers; [ srghma nicknovitski ]; 52 - platforms = platforms.all; 73 + platforms = platforms.all; 53 74 }; 54 75 }
+6 -6
pkgs/applications/graphics/image_optim/gemset.nix
··· 4 4 platforms = []; 5 5 source = { 6 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "0mylhwmh6n4xihxr9s3zj0lc286f5maxbqd4dgk3paqnd7afz88s"; 7 + sha256 = "08fmmswa9fwymwsa2gzlm856ak3y9kjxdzm4zdrcrfyxs2p8yqwc"; 8 8 type = "gem"; 9 9 }; 10 - version = "1.3.9"; 10 + version = "1.3.10"; 11 11 }; 12 12 fspath = { 13 13 groups = ["default"]; ··· 25 25 platforms = []; 26 26 source = { 27 27 remotes = ["https://rubygems.org"]; 28 - sha256 = "1l3n59w1cbvfg2srfa14g3jdqwbkf7l86g4qrgfz3qps7zi0drg7"; 28 + sha256 = "02iw1plldayr1l8bdw2gshq0h083h0fxwji1m1nfhzikz917c07p"; 29 29 type = "gem"; 30 30 }; 31 - version = "0.31.1"; 31 + version = "0.31.3"; 32 32 }; 33 33 image_size = { 34 34 groups = ["default"]; 35 35 platforms = []; 36 36 source = { 37 37 remotes = ["https://rubygems.org"]; 38 - sha256 = "033k72f8n28psm89wv1qwsrnqyzz57ihyivyi442wha6vr9iyjz3"; 38 + sha256 = "10slvvyam8gkdjzlhb3wb21hp46ay18miyh1advwvyny660rmdsb"; 39 39 type = "gem"; 40 40 }; 41 - version = "3.0.2"; 41 + version = "3.2.0"; 42 42 }; 43 43 in_threads = { 44 44 groups = ["default"];
+36
pkgs/applications/misc/transifex-cli/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "transifex-cli"; 8 + version = "1.6.7"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "transifex"; 12 + repo = "cli"; 13 + rev = "v${version}"; 14 + sha256 = "sha256-5166P44HSRKQ0pCh1BCPd1ZUryh/IBDumcnLYA+CSBY="; 15 + }; 16 + 17 + vendorSha256 = "sha256-rcimaHr3fFeHSjZXw1w23cKISCT+9t8SgtPnY/uYGAU="; 18 + 19 + ldflags = [ 20 + "-s" "-w" "-X 'github.com/transifex/cli/internal/txlib.Version=${version}'" 21 + ]; 22 + 23 + postInstall = '' 24 + mv $out/bin/cli $out/bin/tx 25 + ''; 26 + 27 + # Tests contain network calls 28 + doCheck = false; 29 + 30 + meta = with lib; { 31 + description = "The Transifex command-line client"; 32 + homepage = "https://github.com/transifex/transifex-cli"; 33 + license = licenses.asl20; 34 + maintainers = with maintainers; [ thornycrackers ]; 35 + }; 36 + }
+401 -401
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 1 { 2 - version = "111.0.1"; 2 + version = "112.0"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ach/firefox-111.0.1.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ach/firefox-112.0.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "d091c784f3cba9757c8bd86c9f4404d06f5662212eb70545117a9d082b10a430"; 7 + sha256 = "5b3e37c5b934339ff083b0f852a135c6cbb45c6abdf6467ec206a83647a1d8b3"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/af/firefox-111.0.1.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/af/firefox-112.0.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "d4abc2214d4095ef09ff98e59c58d05137ac7ea9b9859563ae91583027286acd"; 12 + sha256 = "af22f08c6528fd447515eb4f914822265bc9e47ee314d7c15487b9bbe1dde42a"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/an/firefox-111.0.1.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/an/firefox-112.0.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "b1330e47c222b62a06ffacc09e02f48b257e9c92a9308118501684216e7ba459"; 17 + sha256 = "0cb1badd023ff3dd7131629229648956596c43e4458affc02273ba5036f810d1"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ar/firefox-111.0.1.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ar/firefox-112.0.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "d50d23d22e245fae1c066520ebf640e6a9d19bb7dc65901a3a0b88ae83b29610"; 22 + sha256 = "673262175ca0f6fa4f7f0c43634ad15f242fea00768c614c97ca0b88abaa5740"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ast/firefox-111.0.1.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ast/firefox-112.0.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "edce3eff5add0de1c5b24de84ff9469f41c46169537c386fd1e1e48b11e050d6"; 27 + sha256 = "649d9bde87232463ffa532f2fa1a2dbc1732134cff8ab3f4628313f26d573bef"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/az/firefox-111.0.1.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/az/firefox-112.0.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "b70b63ebb35d3eaae9b391bf6cbe641b0129ce90d87c235018bcd444d53cc41c"; 32 + sha256 = "15cd7a54db2df0d6894798e508346ea51ccf05b45ba7237875e7fd32fb2a94d5"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/be/firefox-111.0.1.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/be/firefox-112.0.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "2ce1098338ae56025f87c304582966eec5931bb21462a334306e787d73e02a9a"; 37 + sha256 = "1b2050268708cb475d8ced0fb8e0365f243c4993e817a553603e65b600ee7f05"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/bg/firefox-111.0.1.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/bg/firefox-112.0.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "04889789e8096ed4d24876f88eff2de90e5b9987478512a9f9cff2aa48f1c528"; 42 + sha256 = "b6323dd73d10ea547c34cc022bc60312a949f339f0f709fe4d1fbf9cf8859b0e"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/bn/firefox-111.0.1.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/bn/firefox-112.0.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "e8d2e82af0c6b577ed205ea24a96cf908e45382d4ff7338943c1c5957ac74dfe"; 47 + sha256 = "2e6699071dfe0efc6f6860eabb34e3cf64a4de2e11be2292fa5348808e731ab3"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/br/firefox-111.0.1.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/br/firefox-112.0.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "46ff777990bd98c23917c7e8ec875651109cccc1f477a377711ea690cf380028"; 52 + sha256 = "5f488917c05c048fee13153de51a462febb4bd72d2954f2d2f321cd119da5588"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/bs/firefox-111.0.1.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/bs/firefox-112.0.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "44fc3acc5b54cc2d5c22b81a0df9adabe3e41cdc7ffd90708d7b2e61c92bfee2"; 57 + sha256 = "5860c3f2677ce99622a0b575baef36d3db993d2f371b7c6aec72ef2a9d8e0952"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ca-valencia/firefox-111.0.1.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ca-valencia/firefox-112.0.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "45632ba3e707288f6564e958653df5f0a03168f7cb4dfd0578a649941aa29605"; 62 + sha256 = "23ddc52776810445fc0352ebf19b27c2b4729fb8cefce11b0fe7df9f9e505dc4"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ca/firefox-111.0.1.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ca/firefox-112.0.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "57c0548a782850b5ea045c753d3a18b7926d7d2ecde87dbb5d7cc4137085e92f"; 67 + sha256 = "2bbe66c628f5fc9c89880d63868eb5469f1284944728adb5e3741bcd85c57b18"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/cak/firefox-111.0.1.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/cak/firefox-112.0.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "cc5de569e4c4ead2e466fdfb8eaafbea6e15c43881134a2888d0895a32a28c34"; 72 + sha256 = "d319f624941cd354df6bb78434f64cb6de41bad266a1186dbf7ddb0c2cfacec0"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/cs/firefox-111.0.1.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/cs/firefox-112.0.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "24bc4997b0a9ef89d1ad22544e55081e2c1ca7dfaa6f34615741175a1813a9f2"; 77 + sha256 = "614fb174a002e469a8dc83005422c102a6406cf0784d53b7120ddb70a0bdc708"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/cy/firefox-111.0.1.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/cy/firefox-112.0.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "57de8b383ad683fb2b5bc57f7e8ccd158e952f14493010917c75c362344658de"; 82 + sha256 = "111b820566db4fc682768b4ecc3b6583efc4039c44e880ea7bcf5ca352a62dc0"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/da/firefox-111.0.1.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/da/firefox-112.0.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "ec3f0374e6b3cd23ab46c9520a3f8c0d17c3fcb3e185b88d4bf3795b3b3ab342"; 87 + sha256 = "87f670d5a7774d7af54bc20a5c788f47d63f6a1d2dae825889629d8c75057ce2"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/de/firefox-111.0.1.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/de/firefox-112.0.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "554c6c5fb379c96aae5ba9d6c685c770d41467a6ddbb29ac37753066f71b6523"; 92 + sha256 = "36cf31e4b1472f61c80c70a2dde87f1fb56a64cee39484d22b12e76618b73485"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/dsb/firefox-111.0.1.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/dsb/firefox-112.0.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "70c1ed166ab8fb38cb8584f626db8e454ba9679a97f9bb7db4f8f3b5f1ec0853"; 97 + sha256 = "d068e2632550c03d92e7b3b6e3fee961e8d1c1d2bb19408b696ac483317ddb24"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/el/firefox-111.0.1.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/el/firefox-112.0.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "a1028b817d2c427e8c4344091d820c4c3c508615804fa199ccb411202c97ef48"; 102 + sha256 = "44115aad6db9d6d105d9418cf5c22cb71183b6b14f69d4e90642b3bf3fb2be57"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/en-CA/firefox-111.0.1.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/en-CA/firefox-112.0.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "2e2c62f847cb4b9ea233a170bf91c185421e042eafe2a285a5caeb89adfba957"; 107 + sha256 = "ae4e225641700ae32dc7b9a395352352a8cfb2ffc81636f2820684095709d1ca"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/en-GB/firefox-111.0.1.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/en-GB/firefox-112.0.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "b6fb7729a268e496cd98a4b145aa6f7819df91c039e7043d62a664d379209854"; 112 + sha256 = "0f84ca1a632467ce5eb3f7781b24ab6f361d5641b19d1c36aa03a6df2494230e"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/en-US/firefox-111.0.1.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/en-US/firefox-112.0.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "a4075387fd907882c80a03169df258b329a29d605d7e76afe6f2d4a82a8f66c8"; 117 + sha256 = "31d2c3fe549cddaab7576cfde6467ed5a6534b1988adfb921965b60714970349"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/eo/firefox-111.0.1.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/eo/firefox-112.0.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "793b1fedf21d80d686eb3d23c5e44b9f047e695eb3401e157d0cd028ded73154"; 122 + sha256 = "998019dedac2a5f3e15ec6fcfea26f9183effebcf3d9441436c45e87892e7957"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/es-AR/firefox-111.0.1.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/es-AR/firefox-112.0.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "65d1c9ef75c5f771243df2f8161c85bf690163b8d743182d6a7a29461d83a218"; 127 + sha256 = "9bce94e6a9abd75bb74405c5c88d786621703c99a1482f2071cc3ea32e2af07b"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/es-CL/firefox-111.0.1.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/es-CL/firefox-112.0.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "be4098ea2213d21f7ccefe26d0693817f8aa605cde054fd83cb11e0e0597ab28"; 132 + sha256 = "9bdf3fe6bdf49cbdd2f2f6345485609b24160f938a7939a33c9029cbddb9e83c"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/es-ES/firefox-111.0.1.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/es-ES/firefox-112.0.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "1058adeb032b196fa5fc03a8796758d48fe1414cb05e393b290567833ee6fcf4"; 137 + sha256 = "1692def0e39a94bea876efbaee57651d8a3820d0e47581520ed28e2c94412ddf"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/es-MX/firefox-111.0.1.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/es-MX/firefox-112.0.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "e377bc22615cf9881b5b03b1404aa11652e123e8c98529beff22d103ecbab3cd"; 142 + sha256 = "948f0d2e110e6b6980c88c59e0bd3b84df920a490b25ef9d683619390fb12bd3"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/et/firefox-111.0.1.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/et/firefox-112.0.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "73ead886ced43f1c6312d817f89db2bf72f7582f44b4522ee3b536ef02c4b2ab"; 147 + sha256 = "c20d2fe028e2ad2a5b6d2e58bd2f21de02dd75f143b25faae9293225a2c2e411"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/eu/firefox-111.0.1.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/eu/firefox-112.0.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "b6c058d81431c6cbcdbbd4512702364b6855ecfce38182491d48bc5276ea84ec"; 152 + sha256 = "a24feef2fb182796593d97cdfeffc4e4eda5f008f8bc11c679861424eacf9141"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/fa/firefox-111.0.1.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/fa/firefox-112.0.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "7a2aa5d43322649cb546c0ad891e2ed174faef4d8553f4a551e49db0479af638"; 157 + sha256 = "499be0f1463f830c6416939e096e94ebcb4a1d74726558ef9f0547b2ae233247"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ff/firefox-111.0.1.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ff/firefox-112.0.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "9a2385abd2c8860a0bf8314a127338a759106f838b467b332cb46a6b33b9879e"; 162 + sha256 = "5ba8e592f4399dd31d95b06823a342cd6662d0ddd7e3794989ae5c5ac2e52aff"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/fi/firefox-111.0.1.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/fi/firefox-112.0.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "1f3f03f7c85dc0ed66930fd7e8760283be57dc5916762bc409c100eaa9dfcfd8"; 167 + sha256 = "480bafb6c43ef6da5b54543a5f96761e83706a86115247e683393330557cacfb"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/fr/firefox-111.0.1.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/fr/firefox-112.0.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "2daba84f5cc85d05e6b0359dbb553de3bdb3d16b15716c072a0ea154edf69cc2"; 172 + sha256 = "b91bb26a3d6293e88ddc0b74882ab2185c7538df893d952eb64d595b0ccdeb1f"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/fur/firefox-111.0.1.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/fur/firefox-112.0.tar.bz2"; 175 175 locale = "fur"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "786d5d1e9aedd3cb87e5f6d1dfc30a4f52bb4908aa0df9a9225ddf5b2c4eafa7"; 177 + sha256 = "ab91f915296d8208363f6c882c7e29954e9e5506de30ae62b37eceff1d3d7c7b"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/fy-NL/firefox-111.0.1.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/fy-NL/firefox-112.0.tar.bz2"; 180 180 locale = "fy-NL"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "1da0e5b6f6cd5942a5e0d27237077d8020e235ed5b148c61a2b702e113415546"; 182 + sha256 = "981ea5abc2c5ff94029b3c01674892f397f8504c1f180a56e3e8620ac370b99f"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ga-IE/firefox-111.0.1.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ga-IE/firefox-112.0.tar.bz2"; 185 185 locale = "ga-IE"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "1a34cb303971c39495a8e30abaf501dd38254e350cb3338b7d42b42293584dc8"; 187 + sha256 = "5eadd57836438871d6ef96a57e02e60fe6cfddd47e2445703b1d8db80a1d2fc7"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/gd/firefox-111.0.1.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/gd/firefox-112.0.tar.bz2"; 190 190 locale = "gd"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "0b14eb99a1b0aa6670faa33fb356e16570232defaa990ee183c5e068cb485371"; 192 + sha256 = "41666cb94981dc30cfa0113c42743b3812add4df3686a39a64f9a0f2baacbee0"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/gl/firefox-111.0.1.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/gl/firefox-112.0.tar.bz2"; 195 195 locale = "gl"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "38914a030551a90095c7ba494a1b6c00eddb7a5432b3ad6d418e710acfc71294"; 197 + sha256 = "820b660761a9a265618be1061544243d24b82cfcd63a5e1fc8d8525ded22c1d5"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/gn/firefox-111.0.1.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/gn/firefox-112.0.tar.bz2"; 200 200 locale = "gn"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "edd12b8e93e4c2a2b85a67b77f727280ae176568598033cddfc38af4b991d0da"; 202 + sha256 = "9ac4fb8d505a53226f36a9dc002ba42246a5c509d7652a2fec05584a34d6d47c"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/gu-IN/firefox-111.0.1.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/gu-IN/firefox-112.0.tar.bz2"; 205 205 locale = "gu-IN"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "133b28123b30b20a973519a6be23b6af90a60d921a5601779c074f4eb39f21cc"; 207 + sha256 = "ddfe903790c3adf8f809e06a4e2790aa0ae876cfc291c4fdb22984376a8df3c4"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/he/firefox-111.0.1.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/he/firefox-112.0.tar.bz2"; 210 210 locale = "he"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "0173b2b675290f5bfedd80e43eaffccb440715253af3edf9bc4cda19aaf5cf12"; 212 + sha256 = "3e61787c63867631ed76be4c6a9cd9b9853348c912b9c23af06692bdce29315b"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/hi-IN/firefox-111.0.1.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/hi-IN/firefox-112.0.tar.bz2"; 215 215 locale = "hi-IN"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "b01a0b830ff8fe1942ac4bfa1d26828d26c6500a8fada67407f43724690ef2d9"; 217 + sha256 = "4b179b9e9286daffaf2aef9bfccb896475fa2576c92a289f1e4eb0edcb055688"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/hr/firefox-111.0.1.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/hr/firefox-112.0.tar.bz2"; 220 220 locale = "hr"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "f56f733aeba7076a48ba612e3b4dd394da03a3f1babc17ba898b702231fd8fe6"; 222 + sha256 = "275cf0e84b2589e70e753d4c98e2c3925b14b603ed224da201878fc8442cc7a7"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/hsb/firefox-111.0.1.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/hsb/firefox-112.0.tar.bz2"; 225 225 locale = "hsb"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "c95bd7dc148a64cec9a679d6ded2ca6570f18c6c8d5e38ccb5c59d099c22f721"; 227 + sha256 = "c56f94b46d96923eb9c4e75339af0b42a15f3c57e8e39118485bc79636ebfa32"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/hu/firefox-111.0.1.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/hu/firefox-112.0.tar.bz2"; 230 230 locale = "hu"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "1c79dd7adc47569f12e80ac89cc2bb75a1789577a8f5fe62e748aa6a71f54aa7"; 232 + sha256 = "1a5b9a4307deff20db53df233864a503befc25ccedb204f7d88ca6bd867e00a8"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/hy-AM/firefox-111.0.1.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/hy-AM/firefox-112.0.tar.bz2"; 235 235 locale = "hy-AM"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "bd2f401ba297345a46b398e811584b452ee52e6f320807323316c106fdb72099"; 237 + sha256 = "076f4159bf40e38ad730622decef57eff48fbe8e5988f78a5e2fb556a9f6a2e9"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ia/firefox-111.0.1.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ia/firefox-112.0.tar.bz2"; 240 240 locale = "ia"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "3c62b5b953f6ff2b43d2748d591308dfcf43614df051233cd3826af8c88fb136"; 242 + sha256 = "7bcf54767dd38d42d93d0b96ec5135213a29b5d78352d262d9335cd1576fd704"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/id/firefox-111.0.1.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/id/firefox-112.0.tar.bz2"; 245 245 locale = "id"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "e1ce4376557447b5cf4d4302dbe0c9f01e7cca68332f54cfe100fc975156be04"; 247 + sha256 = "dde4e712171c26b64e2b14d725ba93336b9e766bcc7f53fb2093d7fb0a8b057b"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/is/firefox-111.0.1.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/is/firefox-112.0.tar.bz2"; 250 250 locale = "is"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "908b2739f778ecd93626a4e28f49b998c98ff0a6a2d1eb83abd5b56d72702a49"; 252 + sha256 = "680e69de93ff6c96d9f3debe05392d98bb926e6072e04375e2d61e7387c18ee1"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/it/firefox-111.0.1.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/it/firefox-112.0.tar.bz2"; 255 255 locale = "it"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "af7fc0c3e1636711dbc9f23e6fd1bd69b5e5a2dcc22934d4274a1d5b5cccb488"; 257 + sha256 = "3f35ab7843b58d218c6f4e92552549b6b095d71dc1d7d35bdb28f1ef7458d442"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ja/firefox-111.0.1.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ja/firefox-112.0.tar.bz2"; 260 260 locale = "ja"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "57d7febb733d2342146fdd70effaf0f97e88e8ca506536a9f86f76a065297a14"; 262 + sha256 = "3afd18750cf2555fb73d57a753222572fec08e49e7325b16427ecaa1249b51ab"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ka/firefox-111.0.1.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ka/firefox-112.0.tar.bz2"; 265 265 locale = "ka"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "c5df241197b65a330e10e8697295357da1b5a08b1c63257e050c48eee90ca387"; 267 + sha256 = "8bd98c293361382940ad26ed0d654bc70390f66eacda19a7aa3d8bba717bb69a"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/kab/firefox-111.0.1.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/kab/firefox-112.0.tar.bz2"; 270 270 locale = "kab"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "b35b6904f3115fabfab35bf502888194906377f14d04b6c95a67fcfdd4d86e50"; 272 + sha256 = "47dd2bab2c7b5e8046fa0499e48717c3cbcc6a633fab2a74d0a37c58cee80cc4"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/kk/firefox-111.0.1.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/kk/firefox-112.0.tar.bz2"; 275 275 locale = "kk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "a6fd1e9dce4c1b4173e9cb674c90fa68430ca9f50dc22a3fdca39dc2c88d1389"; 277 + sha256 = "50068256add6746481c5102dfd35ce87ee2cfbdb23432cf8d3306ed5e2ce6095"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/km/firefox-111.0.1.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/km/firefox-112.0.tar.bz2"; 280 280 locale = "km"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "d741592b7a7fab744303e6929643e8ddd980543947d5bdfe564a5658a87d1183"; 282 + sha256 = "85045900caa1a361bd79af5058765a3ae7e9a300b1f90975f6f3bc1c07481471"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/kn/firefox-111.0.1.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/kn/firefox-112.0.tar.bz2"; 285 285 locale = "kn"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "0f10f8302b4407d0051fd4e2a07d4c273df67b2446f640b43799e9aee964d433"; 287 + sha256 = "796ffb0a8130931555e23a21977e8e4f9ab8ea6a9fee54ff4410b48a1e56d553"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ko/firefox-111.0.1.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ko/firefox-112.0.tar.bz2"; 290 290 locale = "ko"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "35159ffe1033c9db0b06d53a2182575e49ab519636edfbf69e4a1851e57d1ea4"; 292 + sha256 = "d937b25cc45b3189fce933ef0ba627fd79a79b3a90464eddb0dbb8a366f288c6"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/lij/firefox-111.0.1.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/lij/firefox-112.0.tar.bz2"; 295 295 locale = "lij"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "c1ebe9213a7662ba03d1bbedab80497282c180b4e5d2452357e65f837499fe0e"; 297 + sha256 = "58aab71db6df9d5d277b46d31f8c0197c9d01908adddcd1adf6954118165aa11"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/lt/firefox-111.0.1.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/lt/firefox-112.0.tar.bz2"; 300 300 locale = "lt"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "bdd4eedc22b9f45f2b762548cb0a08ef26e9f3320d8b419d93366c0c09ea0c9e"; 302 + sha256 = "d02bbab7d236ff9b7ada25949337895cfa4c2224470b9ad0f96b25fc34fac870"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/lv/firefox-111.0.1.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/lv/firefox-112.0.tar.bz2"; 305 305 locale = "lv"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "949c756f761e5d0cb069845ca59cfb20f2befdafbc36450be5e29a0d5ac943ba"; 307 + sha256 = "3621f49e44c2cc7dc99303cb454ef330f91a5b19b19c12ba0a1781b908a386e4"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/mk/firefox-111.0.1.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/mk/firefox-112.0.tar.bz2"; 310 310 locale = "mk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "e307b333cb9418d3523db97b50dad5ef8461e56f50d1432ce547bed652b509ad"; 312 + sha256 = "5be36bd63a6c05b445e27c10aeee9dc16e30b08481af4710aab3ceb9327d226f"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/mr/firefox-111.0.1.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/mr/firefox-112.0.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "3a5fba3c81aadd958c3d529115ddc4c36a4399e91f395dff0f4b07efd4a19916"; 317 + sha256 = "a05c77825c7adf0413649f8f580353d086c63b4daa3da0ad408577061819e9a3"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ms/firefox-111.0.1.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ms/firefox-112.0.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "323bc98904bc59f39f11f71aff2165593e2c83841f2271de15a4fdb51a1127dd"; 322 + sha256 = "05d77b0eeaccef202b1a712bdbc3a4297658646b55e680ec1360980960e5a2ae"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/my/firefox-111.0.1.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/my/firefox-112.0.tar.bz2"; 325 325 locale = "my"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "1da08900adc5853afb6d7f8773e59d46d2b9f43047700b5c026922f1e8fef6e5"; 327 + sha256 = "f7703567dbe5ebc9cbb12c45361400009e9ea360ccb03585139834b8958b1e85"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/nb-NO/firefox-111.0.1.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/nb-NO/firefox-112.0.tar.bz2"; 330 330 locale = "nb-NO"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "503d0fb3c823b3a29f2eefaa73e90c49f3fb12e7fd785ae49b0e042ed46de5d2"; 332 + sha256 = "183e9b9ec131621e457f62ede092506189c83f12a2e9a95b6f226478e2b7b445"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ne-NP/firefox-111.0.1.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ne-NP/firefox-112.0.tar.bz2"; 335 335 locale = "ne-NP"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "045df0d24a74949ac50259776bf4b21d4d82d3cb13a1e99e2a0a3be8547ff470"; 337 + sha256 = "cc71c856d696f0314ecd7b1d0727c169e92be7989a7f6c520abec02623ed97bf"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/nl/firefox-111.0.1.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/nl/firefox-112.0.tar.bz2"; 340 340 locale = "nl"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "a99d5a0dc143aa3f09c76184d76348667172027c8ece66021192a9790dbc4b15"; 342 + sha256 = "f69b8000257b28471a93946ba474dbf8669955c175e5411d848e0aabc2aca3bd"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/nn-NO/firefox-111.0.1.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/nn-NO/firefox-112.0.tar.bz2"; 345 345 locale = "nn-NO"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "17f6d971330bbd51c6acf17eb8be69f7697a050b41dd09778e44fdcd4562d130"; 347 + sha256 = "7088ab439789484fca1f97e7500f9096cdef308d3d2b5c003813ef4a0a8873d2"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/oc/firefox-111.0.1.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/oc/firefox-112.0.tar.bz2"; 350 350 locale = "oc"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "de1a0e0a382457896c3783c09ddeecd5bef71859a501a5f0e477dc9a79b08052"; 352 + sha256 = "7093dea0249eae06d00fd45e185a404d166d8822850b98d68628152be8ca3d37"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/pa-IN/firefox-111.0.1.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/pa-IN/firefox-112.0.tar.bz2"; 355 355 locale = "pa-IN"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "1545cce400caa37c93748b135f6dab47dc1bb8357d8065072bc377f8728128ed"; 357 + sha256 = "d2f742748239eb6076024b3c02e557961590a453b17697099ce9c2d8ca3cdf19"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/pl/firefox-111.0.1.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/pl/firefox-112.0.tar.bz2"; 360 360 locale = "pl"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "b6a7e2d3b5b0c3fb929df7d4bdb3a1f040d13796686dd2caa5521d6e0d80d7f8"; 362 + sha256 = "3a543d4a021bf5d7ae434ab97be6c4966b6b101d57731dcd685d05657d4583bb"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/pt-BR/firefox-111.0.1.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/pt-BR/firefox-112.0.tar.bz2"; 365 365 locale = "pt-BR"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "4da56eca264d5ec24bd85e438397c65917420b84845c9a215d410e44d4c10a18"; 367 + sha256 = "ab6e127faf64aa4cf54a00ae5462ea05082a8ebd474cd7c193045c3023cf2b7e"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/pt-PT/firefox-111.0.1.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/pt-PT/firefox-112.0.tar.bz2"; 370 370 locale = "pt-PT"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "df6ac7f7f165beaa3ade2e51f6d550fa442578678725a054b34762fa7dab1a29"; 372 + sha256 = "9f42addf0e2c23daf53a46637aa3fd4fe98269889fb83debe762b50707d29dfd"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/rm/firefox-111.0.1.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/rm/firefox-112.0.tar.bz2"; 375 375 locale = "rm"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "d8cd9f9cc6a4b5d3e1e48607b224b71f858d23c03af9c593719ac148c85aa363"; 377 + sha256 = "b473c7d80372257d2dbd193ee4582a24f98f0c03cab53c5272bf27c94919cb63"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ro/firefox-111.0.1.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ro/firefox-112.0.tar.bz2"; 380 380 locale = "ro"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "c0cc323bcf3ea976caf3849167406fcf6e240134c6c84067eeffab5b7730b84b"; 382 + sha256 = "c9c64e814b2b12f16b8d3033fbd3c146faaa2a3c4b5777161f64252d5d63e998"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ru/firefox-111.0.1.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ru/firefox-112.0.tar.bz2"; 385 385 locale = "ru"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "1677963f9c060694a375b97ff1b60061976b3327337604ebd6d133d1142813ea"; 387 + sha256 = "f8cf8f416b9a82a1b03d9989e512ede25cfb3aa1b58ddffcda0d17b3ae173ff0"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/sc/firefox-111.0.1.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/sc/firefox-112.0.tar.bz2"; 390 390 locale = "sc"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "eb31836c39642e0e6b2704936c7a0017299a5cac7a110cdc852979da26c36c4a"; 392 + sha256 = "6c1a40a2bb9db2b0d6afe63a3c76a774ef888f60f0a23814c2db5d08c77d43d8"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/sco/firefox-111.0.1.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/sco/firefox-112.0.tar.bz2"; 395 395 locale = "sco"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "052d6aeb44d257a4691a90b9e799fb4b19933282345868eb9cfd752707425759"; 397 + sha256 = "0529f55e7b0b6ccc2a3ec92cd0dbdac0210e4c45bbd00d350d08e2d12ece818a"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/si/firefox-111.0.1.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/si/firefox-112.0.tar.bz2"; 400 400 locale = "si"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "4ae7a8080f6ca3afd2a3bf62b06783d552330512bdc344e4daee0fc39566caf8"; 402 + sha256 = "891a18f8f7049997a62e997a17b8254a454335c65c5edcac45f441e931fd8049"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/sk/firefox-111.0.1.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/sk/firefox-112.0.tar.bz2"; 405 405 locale = "sk"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "98667dd948c4fc340f2757a92bbcc78e1d0b623bfcfb3aa9019b35b19a4ae2ac"; 407 + sha256 = "5eca1dfd6ed1b75957d6b4d1a7c0aaea2a140b85e10043e72260dea5938e928d"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/sl/firefox-111.0.1.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/sl/firefox-112.0.tar.bz2"; 410 410 locale = "sl"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "fd363be65cae243b14be236a9c952e5ba0a507157b667a6b911aabf7644fec57"; 412 + sha256 = "26f9946afc6b6b8c7b42f359049bb0b9586d961f9ff45a1490bf6e3a13330fc3"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/son/firefox-111.0.1.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/son/firefox-112.0.tar.bz2"; 415 415 locale = "son"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "ea89884cc645b20aac8e22f52ca37992769eda1777f7c940c0307477030973f5"; 417 + sha256 = "df183627ea5817d7e2741bee238a24674a1cad312d72a412fbb7660c3574f173"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/sq/firefox-111.0.1.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/sq/firefox-112.0.tar.bz2"; 420 420 locale = "sq"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "29b9b1c4b1d60af873926cfd89d8ceda61926e742c49810b6511988e593bc492"; 422 + sha256 = "7dca7529a949bef4d7ea32bef0b4dec8be74ec70b28e3467f3e55ce7e559fbe1"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/sr/firefox-111.0.1.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/sr/firefox-112.0.tar.bz2"; 425 425 locale = "sr"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "c4bad92c4e1b6ee8c7545dc37c7f5225247bcd5261e5d846c8b056a006fb826e"; 427 + sha256 = "38fcf34bc58bb6cfabebcfd5968c6b6183b7188f4f93ce88b195501a43842dfd"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/sv-SE/firefox-111.0.1.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/sv-SE/firefox-112.0.tar.bz2"; 430 430 locale = "sv-SE"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "809508b95a4550afb2388a2e3e671b2af1c2ddfae5d2046c1bf56692d6792e26"; 432 + sha256 = "5ca84fc079c62a62714e22eac1b9b93e9fae9948694995313d98961147aa390e"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/szl/firefox-111.0.1.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/szl/firefox-112.0.tar.bz2"; 435 435 locale = "szl"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "358c4dc8a661d9f6860da9307055c709111f476ca955f1d944d58cc281be5621"; 437 + sha256 = "aba9805904c45d03ea4ab091c5c15bba4e4ee7392b91ce23a4adc57581c1dd22"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ta/firefox-111.0.1.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ta/firefox-112.0.tar.bz2"; 440 440 locale = "ta"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "aa6aafa35e0e12f4b363cf402a718bc4330d646c9d172e269703e8ea9d85df29"; 442 + sha256 = "fbb368a2b49211242273c93f3930824adf41fa06c69f9b84b3dea4f44a80e2f2"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/te/firefox-111.0.1.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/te/firefox-112.0.tar.bz2"; 445 445 locale = "te"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "83ced5c4bd46bcf5d2944cc28d6917abe527709e66ab9749f340c41b150ecabf"; 447 + sha256 = "c3e524c50b92f4df65c733eb57957893b840dbe959ccc94fb70af31eb93cfc01"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/th/firefox-111.0.1.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/th/firefox-112.0.tar.bz2"; 450 450 locale = "th"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "e1772b2e625119923a9268cfdb661516c1bfca302a8383a83d2e1e2566a4a46a"; 452 + sha256 = "eb077d3503427f54497bf6b23cb8a6f20106bbb3f0a42426d3d68ee8b4570c68"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/tl/firefox-111.0.1.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/tl/firefox-112.0.tar.bz2"; 455 455 locale = "tl"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "b59a43703dcc8707d6a01fe997b8ec19291d2a671db8e7099fe3acedd44e4786"; 457 + sha256 = "ad7b565d757eea9f9332fe58846bdfcb1811a88ce378482f1fee33182cf819b0"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/tr/firefox-111.0.1.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/tr/firefox-112.0.tar.bz2"; 460 460 locale = "tr"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "06e32ebe547fa10a38b732487fb9145e520bc1e50a9700f85f7636aa95bedf33"; 462 + sha256 = "1b44f97c0dc636ad87c24b5f4881dfc058b1cac9ab5702b8500080509d078656"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/trs/firefox-111.0.1.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/trs/firefox-112.0.tar.bz2"; 465 465 locale = "trs"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "6a2b7b5a83cd043acb005f987f7efb970bfb68e9d4b88f0f9666d1df3bccaff0"; 467 + sha256 = "185e15f0863c6686580e55114513ff77420353d6280b8bab925d3c7cac969723"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/uk/firefox-111.0.1.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/uk/firefox-112.0.tar.bz2"; 470 470 locale = "uk"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "b9f03249efd133c432997c1c5ff65f2f810d5fbe246a54d72d7658181de728c2"; 472 + sha256 = "4b60d02bd16d187445c8c33f1ad89fedf60f8d5d0b8c00fa9fc9da61cc3245a3"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/ur/firefox-111.0.1.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/ur/firefox-112.0.tar.bz2"; 475 475 locale = "ur"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "f689c3cf37afe1ee59b1407f0b34ad5ba6146630eb92ff4466a3f48533da7178"; 477 + sha256 = "9d5a717414b66bcfd11e2c1f75ff5056ef1189a371a2c13f568a61adcf4fd9d4"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/uz/firefox-111.0.1.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/uz/firefox-112.0.tar.bz2"; 480 480 locale = "uz"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "c162efa511d6bb34a1f81f3ca621f49e07a9a53c3403a2a8f3b9a25e476288b8"; 482 + sha256 = "e7981e8eb720aa9fc241e808d521f0ad6c0222c219e8a6356fdf4331ca628721"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/vi/firefox-111.0.1.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/vi/firefox-112.0.tar.bz2"; 485 485 locale = "vi"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "44ae40e5dc2a5fc387c90059eabb436f352917222b1a89cc072514b2ca2403d0"; 487 + sha256 = "7aef5cf761451e7bbd6569e28af2981b65709d3265bb96ed934d43915a3fcb17"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/xh/firefox-111.0.1.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xh/firefox-112.0.tar.bz2"; 490 490 locale = "xh"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "6fe1d8fdb958d0360cc77330682d5522b7e05ececc7db8477f07f8dc2c96ab8d"; 492 + sha256 = "d12eab3c301a28871c298f351efa84a1aa2613014029e40d8bb46c073fb7224e"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/zh-CN/firefox-111.0.1.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/zh-CN/firefox-112.0.tar.bz2"; 495 495 locale = "zh-CN"; 496 496 arch = "linux-x86_64"; 497 - sha256 = "476f05dde96d321cd9920ae2d56ad6334248ca6d53fdf342942dc6c4d3ce4f7d"; 497 + sha256 = "92d3ab06e3a09be0691c84ffd48c4f897197253f66e6a178e5272a3d8caadf65"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-x86_64/zh-TW/firefox-111.0.1.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/zh-TW/firefox-112.0.tar.bz2"; 500 500 locale = "zh-TW"; 501 501 arch = "linux-x86_64"; 502 - sha256 = "e5d62c2a4fecf41ac3523a420b2021e6ab12db56d7f882008da9212bf4e90873"; 502 + sha256 = "db6dc1a6ed43970404d643cd4f6d1917e9202070719695aa9b4268756278c22c"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ach/firefox-111.0.1.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ach/firefox-112.0.tar.bz2"; 505 505 locale = "ach"; 506 506 arch = "linux-i686"; 507 - sha256 = "de718f2f4be00686fa88fa9bb0fddabc9e58325ed232f5a63bf2aad845f98756"; 507 + sha256 = "7de9c82fe6edbe0876021f730128344d3fc1ef275191093387d662d58599cbd6"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/af/firefox-111.0.1.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/af/firefox-112.0.tar.bz2"; 510 510 locale = "af"; 511 511 arch = "linux-i686"; 512 - sha256 = "8dea9ea3b74a271f66e9999c9b7ac09cc7264c7391d76d6989af704ab86200eb"; 512 + sha256 = "c5632e4c7f4d313bfe63720855bb5ea02aa3559d96199aacdacd11de34a5d55b"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/an/firefox-111.0.1.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/an/firefox-112.0.tar.bz2"; 515 515 locale = "an"; 516 516 arch = "linux-i686"; 517 - sha256 = "aa512e0b4b2561a85c1b0b3320406d580e260def4beb4ef9f46c2d43015a4cb9"; 517 + sha256 = "34b0826655c65ac70be63308d2f6339046a859a5fe4d7e64f7969e54bd689f5f"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ar/firefox-111.0.1.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ar/firefox-112.0.tar.bz2"; 520 520 locale = "ar"; 521 521 arch = "linux-i686"; 522 - sha256 = "97de18e57a0d447980cfc1e55e965704d0583d4cff4f96b3c22cba0e0731928e"; 522 + sha256 = "ab1b031a4783a3ab87199801104df777b5d46fd6034b47b2f4af29ddd031739f"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ast/firefox-111.0.1.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ast/firefox-112.0.tar.bz2"; 525 525 locale = "ast"; 526 526 arch = "linux-i686"; 527 - sha256 = "45096b2c62ac30241ffe6edf39a6c7db8a5f4f9f296f727c7cc64bc784ee6688"; 527 + sha256 = "e6e0195900e50612d58cc3f8e7cf2f74868509ce6378402484fcfa6b3611eaa8"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/az/firefox-111.0.1.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/az/firefox-112.0.tar.bz2"; 530 530 locale = "az"; 531 531 arch = "linux-i686"; 532 - sha256 = "5fda8812aff0629c0b75f783faf409672790f9a23812157057f4361dc9ab89fa"; 532 + sha256 = "3aa1eee51d132f20f8ceee9e391e86befad71ce9fbca64e1171af053503492f3"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/be/firefox-111.0.1.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/be/firefox-112.0.tar.bz2"; 535 535 locale = "be"; 536 536 arch = "linux-i686"; 537 - sha256 = "3866b6cccda2cbd9a48f4f02941b50d2384d19f86a163aa9c5c6e57c8965c4b2"; 537 + sha256 = "77a6ea4c1d9657e4566288156479a878cd6c572770aca97aa7a94daf12ba9255"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/bg/firefox-111.0.1.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/bg/firefox-112.0.tar.bz2"; 540 540 locale = "bg"; 541 541 arch = "linux-i686"; 542 - sha256 = "f62ec62d303e36b30ec4daed4d6e76de6519fc39ed0c805ddcf8c0dc7da1b60c"; 542 + sha256 = "4d282c790d8ed4abbb7ad10de56672e8bef57347760d551b32f28a71b64de5b8"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/bn/firefox-111.0.1.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/bn/firefox-112.0.tar.bz2"; 545 545 locale = "bn"; 546 546 arch = "linux-i686"; 547 - sha256 = "3a6f4ed95eaa7d8205772d7109ca694c8617a0f0ea541e4970bdd9c7508d1f91"; 547 + sha256 = "797b570f75c5cd4cab0fbc5abc4992eb83e1cd109c5ba2588df784827cc29762"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/br/firefox-111.0.1.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/br/firefox-112.0.tar.bz2"; 550 550 locale = "br"; 551 551 arch = "linux-i686"; 552 - sha256 = "d2ad4fba0244e01e19ee46b53ccd287df74d5a031b0c9358a8befbd19cd2eea2"; 552 + sha256 = "3e4ad574d26492e53a84385a558d75b280952abf066be26771f4193e00c6b328"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/bs/firefox-111.0.1.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/bs/firefox-112.0.tar.bz2"; 555 555 locale = "bs"; 556 556 arch = "linux-i686"; 557 - sha256 = "d1449c8b142f4a367af79a072b21f2999df128d9f720e11e1e6be293d40792d9"; 557 + sha256 = "a4b862924d1c20aba4ab2fa0774b5c65509cb6f80902faeb0cac86f691f8887d"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ca-valencia/firefox-111.0.1.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ca-valencia/firefox-112.0.tar.bz2"; 560 560 locale = "ca-valencia"; 561 561 arch = "linux-i686"; 562 - sha256 = "1e0b294a10946eed7e3b0d3956fdf53782fbae2549a652ddecbc223cfd7c1470"; 562 + sha256 = "9c2a188bc5188b79ca89ea90f4cd300f4a680fec945a1b6e663569f1f6f2e19e"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ca/firefox-111.0.1.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ca/firefox-112.0.tar.bz2"; 565 565 locale = "ca"; 566 566 arch = "linux-i686"; 567 - sha256 = "2f610717623248a73495ff48c27b3e86cca6bd5b59496e010cd19753ea518482"; 567 + sha256 = "f6031d641da6e828ea6160aa2ac1a3d9ec31efcbfa69373f33dbcfd1d6282ac0"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/cak/firefox-111.0.1.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/cak/firefox-112.0.tar.bz2"; 570 570 locale = "cak"; 571 571 arch = "linux-i686"; 572 - sha256 = "97a92f3d2533121ea2e400555518233d1b59093aabf86ffd292884028a888a4c"; 572 + sha256 = "9a6553004abc3c548559373a2185405a1a6887898fd2236c4556948fc6faae0f"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/cs/firefox-111.0.1.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/cs/firefox-112.0.tar.bz2"; 575 575 locale = "cs"; 576 576 arch = "linux-i686"; 577 - sha256 = "c6029a1228543ef738d9b918c6f49d51ac3398c0a4cedaa0a6ebebdd721fffb5"; 577 + sha256 = "322f49bd3775410206107645aa1e049cf2ab58f251baf991aa65f0be8bcd867e"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/cy/firefox-111.0.1.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/cy/firefox-112.0.tar.bz2"; 580 580 locale = "cy"; 581 581 arch = "linux-i686"; 582 - sha256 = "6e7be2fb7f8a6fa2fff64e38cbac748e3beff14ecc15fcf010c46b7dfb7fe38e"; 582 + sha256 = "ab47eaab21c51e37af812e2453f4b1685c98489a15b3bb3ed0582c8284ee4bfc"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/da/firefox-111.0.1.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/da/firefox-112.0.tar.bz2"; 585 585 locale = "da"; 586 586 arch = "linux-i686"; 587 - sha256 = "a2dd09832e3811a0bd3bfeeee0ddcdc2ce84d5b6709b990b9284477877d5f1bb"; 587 + sha256 = "188aeb36e3443037cb5bdb84f37db67f238c0a238b71a1ae7cf8ad9fbb49fcc4"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/de/firefox-111.0.1.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/de/firefox-112.0.tar.bz2"; 590 590 locale = "de"; 591 591 arch = "linux-i686"; 592 - sha256 = "b0445b5440a512f7dbeb72d8cb79d2ff5b86f4f730bc2400437e162a812f26ba"; 592 + sha256 = "5a13dbeca2b4cd0161f5a92df210a6642e7bb6167882f42db8627ceb31d30ec8"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/dsb/firefox-111.0.1.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/dsb/firefox-112.0.tar.bz2"; 595 595 locale = "dsb"; 596 596 arch = "linux-i686"; 597 - sha256 = "f2d93f7d93a4180f8ea76090ea56d25aa41931ffef01c7dc320adeeba7c9b7e7"; 597 + sha256 = "e1e212072872a75e17c1c082a1efdecf8fc2288d88aa44a6a349f35811b27ed8"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/el/firefox-111.0.1.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/el/firefox-112.0.tar.bz2"; 600 600 locale = "el"; 601 601 arch = "linux-i686"; 602 - sha256 = "52caf93cbcb555adaab82659c0a4236fb64fb505a2cdbc1eee6885a6786d146a"; 602 + sha256 = "12b61693075bf6037c3333149b77a93a09572e133f43a66b7ffbfaa6984808e3"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/en-CA/firefox-111.0.1.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/en-CA/firefox-112.0.tar.bz2"; 605 605 locale = "en-CA"; 606 606 arch = "linux-i686"; 607 - sha256 = "84e937e4a2eb48f3d54579cdb83ddd6ae91fdc1f642bf61fff08ccd34003458f"; 607 + sha256 = "3da37342412a77622c221ca48ea80877d8597b5403b69d11c898ce12aa13fea4"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/en-GB/firefox-111.0.1.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/en-GB/firefox-112.0.tar.bz2"; 610 610 locale = "en-GB"; 611 611 arch = "linux-i686"; 612 - sha256 = "0a7718421cb9cda64a2ca7fadb56e5a718eff6a267f49485b89f97880d589fd4"; 612 + sha256 = "80ea9f86cf37d64dfd4db5206284eae9807058596e4befa057d19985709cdb89"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/en-US/firefox-111.0.1.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/en-US/firefox-112.0.tar.bz2"; 615 615 locale = "en-US"; 616 616 arch = "linux-i686"; 617 - sha256 = "d857a16de03b072b802b6acd2528f1d7ec931379159faf0a0f6f92fa113c40ee"; 617 + sha256 = "69a2a692718bdcd031cfe31535b2c993567d8bf6bc8d6814c43a4304e8fa470d"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/eo/firefox-111.0.1.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/eo/firefox-112.0.tar.bz2"; 620 620 locale = "eo"; 621 621 arch = "linux-i686"; 622 - sha256 = "6ea0a9850d0e228c4ee1e704ed72efe7dc5129ed3af32cd459c2ec0c5ad87fdf"; 622 + sha256 = "9bc2f1ae29f742fdaafedbc6f4626456dabd276a1bfcc8569affeca3252a3311"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/es-AR/firefox-111.0.1.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/es-AR/firefox-112.0.tar.bz2"; 625 625 locale = "es-AR"; 626 626 arch = "linux-i686"; 627 - sha256 = "085d8decae199ad5a958d6b517a3a3542fb021fb4f95fd383ee27d1bee91e4d2"; 627 + sha256 = "a964125f1c65bd031bd3bd76f79993ea4c44273adbeb95ed36de6ffaf9ad7900"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/es-CL/firefox-111.0.1.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/es-CL/firefox-112.0.tar.bz2"; 630 630 locale = "es-CL"; 631 631 arch = "linux-i686"; 632 - sha256 = "7e0e91299815d87b8f440e40a85e59bd9a5117e6814abbc48eba2176587adecc"; 632 + sha256 = "19ca07a13d4a2218fed1addb3d9297978b00e7e469a37294f8c3cf0aaf4f8998"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/es-ES/firefox-111.0.1.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/es-ES/firefox-112.0.tar.bz2"; 635 635 locale = "es-ES"; 636 636 arch = "linux-i686"; 637 - sha256 = "fb558a9d460af1c18adba0a04ca4ab8fedc1216f8088b41c60b66fbbd5ae639d"; 637 + sha256 = "81ba2970c01d0c1d1465b1f601c2e753b0448d307df09ae49e2ca2257b3ff593"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/es-MX/firefox-111.0.1.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/es-MX/firefox-112.0.tar.bz2"; 640 640 locale = "es-MX"; 641 641 arch = "linux-i686"; 642 - sha256 = "c35c80fbb2d7329dd3bd3e305f7b7343139b1689914835f0f4ab5cc93db7f9b2"; 642 + sha256 = "02605c8bdc81077a491791ffc289c6071943e5e8a7983432a96937224d91a324"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/et/firefox-111.0.1.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/et/firefox-112.0.tar.bz2"; 645 645 locale = "et"; 646 646 arch = "linux-i686"; 647 - sha256 = "edc572e3c3174b6729bd67fccecfae711904312a3b3ea6189b1e289ae0decf22"; 647 + sha256 = "6e83c5ad5eadd62122ebb3d39f6c03239e333a42616f105204ba83482c68b4fc"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/eu/firefox-111.0.1.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/eu/firefox-112.0.tar.bz2"; 650 650 locale = "eu"; 651 651 arch = "linux-i686"; 652 - sha256 = "a0cbde53721106f05a702af6f6355f7d476918ad7b6119a89e528685c8ea9ef9"; 652 + sha256 = "64fa6814864a6189bfbccedc191cb9810519e196a2ddf34725a35446595f5eaf"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/fa/firefox-111.0.1.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/fa/firefox-112.0.tar.bz2"; 655 655 locale = "fa"; 656 656 arch = "linux-i686"; 657 - sha256 = "4322e2b0365cc61f02fa4667879216be1811c4671bea9ffe7c87900780517646"; 657 + sha256 = "23c05ec2684597172470581c9369bec389709dd93b780bc888cc8ed3421e8b9f"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ff/firefox-111.0.1.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ff/firefox-112.0.tar.bz2"; 660 660 locale = "ff"; 661 661 arch = "linux-i686"; 662 - sha256 = "721ff01f42c10990877d75750f9e8e842d775b827f94683e5043906c339ac6e5"; 662 + sha256 = "ec3e121e10423b0141e94f9bc9fe16cc46c6e284c140acf24add74a3ef6fcb10"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/fi/firefox-111.0.1.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/fi/firefox-112.0.tar.bz2"; 665 665 locale = "fi"; 666 666 arch = "linux-i686"; 667 - sha256 = "a3a5c66f3024906c156ce212ef429d674b2aeff0b332fdb1a1812509a701e3ea"; 667 + sha256 = "728d0c84b6d4c9deb81a8d08e3609bbecc8201649a3dac0af4dd13bbc0ac0cfd"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/fr/firefox-111.0.1.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/fr/firefox-112.0.tar.bz2"; 670 670 locale = "fr"; 671 671 arch = "linux-i686"; 672 - sha256 = "34ee8c6d655e09196544684c7699abb103be376860b950d7f0996d07978015ba"; 672 + sha256 = "742f0ad5974032275c54fae54691061153075045f07ad71d47b93adea1d7b61a"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/fur/firefox-111.0.1.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/fur/firefox-112.0.tar.bz2"; 675 675 locale = "fur"; 676 676 arch = "linux-i686"; 677 - sha256 = "c6f893afff5d8dfe9279f1b92dd6f02e4e4081fcbf589db12b46b44bc84d7171"; 677 + sha256 = "225f63643a67fac0eb2db946e819afb730ed32a364a61546d80d192cfd89e530"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/fy-NL/firefox-111.0.1.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/fy-NL/firefox-112.0.tar.bz2"; 680 680 locale = "fy-NL"; 681 681 arch = "linux-i686"; 682 - sha256 = "830a780a5c1b6b8f60590ead7a9ac6bec10e07b2934a0532cd77132426dceb37"; 682 + sha256 = "24ef6ed559bfb5811a482883bd33cbc3a9412141a3f487121a1aa1f5e5893b2a"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ga-IE/firefox-111.0.1.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ga-IE/firefox-112.0.tar.bz2"; 685 685 locale = "ga-IE"; 686 686 arch = "linux-i686"; 687 - sha256 = "72bf033f4168cb7905971582ad32de38bf957c535d6d638abbd77f03a573c75e"; 687 + sha256 = "a8bef67521297b9b6a089cd7c1b5c2c19d5d2a1845bb73b97beb70b1eb046f80"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/gd/firefox-111.0.1.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/gd/firefox-112.0.tar.bz2"; 690 690 locale = "gd"; 691 691 arch = "linux-i686"; 692 - sha256 = "8c5cdc6798bfb82748986d5c6c04d1a91f21510cef53093970d635e6d460e9f9"; 692 + sha256 = "4edfd3f269213dddabc6682893a27c24fc69614160cd19e3da3ca24906a571a8"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/gl/firefox-111.0.1.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/gl/firefox-112.0.tar.bz2"; 695 695 locale = "gl"; 696 696 arch = "linux-i686"; 697 - sha256 = "4dc7e306027e1305798f7df3cfe55c1dd54626e4c8d14a2e072cfbbf0968ce87"; 697 + sha256 = "4cfb046bbd7e70029ad697abcb40536f34e8d6c22228ea4cc79f4dd36a48d5c2"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/gn/firefox-111.0.1.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/gn/firefox-112.0.tar.bz2"; 700 700 locale = "gn"; 701 701 arch = "linux-i686"; 702 - sha256 = "ede50b9d975a314d1306d8d53cc1f860f60f085d3fadaf08d26041fedf167f18"; 702 + sha256 = "001c3206f38b9c7053e3ae6b068fb245bcde6ace31be322f7bfd5c2c9f4c5f67"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/gu-IN/firefox-111.0.1.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/gu-IN/firefox-112.0.tar.bz2"; 705 705 locale = "gu-IN"; 706 706 arch = "linux-i686"; 707 - sha256 = "13de190cdab7b6af3773f9326af856822668cf4a0e60163942d1297a91e65ff7"; 707 + sha256 = "1af0d38f6be210f9f5aa62752982ee95e115d3eade6e10bfbd9b45e699d3c876"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/he/firefox-111.0.1.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/he/firefox-112.0.tar.bz2"; 710 710 locale = "he"; 711 711 arch = "linux-i686"; 712 - sha256 = "a7d3bd7a4951b13458957db29d76d0e3db0a04ceb9e8c2af4ce2a85e6a676c5a"; 712 + sha256 = "32d34998b4cb5f30d7f21695bb7c50511c9810f652b387b87566315bd51a6688"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/hi-IN/firefox-111.0.1.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/hi-IN/firefox-112.0.tar.bz2"; 715 715 locale = "hi-IN"; 716 716 arch = "linux-i686"; 717 - sha256 = "3946158cd33859b9a33e4c4cb1ea82fc3435be819f84f72828143ab09d82f63e"; 717 + sha256 = "8acdf419e6a3dd191f7e8d10c1d33eac02ef8ec93ea6486278b1ed3182c93536"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/hr/firefox-111.0.1.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/hr/firefox-112.0.tar.bz2"; 720 720 locale = "hr"; 721 721 arch = "linux-i686"; 722 - sha256 = "1f0a43f7f17037d00a87d5604135fa47909873ce763e660da89fb042bdf4c041"; 722 + sha256 = "ebac36e1550d70237306d3f69db9a029333c2e7cdcd0321fc4f0da8dee3c8e9f"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/hsb/firefox-111.0.1.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/hsb/firefox-112.0.tar.bz2"; 725 725 locale = "hsb"; 726 726 arch = "linux-i686"; 727 - sha256 = "1c1b18be27f08d262dc4742191d988bb41de9310f1ec0cb594e515dd2dd18423"; 727 + sha256 = "6b5eea0bccf7a82484e7a0dab090716ebdb82a79151abc9d77aec1d5032356d3"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/hu/firefox-111.0.1.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/hu/firefox-112.0.tar.bz2"; 730 730 locale = "hu"; 731 731 arch = "linux-i686"; 732 - sha256 = "23fe4493b1204043c6d63e7f4b94bd3c7aa63bb74bff4ec10a4d49191130b75a"; 732 + sha256 = "3abded26ade27554c48c6d0903d6cc5c5f1576766979542c80746c955cdbc9f4"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/hy-AM/firefox-111.0.1.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/hy-AM/firefox-112.0.tar.bz2"; 735 735 locale = "hy-AM"; 736 736 arch = "linux-i686"; 737 - sha256 = "cac5ace4bbcb2b3a68c6b39e0245dd74863f5782d25f40d812447aaa46feb19c"; 737 + sha256 = "50188c1333f393e7bb77d50d2adef4b52950bfa86fca993594f8db01a02f4a48"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ia/firefox-111.0.1.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ia/firefox-112.0.tar.bz2"; 740 740 locale = "ia"; 741 741 arch = "linux-i686"; 742 - sha256 = "b0217c2bd618ad60cf7fcaf7daea0fad9c0ac1aa131c9b6018adbeed085aa645"; 742 + sha256 = "cd2d66e303293cc7e81d2f571a5ad76f85bacaa59191ec31dff62ea31d4b0ccb"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/id/firefox-111.0.1.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/id/firefox-112.0.tar.bz2"; 745 745 locale = "id"; 746 746 arch = "linux-i686"; 747 - sha256 = "e69960d1d33c7a7c7ac8532942c8df19c36b8acd38ea9d1fa64f39daf56cb7cd"; 747 + sha256 = "f2ebdc1585a49b2b489c8ac95240d0f8aa51473d0b78fdaeac234b6020696083"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/is/firefox-111.0.1.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/is/firefox-112.0.tar.bz2"; 750 750 locale = "is"; 751 751 arch = "linux-i686"; 752 - sha256 = "893ffc7f282f868fefbe90998ab661369544cc2fda94cd8aa35e1df28c174862"; 752 + sha256 = "095d254ff1e7fa05ac0723adf48c532e38fc5f7bb6cec81dc10139e0e070049f"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/it/firefox-111.0.1.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/it/firefox-112.0.tar.bz2"; 755 755 locale = "it"; 756 756 arch = "linux-i686"; 757 - sha256 = "ac00b01a1eb13feb0391a7b0305eabfbcfa6bfedcaf6f0da81546cc344779e9e"; 757 + sha256 = "0b731f69e7a08e6d022f0225b9992812e4d63216195f6519ce7b99ab9d3c368a"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ja/firefox-111.0.1.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ja/firefox-112.0.tar.bz2"; 760 760 locale = "ja"; 761 761 arch = "linux-i686"; 762 - sha256 = "e3e09ce43f2ec940f2ce7cfcc1e9c3977ca32373666e021616a3c1a70511c672"; 762 + sha256 = "f3c84a776baef1a7b5ba7e232ebec5df71d06bf9317bcdd2cb6ab6ff72ef1691"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ka/firefox-111.0.1.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ka/firefox-112.0.tar.bz2"; 765 765 locale = "ka"; 766 766 arch = "linux-i686"; 767 - sha256 = "27981ed3f705a0b8680b34315cebe744dc642a7306c8b951a08034cf06724090"; 767 + sha256 = "cddc9cb826352cc94f42e600068f586c1e74c53d77df6c4cebe4f3008e3a9e90"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/kab/firefox-111.0.1.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/kab/firefox-112.0.tar.bz2"; 770 770 locale = "kab"; 771 771 arch = "linux-i686"; 772 - sha256 = "c0d39ef2095fe95a8fe8bbadf2f8436a7d8f3fb35f0f5091e2a72228990a7898"; 772 + sha256 = "dbc1b443083dda4bcf9b6fe76a6d4a032c4628d02555f0eda291b1ad99d597c3"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/kk/firefox-111.0.1.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/kk/firefox-112.0.tar.bz2"; 775 775 locale = "kk"; 776 776 arch = "linux-i686"; 777 - sha256 = "36cb0966178e92647eecba2c7c716f45216f8e7bfa9e25ecb7a5a1744088c598"; 777 + sha256 = "5e8b8d68697fb75cbfd48e6b78a76bbbd0a972cffc3ae43f8b192696c77c72ed"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/km/firefox-111.0.1.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/km/firefox-112.0.tar.bz2"; 780 780 locale = "km"; 781 781 arch = "linux-i686"; 782 - sha256 = "a8e512fea6bd6b57813b47829fc89fab79adaa0fcb49d5f1f35157282b9d1a0a"; 782 + sha256 = "737db59818e7ce5fef6cdb9cf2d5bae9ed5205aef2f4924839fd2428fa70d965"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/kn/firefox-111.0.1.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/kn/firefox-112.0.tar.bz2"; 785 785 locale = "kn"; 786 786 arch = "linux-i686"; 787 - sha256 = "67ec72c4f961c8f29401d925b741f86f3778cb9fb185b1bd14c1e0bec67327a9"; 787 + sha256 = "80a4833c598ae80f7a3dfc8b357041eac8c9061dc2c6dba8c88bea71f9dbd937"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ko/firefox-111.0.1.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ko/firefox-112.0.tar.bz2"; 790 790 locale = "ko"; 791 791 arch = "linux-i686"; 792 - sha256 = "4a1c5e777ad9a965029de9abeec12775923b39b9bf9c73cc7a2395d5a6163b96"; 792 + sha256 = "2000ff98bbaeab440941b366b2e311d3d73d2d0cdf6aca9873a9fc5016ad7b7b"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/lij/firefox-111.0.1.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/lij/firefox-112.0.tar.bz2"; 795 795 locale = "lij"; 796 796 arch = "linux-i686"; 797 - sha256 = "acb60e57696496263914ac308229c1434047d34f64711098a779ab72d03674d9"; 797 + sha256 = "186699b7517b5d8659a76627127533b204642dc417374a3fccef4914fdc13a24"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/lt/firefox-111.0.1.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/lt/firefox-112.0.tar.bz2"; 800 800 locale = "lt"; 801 801 arch = "linux-i686"; 802 - sha256 = "10982738a19da19346a343aa5b1ec82fa040b838cad52a3bb302cbe474895ca0"; 802 + sha256 = "98ad4e67f3ff82c39b83bdc671c9ea91327a5aef0bb1a7c6ca9ea3e5c6ff2879"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/lv/firefox-111.0.1.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/lv/firefox-112.0.tar.bz2"; 805 805 locale = "lv"; 806 806 arch = "linux-i686"; 807 - sha256 = "5e654f88c3a18e68d97996355ad025573899da7550a089dcbf525158624afe88"; 807 + sha256 = "2cbe7f2765dada8f7c1ff1af7b17f6b51be2ec5257822d76f585ac487645e047"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/mk/firefox-111.0.1.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/mk/firefox-112.0.tar.bz2"; 810 810 locale = "mk"; 811 811 arch = "linux-i686"; 812 - sha256 = "25b0cddd4efd914fcf157d3ccb53e814f410e9430915a35b82e43fcd335c5b05"; 812 + sha256 = "567fcd3722b4664f68952fafe13fb0ab0e04fe858c2b3f6021d2726030a6a483"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/mr/firefox-111.0.1.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/mr/firefox-112.0.tar.bz2"; 815 815 locale = "mr"; 816 816 arch = "linux-i686"; 817 - sha256 = "3af959edb7f7a200d6ae4ba2aaf4c45e85a96c02cc8c2accca40b283eb27c299"; 817 + sha256 = "0ab08deea333ea66b5081a4fc418bdecff8179e2e9a73487de32ef45c59771b0"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ms/firefox-111.0.1.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ms/firefox-112.0.tar.bz2"; 820 820 locale = "ms"; 821 821 arch = "linux-i686"; 822 - sha256 = "b229119cd8564b5044c9da1003cc135bfef8b16fab117108cf175b4fe89ad76e"; 822 + sha256 = "0f23f6fd9d3bbe137eb8f321b6de1f22b5fe16a4199dc037e870aa276aa14c0c"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/my/firefox-111.0.1.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/my/firefox-112.0.tar.bz2"; 825 825 locale = "my"; 826 826 arch = "linux-i686"; 827 - sha256 = "f52aa2f21139e18fc5550381d2f0a7980b181001491cd3daf35696c8fb1306f9"; 827 + sha256 = "9d08dc125ec7d2984459bcee7496ad931812dcdd18fbef19631c6bd0ea336c68"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/nb-NO/firefox-111.0.1.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/nb-NO/firefox-112.0.tar.bz2"; 830 830 locale = "nb-NO"; 831 831 arch = "linux-i686"; 832 - sha256 = "25bb3b0e60c9724ce6170bcd200be2f1ea09892e0c42e7e4629875d5c71e1b73"; 832 + sha256 = "1ee31e45e279ba448336d7aa9701b310db153b0ac8ac2fd1d6fc5120488b4e82"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ne-NP/firefox-111.0.1.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ne-NP/firefox-112.0.tar.bz2"; 835 835 locale = "ne-NP"; 836 836 arch = "linux-i686"; 837 - sha256 = "e28a206d92658e66fbab650fd394fb28947b46d1f3d18c538cbb37d33340ce54"; 837 + sha256 = "3b6e001e3982c881106c9f64cfd614f1f8d998ce464bf2205d5826fc88fa49d3"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/nl/firefox-111.0.1.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/nl/firefox-112.0.tar.bz2"; 840 840 locale = "nl"; 841 841 arch = "linux-i686"; 842 - sha256 = "de91b7f4b96ad277bbd92ac41353aa42e972b95a588846f34b29402dac03e4a2"; 842 + sha256 = "ace49029f77f96ca0f94ba9fc6c2fa3cdd53201b75899cfc3cb9579a6cace0b1"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/nn-NO/firefox-111.0.1.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/nn-NO/firefox-112.0.tar.bz2"; 845 845 locale = "nn-NO"; 846 846 arch = "linux-i686"; 847 - sha256 = "bfdcedb2e9caeb8c83c0a8a1c462961842284d2d2a56cf91d1fee807300e3b22"; 847 + sha256 = "f3d2305b291234eb655050a384190f4510d0f9dba85aeef019106cc0911061eb"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/oc/firefox-111.0.1.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/oc/firefox-112.0.tar.bz2"; 850 850 locale = "oc"; 851 851 arch = "linux-i686"; 852 - sha256 = "b40a4b06c4f12a172453d41b20cc51d54a0869babb80c359984f34a2c44900c6"; 852 + sha256 = "0595e5220ac48389ef027f6ec2f03ff8ba3e888e54d48b35973ef45b0b9f60fd"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/pa-IN/firefox-111.0.1.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/pa-IN/firefox-112.0.tar.bz2"; 855 855 locale = "pa-IN"; 856 856 arch = "linux-i686"; 857 - sha256 = "1b40f46895055e6c3d5d956f5ca3b34ea7e7d73658a7beb3306fb63865504f20"; 857 + sha256 = "92170c855af452f272443c1f58d32013161b15a442ebd7153e8df238a44c1a08"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/pl/firefox-111.0.1.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/pl/firefox-112.0.tar.bz2"; 860 860 locale = "pl"; 861 861 arch = "linux-i686"; 862 - sha256 = "78af19869ce30f66077ac160a97932800a3711bbfd3fb6847c3fb747d445d1dd"; 862 + sha256 = "a04ea9e555b7b07c24768bda598e027a21d2264556d0b04ed86c66d72deab303"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/pt-BR/firefox-111.0.1.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/pt-BR/firefox-112.0.tar.bz2"; 865 865 locale = "pt-BR"; 866 866 arch = "linux-i686"; 867 - sha256 = "dc24ba9da33fa6b18824ff9ab0026fdca7b19af44e8066a35c03c68b58f62708"; 867 + sha256 = "bb233d788561988839b7f598e7e518c5e91812e899741fe70b9937458d3cdf93"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/pt-PT/firefox-111.0.1.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/pt-PT/firefox-112.0.tar.bz2"; 870 870 locale = "pt-PT"; 871 871 arch = "linux-i686"; 872 - sha256 = "355c54ad8e4b1576574b7579d9fee9fe13e528ca8bf69185dd8d9fb2f4c2337a"; 872 + sha256 = "397a54320e2a0d5e48fed911e42f4257b746a9997a158f55674a5e99c16e776b"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/rm/firefox-111.0.1.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/rm/firefox-112.0.tar.bz2"; 875 875 locale = "rm"; 876 876 arch = "linux-i686"; 877 - sha256 = "c4ab238e9284cb3dc3c338ccc67f140a1cdb3b3a7ab8b2382a1fa159da548184"; 877 + sha256 = "2d01ae50894853b752001f9157f3c7281dcb14cc09209ec6d7a2113094ba30b3"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ro/firefox-111.0.1.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ro/firefox-112.0.tar.bz2"; 880 880 locale = "ro"; 881 881 arch = "linux-i686"; 882 - sha256 = "2959e44d2ce1a8529465246ef016c188ed8b6b42adfb7f364987a530200ac578"; 882 + sha256 = "e388080e9eef604cd54aaadd25a8815d52e8fbfaac6479a4198532b9c000be0d"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ru/firefox-111.0.1.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ru/firefox-112.0.tar.bz2"; 885 885 locale = "ru"; 886 886 arch = "linux-i686"; 887 - sha256 = "21c41f61cbe1685ee0a042f63957c492da59a8633e8cc3b11d02fc24d78c8423"; 887 + sha256 = "bec635e4903cecd80828a935381f66638a3be49ab820989976f527fd3484c5f0"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/sc/firefox-111.0.1.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/sc/firefox-112.0.tar.bz2"; 890 890 locale = "sc"; 891 891 arch = "linux-i686"; 892 - sha256 = "0518d1a0465d8a7b02ae64403e44609b69c92f4411621f3d679bf84615baae40"; 892 + sha256 = "373801a06d137c0c7d729e995ed899586aabb23c93d3c141079ed3e6fb0c8c78"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/sco/firefox-111.0.1.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/sco/firefox-112.0.tar.bz2"; 895 895 locale = "sco"; 896 896 arch = "linux-i686"; 897 - sha256 = "241f6513370f5d4f5fd107ae5dcf8e6c3f7d108fcf4836b26a7d2f1d7e2d59ac"; 897 + sha256 = "98fa91e108fd6ddd6d05d03015250a7a8a6cfdef407cf0e06b4b693a5f783536"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/si/firefox-111.0.1.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/si/firefox-112.0.tar.bz2"; 900 900 locale = "si"; 901 901 arch = "linux-i686"; 902 - sha256 = "4beb66736c4f6060ec58923e70428fa57867ac63d5370b2684aabc869736edcf"; 902 + sha256 = "d48c658c156b90cae5605db1ae65ff0ef413f036b07ed761fcd10b8812ac0f66"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/sk/firefox-111.0.1.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/sk/firefox-112.0.tar.bz2"; 905 905 locale = "sk"; 906 906 arch = "linux-i686"; 907 - sha256 = "9ed77e6b854f6eef491969e57383dafd1e33425ccf18e4ba6544e801c92afd5d"; 907 + sha256 = "a4905df616bb512f764179d2a7befad120fcfefaae922e653ef7f1efecca283b"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/sl/firefox-111.0.1.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/sl/firefox-112.0.tar.bz2"; 910 910 locale = "sl"; 911 911 arch = "linux-i686"; 912 - sha256 = "913842241c2d4751126131d60e7e1127ebfad6a0cdee626a8fad9fd704d63311"; 912 + sha256 = "b23a531371d80f79a3698cca1e4eaba2326da9318fce7df3dafc3bde62a446a3"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/son/firefox-111.0.1.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/son/firefox-112.0.tar.bz2"; 915 915 locale = "son"; 916 916 arch = "linux-i686"; 917 - sha256 = "de585f93a911b7c4ce86f8ca9c583b87484829e0ee07f8a8d050f911c2b25456"; 917 + sha256 = "89c998c5ee99267e4d001a0be5a99eea34f75cb4d3e2c6af1db72a74a57291b0"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/sq/firefox-111.0.1.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/sq/firefox-112.0.tar.bz2"; 920 920 locale = "sq"; 921 921 arch = "linux-i686"; 922 - sha256 = "54bbdd8faa7300ec1447672c47ef041f7bde18e0a4a171cb85d0341f20565d03"; 922 + sha256 = "c353caca756e36a6e1e9434b9992bafd7fc379dcd0408a2f64d5434d99fbe022"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/sr/firefox-111.0.1.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/sr/firefox-112.0.tar.bz2"; 925 925 locale = "sr"; 926 926 arch = "linux-i686"; 927 - sha256 = "8daeb4d77fa9125edbe9adb953ca529e603330d3f0fa0ca1eeef7db10a3dbb44"; 927 + sha256 = "d8f2caed8388230b2d37d4228ab53bd3b7dde0fd597d7ff16d303e1506f40c1e"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/sv-SE/firefox-111.0.1.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/sv-SE/firefox-112.0.tar.bz2"; 930 930 locale = "sv-SE"; 931 931 arch = "linux-i686"; 932 - sha256 = "9ede3595b3d8e44731a71f1985fa0c1d11d4bf2229ab33ef1cb30123ef3ffb57"; 932 + sha256 = "e82906e6f4d3cf49d644a54d840ad6f1de0c58c9820c07e158193eb659467bb6"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/szl/firefox-111.0.1.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/szl/firefox-112.0.tar.bz2"; 935 935 locale = "szl"; 936 936 arch = "linux-i686"; 937 - sha256 = "8eee20c681aad5cfb5d7cf2d05fb4a37b6c6cd6c3126956a5a9b27f3ad1d1081"; 937 + sha256 = "84c74dc9358f2ba4db8b37c751b1b694396f66d6c6005dd314506ca16f0868b6"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ta/firefox-111.0.1.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ta/firefox-112.0.tar.bz2"; 940 940 locale = "ta"; 941 941 arch = "linux-i686"; 942 - sha256 = "63465227c8cadbac1c891315e365a42f79570de8406dc74c0aedc0fabfd2c017"; 942 + sha256 = "439900ed3e9fb7f3c18fd67ae16e6b42294957bf11c049326e02bced4b88da9d"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/te/firefox-111.0.1.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/te/firefox-112.0.tar.bz2"; 945 945 locale = "te"; 946 946 arch = "linux-i686"; 947 - sha256 = "176cf25debf05a5f31e20a34ae6d4d7e24774475b3addc6d9af18b7e267b2d2e"; 947 + sha256 = "493b1a2e2644689920b506115e15b3153fc492ffd0a0e2287947335f0e3aea6c"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/th/firefox-111.0.1.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/th/firefox-112.0.tar.bz2"; 950 950 locale = "th"; 951 951 arch = "linux-i686"; 952 - sha256 = "0ccf17d4dea55e151178571865d5b00b4e0043a4e1336a943e471e458b47aa31"; 952 + sha256 = "febec24221a8cb6004931ae115ee881f8a342a999cd3ba90c06090eb7d65595d"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/tl/firefox-111.0.1.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/tl/firefox-112.0.tar.bz2"; 955 955 locale = "tl"; 956 956 arch = "linux-i686"; 957 - sha256 = "e9a3d66de74a5c25ae630aeea709abb301ec1ea527d694bf72ffd89fc7c9f247"; 957 + sha256 = "dbacf21e7efd9ada61654027738d5bc1b87862afbcfef951332bd3b80f73ef9b"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/tr/firefox-111.0.1.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/tr/firefox-112.0.tar.bz2"; 960 960 locale = "tr"; 961 961 arch = "linux-i686"; 962 - sha256 = "f154888cff96484b0918fb29f32237d53099a0ecaf38b62499444a9f5f1eb2ce"; 962 + sha256 = "7fc6816c28abe9db2477b3b96729096e770fca7bf044c38fdfbb21590945536d"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/trs/firefox-111.0.1.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/trs/firefox-112.0.tar.bz2"; 965 965 locale = "trs"; 966 966 arch = "linux-i686"; 967 - sha256 = "0544708695fd913b20806443ec4efc3f80ba7d258a382cd9e8e18f4c109ea31b"; 967 + sha256 = "10d9a48645a7c4eabbc9ffc62855fd998e0dba2b2fa566c83a14a5f5395eb0d8"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/uk/firefox-111.0.1.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/uk/firefox-112.0.tar.bz2"; 970 970 locale = "uk"; 971 971 arch = "linux-i686"; 972 - sha256 = "0bc4e807f8dd53c3bcc55e9c5aefd079ed14ff5f34c4d1eea497da755e0a80c6"; 972 + sha256 = "e33d93724003d8b55f76e9565192bb2797997aa66f2d35c12dc7086f200c191a"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/ur/firefox-111.0.1.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/ur/firefox-112.0.tar.bz2"; 975 975 locale = "ur"; 976 976 arch = "linux-i686"; 977 - sha256 = "dd2550e4644f0dad92b19e236b3a83e45770316d7959f63c650c720f44e5f4ed"; 977 + sha256 = "aa0cca88be261d10dea5f8449e211c0d7fe72824eb971f46de154be76d5a2df1"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/uz/firefox-111.0.1.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/uz/firefox-112.0.tar.bz2"; 980 980 locale = "uz"; 981 981 arch = "linux-i686"; 982 - sha256 = "dda2c6c00de2b27d46e407762a553b40cd1c1dc1d912b2905e069a44604f0b6a"; 982 + sha256 = "08877588e0d027deb9cd9db2fe45e1169f74dd074f7c886df5d6502343e14c11"; 983 983 } 984 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/vi/firefox-111.0.1.tar.bz2"; 984 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/vi/firefox-112.0.tar.bz2"; 985 985 locale = "vi"; 986 986 arch = "linux-i686"; 987 - sha256 = "a8ad1ef8998b1e123bd7117273014cfe26976fb25b0d72e64c6c49d4c9c4033a"; 987 + sha256 = "74971ee5d592f65872f71fd2049ce73ce4ed65bbc513b36844e1ae45aa44c807"; 988 988 } 989 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/xh/firefox-111.0.1.tar.bz2"; 989 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/xh/firefox-112.0.tar.bz2"; 990 990 locale = "xh"; 991 991 arch = "linux-i686"; 992 - sha256 = "5bb93cc12a12e71d3a943140607f3d7156843da66c36ab83826f483bcad1d8c3"; 992 + sha256 = "9b8579e0c3361e7008aa2e4757645fda1254c63450dc2e63a79a20b032923b31"; 993 993 } 994 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/zh-CN/firefox-111.0.1.tar.bz2"; 994 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/zh-CN/firefox-112.0.tar.bz2"; 995 995 locale = "zh-CN"; 996 996 arch = "linux-i686"; 997 - sha256 = "65155babc3a4d99f4f846a0e9fde1dced68582401f03f45474cd981395bb45d4"; 997 + sha256 = "d2f878182fc94d4630343fe367221a202945d8ef5731a3f790b101193ac0d4d3"; 998 998 } 999 - { url = "https://archive.mozilla.org/pub/firefox/releases/111.0.1/linux-i686/zh-TW/firefox-111.0.1.tar.bz2"; 999 + { url = "https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/zh-TW/firefox-112.0.tar.bz2"; 1000 1000 locale = "zh-TW"; 1001 1001 arch = "linux-i686"; 1002 - sha256 = "a53de9571d098f1b0bc5df94438bd7f3f805dba82c696b91f42ebc075da3de77"; 1002 + sha256 = "8e76787f20c6b2b9cf2796e35dcc9b5ab4f335dd441f34627f1ffc505759c0c6"; 1003 1003 } 1004 1004 ]; 1005 1005 }
+4 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 3 3 rec { 4 4 firefox = buildMozillaMach rec { 5 5 pname = "firefox"; 6 - version = "111.0.1"; 6 + version = "112.0"; 7 7 src = fetchurl { 8 8 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 9 - sha512 = "b16c9399a19cb1de2d865a023d54fbe71c23a363ea4d36cd58f41f64f7ad04bc1b9d8a8448943417516e17337e0ee2afd370c29a72b51b0947161f4ffab6935f"; 9 + sha512 = "6b2bc8c0c93f3109da27168fe7e8f734c6ab4efb4ca56ff2d5e3a52659da71173bba2104037a000623833be8338621fca482f39f836e3910fe2996e6d0a68b39"; 10 10 }; 11 11 12 12 meta = { ··· 85 85 86 86 firefox-esr-102 = buildMozillaMach rec { 87 87 pname = "firefox-esr-102"; 88 - version = "102.9.0esr"; 88 + version = "102.10.0esr"; 89 89 applicationName = "Mozilla Firefox ESR"; 90 90 src = fetchurl { 91 91 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 92 - sha512 = "3923212ce4b7d1f589129025961ff1b380b8aaf1dd074674f3bd63cf14e9a44ff051bda556b7796c25634e153de00ce62243ece15a520f63dd0791a19b2a6685"; 92 + sha512 = "f2b53c35bdd22a3de6f32699b832babcbf499667197c02dd50cf0b6cd956e0f4471f420938c2ab72f0a0686ed99fe74e3184afe9b5f7169130879b8f8fd99f0b"; 93 93 }; 94 94 95 95 meta = {
+9 -3
pkgs/applications/networking/cluster/kubectl-gadget/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubectl-gadget"; 5 - version = "0.14.0"; 5 + version = "0.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "inspektor-gadget"; 9 9 repo = "inspektor-gadget"; 10 10 rev = "v${version}"; 11 - hash = "sha256:16i9biyvzkpgxyfb41afaarnlm59vy02nspln5zq69prg6mp8rwa"; 11 + hash = "sha256:1gn09kpkw8q2lxc8nic7hd1lhp0z4vscs8yvvxjzp1i9mw8s35xh"; 12 12 }; 13 13 14 - vendorHash = "sha256-Kj8gP5393++nPeX38TX6duB9OO/ql7hpRA5gTTtTl+M="; 14 + vendorHash = "sha256-Y76Y3KR80dCx8+f6M0h5J6glGQGhXYE2KQM4jdJcDEM="; 15 15 16 16 CGO_ENABLED = 0; 17 17 18 18 ldflags = [ 19 + "-s" "-w" 19 20 "-X main.version=v${version}" 21 + "-extldflags=-static" 22 + ]; 23 + 24 + tags = [ 25 + "withoutebpf" 20 26 ]; 21 27 22 28 subPackages = [ "cmd/kubectl-gadget" ];
+56
pkgs/applications/networking/gopher/phetch/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , installShellFiles 5 + , rustPlatform 6 + , pkg-config 7 + , openssl 8 + , scdoc 9 + , Security 10 + , which 11 + }: 12 + 13 + rustPlatform.buildRustPackage rec { 14 + pname = "phetch"; 15 + version = "1.2.0"; 16 + 17 + outputs = [ "out" "man" ]; 18 + 19 + src = fetchFromGitHub { 20 + owner = "xvxx"; 21 + repo = pname; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-J+ka7/B37WzVPPE2Krkd/TIiVwuKfI2QYWmT0JHgBGQ="; 24 + }; 25 + 26 + cargoSha256 = "sha256-y3Y5PnZ51Zc3LmVTijUGnb0KaGm28sWOSYxjuM3A1Zk="; 27 + 28 + nativeBuildInputs = [ installShellFiles pkg-config scdoc which ]; 29 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 30 + 31 + postInstall = '' 32 + make manual 33 + installManPage doc/phetch.1 34 + ''; 35 + 36 + doCheck = true; 37 + 38 + meta = with lib; { 39 + description = "A quick lil gopher client for your terminal, written in rust"; 40 + longDescription = '' 41 + phetch is a terminal client designed to help you quickly navigate the gophersphere. 42 + - <1MB executable for Linux, Mac, and NetBSD 43 + - Technicolor design (based on GILD) 44 + - No-nonsense keyboard navigation 45 + - Supports Gopher searches, text and menu pages, and downloads 46 + - Save your favorite Gopher sites with bookmarks 47 + - Opt-in history tracking 48 + - Secure Gopher support (TLS) 49 + - Tor support 50 + ''; 51 + changelog = "https://github.com/xvxx/phetch/releases/tag/v${version}"; 52 + homepage = "https://github.com/xvxx/phetch"; 53 + license = licenses.mit; 54 + maintainers = with maintainers; [ felixalbrigtsen ]; 55 + }; 56 + }
+2 -2
pkgs/applications/networking/remote/waypipe/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "waypipe"; 8 - version = "0.8.5"; 8 + version = "0.8.6"; 9 9 10 10 src = fetchFromGitLab { 11 11 domain = "gitlab.freedesktop.org"; 12 12 owner = "mstoeckl"; 13 13 repo = "waypipe"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-uf2+PSqgZ+RShuVYlR42xMV38tuYbGV+bW1tdXgiZYU="; 15 + hash = "sha256-1VLPnP4BmF9Zha0uVsPjA/WbF/oLfZmdDX57SzqrV5A="; 16 16 }; 17 17 18 18 strictDeps = true;
+2 -2
pkgs/applications/science/math/primecount/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "primecount"; 10 - version = "7.7"; 10 + version = "7.8"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "kimwalisch"; 14 14 repo = "primecount"; 15 15 rev = "v${version}"; 16 - hash = "sha256-6Q9DPnlGKb31QYEGpm78ISfbj90MeLD0/2k2fDZm7cM="; 16 + hash = "sha256-yKk+zXvA/MI7y9gCMwJNYHRYIYgeWyJHjyPi1uNWVnM="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+16 -4
pkgs/applications/version-management/gitsign/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, stdenv, makeWrapper, gitMinimal }: 1 + { lib, buildGoModule, fetchFromGitHub, stdenv, makeWrapper, gitMinimal, testers, gitsign }: 2 2 3 3 buildGoModule rec { 4 4 pname = "gitsign"; 5 - version = "0.4.1"; 5 + version = "0.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sigstore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-lSE4BLwtxicngvnDCcMa6F6c3+Okn9NKAOnT2FGi7kU="; 11 + hash = "sha256-VgkTFYnHKpqZOack5SabOFu2BRespVRhgrsepo0V1mI="; 12 12 }; 13 - vendorSha256 = "sha256-WrVunAxOXXGSbs9OyKydeg4N/s871mt2O3t2e5DxXQo="; 13 + vendorHash = "sha256-zalysp+90+QM5hX7yUudJW61h+3tQOab7ZpcF5kZSB0="; 14 + 15 + subPackages = [ 16 + "." 17 + "cmd/gitsign-credential-cache" 18 + ]; 14 19 15 20 nativeBuildInputs = [ makeWrapper ]; 16 21 17 22 ldflags = [ "-s" "-w" "-buildid=" "-X github.com/sigstore/gitsign/pkg/version.gitVersion=${version}" ]; 18 23 24 + preCheck = '' 25 + # test all paths 26 + unset subPackages 27 + ''; 28 + 19 29 postInstall = '' 20 30 for f in $out/bin/*; do 21 31 wrapProgram $f --prefix PATH : ${lib.makeBinPath [ gitMinimal ]} 22 32 done 23 33 ''; 34 + 35 + passthru.tests.version = testers.testVersion { package = gitsign; }; 24 36 25 37 meta = { 26 38 homepage = "https://github.com/sigstore/gitsign";
+16 -7
pkgs/applications/video/gnomecast/default.nix
··· 1 - { stdenv, lib, python3Packages, gtk3, gobject-introspection, ffmpeg, wrapGAppsHook }: 1 + { stdenv, lib, python3Packages, fetchFromGitHub, gtk3, gobject-introspection, ffmpeg, wrapGAppsHook }: 2 2 3 3 with python3Packages; 4 4 buildPythonApplication rec { 5 5 pname = "gnomecast"; 6 - version = "1.9.11"; 6 + version = "unstable-2022-04-23"; 7 7 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "4d8cd7a71f352137252c5a9ee13475bd67fb99594560ecff1efb0f718d8bbaac"; 8 + src = fetchFromGitHub { 9 + owner = "keredson"; 10 + repo = "gnomecast"; 11 + rev = "d42d8915838b01c5cadacb322909e08ffa455d4f"; 12 + sha256 = "sha256-CJpbBuRzEjWb8hsh3HMW4bZA7nyDAwjrERCS5uGdwn8="; 11 13 }; 12 14 13 15 nativeBuildInputs = [ wrapGAppsHook ]; 14 16 propagatedBuildInputs = [ 15 - pychromecast bottle pycaption paste html5lib pygobject3 dbus-python 16 - gtk3 gobject-introspection 17 + pychromecast 18 + bottle 19 + pycaption 20 + paste 21 + html5lib 22 + pygobject3 23 + dbus-python 24 + gtk3 25 + gobject-introspection 17 26 ]; 18 27 19 28 # NOTE: gdk-pixbuf setup hook does not run with strictDeps
+3 -3
pkgs/applications/virtualization/firecracker/default.nix
··· 1 1 { fetchurl, lib, stdenv }: 2 2 3 3 let 4 - version = "1.1.3"; 4 + version = "1.3.1"; 5 5 # nixpkgs-update: no auto update 6 6 7 7 suffix = { ··· 23 23 24 24 sourceRoot = "."; 25 25 src = dlbin { 26 - x86_64-linux = "sha256-3+CqVBOb2haknQIMzE9kl99pDWm9wZPUX92FlVov3No="; 27 - aarch64-linux = "sha256-ii+x4YEZIZJuM+1Njvxe1dz6WOvAK1SWqfuodC7a4yo="; 26 + x86_64-linux = "sha256-VfTo3TaTqqBYT2/CZW0F5tGXaT4CyBcKBnP5Xqc1BLI="; 27 + aarch64-linux = "sha256-ODIBa482X8bNhRyvdmIGGi/6BZYif02cf8tAWYRcI2k="; 28 28 }; 29 29 30 30 dontConfigure = true;
+26 -30
pkgs/data/fonts/noto-fonts/default.nix
··· 24 24 Google’s answer to tofu. The name noto is to convey the idea that 25 25 Google’s goal is to see “no more tofu”. Noto has multiple styles and 26 26 weights, and freely available to all. 27 - 28 - This package also includes the Arimo, Cousine, and Tinos fonts. 29 27 ''; 30 28 in 31 29 rec { 32 30 mkNoto = 33 31 { pname 34 - , weights 35 32 , variants ? [ ] 36 33 , longDescription ? notoLongDescription 37 34 }: 38 35 stdenvNoCC.mkDerivation rec { 39 36 inherit pname; 40 - version = "20201206-phase3"; 37 + version = "23.4.1"; 41 38 42 39 src = fetchFromGitHub { 43 - owner = "googlefonts"; 44 - repo = "noto-fonts"; 45 - rev = "v${version}"; 46 - hash = "sha256-x60RvCRFLoGe0CNvswROnDkIsUFbWH+/laN8q2qkUPk="; 40 + owner = "notofonts"; 41 + repo = "notofonts.github.io"; 42 + rev = "noto-monthly-release-${version}"; 43 + hash = "sha256-hiBbhcwktacuoYJnZcsh7Aej5QIrBNkqrel2NhjNjCU="; 47 44 }; 48 45 49 46 _variants = map (variant: builtins.replaceStrings [ " " ] [ "" ] variant) variants; 50 47 51 48 installPhase = '' 52 - # We copy in reverse preference order -- unhinted first, then 53 - # hinted -- to get the "best" version of each font while 49 + # We check availability in order of variable -> otf -> ttf 50 + # unhinted -- the hinted versions use autohint 54 51 # maintaining maximum coverage. 55 52 # 56 - # TODO: install OpenType, variable versions? 57 - local out_ttf=$out/share/fonts/truetype/noto 53 + # We have a mix of otf and ttf fonts 54 + local out_font=$out/share/fonts/noto 58 55 '' + (if _variants == [ ] then '' 59 - install -m444 -Dt $out_ttf archive/unhinted/*/*-${weights}.ttf 60 - install -m444 -Dt $out_ttf archive/hinted/*/*-${weights}.ttf 61 - install -m444 -Dt $out_ttf unhinted/*/*/*-${weights}.ttf 62 - install -m444 -Dt $out_ttf hinted/*/*/*-${weights}.ttf 56 + for folder in $(ls -d fonts/*/); do 57 + if [[ -d "$folder"unhinted/variable-ttf ]]; then 58 + install -m444 -Dt $out_font "$folder"unhinted/variable-ttf/*.ttf 59 + elif [[ -d "$folder"unhinted/otf ]]; then 60 + install -m444 -Dt $out_font "$folder"unhinted/otf/*.otf 61 + else 62 + install -m444 -Dt $out_font "$folder"unhinted/ttf/*.ttf 63 + fi 64 + done 63 65 '' else '' 64 66 for variant in $_variants; do 65 - install -m444 -Dt $out_ttf archive/unhinted/$variant/*-${weights}.ttf 66 - install -m444 -Dt $out_ttf archive/hinted/$variant/*-${weights}.ttf 67 - install -m444 -Dt $out_ttf unhinted/*/$variant/*-${weights}.ttf 68 - install -m444 -Dt $out_ttf hinted/*/$variant/*-${weights}.ttf 67 + if [[ -d fonts/"$variant"/unhinted/variable-ttf ]]; then 68 + install -m444 -Dt $out_font fonts/"$variant"/unhinted/variable-ttf/*.ttf 69 + elif [[ -d fonts/"$variant"/unhinted/otf ]]; then 70 + install -m444 -Dt $out_font fonts/"$variant"/unhinted/otf/*.otf 71 + else 72 + install -m444 -Dt $out_font fonts/"$variant"/unhinted/ttf/*.ttf 73 + fi 69 74 done 70 75 ''); 71 76 ··· 75 80 inherit longDescription; 76 81 license = licenses.ofl; 77 82 platforms = platforms.all; 78 - maintainers = with maintainers; [ mathnerd314 emily ]; 83 + maintainers = with maintainers; [ mathnerd314 emily jopejoe1 ]; 79 84 }; 80 85 }; 81 86 ··· 120 125 121 126 noto-fonts = mkNoto { 122 127 pname = "noto-fonts"; 123 - weights = "{Regular,Bold,Light,Italic,BoldItalic,LightItalic}"; 124 128 }; 125 129 126 130 noto-fonts-lgc-plus = mkNoto { 127 131 pname = "noto-fonts-lgc-plus"; 128 - weights = "{Regular,Bold,Light,Italic,BoldItalic,LightItalic}"; 129 132 variants = [ 130 133 "Noto Sans" 131 134 "Noto Serif" 132 - "Noto Sans Display" 133 - "Noto Serif Display" 134 135 "Noto Sans Mono" 135 136 "Noto Music" 136 137 "Noto Sans Symbols" ··· 143 144 custom Noto package with custom variants, see the `mkNoto` 144 145 helper function. 145 146 ''; 146 - }; 147 - 148 - noto-fonts-extra = mkNoto { 149 - pname = "noto-fonts-extra"; 150 - weights = "{Black,Condensed,Extra,Medium,Semi,Thin}*"; 151 147 }; 152 148 153 149 noto-fonts-cjk-sans = mkNotoCJK {
+2 -2
pkgs/development/compilers/jwasm/default.nix
··· 5 5 6 6 stdenv.mkDerivation (finalAttrs: { 7 7 pname = "jwasm"; 8 - version = "2.16"; 8 + version = "2.17"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "Baron-von-Riedesel"; 12 12 repo = "JWasm"; 13 13 rev = "v${finalAttrs.version}"; 14 - hash = "sha256-X2qqS4ev0+PeA1Gcsi8nivKAGZv7jxThxmQL/Jf5oB0="; 14 + hash = "sha256-22eNtHXF+RQT4UbXIVjn1JP/s6igp5O1oQT7sVl7c1U="; 15 15 }; 16 16 17 17 outputs = [ "out" "doc" ];
+2 -2
pkgs/development/libraries/pupnp/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "libupnp"; 9 - version = "1.14.15"; 9 + version = "1.14.16"; 10 10 11 11 outputs = [ "out" "dev" ]; 12 12 ··· 14 14 owner = "pupnp"; 15 15 repo = "pupnp"; 16 16 rev = "release-${version}"; 17 - sha256 = "sha256-Yrd5sRvFsqBzVHODutK5JHCgoqzh26s/sGmsU2Db+bI="; 17 + sha256 = "sha256-JsissTWnF8GuHSWeCmWOusDYV32Xu0LDRqZCm7yz6YY="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+5 -3
pkgs/development/python-modules/buildbot/default.nix pkgs/development/tools/continuous-integration/buildbot/master.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , buildPythonPackage 4 + , buildPythonApplication 4 5 , fetchPypi 5 6 , makeWrapper 6 7 , pythonOlder ··· 25 26 , lz4 26 27 , setuptoolsTrial 27 28 , buildbot-worker 28 - , buildbot-pkg 29 29 , buildbot-plugins 30 + , buildbot-pkg 30 31 , parameterized 31 32 , git 32 33 , openssh 33 34 , glibcLocales 34 35 , nixosTests 36 + , callPackage 35 37 }: 36 38 37 39 let 38 - withPlugins = plugins: buildPythonPackage { 40 + withPlugins = plugins: buildPythonApplication { 39 41 pname = "${package.pname}-with-plugins"; 40 42 inherit (package) version; 41 43 format = "other"; ··· 61 63 }; 62 64 }; 63 65 64 - package = buildPythonPackage rec { 66 + package = buildPythonApplication rec { 65 67 pname = "buildbot"; 66 68 version = "3.7.0"; 67 69 format = "setuptools";
pkgs/development/python-modules/buildbot/pkg.nix pkgs/development/tools/continuous-integration/buildbot/pkg.nix
+1 -2
pkgs/development/python-modules/buildbot/plugins.nix pkgs/development/tools/continuous-integration/buildbot/plugins.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, buildbot-pkg, mock, cairosvg, klein, jinja2 }: 2 - 1 + { lib, buildPythonPackage, fetchPypi, callPackage, mock, cairosvg, klein, jinja2, buildbot-pkg }: 3 2 { 4 3 www = buildPythonPackage rec { 5 4 pname = "buildbot-www";
pkgs/development/python-modules/buildbot/skip_test_linux_distro.patch pkgs/development/tools/continuous-integration/buildbot/skip_test_linux_distro.patch
pkgs/development/python-modules/buildbot/update.sh pkgs/development/tools/continuous-integration/buildbot/update.sh
pkgs/development/python-modules/buildbot/worker.nix pkgs/development/tools/continuous-integration/buildbot/worker.nix
+14 -16
pkgs/development/python-modules/google-auth/default.nix
··· 1 - { stdenv 2 - , lib 1 + { lib 2 + , stdenv 3 3 , buildPythonPackage 4 - , fetchPypi 5 - , cachetools 6 - , pyasn1-modules 7 - , rsa 8 - , six 9 4 , aiohttp 10 - , cryptography 11 - , pyopenssl 12 - , pyu2f 13 - , requests 14 - , pythonOlder 15 5 , aioresponses 16 - , asynctest 6 + , cachetools 7 + , cryptography 8 + , fetchPypi 17 9 , flask 18 10 , freezegun 19 11 , grpcio 20 12 , mock 21 13 , oauth2client 14 + , pyasn1-modules 15 + , pyopenssl 22 16 , pytest-asyncio 23 17 , pytest-localserver 24 18 , pytestCheckHook 19 + , pythonOlder 20 + , pyu2f 21 + , requests 25 22 , responses 23 + , rsa 24 + , six 26 25 , urllib3 27 26 }: 28 27 29 28 buildPythonPackage rec { 30 29 pname = "google-auth"; 31 - version = "2.16.1"; 30 + version = "2.17.1"; 32 31 format = "setuptools"; 33 32 34 33 disabled = pythonOlder "3.6"; 35 34 36 35 src = fetchPypi { 37 36 inherit pname version; 38 - hash = "sha256-X9FwmGvOa/17tchFxLg2LtseDLqQHgYhlug/i7XV0yw="; 37 + hash = "sha256-jzebRrrTga0qC5id+wwTrSjTwqefJzSCE/iUah0V1Vo="; 39 38 }; 40 39 41 40 propagatedBuildInputs = [ ··· 67 66 68 67 nativeCheckInputs = [ 69 68 aioresponses 70 - asynctest 71 69 flask 72 70 freezegun 73 71 grpcio
+3 -1
pkgs/development/python-modules/rich/default.nix
··· 42 42 pytestCheckHook 43 43 ]; 44 44 45 - pythonImportsCheck = [ "rich" ]; 45 + pythonImportsCheck = [ 46 + "rich" 47 + ]; 46 48 47 49 passthru.tests = { 48 50 inherit enrich httpie rich-rst textual;
+46
pkgs/development/python-modules/sphinx-intl/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , transifex-cli 5 + , babel 6 + , click 7 + , setuptools 8 + , sphinx 9 + , pytestCheckHook 10 + , mock 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "sphinx-intl"; 15 + version = "2.1.0"; 16 + format = "setuptools"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "sphinx-doc"; 20 + repo = pname; 21 + rev = version; 22 + hash = "sha256-U/YCviGrsZNruVzfP0P2dGcB0K0Afh+XUZtp71OeP6c="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + babel 27 + click 28 + setuptools 29 + sphinx 30 + ]; 31 + 32 + nativeCheckInputs = [ 33 + pytestCheckHook 34 + mock 35 + transifex-cli 36 + ]; 37 + 38 + pythonImportsCheck = [ "sphinx_intl" ]; 39 + 40 + meta = with lib; { 41 + description = "Sphinx utility that make it easy to translate and to apply translation"; 42 + homepage = "https://github.com/sphinx-doc/sphinx-intl"; 43 + license = licenses.bsd2; 44 + maintainers = with maintainers; [ thornycrackers ]; 45 + }; 46 + }
+2 -2
pkgs/development/python-modules/time-machine/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "time-machine"; 13 - version = "2.8.2"; 13 + version = "2.9.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "adamchainz"; 20 20 repo = pname; 21 21 rev = version; 22 - hash = "sha256-EFlvO9QlOP351kZAFQ+hwghL+7m+Cin/OyLV3NX+y8E="; 22 + hash = "sha256-mE9unzVh0QXSl93hHH43o8AshDEzrl2NXsBJ2fph5is="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+35
pkgs/development/python-modules/types-pyopenssl/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , cryptography 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "types-pyopenssl"; 9 + version = "23.0.0.4"; 10 + format = "setuptools"; 11 + 12 + src = fetchPypi { 13 + pname = "types-pyOpenSSL"; 14 + inherit version; 15 + hash = "sha256-izVQtuGdUc54qr1ySw2OvZYggaX86V5/haWS3828Fr8="; 16 + }; 17 + 18 + propagatedBuildInputs = [ 19 + cryptography 20 + ]; 21 + 22 + # Module doesn't have tests 23 + doCheck = false; 24 + 25 + pythonImportsCheck = [ 26 + "OpenSSL-stubs" 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Typing stubs for pyopenssl"; 31 + homepage = "https://github.com/python/typeshed"; 32 + license = licenses.asl20; 33 + maintainers = with maintainers; [ gador ]; 34 + }; 35 + }
+7
pkgs/development/python-modules/types-redis/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , cryptography 5 + , types-pyopenssl 4 6 }: 5 7 6 8 buildPythonPackage rec { ··· 12 14 inherit pname version; 13 15 hash = "sha256-dmAXh1TWCkz6z1sz7gY6oGJTEXkcYgdc2TYTZiej978="; 14 16 }; 17 + 18 + propagatedBuildInputs = [ 19 + cryptography 20 + types-pyopenssl 21 + ]; 15 22 16 23 # Module doesn't have tests 17 24 doCheck = false;
+31
pkgs/development/python-modules/unicurses/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, ncurses, x256 }: 2 + 3 + buildPythonPackage rec { 4 + pname = "unicurses"; 5 + version = "2.1.3"; 6 + format = "setuptools"; 7 + 8 + src = fetchPypi { 9 + inherit version; 10 + pname = "Uni-Curses"; 11 + hash = "sha256-uzSiF0jAZzI0iZngM/GuJ60o+UbLQ5XQzycTPito34w="; 12 + }; 13 + 14 + propagatedBuildInputs = [ x256 ]; 15 + 16 + # Necessary because ctypes.util.find_library does not find the ncurses libraries 17 + postPatch = '' 18 + substituteInPlace './unicurses/__init__.py' \ 19 + --replace "find_library('ncursesw')" '"${ncurses}/lib/libncursesw.so.6"' \ 20 + --replace "find_library('panelw')" '"${ncurses}/lib/libpanelw.so.6"' 21 + ''; 22 + 23 + pythonImportsCheck = [ "unicurses" ]; 24 + 25 + meta = with lib; { 26 + description = "Unified Curses Wrapper for Python"; 27 + homepage = "https://github.com/unicurses/unicurses"; 28 + license = licenses.gpl3Only; 29 + maintainers = with maintainers; [ michaelBelsanti ]; 30 + }; 31 + }
+42
pkgs/development/tools/continuous-integration/buildbot/default.nix
··· 1 + { python3 2 + , recurseIntoAttrs 3 + , callPackage 4 + }: 5 + let 6 + python = python3.override { 7 + packageOverrides = self: super: { 8 + sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec { 9 + version = "1.4.40"; 10 + src = super.fetchPypi { 11 + pname = "SQLAlchemy"; 12 + inherit version; 13 + hash = "sha256-RKZgUGCAzJdeHfpXdv5fYxXdxiane1C/Du4YsDieomU="; 14 + }; 15 + }); 16 + moto = super.moto.overridePythonAttrs (oldAttrs: rec { 17 + # a lot of tests -> very slow, we already build them when building python packages 18 + doCheck = false; 19 + }); 20 + }; 21 + }; 22 + 23 + buildbot-pkg = python.pkgs.callPackage ./pkg.nix { 24 + inherit buildbot; 25 + }; 26 + buildbot-worker = python3.pkgs.callPackage ./worker.nix { 27 + inherit buildbot; 28 + }; 29 + buildbot = python.pkgs.callPackage ./master.nix { 30 + inherit buildbot-pkg buildbot-worker buildbot-plugins; 31 + }; 32 + buildbot-plugins = recurseIntoAttrs (callPackage ./plugins.nix { 33 + inherit buildbot-pkg; 34 + }); 35 + in 36 + { 37 + inherit buildbot buildbot-plugins buildbot-worker; 38 + buildbot-ui = buildbot.withPlugins (with buildbot-plugins; [ www ]); 39 + buildbot-full = buildbot.withPlugins (with buildbot-plugins; [ 40 + www console-view waterfall-view grid-view wsgi-dashboards badges 41 + ]); 42 + }
+66
pkgs/development/tools/lv_img_conv/default.nix
··· 1 + { lib 2 + , stdenv 3 + , buildNpmPackage 4 + , fetchFromGitHub 5 + , pkg-config 6 + , python3 7 + , pixman 8 + , libpng 9 + , libjpeg 10 + , librsvg 11 + , giflib 12 + , cairo 13 + , pango 14 + , nodePackages 15 + , makeWrapper 16 + , CoreText 17 + , nix-update-script 18 + }: 19 + 20 + buildNpmPackage rec { 21 + pname = "lv_img_conv"; 22 + version = "0.4.0"; 23 + 24 + src = fetchFromGitHub { 25 + owner = "lvgl"; 26 + repo = pname; 27 + rev = "refs/tags/v${version}"; 28 + hash = "sha256-LB7NZKwrpvps1cKzRoARHL4S48gBHadvxwA6JMmm/ME="; 29 + }; 30 + 31 + npmDepsHash = "sha256-uDF22wlL3BlMQ/+Wmtgyjp4CVN6sDnjqjEPB4SeQuPk="; 32 + 33 + nativeBuildInputs = [ 34 + pkg-config 35 + python3 36 + makeWrapper 37 + ]; 38 + 39 + buildInputs = [ 40 + pixman 41 + libpng 42 + libjpeg 43 + librsvg 44 + giflib 45 + cairo 46 + pango 47 + ] ++ lib.optionals stdenv.isDarwin [ 48 + CoreText 49 + ]; 50 + 51 + postInstall = '' 52 + makeWrapper ${nodePackages.ts-node}/bin/ts-node $out/bin/lv_img_conv --add-flags $out/lib/node_modules/lv_img_conv/lib/cli.ts 53 + ''; 54 + 55 + passthru.updateScript = nix-update-script { 56 + attrPath = pname; 57 + }; 58 + 59 + meta = with lib; { 60 + changelog = "https://github.com/lvgl/lv_img_conv/releases/tag/v${version}"; 61 + description = "Image converter for LVGL"; 62 + homepage = "https://github.com/lvgl/lv_img_conv"; 63 + license = licenses.mit; 64 + maintainers = with maintainers; [ stargate01 ]; 65 + }; 66 + }
+4849
pkgs/games/anki/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "addr2line" 7 + version = "0.19.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "aes" 22 + version = "0.7.5" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 25 + dependencies = [ 26 + "cfg-if", 27 + "cipher 0.3.0", 28 + "cpufeatures", 29 + "opaque-debug", 30 + ] 31 + 32 + [[package]] 33 + name = "ahash" 34 + version = "0.7.6" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 37 + dependencies = [ 38 + "getrandom 0.2.8", 39 + "once_cell", 40 + "version_check", 41 + ] 42 + 43 + [[package]] 44 + name = "aho-corasick" 45 + version = "0.7.20" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 48 + dependencies = [ 49 + "memchr", 50 + ] 51 + 52 + [[package]] 53 + name = "ammonia" 54 + version = "3.3.0" 55 + source = "registry+https://github.com/rust-lang/crates.io-index" 56 + checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170" 57 + dependencies = [ 58 + "html5ever 0.26.0", 59 + "maplit", 60 + "once_cell", 61 + "tendril", 62 + "url", 63 + ] 64 + 65 + [[package]] 66 + name = "android_system_properties" 67 + version = "0.1.5" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 70 + dependencies = [ 71 + "libc", 72 + ] 73 + 74 + [[package]] 75 + name = "anes" 76 + version = "0.1.6" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 79 + 80 + [[package]] 81 + name = "anki" 82 + version = "0.0.0" 83 + dependencies = [ 84 + "ammonia", 85 + "anki_i18n", 86 + "ascii_percent_encoding", 87 + "async-compression", 88 + "async-stream", 89 + "async-trait", 90 + "axum", 91 + "axum-client-ip", 92 + "blake3", 93 + "bytes", 94 + "chrono", 95 + "coarsetime", 96 + "convert_case 0.6.0", 97 + "criterion", 98 + "csv", 99 + "difflib", 100 + "env_logger", 101 + "flate2", 102 + "fluent", 103 + "fluent-bundle", 104 + "fnv", 105 + "futures", 106 + "hex", 107 + "htmlescape", 108 + "hyper", 109 + "id_tree", 110 + "itertools", 111 + "lazy_static", 112 + "nom", 113 + "num-integer", 114 + "num_cpus", 115 + "num_enum", 116 + "once_cell", 117 + "pin-project", 118 + "prost", 119 + "prost-build", 120 + "pulldown-cmark 0.9.2", 121 + "rand 0.8.5", 122 + "regex", 123 + "reqwest", 124 + "rusqlite", 125 + "scopeguard", 126 + "serde", 127 + "serde-aux", 128 + "serde_derive", 129 + "serde_json", 130 + "serde_repr", 131 + "serde_tuple", 132 + "sha1", 133 + "snafu", 134 + "strum", 135 + "tempfile", 136 + "tokio", 137 + "tokio-util", 138 + "tower-http", 139 + "tracing", 140 + "tracing-appender", 141 + "tracing-subscriber", 142 + "unic-ucd-category", 143 + "unicase", 144 + "unicode-normalization", 145 + "utime", 146 + "which", 147 + "windows", 148 + "wiremock", 149 + "workspace-hack", 150 + "zip", 151 + "zstd 0.12.2+zstd.1.5.2", 152 + ] 153 + 154 + [[package]] 155 + name = "anki_i18n" 156 + version = "0.0.0" 157 + dependencies = [ 158 + "fluent", 159 + "fluent-bundle", 160 + "fluent-syntax", 161 + "inflections", 162 + "intl-memoizer", 163 + "num-format", 164 + "phf 0.11.1", 165 + "serde", 166 + "serde_json", 167 + "unic-langid", 168 + "workspace-hack", 169 + ] 170 + 171 + [[package]] 172 + name = "anki_i18n_helpers" 173 + version = "0.0.0" 174 + dependencies = [ 175 + "fluent-syntax", 176 + "lazy_static", 177 + "regex", 178 + "serde_json", 179 + "walkdir", 180 + "workspace-hack", 181 + ] 182 + 183 + [[package]] 184 + name = "anyhow" 185 + version = "1.0.68" 186 + source = "registry+https://github.com/rust-lang/crates.io-index" 187 + checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" 188 + 189 + [[package]] 190 + name = "apple-bundles" 191 + version = "0.17.0" 192 + source = "registry+https://github.com/rust-lang/crates.io-index" 193 + checksum = "716b8a7bacf7325eb3e7a1a7f5ead4da91e1e16d9b56a25edea0e1e4ba21fd8e" 194 + dependencies = [ 195 + "anyhow", 196 + "plist", 197 + "simple-file-manifest", 198 + "walkdir", 199 + ] 200 + 201 + [[package]] 202 + name = "archives" 203 + version = "0.0.0" 204 + dependencies = [ 205 + "camino", 206 + "flate2", 207 + "reqwest", 208 + "sha2", 209 + "tar", 210 + "tokio", 211 + "workspace-hack", 212 + "xz2", 213 + "zip", 214 + "zstd 0.12.2+zstd.1.5.2", 215 + ] 216 + 217 + [[package]] 218 + name = "arrayref" 219 + version = "0.3.6" 220 + source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 222 + 223 + [[package]] 224 + name = "arrayvec" 225 + version = "0.7.2" 226 + source = "registry+https://github.com/rust-lang/crates.io-index" 227 + checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 228 + 229 + [[package]] 230 + name = "ascii_percent_encoding" 231 + version = "0.0.0" 232 + 233 + [[package]] 234 + name = "assert-json-diff" 235 + version = "2.0.2" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 238 + dependencies = [ 239 + "serde", 240 + "serde_json", 241 + ] 242 + 243 + [[package]] 244 + name = "async-channel" 245 + version = "1.8.0" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 248 + dependencies = [ 249 + "concurrent-queue", 250 + "event-listener", 251 + "futures-core", 252 + ] 253 + 254 + [[package]] 255 + name = "async-compression" 256 + version = "0.3.15" 257 + source = "registry+https://github.com/rust-lang/crates.io-index" 258 + checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 259 + dependencies = [ 260 + "futures-core", 261 + "memchr", 262 + "pin-project-lite", 263 + "tokio", 264 + "zstd 0.11.2+zstd.1.5.2", 265 + "zstd-safe 5.0.2+zstd.1.5.2", 266 + ] 267 + 268 + [[package]] 269 + name = "async-stream" 270 + version = "0.3.3" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e" 273 + dependencies = [ 274 + "async-stream-impl", 275 + "futures-core", 276 + ] 277 + 278 + [[package]] 279 + name = "async-stream-impl" 280 + version = "0.3.3" 281 + source = "registry+https://github.com/rust-lang/crates.io-index" 282 + checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" 283 + dependencies = [ 284 + "proc-macro2", 285 + "quote", 286 + "syn", 287 + ] 288 + 289 + [[package]] 290 + name = "async-trait" 291 + version = "0.1.61" 292 + source = "registry+https://github.com/rust-lang/crates.io-index" 293 + checksum = "705339e0e4a9690e2908d2b3d049d85682cf19fbd5782494498fbf7003a6a282" 294 + dependencies = [ 295 + "proc-macro2", 296 + "quote", 297 + "syn", 298 + ] 299 + 300 + [[package]] 301 + name = "atty" 302 + version = "0.2.14" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 305 + dependencies = [ 306 + "hermit-abi 0.1.19", 307 + "libc", 308 + "winapi", 309 + ] 310 + 311 + [[package]] 312 + name = "autocfg" 313 + version = "1.1.0" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 316 + 317 + [[package]] 318 + name = "axum" 319 + version = "0.6.2" 320 + source = "registry+https://github.com/rust-lang/crates.io-index" 321 + checksum = "1304eab461cf02bd70b083ed8273388f9724c549b316ba3d1e213ce0e9e7fb7e" 322 + dependencies = [ 323 + "async-trait", 324 + "axum-core", 325 + "axum-macros", 326 + "bitflags", 327 + "bytes", 328 + "futures-util", 329 + "headers", 330 + "http", 331 + "http-body", 332 + "hyper", 333 + "itoa 1.0.5", 334 + "matchit", 335 + "memchr", 336 + "mime", 337 + "multer", 338 + "percent-encoding", 339 + "pin-project-lite", 340 + "rustversion", 341 + "serde", 342 + "serde_json", 343 + "serde_path_to_error", 344 + "serde_urlencoded", 345 + "sync_wrapper", 346 + "tokio", 347 + "tower", 348 + "tower-http", 349 + "tower-layer", 350 + "tower-service", 351 + ] 352 + 353 + [[package]] 354 + name = "axum-client-ip" 355 + version = "0.3.1" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + checksum = "ddfb5a3ddd6367075d50629546fb46710584016ae7704cd03b6d41cb5be82e5a" 358 + dependencies = [ 359 + "axum", 360 + "forwarded-header-value", 361 + ] 362 + 363 + [[package]] 364 + name = "axum-core" 365 + version = "0.3.1" 366 + source = "registry+https://github.com/rust-lang/crates.io-index" 367 + checksum = "f487e40dc9daee24d8a1779df88522f159a54a980f99cfbe43db0be0bd3444a8" 368 + dependencies = [ 369 + "async-trait", 370 + "bytes", 371 + "futures-util", 372 + "http", 373 + "http-body", 374 + "mime", 375 + "rustversion", 376 + "tower-layer", 377 + "tower-service", 378 + ] 379 + 380 + [[package]] 381 + name = "axum-macros" 382 + version = "0.3.1" 383 + source = "registry+https://github.com/rust-lang/crates.io-index" 384 + checksum = "cc7d7c3e69f305217e317a28172aab29f275667f2e1c15b87451e134fe27c7b1" 385 + dependencies = [ 386 + "heck", 387 + "proc-macro2", 388 + "quote", 389 + "syn", 390 + ] 391 + 392 + [[package]] 393 + name = "backtrace" 394 + version = "0.3.67" 395 + source = "registry+https://github.com/rust-lang/crates.io-index" 396 + checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 397 + dependencies = [ 398 + "addr2line", 399 + "cc", 400 + "cfg-if", 401 + "libc", 402 + "miniz_oxide", 403 + "object", 404 + "rustc-demangle", 405 + ] 406 + 407 + [[package]] 408 + name = "base64" 409 + version = "0.13.1" 410 + source = "registry+https://github.com/rust-lang/crates.io-index" 411 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 412 + 413 + [[package]] 414 + name = "base64" 415 + version = "0.21.0" 416 + source = "registry+https://github.com/rust-lang/crates.io-index" 417 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 418 + 419 + [[package]] 420 + name = "base64ct" 421 + version = "1.5.3" 422 + source = "registry+https://github.com/rust-lang/crates.io-index" 423 + checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 424 + 425 + [[package]] 426 + name = "bitflags" 427 + version = "1.3.2" 428 + source = "registry+https://github.com/rust-lang/crates.io-index" 429 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 430 + 431 + [[package]] 432 + name = "blake3" 433 + version = "1.3.3" 434 + source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" 436 + dependencies = [ 437 + "arrayref", 438 + "arrayvec", 439 + "cc", 440 + "cfg-if", 441 + "constant_time_eq 0.2.4", 442 + "digest", 443 + ] 444 + 445 + [[package]] 446 + name = "block-buffer" 447 + version = "0.10.3" 448 + source = "registry+https://github.com/rust-lang/crates.io-index" 449 + checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 450 + dependencies = [ 451 + "generic-array", 452 + ] 453 + 454 + [[package]] 455 + name = "block-padding" 456 + version = "0.3.2" 457 + source = "registry+https://github.com/rust-lang/crates.io-index" 458 + checksum = "0a90ec2df9600c28a01c56c4784c9207a96d2451833aeceb8cc97e4c9548bb78" 459 + dependencies = [ 460 + "generic-array", 461 + ] 462 + 463 + [[package]] 464 + name = "bstr" 465 + version = "0.2.17" 466 + source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 468 + dependencies = [ 469 + "lazy_static", 470 + "memchr", 471 + "regex-automata", 472 + "serde", 473 + ] 474 + 475 + [[package]] 476 + name = "bstr" 477 + version = "1.1.0" 478 + source = "registry+https://github.com/rust-lang/crates.io-index" 479 + checksum = "b45ea9b00a7b3f2988e9a65ad3917e62123c38dba709b666506207be96d1790b" 480 + dependencies = [ 481 + "memchr", 482 + "serde", 483 + ] 484 + 485 + [[package]] 486 + name = "bumpalo" 487 + version = "3.12.0" 488 + source = "registry+https://github.com/rust-lang/crates.io-index" 489 + checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 490 + 491 + [[package]] 492 + name = "byteorder" 493 + version = "1.4.3" 494 + source = "registry+https://github.com/rust-lang/crates.io-index" 495 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 496 + 497 + [[package]] 498 + name = "bytes" 499 + version = "1.3.0" 500 + source = "registry+https://github.com/rust-lang/crates.io-index" 501 + checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" 502 + 503 + [[package]] 504 + name = "bzip2" 505 + version = "0.4.4" 506 + source = "registry+https://github.com/rust-lang/crates.io-index" 507 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 508 + dependencies = [ 509 + "bzip2-sys", 510 + "libc", 511 + ] 512 + 513 + [[package]] 514 + name = "bzip2-sys" 515 + version = "0.1.11+1.0.8" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 518 + dependencies = [ 519 + "cc", 520 + "libc", 521 + "pkg-config", 522 + ] 523 + 524 + [[package]] 525 + name = "camino" 526 + version = "1.1.2" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "c77df041dc383319cc661b428b6961a005db4d6808d5e12536931b1ca9556055" 529 + 530 + [[package]] 531 + name = "cast" 532 + version = "0.3.0" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 535 + 536 + [[package]] 537 + name = "cbc" 538 + version = "0.1.2" 539 + source = "registry+https://github.com/rust-lang/crates.io-index" 540 + checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 541 + dependencies = [ 542 + "cipher 0.4.3", 543 + ] 544 + 545 + [[package]] 546 + name = "cc" 547 + version = "1.0.78" 548 + source = "registry+https://github.com/rust-lang/crates.io-index" 549 + checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 550 + dependencies = [ 551 + "jobserver", 552 + ] 553 + 554 + [[package]] 555 + name = "cfg-if" 556 + version = "1.0.0" 557 + source = "registry+https://github.com/rust-lang/crates.io-index" 558 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 559 + 560 + [[package]] 561 + name = "chrono" 562 + version = "0.4.23" 563 + source = "registry+https://github.com/rust-lang/crates.io-index" 564 + checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 565 + dependencies = [ 566 + "iana-time-zone", 567 + "num-integer", 568 + "num-traits", 569 + "winapi", 570 + ] 571 + 572 + [[package]] 573 + name = "ciborium" 574 + version = "0.2.0" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 577 + dependencies = [ 578 + "ciborium-io", 579 + "ciborium-ll", 580 + "serde", 581 + ] 582 + 583 + [[package]] 584 + name = "ciborium-io" 585 + version = "0.2.0" 586 + source = "registry+https://github.com/rust-lang/crates.io-index" 587 + checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 588 + 589 + [[package]] 590 + name = "ciborium-ll" 591 + version = "0.2.0" 592 + source = "registry+https://github.com/rust-lang/crates.io-index" 593 + checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 594 + dependencies = [ 595 + "ciborium-io", 596 + "half", 597 + ] 598 + 599 + [[package]] 600 + name = "cipher" 601 + version = "0.3.0" 602 + source = "registry+https://github.com/rust-lang/crates.io-index" 603 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 604 + dependencies = [ 605 + "generic-array", 606 + ] 607 + 608 + [[package]] 609 + name = "cipher" 610 + version = "0.4.3" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" 613 + dependencies = [ 614 + "crypto-common", 615 + "inout", 616 + ] 617 + 618 + [[package]] 619 + name = "clap" 620 + version = "3.2.23" 621 + source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 623 + dependencies = [ 624 + "bitflags", 625 + "clap_lex 0.2.4", 626 + "indexmap", 627 + "textwrap", 628 + ] 629 + 630 + [[package]] 631 + name = "clap" 632 + version = "4.1.1" 633 + source = "registry+https://github.com/rust-lang/crates.io-index" 634 + checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2" 635 + dependencies = [ 636 + "bitflags", 637 + "clap_derive", 638 + "clap_lex 0.3.1", 639 + "is-terminal", 640 + "once_cell", 641 + "strsim", 642 + "termcolor", 643 + ] 644 + 645 + [[package]] 646 + name = "clap_derive" 647 + version = "4.1.0" 648 + source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 650 + dependencies = [ 651 + "heck", 652 + "proc-macro-error", 653 + "proc-macro2", 654 + "quote", 655 + "syn", 656 + ] 657 + 658 + [[package]] 659 + name = "clap_lex" 660 + version = "0.2.4" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 663 + dependencies = [ 664 + "os_str_bytes", 665 + ] 666 + 667 + [[package]] 668 + name = "clap_lex" 669 + version = "0.3.1" 670 + source = "registry+https://github.com/rust-lang/crates.io-index" 671 + checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" 672 + dependencies = [ 673 + "os_str_bytes", 674 + ] 675 + 676 + [[package]] 677 + name = "coarsetime" 678 + version = "0.1.22" 679 + source = "registry+https://github.com/rust-lang/crates.io-index" 680 + checksum = "454038500439e141804c655b4cd1bc6a70bcb95cd2bc9463af5661b6956f0e46" 681 + dependencies = [ 682 + "libc", 683 + "once_cell", 684 + "wasi 0.11.0+wasi-snapshot-preview1", 685 + "wasm-bindgen", 686 + ] 687 + 688 + [[package]] 689 + name = "codespan" 690 + version = "0.11.1" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "3362992a0d9f1dd7c3d0e89e0ab2bb540b7a95fea8cd798090e758fda2899b5e" 693 + dependencies = [ 694 + "codespan-reporting", 695 + "serde", 696 + ] 697 + 698 + [[package]] 699 + name = "codespan-reporting" 700 + version = "0.11.1" 701 + source = "registry+https://github.com/rust-lang/crates.io-index" 702 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 703 + dependencies = [ 704 + "serde", 705 + "termcolor", 706 + "unicode-width", 707 + ] 708 + 709 + [[package]] 710 + name = "concurrent-queue" 711 + version = "2.1.0" 712 + source = "registry+https://github.com/rust-lang/crates.io-index" 713 + checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 714 + dependencies = [ 715 + "crossbeam-utils", 716 + ] 717 + 718 + [[package]] 719 + name = "configure" 720 + version = "0.0.0" 721 + dependencies = [ 722 + "ninja_gen", 723 + "workspace-hack", 724 + ] 725 + 726 + [[package]] 727 + name = "constant_time_eq" 728 + version = "0.1.5" 729 + source = "registry+https://github.com/rust-lang/crates.io-index" 730 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 731 + 732 + [[package]] 733 + name = "constant_time_eq" 734 + version = "0.2.4" 735 + source = "registry+https://github.com/rust-lang/crates.io-index" 736 + checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" 737 + 738 + [[package]] 739 + name = "convert_case" 740 + version = "0.4.0" 741 + source = "registry+https://github.com/rust-lang/crates.io-index" 742 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 743 + 744 + [[package]] 745 + name = "convert_case" 746 + version = "0.6.0" 747 + source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 749 + dependencies = [ 750 + "unicode-segmentation", 751 + ] 752 + 753 + [[package]] 754 + name = "core-foundation" 755 + version = "0.9.3" 756 + source = "registry+https://github.com/rust-lang/crates.io-index" 757 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 758 + dependencies = [ 759 + "core-foundation-sys", 760 + "libc", 761 + ] 762 + 763 + [[package]] 764 + name = "core-foundation-sys" 765 + version = "0.8.3" 766 + source = "registry+https://github.com/rust-lang/crates.io-index" 767 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 768 + 769 + [[package]] 770 + name = "cpufeatures" 771 + version = "0.2.5" 772 + source = "registry+https://github.com/rust-lang/crates.io-index" 773 + checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 774 + dependencies = [ 775 + "libc", 776 + ] 777 + 778 + [[package]] 779 + name = "crc32fast" 780 + version = "1.3.2" 781 + source = "registry+https://github.com/rust-lang/crates.io-index" 782 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 783 + dependencies = [ 784 + "cfg-if", 785 + ] 786 + 787 + [[package]] 788 + name = "criterion" 789 + version = "0.4.0" 790 + source = "registry+https://github.com/rust-lang/crates.io-index" 791 + checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 792 + dependencies = [ 793 + "anes", 794 + "atty", 795 + "cast", 796 + "ciborium", 797 + "clap 3.2.23", 798 + "criterion-plot", 799 + "itertools", 800 + "lazy_static", 801 + "num-traits", 802 + "oorandom", 803 + "plotters", 804 + "rayon", 805 + "regex", 806 + "serde", 807 + "serde_derive", 808 + "serde_json", 809 + "tinytemplate", 810 + "walkdir", 811 + ] 812 + 813 + [[package]] 814 + name = "criterion-plot" 815 + version = "0.5.0" 816 + source = "registry+https://github.com/rust-lang/crates.io-index" 817 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 818 + dependencies = [ 819 + "cast", 820 + "itertools", 821 + ] 822 + 823 + [[package]] 824 + name = "crossbeam-channel" 825 + version = "0.5.6" 826 + source = "registry+https://github.com/rust-lang/crates.io-index" 827 + checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 828 + dependencies = [ 829 + "cfg-if", 830 + "crossbeam-utils", 831 + ] 832 + 833 + [[package]] 834 + name = "crossbeam-deque" 835 + version = "0.8.2" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 838 + dependencies = [ 839 + "cfg-if", 840 + "crossbeam-epoch", 841 + "crossbeam-utils", 842 + ] 843 + 844 + [[package]] 845 + name = "crossbeam-epoch" 846 + version = "0.9.13" 847 + source = "registry+https://github.com/rust-lang/crates.io-index" 848 + checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 849 + dependencies = [ 850 + "autocfg", 851 + "cfg-if", 852 + "crossbeam-utils", 853 + "memoffset 0.7.1", 854 + "scopeguard", 855 + ] 856 + 857 + [[package]] 858 + name = "crossbeam-utils" 859 + version = "0.8.14" 860 + source = "registry+https://github.com/rust-lang/crates.io-index" 861 + checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 862 + dependencies = [ 863 + "cfg-if", 864 + ] 865 + 866 + [[package]] 867 + name = "crypto-common" 868 + version = "0.1.6" 869 + source = "registry+https://github.com/rust-lang/crates.io-index" 870 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 871 + dependencies = [ 872 + "generic-array", 873 + "typenum", 874 + ] 875 + 876 + [[package]] 877 + name = "cssparser" 878 + version = "0.27.2" 879 + source = "registry+https://github.com/rust-lang/crates.io-index" 880 + checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 881 + dependencies = [ 882 + "cssparser-macros", 883 + "dtoa-short", 884 + "itoa 0.4.8", 885 + "matches", 886 + "phf 0.8.0", 887 + "proc-macro2", 888 + "quote", 889 + "smallvec", 890 + "syn", 891 + ] 892 + 893 + [[package]] 894 + name = "cssparser-macros" 895 + version = "0.6.0" 896 + source = "registry+https://github.com/rust-lang/crates.io-index" 897 + checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 898 + dependencies = [ 899 + "quote", 900 + "syn", 901 + ] 902 + 903 + [[package]] 904 + name = "csv" 905 + version = "1.1.6" 906 + source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" 907 + dependencies = [ 908 + "bstr 0.2.17", 909 + "csv-core", 910 + "itoa 1.0.5", 911 + "ryu", 912 + "serde", 913 + ] 914 + 915 + [[package]] 916 + name = "csv-core" 917 + version = "0.1.10" 918 + source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" 919 + dependencies = [ 920 + "memchr", 921 + ] 922 + 923 + [[package]] 924 + name = "cxx" 925 + version = "1.0.86" 926 + source = "registry+https://github.com/rust-lang/crates.io-index" 927 + checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579" 928 + dependencies = [ 929 + "cc", 930 + "cxxbridge-flags", 931 + "cxxbridge-macro", 932 + "link-cplusplus", 933 + ] 934 + 935 + [[package]] 936 + name = "cxx-build" 937 + version = "1.0.86" 938 + source = "registry+https://github.com/rust-lang/crates.io-index" 939 + checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70" 940 + dependencies = [ 941 + "cc", 942 + "codespan-reporting", 943 + "once_cell", 944 + "proc-macro2", 945 + "quote", 946 + "scratch", 947 + "syn", 948 + ] 949 + 950 + [[package]] 951 + name = "cxxbridge-flags" 952 + version = "1.0.86" 953 + source = "registry+https://github.com/rust-lang/crates.io-index" 954 + checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c" 955 + 956 + [[package]] 957 + name = "cxxbridge-macro" 958 + version = "1.0.86" 959 + source = "registry+https://github.com/rust-lang/crates.io-index" 960 + checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5" 961 + dependencies = [ 962 + "proc-macro2", 963 + "quote", 964 + "syn", 965 + ] 966 + 967 + [[package]] 968 + name = "deadpool" 969 + version = "0.9.5" 970 + source = "registry+https://github.com/rust-lang/crates.io-index" 971 + checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e" 972 + dependencies = [ 973 + "async-trait", 974 + "deadpool-runtime", 975 + "num_cpus", 976 + "retain_mut", 977 + "tokio", 978 + ] 979 + 980 + [[package]] 981 + name = "deadpool-runtime" 982 + version = "0.1.2" 983 + source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1" 985 + 986 + [[package]] 987 + name = "derive_more" 988 + version = "0.99.17" 989 + source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 991 + dependencies = [ 992 + "convert_case 0.4.0", 993 + "proc-macro2", 994 + "quote", 995 + "rustc_version", 996 + "syn", 997 + ] 998 + 999 + [[package]] 1000 + name = "des" 1001 + version = "0.8.1" 1002 + source = "registry+https://github.com/rust-lang/crates.io-index" 1003 + checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e" 1004 + dependencies = [ 1005 + "cipher 0.4.3", 1006 + ] 1007 + 1008 + [[package]] 1009 + name = "difflib" 1010 + version = "0.4.0" 1011 + source = "registry+https://github.com/rust-lang/crates.io-index" 1012 + checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 1013 + 1014 + [[package]] 1015 + name = "digest" 1016 + version = "0.10.6" 1017 + source = "registry+https://github.com/rust-lang/crates.io-index" 1018 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1019 + dependencies = [ 1020 + "block-buffer", 1021 + "crypto-common", 1022 + "subtle", 1023 + ] 1024 + 1025 + [[package]] 1026 + name = "displaydoc" 1027 + version = "0.2.3" 1028 + source = "registry+https://github.com/rust-lang/crates.io-index" 1029 + checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 1030 + dependencies = [ 1031 + "proc-macro2", 1032 + "quote", 1033 + "syn", 1034 + ] 1035 + 1036 + [[package]] 1037 + name = "doc-comment" 1038 + version = "0.3.3" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1041 + 1042 + [[package]] 1043 + name = "dtoa" 1044 + version = "0.4.8" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 1047 + 1048 + [[package]] 1049 + name = "dtoa-short" 1050 + version = "0.3.3" 1051 + source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 1053 + dependencies = [ 1054 + "dtoa", 1055 + ] 1056 + 1057 + [[package]] 1058 + name = "duct" 1059 + version = "0.13.6" 1060 + source = "registry+https://github.com/rust-lang/crates.io-index" 1061 + checksum = "37ae3fc31835f74c2a7ceda3aeede378b0ae2e74c8f1c36559fcc9ae2a4e7d3e" 1062 + dependencies = [ 1063 + "libc", 1064 + "once_cell", 1065 + "os_pipe", 1066 + "shared_child", 1067 + ] 1068 + 1069 + [[package]] 1070 + name = "dunce" 1071 + version = "1.0.3" 1072 + source = "registry+https://github.com/rust-lang/crates.io-index" 1073 + checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c" 1074 + 1075 + [[package]] 1076 + name = "either" 1077 + version = "1.8.0" 1078 + source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 1080 + 1081 + [[package]] 1082 + name = "encoding_rs" 1083 + version = "0.8.31" 1084 + source = "registry+https://github.com/rust-lang/crates.io-index" 1085 + checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 1086 + dependencies = [ 1087 + "cfg-if", 1088 + ] 1089 + 1090 + [[package]] 1091 + name = "env_logger" 1092 + version = "0.10.0" 1093 + source = "registry+https://github.com/rust-lang/crates.io-index" 1094 + checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1095 + dependencies = [ 1096 + "humantime", 1097 + "is-terminal", 1098 + "log", 1099 + "regex", 1100 + "termcolor", 1101 + ] 1102 + 1103 + [[package]] 1104 + name = "errno" 1105 + version = "0.2.8" 1106 + source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 1108 + dependencies = [ 1109 + "errno-dragonfly", 1110 + "libc", 1111 + "winapi", 1112 + ] 1113 + 1114 + [[package]] 1115 + name = "errno-dragonfly" 1116 + version = "0.1.2" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1119 + dependencies = [ 1120 + "cc", 1121 + "libc", 1122 + ] 1123 + 1124 + [[package]] 1125 + name = "event-listener" 1126 + version = "2.5.3" 1127 + source = "registry+https://github.com/rust-lang/crates.io-index" 1128 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1129 + 1130 + [[package]] 1131 + name = "fallible-iterator" 1132 + version = "0.2.0" 1133 + source = "registry+https://github.com/rust-lang/crates.io-index" 1134 + checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1135 + 1136 + [[package]] 1137 + name = "fallible-streaming-iterator" 1138 + version = "0.1.9" 1139 + source = "registry+https://github.com/rust-lang/crates.io-index" 1140 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1141 + 1142 + [[package]] 1143 + name = "fastrand" 1144 + version = "1.8.0" 1145 + source = "registry+https://github.com/rust-lang/crates.io-index" 1146 + checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 1147 + dependencies = [ 1148 + "instant", 1149 + ] 1150 + 1151 + [[package]] 1152 + name = "filetime" 1153 + version = "0.2.19" 1154 + source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9" 1156 + dependencies = [ 1157 + "cfg-if", 1158 + "libc", 1159 + "redox_syscall", 1160 + "windows-sys", 1161 + ] 1162 + 1163 + [[package]] 1164 + name = "find-winsdk" 1165 + version = "0.2.0" 1166 + source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + checksum = "a8cbf17b871570c1f8612b763bac3e86290602bcf5dc3c5ce657e0e1e9071d9e" 1168 + dependencies = [ 1169 + "serde", 1170 + "serde_derive", 1171 + "winreg 0.5.1", 1172 + ] 1173 + 1174 + [[package]] 1175 + name = "fixedbitset" 1176 + version = "0.4.2" 1177 + source = "registry+https://github.com/rust-lang/crates.io-index" 1178 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1179 + 1180 + [[package]] 1181 + name = "flate2" 1182 + version = "1.0.25" 1183 + source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1185 + dependencies = [ 1186 + "crc32fast", 1187 + "miniz_oxide", 1188 + ] 1189 + 1190 + [[package]] 1191 + name = "fluent" 1192 + version = "0.16.0" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" 1195 + dependencies = [ 1196 + "fluent-bundle", 1197 + "unic-langid", 1198 + ] 1199 + 1200 + [[package]] 1201 + name = "fluent-bundle" 1202 + version = "0.15.2" 1203 + source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" 1205 + dependencies = [ 1206 + "fluent-langneg", 1207 + "fluent-syntax", 1208 + "intl-memoizer", 1209 + "intl_pluralrules", 1210 + "rustc-hash", 1211 + "self_cell", 1212 + "smallvec", 1213 + "unic-langid", 1214 + ] 1215 + 1216 + [[package]] 1217 + name = "fluent-langneg" 1218 + version = "0.13.0" 1219 + source = "registry+https://github.com/rust-lang/crates.io-index" 1220 + checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94" 1221 + dependencies = [ 1222 + "unic-langid", 1223 + ] 1224 + 1225 + [[package]] 1226 + name = "fluent-syntax" 1227 + version = "0.11.0" 1228 + source = "registry+https://github.com/rust-lang/crates.io-index" 1229 + checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" 1230 + dependencies = [ 1231 + "thiserror", 1232 + ] 1233 + 1234 + [[package]] 1235 + name = "fnv" 1236 + version = "1.0.7" 1237 + source = "registry+https://github.com/rust-lang/crates.io-index" 1238 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1239 + 1240 + [[package]] 1241 + name = "foreign-types" 1242 + version = "0.3.2" 1243 + source = "registry+https://github.com/rust-lang/crates.io-index" 1244 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1245 + dependencies = [ 1246 + "foreign-types-shared", 1247 + ] 1248 + 1249 + [[package]] 1250 + name = "foreign-types-shared" 1251 + version = "0.1.1" 1252 + source = "registry+https://github.com/rust-lang/crates.io-index" 1253 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1254 + 1255 + [[package]] 1256 + name = "form_urlencoded" 1257 + version = "1.1.0" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1260 + dependencies = [ 1261 + "percent-encoding", 1262 + ] 1263 + 1264 + [[package]] 1265 + name = "forwarded-header-value" 1266 + version = "0.1.1" 1267 + source = "registry+https://github.com/rust-lang/crates.io-index" 1268 + checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" 1269 + dependencies = [ 1270 + "nonempty", 1271 + "thiserror", 1272 + ] 1273 + 1274 + [[package]] 1275 + name = "fs2" 1276 + version = "0.4.3" 1277 + source = "registry+https://github.com/rust-lang/crates.io-index" 1278 + checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 1279 + dependencies = [ 1280 + "libc", 1281 + "winapi", 1282 + ] 1283 + 1284 + [[package]] 1285 + name = "ftl" 1286 + version = "0.0.0" 1287 + dependencies = [ 1288 + "camino", 1289 + "snafu", 1290 + "workspace-hack", 1291 + ] 1292 + 1293 + [[package]] 1294 + name = "futf" 1295 + version = "0.1.5" 1296 + source = "registry+https://github.com/rust-lang/crates.io-index" 1297 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1298 + dependencies = [ 1299 + "mac", 1300 + "new_debug_unreachable", 1301 + ] 1302 + 1303 + [[package]] 1304 + name = "futures" 1305 + version = "0.3.25" 1306 + source = "registry+https://github.com/rust-lang/crates.io-index" 1307 + checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" 1308 + dependencies = [ 1309 + "futures-channel", 1310 + "futures-core", 1311 + "futures-executor", 1312 + "futures-io", 1313 + "futures-sink", 1314 + "futures-task", 1315 + "futures-util", 1316 + ] 1317 + 1318 + [[package]] 1319 + name = "futures-channel" 1320 + version = "0.3.25" 1321 + source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" 1323 + dependencies = [ 1324 + "futures-core", 1325 + "futures-sink", 1326 + ] 1327 + 1328 + [[package]] 1329 + name = "futures-core" 1330 + version = "0.3.25" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" 1333 + 1334 + [[package]] 1335 + name = "futures-executor" 1336 + version = "0.3.25" 1337 + source = "registry+https://github.com/rust-lang/crates.io-index" 1338 + checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 1339 + dependencies = [ 1340 + "futures-core", 1341 + "futures-task", 1342 + "futures-util", 1343 + ] 1344 + 1345 + [[package]] 1346 + name = "futures-io" 1347 + version = "0.3.25" 1348 + source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" 1350 + 1351 + [[package]] 1352 + name = "futures-lite" 1353 + version = "1.12.0" 1354 + source = "registry+https://github.com/rust-lang/crates.io-index" 1355 + checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 1356 + dependencies = [ 1357 + "fastrand", 1358 + "futures-core", 1359 + "futures-io", 1360 + "memchr", 1361 + "parking", 1362 + "pin-project-lite", 1363 + "waker-fn", 1364 + ] 1365 + 1366 + [[package]] 1367 + name = "futures-macro" 1368 + version = "0.3.25" 1369 + source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" 1371 + dependencies = [ 1372 + "proc-macro2", 1373 + "quote", 1374 + "syn", 1375 + ] 1376 + 1377 + [[package]] 1378 + name = "futures-sink" 1379 + version = "0.3.25" 1380 + source = "registry+https://github.com/rust-lang/crates.io-index" 1381 + checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" 1382 + 1383 + [[package]] 1384 + name = "futures-task" 1385 + version = "0.3.25" 1386 + source = "registry+https://github.com/rust-lang/crates.io-index" 1387 + checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" 1388 + 1389 + [[package]] 1390 + name = "futures-timer" 1391 + version = "3.0.2" 1392 + source = "registry+https://github.com/rust-lang/crates.io-index" 1393 + checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 1394 + 1395 + [[package]] 1396 + name = "futures-util" 1397 + version = "0.3.25" 1398 + source = "registry+https://github.com/rust-lang/crates.io-index" 1399 + checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" 1400 + dependencies = [ 1401 + "futures-channel", 1402 + "futures-core", 1403 + "futures-io", 1404 + "futures-macro", 1405 + "futures-sink", 1406 + "futures-task", 1407 + "memchr", 1408 + "pin-project-lite", 1409 + "pin-utils", 1410 + "slab", 1411 + ] 1412 + 1413 + [[package]] 1414 + name = "fxhash" 1415 + version = "0.2.1" 1416 + source = "registry+https://github.com/rust-lang/crates.io-index" 1417 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1418 + dependencies = [ 1419 + "byteorder", 1420 + ] 1421 + 1422 + [[package]] 1423 + name = "generic-array" 1424 + version = "0.14.6" 1425 + source = "registry+https://github.com/rust-lang/crates.io-index" 1426 + checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 1427 + dependencies = [ 1428 + "typenum", 1429 + "version_check", 1430 + ] 1431 + 1432 + [[package]] 1433 + name = "getopts" 1434 + version = "0.2.21" 1435 + source = "registry+https://github.com/rust-lang/crates.io-index" 1436 + checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 1437 + dependencies = [ 1438 + "unicode-width", 1439 + ] 1440 + 1441 + [[package]] 1442 + name = "getrandom" 1443 + version = "0.1.16" 1444 + source = "registry+https://github.com/rust-lang/crates.io-index" 1445 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1446 + dependencies = [ 1447 + "cfg-if", 1448 + "libc", 1449 + "wasi 0.9.0+wasi-snapshot-preview1", 1450 + ] 1451 + 1452 + [[package]] 1453 + name = "getrandom" 1454 + version = "0.2.8" 1455 + source = "registry+https://github.com/rust-lang/crates.io-index" 1456 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1457 + dependencies = [ 1458 + "cfg-if", 1459 + "libc", 1460 + "wasi 0.11.0+wasi-snapshot-preview1", 1461 + ] 1462 + 1463 + [[package]] 1464 + name = "gimli" 1465 + version = "0.27.0" 1466 + source = "registry+https://github.com/rust-lang/crates.io-index" 1467 + checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793" 1468 + 1469 + [[package]] 1470 + name = "glob" 1471 + version = "0.3.1" 1472 + source = "registry+https://github.com/rust-lang/crates.io-index" 1473 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1474 + 1475 + [[package]] 1476 + name = "globset" 1477 + version = "0.4.10" 1478 + source = "registry+https://github.com/rust-lang/crates.io-index" 1479 + checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 1480 + dependencies = [ 1481 + "aho-corasick", 1482 + "bstr 1.1.0", 1483 + "fnv", 1484 + "log", 1485 + "regex", 1486 + ] 1487 + 1488 + [[package]] 1489 + name = "h2" 1490 + version = "0.3.15" 1491 + source = "registry+https://github.com/rust-lang/crates.io-index" 1492 + checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 1493 + dependencies = [ 1494 + "bytes", 1495 + "fnv", 1496 + "futures-core", 1497 + "futures-sink", 1498 + "futures-util", 1499 + "http", 1500 + "indexmap", 1501 + "slab", 1502 + "tokio", 1503 + "tokio-util", 1504 + "tracing", 1505 + ] 1506 + 1507 + [[package]] 1508 + name = "half" 1509 + version = "1.8.2" 1510 + source = "registry+https://github.com/rust-lang/crates.io-index" 1511 + checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1512 + 1513 + [[package]] 1514 + name = "hashbrown" 1515 + version = "0.12.3" 1516 + source = "registry+https://github.com/rust-lang/crates.io-index" 1517 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1518 + dependencies = [ 1519 + "ahash", 1520 + ] 1521 + 1522 + [[package]] 1523 + name = "hashlink" 1524 + version = "0.8.1" 1525 + source = "registry+https://github.com/rust-lang/crates.io-index" 1526 + checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" 1527 + dependencies = [ 1528 + "hashbrown", 1529 + ] 1530 + 1531 + [[package]] 1532 + name = "headers" 1533 + version = "0.3.8" 1534 + source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1536 + dependencies = [ 1537 + "base64 0.13.1", 1538 + "bitflags", 1539 + "bytes", 1540 + "headers-core", 1541 + "http", 1542 + "httpdate", 1543 + "mime", 1544 + "sha1", 1545 + ] 1546 + 1547 + [[package]] 1548 + name = "headers-core" 1549 + version = "0.2.0" 1550 + source = "registry+https://github.com/rust-lang/crates.io-index" 1551 + checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1552 + dependencies = [ 1553 + "http", 1554 + ] 1555 + 1556 + [[package]] 1557 + name = "heck" 1558 + version = "0.4.0" 1559 + source = "registry+https://github.com/rust-lang/crates.io-index" 1560 + checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1561 + 1562 + [[package]] 1563 + name = "hermit-abi" 1564 + version = "0.1.19" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1567 + dependencies = [ 1568 + "libc", 1569 + ] 1570 + 1571 + [[package]] 1572 + name = "hermit-abi" 1573 + version = "0.2.6" 1574 + source = "registry+https://github.com/rust-lang/crates.io-index" 1575 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1576 + dependencies = [ 1577 + "libc", 1578 + ] 1579 + 1580 + [[package]] 1581 + name = "hex" 1582 + version = "0.4.3" 1583 + source = "registry+https://github.com/rust-lang/crates.io-index" 1584 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1585 + 1586 + [[package]] 1587 + name = "hmac" 1588 + version = "0.12.1" 1589 + source = "registry+https://github.com/rust-lang/crates.io-index" 1590 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1591 + dependencies = [ 1592 + "digest", 1593 + ] 1594 + 1595 + [[package]] 1596 + name = "html5ever" 1597 + version = "0.25.2" 1598 + source = "registry+https://github.com/rust-lang/crates.io-index" 1599 + checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1600 + dependencies = [ 1601 + "log", 1602 + "mac", 1603 + "markup5ever 0.10.1", 1604 + "proc-macro2", 1605 + "quote", 1606 + "syn", 1607 + ] 1608 + 1609 + [[package]] 1610 + name = "html5ever" 1611 + version = "0.26.0" 1612 + source = "registry+https://github.com/rust-lang/crates.io-index" 1613 + checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 1614 + dependencies = [ 1615 + "log", 1616 + "mac", 1617 + "markup5ever 0.11.0", 1618 + "proc-macro2", 1619 + "quote", 1620 + "syn", 1621 + ] 1622 + 1623 + [[package]] 1624 + name = "htmlescape" 1625 + version = "0.3.1" 1626 + source = "registry+https://github.com/rust-lang/crates.io-index" 1627 + checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" 1628 + 1629 + [[package]] 1630 + name = "http" 1631 + version = "0.2.8" 1632 + source = "registry+https://github.com/rust-lang/crates.io-index" 1633 + checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1634 + dependencies = [ 1635 + "bytes", 1636 + "fnv", 1637 + "itoa 1.0.5", 1638 + ] 1639 + 1640 + [[package]] 1641 + name = "http-body" 1642 + version = "0.4.5" 1643 + source = "registry+https://github.com/rust-lang/crates.io-index" 1644 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1645 + dependencies = [ 1646 + "bytes", 1647 + "http", 1648 + "pin-project-lite", 1649 + ] 1650 + 1651 + [[package]] 1652 + name = "http-range-header" 1653 + version = "0.3.0" 1654 + source = "registry+https://github.com/rust-lang/crates.io-index" 1655 + checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 1656 + 1657 + [[package]] 1658 + name = "http-types" 1659 + version = "2.12.0" 1660 + source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 1662 + dependencies = [ 1663 + "anyhow", 1664 + "async-channel", 1665 + "base64 0.13.1", 1666 + "futures-lite", 1667 + "http", 1668 + "infer", 1669 + "pin-project-lite", 1670 + "rand 0.7.3", 1671 + "serde", 1672 + "serde_json", 1673 + "serde_qs", 1674 + "serde_urlencoded", 1675 + "url", 1676 + ] 1677 + 1678 + [[package]] 1679 + name = "httparse" 1680 + version = "1.8.0" 1681 + source = "registry+https://github.com/rust-lang/crates.io-index" 1682 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1683 + 1684 + [[package]] 1685 + name = "httpdate" 1686 + version = "1.0.2" 1687 + source = "registry+https://github.com/rust-lang/crates.io-index" 1688 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1689 + 1690 + [[package]] 1691 + name = "humantime" 1692 + version = "2.1.0" 1693 + source = "registry+https://github.com/rust-lang/crates.io-index" 1694 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1695 + 1696 + [[package]] 1697 + name = "hyper" 1698 + version = "0.14.23" 1699 + source = "registry+https://github.com/rust-lang/crates.io-index" 1700 + checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" 1701 + dependencies = [ 1702 + "bytes", 1703 + "futures-channel", 1704 + "futures-core", 1705 + "futures-util", 1706 + "h2", 1707 + "http", 1708 + "http-body", 1709 + "httparse", 1710 + "httpdate", 1711 + "itoa 1.0.5", 1712 + "pin-project-lite", 1713 + "socket2", 1714 + "tokio", 1715 + "tower-service", 1716 + "tracing", 1717 + "want", 1718 + ] 1719 + 1720 + [[package]] 1721 + name = "hyper-rustls" 1722 + version = "0.23.2" 1723 + source = "registry+https://github.com/rust-lang/crates.io-index" 1724 + checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 1725 + dependencies = [ 1726 + "http", 1727 + "hyper", 1728 + "rustls", 1729 + "tokio", 1730 + "tokio-rustls", 1731 + ] 1732 + 1733 + [[package]] 1734 + name = "hyper-tls" 1735 + version = "0.5.0" 1736 + source = "registry+https://github.com/rust-lang/crates.io-index" 1737 + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1738 + dependencies = [ 1739 + "bytes", 1740 + "hyper", 1741 + "native-tls", 1742 + "tokio", 1743 + "tokio-native-tls", 1744 + ] 1745 + 1746 + [[package]] 1747 + name = "iana-time-zone" 1748 + version = "0.1.53" 1749 + source = "registry+https://github.com/rust-lang/crates.io-index" 1750 + checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 1751 + dependencies = [ 1752 + "android_system_properties", 1753 + "core-foundation-sys", 1754 + "iana-time-zone-haiku", 1755 + "js-sys", 1756 + "wasm-bindgen", 1757 + "winapi", 1758 + ] 1759 + 1760 + [[package]] 1761 + name = "iana-time-zone-haiku" 1762 + version = "0.1.1" 1763 + source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 1765 + dependencies = [ 1766 + "cxx", 1767 + "cxx-build", 1768 + ] 1769 + 1770 + [[package]] 1771 + name = "id_tree" 1772 + version = "1.8.0" 1773 + source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "bcd9db8dd5be8bde5a2624ed4b2dfb74368fe7999eb9c4940fd3ca344b61071a" 1775 + dependencies = [ 1776 + "snowflake", 1777 + ] 1778 + 1779 + [[package]] 1780 + name = "idna" 1781 + version = "0.3.0" 1782 + source = "registry+https://github.com/rust-lang/crates.io-index" 1783 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1784 + dependencies = [ 1785 + "unicode-bidi", 1786 + "unicode-normalization", 1787 + ] 1788 + 1789 + [[package]] 1790 + name = "indexmap" 1791 + version = "1.9.2" 1792 + source = "registry+https://github.com/rust-lang/crates.io-index" 1793 + checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 1794 + dependencies = [ 1795 + "autocfg", 1796 + "hashbrown", 1797 + ] 1798 + 1799 + [[package]] 1800 + name = "indoc" 1801 + version = "1.0.8" 1802 + source = "registry+https://github.com/rust-lang/crates.io-index" 1803 + checksum = "da2d6f23ffea9d7e76c53eee25dfb67bcd8fde7f1198b0855350698c9f07c780" 1804 + 1805 + [[package]] 1806 + name = "infer" 1807 + version = "0.2.3" 1808 + source = "registry+https://github.com/rust-lang/crates.io-index" 1809 + checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 1810 + 1811 + [[package]] 1812 + name = "inflections" 1813 + version = "1.1.1" 1814 + source = "registry+https://github.com/rust-lang/crates.io-index" 1815 + checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a" 1816 + 1817 + [[package]] 1818 + name = "inout" 1819 + version = "0.1.3" 1820 + source = "registry+https://github.com/rust-lang/crates.io-index" 1821 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1822 + dependencies = [ 1823 + "block-padding", 1824 + "generic-array", 1825 + ] 1826 + 1827 + [[package]] 1828 + name = "instant" 1829 + version = "0.1.12" 1830 + source = "registry+https://github.com/rust-lang/crates.io-index" 1831 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1832 + dependencies = [ 1833 + "cfg-if", 1834 + ] 1835 + 1836 + [[package]] 1837 + name = "intl-memoizer" 1838 + version = "0.5.1" 1839 + source = "registry+https://github.com/rust-lang/crates.io-index" 1840 + checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" 1841 + dependencies = [ 1842 + "type-map", 1843 + "unic-langid", 1844 + ] 1845 + 1846 + [[package]] 1847 + name = "intl_pluralrules" 1848 + version = "7.0.2" 1849 + source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972" 1851 + dependencies = [ 1852 + "unic-langid", 1853 + ] 1854 + 1855 + [[package]] 1856 + name = "io-lifetimes" 1857 + version = "1.0.4" 1858 + source = "registry+https://github.com/rust-lang/crates.io-index" 1859 + checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e" 1860 + dependencies = [ 1861 + "libc", 1862 + "windows-sys", 1863 + ] 1864 + 1865 + [[package]] 1866 + name = "ipnet" 1867 + version = "2.7.1" 1868 + source = "registry+https://github.com/rust-lang/crates.io-index" 1869 + checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 1870 + 1871 + [[package]] 1872 + name = "is-terminal" 1873 + version = "0.4.2" 1874 + source = "registry+https://github.com/rust-lang/crates.io-index" 1875 + checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189" 1876 + dependencies = [ 1877 + "hermit-abi 0.2.6", 1878 + "io-lifetimes", 1879 + "rustix", 1880 + "windows-sys", 1881 + ] 1882 + 1883 + [[package]] 1884 + name = "itertools" 1885 + version = "0.10.5" 1886 + source = "registry+https://github.com/rust-lang/crates.io-index" 1887 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1888 + dependencies = [ 1889 + "either", 1890 + ] 1891 + 1892 + [[package]] 1893 + name = "itoa" 1894 + version = "0.4.8" 1895 + source = "registry+https://github.com/rust-lang/crates.io-index" 1896 + checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1897 + 1898 + [[package]] 1899 + name = "itoa" 1900 + version = "1.0.5" 1901 + source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 1903 + 1904 + [[package]] 1905 + name = "jobserver" 1906 + version = "0.1.25" 1907 + source = "registry+https://github.com/rust-lang/crates.io-index" 1908 + checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" 1909 + dependencies = [ 1910 + "libc", 1911 + ] 1912 + 1913 + [[package]] 1914 + name = "js-sys" 1915 + version = "0.3.60" 1916 + source = "registry+https://github.com/rust-lang/crates.io-index" 1917 + checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1918 + dependencies = [ 1919 + "wasm-bindgen", 1920 + ] 1921 + 1922 + [[package]] 1923 + name = "junction" 1924 + version = "0.2.0" 1925 + source = "registry+https://github.com/rust-lang/crates.io-index" 1926 + checksum = "be39922b087cecaba4e2d5592dedfc8bda5d4a5a1231f143337cca207950b61d" 1927 + dependencies = [ 1928 + "scopeguard", 1929 + "winapi", 1930 + ] 1931 + 1932 + [[package]] 1933 + name = "kuchiki" 1934 + version = "0.8.1" 1935 + source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1937 + dependencies = [ 1938 + "cssparser", 1939 + "html5ever 0.25.2", 1940 + "matches", 1941 + "selectors", 1942 + ] 1943 + 1944 + [[package]] 1945 + name = "lazy_static" 1946 + version = "1.4.0" 1947 + source = "registry+https://github.com/rust-lang/crates.io-index" 1948 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1949 + 1950 + [[package]] 1951 + name = "libc" 1952 + version = "0.2.139" 1953 + source = "registry+https://github.com/rust-lang/crates.io-index" 1954 + checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 1955 + 1956 + [[package]] 1957 + name = "libsqlite3-sys" 1958 + version = "0.25.2" 1959 + source = "registry+https://github.com/rust-lang/crates.io-index" 1960 + checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 1961 + dependencies = [ 1962 + "cc", 1963 + "pkg-config", 1964 + "vcpkg", 1965 + ] 1966 + 1967 + [[package]] 1968 + name = "line-wrap" 1969 + version = "0.1.1" 1970 + source = "registry+https://github.com/rust-lang/crates.io-index" 1971 + checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1972 + dependencies = [ 1973 + "safemem", 1974 + ] 1975 + 1976 + [[package]] 1977 + name = "link-cplusplus" 1978 + version = "1.0.8" 1979 + source = "registry+https://github.com/rust-lang/crates.io-index" 1980 + checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 1981 + dependencies = [ 1982 + "cc", 1983 + ] 1984 + 1985 + [[package]] 1986 + name = "linkcheck" 1987 + version = "0.4.1-alpha.0" 1988 + source = "git+https://github.com/ankitects/linkcheck.git?rev=2f20798ce521cc594d510d4e417e76d5eac04d4b#2f20798ce521cc594d510d4e417e76d5eac04d4b" 1989 + dependencies = [ 1990 + "bytes", 1991 + "codespan", 1992 + "dunce", 1993 + "futures", 1994 + "http", 1995 + "kuchiki", 1996 + "lazy_static", 1997 + "linkify", 1998 + "log", 1999 + "pulldown-cmark 0.8.0", 2000 + "regex", 2001 + "reqwest", 2002 + "serde", 2003 + "thiserror", 2004 + "url", 2005 + ] 2006 + 2007 + [[package]] 2008 + name = "linkchecker" 2009 + version = "0.0.0" 2010 + dependencies = [ 2011 + "anki", 2012 + "futures", 2013 + "itertools", 2014 + "linkcheck", 2015 + "reqwest", 2016 + "strum", 2017 + "tokio", 2018 + "workspace-hack", 2019 + ] 2020 + 2021 + [[package]] 2022 + name = "linkify" 2023 + version = "0.5.0" 2024 + source = "registry+https://github.com/rust-lang/crates.io-index" 2025 + checksum = "78d59d732ba6d7eeefc418aab8057dc8e3da4374bd5802ffa95bebc04b4d1dfb" 2026 + dependencies = [ 2027 + "memchr", 2028 + ] 2029 + 2030 + [[package]] 2031 + name = "linux-raw-sys" 2032 + version = "0.1.4" 2033 + source = "registry+https://github.com/rust-lang/crates.io-index" 2034 + checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 2035 + 2036 + [[package]] 2037 + name = "lock_api" 2038 + version = "0.4.9" 2039 + source = "registry+https://github.com/rust-lang/crates.io-index" 2040 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2041 + dependencies = [ 2042 + "autocfg", 2043 + "scopeguard", 2044 + ] 2045 + 2046 + [[package]] 2047 + name = "log" 2048 + version = "0.4.17" 2049 + source = "registry+https://github.com/rust-lang/crates.io-index" 2050 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 2051 + dependencies = [ 2052 + "cfg-if", 2053 + ] 2054 + 2055 + [[package]] 2056 + name = "lzma-sys" 2057 + version = "0.1.20" 2058 + source = "registry+https://github.com/rust-lang/crates.io-index" 2059 + checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" 2060 + dependencies = [ 2061 + "cc", 2062 + "libc", 2063 + "pkg-config", 2064 + ] 2065 + 2066 + [[package]] 2067 + name = "mac" 2068 + version = "0.1.1" 2069 + source = "registry+https://github.com/rust-lang/crates.io-index" 2070 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2071 + 2072 + [[package]] 2073 + name = "makeapp" 2074 + version = "0.0.0" 2075 + dependencies = [ 2076 + "anyhow", 2077 + "apple-bundles", 2078 + "camino", 2079 + "clap 4.1.1", 2080 + "glob", 2081 + "lazy_static", 2082 + "plist", 2083 + "serde", 2084 + "serde_json", 2085 + "simple-file-manifest", 2086 + "walkdir", 2087 + "workspace-hack", 2088 + ] 2089 + 2090 + [[package]] 2091 + name = "makeinstall" 2092 + version = "0.0.0" 2093 + dependencies = [ 2094 + "anyhow", 2095 + "camino", 2096 + "clap 4.1.1", 2097 + "glob", 2098 + "tugger-windows-codesign", 2099 + "walkdir", 2100 + "workspace-hack", 2101 + ] 2102 + 2103 + [[package]] 2104 + name = "maplit" 2105 + version = "1.0.2" 2106 + source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 2108 + 2109 + [[package]] 2110 + name = "markup5ever" 2111 + version = "0.10.1" 2112 + source = "registry+https://github.com/rust-lang/crates.io-index" 2113 + checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 2114 + dependencies = [ 2115 + "log", 2116 + "phf 0.8.0", 2117 + "phf_codegen 0.8.0", 2118 + "string_cache", 2119 + "string_cache_codegen", 2120 + "tendril", 2121 + ] 2122 + 2123 + [[package]] 2124 + name = "markup5ever" 2125 + version = "0.11.0" 2126 + source = "registry+https://github.com/rust-lang/crates.io-index" 2127 + checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 2128 + dependencies = [ 2129 + "log", 2130 + "phf 0.10.1", 2131 + "phf_codegen 0.10.0", 2132 + "string_cache", 2133 + "string_cache_codegen", 2134 + "tendril", 2135 + ] 2136 + 2137 + [[package]] 2138 + name = "matchers" 2139 + version = "0.1.0" 2140 + source = "registry+https://github.com/rust-lang/crates.io-index" 2141 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2142 + dependencies = [ 2143 + "regex-automata", 2144 + ] 2145 + 2146 + [[package]] 2147 + name = "matches" 2148 + version = "0.1.9" 2149 + source = "registry+https://github.com/rust-lang/crates.io-index" 2150 + checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 2151 + 2152 + [[package]] 2153 + name = "matchit" 2154 + version = "0.7.0" 2155 + source = "registry+https://github.com/rust-lang/crates.io-index" 2156 + checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 2157 + 2158 + [[package]] 2159 + name = "memchr" 2160 + version = "2.5.0" 2161 + source = "registry+https://github.com/rust-lang/crates.io-index" 2162 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2163 + 2164 + [[package]] 2165 + name = "memoffset" 2166 + version = "0.7.1" 2167 + source = "registry+https://github.com/rust-lang/crates.io-index" 2168 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2169 + dependencies = [ 2170 + "autocfg", 2171 + ] 2172 + 2173 + [[package]] 2174 + name = "memoffset" 2175 + version = "0.8.0" 2176 + source = "registry+https://github.com/rust-lang/crates.io-index" 2177 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 2178 + dependencies = [ 2179 + "autocfg", 2180 + ] 2181 + 2182 + [[package]] 2183 + name = "mime" 2184 + version = "0.3.16" 2185 + source = "registry+https://github.com/rust-lang/crates.io-index" 2186 + checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 2187 + 2188 + [[package]] 2189 + name = "mime_guess" 2190 + version = "2.0.4" 2191 + source = "registry+https://github.com/rust-lang/crates.io-index" 2192 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 2193 + dependencies = [ 2194 + "mime", 2195 + "unicase", 2196 + ] 2197 + 2198 + [[package]] 2199 + name = "minimal-lexical" 2200 + version = "0.2.1" 2201 + source = "registry+https://github.com/rust-lang/crates.io-index" 2202 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2203 + 2204 + [[package]] 2205 + name = "miniz_oxide" 2206 + version = "0.6.2" 2207 + source = "registry+https://github.com/rust-lang/crates.io-index" 2208 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 2209 + dependencies = [ 2210 + "adler", 2211 + ] 2212 + 2213 + [[package]] 2214 + name = "mio" 2215 + version = "0.8.5" 2216 + source = "registry+https://github.com/rust-lang/crates.io-index" 2217 + checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 2218 + dependencies = [ 2219 + "libc", 2220 + "log", 2221 + "wasi 0.11.0+wasi-snapshot-preview1", 2222 + "windows-sys", 2223 + ] 2224 + 2225 + [[package]] 2226 + name = "multer" 2227 + version = "2.0.4" 2228 + source = "registry+https://github.com/rust-lang/crates.io-index" 2229 + checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22" 2230 + dependencies = [ 2231 + "bytes", 2232 + "encoding_rs", 2233 + "futures-util", 2234 + "http", 2235 + "httparse", 2236 + "log", 2237 + "memchr", 2238 + "mime", 2239 + "spin 0.9.4", 2240 + "version_check", 2241 + ] 2242 + 2243 + [[package]] 2244 + name = "multimap" 2245 + version = "0.8.3" 2246 + source = "registry+https://github.com/rust-lang/crates.io-index" 2247 + checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 2248 + 2249 + [[package]] 2250 + name = "native-tls" 2251 + version = "0.2.11" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2254 + dependencies = [ 2255 + "lazy_static", 2256 + "libc", 2257 + "log", 2258 + "openssl", 2259 + "openssl-probe", 2260 + "openssl-sys", 2261 + "schannel", 2262 + "security-framework", 2263 + "security-framework-sys", 2264 + "tempfile", 2265 + ] 2266 + 2267 + [[package]] 2268 + name = "new_debug_unreachable" 2269 + version = "1.0.4" 2270 + source = "registry+https://github.com/rust-lang/crates.io-index" 2271 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2272 + 2273 + [[package]] 2274 + name = "ninja_gen" 2275 + version = "0.0.0" 2276 + dependencies = [ 2277 + "camino", 2278 + "globset", 2279 + "itertools", 2280 + "lazy_static", 2281 + "maplit", 2282 + "num_cpus", 2283 + "walkdir", 2284 + "which", 2285 + "workspace-hack", 2286 + ] 2287 + 2288 + [[package]] 2289 + name = "nodrop" 2290 + version = "0.1.14" 2291 + source = "registry+https://github.com/rust-lang/crates.io-index" 2292 + checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 2293 + 2294 + [[package]] 2295 + name = "nom" 2296 + version = "7.1.3" 2297 + source = "registry+https://github.com/rust-lang/crates.io-index" 2298 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2299 + dependencies = [ 2300 + "memchr", 2301 + "minimal-lexical", 2302 + ] 2303 + 2304 + [[package]] 2305 + name = "nonempty" 2306 + version = "0.7.0" 2307 + source = "registry+https://github.com/rust-lang/crates.io-index" 2308 + checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" 2309 + 2310 + [[package]] 2311 + name = "nu-ansi-term" 2312 + version = "0.46.0" 2313 + source = "registry+https://github.com/rust-lang/crates.io-index" 2314 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2315 + dependencies = [ 2316 + "overload", 2317 + "winapi", 2318 + ] 2319 + 2320 + [[package]] 2321 + name = "num-format" 2322 + version = "0.4.4" 2323 + source = "registry+https://github.com/rust-lang/crates.io-index" 2324 + checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" 2325 + dependencies = [ 2326 + "arrayvec", 2327 + "itoa 1.0.5", 2328 + ] 2329 + 2330 + [[package]] 2331 + name = "num-integer" 2332 + version = "0.1.45" 2333 + source = "registry+https://github.com/rust-lang/crates.io-index" 2334 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2335 + dependencies = [ 2336 + "autocfg", 2337 + "num-traits", 2338 + ] 2339 + 2340 + [[package]] 2341 + name = "num-traits" 2342 + version = "0.2.15" 2343 + source = "registry+https://github.com/rust-lang/crates.io-index" 2344 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2345 + dependencies = [ 2346 + "autocfg", 2347 + ] 2348 + 2349 + [[package]] 2350 + name = "num_cpus" 2351 + version = "1.15.0" 2352 + source = "registry+https://github.com/rust-lang/crates.io-index" 2353 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 2354 + dependencies = [ 2355 + "hermit-abi 0.2.6", 2356 + "libc", 2357 + ] 2358 + 2359 + [[package]] 2360 + name = "num_enum" 2361 + version = "0.5.7" 2362 + source = "registry+https://github.com/rust-lang/crates.io-index" 2363 + checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 2364 + dependencies = [ 2365 + "num_enum_derive", 2366 + ] 2367 + 2368 + [[package]] 2369 + name = "num_enum_derive" 2370 + version = "0.5.7" 2371 + source = "registry+https://github.com/rust-lang/crates.io-index" 2372 + checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 2373 + dependencies = [ 2374 + "proc-macro-crate", 2375 + "proc-macro2", 2376 + "quote", 2377 + "syn", 2378 + ] 2379 + 2380 + [[package]] 2381 + name = "object" 2382 + version = "0.30.2" 2383 + source = "registry+https://github.com/rust-lang/crates.io-index" 2384 + checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83" 2385 + dependencies = [ 2386 + "memchr", 2387 + ] 2388 + 2389 + [[package]] 2390 + name = "once_cell" 2391 + version = "1.17.0" 2392 + source = "registry+https://github.com/rust-lang/crates.io-index" 2393 + checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 2394 + 2395 + [[package]] 2396 + name = "oorandom" 2397 + version = "11.1.3" 2398 + source = "registry+https://github.com/rust-lang/crates.io-index" 2399 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 2400 + 2401 + [[package]] 2402 + name = "opaque-debug" 2403 + version = "0.3.0" 2404 + source = "registry+https://github.com/rust-lang/crates.io-index" 2405 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 2406 + 2407 + [[package]] 2408 + name = "openssl" 2409 + version = "0.10.45" 2410 + source = "registry+https://github.com/rust-lang/crates.io-index" 2411 + checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 2412 + dependencies = [ 2413 + "bitflags", 2414 + "cfg-if", 2415 + "foreign-types", 2416 + "libc", 2417 + "once_cell", 2418 + "openssl-macros", 2419 + "openssl-sys", 2420 + ] 2421 + 2422 + [[package]] 2423 + name = "openssl-macros" 2424 + version = "0.1.0" 2425 + source = "registry+https://github.com/rust-lang/crates.io-index" 2426 + checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 2427 + dependencies = [ 2428 + "proc-macro2", 2429 + "quote", 2430 + "syn", 2431 + ] 2432 + 2433 + [[package]] 2434 + name = "openssl-probe" 2435 + version = "0.1.5" 2436 + source = "registry+https://github.com/rust-lang/crates.io-index" 2437 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2438 + 2439 + [[package]] 2440 + name = "openssl-sys" 2441 + version = "0.9.80" 2442 + source = "registry+https://github.com/rust-lang/crates.io-index" 2443 + checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 2444 + dependencies = [ 2445 + "autocfg", 2446 + "cc", 2447 + "libc", 2448 + "pkg-config", 2449 + "vcpkg", 2450 + ] 2451 + 2452 + [[package]] 2453 + name = "os_pipe" 2454 + version = "1.1.2" 2455 + source = "registry+https://github.com/rust-lang/crates.io-index" 2456 + checksum = "c6a252f1f8c11e84b3ab59d7a488e48e4478a93937e027076638c49536204639" 2457 + dependencies = [ 2458 + "libc", 2459 + "windows-sys", 2460 + ] 2461 + 2462 + [[package]] 2463 + name = "os_str_bytes" 2464 + version = "6.4.1" 2465 + source = "registry+https://github.com/rust-lang/crates.io-index" 2466 + checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 2467 + 2468 + [[package]] 2469 + name = "overload" 2470 + version = "0.1.1" 2471 + source = "registry+https://github.com/rust-lang/crates.io-index" 2472 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2473 + 2474 + [[package]] 2475 + name = "p12" 2476 + version = "0.6.3" 2477 + source = "registry+https://github.com/rust-lang/crates.io-index" 2478 + checksum = "d4873306de53fe82e7e484df31e1e947d61514b6ea2ed6cd7b45d63006fd9224" 2479 + dependencies = [ 2480 + "cbc", 2481 + "cipher 0.4.3", 2482 + "des", 2483 + "getrandom 0.2.8", 2484 + "hmac", 2485 + "lazy_static", 2486 + "rc2", 2487 + "sha1", 2488 + "yasna", 2489 + ] 2490 + 2491 + [[package]] 2492 + name = "parking" 2493 + version = "2.0.0" 2494 + source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 2496 + 2497 + [[package]] 2498 + name = "parking_lot" 2499 + version = "0.12.1" 2500 + source = "registry+https://github.com/rust-lang/crates.io-index" 2501 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2502 + dependencies = [ 2503 + "lock_api", 2504 + "parking_lot_core", 2505 + ] 2506 + 2507 + [[package]] 2508 + name = "parking_lot_core" 2509 + version = "0.9.6" 2510 + source = "registry+https://github.com/rust-lang/crates.io-index" 2511 + checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf" 2512 + dependencies = [ 2513 + "cfg-if", 2514 + "libc", 2515 + "redox_syscall", 2516 + "smallvec", 2517 + "windows-sys", 2518 + ] 2519 + 2520 + [[package]] 2521 + name = "password-hash" 2522 + version = "0.4.2" 2523 + source = "registry+https://github.com/rust-lang/crates.io-index" 2524 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2525 + dependencies = [ 2526 + "base64ct", 2527 + "rand_core 0.6.4", 2528 + "subtle", 2529 + ] 2530 + 2531 + [[package]] 2532 + name = "pbkdf2" 2533 + version = "0.11.0" 2534 + source = "registry+https://github.com/rust-lang/crates.io-index" 2535 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2536 + dependencies = [ 2537 + "digest", 2538 + "hmac", 2539 + "password-hash", 2540 + "sha2", 2541 + ] 2542 + 2543 + [[package]] 2544 + name = "pem" 2545 + version = "1.1.1" 2546 + source = "registry+https://github.com/rust-lang/crates.io-index" 2547 + checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 2548 + dependencies = [ 2549 + "base64 0.13.1", 2550 + ] 2551 + 2552 + [[package]] 2553 + name = "percent-encoding" 2554 + version = "2.2.0" 2555 + source = "registry+https://github.com/rust-lang/crates.io-index" 2556 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 2557 + 2558 + [[package]] 2559 + name = "petgraph" 2560 + version = "0.6.2" 2561 + source = "registry+https://github.com/rust-lang/crates.io-index" 2562 + checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" 2563 + dependencies = [ 2564 + "fixedbitset", 2565 + "indexmap", 2566 + ] 2567 + 2568 + [[package]] 2569 + name = "phf" 2570 + version = "0.8.0" 2571 + source = "registry+https://github.com/rust-lang/crates.io-index" 2572 + checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 2573 + dependencies = [ 2574 + "phf_macros 0.8.0", 2575 + "phf_shared 0.8.0", 2576 + "proc-macro-hack", 2577 + ] 2578 + 2579 + [[package]] 2580 + name = "phf" 2581 + version = "0.10.1" 2582 + source = "registry+https://github.com/rust-lang/crates.io-index" 2583 + checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2584 + dependencies = [ 2585 + "phf_shared 0.10.0", 2586 + ] 2587 + 2588 + [[package]] 2589 + name = "phf" 2590 + version = "0.11.1" 2591 + source = "registry+https://github.com/rust-lang/crates.io-index" 2592 + checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 2593 + dependencies = [ 2594 + "phf_macros 0.11.1", 2595 + "phf_shared 0.11.1", 2596 + ] 2597 + 2598 + [[package]] 2599 + name = "phf_codegen" 2600 + version = "0.8.0" 2601 + source = "registry+https://github.com/rust-lang/crates.io-index" 2602 + checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 2603 + dependencies = [ 2604 + "phf_generator 0.8.0", 2605 + "phf_shared 0.8.0", 2606 + ] 2607 + 2608 + [[package]] 2609 + name = "phf_codegen" 2610 + version = "0.10.0" 2611 + source = "registry+https://github.com/rust-lang/crates.io-index" 2612 + checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 2613 + dependencies = [ 2614 + "phf_generator 0.10.0", 2615 + "phf_shared 0.10.0", 2616 + ] 2617 + 2618 + [[package]] 2619 + name = "phf_generator" 2620 + version = "0.8.0" 2621 + source = "registry+https://github.com/rust-lang/crates.io-index" 2622 + checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 2623 + dependencies = [ 2624 + "phf_shared 0.8.0", 2625 + "rand 0.7.3", 2626 + ] 2627 + 2628 + [[package]] 2629 + name = "phf_generator" 2630 + version = "0.10.0" 2631 + source = "registry+https://github.com/rust-lang/crates.io-index" 2632 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 2633 + dependencies = [ 2634 + "phf_shared 0.10.0", 2635 + "rand 0.8.5", 2636 + ] 2637 + 2638 + [[package]] 2639 + name = "phf_generator" 2640 + version = "0.11.1" 2641 + source = "registry+https://github.com/rust-lang/crates.io-index" 2642 + checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 2643 + dependencies = [ 2644 + "phf_shared 0.11.1", 2645 + "rand 0.8.5", 2646 + ] 2647 + 2648 + [[package]] 2649 + name = "phf_macros" 2650 + version = "0.8.0" 2651 + source = "registry+https://github.com/rust-lang/crates.io-index" 2652 + checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 2653 + dependencies = [ 2654 + "phf_generator 0.8.0", 2655 + "phf_shared 0.8.0", 2656 + "proc-macro-hack", 2657 + "proc-macro2", 2658 + "quote", 2659 + "syn", 2660 + ] 2661 + 2662 + [[package]] 2663 + name = "phf_macros" 2664 + version = "0.11.1" 2665 + source = "registry+https://github.com/rust-lang/crates.io-index" 2666 + checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" 2667 + dependencies = [ 2668 + "phf_generator 0.11.1", 2669 + "phf_shared 0.11.1", 2670 + "proc-macro2", 2671 + "quote", 2672 + "syn", 2673 + ] 2674 + 2675 + [[package]] 2676 + name = "phf_shared" 2677 + version = "0.8.0" 2678 + source = "registry+https://github.com/rust-lang/crates.io-index" 2679 + checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 2680 + dependencies = [ 2681 + "siphasher", 2682 + ] 2683 + 2684 + [[package]] 2685 + name = "phf_shared" 2686 + version = "0.10.0" 2687 + source = "registry+https://github.com/rust-lang/crates.io-index" 2688 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 2689 + dependencies = [ 2690 + "siphasher", 2691 + ] 2692 + 2693 + [[package]] 2694 + name = "phf_shared" 2695 + version = "0.11.1" 2696 + source = "registry+https://github.com/rust-lang/crates.io-index" 2697 + checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 2698 + dependencies = [ 2699 + "siphasher", 2700 + ] 2701 + 2702 + [[package]] 2703 + name = "pin-project" 2704 + version = "1.0.12" 2705 + source = "registry+https://github.com/rust-lang/crates.io-index" 2706 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 2707 + dependencies = [ 2708 + "pin-project-internal", 2709 + ] 2710 + 2711 + [[package]] 2712 + name = "pin-project-internal" 2713 + version = "1.0.12" 2714 + source = "registry+https://github.com/rust-lang/crates.io-index" 2715 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 2716 + dependencies = [ 2717 + "proc-macro2", 2718 + "quote", 2719 + "syn", 2720 + ] 2721 + 2722 + [[package]] 2723 + name = "pin-project-lite" 2724 + version = "0.2.9" 2725 + source = "registry+https://github.com/rust-lang/crates.io-index" 2726 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 2727 + 2728 + [[package]] 2729 + name = "pin-utils" 2730 + version = "0.1.0" 2731 + source = "registry+https://github.com/rust-lang/crates.io-index" 2732 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2733 + 2734 + [[package]] 2735 + name = "pkg-config" 2736 + version = "0.3.26" 2737 + source = "registry+https://github.com/rust-lang/crates.io-index" 2738 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2739 + 2740 + [[package]] 2741 + name = "plist" 2742 + version = "1.4.0" 2743 + source = "registry+https://github.com/rust-lang/crates.io-index" 2744 + checksum = "5329b8f106a176ab0dce4aae5da86bfcb139bb74fb00882859e03745011f3635" 2745 + dependencies = [ 2746 + "base64 0.13.1", 2747 + "indexmap", 2748 + "line-wrap", 2749 + "quick-xml", 2750 + "serde", 2751 + "time", 2752 + ] 2753 + 2754 + [[package]] 2755 + name = "plotters" 2756 + version = "0.3.4" 2757 + source = "registry+https://github.com/rust-lang/crates.io-index" 2758 + checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 2759 + dependencies = [ 2760 + "num-traits", 2761 + "plotters-backend", 2762 + "plotters-svg", 2763 + "wasm-bindgen", 2764 + "web-sys", 2765 + ] 2766 + 2767 + [[package]] 2768 + name = "plotters-backend" 2769 + version = "0.3.4" 2770 + source = "registry+https://github.com/rust-lang/crates.io-index" 2771 + checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 2772 + 2773 + [[package]] 2774 + name = "plotters-svg" 2775 + version = "0.3.3" 2776 + source = "registry+https://github.com/rust-lang/crates.io-index" 2777 + checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 2778 + dependencies = [ 2779 + "plotters-backend", 2780 + ] 2781 + 2782 + [[package]] 2783 + name = "ppv-lite86" 2784 + version = "0.2.17" 2785 + source = "registry+https://github.com/rust-lang/crates.io-index" 2786 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2787 + 2788 + [[package]] 2789 + name = "precomputed-hash" 2790 + version = "0.1.1" 2791 + source = "registry+https://github.com/rust-lang/crates.io-index" 2792 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2793 + 2794 + [[package]] 2795 + name = "prettyplease" 2796 + version = "0.1.23" 2797 + source = "registry+https://github.com/rust-lang/crates.io-index" 2798 + checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78" 2799 + dependencies = [ 2800 + "proc-macro2", 2801 + "syn", 2802 + ] 2803 + 2804 + [[package]] 2805 + name = "proc-macro-crate" 2806 + version = "1.2.1" 2807 + source = "registry+https://github.com/rust-lang/crates.io-index" 2808 + checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" 2809 + dependencies = [ 2810 + "once_cell", 2811 + "thiserror", 2812 + "toml", 2813 + ] 2814 + 2815 + [[package]] 2816 + name = "proc-macro-error" 2817 + version = "1.0.4" 2818 + source = "registry+https://github.com/rust-lang/crates.io-index" 2819 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2820 + dependencies = [ 2821 + "proc-macro-error-attr", 2822 + "proc-macro2", 2823 + "quote", 2824 + "syn", 2825 + "version_check", 2826 + ] 2827 + 2828 + [[package]] 2829 + name = "proc-macro-error-attr" 2830 + version = "1.0.4" 2831 + source = "registry+https://github.com/rust-lang/crates.io-index" 2832 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2833 + dependencies = [ 2834 + "proc-macro2", 2835 + "quote", 2836 + "version_check", 2837 + ] 2838 + 2839 + [[package]] 2840 + name = "proc-macro-hack" 2841 + version = "0.5.20+deprecated" 2842 + source = "registry+https://github.com/rust-lang/crates.io-index" 2843 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2844 + 2845 + [[package]] 2846 + name = "proc-macro2" 2847 + version = "1.0.50" 2848 + source = "registry+https://github.com/rust-lang/crates.io-index" 2849 + checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" 2850 + dependencies = [ 2851 + "unicode-ident", 2852 + ] 2853 + 2854 + [[package]] 2855 + name = "prost" 2856 + version = "0.11.6" 2857 + source = "registry+https://github.com/rust-lang/crates.io-index" 2858 + checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698" 2859 + dependencies = [ 2860 + "bytes", 2861 + "prost-derive", 2862 + ] 2863 + 2864 + [[package]] 2865 + name = "prost-build" 2866 + version = "0.11.6" 2867 + source = "registry+https://github.com/rust-lang/crates.io-index" 2868 + checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e" 2869 + dependencies = [ 2870 + "bytes", 2871 + "heck", 2872 + "itertools", 2873 + "lazy_static", 2874 + "log", 2875 + "multimap", 2876 + "petgraph", 2877 + "prettyplease", 2878 + "prost", 2879 + "prost-types", 2880 + "regex", 2881 + "syn", 2882 + "tempfile", 2883 + "which", 2884 + ] 2885 + 2886 + [[package]] 2887 + name = "prost-derive" 2888 + version = "0.11.6" 2889 + source = "registry+https://github.com/rust-lang/crates.io-index" 2890 + checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d" 2891 + dependencies = [ 2892 + "anyhow", 2893 + "itertools", 2894 + "proc-macro2", 2895 + "quote", 2896 + "syn", 2897 + ] 2898 + 2899 + [[package]] 2900 + name = "prost-types" 2901 + version = "0.11.6" 2902 + source = "registry+https://github.com/rust-lang/crates.io-index" 2903 + checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788" 2904 + dependencies = [ 2905 + "bytes", 2906 + "prost", 2907 + ] 2908 + 2909 + [[package]] 2910 + name = "pulldown-cmark" 2911 + version = "0.8.0" 2912 + source = "registry+https://github.com/rust-lang/crates.io-index" 2913 + checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" 2914 + dependencies = [ 2915 + "bitflags", 2916 + "getopts", 2917 + "memchr", 2918 + "unicase", 2919 + ] 2920 + 2921 + [[package]] 2922 + name = "pulldown-cmark" 2923 + version = "0.9.2" 2924 + source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" 2926 + dependencies = [ 2927 + "bitflags", 2928 + "getopts", 2929 + "memchr", 2930 + "unicase", 2931 + ] 2932 + 2933 + [[package]] 2934 + name = "pyo3" 2935 + version = "0.18.0" 2936 + source = "registry+https://github.com/rust-lang/crates.io-index" 2937 + checksum = "ccd4149c8c3975099622b4e1962dac27565cf5663b76452c3e2b66e0b6824277" 2938 + dependencies = [ 2939 + "cfg-if", 2940 + "indoc", 2941 + "libc", 2942 + "memoffset 0.8.0", 2943 + "parking_lot", 2944 + "pyo3-build-config", 2945 + "pyo3-ffi", 2946 + "pyo3-macros", 2947 + "unindent", 2948 + ] 2949 + 2950 + [[package]] 2951 + name = "pyo3-build-config" 2952 + version = "0.18.0" 2953 + source = "registry+https://github.com/rust-lang/crates.io-index" 2954 + checksum = "9cd09fe469834db21ee60e0051030339e5d361293d8cb5ec02facf7fdcf52dbf" 2955 + dependencies = [ 2956 + "once_cell", 2957 + "target-lexicon", 2958 + ] 2959 + 2960 + [[package]] 2961 + name = "pyo3-ffi" 2962 + version = "0.18.0" 2963 + source = "registry+https://github.com/rust-lang/crates.io-index" 2964 + checksum = "0c427c9a96b9c5b12156dbc11f76b14f49e9aae8905ca783ea87c249044ef137" 2965 + dependencies = [ 2966 + "libc", 2967 + "pyo3-build-config", 2968 + ] 2969 + 2970 + [[package]] 2971 + name = "pyo3-macros" 2972 + version = "0.18.0" 2973 + source = "registry+https://github.com/rust-lang/crates.io-index" 2974 + checksum = "16b822bbba9d60630a44d2109bc410489bb2f439b33e3a14ddeb8a40b378a7c4" 2975 + dependencies = [ 2976 + "proc-macro2", 2977 + "pyo3-macros-backend", 2978 + "quote", 2979 + "syn", 2980 + ] 2981 + 2982 + [[package]] 2983 + name = "pyo3-macros-backend" 2984 + version = "0.18.0" 2985 + source = "registry+https://github.com/rust-lang/crates.io-index" 2986 + checksum = "84ae898104f7c99db06231160770f3e40dad6eb9021daddc0fedfa3e41dff10a" 2987 + dependencies = [ 2988 + "proc-macro2", 2989 + "quote", 2990 + "syn", 2991 + ] 2992 + 2993 + [[package]] 2994 + name = "quick-xml" 2995 + version = "0.26.0" 2996 + source = "registry+https://github.com/rust-lang/crates.io-index" 2997 + checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" 2998 + dependencies = [ 2999 + "memchr", 3000 + ] 3001 + 3002 + [[package]] 3003 + name = "quote" 3004 + version = "1.0.23" 3005 + source = "registry+https://github.com/rust-lang/crates.io-index" 3006 + checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 3007 + dependencies = [ 3008 + "proc-macro2", 3009 + ] 3010 + 3011 + [[package]] 3012 + name = "rand" 3013 + version = "0.7.3" 3014 + source = "registry+https://github.com/rust-lang/crates.io-index" 3015 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3016 + dependencies = [ 3017 + "getrandom 0.1.16", 3018 + "libc", 3019 + "rand_chacha 0.2.2", 3020 + "rand_core 0.5.1", 3021 + "rand_hc", 3022 + "rand_pcg", 3023 + ] 3024 + 3025 + [[package]] 3026 + name = "rand" 3027 + version = "0.8.5" 3028 + source = "registry+https://github.com/rust-lang/crates.io-index" 3029 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3030 + dependencies = [ 3031 + "libc", 3032 + "rand_chacha 0.3.1", 3033 + "rand_core 0.6.4", 3034 + ] 3035 + 3036 + [[package]] 3037 + name = "rand_chacha" 3038 + version = "0.2.2" 3039 + source = "registry+https://github.com/rust-lang/crates.io-index" 3040 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3041 + dependencies = [ 3042 + "ppv-lite86", 3043 + "rand_core 0.5.1", 3044 + ] 3045 + 3046 + [[package]] 3047 + name = "rand_chacha" 3048 + version = "0.3.1" 3049 + source = "registry+https://github.com/rust-lang/crates.io-index" 3050 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3051 + dependencies = [ 3052 + "ppv-lite86", 3053 + "rand_core 0.6.4", 3054 + ] 3055 + 3056 + [[package]] 3057 + name = "rand_core" 3058 + version = "0.5.1" 3059 + source = "registry+https://github.com/rust-lang/crates.io-index" 3060 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3061 + dependencies = [ 3062 + "getrandom 0.1.16", 3063 + ] 3064 + 3065 + [[package]] 3066 + name = "rand_core" 3067 + version = "0.6.4" 3068 + source = "registry+https://github.com/rust-lang/crates.io-index" 3069 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3070 + dependencies = [ 3071 + "getrandom 0.2.8", 3072 + ] 3073 + 3074 + [[package]] 3075 + name = "rand_hc" 3076 + version = "0.2.0" 3077 + source = "registry+https://github.com/rust-lang/crates.io-index" 3078 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3079 + dependencies = [ 3080 + "rand_core 0.5.1", 3081 + ] 3082 + 3083 + [[package]] 3084 + name = "rand_pcg" 3085 + version = "0.2.1" 3086 + source = "registry+https://github.com/rust-lang/crates.io-index" 3087 + checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 3088 + dependencies = [ 3089 + "rand_core 0.5.1", 3090 + ] 3091 + 3092 + [[package]] 3093 + name = "rayon" 3094 + version = "1.6.1" 3095 + source = "registry+https://github.com/rust-lang/crates.io-index" 3096 + checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 3097 + dependencies = [ 3098 + "either", 3099 + "rayon-core", 3100 + ] 3101 + 3102 + [[package]] 3103 + name = "rayon-core" 3104 + version = "1.10.1" 3105 + source = "registry+https://github.com/rust-lang/crates.io-index" 3106 + checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" 3107 + dependencies = [ 3108 + "crossbeam-channel", 3109 + "crossbeam-deque", 3110 + "crossbeam-utils", 3111 + "num_cpus", 3112 + ] 3113 + 3114 + [[package]] 3115 + name = "rc2" 3116 + version = "0.8.1" 3117 + source = "registry+https://github.com/rust-lang/crates.io-index" 3118 + checksum = "62c64daa8e9438b84aaae55010a93f396f8e60e3911590fcba770d04643fc1dd" 3119 + dependencies = [ 3120 + "cipher 0.4.3", 3121 + ] 3122 + 3123 + [[package]] 3124 + name = "rcgen" 3125 + version = "0.10.0" 3126 + source = "registry+https://github.com/rust-lang/crates.io-index" 3127 + checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" 3128 + dependencies = [ 3129 + "pem", 3130 + "ring", 3131 + "time", 3132 + "yasna", 3133 + ] 3134 + 3135 + [[package]] 3136 + name = "redox_syscall" 3137 + version = "0.2.16" 3138 + source = "registry+https://github.com/rust-lang/crates.io-index" 3139 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3140 + dependencies = [ 3141 + "bitflags", 3142 + ] 3143 + 3144 + [[package]] 3145 + name = "regex" 3146 + version = "1.7.1" 3147 + source = "registry+https://github.com/rust-lang/crates.io-index" 3148 + checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 3149 + dependencies = [ 3150 + "aho-corasick", 3151 + "memchr", 3152 + "regex-syntax", 3153 + ] 3154 + 3155 + [[package]] 3156 + name = "regex-automata" 3157 + version = "0.1.10" 3158 + source = "registry+https://github.com/rust-lang/crates.io-index" 3159 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3160 + dependencies = [ 3161 + "regex-syntax", 3162 + ] 3163 + 3164 + [[package]] 3165 + name = "regex-syntax" 3166 + version = "0.6.28" 3167 + source = "registry+https://github.com/rust-lang/crates.io-index" 3168 + checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 3169 + 3170 + [[package]] 3171 + name = "remove_dir_all" 3172 + version = "0.5.3" 3173 + source = "registry+https://github.com/rust-lang/crates.io-index" 3174 + checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 3175 + dependencies = [ 3176 + "winapi", 3177 + ] 3178 + 3179 + [[package]] 3180 + name = "reqwest" 3181 + version = "0.11.13" 3182 + source = "registry+https://github.com/rust-lang/crates.io-index" 3183 + checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" 3184 + dependencies = [ 3185 + "base64 0.13.1", 3186 + "bytes", 3187 + "encoding_rs", 3188 + "futures-core", 3189 + "futures-util", 3190 + "h2", 3191 + "http", 3192 + "http-body", 3193 + "hyper", 3194 + "hyper-rustls", 3195 + "hyper-tls", 3196 + "ipnet", 3197 + "js-sys", 3198 + "log", 3199 + "mime", 3200 + "mime_guess", 3201 + "native-tls", 3202 + "once_cell", 3203 + "percent-encoding", 3204 + "pin-project-lite", 3205 + "rustls", 3206 + "rustls-native-certs", 3207 + "rustls-pemfile", 3208 + "serde", 3209 + "serde_json", 3210 + "serde_urlencoded", 3211 + "tokio", 3212 + "tokio-native-tls", 3213 + "tokio-rustls", 3214 + "tokio-socks", 3215 + "tokio-util", 3216 + "tower-service", 3217 + "url", 3218 + "wasm-bindgen", 3219 + "wasm-bindgen-futures", 3220 + "web-sys", 3221 + "webpki-roots", 3222 + "winreg 0.10.1", 3223 + ] 3224 + 3225 + [[package]] 3226 + name = "retain_mut" 3227 + version = "0.1.9" 3228 + source = "registry+https://github.com/rust-lang/crates.io-index" 3229 + checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" 3230 + 3231 + [[package]] 3232 + name = "ring" 3233 + version = "0.16.20" 3234 + source = "registry+https://github.com/rust-lang/crates.io-index" 3235 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3236 + dependencies = [ 3237 + "cc", 3238 + "libc", 3239 + "once_cell", 3240 + "spin 0.5.2", 3241 + "untrusted", 3242 + "web-sys", 3243 + "winapi", 3244 + ] 3245 + 3246 + [[package]] 3247 + name = "rsbridge" 3248 + version = "0.0.0" 3249 + dependencies = [ 3250 + "anki", 3251 + "pyo3", 3252 + "workspace-hack", 3253 + ] 3254 + 3255 + [[package]] 3256 + name = "runner" 3257 + version = "0.0.0" 3258 + dependencies = [ 3259 + "camino", 3260 + "clap 4.1.1", 3261 + "junction", 3262 + "termcolor", 3263 + "workspace-hack", 3264 + ] 3265 + 3266 + [[package]] 3267 + name = "rusqlite" 3268 + version = "0.28.0" 3269 + source = "registry+https://github.com/rust-lang/crates.io-index" 3270 + checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" 3271 + dependencies = [ 3272 + "bitflags", 3273 + "fallible-iterator", 3274 + "fallible-streaming-iterator", 3275 + "hashlink", 3276 + "libsqlite3-sys", 3277 + "smallvec", 3278 + ] 3279 + 3280 + [[package]] 3281 + name = "rustc-demangle" 3282 + version = "0.1.21" 3283 + source = "registry+https://github.com/rust-lang/crates.io-index" 3284 + checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 3285 + 3286 + [[package]] 3287 + name = "rustc-hash" 3288 + version = "1.1.0" 3289 + source = "registry+https://github.com/rust-lang/crates.io-index" 3290 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3291 + 3292 + [[package]] 3293 + name = "rustc_version" 3294 + version = "0.4.0" 3295 + source = "registry+https://github.com/rust-lang/crates.io-index" 3296 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3297 + dependencies = [ 3298 + "semver", 3299 + ] 3300 + 3301 + [[package]] 3302 + name = "rustix" 3303 + version = "0.36.6" 3304 + source = "registry+https://github.com/rust-lang/crates.io-index" 3305 + checksum = "4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549" 3306 + dependencies = [ 3307 + "bitflags", 3308 + "errno", 3309 + "io-lifetimes", 3310 + "libc", 3311 + "linux-raw-sys", 3312 + "windows-sys", 3313 + ] 3314 + 3315 + [[package]] 3316 + name = "rustls" 3317 + version = "0.20.8" 3318 + source = "registry+https://github.com/rust-lang/crates.io-index" 3319 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 3320 + dependencies = [ 3321 + "log", 3322 + "ring", 3323 + "sct", 3324 + "webpki", 3325 + ] 3326 + 3327 + [[package]] 3328 + name = "rustls-native-certs" 3329 + version = "0.6.2" 3330 + source = "registry+https://github.com/rust-lang/crates.io-index" 3331 + checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 3332 + dependencies = [ 3333 + "openssl-probe", 3334 + "rustls-pemfile", 3335 + "schannel", 3336 + "security-framework", 3337 + ] 3338 + 3339 + [[package]] 3340 + name = "rustls-pemfile" 3341 + version = "1.0.2" 3342 + source = "registry+https://github.com/rust-lang/crates.io-index" 3343 + checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 3344 + dependencies = [ 3345 + "base64 0.21.0", 3346 + ] 3347 + 3348 + [[package]] 3349 + name = "rustversion" 3350 + version = "1.0.11" 3351 + source = "registry+https://github.com/rust-lang/crates.io-index" 3352 + checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" 3353 + 3354 + [[package]] 3355 + name = "ryu" 3356 + version = "1.0.12" 3357 + source = "registry+https://github.com/rust-lang/crates.io-index" 3358 + checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 3359 + 3360 + [[package]] 3361 + name = "safemem" 3362 + version = "0.3.3" 3363 + source = "registry+https://github.com/rust-lang/crates.io-index" 3364 + checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 3365 + 3366 + [[package]] 3367 + name = "same-file" 3368 + version = "1.0.6" 3369 + source = "registry+https://github.com/rust-lang/crates.io-index" 3370 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3371 + dependencies = [ 3372 + "winapi-util", 3373 + ] 3374 + 3375 + [[package]] 3376 + name = "schannel" 3377 + version = "0.1.21" 3378 + source = "registry+https://github.com/rust-lang/crates.io-index" 3379 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 3380 + dependencies = [ 3381 + "windows-sys", 3382 + ] 3383 + 3384 + [[package]] 3385 + name = "scopeguard" 3386 + version = "1.1.0" 3387 + source = "registry+https://github.com/rust-lang/crates.io-index" 3388 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 3389 + 3390 + [[package]] 3391 + name = "scratch" 3392 + version = "1.0.3" 3393 + source = "registry+https://github.com/rust-lang/crates.io-index" 3394 + checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" 3395 + 3396 + [[package]] 3397 + name = "sct" 3398 + version = "0.7.0" 3399 + source = "registry+https://github.com/rust-lang/crates.io-index" 3400 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 3401 + dependencies = [ 3402 + "ring", 3403 + "untrusted", 3404 + ] 3405 + 3406 + [[package]] 3407 + name = "security-framework" 3408 + version = "2.7.0" 3409 + source = "registry+https://github.com/rust-lang/crates.io-index" 3410 + checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 3411 + dependencies = [ 3412 + "bitflags", 3413 + "core-foundation", 3414 + "core-foundation-sys", 3415 + "libc", 3416 + "security-framework-sys", 3417 + ] 3418 + 3419 + [[package]] 3420 + name = "security-framework-sys" 3421 + version = "2.6.1" 3422 + source = "registry+https://github.com/rust-lang/crates.io-index" 3423 + checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 3424 + dependencies = [ 3425 + "core-foundation-sys", 3426 + "libc", 3427 + ] 3428 + 3429 + [[package]] 3430 + name = "selectors" 3431 + version = "0.22.0" 3432 + source = "registry+https://github.com/rust-lang/crates.io-index" 3433 + checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 3434 + dependencies = [ 3435 + "bitflags", 3436 + "cssparser", 3437 + "derive_more", 3438 + "fxhash", 3439 + "log", 3440 + "matches", 3441 + "phf 0.8.0", 3442 + "phf_codegen 0.8.0", 3443 + "precomputed-hash", 3444 + "servo_arc", 3445 + "smallvec", 3446 + "thin-slice", 3447 + ] 3448 + 3449 + [[package]] 3450 + name = "self_cell" 3451 + version = "0.10.2" 3452 + source = "registry+https://github.com/rust-lang/crates.io-index" 3453 + checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 3454 + 3455 + [[package]] 3456 + name = "semver" 3457 + version = "1.0.16" 3458 + source = "registry+https://github.com/rust-lang/crates.io-index" 3459 + checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 3460 + 3461 + [[package]] 3462 + name = "serde" 3463 + version = "1.0.152" 3464 + source = "registry+https://github.com/rust-lang/crates.io-index" 3465 + checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 3466 + dependencies = [ 3467 + "serde_derive", 3468 + ] 3469 + 3470 + [[package]] 3471 + name = "serde-aux" 3472 + version = "4.1.2" 3473 + source = "registry+https://github.com/rust-lang/crates.io-index" 3474 + checksum = "c599b3fd89a75e0c18d6d2be693ddb12cccaf771db4ff9e39097104808a014c0" 3475 + dependencies = [ 3476 + "chrono", 3477 + "serde", 3478 + "serde_json", 3479 + ] 3480 + 3481 + [[package]] 3482 + name = "serde_derive" 3483 + version = "1.0.152" 3484 + source = "registry+https://github.com/rust-lang/crates.io-index" 3485 + checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 3486 + dependencies = [ 3487 + "proc-macro2", 3488 + "quote", 3489 + "syn", 3490 + ] 3491 + 3492 + [[package]] 3493 + name = "serde_json" 3494 + version = "1.0.91" 3495 + source = "registry+https://github.com/rust-lang/crates.io-index" 3496 + checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" 3497 + dependencies = [ 3498 + "itoa 1.0.5", 3499 + "ryu", 3500 + "serde", 3501 + ] 3502 + 3503 + [[package]] 3504 + name = "serde_path_to_error" 3505 + version = "0.1.9" 3506 + source = "registry+https://github.com/rust-lang/crates.io-index" 3507 + checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341" 3508 + dependencies = [ 3509 + "serde", 3510 + ] 3511 + 3512 + [[package]] 3513 + name = "serde_qs" 3514 + version = "0.8.5" 3515 + source = "registry+https://github.com/rust-lang/crates.io-index" 3516 + checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 3517 + dependencies = [ 3518 + "percent-encoding", 3519 + "serde", 3520 + "thiserror", 3521 + ] 3522 + 3523 + [[package]] 3524 + name = "serde_repr" 3525 + version = "0.1.10" 3526 + source = "registry+https://github.com/rust-lang/crates.io-index" 3527 + checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" 3528 + dependencies = [ 3529 + "proc-macro2", 3530 + "quote", 3531 + "syn", 3532 + ] 3533 + 3534 + [[package]] 3535 + name = "serde_tuple" 3536 + version = "0.5.0" 3537 + source = "registry+https://github.com/rust-lang/crates.io-index" 3538 + checksum = "f4f025b91216f15a2a32aa39669329a475733590a015835d1783549a56d09427" 3539 + dependencies = [ 3540 + "serde", 3541 + "serde_tuple_macros", 3542 + ] 3543 + 3544 + [[package]] 3545 + name = "serde_tuple_macros" 3546 + version = "0.5.0" 3547 + source = "registry+https://github.com/rust-lang/crates.io-index" 3548 + checksum = "4076151d1a2b688e25aaf236997933c66e18b870d0369f8b248b8ab2be630d7e" 3549 + dependencies = [ 3550 + "proc-macro2", 3551 + "quote", 3552 + "syn", 3553 + ] 3554 + 3555 + [[package]] 3556 + name = "serde_urlencoded" 3557 + version = "0.7.1" 3558 + source = "registry+https://github.com/rust-lang/crates.io-index" 3559 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3560 + dependencies = [ 3561 + "form_urlencoded", 3562 + "itoa 1.0.5", 3563 + "ryu", 3564 + "serde", 3565 + ] 3566 + 3567 + [[package]] 3568 + name = "servo_arc" 3569 + version = "0.1.1" 3570 + source = "registry+https://github.com/rust-lang/crates.io-index" 3571 + checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 3572 + dependencies = [ 3573 + "nodrop", 3574 + "stable_deref_trait", 3575 + ] 3576 + 3577 + [[package]] 3578 + name = "sha1" 3579 + version = "0.10.5" 3580 + source = "registry+https://github.com/rust-lang/crates.io-index" 3581 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 3582 + dependencies = [ 3583 + "cfg-if", 3584 + "cpufeatures", 3585 + "digest", 3586 + ] 3587 + 3588 + [[package]] 3589 + name = "sha2" 3590 + version = "0.10.6" 3591 + source = "registry+https://github.com/rust-lang/crates.io-index" 3592 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 3593 + dependencies = [ 3594 + "cfg-if", 3595 + "cpufeatures", 3596 + "digest", 3597 + ] 3598 + 3599 + [[package]] 3600 + name = "sharded-slab" 3601 + version = "0.1.4" 3602 + source = "registry+https://github.com/rust-lang/crates.io-index" 3603 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 3604 + dependencies = [ 3605 + "lazy_static", 3606 + ] 3607 + 3608 + [[package]] 3609 + name = "shared_child" 3610 + version = "1.0.0" 3611 + source = "registry+https://github.com/rust-lang/crates.io-index" 3612 + checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 3613 + dependencies = [ 3614 + "libc", 3615 + "winapi", 3616 + ] 3617 + 3618 + [[package]] 3619 + name = "signal-hook-registry" 3620 + version = "1.4.0" 3621 + source = "registry+https://github.com/rust-lang/crates.io-index" 3622 + checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 3623 + dependencies = [ 3624 + "libc", 3625 + ] 3626 + 3627 + [[package]] 3628 + name = "simple-file-manifest" 3629 + version = "0.11.0" 3630 + source = "registry+https://github.com/rust-lang/crates.io-index" 3631 + checksum = "5dd19be0257552dd56d1bb6946f89f193c6e5b9f13cc9327c4bc84a357507c74" 3632 + 3633 + [[package]] 3634 + name = "siphasher" 3635 + version = "0.3.10" 3636 + source = "registry+https://github.com/rust-lang/crates.io-index" 3637 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 3638 + 3639 + [[package]] 3640 + name = "slab" 3641 + version = "0.4.7" 3642 + source = "registry+https://github.com/rust-lang/crates.io-index" 3643 + checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 3644 + dependencies = [ 3645 + "autocfg", 3646 + ] 3647 + 3648 + [[package]] 3649 + name = "smallvec" 3650 + version = "1.10.0" 3651 + source = "registry+https://github.com/rust-lang/crates.io-index" 3652 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 3653 + 3654 + [[package]] 3655 + name = "snafu" 3656 + version = "0.7.4" 3657 + source = "registry+https://github.com/rust-lang/crates.io-index" 3658 + checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" 3659 + dependencies = [ 3660 + "backtrace", 3661 + "doc-comment", 3662 + "snafu-derive", 3663 + ] 3664 + 3665 + [[package]] 3666 + name = "snafu-derive" 3667 + version = "0.7.4" 3668 + source = "registry+https://github.com/rust-lang/crates.io-index" 3669 + checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 3670 + dependencies = [ 3671 + "heck", 3672 + "proc-macro2", 3673 + "quote", 3674 + "syn", 3675 + ] 3676 + 3677 + [[package]] 3678 + name = "snowflake" 3679 + version = "1.3.0" 3680 + source = "registry+https://github.com/rust-lang/crates.io-index" 3681 + checksum = "27207bb65232eda1f588cf46db2fee75c0808d557f6b3cf19a75f5d6d7c94df1" 3682 + 3683 + [[package]] 3684 + name = "socket2" 3685 + version = "0.4.7" 3686 + source = "registry+https://github.com/rust-lang/crates.io-index" 3687 + checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 3688 + dependencies = [ 3689 + "libc", 3690 + "winapi", 3691 + ] 3692 + 3693 + [[package]] 3694 + name = "spin" 3695 + version = "0.5.2" 3696 + source = "registry+https://github.com/rust-lang/crates.io-index" 3697 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3698 + 3699 + [[package]] 3700 + name = "spin" 3701 + version = "0.9.4" 3702 + source = "registry+https://github.com/rust-lang/crates.io-index" 3703 + checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" 3704 + 3705 + [[package]] 3706 + name = "stable_deref_trait" 3707 + version = "1.2.0" 3708 + source = "registry+https://github.com/rust-lang/crates.io-index" 3709 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3710 + 3711 + [[package]] 3712 + name = "string_cache" 3713 + version = "0.8.4" 3714 + source = "registry+https://github.com/rust-lang/crates.io-index" 3715 + checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 3716 + dependencies = [ 3717 + "new_debug_unreachable", 3718 + "once_cell", 3719 + "parking_lot", 3720 + "phf_shared 0.10.0", 3721 + "precomputed-hash", 3722 + "serde", 3723 + ] 3724 + 3725 + [[package]] 3726 + name = "string_cache_codegen" 3727 + version = "0.5.2" 3728 + source = "registry+https://github.com/rust-lang/crates.io-index" 3729 + checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 3730 + dependencies = [ 3731 + "phf_generator 0.10.0", 3732 + "phf_shared 0.10.0", 3733 + "proc-macro2", 3734 + "quote", 3735 + ] 3736 + 3737 + [[package]] 3738 + name = "strsim" 3739 + version = "0.10.0" 3740 + source = "registry+https://github.com/rust-lang/crates.io-index" 3741 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3742 + 3743 + [[package]] 3744 + name = "strum" 3745 + version = "0.24.1" 3746 + source = "registry+https://github.com/rust-lang/crates.io-index" 3747 + checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 3748 + dependencies = [ 3749 + "strum_macros", 3750 + ] 3751 + 3752 + [[package]] 3753 + name = "strum_macros" 3754 + version = "0.24.3" 3755 + source = "registry+https://github.com/rust-lang/crates.io-index" 3756 + checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 3757 + dependencies = [ 3758 + "heck", 3759 + "proc-macro2", 3760 + "quote", 3761 + "rustversion", 3762 + "syn", 3763 + ] 3764 + 3765 + [[package]] 3766 + name = "subtle" 3767 + version = "2.4.1" 3768 + source = "registry+https://github.com/rust-lang/crates.io-index" 3769 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3770 + 3771 + [[package]] 3772 + name = "syn" 3773 + version = "1.0.107" 3774 + source = "registry+https://github.com/rust-lang/crates.io-index" 3775 + checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 3776 + dependencies = [ 3777 + "proc-macro2", 3778 + "quote", 3779 + "unicode-ident", 3780 + ] 3781 + 3782 + [[package]] 3783 + name = "sync_wrapper" 3784 + version = "0.1.1" 3785 + source = "registry+https://github.com/rust-lang/crates.io-index" 3786 + checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8" 3787 + 3788 + [[package]] 3789 + name = "tar" 3790 + version = "0.4.38" 3791 + source = "registry+https://github.com/rust-lang/crates.io-index" 3792 + checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 3793 + dependencies = [ 3794 + "filetime", 3795 + "libc", 3796 + "xattr", 3797 + ] 3798 + 3799 + [[package]] 3800 + name = "target-lexicon" 3801 + version = "0.12.5" 3802 + source = "registry+https://github.com/rust-lang/crates.io-index" 3803 + checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" 3804 + 3805 + [[package]] 3806 + name = "tempfile" 3807 + version = "3.3.0" 3808 + source = "registry+https://github.com/rust-lang/crates.io-index" 3809 + checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 3810 + dependencies = [ 3811 + "cfg-if", 3812 + "fastrand", 3813 + "libc", 3814 + "redox_syscall", 3815 + "remove_dir_all", 3816 + "winapi", 3817 + ] 3818 + 3819 + [[package]] 3820 + name = "tendril" 3821 + version = "0.4.3" 3822 + source = "registry+https://github.com/rust-lang/crates.io-index" 3823 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 3824 + dependencies = [ 3825 + "futf", 3826 + "mac", 3827 + "utf-8", 3828 + ] 3829 + 3830 + [[package]] 3831 + name = "termcolor" 3832 + version = "1.2.0" 3833 + source = "registry+https://github.com/rust-lang/crates.io-index" 3834 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 3835 + dependencies = [ 3836 + "winapi-util", 3837 + ] 3838 + 3839 + [[package]] 3840 + name = "textwrap" 3841 + version = "0.16.0" 3842 + source = "registry+https://github.com/rust-lang/crates.io-index" 3843 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 3844 + 3845 + [[package]] 3846 + name = "thin-slice" 3847 + version = "0.1.1" 3848 + source = "registry+https://github.com/rust-lang/crates.io-index" 3849 + checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 3850 + 3851 + [[package]] 3852 + name = "thiserror" 3853 + version = "1.0.38" 3854 + source = "registry+https://github.com/rust-lang/crates.io-index" 3855 + checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 3856 + dependencies = [ 3857 + "thiserror-impl", 3858 + ] 3859 + 3860 + [[package]] 3861 + name = "thiserror-impl" 3862 + version = "1.0.38" 3863 + source = "registry+https://github.com/rust-lang/crates.io-index" 3864 + checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 3865 + dependencies = [ 3866 + "proc-macro2", 3867 + "quote", 3868 + "syn", 3869 + ] 3870 + 3871 + [[package]] 3872 + name = "thread_local" 3873 + version = "1.1.4" 3874 + source = "registry+https://github.com/rust-lang/crates.io-index" 3875 + checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 3876 + dependencies = [ 3877 + "once_cell", 3878 + ] 3879 + 3880 + [[package]] 3881 + name = "time" 3882 + version = "0.3.17" 3883 + source = "registry+https://github.com/rust-lang/crates.io-index" 3884 + checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 3885 + dependencies = [ 3886 + "itoa 1.0.5", 3887 + "serde", 3888 + "time-core", 3889 + "time-macros", 3890 + ] 3891 + 3892 + [[package]] 3893 + name = "time-core" 3894 + version = "0.1.0" 3895 + source = "registry+https://github.com/rust-lang/crates.io-index" 3896 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 3897 + 3898 + [[package]] 3899 + name = "time-macros" 3900 + version = "0.2.6" 3901 + source = "registry+https://github.com/rust-lang/crates.io-index" 3902 + checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 3903 + dependencies = [ 3904 + "time-core", 3905 + ] 3906 + 3907 + [[package]] 3908 + name = "tinystr" 3909 + version = "0.7.0" 3910 + source = "registry+https://github.com/rust-lang/crates.io-index" 3911 + checksum = "f8aeafdfd935e4a7fe16a91ab711fa52d54df84f9c8f7ca5837a9d1d902ef4c2" 3912 + dependencies = [ 3913 + "displaydoc", 3914 + ] 3915 + 3916 + [[package]] 3917 + name = "tinytemplate" 3918 + version = "1.2.1" 3919 + source = "registry+https://github.com/rust-lang/crates.io-index" 3920 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 3921 + dependencies = [ 3922 + "serde", 3923 + "serde_json", 3924 + ] 3925 + 3926 + [[package]] 3927 + name = "tinyvec" 3928 + version = "1.6.0" 3929 + source = "registry+https://github.com/rust-lang/crates.io-index" 3930 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3931 + dependencies = [ 3932 + "tinyvec_macros", 3933 + ] 3934 + 3935 + [[package]] 3936 + name = "tinyvec_macros" 3937 + version = "0.1.0" 3938 + source = "registry+https://github.com/rust-lang/crates.io-index" 3939 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3940 + 3941 + [[package]] 3942 + name = "tokio" 3943 + version = "1.24.2" 3944 + source = "registry+https://github.com/rust-lang/crates.io-index" 3945 + checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" 3946 + dependencies = [ 3947 + "autocfg", 3948 + "bytes", 3949 + "libc", 3950 + "memchr", 3951 + "mio", 3952 + "num_cpus", 3953 + "parking_lot", 3954 + "pin-project-lite", 3955 + "signal-hook-registry", 3956 + "socket2", 3957 + "tokio-macros", 3958 + "windows-sys", 3959 + ] 3960 + 3961 + [[package]] 3962 + name = "tokio-macros" 3963 + version = "1.8.2" 3964 + source = "registry+https://github.com/rust-lang/crates.io-index" 3965 + checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 3966 + dependencies = [ 3967 + "proc-macro2", 3968 + "quote", 3969 + "syn", 3970 + ] 3971 + 3972 + [[package]] 3973 + name = "tokio-native-tls" 3974 + version = "0.3.0" 3975 + source = "registry+https://github.com/rust-lang/crates.io-index" 3976 + checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 3977 + dependencies = [ 3978 + "native-tls", 3979 + "tokio", 3980 + ] 3981 + 3982 + [[package]] 3983 + name = "tokio-rustls" 3984 + version = "0.23.4" 3985 + source = "registry+https://github.com/rust-lang/crates.io-index" 3986 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 3987 + dependencies = [ 3988 + "rustls", 3989 + "tokio", 3990 + "webpki", 3991 + ] 3992 + 3993 + [[package]] 3994 + name = "tokio-socks" 3995 + version = "0.5.1" 3996 + source = "registry+https://github.com/rust-lang/crates.io-index" 3997 + checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" 3998 + dependencies = [ 3999 + "either", 4000 + "futures-util", 4001 + "thiserror", 4002 + "tokio", 4003 + ] 4004 + 4005 + [[package]] 4006 + name = "tokio-util" 4007 + version = "0.7.4" 4008 + source = "registry+https://github.com/rust-lang/crates.io-index" 4009 + checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" 4010 + dependencies = [ 4011 + "bytes", 4012 + "futures-core", 4013 + "futures-sink", 4014 + "pin-project-lite", 4015 + "tokio", 4016 + "tracing", 4017 + ] 4018 + 4019 + [[package]] 4020 + name = "toml" 4021 + version = "0.5.10" 4022 + source = "registry+https://github.com/rust-lang/crates.io-index" 4023 + checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f" 4024 + dependencies = [ 4025 + "serde", 4026 + ] 4027 + 4028 + [[package]] 4029 + name = "tower" 4030 + version = "0.4.13" 4031 + source = "registry+https://github.com/rust-lang/crates.io-index" 4032 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 4033 + dependencies = [ 4034 + "futures-core", 4035 + "futures-util", 4036 + "pin-project", 4037 + "pin-project-lite", 4038 + "tokio", 4039 + "tower-layer", 4040 + "tower-service", 4041 + "tracing", 4042 + ] 4043 + 4044 + [[package]] 4045 + name = "tower-http" 4046 + version = "0.3.5" 4047 + source = "registry+https://github.com/rust-lang/crates.io-index" 4048 + checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" 4049 + dependencies = [ 4050 + "bitflags", 4051 + "bytes", 4052 + "futures-core", 4053 + "futures-util", 4054 + "http", 4055 + "http-body", 4056 + "http-range-header", 4057 + "pin-project-lite", 4058 + "tower", 4059 + "tower-layer", 4060 + "tower-service", 4061 + "tracing", 4062 + ] 4063 + 4064 + [[package]] 4065 + name = "tower-layer" 4066 + version = "0.3.2" 4067 + source = "registry+https://github.com/rust-lang/crates.io-index" 4068 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 4069 + 4070 + [[package]] 4071 + name = "tower-service" 4072 + version = "0.3.2" 4073 + source = "registry+https://github.com/rust-lang/crates.io-index" 4074 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 4075 + 4076 + [[package]] 4077 + name = "tracing" 4078 + version = "0.1.37" 4079 + source = "registry+https://github.com/rust-lang/crates.io-index" 4080 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4081 + dependencies = [ 4082 + "cfg-if", 4083 + "log", 4084 + "pin-project-lite", 4085 + "tracing-attributes", 4086 + "tracing-core", 4087 + ] 4088 + 4089 + [[package]] 4090 + name = "tracing-appender" 4091 + version = "0.2.2" 4092 + source = "registry+https://github.com/rust-lang/crates.io-index" 4093 + checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e" 4094 + dependencies = [ 4095 + "crossbeam-channel", 4096 + "time", 4097 + "tracing-subscriber", 4098 + ] 4099 + 4100 + [[package]] 4101 + name = "tracing-attributes" 4102 + version = "0.1.23" 4103 + source = "registry+https://github.com/rust-lang/crates.io-index" 4104 + checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 4105 + dependencies = [ 4106 + "proc-macro2", 4107 + "quote", 4108 + "syn", 4109 + ] 4110 + 4111 + [[package]] 4112 + name = "tracing-core" 4113 + version = "0.1.30" 4114 + source = "registry+https://github.com/rust-lang/crates.io-index" 4115 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 4116 + dependencies = [ 4117 + "once_cell", 4118 + "valuable", 4119 + ] 4120 + 4121 + [[package]] 4122 + name = "tracing-log" 4123 + version = "0.1.3" 4124 + source = "registry+https://github.com/rust-lang/crates.io-index" 4125 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 4126 + dependencies = [ 4127 + "lazy_static", 4128 + "log", 4129 + "tracing-core", 4130 + ] 4131 + 4132 + [[package]] 4133 + name = "tracing-subscriber" 4134 + version = "0.3.16" 4135 + source = "registry+https://github.com/rust-lang/crates.io-index" 4136 + checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 4137 + dependencies = [ 4138 + "matchers", 4139 + "nu-ansi-term", 4140 + "once_cell", 4141 + "regex", 4142 + "sharded-slab", 4143 + "smallvec", 4144 + "thread_local", 4145 + "tracing", 4146 + "tracing-core", 4147 + "tracing-log", 4148 + ] 4149 + 4150 + [[package]] 4151 + name = "try-lock" 4152 + version = "0.2.4" 4153 + source = "registry+https://github.com/rust-lang/crates.io-index" 4154 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 4155 + 4156 + [[package]] 4157 + name = "tugger-common" 4158 + version = "0.10.0" 4159 + source = "registry+https://github.com/rust-lang/crates.io-index" 4160 + checksum = "f90d950380afdb1a6bbe74f29485a04e821869dfad11f5929ff1c5b1dac09d02" 4161 + dependencies = [ 4162 + "anyhow", 4163 + "fs2", 4164 + "glob", 4165 + "hex", 4166 + "log", 4167 + "once_cell", 4168 + "reqwest", 4169 + "sha2", 4170 + "tempfile", 4171 + "url", 4172 + "zip", 4173 + ] 4174 + 4175 + [[package]] 4176 + name = "tugger-windows" 4177 + version = "0.10.0" 4178 + source = "registry+https://github.com/rust-lang/crates.io-index" 4179 + checksum = "e9f181ac4fc7f8facfd418824d13045cd068ee73de44319a6116868c22789782" 4180 + dependencies = [ 4181 + "anyhow", 4182 + "duct", 4183 + "find-winsdk", 4184 + "glob", 4185 + "once_cell", 4186 + "semver", 4187 + "tugger-common", 4188 + "winapi", 4189 + ] 4190 + 4191 + [[package]] 4192 + name = "tugger-windows-codesign" 4193 + version = "0.10.0" 4194 + source = "registry+https://github.com/rust-lang/crates.io-index" 4195 + checksum = "ed3f09f8bdace495373cec3fc607bc39f00720a984ba82e310cc9382462fd364" 4196 + dependencies = [ 4197 + "anyhow", 4198 + "duct", 4199 + "log", 4200 + "p12", 4201 + "rcgen", 4202 + "time", 4203 + "tugger-common", 4204 + "tugger-windows", 4205 + "yasna", 4206 + ] 4207 + 4208 + [[package]] 4209 + name = "type-map" 4210 + version = "0.4.0" 4211 + source = "registry+https://github.com/rust-lang/crates.io-index" 4212 + checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" 4213 + dependencies = [ 4214 + "rustc-hash", 4215 + ] 4216 + 4217 + [[package]] 4218 + name = "typenum" 4219 + version = "1.16.0" 4220 + source = "registry+https://github.com/rust-lang/crates.io-index" 4221 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4222 + 4223 + [[package]] 4224 + name = "unic-char-property" 4225 + version = "0.9.0" 4226 + source = "registry+https://github.com/rust-lang/crates.io-index" 4227 + checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 4228 + dependencies = [ 4229 + "unic-char-range", 4230 + ] 4231 + 4232 + [[package]] 4233 + name = "unic-char-range" 4234 + version = "0.9.0" 4235 + source = "registry+https://github.com/rust-lang/crates.io-index" 4236 + checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 4237 + 4238 + [[package]] 4239 + name = "unic-common" 4240 + version = "0.9.0" 4241 + source = "registry+https://github.com/rust-lang/crates.io-index" 4242 + checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 4243 + 4244 + [[package]] 4245 + name = "unic-langid" 4246 + version = "0.9.1" 4247 + source = "registry+https://github.com/rust-lang/crates.io-index" 4248 + checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 4249 + dependencies = [ 4250 + "unic-langid-impl", 4251 + "unic-langid-macros", 4252 + ] 4253 + 4254 + [[package]] 4255 + name = "unic-langid-impl" 4256 + version = "0.9.1" 4257 + source = "registry+https://github.com/rust-lang/crates.io-index" 4258 + checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 4259 + dependencies = [ 4260 + "tinystr", 4261 + ] 4262 + 4263 + [[package]] 4264 + name = "unic-langid-macros" 4265 + version = "0.9.1" 4266 + source = "registry+https://github.com/rust-lang/crates.io-index" 4267 + checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe" 4268 + dependencies = [ 4269 + "proc-macro-hack", 4270 + "tinystr", 4271 + "unic-langid-impl", 4272 + "unic-langid-macros-impl", 4273 + ] 4274 + 4275 + [[package]] 4276 + name = "unic-langid-macros-impl" 4277 + version = "0.9.1" 4278 + source = "registry+https://github.com/rust-lang/crates.io-index" 4279 + checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8" 4280 + dependencies = [ 4281 + "proc-macro-hack", 4282 + "quote", 4283 + "syn", 4284 + "unic-langid-impl", 4285 + ] 4286 + 4287 + [[package]] 4288 + name = "unic-ucd-category" 4289 + version = "0.9.0" 4290 + source = "registry+https://github.com/rust-lang/crates.io-index" 4291 + checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0" 4292 + dependencies = [ 4293 + "matches", 4294 + "unic-char-property", 4295 + "unic-char-range", 4296 + "unic-ucd-version", 4297 + ] 4298 + 4299 + [[package]] 4300 + name = "unic-ucd-version" 4301 + version = "0.9.0" 4302 + source = "registry+https://github.com/rust-lang/crates.io-index" 4303 + checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 4304 + dependencies = [ 4305 + "unic-common", 4306 + ] 4307 + 4308 + [[package]] 4309 + name = "unicase" 4310 + version = "2.6.0" 4311 + source = "registry+https://github.com/rust-lang/crates.io-index" 4312 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 4313 + dependencies = [ 4314 + "version_check", 4315 + ] 4316 + 4317 + [[package]] 4318 + name = "unicode-bidi" 4319 + version = "0.3.8" 4320 + source = "registry+https://github.com/rust-lang/crates.io-index" 4321 + checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 4322 + 4323 + [[package]] 4324 + name = "unicode-ident" 4325 + version = "1.0.6" 4326 + source = "registry+https://github.com/rust-lang/crates.io-index" 4327 + checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 4328 + 4329 + [[package]] 4330 + name = "unicode-normalization" 4331 + version = "0.1.22" 4332 + source = "registry+https://github.com/rust-lang/crates.io-index" 4333 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4334 + dependencies = [ 4335 + "tinyvec", 4336 + ] 4337 + 4338 + [[package]] 4339 + name = "unicode-segmentation" 4340 + version = "1.10.0" 4341 + source = "registry+https://github.com/rust-lang/crates.io-index" 4342 + checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 4343 + 4344 + [[package]] 4345 + name = "unicode-width" 4346 + version = "0.1.10" 4347 + source = "registry+https://github.com/rust-lang/crates.io-index" 4348 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 4349 + 4350 + [[package]] 4351 + name = "unindent" 4352 + version = "0.1.11" 4353 + source = "registry+https://github.com/rust-lang/crates.io-index" 4354 + checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 4355 + 4356 + [[package]] 4357 + name = "untrusted" 4358 + version = "0.7.1" 4359 + source = "registry+https://github.com/rust-lang/crates.io-index" 4360 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4361 + 4362 + [[package]] 4363 + name = "url" 4364 + version = "2.3.1" 4365 + source = "registry+https://github.com/rust-lang/crates.io-index" 4366 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 4367 + dependencies = [ 4368 + "form_urlencoded", 4369 + "idna", 4370 + "percent-encoding", 4371 + "serde", 4372 + ] 4373 + 4374 + [[package]] 4375 + name = "utf-8" 4376 + version = "0.7.6" 4377 + source = "registry+https://github.com/rust-lang/crates.io-index" 4378 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4379 + 4380 + [[package]] 4381 + name = "utime" 4382 + version = "0.3.1" 4383 + source = "registry+https://github.com/rust-lang/crates.io-index" 4384 + checksum = "91baa0c65eabd12fcbdac8cc35ff16159cab95cae96d0222d6d0271db6193cef" 4385 + dependencies = [ 4386 + "libc", 4387 + "winapi", 4388 + ] 4389 + 4390 + [[package]] 4391 + name = "valuable" 4392 + version = "0.1.0" 4393 + source = "registry+https://github.com/rust-lang/crates.io-index" 4394 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4395 + 4396 + [[package]] 4397 + name = "vcpkg" 4398 + version = "0.2.15" 4399 + source = "registry+https://github.com/rust-lang/crates.io-index" 4400 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4401 + 4402 + [[package]] 4403 + name = "version_check" 4404 + version = "0.9.4" 4405 + source = "registry+https://github.com/rust-lang/crates.io-index" 4406 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4407 + 4408 + [[package]] 4409 + name = "waker-fn" 4410 + version = "1.1.0" 4411 + source = "registry+https://github.com/rust-lang/crates.io-index" 4412 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 4413 + 4414 + [[package]] 4415 + name = "walkdir" 4416 + version = "2.3.2" 4417 + source = "registry+https://github.com/rust-lang/crates.io-index" 4418 + checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 4419 + dependencies = [ 4420 + "same-file", 4421 + "winapi", 4422 + "winapi-util", 4423 + ] 4424 + 4425 + [[package]] 4426 + name = "want" 4427 + version = "0.3.0" 4428 + source = "registry+https://github.com/rust-lang/crates.io-index" 4429 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 4430 + dependencies = [ 4431 + "log", 4432 + "try-lock", 4433 + ] 4434 + 4435 + [[package]] 4436 + name = "wasi" 4437 + version = "0.9.0+wasi-snapshot-preview1" 4438 + source = "registry+https://github.com/rust-lang/crates.io-index" 4439 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4440 + 4441 + [[package]] 4442 + name = "wasi" 4443 + version = "0.11.0+wasi-snapshot-preview1" 4444 + source = "registry+https://github.com/rust-lang/crates.io-index" 4445 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4446 + 4447 + [[package]] 4448 + name = "wasm-bindgen" 4449 + version = "0.2.83" 4450 + source = "registry+https://github.com/rust-lang/crates.io-index" 4451 + checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 4452 + dependencies = [ 4453 + "cfg-if", 4454 + "wasm-bindgen-macro", 4455 + ] 4456 + 4457 + [[package]] 4458 + name = "wasm-bindgen-backend" 4459 + version = "0.2.83" 4460 + source = "registry+https://github.com/rust-lang/crates.io-index" 4461 + checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 4462 + dependencies = [ 4463 + "bumpalo", 4464 + "log", 4465 + "once_cell", 4466 + "proc-macro2", 4467 + "quote", 4468 + "syn", 4469 + "wasm-bindgen-shared", 4470 + ] 4471 + 4472 + [[package]] 4473 + name = "wasm-bindgen-futures" 4474 + version = "0.4.33" 4475 + source = "registry+https://github.com/rust-lang/crates.io-index" 4476 + checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 4477 + dependencies = [ 4478 + "cfg-if", 4479 + "js-sys", 4480 + "wasm-bindgen", 4481 + "web-sys", 4482 + ] 4483 + 4484 + [[package]] 4485 + name = "wasm-bindgen-macro" 4486 + version = "0.2.83" 4487 + source = "registry+https://github.com/rust-lang/crates.io-index" 4488 + checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 4489 + dependencies = [ 4490 + "quote", 4491 + "wasm-bindgen-macro-support", 4492 + ] 4493 + 4494 + [[package]] 4495 + name = "wasm-bindgen-macro-support" 4496 + version = "0.2.83" 4497 + source = "registry+https://github.com/rust-lang/crates.io-index" 4498 + checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 4499 + dependencies = [ 4500 + "proc-macro2", 4501 + "quote", 4502 + "syn", 4503 + "wasm-bindgen-backend", 4504 + "wasm-bindgen-shared", 4505 + ] 4506 + 4507 + [[package]] 4508 + name = "wasm-bindgen-shared" 4509 + version = "0.2.83" 4510 + source = "registry+https://github.com/rust-lang/crates.io-index" 4511 + checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 4512 + 4513 + [[package]] 4514 + name = "web-sys" 4515 + version = "0.3.60" 4516 + source = "registry+https://github.com/rust-lang/crates.io-index" 4517 + checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 4518 + dependencies = [ 4519 + "js-sys", 4520 + "wasm-bindgen", 4521 + ] 4522 + 4523 + [[package]] 4524 + name = "webpki" 4525 + version = "0.22.0" 4526 + source = "registry+https://github.com/rust-lang/crates.io-index" 4527 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 4528 + dependencies = [ 4529 + "ring", 4530 + "untrusted", 4531 + ] 4532 + 4533 + [[package]] 4534 + name = "webpki-roots" 4535 + version = "0.22.6" 4536 + source = "registry+https://github.com/rust-lang/crates.io-index" 4537 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 4538 + dependencies = [ 4539 + "webpki", 4540 + ] 4541 + 4542 + [[package]] 4543 + name = "which" 4544 + version = "4.3.0" 4545 + source = "registry+https://github.com/rust-lang/crates.io-index" 4546 + checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" 4547 + dependencies = [ 4548 + "either", 4549 + "libc", 4550 + "once_cell", 4551 + ] 4552 + 4553 + [[package]] 4554 + name = "winapi" 4555 + version = "0.3.9" 4556 + source = "registry+https://github.com/rust-lang/crates.io-index" 4557 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4558 + dependencies = [ 4559 + "winapi-i686-pc-windows-gnu", 4560 + "winapi-x86_64-pc-windows-gnu", 4561 + ] 4562 + 4563 + [[package]] 4564 + name = "winapi-i686-pc-windows-gnu" 4565 + version = "0.4.0" 4566 + source = "registry+https://github.com/rust-lang/crates.io-index" 4567 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4568 + 4569 + [[package]] 4570 + name = "winapi-util" 4571 + version = "0.1.5" 4572 + source = "registry+https://github.com/rust-lang/crates.io-index" 4573 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 4574 + dependencies = [ 4575 + "winapi", 4576 + ] 4577 + 4578 + [[package]] 4579 + name = "winapi-x86_64-pc-windows-gnu" 4580 + version = "0.4.0" 4581 + source = "registry+https://github.com/rust-lang/crates.io-index" 4582 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4583 + 4584 + [[package]] 4585 + name = "windows" 4586 + version = "0.44.0" 4587 + source = "registry+https://github.com/rust-lang/crates.io-index" 4588 + checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 4589 + dependencies = [ 4590 + "windows-targets", 4591 + ] 4592 + 4593 + [[package]] 4594 + name = "windows-sys" 4595 + version = "0.42.0" 4596 + source = "registry+https://github.com/rust-lang/crates.io-index" 4597 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 4598 + dependencies = [ 4599 + "windows_aarch64_gnullvm", 4600 + "windows_aarch64_msvc", 4601 + "windows_i686_gnu", 4602 + "windows_i686_msvc", 4603 + "windows_x86_64_gnu", 4604 + "windows_x86_64_gnullvm", 4605 + "windows_x86_64_msvc", 4606 + ] 4607 + 4608 + [[package]] 4609 + name = "windows-targets" 4610 + version = "0.42.1" 4611 + source = "registry+https://github.com/rust-lang/crates.io-index" 4612 + checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 4613 + dependencies = [ 4614 + "windows_aarch64_gnullvm", 4615 + "windows_aarch64_msvc", 4616 + "windows_i686_gnu", 4617 + "windows_i686_msvc", 4618 + "windows_x86_64_gnu", 4619 + "windows_x86_64_gnullvm", 4620 + "windows_x86_64_msvc", 4621 + ] 4622 + 4623 + [[package]] 4624 + name = "windows_aarch64_gnullvm" 4625 + version = "0.42.1" 4626 + source = "registry+https://github.com/rust-lang/crates.io-index" 4627 + checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 4628 + 4629 + [[package]] 4630 + name = "windows_aarch64_msvc" 4631 + version = "0.42.1" 4632 + source = "registry+https://github.com/rust-lang/crates.io-index" 4633 + checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 4634 + 4635 + [[package]] 4636 + name = "windows_i686_gnu" 4637 + version = "0.42.1" 4638 + source = "registry+https://github.com/rust-lang/crates.io-index" 4639 + checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 4640 + 4641 + [[package]] 4642 + name = "windows_i686_msvc" 4643 + version = "0.42.1" 4644 + source = "registry+https://github.com/rust-lang/crates.io-index" 4645 + checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 4646 + 4647 + [[package]] 4648 + name = "windows_x86_64_gnu" 4649 + version = "0.42.1" 4650 + source = "registry+https://github.com/rust-lang/crates.io-index" 4651 + checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 4652 + 4653 + [[package]] 4654 + name = "windows_x86_64_gnullvm" 4655 + version = "0.42.1" 4656 + source = "registry+https://github.com/rust-lang/crates.io-index" 4657 + checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 4658 + 4659 + [[package]] 4660 + name = "windows_x86_64_msvc" 4661 + version = "0.42.1" 4662 + source = "registry+https://github.com/rust-lang/crates.io-index" 4663 + checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 4664 + 4665 + [[package]] 4666 + name = "winreg" 4667 + version = "0.5.1" 4668 + source = "registry+https://github.com/rust-lang/crates.io-index" 4669 + checksum = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a" 4670 + dependencies = [ 4671 + "serde", 4672 + "winapi", 4673 + ] 4674 + 4675 + [[package]] 4676 + name = "winreg" 4677 + version = "0.10.1" 4678 + source = "registry+https://github.com/rust-lang/crates.io-index" 4679 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 4680 + dependencies = [ 4681 + "winapi", 4682 + ] 4683 + 4684 + [[package]] 4685 + name = "wiremock" 4686 + version = "0.5.17" 4687 + source = "registry+https://github.com/rust-lang/crates.io-index" 4688 + checksum = "12316b50eb725e22b2f6b9c4cbede5b7b89984274d113a7440c86e5c3fc6f99b" 4689 + dependencies = [ 4690 + "assert-json-diff", 4691 + "async-trait", 4692 + "base64 0.13.1", 4693 + "deadpool", 4694 + "futures", 4695 + "futures-timer", 4696 + "http-types", 4697 + "hyper", 4698 + "log", 4699 + "once_cell", 4700 + "regex", 4701 + "serde", 4702 + "serde_json", 4703 + "tokio", 4704 + ] 4705 + 4706 + [[package]] 4707 + name = "workspace-hack" 4708 + version = "0.1.0" 4709 + dependencies = [ 4710 + "bytes", 4711 + "cc", 4712 + "crossbeam-utils", 4713 + "either", 4714 + "flate2", 4715 + "futures-channel", 4716 + "futures-io", 4717 + "futures-task", 4718 + "futures-util", 4719 + "getrandom 0.2.8", 4720 + "hashbrown", 4721 + "hmac", 4722 + "hyper", 4723 + "indexmap", 4724 + "itertools", 4725 + "log", 4726 + "num-traits", 4727 + "phf_shared 0.11.1", 4728 + "prost", 4729 + "rand 0.7.3", 4730 + "rand 0.8.5", 4731 + "rand_core 0.6.4", 4732 + "regex", 4733 + "regex-syntax", 4734 + "scopeguard", 4735 + "serde", 4736 + "serde_json", 4737 + "sha2", 4738 + "snafu", 4739 + "syn", 4740 + "time", 4741 + "time-macros", 4742 + "tokio", 4743 + "tokio-util", 4744 + "tracing", 4745 + "tracing-core", 4746 + "url", 4747 + "zip", 4748 + "zstd 0.11.2+zstd.1.5.2", 4749 + "zstd 0.12.2+zstd.1.5.2", 4750 + "zstd-safe 5.0.2+zstd.1.5.2", 4751 + "zstd-safe 6.0.2+zstd.1.5.2", 4752 + "zstd-sys", 4753 + ] 4754 + 4755 + [[package]] 4756 + name = "xattr" 4757 + version = "0.2.3" 4758 + source = "registry+https://github.com/rust-lang/crates.io-index" 4759 + checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 4760 + dependencies = [ 4761 + "libc", 4762 + ] 4763 + 4764 + [[package]] 4765 + name = "xz2" 4766 + version = "0.1.7" 4767 + source = "registry+https://github.com/rust-lang/crates.io-index" 4768 + checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" 4769 + dependencies = [ 4770 + "lzma-sys", 4771 + ] 4772 + 4773 + [[package]] 4774 + name = "yasna" 4775 + version = "0.5.1" 4776 + source = "registry+https://github.com/rust-lang/crates.io-index" 4777 + checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4" 4778 + dependencies = [ 4779 + "time", 4780 + ] 4781 + 4782 + [[package]] 4783 + name = "zip" 4784 + version = "0.6.3" 4785 + source = "registry+https://github.com/rust-lang/crates.io-index" 4786 + checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080" 4787 + dependencies = [ 4788 + "aes", 4789 + "byteorder", 4790 + "bzip2", 4791 + "constant_time_eq 0.1.5", 4792 + "crc32fast", 4793 + "crossbeam-utils", 4794 + "flate2", 4795 + "hmac", 4796 + "pbkdf2", 4797 + "sha1", 4798 + "time", 4799 + "zstd 0.11.2+zstd.1.5.2", 4800 + ] 4801 + 4802 + [[package]] 4803 + name = "zstd" 4804 + version = "0.11.2+zstd.1.5.2" 4805 + source = "registry+https://github.com/rust-lang/crates.io-index" 4806 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 4807 + dependencies = [ 4808 + "zstd-safe 5.0.2+zstd.1.5.2", 4809 + ] 4810 + 4811 + [[package]] 4812 + name = "zstd" 4813 + version = "0.12.2+zstd.1.5.2" 4814 + source = "registry+https://github.com/rust-lang/crates.io-index" 4815 + checksum = "e9262a83dc741c0b0ffec209881b45dbc232c21b02a2b9cb1adb93266e41303d" 4816 + dependencies = [ 4817 + "zstd-safe 6.0.2+zstd.1.5.2", 4818 + ] 4819 + 4820 + [[package]] 4821 + name = "zstd-safe" 4822 + version = "5.0.2+zstd.1.5.2" 4823 + source = "registry+https://github.com/rust-lang/crates.io-index" 4824 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 4825 + dependencies = [ 4826 + "libc", 4827 + "zstd-sys", 4828 + ] 4829 + 4830 + [[package]] 4831 + name = "zstd-safe" 4832 + version = "6.0.2+zstd.1.5.2" 4833 + source = "registry+https://github.com/rust-lang/crates.io-index" 4834 + checksum = "a6cf39f730b440bab43da8fb5faf5f254574462f73f260f85f7987f32154ff17" 4835 + dependencies = [ 4836 + "libc", 4837 + "zstd-sys", 4838 + ] 4839 + 4840 + [[package]] 4841 + name = "zstd-sys" 4842 + version = "2.0.5+zstd.1.5.2" 4843 + source = "registry+https://github.com/rust-lang/crates.io-index" 4844 + checksum = "edc50ffce891ad571e9f9afe5039c4837bede781ac4bb13052ed7ae695518596" 4845 + dependencies = [ 4846 + "cc", 4847 + "libc", 4848 + "pkg-config", 4849 + ]
+219 -153
pkgs/games/anki/default.nix
··· 1 - { stdenv 2 - , buildPythonApplication 3 - , lib 4 - , python 5 - , fetchurl 1 + { lib 2 + , stdenv 3 + , buildEnv 6 4 , fetchFromGitHub 7 - , fetchpatch 5 + , fetchYarnDeps 6 + , fixup_yarn_lock 7 + , installShellFiles 8 8 , lame 9 9 , mpv-unwrapped 10 - , libpulseaudio 11 - , pyqtwebengine 12 - , decorator 13 - , beautifulsoup4 14 - , sqlalchemy 15 - , pyaudio 16 - , requests 17 - , markdown 18 - , matplotlib 19 - , mock 20 - , pytest 21 - , glibcLocales 22 - , nose 23 - , jsonschema 24 - , setuptools 25 - , send2trash 10 + , ninja 11 + , nodejs 12 + , nodejs-slim 13 + , protobuf 14 + , python3 15 + , qt6 16 + , rsync 17 + , rustPlatform 18 + , writeShellScriptBin 19 + , yarn 26 20 , CoreAudio 27 - # This little flag adds a huge number of dependencies, but we assume that 28 - # everyone wants Anki to draw plots with statistics by default. 29 - , plotsSupport ? true 30 - # manual 31 - , asciidoc 32 21 }: 33 22 34 23 let 35 - # when updating, also update rev-manual to a recent version of 36 - # https://github.com/ankitects/anki-docs 37 - # The manual is distributed independently of the software. 38 - version = "2.1.15"; 39 - sha256-pkg = "12dvyf3j9df4nrhhnqbzd9b21rpzkh4i6yhhangn2zf7ch0pclss"; 40 - rev-manual = "8f6387867ac37ef3fe9d0b986e70f898d1a49139"; 41 - sha256-manual = "0pm5slxn78r44ggvbksz7rv9hmlnsvn9z811r6f63dsc8vm6mfml"; 24 + pname = "anki"; 25 + version = "2.1.60"; 26 + rev = "76d8807315fcc2675e7fa44d9ddf3d4608efc487"; 27 + 28 + src = fetchFromGitHub { 29 + owner = "ankitects"; 30 + repo = "anki"; 31 + rev = version; 32 + hash = "sha256-hNrf6asxF7r7QK2XO150yiRjyHAYKN8OFCFYX0SAiwA="; 33 + fetchSubmodules = true; 34 + }; 35 + 42 36 43 - manual = stdenv.mkDerivation { 44 - pname = "anki-manual"; 45 - inherit version; 46 - src = fetchFromGitHub { 47 - owner = "ankitects"; 48 - repo = "anki-docs"; 49 - rev = rev-manual; 50 - sha256 = sha256-manual; 37 + cargoDeps = rustPlatform.importCargoLock { 38 + lockFile = ./Cargo.lock; 39 + outputHashes = { 40 + "csv-1.1.6" = "sha256-w728ffOVkI+IfK6FbmkGhr0CjuyqgJnPB1kutMJIUYg="; 41 + "linkcheck-0.4.1-alpha.0" = "sha256-Fiom8oHW9y7vV2RLXW0ClzHOdIlBq3Z9jLP+p6Sk4GI="; 51 42 }; 52 - dontInstall = true; 53 - nativeBuildInputs = [ asciidoc ]; 54 - patchPhase = '' 55 - # rsync isnt needed 56 - # WEB is the PREFIX 57 - # We remove any special ankiweb output generation 58 - # and rename every .mako to .html 59 - sed -e 's/rsync -a/cp -a/g' \ 60 - -e "s|\$(WEB)/docs|$out/share/doc/anki/html|" \ 61 - -e '/echo asciidoc/,/mv $@.tmp $@/c \\tasciidoc -b html5 -o $@ $<' \ 62 - -e 's/\.mako/.html/g' \ 63 - -i Makefile 64 - # patch absolute links to the other language manuals 65 - sed -e 's|https://apps.ankiweb.net/docs/|link:./|g' \ 66 - -i {manual.txt,manual.*.txt} 67 - # there’s an artifact in most input files 68 - sed -e '/<%def.*title.*/d' \ 69 - -i *.txt 70 - mkdir -p $out/share/doc/anki/html 71 - ''; 43 + }; 44 + 45 + anki-build-python = python3.withPackages (ps: with ps; [ 46 + pip 47 + mypy-protobuf 48 + ]); 49 + 50 + # anki shells out to git to check its revision, and also to update submodules 51 + # We don't actually need the submodules, so we stub that out 52 + fakeGit = writeShellScriptBin "git" '' 53 + case "$*" in 54 + "rev-parse --short=8 HEAD") 55 + echo ${builtins.substring 0 8 rev} 56 + ;; 57 + *"submodule update "*) 58 + exit 0 59 + ;; 60 + *) 61 + echo "Unrecognized git: $@" 62 + exit 1 63 + ;; 64 + esac 65 + ''; 66 + 67 + # We don't want to run pip-sync, it does network-io 68 + fakePipSync = writeShellScriptBin "pip-sync" '' 69 + exit 0 70 + ''; 71 + 72 + offlineYarn = writeShellScriptBin "yarn" '' 73 + [[ "$1" == "install" ]] && exit 0 74 + exec ${yarn}/bin/yarn --offline "$@" 75 + ''; 76 + 77 + pyEnv = buildEnv { 78 + name = "anki-pyenv-${version}"; 79 + paths = with python3.pkgs; [ 80 + pip 81 + fakePipSync 82 + anki-build-python 83 + ]; 84 + pathsToLink = [ "/bin" ]; 85 + }; 86 + 87 + yarnOfflineCache = fetchYarnDeps { 88 + yarnLock = "${src}/yarn.lock"; 89 + hash = "sha256-bAtmMGWi5ETIidFFnG3jzJg2mSBnH5ONO2/Lr9A3PpQ="; 72 90 }; 73 91 74 - in 75 - buildPythonApplication rec { 76 - pname = "anki"; 77 - inherit version; 78 - format = "other"; 92 + # https://discourse.nixos.org/t/mkyarnpackage-lockfile-has-incorrect-entry/21586/3 93 + anki-nodemodules = stdenv.mkDerivation { 94 + pname = "anki-nodemodules"; 95 + inherit version src yarnOfflineCache; 79 96 80 - src = fetchurl { 81 - urls = [ 82 - "https://apps.ankiweb.net/downloads/current/${pname}-${version}-source.tgz" 83 - # "https://apps.ankiweb.net/downloads/current/${name}-source.tgz" 84 - # "http://ankisrs.net/download/mirror/${name}.tgz" 85 - # "http://ankisrs.net/download/mirror/archive/${name}.tgz" 97 + nativeBuildInputs = [ 98 + fixup_yarn_lock 99 + yarn 100 + nodejs-slim 86 101 ]; 87 - sha256 = sha256-pkg; 102 + 103 + configurePhase = '' 104 + export HOME=$NIX_BUILD_TOP 105 + yarn config --offline set yarn-offline-mirror $yarnOfflineCache 106 + fixup_yarn_lock yarn.lock 107 + yarn install --offline --frozen-lockfile --ignore-scripts --no-progress --non-interactive 108 + patchShebangs node_modules/ 109 + yarn run postinstall --offline 110 + ''; 111 + 112 + installPhase = '' 113 + mv node_modules $out 114 + ''; 88 115 }; 116 + in 117 + python3.pkgs.buildPythonApplication { 118 + inherit pname version src; 89 119 90 120 outputs = [ "out" "doc" "man" ]; 91 121 92 - propagatedBuildInputs = [ 93 - pyqtwebengine 94 - sqlalchemy 122 + patches = [ 123 + ./patches/gl-fixup.patch 124 + ./patches/no-update-check.patch 125 + # Upstreamed in https://github.com/ankitects/anki/pull/2446 126 + # We can drop these once we update to an anki version that includes them 127 + # already 128 + ./patches/0001-Don-t-download-nodejs-if-NODE_BINARY-is-set.patch 129 + ./patches/0002-Allow-setting-YARN_BINARY-for-the-build-system.patch 130 + # Not upstreamed 131 + ./patches/0003-Skip-formatting-python-code.patch 132 + ]; 133 + 134 + inherit cargoDeps; 135 + 136 + nativeBuildInputs = [ 137 + fakeGit 138 + fixup_yarn_lock 139 + offlineYarn 140 + 141 + installShellFiles 142 + rustPlatform.rust.cargo 143 + rustPlatform.cargoSetupHook 144 + ninja 145 + qt6.wrapQtAppsHook 146 + rsync 147 + ]; 148 + nativeCheckInputs = with python3.pkgs; [ pytest mock astroid ]; 149 + 150 + buildInputs = [ 151 + qt6.qtbase 152 + ]; 153 + propagatedBuildInputs = with python3.pkgs; [ 154 + # This rather long list came from running: 155 + # grep --no-filename -oE "^[^ =]*" python/{requirements.base.txt,requirements.bundle.txt,requirements.qt6_4.txt} | \ 156 + # sort | uniq | grep -v "^#$" 157 + # in their repo at the git tag for this version 158 + # There's probably a more elegant way, but the above extracted all the 159 + # names, without version numbers, of their python dependencies. The hope is 160 + # that nixpkgs versions are "close enough" 161 + # I then removed the ones the check phase failed on (pythonCatchConflictsPhase) 95 162 beautifulsoup4 96 - send2trash 97 - pyaudio 98 - requests 163 + certifi 164 + charset-normalizer 165 + click 166 + colorama 99 167 decorator 168 + distro 169 + flask 170 + flask-cors 171 + idna 172 + importlib-metadata 173 + itsdangerous 174 + jinja2 175 + jsonschema 100 176 markdown 101 - jsonschema 102 - setuptools 103 - ] 104 - ++ lib.optional plotsSupport matplotlib 105 - ++ lib.optionals stdenv.isDarwin [ CoreAudio ] 106 - ; 177 + markupsafe 178 + orjson 179 + pep517 180 + python3.pkgs.protobuf 181 + pyparsing 182 + pyqt6 183 + pyqt6-sip 184 + pyqt6-webengine 185 + pyrsistent 186 + pysocks 187 + requests 188 + send2trash 189 + six 190 + soupsieve 191 + urllib3 192 + waitress 193 + werkzeug 194 + zipp 195 + ] ++ lib.optionals stdenv.isDarwin [ CoreAudio ]; 107 196 108 - nativeCheckInputs = [ pytest glibcLocales mock nose ]; 197 + # Activate optimizations 198 + RELEASE = true; 109 199 110 - nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ]; 111 - buildInputs = [ lame mpv-unwrapped libpulseaudio ]; 200 + PROTOC_BINARY = lib.getExe protobuf; 201 + NODE_BINARY = lib.getExe nodejs; 202 + YARN_BINARY = lib.getExe offlineYarn; 203 + PYTHON_BINARY = lib.getExe python3; 112 204 113 - patches = [ 114 - # Disable updated version check. 115 - ./no-version-check.patch 116 - (fetchpatch { 117 - name = "fix-mpv-args.patch"; 118 - url = "https://sources.debian.org/data/main/a/anki/2.1.15+dfsg-3/debian/patches/fix-mpv-args.patch"; 119 - sha256 = "1dimnnawk64m5bbdbjrxw5k08q95l728n94cgkrrwxwavmmywaj2"; 120 - }) 121 - (fetchpatch { 122 - name = "anki-2.1.15-unescape.patch"; 123 - url = "https://795309.bugs.gentoo.org/attachment.cgi?id=715200"; 124 - sha256 = "14rz864kdaba4fd1marwkyz9n1jiqnbjy4al8bvwlhpvp0rm1qk6"; 125 - }) 126 - ]; 205 + inherit yarnOfflineCache; 206 + dontUseNinjaInstall = false; 127 207 128 - # Anki does not use setup.py 129 - dontBuild = true; 208 + buildPhase = '' 209 + export RUST_BACKTRACE=1 210 + export RUST_LOG=debug 130 211 131 - postPatch = '' 132 - # Remove QT translation files. We'll use the standard QT ones. 133 - rm "locale/"*.qm 212 + mkdir -p out/pylib/anki \ 213 + .git 214 + 215 + echo ${builtins.substring 0 8 rev} > out/buildhash 216 + touch out/env 217 + touch .git/HEAD 218 + 219 + ln -vsf ${pyEnv} ./out/pyenv 220 + rsync --chmod +w -avP ${anki-nodemodules}/ out/node_modules/ 221 + ln -vsf out/node_modules node_modules 222 + 223 + export HOME=$NIX_BUILD_TOP 224 + yarn config --offline set yarn-offline-mirror $yarnOfflineCache 225 + fixup_yarn_lock yarn.lock 134 226 135 - # hitting F1 should open the local manual 136 - substituteInPlace anki/consts.py \ 137 - --replace 'HELP_SITE="http://ankisrs.net/docs/manual.html"' \ 138 - 'HELP_SITE="${manual}/share/doc/anki/html/manual.html"' 227 + patchShebangs ./ninja 228 + PIP_USER=1 ./ninja build wheels 139 229 ''; 140 230 141 - # UTF-8 locale needed for testing 142 - LC_ALL = "en_US.UTF-8"; 143 - 144 231 # tests fail with to many open files 232 + # TODO: verify if this is still true (I can't, no mac) 145 233 doCheck = !stdenv.isDarwin; 146 - 147 - # - Anki writes some files to $HOME during tests 148 - # - Skip tests using network 234 + # mimic https://github.com/ankitects/anki/blob/76d8807315fcc2675e7fa44d9ddf3d4608efc487/build/ninja_gen/src/python.rs#L232-L250 149 235 checkPhase = '' 150 - HOME=$TMP pytest --ignore tests/test_sync.py 236 + HOME=$TMP ANKI_TEST_MODE=1 PYTHONPATH=$PYTHONPATH:$PWD/out/pylib \ 237 + pytest -p no:cacheprovider pylib/tests 238 + HOME=$TMP ANKI_TEST_MODE=1 PYTHONPATH=$PYTHONPATH:$PWD/out/pylib:$PWD/pylib:$PWD/out/qt \ 239 + pytest -p no:cacheprovider qt/tests 151 240 ''; 152 241 153 - installPhase = '' 154 - pp=$out/lib/${python.libPrefix}/site-packages 155 - 156 - mkdir -p $out/bin 157 - mkdir -p $out/share/applications 158 - mkdir -p $doc/share/doc/anki 159 - mkdir -p $man/share/man/man1 160 - mkdir -p $out/share/mime/packages 161 - mkdir -p $out/share/pixmaps 162 - mkdir -p $pp 163 - 164 - cat > $out/bin/anki <<EOF 165 - #!${python}/bin/python 166 - import aqt 167 - aqt.run() 168 - EOF 169 - chmod 755 $out/bin/anki 170 - 171 - cp -v anki.desktop $out/share/applications/ 172 - cp -v README* LICENSE* $doc/share/doc/anki/ 173 - cp -v anki.1 $man/share/man/man1/ 174 - cp -v anki.xml $out/share/mime/packages/ 175 - cp -v anki.{png,xpm} $out/share/pixmaps/ 176 - cp -rv locale $out/share/ 177 - cp -rv anki aqt web $pp/ 242 + preInstall = '' 243 + mkdir dist 244 + mv out/wheels/* dist 245 + ''; 178 246 179 - # copy the manual into $doc 180 - cp -r ${manual}/share/doc/anki/html $doc/share/doc/anki 247 + postInstall = '' 248 + install -D -t $out/share/applications qt/bundle/lin/anki.desktop 249 + install -D -t $doc/share/doc/anki README* LICENSE* 250 + install -D -t $out/share/mime/packages qt/bundle/lin/anki.xml 251 + install -D -t $out/share/pixmaps qt/bundle/lin/anki.{png,xpm} 252 + installManPage qt/bundle/lin/anki.1 181 253 ''; 182 254 183 - # now wrapPythonPrograms from postFixup will add both python and qt env variables 184 255 dontWrapQtApps = true; 185 - 186 256 preFixup = '' 187 257 makeWrapperArgs+=( 188 258 "''${qtWrapperArgs[@]}" 189 259 --prefix PATH ':' "${lame}/bin:${mpv-unwrapped}/bin" 190 260 ) 191 261 ''; 192 - 193 - passthru = { 194 - inherit manual; 195 - }; 196 262 197 263 meta = with lib; { 198 264 homepage = "https://apps.ankiweb.net/"; ··· 211 277 ''; 212 278 license = licenses.agpl3Plus; 213 279 platforms = platforms.mesaPlatforms; 214 - maintainers = with maintainers; [ oxij Profpatsch ]; 280 + maintainers = with maintainers; [ oxij Profpatsch euank ]; 215 281 }; 216 282 }
-13
pkgs/games/anki/no-version-check.patch
··· 1 - diff -Nurp anki-2.0.33.orig/aqt/main.py anki-2.0.33/aqt/main.py 2 - --- anki-2.0.33.orig/aqt/main.py 2016-01-05 21:37:53.904533750 +0100 3 - +++ anki-2.0.33/aqt/main.py 2016-01-05 21:39:11.469175976 +0100 4 - @@ -820,6 +820,9 @@ title="%s">%s</button>''' % ( 5 - ########################################################################## 6 - 7 - def setupAutoUpdate(self): 8 - + # Don't check for latest version since the versions are 9 - + # managed in Nixpkgs. 10 - + return 11 - import aqt.update 12 - self.autoUpdate = aqt.update.LatestVersionFinder(self) 13 - self.connect(self.autoUpdate, SIGNAL("newVerAvail"), self.newVerAvail)
+53
pkgs/games/anki/patches/0001-Don-t-download-nodejs-if-NODE_BINARY-is-set.patch
··· 1 + From 53740ca75d167fab5c403a462e21ecd717b1dafa Mon Sep 17 00:00:00 2001 2 + From: Euan Kemp <euank@euank.com> 3 + Date: Fri, 17 Mar 2023 22:38:04 +0900 4 + Subject: [PATCH 1/2] Don't download nodejs if NODE_BINARY is set 5 + 6 + Some build environments, such as nixpkgs, restrict network access and 7 + thus would prefer to not download anything at all. Setting PROTOC_BINARY 8 + and friends makes the build system not download stuff, and the same 9 + should be true for nodejs 10 + --- 11 + build/ninja_gen/src/node.rs | 19 +++++++++---------- 12 + 1 file changed, 9 insertions(+), 10 deletions(-) 13 + 14 + diff --git a/build/ninja_gen/src/node.rs b/build/ninja_gen/src/node.rs 15 + index df05e149d..d08c7011e 100644 16 + --- a/build/ninja_gen/src/node.rs 17 + +++ b/build/ninja_gen/src/node.rs 18 + @@ -105,16 +105,6 @@ pub fn setup_node( 19 + binary_exports: &[&'static str], 20 + mut data_exports: HashMap<&str, Vec<Cow<str>>>, 21 + ) -> Result<()> { 22 + - download_and_extract( 23 + - build, 24 + - "node", 25 + - archive, 26 + - hashmap! { 27 + - "bin" => vec![if cfg!(windows) { "node.exe" } else { "bin/node" }], 28 + - "npm" => vec![if cfg!(windows) { "npm.cmd " } else { "bin/npm" }] 29 + - }, 30 + - )?; 31 + - 32 + let node_binary = match std::env::var("NODE_BINARY") { 33 + Ok(path) => { 34 + assert!( 35 + @@ -124,6 +114,15 @@ pub fn setup_node( 36 + path.into() 37 + } 38 + Err(_) => { 39 + + download_and_extract( 40 + + build, 41 + + "node", 42 + + archive, 43 + + hashmap! { 44 + + "bin" => vec![if cfg!(windows) { "node.exe" } else { "bin/node" }], 45 + + "npm" => vec![if cfg!(windows) { "npm.cmd " } else { "bin/npm" }] 46 + + }, 47 + + )?; 48 + inputs![":extract:node:bin"] 49 + } 50 + }; 51 + -- 52 + 2.39.2 53 +
+36
pkgs/games/anki/patches/0002-Allow-setting-YARN_BINARY-for-the-build-system.patch
··· 1 + From 16af7d4cabcf10797bd110c905a9d7694bde0fb4 Mon Sep 17 00:00:00 2001 2 + From: Euan Kemp <euank@euank.com> 3 + Date: Fri, 17 Mar 2023 23:07:05 +0900 4 + Subject: [PATCH 2/2] Allow setting YARN_BINARY for the build system 5 + 6 + --- 7 + build/ninja_gen/src/node.rs | 13 ++++++++++++- 8 + 1 file changed, 12 insertions(+), 1 deletion(-) 9 + 10 + diff --git a/build/ninja_gen/src/node.rs b/build/ninja_gen/src/node.rs 11 + index d08c7011e..c1e2ce1b3 100644 12 + --- a/build/ninja_gen/src/node.rs 13 + +++ b/build/ninja_gen/src/node.rs 14 + @@ -129,7 +129,18 @@ pub fn setup_node( 15 + let node_binary = build.expand_inputs(node_binary); 16 + build.variable("node_binary", &node_binary[0]); 17 + 18 + - build.add("yarn", YarnSetup {})?; 19 + + match std::env::var("YARN_BINARY") { 20 + + Ok(path) => { 21 + + assert!( 22 + + Utf8Path::new(&path).is_absolute(), 23 + + "YARN_BINARY must be absolute" 24 + + ); 25 + + build.add_resolved_files_to_group("yarn:bin", &vec![path]); 26 + + }, 27 + + Err(_) => { 28 + + build.add("yarn", YarnSetup {})?; 29 + + }, 30 + + }; 31 + 32 + for binary in binary_exports { 33 + data_exports.insert( 34 + -- 35 + 2.39.2 36 +
+31
pkgs/games/anki/patches/0003-Skip-formatting-python-code.patch
··· 1 + From ed5090b237bca768dbf7dfc3b4414b955879f15e Mon Sep 17 00:00:00 2001 2 + From: Euan Kemp <euank@euank.com> 3 + Date: Fri, 7 Apr 2023 20:22:34 +0900 4 + Subject: [PATCH 3/3] Skip formatting python code 5 + 6 + --- 7 + pylib/tools/hookslib.py | 4 ++-- 8 + 1 file changed, 2 insertions(+), 2 deletions(-) 9 + 10 + diff --git a/pylib/tools/hookslib.py b/pylib/tools/hookslib.py 11 + index 6361c633e..95ecb64a2 100644 12 + --- a/pylib/tools/hookslib.py 13 + +++ b/pylib/tools/hookslib.py 14 + @@ -82,7 +82,7 @@ class Hook: 15 + code = f"""\ 16 + class {self.classname()}: 17 + {classdoc}{self.list_code()} 18 + - 19 + + 20 + def append(self, callback: {self.callable()}) -> None: 21 + '''{appenddoc}''' 22 + self._hooks.append(callback) 23 + @@ -208,4 +208,4 @@ def write_file(path: str, hooks: list[Hook], prefix: str, suffix: str): 24 + os.environ["USERPROFILE"] = os.environ["HOME"] 25 + with open(path, "wb") as file: 26 + file.write(code.encode("utf8")) 27 + - subprocess.run([sys.executable, "-m", "black", "-q", path], check=True) 28 + + # subprocess.run([sys.executable, "-m", "black", "-q", path], check=True) 29 + -- 30 + 2.39.2 31 +
+17
pkgs/games/anki/patches/gl-fixup.patch
··· 1 + diff --git a/qt/aqt/__init__.py b/qt/aqt/__init__.py 2 + index 352848cfd..3fd5d0769 100644 3 + --- a/qt/aqt/__init__.py 4 + +++ b/qt/aqt/__init__.py 5 + @@ -402,12 +402,6 @@ def parseArgs(argv: list[str]) -> tuple[argparse.Namespace, list[str]]: 6 + def setupGL(pm: aqt.profiles.ProfileManager) -> None: 7 + driver = pm.video_driver() 8 + 9 + - # work around pyqt loading wrong GL library 10 + - if is_lin: 11 + - import ctypes 12 + - 13 + - ctypes.CDLL("libGL.so.1", ctypes.RTLD_GLOBAL) 14 + - 15 + # catch opengl errors 16 + def msgHandler(category: Any, ctx: Any, msg: Any) -> None: 17 + if category == QtMsgType.QtDebugMsg:
+13
pkgs/games/anki/patches/no-update-check.patch
··· 1 + diff --git a/qt/aqt/main.py b/qt/aqt/main.py 2 + index 0f2764f66..c42a88402 100644 3 + --- a/qt/aqt/main.py 4 + +++ b/qt/aqt/main.py 5 + @@ -1395,6 +1395,8 @@ title="{}" {}>{}</button>""".format( 6 + ########################################################################## 7 + 8 + def setupAutoUpdate(self) -> None: 9 + + # nixpkgs patch; updates are managed by nix 10 + + return 11 + import aqt.update 12 + 13 + self.autoUpdate = aqt.update.LatestVersionFinder(self)
+25 -17
pkgs/misc/rich-cli/default.nix
··· 4 4 }: 5 5 6 6 let 7 - python = python3.override { 8 - packageOverrides = self: super: { 9 - rich = super.rich.overrideAttrs (old: rec { 7 + py = python3.override { 8 + packageOverrides = final: prev: { 9 + rich = prev.rich.overridePythonAttrs (old: rec { 10 10 version = "12.4.0"; 11 11 src = fetchFromGitHub { 12 12 owner = "Textualize"; 13 13 repo = "rich"; 14 - rev = "refs/tags/v${version}"; 14 + rev = "refs/tags/v12.4.0"; 15 15 hash = "sha256-ryJTusUNpvNF2031ICJWK8ScxHIh+LrXYg7nd0ph4aQ="; 16 16 }; 17 + propagatedBuildInputs = with py.pkgs; [ 18 + commonmark 19 + pygments 20 + ]; 21 + doCheck = false; 17 22 }); 18 - textual = super.textual.overrideAttrs (old: rec { 23 + 24 + textual = prev.textual.overridePythonAttrs (old: rec { 19 25 version = "0.1.18"; 20 26 src = fetchFromGitHub { 21 27 owner = "Textualize"; 22 28 repo = "textual"; 23 - rev = "refs/tags/v${version}"; 29 + rev = "refs/tags/v0.1.18"; 24 30 hash = "sha256-XVmbt8r5HL8r64ISdJozmM+9HuyvqbpdejWICzFnfiw="; 25 31 }; 32 + doCheck = false; 26 33 }); 27 34 }; 28 35 }; 29 36 in 30 37 31 - python.pkgs.buildPythonApplication rec { 38 + python3.pkgs.buildPythonApplication rec { 32 39 pname = "rich-cli"; 33 40 version = "1.8.0"; 34 41 format = "pyproject"; ··· 36 43 src = fetchFromGitHub { 37 44 owner = "Textualize"; 38 45 repo = pname; 39 - rev = "v${version}"; 40 - sha256 = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ="; 46 + rev = "refs/tags/v${version}"; 47 + hash = "sha256-mV5b/J9wX9niiYtlmAUouaAm9mY2zTtDmex7FNWcezQ="; 41 48 }; 42 49 43 - nativeBuildInputs = with python.pkgs; [ 50 + postPatch = '' 51 + substituteInPlace pyproject.toml \ 52 + --replace 'rich = "^12.4.0"' 'rich = "*"' \ 53 + --replace 'textual = "^0.1.18"' 'textual = "*"' 54 + ''; 55 + 56 + nativeBuildInputs = with py.pkgs; [ 44 57 poetry-core 45 58 ]; 46 59 47 - propagatedBuildInputs = with python.pkgs; [ 60 + propagatedBuildInputs = with py.pkgs; [ 48 61 rich 49 62 click 50 63 requests ··· 52 65 rich-rst 53 66 ]; 54 67 55 - postPatch = '' 56 - substituteInPlace pyproject.toml \ 57 - --replace 'rich = "^12.4.0"' 'rich = "*"' \ 58 - --replace 'textual = "^0.1.18"' 'textual = "*"' 59 - ''; 60 - 61 68 pythonImportsCheck = [ 62 69 "rich_cli" 63 70 ]; ··· 65 72 meta = with lib; { 66 73 description = "Command Line Interface to Rich"; 67 74 homepage = "https://github.com/Textualize/rich-cli"; 75 + changelog = "https://github.com/Textualize/rich-cli/releases/tag/v${version}"; 68 76 license = licenses.mit; 69 77 maintainers = with maintainers; [ joelkoen ]; 70 78 };
+3 -3
pkgs/os-specific/linux/hd-idle/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "hd-idle"; 5 - version = "1.17"; 5 + version = "1.20"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "adelolmo"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-BHUjKvhUDeD/Xm0KKbkLH2XWn1W77E7Pm3OSPARF6Xw="; 11 + sha256 = "sha256-7EXfI3E83ltpjq2M/qZX2P/bNtQQBWZRBCD7i5uit0I="; 12 12 }; 13 13 14 - vendorSha256 = null; 14 + vendorHash = null; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+10 -9
pkgs/servers/ankisyncd/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , python3 4 - , anki 5 4 }: 6 5 7 6 python3.pkgs.buildPythonApplication rec { ··· 11 10 owner = "ankicommunity"; 12 11 repo = "anki-sync-server"; 13 12 rev = version; 14 - sha256 = "196xhd6vzp1ncr3ahz0bv0gp1ap2s37j8v48dwmvaywzayakqdab"; 13 + hash = "sha256-RXrdJGJ+HMSpDGQBuVPPqsh3+uwAgE6f7ZJ0yFRMI8I="; 14 + fetchSubmodules = true; 15 15 }; 16 16 format = "other"; 17 17 ··· 21 21 mkdir -p $out/${python3.sitePackages} 22 22 23 23 cp -r ankisyncd utils ankisyncd.conf $out/${python3.sitePackages} 24 + cp -r anki-bundled/anki $out/${python3.sitePackages} 24 25 mkdir $out/share 25 26 cp ankisyncctl.py $out/share/ 26 27 ··· 28 29 ''; 29 30 30 31 fixupPhase = '' 31 - PYTHONPATH="$PYTHONPATH:$out/${python3.sitePackages}:${anki}" 32 + PYTHONPATH="$PYTHONPATH:$out/${python3.sitePackages}" 32 33 33 34 makeWrapper "${python3.interpreter}" "$out/bin/ankisyncd" \ 34 35 --set PYTHONPATH $PYTHONPATH \ ··· 46 47 47 48 buildInputs = [ ]; 48 49 49 - propagatedBuildInputs = [ anki ]; 50 + propagatedBuildInputs = with python3.pkgs; [ 51 + decorator 52 + requests 53 + ]; 50 54 51 55 checkPhase = '' 52 - # Exclude tests that require sqlite's sqldiff command, since 53 - # it isn't yet packaged for NixOS, although 2 PRs exist: 54 - # - https://github.com/NixOS/nixpkgs/pull/69112 55 - # - https://github.com/NixOS/nixpkgs/pull/75784 56 - # Once this is merged, these tests can be run as well. 56 + # skip these tests, our files are too young: 57 + # tests/test_web_media.py::SyncAppFunctionalMediaTest::test_sync_mediaChanges ValueError: ZIP does not support timestamps before 1980 57 58 pytest --ignore tests/test_web_media.py tests/ 58 59 ''; 59 60
+3 -3
pkgs/servers/nosql/ferretdb/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "ferretdb"; 8 - version = "0.9.4"; 8 + version = "1.0.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "FerretDB"; 12 12 repo = "FerretDB"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-DdOZIK1y7WhKigd5u4JGErP53FCQSe3QCZMXIa4ah3I="; 14 + sha256 = "sha256-WFGVQWEYQBUzZAc8yHvD3C3bYbH0hVGoz28nVMV1IP8="; 15 15 }; 16 16 17 17 postPatch = '' ··· 19 19 echo nixpkgs > build/version/package.txt 20 20 ''; 21 21 22 - vendorSha256 = "sha256-Kmc/xWNrx62Ua87K5tif4s3jpWLbzTqNpw8j/3bYXr4="; 22 + vendorSha256 = "sha256-jxo8QXw9Ca27VPjC7GYIm8SVxvhSZBQLnW2Kuthu5Rk="; 23 23 24 24 CGO_ENABLED = 0; 25 25
+4
pkgs/servers/web-apps/plausible/default.nix
··· 49 49 50 50 nativeBuildInputs = [ nodejs ]; 51 51 52 + # https://github.com/whitfin/cachex/issues/205 53 + stripDebug = false; 54 + 52 55 passthru = { 53 56 tests = { inherit (nixosTests) plausible; }; 54 57 updateScript = ./update.sh; 55 58 }; 56 59 57 60 postBuild = '' 61 + export HOME=$TMPDIR 58 62 export NODE_OPTIONS=--openssl-legacy-provider # required for webpack compatibility with OpenSSL 3 (https://github.com/webpack/webpack/issues/14532) 59 63 ln -sf ${yarnDeps}/node_modules assets/node_modules 60 64 npm run deploy --prefix ./assets
+4 -3
pkgs/stdenv/adapters.nix
··· 176 176 stdenv.override (old: { 177 177 mkDerivationFromStdenv = extendMkDerivationArgs old (args: { 178 178 dontStrip = true; 179 - env.NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " -ggdb -Og"; 179 + env = (args.env or {}) // { NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " -ggdb -Og"; }; 180 180 }); 181 181 }); 182 182 ··· 219 219 impureUseNativeOptimizations = stdenv: 220 220 stdenv.override (old: { 221 221 mkDerivationFromStdenv = extendMkDerivationArgs old (args: { 222 - env.NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " -march=native"; 222 + env = (args.env or {}) // { NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " -march=native"; }; 223 + 223 224 NIX_ENFORCE_NO_NATIVE = false; 224 225 225 226 preferLocalBuild = true; ··· 244 245 withCFlags = compilerFlags: stdenv: 245 246 stdenv.override (old: { 246 247 mkDerivationFromStdenv = extendMkDerivationArgs old (args: { 247 - env.NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " ${toString compilerFlags}"; 248 + env = (args.env or {}) // { NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " ${toString compilerFlags}"; }; 248 249 }); 249 250 }); 250 251 }
+36
pkgs/tools/misc/cc2538-bsl/default.nix
··· 1 + { lib, fetchFromGitHub, python3Packages }: 2 + 3 + python3Packages.buildPythonPackage rec { 4 + pname = "cc2538-bsl"; 5 + version = "unstable-2022-08-03"; 6 + 7 + src = fetchFromGitHub rec { 8 + owner = "JelmerT"; 9 + repo = pname; 10 + rev = "538ea0deb99530e28fdf1b454e9c9d79d85a3970"; 11 + hash = "sha256-fPY12kValxbJORi9xNyxzwkGpD9F9u3M1+aa9IlSiaE="; 12 + }; 13 + 14 + nativeBuildInputs = [ python3Packages.setuptools-scm ]; 15 + 16 + propagatedBuildInputs = with python3Packages; [ 17 + intelhex 18 + pyserial 19 + python-magic 20 + ]; 21 + 22 + env.SETUPTOOLS_SCM_PRETEND_VERSION = "0.1.dev0+g${lib.substring 0 7 src.rev}"; 23 + 24 + postInstall = '' 25 + # Remove .py from binary 26 + mv $out/bin/cc2538-bsl.py $out/bin/cc2538-bsl 27 + ''; 28 + 29 + meta = with lib; { 30 + homepage = "https://github.com/JelmerT/cc2538-bsl"; 31 + description = "Flash TI SimpleLink chips (CC2538, CC13xx, CC26xx) over serial"; 32 + license = licenses.bsd3; 33 + maintainers = with maintainers; [ lorenz ]; 34 + }; 35 + } 36 +
+5 -7
pkgs/tools/misc/timer/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "timer"; 5 - version = "unstable-2023-02-01"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "caarlos0"; 9 9 repo = "timer"; 10 - rev = "1f437baceb1ca76b341fdc229fe45938b282f2aa"; 11 - hash = "sha256-u+naemEiKufKYROuJB55u8QgiIgg4nLsB+FerUImtXs="; 10 + rev = "v${version}"; 11 + hash = "sha256-9p/L3Hj3VqlNiyY3lfUAhCjwTl1iSTegWxaVEGB4qHM="; 12 12 }; 13 13 14 - vendorHash = "sha256-n4AjaojcDAYbgOIuaAJ4faVJqV+/0uby5OHRMsyL9Dg="; 14 + vendorHash = "sha256-j7Xik0te6GdjfhXHT7DRf+MwM+aKjfgTGvroxnlD3MM="; 15 15 16 16 ldflags = [ "-s" "-w" "-X main.version=${version}" ]; 17 17 18 - passthru.tests.version = testers.testVersion { 19 - package = timer; 20 - }; 18 + passthru.tests.version = testers.testVersion { package = timer; }; 21 19 22 20 meta = with lib; { 23 21 description = "A `sleep` with progress";
+1
pkgs/top-level/aliases.nix
··· 1114 1114 nomad_1_1 = throw "nomad_1_1 has been removed because it's outdated. Use a a newer version instead"; # Added 2022-05-22 1115 1115 nordic-polar = throw "nordic-polar was removed on 2021-05-27, now integrated in nordic"; # Added 2021-05-27 1116 1116 noto-fonts-cjk = noto-fonts-cjk-sans; # Added 2021-12-16 1117 + noto-fonts-extra = noto-fonts; # Added 2023-04-08 1117 1118 nottetris2 = throw "nottetris2 was removed because it is unmaintained by upstream and broken"; # Added 2022-01-15 1118 1119 now-cli = throw "now-cli has been replaced with nodePackages.vercel"; # Added 2021-08-05 1119 1120 ntdb = throw "ntdb has been removed: abandoned by upstream"; # Added 2022-04-21
+19 -8
pkgs/top-level/all-packages.nix
··· 2495 2495 2496 2496 spaceFM = callPackage ../applications/file-managers/spacefm { }; 2497 2497 2498 + tuifimanager = callPackage ../applications/file-managers/tuifimanager { }; 2499 + 2498 2500 vifm = callPackage ../applications/file-managers/vifm { }; 2499 2501 2500 2502 vifm-full = vifm.override { ··· 3080 3082 bucklespring-libinput = callPackage ../applications/audio/bucklespring { }; 3081 3083 bucklespring-x11 = callPackage ../applications/audio/bucklespring { legacy = true; }; 3082 3084 3083 - buildbot = with python3Packages; toPythonApplication buildbot; 3084 - buildbot-ui = with python3Packages; toPythonApplication buildbot-ui; 3085 - buildbot-full = with python3Packages; toPythonApplication buildbot-full; 3086 - buildbot-worker = with python3Packages; toPythonApplication buildbot-worker; 3085 + inherit (python3.pkgs.callPackage ../development/tools/continuous-integration/buildbot {}) 3086 + buildbot buildbot-ui buildbot-full buildbot-plugins buildbot-worker; 3087 3087 3088 3088 bunyan-rs = callPackage ../development/tools/bunyan-rs { }; 3089 3089 ··· 3574 3574 3575 3575 play-with-mpv = callPackage ../tools/video/play-with-mpv { }; 3576 3576 3577 - plausible = callPackage ../servers/web-apps/plausible { }; 3577 + plausible = callPackage ../servers/web-apps/plausible { nodejs = nodejs-16_x; }; 3578 3578 3579 3579 pam-reattach = callPackage ../os-specific/darwin/pam-reattach { }; 3580 3580 ··· 6373 6373 }; 6374 6374 6375 6375 cask-server = libsForQt5.callPackage ../applications/misc/cask-server { }; 6376 + 6377 + cc2538-bsl = callPackage ../tools/misc/cc2538-bsl { }; 6376 6378 6377 6379 code-browser-qt = libsForQt5.callPackage ../applications/editors/code-browser { withQt = true; }; 6378 6380 code-browser-gtk2 = callPackage ../applications/editors/code-browser { withGtk2 = true; }; ··· 9740 9742 9741 9743 lv = callPackage ../tools/text/lv { }; 9742 9744 9745 + lv_img_conv = callPackage ../development/tools/lv_img_conv { 9746 + inherit (darwin.apple_sdk.frameworks) CoreText; 9747 + }; 9748 + 9743 9749 lxc = callPackage ../os-specific/linux/lxc { 9744 9750 autoreconfHook = buildPackages.autoreconfHook269; 9745 9751 }; ··· 12962 12968 tracefilesim = callPackage ../development/tools/analysis/garcosim/tracefilesim { }; 12963 12969 12964 12970 transifex-client = python39.pkgs.callPackage ../tools/text/transifex-client { }; 12971 + 12972 + transifex-cli = callPackage ../applications/misc/transifex-cli { }; 12965 12973 12966 12974 translate-shell = callPackage ../applications/misc/translate-shell { }; 12967 12975 ··· 23051 23059 23052 23060 pe-parse = callPackage ../development/libraries/pe-parse { }; 23053 23061 23062 + phetch = callPackage ../applications/networking/gopher/phetch { 23063 + inherit (darwin.apple_sdk.frameworks) Security; 23064 + }; 23065 + 23054 23066 inherit (callPackage ../development/libraries/physfs { 23055 23067 inherit (darwin.apple_sdk.frameworks) Foundation; 23056 23068 }) ··· 28198 28210 noto-fonts-cjk-sans 28199 28211 noto-fonts-cjk-serif 28200 28212 noto-fonts-emoji 28201 - noto-fonts-emoji-blob-bin 28202 - noto-fonts-extra; 28213 + noto-fonts-emoji-blob-bin; 28203 28214 28204 28215 nuclear = callPackage ../applications/audio/nuclear { }; 28205 28216 ··· 35654 35665 35655 35666 angband = callPackage ../games/angband { }; 35656 35667 35657 - anki = python39Packages.callPackage ../games/anki { 35668 + anki = callPackage ../games/anki { 35658 35669 inherit (darwin.apple_sdk.frameworks) CoreAudio; 35659 35670 }; 35660 35671 anki-bin = callPackage ../games/anki/bin.nix { buildFHSUserEnv = buildFHSUserEnvBubblewrap; };
+6
pkgs/top-level/python-aliases.nix
··· 48 48 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 49 49 bsblan = python-bsblan; # added 2022-11-04 50 50 btchip = btchip-python; # added 2023-03-03 51 + buildbot = throw "use pkgs.buildbot instead"; # added 2022-04-07 52 + buildbot-ui = throw "use pkgs.buildbot-ui instead"; # added 2022-04-07 53 + buildbot-full = throw "use pkgs.buildbot-full instead"; # added 2022-04-07 54 + buildbot-plugins = throw "use pkgs.buildbot-plugins instead"; # added 2022-04-07 55 + buildbot-worker = throw "use pkgs.buildbot-worker instead"; # added 2022-04-07 56 + buildbot-pkg = throw "buildbot-pkg has been removed, it's only internally used in buildbot"; # added 2022-04-07 51 57 bt_proximity = bt-proximity; # added 2021-07-02 52 58 BTrees = btrees; # added 2023-02-19 53 59 carrot = throw "carrot has been removed, as its development was discontinued in 2012"; # added 2022-01-18
+6 -12
pkgs/top-level/python-packages.nix
··· 1513 1513 1514 1514 buienradar = callPackage ../development/python-modules/buienradar { }; 1515 1515 1516 - buildbot = callPackage ../development/python-modules/buildbot { }; 1517 - 1518 - buildbot-ui = self.buildbot.withPlugins (with self.buildbot-plugins; [ www ]); 1519 - 1520 - buildbot-full = self.buildbot.withPlugins (with self.buildbot-plugins; [ www console-view waterfall-view grid-view wsgi-dashboards badges ]); 1521 - 1522 - buildbot-pkg = callPackage ../development/python-modules/buildbot/pkg.nix { }; 1523 - 1524 - buildbot-plugins = pkgs.recurseIntoAttrs (callPackage ../development/python-modules/buildbot/plugins.nix { }); 1525 - 1526 - buildbot-worker = callPackage ../development/python-modules/buildbot/worker.nix { }; 1527 - 1528 1516 build = callPackage ../development/python-modules/build { }; 1529 1517 1530 1518 buildcatrust = callPackage ../development/python-modules/buildcatrust { }; ··· 11114 11102 11115 11103 sphinx-hoverxref = callPackage ../development/python-modules/sphinx-hoverxref { }; 11116 11104 11105 + sphinx-intl = callPackage ../development/python-modules/sphinx-intl { }; 11106 + 11117 11107 sphinx-jupyterbook-latex = callPackage ../development/python-modules/sphinx-jupyterbook-latex { }; 11118 11108 11119 11109 sphinx-multitoc-numbering = callPackage ../development/python-modules/sphinx-multitoc-numbering { }; ··· 12127 12117 12128 12118 types-psutil = callPackage ../development/python-modules/types-psutil { }; 12129 12119 12120 + types-pyopenssl = callPackage ../development/python-modules/types-pyopenssl { }; 12121 + 12130 12122 types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { }; 12131 12123 12132 12124 types-pytz = callPackage ../development/python-modules/types-pytz { }; ··· 12245 12237 unicorn = callPackage ../development/python-modules/unicorn { 12246 12238 unicorn-emu = pkgs.unicorn; 12247 12239 }; 12240 + 12241 + unicurses = callPackage ../development/python-modules/unicurses { }; 12248 12242 12249 12243 unicrypto = callPackage ../development/python-modules/unicrypto { }; 12250 12244