Merge master into staging-next

authored by github-actions[bot] and committed by GitHub dd2012ab dffc52ce

+695 -579
+2 -2
pkgs/applications/networking/instant-messengers/slack/default.nix
··· 48 48 x86_64-darwin-version = "4.38.121"; 49 49 x86_64-darwin-sha256 = "1w0s6j8z8961sv4y00jxpy5gjlj0dswyxs15c7isb26ii11nn1i2"; 50 50 51 - x86_64-linux-version = "4.38.121"; 52 - x86_64-linux-sha256 = "0qp7wxmdg2lpvbx7gshgbqxf7jjvgnwx20cfjwgw6wwzanb0gi96"; 51 + x86_64-linux-version = "4.38.125"; 52 + x86_64-linux-sha256 = "sha256-BJeFXZ8STbMCmGvYRoFsfsyIpGukQkuwv0m2NzE+89c="; 53 53 54 54 aarch64-darwin-version = "4.38.121"; 55 55 aarch64-darwin-sha256 = "161z947p7a2d7584hybl77chab8y027cqpph2hd2s4b5k6bchkj5";
+3 -3
pkgs/by-name/ap/api-linter/package.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "api-linter"; 8 - version = "1.65.2"; 8 + version = "1.66.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "googleapis"; 12 12 repo = "api-linter"; 13 13 rev = "v${version}"; 14 - hash = "sha256-UBGFY6MamoQyzPmjmz6TmeiF8DTXV/Lpl5HFbxMUPE8="; 14 + hash = "sha256-PwsqED6jIiPapthdhl7XxGwp+H3gjGfn2DGl1mWuano="; 15 15 }; 16 16 17 - vendorHash = "sha256-VPCTyJI02KL6Gn+gdTy36uEbDI71ORrSZnXuWqP0KrM="; 17 + vendorHash = "sha256-mJT5gqMCe1NuUBoSRqYTp64UK2vZ+GJwgnb0ILQPkno="; 18 18 19 19 subPackages = [ "cmd/api-linter" ]; 20 20
+3 -3
pkgs/by-name/as/ascii-draw/package.nix
··· 12 12 13 13 python3Packages.buildPythonApplication rec { 14 14 pname = "ascii-draw"; 15 - version = "0.3.2"; 15 + version = "0.3.4"; 16 16 pyproject = false; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "Nokse22"; 20 20 repo = "ascii-draw"; 21 - rev = "v${version}"; 22 - hash = "sha256-opjYgLfHfKSbipB1HRxfBkgp+9c4yqIL1fiUOcFmCMc="; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-S5tFK+mJeWtkdS2WjE+lZ2Gfg4N1S0a29AbbcGeKSD0="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/by-name/bl/blockbench/package.nix
··· 14 14 in 15 15 buildNpmPackage rec { 16 16 pname = "blockbench"; 17 - version = "4.10.0"; 17 + version = "4.10.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "JannisX11"; 21 21 repo = "blockbench"; 22 22 rev = "v${version}"; 23 - hash = "sha256-pycRC+ZpN2P5Z66/aGA4gykLF7IwdeToRadaJSA1L9w="; 23 + hash = "sha256-LuWxjBsOBo6tSlSGaDWrNYcTerIpU+rw3r+zN6gtYb0="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/by-name/fa/fastfetch/package.nix
··· 47 47 in 48 48 stdenv'.mkDerivation (finalAttrs: { 49 49 pname = "fastfetch"; 50 - version = "2.12.0"; 50 + version = "2.13.0"; 51 51 52 52 src = fetchFromGitHub { 53 53 owner = "fastfetch-cli"; 54 54 repo = "fastfetch"; 55 55 rev = finalAttrs.version; 56 - hash = "sha256-4/9LRXDUVd/8cAxfbyAj9so13bvKe/A9uu0mEYehlj4="; 56 + hash = "sha256-T1M+AwKc7O7Ex6mzBtYBwhOXHkggO5CsjddmZhBpxfQ="; 57 57 }; 58 58 59 59 outputs = [ "out" "man" ];
+2 -2
pkgs/by-name/py/pyprland/package.nix
··· 7 7 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "pyprland"; 10 - version = "2.2.20"; 10 + version = "2.3.2"; 11 11 format = "pyproject"; 12 12 13 13 disabled = python3Packages.pythonOlder "3.10"; ··· 16 16 owner = "hyprland-community"; 17 17 repo = "pyprland"; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-/eJ3emWI2l9jYgD7RX6tGUy6wHHQ25qS6Xd1x1uWZ1w="; 19 + hash = "sha256-3Y+5tOKd4Z7xwTU4OoEQffw70kb29wxKFC9Oh0bCO4k="; 20 20 }; 21 21 22 22 nativeBuildInputs = with python3Packages; [ poetry-core ];
+17 -24
pkgs/by-name/st/stats/package.nix
··· 1 - { lib 2 - , stdenvNoCC 3 - , fetchurl 4 - , undmg 5 - , writeShellApplication 6 - , curl 7 - , jq 8 - , common-updater-scripts 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + undmg, 6 + nix-update-script, 9 7 }: 10 8 11 9 stdenvNoCC.mkDerivation (finalAttrs: { 12 10 pname = "stats"; 13 - version = "2.10.13"; 11 + version = "2.10.14"; 14 12 15 13 src = fetchurl { 16 14 url = "https://github.com/exelban/stats/releases/download/v${finalAttrs.version}/Stats.dmg"; 17 - hash = "sha256-AzH1rZFqEH8sovZZfJykvsEmCedEZWigQFHWHl6/PdE="; 15 + hash = "sha256-WJBn98C5uV9EmeEM+Zieztuof1CW80co8wrLntY7D0E="; 18 16 }; 19 17 20 18 sourceRoot = "."; ··· 30 28 runHook postInstall 31 29 ''; 32 30 33 - passthru.updateScript = lib.getExe (writeShellApplication { 34 - name = "stats-update-script"; 35 - runtimeInputs = [ curl jq common-updater-scripts ]; 36 - text = '' 37 - set -euo pipefail 38 - url="$(curl --silent "https://api.github.com/repos/exelban/stats/tags?per_page=1")" 39 - version="$(echo "$url" | jq -r '.[0].name' | cut -c 2-)" 40 - update-source-version stats "$version" --file=./pkgs/by-name/st/stats/package.nix 41 - ''; 42 - }); 31 + passthru.updateScript = nix-update-script { }; 43 32 44 - meta = with lib; { 33 + meta = { 45 34 description = "macOS system monitor in your menu bar"; 46 35 homepage = "https://github.com/exelban/stats"; 47 - license = licenses.mit; 36 + license = lib.licenses.mit; 37 + maintainers = with lib.maintainers; [ 38 + donteatoreo 39 + emilytrau 40 + Enzime 41 + ]; 42 + platforms = lib.platforms.darwin; 48 43 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 49 - maintainers = with maintainers; [ emilytrau Enzime donteatoreo ]; 50 - platforms = platforms.darwin; 51 44 }; 52 45 })
+2 -2
pkgs/by-name/ta/tailscale-nginx-auth/package.nix
··· 1 1 { lib, stdenv, buildGoModule, fetchFromGitHub }: 2 2 3 3 let 4 - version = "1.66.3"; 4 + version = "1.66.4"; 5 5 in 6 6 buildGoModule { 7 7 pname = "tailscale-nginx-auth"; ··· 11 11 owner = "tailscale"; 12 12 repo = "tailscale"; 13 13 rev = "v${version}"; 14 - hash = "sha256-dFyXOoN4YZfN3G1XfHK1/8M1ROwW9Q9eCl/NjTdfD4Q="; 14 + hash = "sha256-ETBca3qKO2iS30teIF5sr/oyJdRSKFqLFVO3+mmm7bo="; 15 15 }; 16 16 vendorHash = "sha256-Hd77xy8stw0Y6sfk3/ItqRIbM/349M/4uf0iNy1xJGw="; 17 17
+4 -4
pkgs/by-name/wa/warp-terminal/versions.json
··· 1 1 { 2 2 "darwin": { 3 - "hash": "sha256-Ky5JyocpI9JKvhmmhk0Cg/Eo7icmo6FQAT639cGIGrA=", 4 - "version": "0.2024.05.07.08.02.stable_02" 3 + "hash": "sha256-XRwnT73kCv4mO2DKkuFQ8qwpIIH9iyRTrJEZUi6tscU=", 4 + "version": "0.2024.05.14.08.01.stable_04" 5 5 }, 6 6 "linux": { 7 - "hash": "sha256-zUbWNgiupBoFWoN3I726FejGtGne9dctaiGlPBbj5KU=", 8 - "version": "0.2024.05.07.08.02.stable_02" 7 + "hash": "sha256-16ZMzvdkAAf9xSiL7TCaiJwEMd+jbOYIL/xiF2Todbw=", 8 + "version": "0.2024.05.14.08.01.stable_04" 9 9 } 10 10 }
+3 -3
pkgs/by-name/wi/wit-bindgen/package.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "wit-bindgen"; 8 - version = "0.24.0"; 8 + version = "0.25.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "bytecodealliance"; 12 12 repo = "wit-bindgen"; 13 13 rev = "v${version}"; 14 - hash = "sha256-lH5ejZEEtGJbqBTAm0VO2ww+fh+fAtuRlTLfc58WFxc="; 14 + hash = "sha256-ckzS3hMdBHllpbzPq4MZ3K6L1fKEgcgI2nnpzSI1ky4="; 15 15 }; 16 16 17 - cargoHash = "sha256-bBA2AE8tN2J6SryZSBpDhFUxnMhWQmaqmU71QaTAYzY="; 17 + cargoHash = "sha256-BKNgPr5Yj+B0nAQEJdh6gat91WZ73sDSBgKDPrhn6bo="; 18 18 19 19 # Some tests fail because they need network access to install the `wasm32-unknown-unknown` target. 20 20 # However, GitHub Actions ensures a proper build.
+2 -2
pkgs/development/interpreters/elixir/1.16.nix
··· 1 1 { mkDerivation }: 2 2 mkDerivation { 3 - version = "1.16.2"; 4 - sha256 = "sha256-NUYYxf73Fuk3FUoVFKTo6IN9QCTvzz5wNshIf/nitJA="; 3 + version = "1.16.3"; 4 + sha256 = "sha256-WUBqoz3aQvBlSG3pTxGBpWySY7I0NUcDajQBgq5xYTU="; 5 5 # https://hexdocs.pm/elixir/1.16.0/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp 6 6 minimumOTPVersion = "24"; 7 7 escriptPath = "lib/elixir/scripts/generate_app.escript";
+6 -4
pkgs/development/ocaml-modules/duppy/default.nix
··· 1 - { lib, buildDunePackage, fetchFromGitHub, ocaml_pcre }: 1 + { lib, buildDunePackage, fetchFromGitHub, re }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "duppy"; 5 - version = "0.9.3"; 5 + version = "0.9.4"; 6 + 7 + minimalOCamlVersion = "4.07"; 6 8 7 9 src = fetchFromGitHub { 8 10 owner = "savonet"; 9 11 repo = "ocaml-duppy"; 10 12 rev = "v${version}"; 11 - sha256 = "sha256-5U/CNQ88Wi/AgJEoFeS9O0zTPiD9ysJNQohRVJdyH9w="; 13 + sha256 = "sha256-rVdfAMu26YgS/TZk2XPqaR6KTDLbh9Elkf8rjhSnNO4="; 12 14 }; 13 15 14 - propagatedBuildInputs = [ ocaml_pcre ]; 16 + propagatedBuildInputs = [ re ]; 15 17 16 18 meta = with lib; { 17 19 homepage = "https://github.com/savonet/ocaml-duppy";
+3 -3
pkgs/development/ocaml-modules/ffmpeg/base.nix
··· 1 1 { lib, fetchFromGitHub }: 2 2 3 3 rec { 4 - version = "1.1.8"; 4 + version = "1.1.11"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "savonet"; 8 8 repo = "ocaml-ffmpeg"; 9 - rev = "v${version}"; 10 - sha256 = "sha256-XqZATaxpW0lEdrRTXVTc0laQAx437+eoa/zOzZV1kHk="; 9 + rev = "refs/tags/v${version}"; 10 + sha256 = "sha256-Tr0YhoaaUSOlA7vlhAjPyFJI/iL7Z54oO27RnG7d+nA="; 11 11 }; 12 12 13 13 meta = with lib; {
+23
pkgs/development/ocaml-modules/gd/default.nix
··· 1 + { lib, buildDunePackage, fetchFromGitHub, dune-configurator, gd }: 2 + 3 + buildDunePackage rec { 4 + pname = "gd"; 5 + version = "1.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "savonet"; 9 + repo = "ocaml-gd"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-78cqxVEappTybRLk7Y6vW1POvZKFIxtGNVcmkKq9GEE="; 12 + }; 13 + 14 + buildInputs = [ dune-configurator ]; 15 + propagatedBuildInputs = [ gd ]; 16 + 17 + meta = with lib; { 18 + homepage = "https://github.com/savonet/ocaml-gd"; 19 + description = "OCaml bindings for gd"; 20 + license = licenses.lgpl21Only; 21 + maintainers = with maintainers; [ dandellion ]; 22 + }; 23 + }
-42
pkgs/development/ocaml-modules/gd4o/default.nix
··· 1 - { lib, stdenv, fetchurl, ocaml, gd, freetype, findlib, zlib, libpng, libjpeg }: 2 - 3 - lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 4 - "gd4o is not available for OCaml ${ocaml.version}" 5 - 6 - stdenv.mkDerivation rec { 7 - pname = "ocaml${ocaml.version}-gd4o"; 8 - version = "1.0a5"; 9 - 10 - src = fetchurl { 11 - url = "mirror://sourceforge/gd4o/gd4o/1.0%20Alpha%205/gd4o-1.0a5.tar.gz"; 12 - sha256 = "1vbyakz7byvxmqf3hj68rw15b4kb94ppcnhvmjv38rsyg05bc47s"; 13 - }; 14 - 15 - buildInputs = [ ocaml findlib libjpeg libpng ]; 16 - propagatedBuildInputs = [ gd zlib freetype ]; 17 - 18 - makeFlags = [ 19 - "CC=${stdenv.cc.targetPrefix}cc" 20 - ]; 21 - 22 - preInstall = '' 23 - mkdir -p $OCAMLFIND_DESTDIR/stublibs 24 - ''; 25 - 26 - buildFlags = [ "all" "opt" ]; 27 - 28 - checkPhase = '' 29 - runHook preCheck 30 - make test.opt 31 - runHook postCheck 32 - ''; 33 - 34 - doCheck = true; 35 - 36 - meta = with lib; { 37 - homepage = "https://sourceforge.net/projects/gd4o/"; 38 - description = "OCaml wrapper for the GD graphics library"; 39 - license = licenses.lgpl21Only; 40 - maintainers = with maintainers; [ dandellion ]; 41 - }; 42 - }
+8 -6
pkgs/development/ocaml-modules/lastfm/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pkg-config 5 5 , dune-configurator 6 + , re 6 7 , xmlplaylist 7 - , ocaml_pcre 8 - , ocamlnet 9 8 }: 10 9 11 10 buildDunePackage rec { 12 11 pname = "lastfm"; 13 - version = "0.3.3"; 12 + version = "0.3.4"; 14 13 15 - useDune2 = true; 14 + minimalOCamlVersion = "4.08"; 16 15 17 16 src = fetchFromGitHub { 18 17 owner = "savonet"; 19 18 repo = "ocaml-lastfm"; 20 19 rev = "v${version}"; 21 - sha256 = "1sz400ny9h7fs20k7600q475q164x49ba30ls3q9y35rhm3g2y2b"; 20 + sha256 = "sha256-1te9B2+sUmkT/i2K5ueswWAWpvJf9rXob0zR4CMOJlg="; 22 21 }; 23 22 24 - propagatedBuildInputs = [ xmlplaylist ocaml_pcre ocamlnet ]; 23 + propagatedBuildInputs = [ 24 + re 25 + xmlplaylist 26 + ]; 25 27 26 28 meta = with lib; { 27 29 homepage = "https://github.com/savonet/ocaml-lastfm";
+4 -2
pkgs/development/ocaml-modules/mad/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "mad"; 5 - version = "0.5.2"; 5 + version = "0.5.3"; 6 + 7 + minimalOCamlVersion = "4.06"; 6 8 7 9 src = fetchFromGitHub { 8 10 owner = "savonet"; 9 11 repo = "ocaml-mad"; 10 12 rev = "v${version}"; 11 - sha256 = "sha256-iJjANV2M68v3C3db1n9Y8V6yJKuDBDSjtMteamndN7U="; 13 + sha256 = "sha256-rSFzWyUYTrGL7GvVsY5qKdCXqY/XJQkuBerexG838jc="; 12 14 }; 13 15 14 16 buildInputs = [ dune-configurator ];
+15 -6
pkgs/development/ocaml-modules/rope/default.nix
··· 1 - { lib, fetchurl, ocaml, buildDunePackage, benchmark }: 1 + { lib, fetchurl, fetchpatch, ocaml, buildDunePackage 2 + , version ? if lib.versionAtLeast ocaml.version "5.0" then "0.6.3" else "0.6.2" 3 + , benchmark 4 + }: 2 5 3 - lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 4 - "rope is not available for OCaml ${ocaml.version}" 5 6 6 - buildDunePackage rec { 7 + buildDunePackage { 7 8 pname = "rope"; 8 - version = "0.6.2"; 9 + inherit version; 9 10 minimalOCamlVersion = "4.03"; 10 11 11 12 src = fetchurl { 12 13 url = "https://github.com/Chris00/ocaml-rope/releases/download/${version}/rope-${version}.tbz"; 13 - sha256 = "15cvfa0s1vjx7gjd07d3fkznilishqf4z4h2q5f20wm9ysjh2h2i"; 14 + hash = { 15 + "0.6.2" = "sha256:15cvfa0s1vjx7gjd07d3fkznilishqf4z4h2q5f20wm9ysjh2h2i"; 16 + "0.6.3" = "sha256-M14fiP9BDiz3WEoMqAJqZaXk4PoZ8Z1YjOk+F97z05Y="; 17 + }."${version}"; 14 18 }; 15 19 16 20 buildInputs = [ benchmark ] ; 21 + 22 + patches = lib.optional (version == "0.6.3") (fetchpatch { 23 + url = "https://github.com/Chris00/ocaml-rope/commit/be53daa18dd3d1450a92881b33c997eafb1dc958.patch"; 24 + hash = "sha256-fHJNfD1ph3+QLmVJ8C4hhJ8hvrWIh7D0EL0XhOW2yqQ="; 25 + }); 17 26 18 27 meta = { 19 28 homepage = "https://github.com/Chris00/ocaml-rope";
+2 -2
pkgs/development/ocaml-modules/tsdl-image/default.nix
··· 9 9 10 10 buildDunePackage rec { 11 11 pname = "tsdl-image"; 12 - version = "0.5"; 12 + version = "0.6"; 13 13 14 14 duneVersion = "3"; 15 15 ··· 17 17 owner = "sanette"; 18 18 repo = pname; 19 19 rev = version; 20 - hash = "sha256-khLhVJuiLNNWw76gTeg4W32v5XbkwAg11bIOWl67u2k="; 20 + hash = "sha256-mgTFwkuFJVwJmHrzHSdNh8v4ehZIcWemK+eLqjglw5o="; 21 21 }; 22 22 23 23 buildInputs = [
+2 -2
pkgs/development/ocaml-modules/uri/default.nix
··· 5 5 buildDunePackage rec { 6 6 minimalOCamlVersion = "4.03"; 7 7 pname = "uri"; 8 - version = "4.2.0"; 8 + version = "4.4.0"; 9 9 10 10 duneVersion = "3"; 11 11 12 12 src = fetchurl { 13 - url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 13 + url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz"; 14 14 sha256 = "0szifda6yism5vn5jdizkha3ad0xk6zw4xgfl8g77dnv83ci7h65"; 15 15 }; 16 16
-26
pkgs/development/python-modules/cld2-cffi/default.nix
··· 1 - { lib, stdenv, buildPythonPackage, fetchPypi, six, cffi, nose }: 2 - 3 - buildPythonPackage rec { 4 - pname = "cld2-cffi"; 5 - version = "0.1.4"; 6 - format = "setuptools"; 7 - 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "0rvcdx4fdh5yk4d2nlddq1q1r2r0xqp86hpmbdn447pdcj1r8a9s"; 11 - }; 12 - 13 - propagatedBuildInputs = [ six cffi ]; 14 - nativeCheckInputs = [ nose ]; 15 - 16 - # gcc doesn't approve of this code, so disable -Werror 17 - env.NIX_CFLAGS_COMPILE = "-w" + lib.optionalString stdenv.cc.isClang " -Wno-error=c++11-narrowing"; 18 - 19 - checkPhase = "nosetests -v"; 20 - 21 - meta = with lib; { 22 - description = "CFFI bindings around Google Chromium's embedded compact language detection library (CLD2)"; 23 - homepage = "https://github.com/GregBowyer/cld2-cffi"; 24 - license = licenses.asl20; 25 - }; 26 - }
-21
pkgs/development/python-modules/proboscis/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, nose }: 2 - 3 - buildPythonPackage rec { 4 - pname = "proboscis"; 5 - version = "1.2.6.0"; 6 - format = "setuptools"; 7 - 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238"; 11 - }; 12 - 13 - propagatedBuildInputs = [ nose ]; 14 - doCheck = false; 15 - 16 - meta = with lib; { 17 - description = "A Python test framework that extends Python's built-in unittest module and Nose with features from TestNG"; 18 - homepage = "https://pypi.python.org/pypi/proboscis"; 19 - license = licenses.asl20; 20 - }; 21 - }
+2 -2
pkgs/development/python-modules/rapidfuzz/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "rapidfuzz"; 21 - version = "3.8.1"; 21 + version = "3.9.1"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.8"; ··· 27 27 owner = "maxbachmann"; 28 28 repo = "RapidFuzz"; 29 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-ljuqezL/Iu4VQelPi7KApBknDrWzikX7FD5iw5NcOL4="; 30 + hash = "sha256-HwTVaPFVktdt1/MfNYajRqVr9uSg6oc++yVvY0WC9AQ="; 31 31 }; 32 32 33 33 postPatch = ''
+2 -2
pkgs/development/tools/analysis/codeql/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "codeql"; 5 - version = "2.17.2"; 5 + version = "2.17.3"; 6 6 7 7 dontConfigure = true; 8 8 dontBuild = true; ··· 10 10 11 11 src = fetchzip { 12 12 url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip"; 13 - hash = "sha256-l1O3VrO1Ndfp1QIsDmTAhAiUpoOc7+TkQETsoo7m460="; 13 + hash = "sha256-g/+Hf+4cOkud+Gfj/2rqlZ6duzn3A3fkF6mXjXjTypA="; 14 14 }; 15 15 16 16 nativeBuildInputs = [
+3 -3
pkgs/development/tools/language-servers/vscode-langservers-extracted/default.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "vscode-langservers-extracted"; 5 - version = "4.9.0"; 5 + version = "4.10.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hrsh7th"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-4qAQa8Pt7Br0T770ck2F912ZddrzgTKEliSAP/qLvgE="; 11 + hash = "sha256-3m9+HZY24xdlLcFKY/5DfvftqprwLJk0vve2ZO1aEWk="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-2rRyg+UO3wnq5CuG5q87YOdGng9zBTh9aXueB0xf8ps="; 14 + npmDepsHash = "sha256-XGlFtmikUrnnWXsAYzTqw2K7Y2O0bUtYug0xXFIASBQ="; 15 15 16 16 buildPhase = 17 17 let
+514 -359
pkgs/development/tools/rye/Cargo.lock
··· 72 72 73 73 [[package]] 74 74 name = "ahash" 75 - version = "0.8.7" 75 + version = "0.8.11" 76 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" 77 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 78 78 dependencies = [ 79 79 "cfg-if", 80 80 "once_cell", ··· 84 84 85 85 [[package]] 86 86 name = "aho-corasick" 87 - version = "1.1.2" 87 + version = "1.1.3" 88 88 source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 89 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 90 90 dependencies = [ 91 91 "memchr", 92 92 ] 93 93 94 94 [[package]] 95 95 name = "allocator-api2" 96 - version = "0.2.16" 96 + version = "0.2.18" 97 97 source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 98 + checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 99 99 100 100 [[package]] 101 101 name = "anstyle" 102 - version = "1.0.5" 102 + version = "1.0.7" 103 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "2faccea4cc4ab4a667ce676a30e8ec13922a692c99bb8f5b11f1502c72e04220" 104 + checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 105 105 106 106 [[package]] 107 107 name = "anyhow" 108 - version = "1.0.79" 108 + version = "1.0.86" 109 109 source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 110 + checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 111 111 dependencies = [ 112 112 "backtrace", 113 113 ] 114 114 115 115 [[package]] 116 + name = "arbitrary" 117 + version = "1.3.2" 118 + source = "registry+https://github.com/rust-lang/crates.io-index" 119 + checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 120 + dependencies = [ 121 + "derive_arbitrary", 122 + ] 123 + 124 + [[package]] 116 125 name = "arc-swap" 117 - version = "1.6.0" 126 + version = "1.7.1" 118 127 source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 128 + checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 120 129 121 130 [[package]] 122 131 name = "autocfg" 123 - version = "1.1.0" 132 + version = "1.3.0" 124 133 source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 134 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 126 135 127 136 [[package]] 128 137 name = "backtrace" 129 - version = "0.3.69" 138 + version = "0.3.71" 130 139 source = "registry+https://github.com/rust-lang/crates.io-index" 131 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 140 + checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" 132 141 dependencies = [ 133 142 "addr2line", 134 143 "cc", ··· 152 161 checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 153 162 154 163 [[package]] 164 + name = "base64" 165 + version = "0.22.1" 166 + source = "registry+https://github.com/rust-lang/crates.io-index" 167 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 168 + 169 + [[package]] 155 170 name = "bech32" 156 171 version = "0.9.1" 157 172 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 165 180 166 181 [[package]] 167 182 name = "bitflags" 168 - version = "2.4.2" 183 + version = "2.5.0" 169 184 source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 185 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 171 186 172 187 [[package]] 173 188 name = "block-buffer" ··· 180 195 181 196 [[package]] 182 197 name = "bstr" 183 - version = "1.9.0" 198 + version = "1.9.1" 184 199 source = "registry+https://github.com/rust-lang/crates.io-index" 185 - checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" 200 + checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 186 201 dependencies = [ 187 202 "memchr", 188 203 "serde", ··· 190 205 191 206 [[package]] 192 207 name = "bumpalo" 193 - version = "3.14.0" 208 + version = "3.16.0" 194 209 source = "registry+https://github.com/rust-lang/crates.io-index" 195 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 210 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 196 211 197 212 [[package]] 198 213 name = "byteorder" ··· 223 238 224 239 [[package]] 225 240 name = "cc" 226 - version = "1.0.83" 241 + version = "1.0.98" 227 242 source = "registry+https://github.com/rust-lang/crates.io-index" 228 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 243 + checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f" 229 244 dependencies = [ 230 245 "jobserver", 231 246 "libc", 247 + "once_cell", 232 248 ] 233 249 234 250 [[package]] ··· 238 254 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 239 255 240 256 [[package]] 257 + name = "cfg_aliases" 258 + version = "0.1.1" 259 + source = "registry+https://github.com/rust-lang/crates.io-index" 260 + checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 261 + 262 + [[package]] 241 263 name = "chacha20" 242 264 version = "0.9.1" 243 265 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 294 316 295 317 [[package]] 296 318 name = "clap" 297 - version = "4.4.18" 319 + version = "4.5.4" 298 320 source = "registry+https://github.com/rust-lang/crates.io-index" 299 - checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" 321 + checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" 300 322 dependencies = [ 301 323 "clap_builder", 302 324 "clap_derive", ··· 304 326 305 327 [[package]] 306 328 name = "clap_builder" 307 - version = "4.4.18" 329 + version = "4.5.2" 308 330 source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" 331 + checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 310 332 dependencies = [ 311 333 "anstyle", 312 334 "clap_lex", ··· 315 337 316 338 [[package]] 317 339 name = "clap_complete" 318 - version = "4.4.10" 340 + version = "4.5.2" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "dd79504325bf38b10165b02e89b4347300f855f273c4cb30c4a3209e6583275e" 343 + dependencies = [ 344 + "clap", 345 + ] 346 + 347 + [[package]] 348 + name = "clap_complete_nushell" 349 + version = "4.5.1" 319 350 source = "registry+https://github.com/rust-lang/crates.io-index" 320 - checksum = "abb745187d7f4d76267b37485a65e0149edd0e91a4cfcdd3f27524ad86cee9f3" 351 + checksum = "80d0e48e026ce7df2040239117d25e4e79714907420c70294a5ce4b6bbe6a7b6" 321 352 dependencies = [ 322 353 "clap", 354 + "clap_complete", 323 355 ] 324 356 325 357 [[package]] 326 358 name = "clap_derive" 327 - version = "4.4.7" 359 + version = "4.5.4" 328 360 source = "registry+https://github.com/rust-lang/crates.io-index" 329 - checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 361 + checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" 330 362 dependencies = [ 331 363 "heck", 332 364 "proc-macro2", 333 365 "quote", 334 - "syn 2.0.48", 366 + "syn 2.0.65", 335 367 ] 336 368 337 369 [[package]] 338 370 name = "clap_lex" 339 - version = "0.6.0" 371 + version = "0.7.0" 340 372 source = "registry+https://github.com/rust-lang/crates.io-index" 341 - checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 373 + checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 342 374 343 375 [[package]] 344 376 name = "configparser" ··· 361 393 362 394 [[package]] 363 395 name = "cookie-factory" 364 - version = "0.3.2" 396 + version = "0.3.3" 365 397 source = "registry+https://github.com/rust-lang/crates.io-index" 366 - checksum = "396de984970346b0d9e93d1415082923c679e5ae5c3ee3dcbd104f5610af126b" 398 + checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2" 399 + dependencies = [ 400 + "futures", 401 + ] 367 402 368 403 [[package]] 369 404 name = "cpufeatures" ··· 376 411 377 412 [[package]] 378 413 name = "crc32fast" 379 - version = "1.3.2" 414 + version = "1.4.2" 380 415 source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 416 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 382 417 dependencies = [ 383 418 "cfg-if", 384 419 ] 385 420 386 421 [[package]] 387 422 name = "crossbeam-utils" 388 - version = "0.8.19" 423 + version = "0.8.20" 389 424 source = "registry+https://github.com/rust-lang/crates.io-index" 390 - checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 425 + checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 391 426 392 427 [[package]] 393 428 name = "crypto-common" ··· 401 436 402 437 [[package]] 403 438 name = "ctrlc" 404 - version = "3.4.2" 439 + version = "3.4.4" 405 440 source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b" 441 + checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" 407 442 dependencies = [ 408 443 "nix", 409 444 "windows-sys 0.52.0", ··· 411 446 412 447 [[package]] 413 448 name = "curl" 414 - version = "0.4.44" 449 + version = "0.4.46" 415 450 source = "registry+https://github.com/rust-lang/crates.io-index" 416 - checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" 451 + checksum = "1e2161dd6eba090ff1594084e95fd67aeccf04382ffea77999ea94ed42ec67b6" 417 452 dependencies = [ 418 453 "curl-sys", 419 454 "libc", ··· 421 456 "openssl-sys", 422 457 "schannel", 423 458 "socket2", 424 - "winapi", 459 + "windows-sys 0.52.0", 425 460 ] 426 461 427 462 [[package]] 428 463 name = "curl-sys" 429 - version = "0.4.71+curl-8.6.0" 464 + version = "0.4.72+curl-8.6.0" 430 465 source = "registry+https://github.com/rust-lang/crates.io-index" 431 - checksum = "c7b12a7ab780395666cb576203dc3ed6e01513754939a600b85196ccf5356bc5" 466 + checksum = "29cbdc8314c447d11e8fd156dcdd031d9e02a7a976163e396b548c03153bc9ea" 432 467 dependencies = [ 433 468 "cc", 434 469 "libc", ··· 436 471 "openssl-sys", 437 472 "pkg-config", 438 473 "vcpkg", 439 - "windows-sys 0.48.0", 474 + "windows-sys 0.52.0", 440 475 ] 441 476 442 477 [[package]] ··· 463 498 dependencies = [ 464 499 "proc-macro2", 465 500 "quote", 466 - "syn 2.0.48", 501 + "syn 2.0.65", 467 502 ] 468 503 469 504 [[package]] ··· 481 516 482 517 [[package]] 483 518 name = "data-encoding" 484 - version = "2.5.0" 519 + version = "2.6.0" 485 520 source = "registry+https://github.com/rust-lang/crates.io-index" 486 - checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 521 + checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 487 522 488 523 [[package]] 489 524 name = "deranged" ··· 495 530 ] 496 531 497 532 [[package]] 533 + name = "derive_arbitrary" 534 + version = "1.3.2" 535 + source = "registry+https://github.com/rust-lang/crates.io-index" 536 + checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 537 + dependencies = [ 538 + "proc-macro2", 539 + "quote", 540 + "syn 2.0.65", 541 + ] 542 + 543 + [[package]] 498 544 name = "deunicode" 499 - version = "1.4.2" 545 + version = "1.6.0" 500 546 source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "3ae2a35373c5c74340b79ae6780b498b2b183915ec5dacf263aac5a099bf485a" 547 + checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00" 502 548 503 549 [[package]] 504 550 name = "dialoguer" ··· 531 577 dependencies = [ 532 578 "proc-macro2", 533 579 "quote", 534 - "syn 2.0.48", 580 + "syn 2.0.65", 535 581 ] 536 582 537 583 [[package]] ··· 542 588 543 589 [[package]] 544 590 name = "either" 545 - version = "1.9.0" 591 + version = "1.12.0" 546 592 source = "registry+https://github.com/rust-lang/crates.io-index" 547 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 593 + checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" 548 594 549 595 [[package]] 550 596 name = "encode_unicode" ··· 554 600 555 601 [[package]] 556 602 name = "encoding_rs" 557 - version = "0.8.33" 603 + version = "0.8.34" 558 604 source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 605 + checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 560 606 dependencies = [ 561 607 "cfg-if", 562 608 ] ··· 569 615 570 616 [[package]] 571 617 name = "errno" 572 - version = "0.3.8" 618 + version = "0.3.9" 573 619 source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 620 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 575 621 dependencies = [ 576 622 "libc", 577 623 "windows-sys 0.52.0", ··· 588 634 589 635 [[package]] 590 636 name = "fastrand" 591 - version = "2.0.1" 637 + version = "2.1.0" 592 638 source = "registry+https://github.com/rust-lang/crates.io-index" 593 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 639 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 594 640 595 641 [[package]] 596 642 name = "fiat-crypto" 597 - version = "0.2.7" 643 + version = "0.2.9" 598 644 source = "registry+https://github.com/rust-lang/crates.io-index" 599 - checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" 645 + checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 600 646 601 647 [[package]] 602 648 name = "filetime" ··· 606 652 dependencies = [ 607 653 "cfg-if", 608 654 "libc", 609 - "redox_syscall", 655 + "redox_syscall 0.4.1", 610 656 "windows-sys 0.52.0", 611 657 ] 612 658 ··· 621 667 622 668 [[package]] 623 669 name = "flate2" 624 - version = "1.0.28" 670 + version = "1.0.30" 625 671 source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 672 + checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 627 673 dependencies = [ 628 674 "crc32fast", 629 675 "miniz_oxide", ··· 631 677 632 678 [[package]] 633 679 name = "fluent" 634 - version = "0.16.0" 680 + version = "0.16.1" 635 681 source = "registry+https://github.com/rust-lang/crates.io-index" 636 - checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" 682 + checksum = "bb74634707bebd0ce645a981148e8fb8c7bccd4c33c652aeffd28bf2f96d555a" 637 683 dependencies = [ 638 684 "fluent-bundle", 639 685 "unic-langid", ··· 641 687 642 688 [[package]] 643 689 name = "fluent-bundle" 644 - version = "0.15.2" 690 + version = "0.15.3" 645 691 source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" 692 + checksum = "7fe0a21ee80050c678013f82edf4b705fe2f26f1f9877593d13198612503f493" 647 693 dependencies = [ 648 694 "fluent-langneg", 649 695 "fluent-syntax", ··· 666 712 667 713 [[package]] 668 714 name = "fluent-syntax" 669 - version = "0.11.0" 715 + version = "0.11.1" 670 716 source = "registry+https://github.com/rust-lang/crates.io-index" 671 - checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" 717 + checksum = "2a530c4694a6a8d528794ee9bbd8ba0122e779629ac908d15ad5a7ae7763a33d" 672 718 dependencies = [ 673 719 "thiserror", 674 720 ] ··· 712 758 ] 713 759 714 760 [[package]] 761 + name = "futures" 762 + version = "0.3.30" 763 + source = "registry+https://github.com/rust-lang/crates.io-index" 764 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 765 + dependencies = [ 766 + "futures-channel", 767 + "futures-core", 768 + "futures-executor", 769 + "futures-io", 770 + "futures-sink", 771 + "futures-task", 772 + "futures-util", 773 + ] 774 + 775 + [[package]] 776 + name = "futures-channel" 777 + version = "0.3.30" 778 + source = "registry+https://github.com/rust-lang/crates.io-index" 779 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 780 + dependencies = [ 781 + "futures-core", 782 + "futures-sink", 783 + ] 784 + 785 + [[package]] 786 + name = "futures-core" 787 + version = "0.3.30" 788 + source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 790 + 791 + [[package]] 792 + name = "futures-executor" 793 + version = "0.3.30" 794 + source = "registry+https://github.com/rust-lang/crates.io-index" 795 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 796 + dependencies = [ 797 + "futures-core", 798 + "futures-task", 799 + "futures-util", 800 + ] 801 + 802 + [[package]] 803 + name = "futures-io" 804 + version = "0.3.30" 805 + source = "registry+https://github.com/rust-lang/crates.io-index" 806 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 807 + 808 + [[package]] 809 + name = "futures-macro" 810 + version = "0.3.30" 811 + source = "registry+https://github.com/rust-lang/crates.io-index" 812 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 813 + dependencies = [ 814 + "proc-macro2", 815 + "quote", 816 + "syn 2.0.65", 817 + ] 818 + 819 + [[package]] 820 + name = "futures-sink" 821 + version = "0.3.30" 822 + source = "registry+https://github.com/rust-lang/crates.io-index" 823 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 824 + 825 + [[package]] 826 + name = "futures-task" 827 + version = "0.3.30" 828 + source = "registry+https://github.com/rust-lang/crates.io-index" 829 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 830 + 831 + [[package]] 832 + name = "futures-util" 833 + version = "0.3.30" 834 + source = "registry+https://github.com/rust-lang/crates.io-index" 835 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 836 + dependencies = [ 837 + "futures-channel", 838 + "futures-core", 839 + "futures-io", 840 + "futures-macro", 841 + "futures-sink", 842 + "futures-task", 843 + "memchr", 844 + "pin-project-lite", 845 + "pin-utils", 846 + "slab", 847 + ] 848 + 849 + [[package]] 715 850 name = "generic-array" 716 851 version = "0.14.7" 717 852 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 723 858 724 859 [[package]] 725 860 name = "getrandom" 726 - version = "0.2.12" 861 + version = "0.2.15" 727 862 source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 863 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 729 864 dependencies = [ 730 865 "cfg-if", 731 866 "libc", ··· 756 891 "log", 757 892 "proc-macro2", 758 893 "quote", 759 - "syn 2.0.48", 894 + "syn 2.0.65", 760 895 "time", 761 896 ] 762 897 ··· 775 910 776 911 [[package]] 777 912 name = "hashbrown" 778 - version = "0.14.3" 913 + version = "0.14.5" 779 914 source = "registry+https://github.com/rust-lang/crates.io-index" 780 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 915 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 781 916 dependencies = [ 782 917 "ahash", 783 918 "allocator-api2", ··· 785 920 786 921 [[package]] 787 922 name = "heck" 788 - version = "0.4.1" 923 + version = "0.5.0" 789 924 source = "registry+https://github.com/rust-lang/crates.io-index" 790 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 925 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 791 926 792 927 [[package]] 793 928 name = "hex" ··· 832 967 "serde", 833 968 "serde_derive", 834 969 "thiserror", 835 - "toml 0.8.9", 970 + "toml 0.8.13", 836 971 "unic-langid", 837 972 ] 838 973 ··· 874 1009 "proc-macro2", 875 1010 "quote", 876 1011 "strsim", 877 - "syn 2.0.48", 1012 + "syn 2.0.65", 878 1013 "unic-langid", 879 1014 ] 880 1015 ··· 888 1023 "i18n-config", 889 1024 "proc-macro2", 890 1025 "quote", 891 - "syn 2.0.48", 1026 + "syn 2.0.65", 892 1027 ] 893 1028 894 1029 [[package]] ··· 903 1038 904 1039 [[package]] 905 1040 name = "indexmap" 906 - version = "2.2.2" 1041 + version = "2.2.6" 907 1042 source = "registry+https://github.com/rust-lang/crates.io-index" 908 - checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520" 1043 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 909 1044 dependencies = [ 910 1045 "equivalent", 911 1046 "hashbrown", ··· 913 1048 914 1049 [[package]] 915 1050 name = "indicatif" 916 - version = "0.17.7" 1051 + version = "0.17.8" 917 1052 source = "registry+https://github.com/rust-lang/crates.io-index" 918 - checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" 1053 + checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" 919 1054 dependencies = [ 920 1055 "console", 921 1056 "instant", ··· 935 1070 936 1071 [[package]] 937 1072 name = "insta" 938 - version = "1.35.1" 1073 + version = "1.39.0" 939 1074 source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "7c985c1bef99cf13c58fade470483d81a2bfe846ebde60ed28cc2dddec2df9e2" 1075 + checksum = "810ae6042d48e2c9e9215043563a58a80b877bc863228a74cf10c49d4620a6f5" 941 1076 dependencies = [ 942 1077 "console", 943 1078 "lazy_static", ··· 945 1080 "regex", 946 1081 "serde", 947 1082 "similar", 948 - "yaml-rust", 949 1083 ] 950 1084 951 1085 [[package]] ··· 961 1095 962 1096 [[package]] 963 1097 name = "instant" 964 - version = "0.1.12" 1098 + version = "0.1.13" 965 1099 source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1100 + checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 967 1101 dependencies = [ 968 1102 "cfg-if", 969 1103 ] 970 1104 971 1105 [[package]] 972 1106 name = "intl-memoizer" 973 - version = "0.5.1" 1107 + version = "0.5.2" 974 1108 source = "registry+https://github.com/rust-lang/crates.io-index" 975 - checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" 1109 + checksum = "fe22e020fce238ae18a6d5d8c502ee76a52a6e880d99477657e6acc30ec57bda" 976 1110 dependencies = [ 977 1111 "type-map", 978 1112 "unic-langid", ··· 995 1129 996 1130 [[package]] 997 1131 name = "itoa" 998 - version = "1.0.10" 1132 + version = "1.0.11" 999 1133 source = "registry+https://github.com/rust-lang/crates.io-index" 1000 - checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1134 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1001 1135 1002 1136 [[package]] 1003 1137 name = "jobserver" 1004 - version = "0.1.27" 1138 + version = "0.1.31" 1005 1139 source = "registry+https://github.com/rust-lang/crates.io-index" 1006 - checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 1140 + checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 1007 1141 dependencies = [ 1008 1142 "libc", 1009 1143 ] 1010 1144 1011 1145 [[package]] 1012 1146 name = "junction" 1013 - version = "1.0.0" 1147 + version = "1.1.0" 1014 1148 source = "registry+https://github.com/rust-lang/crates.io-index" 1015 - checksum = "ca39ef0d69b18e6a2fd14c2f0a1d593200f4a4ed949b240b5917ab51fac754cb" 1149 + checksum = "1c9c415a9b7b1e86cd5738f39d34c9e78c765da7fb1756dbd7d31b3b0d2e7afa" 1016 1150 dependencies = [ 1017 1151 "scopeguard", 1018 - "winapi", 1152 + "windows-sys 0.52.0", 1019 1153 ] 1020 1154 1021 1155 [[package]] ··· 1026 1160 1027 1161 [[package]] 1028 1162 name = "libc" 1029 - version = "0.2.153" 1163 + version = "0.2.155" 1030 1164 source = "registry+https://github.com/rust-lang/crates.io-index" 1031 - checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1165 + checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 1032 1166 1033 1167 [[package]] 1034 1168 name = "libz-sys" 1035 - version = "1.1.15" 1169 + version = "1.1.16" 1036 1170 source = "registry+https://github.com/rust-lang/crates.io-index" 1037 - checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" 1171 + checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9" 1038 1172 dependencies = [ 1039 1173 "cc", 1040 1174 "libc", ··· 1044 1178 1045 1179 [[package]] 1046 1180 name = "license" 1047 - version = "3.2.0" 1181 + version = "3.3.1" 1048 1182 source = "registry+https://github.com/rust-lang/crates.io-index" 1049 - checksum = "778718185117620a06e95d2b1e57d50166b1d6bfad93c8abfc1b3344c863ad8c" 1183 + checksum = "3bba2f02ee1d13cd4bea565658939cd851d70e391f34f7c27b45b2077df3a2e4" 1050 1184 dependencies = [ 1051 1185 "reword", 1052 1186 "serde", ··· 1061 1195 1062 1196 [[package]] 1063 1197 name = "linux-raw-sys" 1064 - version = "0.4.13" 1198 + version = "0.4.14" 1065 1199 source = "registry+https://github.com/rust-lang/crates.io-index" 1066 - checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1200 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1067 1201 1068 1202 [[package]] 1069 1203 name = "lock_api" 1070 - version = "0.4.11" 1204 + version = "0.4.12" 1071 1205 source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1206 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1073 1207 dependencies = [ 1074 1208 "autocfg", 1075 1209 "scopeguard", ··· 1077 1211 1078 1212 [[package]] 1079 1213 name = "log" 1080 - version = "0.4.20" 1214 + version = "0.4.21" 1081 1215 source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1216 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1083 1217 1084 1218 [[package]] 1085 1219 name = "mailparse" 1086 - version = "0.14.1" 1220 + version = "0.15.0" 1087 1221 source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "2d096594926cab442e054e047eb8c1402f7d5b2272573b97ba68aa40629f9757" 1222 + checksum = "3da03d5980411a724e8aaf7b61a7b5e386ec55a7fb49ee3d0ff79efc7e5e7c7e" 1089 1223 dependencies = [ 1090 1224 "charset", 1091 1225 "data-encoding", 1092 - "quoted_printable 0.5.0", 1226 + "quoted_printable", 1093 1227 ] 1094 1228 1095 1229 [[package]] 1096 1230 name = "memchr" 1097 - version = "2.7.1" 1231 + version = "2.7.2" 1098 1232 source = "registry+https://github.com/rust-lang/crates.io-index" 1099 - checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1233 + checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 1100 1234 1101 1235 [[package]] 1102 1236 name = "minijinja" 1103 - version = "1.0.12" 1237 + version = "2.0.1" 1104 1238 source = "registry+https://github.com/rust-lang/crates.io-index" 1105 - checksum = "6fe0ff215195a22884d867b547c70a0c4815cbbcc70991f281dca604b20d10ce" 1239 + checksum = "7165d0e94806d52ad5295e4b54a95176d831814840bc067298ca647e1c956338" 1106 1240 dependencies = [ 1107 1241 "serde", 1108 1242 "serde_json", ··· 1116 1250 1117 1251 [[package]] 1118 1252 name = "miniz_oxide" 1119 - version = "0.7.2" 1253 + version = "0.7.3" 1120 1254 source = "registry+https://github.com/rust-lang/crates.io-index" 1121 - checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1255 + checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" 1122 1256 dependencies = [ 1123 1257 "adler", 1124 1258 ] ··· 1140 1274 "target-lexicon", 1141 1275 "tempfile", 1142 1276 "thiserror", 1143 - "toml 0.8.9", 1277 + "toml 0.8.13", 1144 1278 "tracing", 1145 1279 "unscanny", 1146 1280 "ureq", ··· 1149 1283 1150 1284 [[package]] 1151 1285 name = "nix" 1152 - version = "0.27.1" 1286 + version = "0.28.0" 1153 1287 source = "registry+https://github.com/rust-lang/crates.io-index" 1154 - checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 1288 + checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 1155 1289 dependencies = [ 1156 - "bitflags 2.4.2", 1290 + "bitflags 2.5.0", 1157 1291 "cfg-if", 1292 + "cfg_aliases", 1158 1293 "libc", 1159 1294 ] 1160 1295 ··· 1197 1332 1198 1333 [[package]] 1199 1334 name = "opaque-debug" 1200 - version = "0.3.0" 1335 + version = "0.3.1" 1201 1336 source = "registry+https://github.com/rust-lang/crates.io-index" 1202 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1337 + checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 1203 1338 1204 1339 [[package]] 1205 1340 name = "openssl-probe" ··· 1209 1344 1210 1345 [[package]] 1211 1346 name = "openssl-src" 1212 - version = "300.2.2+3.2.1" 1347 + version = "300.2.3+3.2.1" 1213 1348 source = "registry+https://github.com/rust-lang/crates.io-index" 1214 - checksum = "8bbfad0063610ac26ee79f7484739e2b07555a75c42453b89263830b5c8103bc" 1349 + checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843" 1215 1350 dependencies = [ 1216 1351 "cc", 1217 1352 ] 1218 1353 1219 1354 [[package]] 1220 1355 name = "openssl-sys" 1221 - version = "0.9.99" 1356 + version = "0.9.102" 1222 1357 source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" 1358 + checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" 1224 1359 dependencies = [ 1225 1360 "cc", 1226 1361 "libc", ··· 1231 1366 1232 1367 [[package]] 1233 1368 name = "parking_lot" 1234 - version = "0.12.1" 1369 + version = "0.12.2" 1235 1370 source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1371 + checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" 1237 1372 dependencies = [ 1238 1373 "lock_api", 1239 1374 "parking_lot_core", ··· 1241 1376 1242 1377 [[package]] 1243 1378 name = "parking_lot_core" 1244 - version = "0.9.9" 1379 + version = "0.9.10" 1245 1380 source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 1381 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1247 1382 dependencies = [ 1248 1383 "cfg-if", 1249 1384 "libc", 1250 - "redox_syscall", 1385 + "redox_syscall 0.5.1", 1251 1386 "smallvec", 1252 - "windows-targets 0.48.5", 1387 + "windows-targets 0.52.5", 1253 1388 ] 1254 1389 1255 1390 [[package]] ··· 1304 1439 1305 1440 [[package]] 1306 1441 name = "pin-project" 1307 - version = "1.1.4" 1442 + version = "1.1.5" 1308 1443 source = "registry+https://github.com/rust-lang/crates.io-index" 1309 - checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" 1444 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 1310 1445 dependencies = [ 1311 1446 "pin-project-internal", 1312 1447 ] 1313 1448 1314 1449 [[package]] 1315 1450 name = "pin-project-internal" 1316 - version = "1.1.4" 1451 + version = "1.1.5" 1317 1452 source = "registry+https://github.com/rust-lang/crates.io-index" 1318 - checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" 1453 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 1319 1454 dependencies = [ 1320 1455 "proc-macro2", 1321 1456 "quote", 1322 - "syn 2.0.48", 1457 + "syn 2.0.65", 1323 1458 ] 1324 1459 1325 1460 [[package]] 1326 1461 name = "pin-project-lite" 1327 - version = "0.2.13" 1462 + version = "0.2.14" 1328 1463 source = "registry+https://github.com/rust-lang/crates.io-index" 1329 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1464 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1465 + 1466 + [[package]] 1467 + name = "pin-utils" 1468 + version = "0.1.0" 1469 + source = "registry+https://github.com/rust-lang/crates.io-index" 1470 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1330 1471 1331 1472 [[package]] 1332 1473 name = "pkg-config" 1333 - version = "0.3.29" 1474 + version = "0.3.30" 1334 1475 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 - checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 1476 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1336 1477 1337 1478 [[package]] 1338 1479 name = "platforms" 1339 - version = "3.3.0" 1480 + version = "3.4.0" 1340 1481 source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" 1482 + checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" 1342 1483 1343 1484 [[package]] 1344 1485 name = "poly1305" ··· 1395 1536 1396 1537 [[package]] 1397 1538 name = "proc-macro2" 1398 - version = "1.0.78" 1539 + version = "1.0.83" 1399 1540 source = "registry+https://github.com/rust-lang/crates.io-index" 1400 - checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 1541 + checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43" 1401 1542 dependencies = [ 1402 1543 "unicode-ident", 1403 1544 ] ··· 1413 1554 1414 1555 [[package]] 1415 1556 name = "python-pkginfo" 1416 - version = "0.6.0" 1557 + version = "0.6.1" 1417 1558 source = "registry+https://github.com/rust-lang/crates.io-index" 1418 - checksum = "037469c164f08c891bf6d69ca02f1d56210011451e229618669777df82124cfa" 1559 + checksum = "85f2c5f010e6a63cabc4abcd60d8a61f8f8c450ac60ff0f4ae32a23b2c17d626" 1419 1560 dependencies = [ 1420 1561 "flate2", 1421 1562 "fs-err", ··· 1424 1565 "serde", 1425 1566 "tar", 1426 1567 "thiserror", 1427 - "zip", 1568 + "zip 1.3.0", 1428 1569 ] 1429 1570 1430 1571 [[package]] 1431 1572 name = "quote" 1432 - version = "1.0.35" 1573 + version = "1.0.36" 1433 1574 source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 1575 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1435 1576 dependencies = [ 1436 1577 "proc-macro2", 1437 1578 ] 1438 - 1439 - [[package]] 1440 - name = "quoted_printable" 1441 - version = "0.4.8" 1442 - source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "5a3866219251662ec3b26fc217e3e05bf9c4f84325234dfb96bf0bf840889e49" 1444 1579 1445 1580 [[package]] 1446 1581 name = "quoted_printable" ··· 1488 1623 ] 1489 1624 1490 1625 [[package]] 1626 + name = "redox_syscall" 1627 + version = "0.5.1" 1628 + source = "registry+https://github.com/rust-lang/crates.io-index" 1629 + checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 1630 + dependencies = [ 1631 + "bitflags 2.5.0", 1632 + ] 1633 + 1634 + [[package]] 1491 1635 name = "regex" 1492 - version = "1.10.3" 1636 + version = "1.10.4" 1493 1637 source = "registry+https://github.com/rust-lang/crates.io-index" 1494 - checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 1638 + checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 1495 1639 dependencies = [ 1496 1640 "aho-corasick", 1497 1641 "memchr", ··· 1501 1645 1502 1646 [[package]] 1503 1647 name = "regex-automata" 1504 - version = "0.4.5" 1648 + version = "0.4.6" 1505 1649 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 1650 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 1507 1651 dependencies = [ 1508 1652 "aho-corasick", 1509 1653 "memchr", ··· 1512 1656 1513 1657 [[package]] 1514 1658 name = "regex-syntax" 1515 - version = "0.8.2" 1659 + version = "0.8.3" 1516 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1517 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 1661 + checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 1518 1662 1519 1663 [[package]] 1520 1664 name = "reword" ··· 1527 1671 1528 1672 [[package]] 1529 1673 name = "rfc2047-decoder" 1530 - version = "0.2.2" 1674 + version = "1.0.5" 1531 1675 source = "registry+https://github.com/rust-lang/crates.io-index" 1532 - checksum = "61fc4b4e52897c3e30b12b7e9b04461215b647fbe66f6def60dd8edbce14ec2e" 1676 + checksum = "e90a668c463c412c3118ae1883e18b53d812c349f5af7a06de3ba4bb0c17cc73" 1533 1677 dependencies = [ 1534 1678 "base64 0.21.7", 1535 1679 "charset", 1536 1680 "chumsky", 1537 1681 "memchr", 1538 - "quoted_printable 0.4.8", 1682 + "quoted_printable", 1539 1683 "thiserror", 1540 1684 ] 1541 1685 1542 1686 [[package]] 1543 1687 name = "ring" 1544 - version = "0.17.7" 1688 + version = "0.17.8" 1545 1689 source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 1690 + checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 1547 1691 dependencies = [ 1548 1692 "cc", 1693 + "cfg-if", 1549 1694 "getrandom", 1550 1695 "libc", 1551 1696 "spin", 1552 1697 "untrusted", 1553 - "windows-sys 0.48.0", 1698 + "windows-sys 0.52.0", 1554 1699 ] 1555 1700 1556 1701 [[package]] 1557 1702 name = "rust-embed" 1558 - version = "8.3.0" 1703 + version = "8.4.0" 1559 1704 source = "registry+https://github.com/rust-lang/crates.io-index" 1560 - checksum = "fb78f46d0066053d16d4ca7b898e9343bc3530f71c61d5ad84cd404ada068745" 1705 + checksum = "19549741604902eb99a7ed0ee177a0663ee1eda51a29f71401f166e47e77806a" 1561 1706 dependencies = [ 1562 1707 "rust-embed-impl", 1563 1708 "rust-embed-utils", ··· 1566 1711 1567 1712 [[package]] 1568 1713 name = "rust-embed-impl" 1569 - version = "8.3.0" 1714 + version = "8.4.0" 1570 1715 source = "registry+https://github.com/rust-lang/crates.io-index" 1571 - checksum = "b91ac2a3c6c0520a3fb3dd89321177c3c692937c4eb21893378219da10c44fc8" 1716 + checksum = "cb9f96e283ec64401f30d3df8ee2aaeb2561f34c824381efa24a35f79bf40ee4" 1572 1717 dependencies = [ 1573 1718 "proc-macro2", 1574 1719 "quote", 1575 1720 "rust-embed-utils", 1576 - "syn 2.0.48", 1721 + "syn 2.0.65", 1577 1722 "walkdir", 1578 1723 ] 1579 1724 1580 1725 [[package]] 1581 1726 name = "rust-embed-utils" 1582 - version = "8.3.0" 1727 + version = "8.4.0" 1583 1728 source = "registry+https://github.com/rust-lang/crates.io-index" 1584 - checksum = "86f69089032567ffff4eada41c573fc43ff466c7db7c5688b2e7969584345581" 1729 + checksum = "38c74a686185620830701348de757fd36bef4aa9680fd23c49fc539ddcc1af32" 1585 1730 dependencies = [ 1586 1731 "sha2", 1587 1732 "walkdir", ··· 1589 1734 1590 1735 [[package]] 1591 1736 name = "rustc-demangle" 1592 - version = "0.1.23" 1737 + version = "0.1.24" 1593 1738 source = "registry+https://github.com/rust-lang/crates.io-index" 1594 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1739 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1595 1740 1596 1741 [[package]] 1597 1742 name = "rustc-hash" ··· 1610 1755 1611 1756 [[package]] 1612 1757 name = "rustix" 1613 - version = "0.38.31" 1758 + version = "0.38.34" 1614 1759 source = "registry+https://github.com/rust-lang/crates.io-index" 1615 - checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 1760 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1616 1761 dependencies = [ 1617 - "bitflags 2.4.2", 1762 + "bitflags 2.5.0", 1618 1763 "errno", 1619 1764 "libc", 1620 1765 "linux-raw-sys", ··· 1623 1768 1624 1769 [[package]] 1625 1770 name = "rustls" 1626 - version = "0.21.10" 1771 + version = "0.22.4" 1627 1772 source = "registry+https://github.com/rust-lang/crates.io-index" 1628 - checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 1773 + checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 1629 1774 dependencies = [ 1630 1775 "log", 1631 1776 "ring", 1777 + "rustls-pki-types", 1632 1778 "rustls-webpki", 1633 - "sct", 1779 + "subtle", 1780 + "zeroize", 1634 1781 ] 1782 + 1783 + [[package]] 1784 + name = "rustls-pki-types" 1785 + version = "1.7.0" 1786 + source = "registry+https://github.com/rust-lang/crates.io-index" 1787 + checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 1635 1788 1636 1789 [[package]] 1637 1790 name = "rustls-webpki" 1638 - version = "0.101.7" 1791 + version = "0.102.4" 1639 1792 source = "registry+https://github.com/rust-lang/crates.io-index" 1640 - checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 1793 + checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" 1641 1794 dependencies = [ 1642 1795 "ring", 1796 + "rustls-pki-types", 1643 1797 "untrusted", 1644 1798 ] 1645 1799 1646 1800 [[package]] 1647 1801 name = "rye" 1648 - version = "0.33.0" 1802 + version = "0.34.0" 1649 1803 dependencies = [ 1650 1804 "age", 1651 1805 "anyhow", 1652 1806 "bzip2", 1653 1807 "clap", 1654 1808 "clap_complete", 1809 + "clap_complete_nushell", 1655 1810 "configparser", 1656 1811 "console", 1657 1812 "ctrlc", ··· 1687 1842 "static_vcruntime", 1688 1843 "tar", 1689 1844 "tempfile", 1690 - "toml_edit 0.22.9", 1845 + "toml_edit", 1691 1846 "url", 1692 1847 "walkdir", 1693 1848 "which", 1694 1849 "winapi", 1695 1850 "winreg", 1696 1851 "xattr", 1697 - "zip", 1852 + "zip 0.6.6", 1698 1853 "zstd", 1699 1854 ] 1700 1855 1701 1856 [[package]] 1702 1857 name = "ryu" 1703 - version = "1.0.16" 1858 + version = "1.0.18" 1704 1859 source = "registry+https://github.com/rust-lang/crates.io-index" 1705 - checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 1860 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1706 1861 1707 1862 [[package]] 1708 1863 name = "salsa20" ··· 1749 1904 ] 1750 1905 1751 1906 [[package]] 1752 - name = "sct" 1753 - version = "0.7.1" 1754 - source = "registry+https://github.com/rust-lang/crates.io-index" 1755 - checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 1756 - dependencies = [ 1757 - "ring", 1758 - "untrusted", 1759 - ] 1760 - 1761 - [[package]] 1762 1907 name = "secrecy" 1763 1908 version = "0.8.0" 1764 1909 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1784 1929 source = "registry+https://github.com/rust-lang/crates.io-index" 1785 1930 checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d" 1786 1931 dependencies = [ 1787 - "self_cell 1.0.3", 1932 + "self_cell 1.0.4", 1788 1933 ] 1789 1934 1790 1935 [[package]] 1791 1936 name = "self_cell" 1792 - version = "1.0.3" 1937 + version = "1.0.4" 1793 1938 source = "registry+https://github.com/rust-lang/crates.io-index" 1794 - checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba" 1939 + checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a" 1795 1940 1796 1941 [[package]] 1797 1942 name = "semver" 1798 - version = "1.0.22" 1943 + version = "1.0.23" 1799 1944 source = "registry+https://github.com/rust-lang/crates.io-index" 1800 - checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 1945 + checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 1801 1946 1802 1947 [[package]] 1803 1948 name = "serde" 1804 - version = "1.0.196" 1949 + version = "1.0.202" 1805 1950 source = "registry+https://github.com/rust-lang/crates.io-index" 1806 - checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 1951 + checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395" 1807 1952 dependencies = [ 1808 1953 "serde_derive", 1809 1954 ] 1810 1955 1811 1956 [[package]] 1812 1957 name = "serde_derive" 1813 - version = "1.0.196" 1958 + version = "1.0.202" 1814 1959 source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 1960 + checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838" 1816 1961 dependencies = [ 1817 1962 "proc-macro2", 1818 1963 "quote", 1819 - "syn 2.0.48", 1964 + "syn 2.0.65", 1820 1965 ] 1821 1966 1822 1967 [[package]] 1823 1968 name = "serde_json" 1824 - version = "1.0.113" 1969 + version = "1.0.117" 1825 1970 source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 1971 + checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 1827 1972 dependencies = [ 1828 1973 "itoa", 1829 1974 "ryu", ··· 1832 1977 1833 1978 [[package]] 1834 1979 name = "serde_spanned" 1835 - version = "0.6.5" 1980 + version = "0.6.6" 1836 1981 source = "registry+https://github.com/rust-lang/crates.io-index" 1837 - checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 1982 + checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 1838 1983 dependencies = [ 1839 1984 "serde", 1840 1985 ] ··· 1864 2009 1865 2010 [[package]] 1866 2011 name = "similar" 1867 - version = "2.4.0" 2012 + version = "2.5.0" 1868 2013 source = "registry+https://github.com/rust-lang/crates.io-index" 1869 - checksum = "32fea41aca09ee824cc9724996433064c89f7777e60762749a4170a14abbfa21" 2014 + checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" 2015 + 2016 + [[package]] 2017 + name = "slab" 2018 + version = "0.4.9" 2019 + source = "registry+https://github.com/rust-lang/crates.io-index" 2020 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2021 + dependencies = [ 2022 + "autocfg", 2023 + ] 1870 2024 1871 2025 [[package]] 1872 2026 name = "slug" ··· 1880 2034 1881 2035 [[package]] 1882 2036 name = "smallvec" 1883 - version = "1.13.1" 2037 + version = "1.13.2" 1884 2038 source = "registry+https://github.com/rust-lang/crates.io-index" 1885 - checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 2039 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1886 2040 1887 2041 [[package]] 1888 2042 name = "socket2" 1889 - version = "0.4.10" 2043 + version = "0.5.7" 1890 2044 source = "registry+https://github.com/rust-lang/crates.io-index" 1891 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2045 + checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1892 2046 dependencies = [ 1893 2047 "libc", 1894 - "winapi", 2048 + "windows-sys 0.52.0", 1895 2049 ] 1896 2050 1897 2051 [[package]] ··· 1943 2097 1944 2098 [[package]] 1945 2099 name = "syn" 1946 - version = "2.0.48" 2100 + version = "2.0.65" 1947 2101 source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 2102 + checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106" 1949 2103 dependencies = [ 1950 2104 "proc-macro2", 1951 2105 "quote", ··· 1965 2119 1966 2120 [[package]] 1967 2121 name = "target-lexicon" 1968 - version = "0.12.13" 2122 + version = "0.12.14" 1969 2123 source = "registry+https://github.com/rust-lang/crates.io-index" 1970 - checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" 2124 + checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 1971 2125 1972 2126 [[package]] 1973 2127 name = "tempfile" 1974 - version = "3.9.0" 2128 + version = "3.10.1" 1975 2129 source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 2130 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 1977 2131 dependencies = [ 1978 2132 "cfg-if", 1979 - "fastrand 2.0.1", 1980 - "redox_syscall", 2133 + "fastrand 2.1.0", 1981 2134 "rustix", 1982 2135 "windows-sys 0.52.0", 1983 2136 ] ··· 1994 2147 1995 2148 [[package]] 1996 2149 name = "thiserror" 1997 - version = "1.0.56" 2150 + version = "1.0.61" 1998 2151 source = "registry+https://github.com/rust-lang/crates.io-index" 1999 - checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 2152 + checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 2000 2153 dependencies = [ 2001 2154 "thiserror-impl", 2002 2155 ] 2003 2156 2004 2157 [[package]] 2005 2158 name = "thiserror-impl" 2006 - version = "1.0.56" 2159 + version = "1.0.61" 2007 2160 source = "registry+https://github.com/rust-lang/crates.io-index" 2008 - checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 2161 + checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 2009 2162 dependencies = [ 2010 2163 "proc-macro2", 2011 2164 "quote", 2012 - "syn 2.0.48", 2165 + "syn 2.0.65", 2013 2166 ] 2014 2167 2015 2168 [[package]] 2016 2169 name = "time" 2017 - version = "0.3.34" 2170 + version = "0.3.36" 2018 2171 source = "registry+https://github.com/rust-lang/crates.io-index" 2019 - checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 2172 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2020 2173 dependencies = [ 2021 2174 "deranged", 2022 2175 "itoa", ··· 2035 2188 2036 2189 [[package]] 2037 2190 name = "time-macros" 2038 - version = "0.2.17" 2191 + version = "0.2.18" 2039 2192 source = "registry+https://github.com/rust-lang/crates.io-index" 2040 - checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 2193 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2041 2194 dependencies = [ 2042 2195 "num-conv", 2043 2196 "time-core", ··· 2078 2231 2079 2232 [[package]] 2080 2233 name = "toml" 2081 - version = "0.8.9" 2234 + version = "0.8.13" 2082 2235 source = "registry+https://github.com/rust-lang/crates.io-index" 2083 - checksum = "c6a4b9e8023eb94392d3dca65d717c53abc5dad49c07cb65bb8fcd87115fa325" 2236 + checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba" 2084 2237 dependencies = [ 2085 2238 "serde", 2086 2239 "serde_spanned", 2087 2240 "toml_datetime", 2088 - "toml_edit 0.21.1", 2241 + "toml_edit", 2089 2242 ] 2090 2243 2091 2244 [[package]] 2092 2245 name = "toml_datetime" 2093 - version = "0.6.5" 2246 + version = "0.6.6" 2094 2247 source = "registry+https://github.com/rust-lang/crates.io-index" 2095 - checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 2248 + checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 2096 2249 dependencies = [ 2097 2250 "serde", 2098 2251 ] 2099 2252 2100 2253 [[package]] 2101 2254 name = "toml_edit" 2102 - version = "0.21.1" 2255 + version = "0.22.13" 2103 2256 source = "registry+https://github.com/rust-lang/crates.io-index" 2104 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 2257 + checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" 2105 2258 dependencies = [ 2106 2259 "indexmap", 2107 2260 "serde", 2108 2261 "serde_spanned", 2109 2262 "toml_datetime", 2110 - "winnow 0.5.37", 2111 - ] 2112 - 2113 - [[package]] 2114 - name = "toml_edit" 2115 - version = "0.22.9" 2116 - source = "registry+https://github.com/rust-lang/crates.io-index" 2117 - checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" 2118 - dependencies = [ 2119 - "indexmap", 2120 - "toml_datetime", 2121 - "winnow 0.6.5", 2263 + "winnow", 2122 2264 ] 2123 2265 2124 2266 [[package]] ··· 2141 2283 dependencies = [ 2142 2284 "proc-macro2", 2143 2285 "quote", 2144 - "syn 2.0.48", 2286 + "syn 2.0.65", 2145 2287 ] 2146 2288 2147 2289 [[package]] ··· 2155 2297 2156 2298 [[package]] 2157 2299 name = "type-map" 2158 - version = "0.4.0" 2300 + version = "0.5.0" 2159 2301 source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" 2302 + checksum = "deb68604048ff8fa93347f02441e4487594adc20bb8a084f9e564d2b827a0a9f" 2161 2303 dependencies = [ 2162 2304 "rustc-hash", 2163 2305 ] ··· 2170 2312 2171 2313 [[package]] 2172 2314 name = "unic-langid" 2173 - version = "0.9.4" 2315 + version = "0.9.5" 2174 2316 source = "registry+https://github.com/rust-lang/crates.io-index" 2175 - checksum = "238722e6d794ed130f91f4ea33e01fcff4f188d92337a21297892521c72df516" 2317 + checksum = "23dd9d1e72a73b25e07123a80776aae3e7b0ec461ef94f9151eed6ec88005a44" 2176 2318 dependencies = [ 2177 2319 "unic-langid-impl", 2178 2320 ] 2179 2321 2180 2322 [[package]] 2181 2323 name = "unic-langid-impl" 2182 - version = "0.9.4" 2324 + version = "0.9.5" 2183 2325 source = "registry+https://github.com/rust-lang/crates.io-index" 2184 - checksum = "4bd55a2063fdea4ef1f8633243a7b0524cbeef1905ae04c31a1c9b9775c55bc6" 2326 + checksum = "0a5422c1f65949306c99240b81de9f3f15929f5a8bfe05bb44b034cc8bf593e5" 2185 2327 dependencies = [ 2186 2328 "serde", 2187 2329 "tinystr", ··· 2201 2343 2202 2344 [[package]] 2203 2345 name = "unicode-normalization" 2204 - version = "0.1.22" 2346 + version = "0.1.23" 2205 2347 source = "registry+https://github.com/rust-lang/crates.io-index" 2206 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2348 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 2207 2349 dependencies = [ 2208 2350 "tinyvec", 2209 2351 ] 2210 2352 2211 2353 [[package]] 2212 2354 name = "unicode-segmentation" 2213 - version = "1.10.1" 2355 + version = "1.11.0" 2214 2356 source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2357 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 2216 2358 2217 2359 [[package]] 2218 2360 name = "unicode-width" 2219 - version = "0.1.11" 2361 + version = "0.1.12" 2220 2362 source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 2363 + checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" 2222 2364 2223 2365 [[package]] 2224 2366 name = "universal-hash" ··· 2244 2386 2245 2387 [[package]] 2246 2388 name = "ureq" 2247 - version = "2.9.1" 2389 + version = "2.9.7" 2248 2390 source = "registry+https://github.com/rust-lang/crates.io-index" 2249 - checksum = "f8cdd25c339e200129fe4de81451814e5228c9b771d57378817d6117cc2b3f97" 2391 + checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd" 2250 2392 dependencies = [ 2251 - "base64 0.21.7", 2393 + "base64 0.22.1", 2252 2394 "flate2", 2253 2395 "log", 2254 2396 "once_cell", 2255 2397 "rustls", 2398 + "rustls-pki-types", 2256 2399 "rustls-webpki", 2257 2400 "serde", 2258 2401 "serde_json", ··· 2286 2429 2287 2430 [[package]] 2288 2431 name = "walkdir" 2289 - version = "2.4.0" 2432 + version = "2.5.0" 2290 2433 source = "registry+https://github.com/rust-lang/crates.io-index" 2291 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 2434 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 2292 2435 dependencies = [ 2293 2436 "same-file", 2294 2437 "winapi-util", ··· 2302 2445 2303 2446 [[package]] 2304 2447 name = "wasm-bindgen" 2305 - version = "0.2.90" 2448 + version = "0.2.92" 2306 2449 source = "registry+https://github.com/rust-lang/crates.io-index" 2307 - checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 2450 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 2308 2451 dependencies = [ 2309 2452 "cfg-if", 2310 2453 "wasm-bindgen-macro", ··· 2312 2455 2313 2456 [[package]] 2314 2457 name = "wasm-bindgen-backend" 2315 - version = "0.2.90" 2458 + version = "0.2.92" 2316 2459 source = "registry+https://github.com/rust-lang/crates.io-index" 2317 - checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 2460 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 2318 2461 dependencies = [ 2319 2462 "bumpalo", 2320 2463 "log", 2321 2464 "once_cell", 2322 2465 "proc-macro2", 2323 2466 "quote", 2324 - "syn 2.0.48", 2467 + "syn 2.0.65", 2325 2468 "wasm-bindgen-shared", 2326 2469 ] 2327 2470 2328 2471 [[package]] 2329 2472 name = "wasm-bindgen-macro" 2330 - version = "0.2.90" 2473 + version = "0.2.92" 2331 2474 source = "registry+https://github.com/rust-lang/crates.io-index" 2332 - checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 2475 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 2333 2476 dependencies = [ 2334 2477 "quote", 2335 2478 "wasm-bindgen-macro-support", ··· 2337 2480 2338 2481 [[package]] 2339 2482 name = "wasm-bindgen-macro-support" 2340 - version = "0.2.90" 2483 + version = "0.2.92" 2341 2484 source = "registry+https://github.com/rust-lang/crates.io-index" 2342 - checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 2485 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 2343 2486 dependencies = [ 2344 2487 "proc-macro2", 2345 2488 "quote", 2346 - "syn 2.0.48", 2489 + "syn 2.0.65", 2347 2490 "wasm-bindgen-backend", 2348 2491 "wasm-bindgen-shared", 2349 2492 ] 2350 2493 2351 2494 [[package]] 2352 2495 name = "wasm-bindgen-shared" 2353 - version = "0.2.90" 2496 + version = "0.2.92" 2354 2497 source = "registry+https://github.com/rust-lang/crates.io-index" 2355 - checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 2498 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 2356 2499 2357 2500 [[package]] 2358 2501 name = "webpki-roots" 2359 - version = "0.25.4" 2502 + version = "0.26.1" 2360 2503 source = "registry+https://github.com/rust-lang/crates.io-index" 2361 - checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 2504 + checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" 2505 + dependencies = [ 2506 + "rustls-pki-types", 2507 + ] 2362 2508 2363 2509 [[package]] 2364 2510 name = "which" 2365 - version = "6.0.0" 2511 + version = "6.0.1" 2366 2512 source = "registry+https://github.com/rust-lang/crates.io-index" 2367 - checksum = "7fa5e0c10bf77f44aac573e498d1a82d5fbd5e91f6fc0a99e7be4b38e85e101c" 2513 + checksum = "8211e4f58a2b2805adfbefbc07bab82958fc91e3836339b1ab7ae32465dce0d7" 2368 2514 dependencies = [ 2369 2515 "either", 2370 2516 "home", 2371 - "once_cell", 2372 2517 "rustix", 2373 - "windows-sys 0.52.0", 2518 + "winsafe", 2374 2519 ] 2375 2520 2376 2521 [[package]] ··· 2391 2536 2392 2537 [[package]] 2393 2538 name = "winapi-util" 2394 - version = "0.1.6" 2539 + version = "0.1.8" 2395 2540 source = "registry+https://github.com/rust-lang/crates.io-index" 2396 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 2541 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 2397 2542 dependencies = [ 2398 - "winapi", 2543 + "windows-sys 0.52.0", 2399 2544 ] 2400 2545 2401 2546 [[package]] ··· 2419 2564 source = "registry+https://github.com/rust-lang/crates.io-index" 2420 2565 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2421 2566 dependencies = [ 2422 - "windows-targets 0.52.0", 2567 + "windows-targets 0.52.5", 2423 2568 ] 2424 2569 2425 2570 [[package]] ··· 2439 2584 2440 2585 [[package]] 2441 2586 name = "windows-targets" 2442 - version = "0.52.0" 2587 + version = "0.52.5" 2443 2588 source = "registry+https://github.com/rust-lang/crates.io-index" 2444 - checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 2589 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 2445 2590 dependencies = [ 2446 - "windows_aarch64_gnullvm 0.52.0", 2447 - "windows_aarch64_msvc 0.52.0", 2448 - "windows_i686_gnu 0.52.0", 2449 - "windows_i686_msvc 0.52.0", 2450 - "windows_x86_64_gnu 0.52.0", 2451 - "windows_x86_64_gnullvm 0.52.0", 2452 - "windows_x86_64_msvc 0.52.0", 2591 + "windows_aarch64_gnullvm 0.52.5", 2592 + "windows_aarch64_msvc 0.52.5", 2593 + "windows_i686_gnu 0.52.5", 2594 + "windows_i686_gnullvm", 2595 + "windows_i686_msvc 0.52.5", 2596 + "windows_x86_64_gnu 0.52.5", 2597 + "windows_x86_64_gnullvm 0.52.5", 2598 + "windows_x86_64_msvc 0.52.5", 2453 2599 ] 2454 2600 2455 2601 [[package]] ··· 2460 2606 2461 2607 [[package]] 2462 2608 name = "windows_aarch64_gnullvm" 2463 - version = "0.52.0" 2609 + version = "0.52.5" 2464 2610 source = "registry+https://github.com/rust-lang/crates.io-index" 2465 - checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 2611 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 2466 2612 2467 2613 [[package]] 2468 2614 name = "windows_aarch64_msvc" ··· 2472 2618 2473 2619 [[package]] 2474 2620 name = "windows_aarch64_msvc" 2475 - version = "0.52.0" 2621 + version = "0.52.5" 2476 2622 source = "registry+https://github.com/rust-lang/crates.io-index" 2477 - checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 2623 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 2478 2624 2479 2625 [[package]] 2480 2626 name = "windows_i686_gnu" ··· 2484 2630 2485 2631 [[package]] 2486 2632 name = "windows_i686_gnu" 2487 - version = "0.52.0" 2633 + version = "0.52.5" 2488 2634 source = "registry+https://github.com/rust-lang/crates.io-index" 2489 - checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 2635 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 2636 + 2637 + [[package]] 2638 + name = "windows_i686_gnullvm" 2639 + version = "0.52.5" 2640 + source = "registry+https://github.com/rust-lang/crates.io-index" 2641 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 2490 2642 2491 2643 [[package]] 2492 2644 name = "windows_i686_msvc" ··· 2496 2648 2497 2649 [[package]] 2498 2650 name = "windows_i686_msvc" 2499 - version = "0.52.0" 2651 + version = "0.52.5" 2500 2652 source = "registry+https://github.com/rust-lang/crates.io-index" 2501 - checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 2653 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 2502 2654 2503 2655 [[package]] 2504 2656 name = "windows_x86_64_gnu" ··· 2508 2660 2509 2661 [[package]] 2510 2662 name = "windows_x86_64_gnu" 2511 - version = "0.52.0" 2663 + version = "0.52.5" 2512 2664 source = "registry+https://github.com/rust-lang/crates.io-index" 2513 - checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 2665 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 2514 2666 2515 2667 [[package]] 2516 2668 name = "windows_x86_64_gnullvm" ··· 2520 2672 2521 2673 [[package]] 2522 2674 name = "windows_x86_64_gnullvm" 2523 - version = "0.52.0" 2675 + version = "0.52.5" 2524 2676 source = "registry+https://github.com/rust-lang/crates.io-index" 2525 - checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 2677 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 2526 2678 2527 2679 [[package]] 2528 2680 name = "windows_x86_64_msvc" ··· 2532 2684 2533 2685 [[package]] 2534 2686 name = "windows_x86_64_msvc" 2535 - version = "0.52.0" 2687 + version = "0.52.5" 2536 2688 source = "registry+https://github.com/rust-lang/crates.io-index" 2537 - checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 2689 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 2538 2690 2539 2691 [[package]] 2540 2692 name = "winnow" 2541 - version = "0.5.37" 2693 + version = "0.6.8" 2542 2694 source = "registry+https://github.com/rust-lang/crates.io-index" 2543 - checksum = "a7cad8365489051ae9f054164e459304af2e7e9bb407c958076c8bf4aef52da5" 2544 - dependencies = [ 2545 - "memchr", 2546 - ] 2547 - 2548 - [[package]] 2549 - name = "winnow" 2550 - version = "0.6.5" 2551 - source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" 2695 + checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d" 2553 2696 dependencies = [ 2554 2697 "memchr", 2555 2698 ] ··· 2565 2708 ] 2566 2709 2567 2710 [[package]] 2711 + name = "winsafe" 2712 + version = "0.0.19" 2713 + source = "registry+https://github.com/rust-lang/crates.io-index" 2714 + checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" 2715 + 2716 + [[package]] 2568 2717 name = "x25519-dalek" 2569 2718 version = "2.0.1" 2570 2719 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2588 2737 ] 2589 2738 2590 2739 [[package]] 2591 - name = "yaml-rust" 2592 - version = "0.4.5" 2593 - source = "registry+https://github.com/rust-lang/crates.io-index" 2594 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 2595 - dependencies = [ 2596 - "linked-hash-map", 2597 - ] 2598 - 2599 - [[package]] 2600 2740 name = "zerocopy" 2601 - version = "0.7.32" 2741 + version = "0.7.34" 2602 2742 source = "registry+https://github.com/rust-lang/crates.io-index" 2603 - checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 2743 + checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087" 2604 2744 dependencies = [ 2605 2745 "zerocopy-derive", 2606 2746 ] 2607 2747 2608 2748 [[package]] 2609 2749 name = "zerocopy-derive" 2610 - version = "0.7.32" 2750 + version = "0.7.34" 2611 2751 source = "registry+https://github.com/rust-lang/crates.io-index" 2612 - checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 2752 + checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b" 2613 2753 dependencies = [ 2614 2754 "proc-macro2", 2615 2755 "quote", 2616 - "syn 2.0.48", 2756 + "syn 2.0.65", 2617 2757 ] 2618 2758 2619 2759 [[package]] ··· 2633 2773 dependencies = [ 2634 2774 "proc-macro2", 2635 2775 "quote", 2636 - "syn 2.0.48", 2776 + "syn 2.0.65", 2637 2777 ] 2638 2778 2639 2779 [[package]] ··· 2643 2783 checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 2644 2784 dependencies = [ 2645 2785 "byteorder", 2786 + "crc32fast", 2787 + "crossbeam-utils", 2788 + "flate2", 2789 + ] 2790 + 2791 + [[package]] 2792 + name = "zip" 2793 + version = "1.3.0" 2794 + source = "registry+https://github.com/rust-lang/crates.io-index" 2795 + checksum = "f1f4a27345eb6f7aa7bd015ba7eb4175fa4e1b462a29874b779e0bbcf96c6ac7" 2796 + dependencies = [ 2797 + "arbitrary", 2646 2798 "bzip2", 2647 2799 "crc32fast", 2648 2800 "crossbeam-utils", 2801 + "displaydoc", 2649 2802 "flate2", 2803 + "indexmap", 2804 + "thiserror", 2650 2805 "time", 2651 2806 ] 2652 2807 2653 2808 [[package]] 2654 2809 name = "zstd" 2655 - version = "0.13.0" 2810 + version = "0.13.1" 2656 2811 source = "registry+https://github.com/rust-lang/crates.io-index" 2657 - checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 2812 + checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a" 2658 2813 dependencies = [ 2659 2814 "zstd-safe", 2660 2815 ] 2661 2816 2662 2817 [[package]] 2663 2818 name = "zstd-safe" 2664 - version = "7.0.0" 2819 + version = "7.1.0" 2665 2820 source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e" 2821 + checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" 2667 2822 dependencies = [ 2668 2823 "zstd-sys", 2669 2824 ] 2670 2825 2671 2826 [[package]] 2672 2827 name = "zstd-sys" 2673 - version = "2.0.9+zstd.1.5.5" 2828 + version = "2.0.10+zstd.1.5.6" 2674 2829 source = "registry+https://github.com/rust-lang/crates.io-index" 2675 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 2830 + checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" 2676 2831 dependencies = [ 2677 2832 "cc", 2678 2833 "pkg-config",
+2 -2
pkgs/development/tools/rye/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "rye"; 15 - version = "0.33.0"; 15 + version = "0.34.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "mitsuhiko"; 19 19 repo = "rye"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-sgA+Tp4Qysd07+1iNDgn9Hw0nDN8l6/fD41rE5QqWzY="; 21 + hash = "sha256-M5TJXyh1fNigHOuBpEpnUeOWboZWxZ9bGrBuMB1oHgE="; 22 22 }; 23 23 24 24 cargoLock = {
+28 -8
pkgs/development/web/flyctl/default.nix
··· 1 - { lib, buildGo122Module, fetchFromGitHub, testers, flyctl, installShellFiles }: 1 + { lib, buildGoModule, fetchFromGitHub, testers, flyctl, installShellFiles, gitUpdater }: 2 2 3 - buildGo122Module rec { 3 + buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.2.52"; 5 + version = "0.2.55"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - hash = "sha256-BCnMXyS94tuD+Un1DLqs3mdGi7XrVBoZGJ/XkpACOQI"; 11 + hash = "sha256-yCRaF600UrDmazsgTRp/grWtkULeSQedE5m69K6h/4Q="; 12 12 }; 13 13 14 - vendorHash = "sha256-eTiY65VGFBgGzCOrnp/WbOo9Lbdk4PYwT7CppjsZ4WE="; 14 + vendorHash = "sha256-1hlWyr41t8J4naN5QbEtfCv3npe/kvMH5NKKaxYvLYk="; 15 15 16 16 subPackages = [ "." ]; 17 17 ··· 34 34 HOME=$(mktemp -d) 35 35 ''; 36 36 37 - postCheck = '' 38 - go test ./... -ldflags="-X 'github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z'" 37 + checkFlags = [ 38 + # these tests require network 39 + "-skip=TestToTestMachineConfig" 40 + ]; 41 + 42 + # We override checkPhase to be able to test ./... while using subPackages 43 + checkPhase = '' 44 + runHook preCheck 45 + # We do not set trimpath for tests, in case they reference test assets 46 + export GOFLAGS=''${GOFLAGS//-trimpath/} 47 + 48 + buildGoDir test ./... 49 + 50 + runHook postCheck 39 51 ''; 40 52 41 53 postInstall = '' ··· 46 58 ln -s $out/bin/flyctl $out/bin/fly 47 59 ''; 48 60 61 + # Upstream tags every PR merged with release tags like 62 + # v2024.5.20-pr3545.4. We ignore all revisions containing a '-' 63 + # to skip these releases. 64 + passthru.updateScript = gitUpdater { 65 + rev-prefix = "v"; 66 + ignoredVersions = "-"; 67 + }; 68 + 49 69 passthru.tests.version = testers.testVersion { 50 70 package = flyctl; 51 71 command = "HOME=$(mktemp -d) flyctl version"; ··· 57 77 downloadPage = "https://github.com/superfly/flyctl"; 58 78 homepage = "https://fly.io/"; 59 79 license = lib.licenses.asl20; 60 - maintainers = with lib.maintainers; [ adtya jsierles techknowlogick ]; 80 + maintainers = with lib.maintainers; [ adtya jsierles techknowlogick RaghavSood ]; 61 81 mainProgram = "flyctl"; 62 82 }; 63 83 }
+3 -3
pkgs/misc/fastly/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "fastly"; 13 - version = "10.9.0"; 13 + version = "10.10.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "fastly"; 17 17 repo = "cli"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-KdgloTp/mlkPJpjqYJk4Wa7fhgIuwFpAkeIKNxwTfFk="; 19 + hash = "sha256-InuaitDoSuE091PG5OwSo/DNplitpIcOgZQ4Dcyz2iI="; 20 20 # The git commit is part of the `fastly version` original output; 21 21 # leave that output the same in nixpkgs. Use the `.git` directory 22 22 # to retrieve the commit SHA, and remove the directory afterwards, ··· 33 33 "cmd/fastly" 34 34 ]; 35 35 36 - vendorHash = "sha256-gjk+igFRVauDRC44YrZUB6uDNAfqnjDcqDPcAWUBhkc="; 36 + vendorHash = "sha256-Tt+Be5zsngQokC18cvQ+r5EU1h8FXQ7kfzbRFBse5TQ="; 37 37 38 38 nativeBuildInputs = [ 39 39 installShellFiles
+2 -2
pkgs/servers/tailscale/default.nix
··· 12 12 }: 13 13 14 14 let 15 - version = "1.66.3"; 15 + version = "1.66.4"; 16 16 in 17 17 buildGoModule { 18 18 pname = "tailscale"; ··· 22 22 owner = "tailscale"; 23 23 repo = "tailscale"; 24 24 rev = "v${version}"; 25 - hash = "sha256-dFyXOoN4YZfN3G1XfHK1/8M1ROwW9Q9eCl/NjTdfD4Q="; 25 + hash = "sha256-ETBca3qKO2iS30teIF5sr/oyJdRSKFqLFVO3+mmm7bo="; 26 26 }; 27 27 vendorHash = "sha256-Hd77xy8stw0Y6sfk3/ItqRIbM/349M/4uf0iNy1xJGw="; 28 28
+4 -2
pkgs/tools/audio/liquidsoap/full.nix
··· 21 21 22 22 postPatch = '' 23 23 substituteInPlace src/lang/dune \ 24 - --replace "(run git rev-parse --short HEAD)" "(run echo -n nixpkgs)" 24 + --replace-warn "(run git rev-parse --short HEAD)" "(run echo -n nixpkgs)" 25 25 ''; 26 26 27 27 dontConfigure = true; ··· 72 72 ocamlPackages.duppy 73 73 ocamlPackages.mm 74 74 ocamlPackages.ocurl 75 + ocamlPackages.ocaml_pcre 75 76 ocamlPackages.cry 76 77 ocamlPackages.camomile 77 78 ocamlPackages.uri ··· 98 99 ocamlPackages.fdkaac 99 100 ocamlPackages.flac 100 101 ocamlPackages.frei0r 101 - ocamlPackages.gd4o 102 + ocamlPackages.gd 102 103 ocamlPackages.graphics 104 + # ocamlPackages.gstreamer # Broken but advertised feature 103 105 ocamlPackages.imagelib 104 106 ocamlPackages.inotify 105 107 ocamlPackages.ladspa
+3 -3
pkgs/tools/networking/croc/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "croc"; 5 - version = "9.6.15"; 5 + version = "9.6.16"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "schollz"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-sRRL2+LgWowUFSiTHZudJqX404y36cko1i3WFd6kGV4="; 11 + sha256 = "sha256-rAOWiu0f9f1v1oD5HI/kl1knoHkU2LgS3D2qsdd98y4="; 12 12 }; 13 13 14 - vendorHash = "sha256-VELBEnWdPfznlBdAdnHWyWZngPBQ+INNr+xfNQMw8yk="; 14 + vendorHash = "sha256-SxdN1IyQd/DLI8ZXyCWsW3JLi4dlGSvpr+ub/Oqkw70="; 15 15 16 16 subPackages = [ "." ]; 17 17
+22 -20
pkgs/tools/wayland/slurp/default.nix pkgs/by-name/sl/slurp/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , cairo 5 - , libxkbcommon 6 - , meson 7 - , ninja 8 - , pkg-config 9 - , scdoc 10 - , wayland 11 - , wayland-protocols 12 - , wayland-scanner 13 - , buildDocs ? true 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cairo, 6 + libxkbcommon, 7 + meson, 8 + ninja, 9 + pkg-config, 10 + scdoc, 11 + wayland, 12 + wayland-protocols, 13 + wayland-scanner, 14 + buildDocs ? true, 14 15 }: 15 16 16 17 stdenv.mkDerivation (finalAttrs: { ··· 24 25 hash = "sha256-2M8f3kN6tihwKlUCp2Qowv5xD6Ufb71AURXqwQShlXI="; 25 26 }; 26 27 27 - depsBuildBuild = [ 28 - pkg-config 29 - ]; 28 + depsBuildBuild = [ pkg-config ]; 30 29 31 30 nativeBuildInputs = [ 32 31 meson ··· 46 45 47 46 mesonFlags = [ (lib.mesonEnable "man-pages" buildDocs) ]; 48 47 49 - meta = with lib; { 48 + meta = { 50 49 changelog = "https://github.com/emersion/slurp/releases/tag/v${finalAttrs.version}"; 51 50 description = "Select a region in a Wayland compositor"; 52 - inherit (wayland.meta) platforms; 51 + platforms = lib.platforms.linux; 53 52 homepage = "https://github.com/emersion/slurp"; 54 - license = licenses.mit; 53 + license = lib.licenses.mit; 55 54 mainProgram = "slurp"; 56 - maintainers = with maintainers; [ buffet nickcao ]; 55 + maintainers = with lib.maintainers; [ 56 + buffet 57 + nickcao 58 + ]; 57 59 }; 58 60 })
+1 -5
pkgs/top-level/all-packages.nix
··· 4683 4683 4684 4684 shotman = callPackage ../tools/wayland/shotman { }; 4685 4685 4686 - slurp = callPackage ../tools/wayland/slurp { }; 4687 - 4688 4686 sway-unwrapped = callPackage ../by-name/sw/sway-unwrapped/package.nix { 4689 4687 wlroots = wlroots_0_17; 4690 4688 }; ··· 4701 4699 4702 4700 wayland-utils = callPackage ../tools/wayland/wayland-utils { }; 4703 4701 4704 - wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { 4705 - ocamlPackages = ocaml-ng.ocamlPackages_5_0; 4706 - }; 4702 + wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { }; 4707 4703 4708 4704 waylogout = callPackage ../tools/wayland/waylogout { }; 4709 4705
+2 -1
pkgs/top-level/ocaml-packages.nix
··· 566 566 567 567 gapi-ocaml = callPackage ../development/ocaml-modules/gapi-ocaml { }; 568 568 569 - gd4o = callPackage ../development/ocaml-modules/gd4o { }; 569 + gd4o = throw "ocamlPackages.gd4o is not maintained, use ocamlPackages.gd instead"; 570 + gd = callPackage ../development/ocaml-modules/gd { inherit (pkgs) gd; }; 570 571 571 572 gen = callPackage ../development/ocaml-modules/gen { }; 572 573
+2
pkgs/top-level/python-aliases.nix
··· 85 85 cchardet = faust-cchardet; # added 2023-03-02 86 86 cepa = throw "cepa has been removed, as onionshare switched back to stem"; # added 2024-05-07 87 87 class-registry = phx-class-registry; # added 2021-10-05 88 + cld2-cffi = throw "cld2-cffi has been removed, as the last release was in 2016"; # added 2024-05-20 88 89 cntk = throw "cntk has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09 89 90 codespell = throw "codespell has been promoted to a top-level attribute name: `pkgs.codespell`"; # Added 2022-10-02 90 91 ColanderAlchemy = colanderalchemy; # added 2023-02-19 ··· 328 329 postorius = throw "Please use pkgs.mailmanPackages.postorius"; # added 2022-04-29 329 330 powerlineMemSegment = powerline-mem-segment; # added 2021-10-08 330 331 privacyidea-ldap-proxy = throw "privacyidea-ldap-proxy has been removed from nixpkgs"; # added 2023-10-31 332 + proboscis = throw "proboscis has been removed since it has not been maintained for 11 years"; # added 2024-05-20 331 333 prometheus_client = prometheus-client; # added 2021-06-10 332 334 prompt_toolkit = prompt-toolkit; # added 2021-07-22 333 335 protonup = protonup-ng; # Added 2022-11-06
-4
pkgs/top-level/python-packages.nix
··· 2188 2188 2189 2189 classify-imports = callPackage ../development/python-modules/classify-imports { }; 2190 2190 2191 - cld2-cffi = callPackage ../development/python-modules/cld2-cffi { }; 2192 - 2193 2191 cle = callPackage ../development/python-modules/cle { }; 2194 2192 2195 2193 clean-fid = callPackage ../development/python-modules/clean-fid { }; ··· 10356 10354 prisma = callPackage ../development/python-modules/prisma { }; 10357 10355 10358 10356 prison = callPackage ../development/python-modules/prison { }; 10359 - 10360 - proboscis = callPackage ../development/python-modules/proboscis { }; 10361 10357 10362 10358 process-tests = callPackage ../development/python-modules/process-tests { }; 10363 10359