Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 2a2dbf24 18096648

+2083 -705
+1 -1
maintainers/maintainer-list.nix
··· 16025 16025 }; 16026 16026 running-grass = { 16027 16027 name = "Leo Liu"; 16028 - email = "467195537@qq.com"; 16028 + email = "hi@grass.show"; 16029 16029 github = "running-grass"; 16030 16030 githubId = 17241154; 16031 16031 keys = [{
+2 -2
nixos/modules/services/web-apps/invidious.nix
··· 153 153 message = '' 154 154 For local automatic database provisioning (services.invidious.database.createLocally == true) 155 155 to work, the username used to connect to PostgreSQL must match the database name, that is 156 - services.invidious.database.user must match services.invidious.database.dbName. 156 + services.invidious.settings.db.user must match services.invidious.settings.db.dbname. 157 157 This is the default since NixOS 24.05. For older systems, it is normally safe to manually set 158 158 services.invidious.database.user to "invidious" as the new user will be created with permissions 159 - for the existing database. 159 + for the existing database. `REASSIGN OWNED BY kemal TO invidious;` may also be needed. 160 160 ''; 161 161 } 162 162 ];
+3 -3
pkgs/applications/audio/mopidy/spotify.nix
··· 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 pname = "mopidy-spotify"; 5 - version = "unstable-2023-11-01"; 5 + version = "unstable-2023-12-20"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mopidy"; 9 9 repo = "mopidy-spotify"; 10 - rev = "48faaaa2642647b0152231798b46ccd9631694f5"; 11 - hash = "sha256-RwkUdcbDU7/ndVnPteG/iXB2dloljvCHQlvPk4tacuA="; 10 + rev = "2d26b54900bc1fdb974f571036f7101f6e6a3846"; 11 + hash = "sha256-T5lWgjDhYCUe/mWAM1SFHzWbxyJ7US1fn0sPTVi/s2s="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [
+2 -2
pkgs/applications/blockchains/clightning/default.nix
··· 22 22 in 23 23 stdenv.mkDerivation rec { 24 24 pname = "clightning"; 25 - version = "23.11.1"; 25 + version = "23.11.2"; 26 26 27 27 src = fetchurl { 28 28 url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip"; 29 - sha256 = "sha256-PH5vNaQWUP9liKOiNXJnYPWn6LPBw6+XfT4KvcXb4Kk="; 29 + sha256 = "sha256-n1+9Q493N/N5sr7sVpzhObtbKpEejsNUUhhbYPukveg="; 30 30 }; 31 31 32 32 # when building on darwin we need dawin.cctools to provide the correct libtool
+1 -1
pkgs/applications/editors/jupyter-kernels/coq/default.nix
··· 18 18 # nix run --impure --expr 'with import <nixpkgs> {}; jupyter.override { definitions.coq = coq-kernel.definition; }' 19 19 20 20 let 21 - python = python3.withPackages (ps: [ ps.traitlets ps.jupyter_core ps.ipykernel (callPackage ./kernel.nix {}) ]); 21 + python = python3.withPackages (ps: [ ps.traitlets ps.jupyter-core ps.ipykernel (callPackage ./kernel.nix {}) ]); 22 22 23 23 logos = runCommand "coq-logos" { buildInputs = [ imagemagick ]; } '' 24 24 mkdir -p $out
+2 -2
pkgs/applications/file-managers/xplr/default.nix pkgs/by-name/xp/xplr/package.nix
··· 24 24 ''; 25 25 26 26 postInstall = '' 27 - mkdir -p $out/share 28 - cp assets/desktop/xplr.desktop $out/share 27 + mkdir -p $out/share/applications 28 + cp assets/desktop/xplr.desktop $out/share/applications 29 29 30 30 mkdir -p $out/share/icons/hicolor/scalable/apps 31 31 cp assets/icon/xplr.svg $out/share/icons/hicolor/scalable/apps
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 49 49 50 50 stdenv.mkDerivation (finalAttrs: { 51 51 pname = "imagemagick"; 52 - version = "7.1.1-23"; 52 + version = "7.1.1-24"; 53 53 54 54 src = fetchFromGitHub { 55 55 owner = "ImageMagick"; 56 56 repo = "ImageMagick"; 57 57 rev = finalAttrs.version; 58 - hash = "sha256-ytDMCZN+vavOtiPju5z87nJmSafRTt1gGycZtl3seGI="; 58 + hash = "sha256-oQ/g2/OhZWKvh//QevYsyi8uNwgo1yuihT5728eVKF8="; 59 59 }; 60 60 61 61 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
+6 -4
pkgs/applications/misc/anytype/default.nix pkgs/by-name/an/anytype/package.nix
··· 2 2 3 3 let 4 4 pname = "anytype"; 5 - version = "0.36.0"; 5 + version = "0.37.0"; 6 6 name = "Anytype-${version}"; 7 7 nameExecutable = pname; 8 8 src = fetchurl { 9 9 url = "https://github.com/anyproto/anytype-ts/releases/download/v${version}/${name}.AppImage"; 10 10 name = "Anytype-${version}.AppImage"; 11 - sha256 = "sha256-Efoqy/izULDgd2Dc3ktVZNj9/U0vCtENm0NLr5VKQpQ="; 11 + sha256 = "sha256-Z46GTcJoaqvjVuxUP+OuxD32KM0NQISWMlv3uco5r6g="; 12 12 }; 13 13 appimageContents = appimageTools.extractType2 { inherit name src; }; 14 14 in ··· 26 26 install -m 444 -D ${appimageContents}/anytype.desktop -t $out/share/applications 27 27 substituteInPlace $out/share/applications/anytype.desktop \ 28 28 --replace 'Exec=AppRun' 'Exec=${pname}' 29 - install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/0x0/apps/anytype.png \ 30 - $out/share/icons/hicolor/512x512/apps/anytype.png 29 + for size in 16 32 64 128 256 512 1024; do 30 + install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/''${size}x''${size}/apps/anytype.png \ 31 + $out/share/icons/hicolor/''${size}x''${size}/apps/anytype.png 32 + done 31 33 ''; 32 34 33 35 meta = with lib; {
+4 -4
pkgs/applications/misc/joplin-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "joplin-desktop"; 5 - version = "2.13.9"; 5 + version = "2.13.11"; 6 6 7 7 inherit (stdenv.hostPlatform) system; 8 8 throwSystem = throw "Unsupported system: ${system}"; ··· 16 16 src = fetchurl { 17 17 url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}${suffix}"; 18 18 sha256 = { 19 - x86_64-linux = "sha256-1po4i+SG5o28uBtgmIXxnCP8/ZvFgTXxrdKVTSA7ndE="; 20 - x86_64-darwin = "sha256-4NeFVj+RB3CyCQxrMM7ZfFahBMa0WumY1YPslJ2votc="; 21 - aarch64-darwin = "sha256-pxlato6AQYduTCXouGVNSGr5awhGwlC8jTkG9nB2U+4="; 19 + x86_64-linux = "sha256-YkNtvgPAYD7Rw72QoMHqRN24K1RB1GR8W9ka8wCUA8w="; 20 + x86_64-darwin = "sha256-/T8OkTIIQ6ApnL0y5+xRdkQlByzXSwrpw5wXqbhoSoE="; 21 + aarch64-darwin = "sha256-OM+Le2c1esvE8+QwAMpXc03yLUwxibKRRc37WaTGnTs="; 22 22 }.${system} or throwSystem; 23 23 }; 24 24
+2 -2
pkgs/applications/misc/obsidian/default.nix
··· 12 12 let 13 13 inherit (stdenv.hostPlatform) system; 14 14 pname = "obsidian"; 15 - version = "1.4.16"; 15 + version = "1.5.3"; 16 16 appname = "Obsidian"; 17 17 meta = with lib; { 18 18 description = "A powerful knowledge base that works on top of a local folder of plain text Markdown files"; ··· 25 25 filename = if stdenv.isDarwin then "Obsidian-${version}-universal.dmg" else "obsidian-${version}.tar.gz"; 26 26 src = fetchurl { 27 27 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/${filename}"; 28 - hash = if stdenv.isDarwin then "sha256-ydLWr+Snkza9G+R7HbPuUdoZsL25Uj+KDos67Mq/urY=" else "sha256-PBKLGs3MZyarSMiWnjqY7d9bQrKu2uLAvLUufpHLxcw="; 28 + hash = if stdenv.isDarwin then "sha256-AXjzQwZxyRaI8mMU2EsNK0fRcXS7UNNBWPXeJzgomlY=" else "sha256-F7nqWOeBGGSmSVNTpcx3lHRejSjNeM2BBqS9tsasTvg="; 29 29 }; 30 30 31 31 icon = fetchurl {
+3 -3
pkgs/applications/misc/typioca/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "typioca"; 10 - version = "2.8.0"; 10 + version = "2.9.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "bloznelis"; 14 14 repo = "typioca"; 15 15 rev = version; 16 - hash = "sha256-cm6z7MVAbFxfkSTaCfh8wZhtgXdfVQopqEk+w+hPZpI="; 16 + hash = "sha256-N7+etRqHxLX0eVvdOofXQ1fqEUTsck7UAL5mX6NUsOU="; 17 17 }; 18 18 19 - vendorHash = "sha256-XiKn18WCbhVvsrIvTN/Yquj4mhq4n1X1jqdGUaMacV4="; 19 + vendorHash = "sha256-FKLAbrZVtF8gj90NU7m47pG+BBKYkPjJKax5nZmpehY="; 20 20 21 21 ldflags = [ 22 22 "-s"
+3 -3
pkgs/applications/networking/cluster/argocd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argocd"; 5 - version = "2.9.1"; 5 + version = "2.9.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "argoproj"; 9 9 repo = "argo-cd"; 10 10 rev = "v${version}"; 11 - hash = "sha256-5oSuExdkP+69AJD5U74yLD4e+5pvbFOY6T9mcKnJ5Jw="; 11 + hash = "sha256-GaY4Cw/LlSwy35umbB4epXt6ev8ya19UjHRwhDwilqU="; 12 12 }; 13 13 14 14 proxyVendor = true; # darwin/linux hash mismatch 15 - vendorHash = "sha256-/MmcWusqgEe8KEJcEBOqOkv1lJb06R3TKYFk4wvdWHk="; 15 + vendorHash = "sha256-2TNBbxNX4HGdRqbOEDrLBkWgw+0lyIrdxnVcbip3N6c="; 16 16 17 17 # Set target as ./cmd per cli-local 18 18 # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
+3 -3
pkgs/applications/networking/cluster/kubectl-cnpg/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "kubectl-cnpg"; 8 - version = "1.21.1"; 8 + version = "1.22.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "cloudnative-pg"; 12 12 repo = "cloudnative-pg"; 13 13 rev = "v${version}"; 14 - hash = "sha256-xDjDBbnYR0PnSrF/vr+HXVGMoba9NmE/uMX/DRm+CVE="; 14 + hash = "sha256-qaIpx8iZhkGEW8MZNgI6rMopNuz+FPpoVBDs9z+BJa0="; 15 15 }; 16 16 17 - vendorHash = "sha256-NqQGqvvwLi6niey9Mi9hJSRYrRXE4Dj4VWiMu5wUXXw="; 17 + vendorHash = "sha256-SCeKoxI1zFzSwLAdAa1YI3DiyfK/uOk7CmWwQWVeF7g="; 18 18 19 19 subPackages = [ "cmd/kubectl-cnpg" ]; 20 20
+2 -2
pkgs/applications/networking/cluster/kubectl-node-shell/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "kubectl-node-shell"; 5 - version = "1.8.0"; 5 + version = "1.8.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kvaps"; 9 9 repo = "kubectl-node-shell"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-+JRHSigjsxuZFQg73wTMWWKtCVXd2mMFqivYGcwYznE="; 11 + sha256 = "sha256-ZVLL++QTc4fvOTsFfaWVad/jj4EqPiZUpL7HsMb2AdE="; 12 12 }; 13 13 14 14 strictDeps = true;
+3 -3
pkgs/applications/networking/feedreaders/goeland/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "goeland"; 8 - version = "0.17.0"; 8 + version = "0.18.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "slurdge"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-ISAaV1MgqnzO2fMgoZZKT8FSDq6XIRvjWG72dALY+rU="; 14 + sha256 = "sha256-3LO0p3klnwamhTuOw5S0dN5qsI8u1l5UWN5FkGnY5Lo="; 15 15 }; 16 16 17 - vendorHash = "sha256-uk1Ew77XaS/k7QXqNa70Nyynb+6pzs7B5jhusz3ffZY="; 17 + vendorHash = "sha256-zwUX6EBz34lg7vg7R52xcslrhyRTiueP3RNLRxsupn4="; 18 18 19 19 ldflags = [ 20 20 "-s"
+3 -3
pkgs/applications/networking/feedreaders/newsboat/default.nix
··· 3 3 4 4 rustPlatform.buildRustPackage rec { 5 5 pname = "newsboat"; 6 - version = "2.33"; 6 + version = "2.34"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "newsboat"; 10 10 repo = "newsboat"; 11 11 rev = "r${version}"; 12 - hash = "sha256-p9cyH5jANkB+PuvAq6KjaelgPwj1f7XNxuKMpT7jjpg="; 12 + hash = "sha256-knF+N/HHL/E6C973t+ww5XTLV2thwy7lMAeqTyXspHY="; 13 13 }; 14 14 15 - cargoHash = "sha256-95xM4kZZ70xhfx+EvqFecYbVdisq9hpgp0t+s5Cp8QQ="; 15 + cargoHash = "sha256-IsDym+tqF040SxCJF575OPm45IROYMFsCrxJcM1SAJ4="; 16 16 17 17 # TODO: Check if that's still needed 18 18 postPatch = lib.optionalString stdenv.isDarwin ''
+2 -2
pkgs/applications/office/fava/default.nix
··· 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "fava"; 5 - version = "1.26.2"; 5 + version = "1.26.3"; 6 6 format = "pyproject"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - hash = "sha256-+rMuVfe6BDAcZgJkBb18YLFZirOBfad6WGbWtAT21uI="; 10 + hash = "sha256-HjMcNZ+VV5PdTIW3q6Ja/gFIZl6xXDxk0pUCyIX4dPM="; 11 11 }; 12 12 13 13 nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
+2 -2
pkgs/applications/version-management/git-town/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "git-town"; 5 - version = "10.0.1"; 5 + version = "11.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "git-town"; 9 9 repo = "git-town"; 10 10 rev = "v${version}"; 11 - hash = "sha256-b4NwimMHF5023I0NvfYMlYIJA9Tj6wPwfKDI4Fmo3lg="; 11 + hash = "sha256-QQ+sIZzkzecs+pZBzsmCL048JZpMPvdYi0PRtMN4AhY="; 12 12 }; 13 13 14 14 vendorHash = null;
+3 -3
pkgs/by-name/li/lint-staged/package.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "lint-staged"; 5 - version = "14.0.1"; 5 + version = "15.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okonet"; 9 9 repo = "lint-staged"; 10 10 rev = "v${version}"; 11 - hash = "sha256-xuHrxi/1zfeY2dd625iLDNJFoNO28JJrPvmECdqeZXk="; 11 + hash = "sha256-Vziz8pV3pd1Rp6X6mHzyD22Z3q5LJJTXQ8kFuHpVgKc="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-4lyTBmcX5k//kbFHmzbOQJp+Jd9TPY7bzm51QuiXUzE="; 14 + npmDepsHash = "sha256-BKgncl53MKFDASXo6I2Vn3v54iTL/h9gykJ3PWNUGQU="; 15 15 16 16 dontNpmBuild = true; 17 17
+38
pkgs/by-name/op/opensearch-cli/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , installShellFiles 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "opensearch-cli"; 9 + version = "1.2.0"; 10 + src = fetchFromGitHub { 11 + repo = "opensearch-cli"; 12 + owner = "opensearch-project"; 13 + rev = version; 14 + hash = "sha256-Ah64a9hpc2tnIXiwxg/slE6fUTAoHv9koNmlUHrVj/s="; 15 + }; 16 + 17 + vendorHash = "sha256-r3Bnud8pd0Z9XmGkj9yxRW4U/Ry4U8gvVF4pAdN14lQ="; 18 + 19 + nativeBuildInputs = [ installShellFiles ]; 20 + 21 + postInstall = '' 22 + export HOME="$(mktemp -d)" 23 + installShellCompletion --cmd opensearch-cli \ 24 + --bash <($out/bin/opensearch-cli completion bash) \ 25 + --zsh <($out/bin/opensearch-cli completion zsh) \ 26 + --fish <($out/bin/opensearch-cli completion fish) 27 + ''; 28 + 29 + meta = { 30 + description = "A full-featured command line interface (CLI) for OpenSearch."; 31 + homepage = "https://github.com/opensearch-project/opensearch-cli"; 32 + license = lib.licenses.asl20; 33 + mainProgram = "opensearch-cli"; 34 + maintainers = with lib.maintainers; [ shyim ]; 35 + platforms = lib.platforms.unix; 36 + sourceProvenance = with lib.sourceTypes; [ fromSource ]; 37 + }; 38 + }
+30
pkgs/by-name/sp/spirit/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule { 7 + pname = "spirit"; 8 + version = "unstable-2023-12-15"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "cashapp"; 12 + repo = "spirit"; 13 + rev = "3abce3e15c01b18e7a9fc12e19ad5c0f541d1ffd"; 14 + hash = "sha256-B4z5bdb0hRx7U2RLTRDxRYt1ltACNXz/B6qAs4qjtAo="; 15 + }; 16 + 17 + vendorHash = "sha256-hKTQvTWd48mnVODWE6W541TPuxCyELLgpz96XB29kec="; 18 + 19 + subPackages = [ "cmd/spirit" ]; 20 + 21 + ldflags = [ "-s" "-w" ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/cashapp/spirit"; 25 + description = "Online schema change tool for MySQL"; 26 + license = licenses.asl20; 27 + maintainers = with maintainers; [ aaronjheng ]; 28 + mainProgram = "spirit"; 29 + }; 30 + }
+2 -2
pkgs/by-name/ut/ut/package.nix
··· 6 6 }: 7 7 stdenv.mkDerivation (finalAttrs: { 8 8 pname = "ut"; 9 - version = "2.0.0"; 9 + version = "2.0.1"; 10 10 11 11 cmakeFlags = [ 12 12 "-DBOOST_UT_ALLOW_CPM_USE=OFF" ··· 16 16 owner = "boost-ext"; 17 17 repo = "ut"; 18 18 rev = "v${finalAttrs.version}"; 19 - hash = "sha256-nMRhVtbnORMnZxIdrv6pvfj8/fv/buh4Y7mz0cr4p+E="; 19 + hash = "sha256-4OZvDcUtw6x/E9yLRQukfn6PskxtVBrsLPP48yo/lN0="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/data/fonts/julia-mono/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "JuliaMono-ttf"; 5 - version = "0.052"; 5 + version = "0.053"; 6 6 7 7 src = fetchzip { 8 8 url = "https://github.com/cormullion/juliamono/releases/download/v${version}/${pname}.tar.gz"; 9 9 stripRoot = false; 10 - hash = "sha256-GXT1VHRQj8yiz/DpZtYb5wPz/MlOLSNS92/2Kd6Q7Qs="; 10 + hash = "sha256-KvDyT0T8ecpSoNmqvsvDMooWNNe+z/PvxYj1Nd6qqfA="; 11 11 }; 12 12 13 13 installPhase = ''
+2 -14
pkgs/desktops/gnome/default.nix
··· 260 260 }) // lib.optionalAttrs config.allowAliases { 261 261 #### Legacy aliases. They need to be outside the scope or they will shadow the attributes from parent scope. 262 262 263 - empathy = throw "The ‘gnome.empathy’ package was removed as it is unmaintained and no longer launches due to libsoup3 migration."; # added 2023-01-20 264 - gedit = pkgs.gedit; # added 2023-07-05 265 - gnome-desktop = throw "The ‘gnome.gnome-desktop’ alias was removed. Please use ‘pkgs.gnome-desktop’ directly."; # converted to throw on 2022-10-26 266 - gnome-todo = pkgs.endeavour; # added 2022-07-30 267 - libgnome-games-support = throw "The ‘gnome.libgnome-games-support’ alias was removed. Please use ‘pkgs.libgnome-games-support’ directly."; # converted to throw on 2022-10-26 268 - 269 - gnome-books = throw "The ‘gnome.gnome-books’ package was removed as it is broken and abandoned."; # added 2022-10-26 270 - gnome-documents = throw "The ‘gnome.gnome-documents’ package was removed as it is broken and abandoned."; # added 2022-10-26 271 - gnome-devel-docs = throw "The ‘gnome.gnome-devel-docs’ package was removed as it is outdated and no longer relevant."; # added 2022-10-26 272 - 273 - mutter338 = throw "The ‘gnome.mutter338’ package was removed as it is no longer needed by Pantheon."; # added 2023-02-22 274 - mutter42 = throw "The ‘gnome.mutter42’ package was removed as it is no longer needed by Pantheon."; # added 2023-03-23 275 - gnome-settings-daemon338 = throw "The ‘gnome.gnome-settings-daemon338’ package was removed as it is no longer needed by Pantheon."; # added 2023-02-22 276 - gnome-settings-daemon42 = throw "The ‘gnome.gnome-settings-daemon42’ package was removed as it is no longer needed by Pantheon."; # added 2023-03-23 263 + gedit = throw "The ‘gnome.gedit’ alias was removed. Please use ‘pkgs.gedit’ directly."; # converted to throw on 2023-12-27 264 + gnome-todo = throw "The ‘gnome.gnome-todo’ alias was removed. Please use ‘pkgs.endeavour’ directly."; # converted to throw on 2023-12-27 277 265 }
+2 -2
pkgs/desktops/mate/libmateweather/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "libmateweather"; 17 - version = "1.26.2"; 17 + version = "1.26.3"; 18 18 19 19 src = fetchurl { 20 20 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 21 - sha256 = "ylCoFYZlXPU6j5Z2a5zpCk0H7Q/hYr1eFdra3QBgx/Y="; 21 + sha256 = "XmzSRBiEfLRazxfaW0NacTHLTsKs/2joKPNCob8T70o="; 22 22 }; 23 23 24 24 strictDeps = true;
+2 -2
pkgs/desktops/mate/mate-media/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "mate-media"; 17 - version = "1.26.1"; 17 + version = "1.26.2"; 18 18 19 19 src = fetchurl { 20 20 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 21 - sha256 = "KLKiGiltkVx8BtnSFvSahUHNPOyJWzJZvKBoqF4m6ws="; 21 + sha256 = "r0ZjlXTMOIUTCJyhC7FB/8Pm0awz5zDkII21dZZChQ8="; 22 22 }; 23 23 24 24 buildInputs = [
+3 -3
pkgs/development/compilers/assemblyscript/default.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "assemblyscript"; 8 - version = "0.27.9"; 8 + version = "0.27.22"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AssemblyScript"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-UOMWUM1wOhX2pR29DSYpPKLnjb1CWrKk6BtyXK7kqDk="; 14 + sha256 = "sha256-8j012eAM+tl8AH5vNhg9xKDRJt5pZKV9KNwJFmUgXMY="; 15 15 }; 16 16 17 - npmDepsHash = "sha256-9ILa1qY2GpP2RckcZYcCMmgCwdXIImOm+D8nldeoQL8="; 17 + npmDepsHash = "sha256-y7gY9VhbR+xfXf3OvKvpcohk2mwfa0uOQO7Nmg+L6ug="; 18 18 19 19 meta = with lib; { 20 20 homepage = "https://github.com/AssemblyScript/${pname}";
+2 -2
pkgs/development/libraries/intel-gmmlib/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "intel-gmmlib"; 12 - version = "22.3.15"; 12 + version = "22.3.16"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "intel"; 16 16 repo = "gmmlib"; 17 17 rev = "intel-gmmlib-${version}"; 18 - sha256 = "sha256-MVM5MfX+uVMik+332blWvqh6Wt1iq6DNR7/hrHC+rWI="; 18 + sha256 = "sha256-6cN7qnFpVe362u4o0bZMKlUq1/eCpPZF0nBgon9Eav4="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/libcifpp/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "libcifpp"; 13 - version = "5.2.4"; 13 + version = "6.0.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "PDB-REDO"; 17 17 repo = "libcifpp"; 18 18 rev = "refs/tags/v${finalAttrs.version}"; 19 - hash = "sha256-AAEk9gDxtlNDEG8B4HmOJ5Nd+GyWibT+yuMccylU8iQ="; 19 + hash = "sha256-cj7xhRYTGxQnod/kw02UYiJewPJosxKSwvwDIu6nG0A="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/science/biology/htslib/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "htslib"; 5 - version = "1.18"; 5 + version = "1.19"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/samtools/htslib/releases/download/${version}/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-8atTpZOiMgob+t9O+RXa54QAbFtckiyKgXTXUwqa8Y8="; 9 + sha256 = "sha256-h1HEDE+n0fI6aGTFsgpzdE+L5oI5U1rncpxffTlNBzY="; 10 10 }; 11 11 12 12 # perl is only used during the check phase.
+1 -1
pkgs/development/php-packages/datadog_trace/Cargo.lock
··· 678 678 679 679 [[package]] 680 680 name = "datadog-php-profiling" 681 - version = "0.95.0" 681 + version = "0.96.0" 682 682 dependencies = [ 683 683 "ahash 0.8.3", 684 684 "anyhow",
+2 -2
pkgs/development/php-packages/datadog_trace/default.nix
··· 13 13 14 14 buildPecl rec { 15 15 pname = "ddtrace"; 16 - version = "0.95.0"; 16 + version = "0.96.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "DataDog"; 20 20 repo = "dd-trace-php"; 21 21 rev = version; 22 22 fetchSubmodules = true; 23 - hash = "sha256-NKlSTpC06FKc1eyz/QaoavPFxn8tq6UXtlUjqtC4S6w="; 23 + hash = "sha256-SXhva2acXIOuru8tTdRt5OU3Pce5eHm6SOn/y7N3ZIs="; 24 24 }; 25 25 26 26 cargoDeps = rustPlatform.importCargoLock {
+2 -2
pkgs/development/php-packages/ds/default.nix
··· 1 1 { buildPecl, lib, pcre2, php, fetchFromGitHub }: 2 2 3 3 let 4 - version = "1.4.0"; 4 + version = "1.5.0"; 5 5 in buildPecl { 6 6 inherit version; 7 7 pname = "ds"; ··· 10 10 owner = "php-ds"; 11 11 repo = "ext-ds"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-IqNv2jVW1Hg1hV8H9vEyLT5BWsFkGHR+WlAOHJhlW84="; 13 + sha256 = "sha256-lL1PUjc4bMTsWm2th0wDxnMaGuVziBUtgK88bUJXuBY="; 14 14 }; 15 15 16 16 buildInputs = [ pcre2 ];
+2 -2
pkgs/development/php-packages/mongodb/default.nix
··· 15 15 16 16 buildPecl rec { 17 17 pname = "mongodb"; 18 - version = "1.17.1"; 18 + version = "1.17.2"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "mongodb"; 22 22 repo = "mongo-php-driver"; 23 23 rev = version; 24 - hash = "sha256-QAMDzI9f/I7hNlafYoEJrCpsbEMFvKR+JnR1G+ZnPpU="; 24 + hash = "sha256-7JzFls5cMzlA2aEM7M4+Dg4yIJNzz/vNOXNEITejePk="; 25 25 fetchSubmodules = true; 26 26 }; 27 27
+2 -2
pkgs/development/php-packages/phalcon/default.nix
··· 2 2 3 3 buildPecl rec { 4 4 pname = "phalcon"; 5 - version = "5.4.0"; 5 + version = "5.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "phalcon"; 9 9 repo = "cphalcon"; 10 10 rev = "v${version}"; 11 - hash = "sha256-svw+cYL5ISKk6jEvdFmLcC4hEzrFw3kIbDJsymt2tEs="; 11 + hash = "sha256-ycE8A3ESV97COTdbjkrOJCZpEmP1l9nkmNnhjJGaBeE="; 12 12 }; 13 13 14 14 internalDeps = [ php.extensions.session php.extensions.pdo ];
+2 -2
pkgs/development/php-packages/phan/default.nix
··· 9 9 in 10 10 mkDerivation rec { 11 11 pname = "phan"; 12 - version = "5.4.2"; 12 + version = "5.4.3"; 13 13 14 14 src = fetchurl { 15 15 url = "https://github.com/phan/phan/releases/download/${version}/phan.phar"; 16 - hash = "sha256-9fpmsv2ia5ad+QtaicdZ0XpOZw7T5LWhfd2miYfSpWM="; 16 + hash = "sha256-wZU6YIlH0q18iD044y6Z5gSscBn7cI0AwRwZgT/YhOo="; 17 17 }; 18 18 19 19 dontUnpack = true;
+2 -2
pkgs/development/php-packages/php-cs-fixer/default.nix
··· 2 2 3 3 let 4 4 pname = "php-cs-fixer"; 5 - version = "3.41.1"; 5 + version = "3.42.0"; 6 6 in 7 7 mkDerivation { 8 8 inherit pname version; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar"; 12 - sha256 = "sha256-1XOJc5WQfHzUf+FOSi2VrcT4iy4/WogYh1HZAiGwjY0="; 12 + sha256 = "sha256-ppkkVNAQ0F6DNSxMdvz5E4ZBPqlGNtMDgNC9vTsK6CY="; 13 13 }; 14 14 15 15 dontUnpack = true;
+2 -2
pkgs/development/python-modules/aioairq/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "aioairq"; 11 - version = "0.3.1"; 11 + version = "0.3.2"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.9"; ··· 17 17 owner = "CorantGmbH"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-SRsDSHTZkkygaQZjHENKNLx3ZWMi/PubS1m/MonEKNk="; 20 + hash = "sha256-Sau0Ih+9WRChbztl8yjXVWy4/QxyllQKOPslbZroBeQ="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+10 -5
pkgs/development/python-modules/aiopulse/default.nix
··· 1 1 { lib 2 + , async-timeout 2 3 , buildPythonPackage 3 4 , fetchPypi 4 - , async-timeout 5 5 , pythonOlder 6 + , setuptools 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "aiopulse"; 10 - version = "0.4.4"; 11 - format = "setuptools"; 11 + version = "0.4.5"; 12 + pyproject = true; 12 13 13 14 disabled = pythonOlder "3.6"; 14 15 15 16 src = fetchPypi { 16 17 inherit pname version; 17 - hash = "sha256-JbdJbkzd55KeM3Sf1ExvMuHRKNu5VAvGG4y+wkMS0Wo="; 18 + hash = "sha256-yrltqnePNnNwsVGkfXgtrtL/FuazRvmoVL4L0H4j4Bg="; 18 19 }; 19 20 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 + 20 25 propagatedBuildInputs = [ 21 26 async-timeout 22 27 ]; 23 28 24 - # tests are not present 29 + # Tests are not present 25 30 doCheck = false; 26 31 27 32 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/appthreat-vulnerability-db/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "appthreat-vulnerability-db"; 20 - version = "5.5.6"; 20 + version = "5.5.7"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 26 26 owner = "AppThreat"; 27 27 repo = "vulnerability-db"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-jPbYbyVOfn5XCVdzLEEtMcRnGQzzHiea0GZ+YatswEM="; 29 + hash = "sha256-qDloyoc6FpfWVo0+rbnvSQ0nxAKjKXcC+ZNZr2vkMEE="; 30 30 }; 31 31 32 32 postPatch = ''
+2 -2
pkgs/development/python-modules/argilla/default.nix
··· 65 65 }: 66 66 let 67 67 pname = "argilla"; 68 - version = "1.20.0"; 68 + version = "1.21.0"; 69 69 optional-dependencies = { 70 70 server = [ 71 71 fastapi ··· 126 126 owner = "argilla-io"; 127 127 repo = pname; 128 128 rev = "refs/tags/v${version}"; 129 - hash = "sha256-LYtudVk4FJMMCMDwCW38DBFsHA2xGd2ScvXogy6zRdI="; 129 + hash = "sha256-/CU/8CnoGhxe1tapA9k60o/Bpnaql/6Y/6Ksw5mfk/E="; 130 130 }; 131 131 132 132 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/geoalchemy2/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "geoalchemy2"; 16 - version = "0.14.2"; 16 + version = "0.14.3"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "geoalchemy"; 23 23 repo = "geoalchemy2"; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-C/F1hpL2DnzC4UPAGGFntlQlULCx5Ufzkw7EIrzRV7I="; 25 + hash = "sha256-L3/gLbiEF2VEqyhfVPnREMUPFbf9cD3tqGJ+AbThPkQ="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/jupyter-collaboration/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "jupyter-collaboration"; 22 - version = "2.0.0"; 22 + version = "2.0.1"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; ··· 27 27 src = fetchPypi { 28 28 pname = "jupyter_collaboration"; 29 29 inherit version; 30 - hash = "sha256-7tIdCXcEXwdPgO5HxnjAlPGcgVZ2AtUKethYqxiplY8="; 30 + hash = "sha256-Uc57kxhaj/DQi5cX+kjV4PGRcFbxWmzc+B248+1VAYI="; 31 31 }; 32 32 33 33 postPatch = ''
+2 -2
pkgs/development/python-modules/jupyter-ydoc/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "jupyter-ydoc"; 16 - version = "2.0.0"; 16 + version = "2.0.1"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 21 21 src = fetchPypi { 22 22 pname = "jupyter_ydoc"; 23 23 inherit version; 24 - hash = "sha256-m7P00yfUdZfZQwNY3z1ZeViZUhyg61DHmcAjbvTcF30="; 24 + hash = "sha256-cW3ajLiviB/sL7yIrqP7DTuyS764Cpmor/LgHQidWw0="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/millheater/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "millheater"; 11 - version = "0.11.7"; 11 + version = "0.11.8"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.10"; ··· 17 17 owner = "Danielhiversen"; 18 18 repo = "pymill"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-jqtyJHoG/8tgv4OJleb7DV6C7pCpgplieLykfvO3cNM="; 20 + hash = "sha256-BSrnUhe6SFtalUGldC24eJTqJAF5FdUWo3rwWNT1uCw="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/optimum/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "optimum"; 25 - version = "1.14.1"; 25 + version = "1.16.1"; 26 26 format = "setuptools"; 27 27 28 28 disabled = pythonOlder "3.7"; ··· 31 31 owner = "huggingface"; 32 32 repo = "optimum"; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-aHolI+vM3sA83elsqxY5yaiZGB+I0okjSdRmjTRaxJI="; 34 + hash = "sha256-UlxArfNK4Ialodpne5GY7GuWGUBcLbSjAidL67Li0S0="; 35 35 }; 36 36 37 37 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pydrawise/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "pydrawise"; 20 - version = "2023.12.0"; 20 + version = "2023.12.1"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.10"; ··· 26 26 owner = "dknowles2"; 27 27 repo = "pydrawise"; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-20EPAvunKDByHRQ3jYz1Mbn6n1CFn4WWA6vbCdKen/g="; 29 + hash = "sha256-w5M6ihPGOVCqMrWd8qj6XEmS4tfxKhwpwZSXjcOc4z0="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/python-lsp-ruff/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "python-lsp-ruff"; 15 - version = "2.0.0"; 15 + version = "2.0.1"; 16 16 pyproject = true; 17 17 disabled = pythonOlder "3.8"; 18 18 19 19 src = fetchPypi { 20 20 inherit version; 21 21 pname = "python-lsp-ruff"; 22 - sha256 = "sha256-lCTBFKTb1djrRQcX4Eg/G2Fs+VrqTvJ/XVnUPVM/5nE="; 22 + sha256 = "sha256-sgS0wwFuAaaen9b/vpJrpAsUvE2lehfHVaOB/hSol9k="; 23 23 }; 24 24 25 25 postPatch = ''
+3 -5
pkgs/development/python-modules/rich-pixels/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "rich-pixels"; 14 - version = "2.1.1"; 14 + version = "2.2.0"; 15 15 format = "pyproject"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "darrenburns"; 19 19 repo = "rich-pixels"; 20 20 rev = version; 21 - hash = "sha256-zI6jtEdmBAEGxyASo/6fiHdzwzoSwXN7A5x1CmYS5qc="; 21 + hash = "sha256-fbpnHEfBPWLSYhgETqKbdmmzt7Lu/4oKgetjgNvv04c="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 49 49 description = "A Rich-compatible library for writing pixel images and ASCII art to the terminal"; 50 50 homepage = "https://github.com/darrenburns/rich-pixels"; 51 51 changelog = "https://github.com/darrenburns/rich-pixels/releases/tag/${src.rev}"; 52 - # upstream has no license specified 53 - # https://github.com/darrenburns/rich-pixels/issues/11 54 - license = licenses.unfree; 52 + license = licenses.mit; 55 53 maintainers = with maintainers; [ figsoda ]; 56 54 }; 57 55 }
+2 -2
pkgs/development/python-modules/svg2tikz/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "svg2tikz"; 13 - version = "2.1.0"; 13 + version = "3.0.0"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 ··· 20 20 owner = "xyz2tex"; 21 21 repo = "svg2tikz"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-v8+0h90uJlkI5eJcwCG55nxPz8n2aJXwP8Ocp48cl9M="; 23 + hash = "sha256-YnWkj4xvjGzpKQv+H+spage+dy+fC9fJkqsOaQ6C1Ho="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "checkov"; 8 - version = "3.1.42"; 8 + version = "3.1.44"; 9 9 pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "bridgecrewio"; 13 13 repo = "checkov"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-tQemwSqlwVjBdxwJ22OY1CxZ/Kv06S9u0ECHtxe3Jm4="; 15 + hash = "sha256-dh52+MSaF3f0XWYQLeIzWrn29YUduplhXj2z+4yAOr4="; 16 16 }; 17 17 18 18 patches = [
+3 -3
pkgs/development/tools/build-managers/moon/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "moon"; 12 - version = "1.18.2"; 12 + version = "1.18.5"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "moonrepo"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - hash = "sha256-7z5hmwBb8PBrQzXn2fg4MU7/jCOF8Ul4nMza87QNXYk="; 18 + hash = "sha256-NZiFxcEdNdqR38VDJe4lC5maLTguk3+t78yG1zqXuA0="; 19 19 }; 20 20 21 - cargoHash = "sha256-1YarqedZ4SUs+Nv0qLeiFo+RCBu4e2Ejf4UI42hs8YQ="; 21 + cargoHash = "sha256-BecaYeQYYoP7SubTktYqOejFyCTRolmUTV7rpGwXOGI="; 22 22 23 23 env = { 24 24 RUSTFLAGS = "-C strip=symbols";
+2 -2
pkgs/development/tools/build-managers/xmake/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "xmake"; 15 - version = "2.8.5"; 15 + version = "2.8.6"; 16 16 17 17 src = fetchurl { 18 18 url = "https://github.com/xmake-io/xmake/releases/download/v${version}/xmake-v${version}.tar.gz"; 19 - hash = "sha256-GcZ747z8valsqHoY7/rDm/zMRD+7N1THu8AVEd7NJK8="; 19 + hash = "sha256-DmKE6v1RoyNgmCE8CVI39WrK+umoilBAa4gszl6iaz0="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/development/tools/gci/default.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "gci"; 8 - version = "0.12.0"; 8 + version = "0.12.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "daixiang0"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-75ye/624fDcWCn+H0gAYHRPcVUh+JJm3vU6T4w1T0jM="; 14 + sha256 = "sha256-h8vqpqohKQzd2IltHroo/AKnhufJsCC6qpSo8NYyhPI="; 15 15 }; 16 16 17 17 vendorHash = "sha256-bPRcOvwbWEpcJUlIqQNeoYME4ky0YE5LlyWhSTWCIHQ=";
-26
pkgs/development/tools/glide/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "glide"; 5 - version = "0.13.3"; 6 - 7 - goPackagePath = "github.com/Masterminds/glide"; 8 - 9 - ldflags = [ 10 - "-X main.version=${version}" 11 - ]; 12 - 13 - src = fetchFromGitHub { 14 - rev = "v${version}"; 15 - owner = "Masterminds"; 16 - repo = "glide"; 17 - sha256 = "1wskg1cxqy9sp0738qiiagdw09dbs3swxsk4z6w5hsfiq2h44a54"; 18 - }; 19 - 20 - meta = with lib; { 21 - homepage = "https://glide.sh"; 22 - description = "Package management for Go"; 23 - license = licenses.mit; 24 - maintainers = [ maintainers.rushmorem ]; 25 - }; 26 - }
-45
pkgs/development/tools/go2nix/default.nix
··· 1 - { lib, buildGoPackage, go-bindata, gotools, nix-prefetch-git, git, makeWrapper, 2 - fetchFromGitHub }: 3 - 4 - buildGoPackage rec { 5 - pname = "go2nix"; 6 - version = "1.3.0"; 7 - rev = "v${version}"; 8 - 9 - goPackagePath = "github.com/kamilchm/go2nix"; 10 - 11 - src = fetchFromGitHub { 12 - inherit rev; 13 - owner = "kamilchm"; 14 - repo = "go2nix"; 15 - sha256 = "1q61mgngvyl2bnmrqahh3bji402n76c7xwv29lwk007gymzgff0n"; 16 - }; 17 - 18 - goDeps = ./deps.nix; 19 - 20 - outputs = [ "out" "man" ]; 21 - 22 - nativeBuildInputs = [ go-bindata gotools makeWrapper ]; 23 - 24 - preBuild = "go generate ./..."; 25 - 26 - postInstall = '' 27 - wrapProgram $out/bin/go2nix \ 28 - --prefix PATH : ${nix-prefetch-git}/bin \ 29 - --prefix PATH : ${git}/bin 30 - 31 - mkdir -p $man/share/man/man1 32 - cp $src/go2nix.1 $man/share/man/man1 33 - ''; 34 - 35 - allowGoReference = true; 36 - 37 - doCheck = false; # tries to access the net 38 - 39 - meta = with lib; { 40 - description = "Go apps packaging for Nix"; 41 - homepage = "https://github.com/kamilchm/go2nix"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ kamilchm ]; 44 - }; 45 - }
-20
pkgs/development/tools/go2nix/deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "github.com/Masterminds/vcs"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://github.com/Masterminds/vcs"; 7 - rev = "7af28b64c5ec41b1558f5514fd938379822c237c"; 8 - sha256 = "127pamr5lkym3iq6z747bm4y4gyc02glrqb61yv82z1rdyv1dcf6"; 9 - }; 10 - } 11 - { 12 - goPackagePath = "github.com/jawher/mow.cli"; 13 - fetch = { 14 - type = "git"; 15 - url = "https://github.com/jawher/mow.cli"; 16 - rev = "772320464101e904cd51198160eb4d489be9cc49"; 17 - sha256 = "1a8hnh2k3vc3prjhnz4rjbiwhqq6r3mi18h9cdb6fc6s6yzjc19j"; 18 - }; 19 - } 20 - ]
+10 -15
pkgs/development/tools/language-servers/verible/default.nix
··· 2 2 , stdenv 3 3 , buildBazelPackage 4 4 , fetchFromGitHub 5 - , bazel_4 5 + , bazel_5 6 + , jdk 6 7 , bison 7 8 , flex 8 9 , python3 ··· 17 18 # These environment variables are read in bazel/build-version.py to create 18 19 # a build string shown in the tools --version output. 19 20 # If env variables not set, it would attempt to extract it from .git/. 20 - GIT_DATE = "2023-10-26"; 21 - GIT_VERSION = "v0.0-3428-gcfcbb82b"; 21 + GIT_DATE = "2023-12-23"; 22 + GIT_VERSION = "v0.0-3471-g9cb45092"; 22 23 23 24 # Derive nix package version from GIT_VERSION: "v1.2-345-abcde" -> "1.2.345" 24 25 version = builtins.concatStringsSep "." (lib.take 3 (lib.drop 1 (builtins.splitVersion GIT_VERSION))); ··· 27 28 owner = "chipsalliance"; 28 29 repo = "verible"; 29 30 rev = "${GIT_VERSION}"; 30 - hash = "sha256-snWhOuGyAdtdJDMttcbEjlkwPUO1mdR9vuro0tZt+Z8="; 31 + hash = "sha256-nFt5TeFv63Igx8Zer2s/ZLj5DsHeZj5V/+3burnEm9g="; 31 32 }; 32 33 33 34 patches = [ ··· 37 38 ./remove-unused-deps.patch 38 39 ]; 39 40 40 - bazel = bazel_4; 41 + bazel = bazel_5; 41 42 bazelFlags = [ 42 43 "--//bazel:use_local_flex_bison" 43 - "--javabase=@bazel_tools//tools/jdk:remote_jdk11" 44 - "--host_javabase=@bazel_tools//tools/jdk:remote_jdk11" 44 + "--java_runtime_version=local_jdk" 45 + "--tool_java_runtime_version=local_jdk" 45 46 ]; 46 47 47 48 fetchAttrs = { 48 - # Fixed output derivation hash after bazel fetch. 49 - # This varies per platform, probably from the JDK pulled in being part 50 - # of the output derivation ? Is there a more robust way to do this ? 51 - # (Hashes extracted from the ofborg build logs) 52 - sha256 = { 53 - aarch64-linux = "sha256-Hf/jF5Y7QS2ZNFmSx2LIb0b6gdjditE97HwWGqQJac8="; 54 - x86_64-linux = "sha256-WBp5Fi5vvKLVgRWvQ3VB7sY6ySpbwCdhU5KqZH9sLy4="; 55 - }.${system} or (throw "No hash for system: ${system}"); 49 + sha256 = "sha256-gZzrgZsHQ9zMoIDooVo9nRQbkJ41igme8wcNFj5EzWc="; 56 50 }; 57 51 58 52 nativeBuildInputs = [ 53 + jdk # bazel uses that. 59 54 bison # We use local flex and bison as WORKSPACE sources fail 60 55 flex # .. to compile with newer glibc 61 56 python3
+16 -16
pkgs/development/tools/misc/blackfire/php-probe.nix
··· 14 14 let 15 15 phpMajor = lib.versions.majorMinor php.version; 16 16 17 - version = "1.92.3"; 17 + version = "1.92.5"; 18 18 19 19 hashes = { 20 20 "x86_64-linux" = { 21 21 system = "amd64"; 22 22 hash = { 23 - "8.1" = "sha256-WyduRLnXWR8B5CPMfQyd9yBSTCb/SY/yH2Me8FSdKsk="; 24 - "8.2" = "sha256-oQbsQpftQnCzrAqdgkwuz9Igg0vWzYN030ZpkPL9a6Q="; 25 - "8.3" = "sha256-NVLVi6IRd+kJSkG0/70MFfCyv4qaFr/vI+96/taiBSQ="; 23 + "8.1" = "sha256-DT1ETsJGOebC0kt4zKiSMu/wF0TG2zUiNNh+Giokjz4="; 24 + "8.2" = "sha256-X/inhHAA34aQSycoSzT28jfntH3QTZgHPId5zYgcWT4="; 25 + "8.3" = "sha256-SHR+J+yFA2YxggdNPq2HtLkh9I3bG01TMk9EUKGkRM0="; 26 26 }; 27 27 }; 28 28 "i686-linux" = { 29 29 system = "i386"; 30 30 hash = { 31 - "8.1" = "sha256-5k3GAB4LoUYv/QS5EVv5xVhv7RfBYq4Tkzr7q/+As7M="; 32 - "8.2" = "sha256-VK7USg73q8WUQoq5dZ9au8TtbiCi9FUwi8CONEMipfQ="; 33 - "8.3" = "sha256-TT2lMVtI+Frn1EVzGUCy7MSkPhYOT6hgD4yzv3Bi4Uc="; 31 + "8.1" = "sha256-7aDO6shHWIAgby8qCwpc7aICnWyYvferqjDgtnYZCeI="; 32 + "8.2" = "sha256-mpHS9zUjgJnxvi3np2sUS0GhtOjhDOzlepRByYbjUCk="; 33 + "8.3" = "sha256-75C9NwMuUTNuAfdPRgtq4XK6bqo/IRa/SXfM7Wz2y90="; 34 34 }; 35 35 }; 36 36 "aarch64-linux" = { 37 37 system = "arm64"; 38 38 hash = { 39 - "8.1" = "sha256-t1I9CQ73iK3FM5dhTV68uitwjR+lNZgpWFhQnOkzTWU="; 40 - "8.2" = "sha256-+GtJVqpK1+CXJl4gxvttcs2fhDoNcvE1Gqd8TNy6IFU="; 41 - "8.3" = "sha256-KTKu6Nvv5Xdk3PzKzww5ZWYtG7eRgedU2AooYZGLE+0="; 39 + "8.1" = "sha256-Vj2rnKik+Fy+9yfbUMSOoiXTGm84YNPo1cfh9hojr9c="; 40 + "8.2" = "sha256-lvWwwKJj3/ZxAQcnbcjv/0CLqDDRiOkFo2rJeMhZLHQ="; 41 + "8.3" = "sha256-yqa5GE/FBINR3oFNTP1IZGnhSDYCfluRiEFiTSySjns="; 42 42 }; 43 43 }; 44 44 "aarch64-darwin" = { 45 45 system = "arm64"; 46 46 hash = { 47 - "8.1" = "sha256-q+2xEeHxb1jKz/5o83OuJGXQJ6EFLZ0esUzfe924vio="; 48 - "8.2" = "sha256-Ug6Y7nqSFGUcm4YvTrYTsxifavmPrsqfomNZceaiHpA="; 49 - "8.3" = "sha256-6BEK56Naxzk8m7UOV40pFqLTbSd7jsA8VEOPEKZjbzM="; 47 + "8.1" = "sha256-OcQtr16Qt6TsxPBG3OY/viGXqknKx5GdM/fcCJlFiaY="; 48 + "8.2" = "sha256-ay/6JwB959bT2f18LGMB5560dIPAPSAY5Nby44FGBMc="; 49 + "8.3" = "sha256-7yyhcusin7pLYZqjUgyIkDGmufIPX8cKWqplXetZzMU="; 50 50 }; 51 51 }; 52 52 "x86_64-darwin" = { 53 53 system = "amd64"; 54 54 hash = { 55 - "8.1" = "sha256-jE5z02gFUkFCBPg/KNrtRS53TifA3MkuztXQJm2x4qw="; 56 - "8.2" = "sha256-Ix+qb1jWHdxKAh0Vjpe9O2Yc0I6Qwb+qLK3vNLqpZVY="; 57 - "8.3" = "sha256-PjUFoZQnk4VRRCQE1OddzxV5LRPa2uQawpYzfooQSk8="; 55 + "8.1" = "sha256-l0xgj0tAjYNI0EwoZhnGpRadg5EJtBlt5WhylmZaGDg="; 56 + "8.2" = "sha256-lD6lE6u9nzHhHPTPLoGKaDsZlvrpbshd+4fr4ua8H8c="; 57 + "8.3" = "sha256-CMPv+pDPJVwQ4gDAnQxyeJXp4YYkwAVoSdS3a+49fDU="; 58 58 }; 59 59 }; 60 60 };
+2 -2
pkgs/development/tools/okteto/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "okteto"; 5 - version = "2.23.1"; 5 + version = "2.23.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okteto"; 9 9 repo = "okteto"; 10 10 rev = version; 11 - hash = "sha256-ZBNSGBTTZ7U8NHmMVa+gyNR2WS95I5a/fgHwsTNJqUk="; 11 + hash = "sha256-CR3ay54Z/h/mYomWtoOqV0Ynq+iygLR5Zd31gaEQ098="; 12 12 }; 13 13 14 14 vendorHash = "sha256-HodvOSuzp57ijaShCJ+fnX5qk4o5LzMLOfPnpDlc2FU=";
+3 -3
pkgs/development/tools/pulumictl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pulumictl"; 5 - version = "0.0.45"; 5 + version = "0.0.46"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pulumi"; 9 9 repo = "pulumictl"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-DDuzJcYfa0zHqLdyoZ/Vi14+0C6ucgkmb5ndrhTlOik="; 11 + sha256 = "sha256-7A6dx/5091FIQ2AB6C+Z2CjhTBx2e6iB21Du2u9EiHY="; 12 12 }; 13 13 14 - vendorHash = "sha256-XOgHvOaHExazQfsu1brYDq1o2fUh6dZeJlpVhCQX9ns="; 14 + vendorHash = "sha256-Wktr3TXSIIzbkiT3Gk5i4K58gahnxySi6ht30li+Z0o="; 15 15 16 16 ldflags = [ 17 17 "-s" "-w" "-X=github.com/pulumi/pulumictl/pkg/version.Version=${src.rev}"
+3 -3
pkgs/development/tools/the-way/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "the-way"; 5 - version = "0.19.2"; 5 + version = "0.20.1"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-jTyKz9ZvA9xJlDQXv2LHrSMeSDbh4AJBxi1WtqUhjgE="; 9 + sha256 = "sha256-xOoqMqUFVCTS5gQnX4KEoXoMxVvQX3JRoNgzuA20M6g="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-D0H8vChCzBCRjC/S/ceJbuNNAXISiFMZtgu8TMfic+0="; 12 + cargoHash = "sha256-8eN+O3lygbftXVjIBWCwNfYKAIkmPF/eaUKDa9oVaCA="; 13 13 14 14 nativeBuildInputs = [ installShellFiles ]; 15 15
+1780 -363
pkgs/games/anki/Cargo.lock
··· 18 18 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 19 20 20 [[package]] 21 + name = "aes" 22 + version = "0.8.3" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 25 + dependencies = [ 26 + "cfg-if", 27 + "cipher", 28 + "cpufeatures", 29 + ] 30 + 31 + [[package]] 21 32 name = "ahash" 22 - version = "0.8.5" 33 + version = "0.8.6" 23 34 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "cd7d5a2cecb58716e47d67d5703a249964b14c7be1ec3cad3affc295b2d1c35d" 35 + checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 25 36 dependencies = [ 26 37 "cfg-if", 27 38 "once_cell", ··· 115 126 "hyper", 116 127 "id_tree", 117 128 "inflections", 118 - "itertools 0.11.0", 129 + "itertools 0.12.0", 119 130 "lazy_static", 120 131 "nom", 121 132 "num_cpus", ··· 141 152 "sha1", 142 153 "snafu", 143 154 "strum", 144 - "syn 2.0.38", 155 + "syn 2.0.39", 145 156 "tempfile", 146 157 "tokio", 147 158 "tokio-util", ··· 153 164 "unicase", 154 165 "unicode-normalization", 155 166 "utime", 156 - "windows", 167 + "windows 0.52.0", 157 168 "wiremock", 158 169 "zip", 159 - "zstd", 170 + "zstd 0.13.0", 160 171 ] 161 172 162 173 [[package]] ··· 177 188 "fluent-syntax", 178 189 "inflections", 179 190 "intl-memoizer", 180 - "itertools 0.11.0", 191 + "itertools 0.12.0", 181 192 "num-format", 182 193 "phf 0.11.2", 183 194 "serde", ··· 198 209 name = "anki_process" 199 210 version = "0.0.0" 200 211 dependencies = [ 201 - "itertools 0.11.0", 212 + "itertools 0.12.0", 202 213 "snafu", 203 214 ] 204 215 ··· 210 221 "anki_proto_gen", 211 222 "anyhow", 212 223 "inflections", 213 - "itertools 0.11.0", 224 + "itertools 0.12.0", 214 225 "prost", 215 226 "prost-build", 216 227 "prost-reflect", ··· 228 239 "anyhow", 229 240 "camino", 230 241 "inflections", 231 - "itertools 0.11.0", 242 + "itertools 0.12.0", 232 243 "once_cell", 233 244 "prost-reflect", 234 245 "prost-types", ··· 258 269 259 270 [[package]] 260 271 name = "anstyle-parse" 261 - version = "0.2.2" 272 + version = "0.2.3" 262 273 source = "registry+https://github.com/rust-lang/crates.io-index" 263 - checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" 274 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 264 275 dependencies = [ 265 276 "utf8parse", 266 277 ] 267 278 268 279 [[package]] 269 280 name = "anstyle-query" 270 - version = "1.0.0" 281 + version = "1.0.1" 271 282 source = "registry+https://github.com/rust-lang/crates.io-index" 272 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 283 + checksum = "a3a318f1f38d2418400f8209655bfd825785afd25aa30bb7ba6cc792e4596748" 273 284 dependencies = [ 274 - "windows-sys", 285 + "windows-sys 0.52.0", 275 286 ] 276 287 277 288 [[package]] 278 289 name = "anstyle-wincon" 279 - version = "3.0.1" 290 + version = "3.0.2" 280 291 source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 292 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 282 293 dependencies = [ 283 294 "anstyle", 284 - "windows-sys", 295 + "windows-sys 0.52.0", 285 296 ] 286 297 287 298 [[package]] ··· 315 326 checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 316 327 317 328 [[package]] 329 + name = "ash" 330 + version = "0.37.3+1.3.251" 331 + source = "registry+https://github.com/rust-lang/crates.io-index" 332 + checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a" 333 + dependencies = [ 334 + "libloading 0.7.4", 335 + ] 336 + 337 + [[package]] 318 338 name = "assert-json-diff" 319 339 version = "2.0.2" 320 340 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 337 357 338 358 [[package]] 339 359 name = "async-compression" 340 - version = "0.4.4" 360 + version = "0.4.5" 341 361 source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" 362 + checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 343 363 dependencies = [ 344 364 "futures-core", 345 365 "memchr", 346 366 "pin-project-lite", 347 367 "tokio", 348 - "zstd", 349 - "zstd-safe", 368 + "zstd 0.13.0", 369 + "zstd-safe 7.0.0", 350 370 ] 351 371 352 372 [[package]] ··· 368 388 dependencies = [ 369 389 "proc-macro2", 370 390 "quote", 371 - "syn 2.0.38", 391 + "syn 2.0.39", 372 392 ] 373 393 374 394 [[package]] ··· 379 399 dependencies = [ 380 400 "proc-macro2", 381 401 "quote", 382 - "syn 2.0.38", 402 + "syn 2.0.39", 383 403 ] 384 404 385 405 [[package]] ··· 460 480 "heck", 461 481 "proc-macro2", 462 482 "quote", 463 - "syn 2.0.38", 483 + "syn 2.0.39", 464 484 ] 465 485 466 486 [[package]] ··· 491 511 checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 492 512 493 513 [[package]] 514 + name = "base64ct" 515 + version = "1.6.0" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 518 + 519 + [[package]] 494 520 name = "bincode" 495 521 version = "2.0.0-rc.3" 496 522 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 500 526 ] 501 527 502 528 [[package]] 529 + name = "bit-set" 530 + version = "0.5.3" 531 + source = "registry+https://github.com/rust-lang/crates.io-index" 532 + checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 533 + dependencies = [ 534 + "bit-vec", 535 + ] 536 + 537 + [[package]] 538 + name = "bit-vec" 539 + version = "0.6.3" 540 + source = "registry+https://github.com/rust-lang/crates.io-index" 541 + checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 542 + 543 + [[package]] 544 + name = "bit_field" 545 + version = "0.10.2" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 548 + 549 + [[package]] 503 550 name = "bitflags" 504 551 version = "1.3.2" 505 552 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 521 568 "arrayvec", 522 569 "cc", 523 570 "cfg-if", 524 - "constant_time_eq", 571 + "constant_time_eq 0.3.0", 525 572 ] 526 573 527 574 [[package]] 575 + name = "block" 576 + version = "0.1.6" 577 + source = "registry+https://github.com/rust-lang/crates.io-index" 578 + checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 579 + 580 + [[package]] 528 581 name = "block-buffer" 529 582 version = "0.10.4" 530 583 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 544 597 545 598 [[package]] 546 599 name = "bstr" 547 - version = "1.7.0" 600 + version = "1.8.0" 548 601 source = "registry+https://github.com/rust-lang/crates.io-index" 549 - checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" 602 + checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 550 603 dependencies = [ 551 604 "memchr", 552 605 "regex-automata 0.4.3", ··· 561 614 562 615 [[package]] 563 616 name = "burn" 564 - version = "0.10.0" 617 + version = "0.11.1" 565 618 source = "registry+https://github.com/rust-lang/crates.io-index" 566 - checksum = "e06bb3dfa90408228c879224e26a8bbf072aa2a68194c9b512f715624525c7cc" 619 + checksum = "d5008368c07b8ffc5c8bde2ebf31b59bdd263fdd825152bd0a9d333a220ba44f" 567 620 dependencies = [ 568 621 "burn-core", 569 622 "burn-train", ··· 571 624 572 625 [[package]] 573 626 name = "burn-autodiff" 574 - version = "0.10.0" 627 + version = "0.11.1" 575 628 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "b20c3ba4141da32bbcc48a4ce33a0fbf09742dfb6f17d6e781f27e076bf06d82" 629 + checksum = "176a12ffd413ba2bfafa2b4ed1e2a21d7880b67a1ac3a9bb4919c9c0f102cdd7" 577 630 dependencies = [ 578 631 "burn-common", 579 632 "burn-tensor", ··· 583 636 ] 584 637 585 638 [[package]] 639 + name = "burn-candle" 640 + version = "0.11.1" 641 + source = "registry+https://github.com/rust-lang/crates.io-index" 642 + checksum = "ce2556eb085f2ef1cd8d0d6d932f8a64f529c5d0487ea7e4a868fe6a65e3d892" 643 + dependencies = [ 644 + "burn-tensor", 645 + "candle-core", 646 + "derive-new", 647 + "half 2.3.1", 648 + ] 649 + 650 + [[package]] 586 651 name = "burn-common" 587 - version = "0.10.0" 652 + version = "0.11.1" 588 653 source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "2ce227728da80c4c7f932e66900d285ff6e04b815d77d769fd2ade463acb0d52" 654 + checksum = "7dcb7947986d5420a9126959a5f16675f2d7b822bacc60a966fcfcf5a7dbd247" 590 655 dependencies = [ 591 656 "async-trait", 592 657 "derive-new", 593 - "getrandom 0.2.10", 658 + "getrandom 0.2.11", 594 659 "rand 0.8.5", 595 660 "spin 0.9.8", 596 661 "uuid", 597 662 ] 598 663 599 664 [[package]] 665 + name = "burn-compute" 666 + version = "0.11.1" 667 + source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "08dfd31ce4d27c64358991c23a26d8aaa2d9cb0f8517c7e79d01f2fe8d6c1eb0" 669 + dependencies = [ 670 + "burn-common", 671 + "derive-new", 672 + "hashbrown 0.14.3", 673 + "log", 674 + "spin 0.9.8", 675 + ] 676 + 677 + [[package]] 600 678 name = "burn-core" 601 - version = "0.10.0" 679 + version = "0.11.1" 602 680 source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "fbbeb7c07436e89d3b7e2445198f5d4142255bf74564eb4dc6cb9898f00d2da5" 681 + checksum = "2067024ff50b21e29e6835a7cc8189046024fc7c174f1d2d635a4955c5151fe5" 604 682 dependencies = [ 605 683 "bincode", 606 684 "burn-autodiff", 685 + "burn-candle", 607 686 "burn-common", 608 687 "burn-dataset", 609 688 "burn-derive", 689 + "burn-fusion", 610 690 "burn-ndarray", 691 + "burn-tch", 611 692 "burn-tensor", 693 + "burn-wgpu", 612 694 "derive-new", 613 695 "flate2", 614 696 "half 2.3.1", 615 - "hashbrown 0.14.2", 697 + "hashbrown 0.14.3", 616 698 "libm", 617 699 "log", 618 700 "rand 0.8.5", ··· 624 706 625 707 [[package]] 626 708 name = "burn-dataset" 627 - version = "0.10.0" 709 + version = "0.11.1" 628 710 source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "1c7f12f9a55e82d327384e20c394c79e5a414b245fe59c37346e7a98234d1707" 711 + checksum = "a9f3481ac13ad69279d4922cf17866aa99841b76db49d9a7915a7521d772a345" 630 712 dependencies = [ 631 713 "csv", 632 714 "derive-new", 633 715 "dirs", 716 + "gix-tempfile", 717 + "image", 718 + "r2d2", 719 + "r2d2_sqlite", 634 720 "rand 0.8.5", 635 721 "rmp-serde", 722 + "rusqlite", 636 723 "sanitize-filename", 637 724 "serde", 638 725 "serde_json", 726 + "serde_rusqlite", 639 727 "strum", 640 728 "strum_macros", 641 729 "tempfile", ··· 644 732 645 733 [[package]] 646 734 name = "burn-derive" 647 - version = "0.10.0" 735 + version = "0.11.1" 648 736 source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "0726d6006ab4f1c65b37b079a8663ad168110976fb57234764495ed8c49a94b6" 737 + checksum = "d44415ff69a525b49272a5ed893655441834f9ee6cac3ffe2b2387326042d8fc" 650 738 dependencies = [ 651 739 "derive-new", 652 740 "proc-macro2", 653 741 "quote", 654 - "syn 2.0.38", 742 + "syn 2.0.39", 743 + ] 744 + 745 + [[package]] 746 + name = "burn-fusion" 747 + version = "0.11.1" 748 + source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "821663ff1f79865d6b0e998230683f72ff4351608770c07f91e39953e89fbec6" 750 + dependencies = [ 751 + "burn-common", 752 + "burn-tensor", 753 + "derive-new", 754 + "hashbrown 0.14.3", 755 + "spin 0.9.8", 655 756 ] 656 757 657 758 [[package]] 658 759 name = "burn-ndarray" 659 - version = "0.10.0" 760 + version = "0.11.1" 660 761 source = "registry+https://github.com/rust-lang/crates.io-index" 661 - checksum = "0cbba6e5180a91a48e2e5da7e74107d82dae9cc94a772a73783eb1381dd71fa2" 762 + checksum = "0448005c7ed6f1636ca0e12a148613fdd4d5739e1db8b241c7940140098f4fe3" 662 763 dependencies = [ 663 764 "burn-autodiff", 664 765 "burn-common", ··· 674 775 ] 675 776 676 777 [[package]] 778 + name = "burn-tch" 779 + version = "0.11.1" 780 + source = "registry+https://github.com/rust-lang/crates.io-index" 781 + checksum = "197d7276dd95abe3872fdbdfedd091730700aef7d83542ecc9d20a015791d968" 782 + dependencies = [ 783 + "burn-tensor", 784 + "half 2.3.1", 785 + "libc", 786 + "rand 0.8.5", 787 + "tch", 788 + ] 789 + 790 + [[package]] 677 791 name = "burn-tensor" 678 - version = "0.10.0" 792 + version = "0.11.1" 679 793 source = "registry+https://github.com/rust-lang/crates.io-index" 680 - checksum = "c4ddf687c9e2ddf235bb1528530b5e6c04601d4240aca78de6484fd01cc81e9f" 794 + checksum = "60f8cf3d9588047b7d221c718b7208b829fdd1050150a69d069b66e1bb6e6cbb" 681 795 dependencies = [ 682 796 "burn-common", 683 797 "burn-tensor-testgen", 684 798 "derive-new", 685 799 "half 2.3.1", 686 - "hashbrown 0.14.2", 800 + "hashbrown 0.14.3", 687 801 "libm", 688 802 "num-traits", 689 803 "rand 0.8.5", ··· 693 807 694 808 [[package]] 695 809 name = "burn-tensor-testgen" 696 - version = "0.10.0" 810 + version = "0.11.1" 697 811 source = "registry+https://github.com/rust-lang/crates.io-index" 698 - checksum = "f92da000e738bcf20ec873d63c3b46ed4e0afa10fb14ea3133874886c0fb591f" 812 + checksum = "a555a79ab0ab974e61aee15e62e87576ca47e7df768f68145754527d31633f87" 699 813 dependencies = [ 700 814 "proc-macro2", 701 815 "quote", 702 - "syn 2.0.38", 703 816 ] 704 817 705 818 [[package]] 706 819 name = "burn-train" 707 - version = "0.10.0" 820 + version = "0.11.1" 708 821 source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "f7b6ae54075e0f4ea7da7d1e6b94fb84854aed912885a2a957e9ce1e18aae12a" 822 + checksum = "eb7defef4e44f0780d25c0aaf4d55efc96fb726b3f5d60902da682a59692359d" 710 823 dependencies = [ 711 824 "burn-core", 712 825 "derive-new", ··· 718 831 ] 719 832 720 833 [[package]] 834 + name = "burn-wgpu" 835 + version = "0.11.1" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "8676fa583cfa91db6f2ed26d8e42197fd378c15ed1e8a62c07286cb88f1971ec" 838 + dependencies = [ 839 + "burn-common", 840 + "burn-compute", 841 + "burn-tensor", 842 + "bytemuck", 843 + "derive-new", 844 + "futures-intrusive", 845 + "hashbrown 0.14.3", 846 + "log", 847 + "num-traits", 848 + "pollster", 849 + "rand 0.8.5", 850 + "serde", 851 + "spin 0.9.8", 852 + "text_placeholder", 853 + "wgpu", 854 + ] 855 + 856 + [[package]] 857 + name = "bytemuck" 858 + version = "1.14.0" 859 + source = "registry+https://github.com/rust-lang/crates.io-index" 860 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 861 + dependencies = [ 862 + "bytemuck_derive", 863 + ] 864 + 865 + [[package]] 866 + name = "bytemuck_derive" 867 + version = "1.5.0" 868 + source = "registry+https://github.com/rust-lang/crates.io-index" 869 + checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 870 + dependencies = [ 871 + "proc-macro2", 872 + "quote", 873 + "syn 2.0.39", 874 + ] 875 + 876 + [[package]] 721 877 name = "byteorder" 722 878 version = "1.5.0" 723 879 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 730 886 checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 731 887 732 888 [[package]] 889 + name = "bzip2" 890 + version = "0.4.4" 891 + source = "registry+https://github.com/rust-lang/crates.io-index" 892 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 893 + dependencies = [ 894 + "bzip2-sys", 895 + "libc", 896 + ] 897 + 898 + [[package]] 899 + name = "bzip2-sys" 900 + version = "0.1.11+1.0.8" 901 + source = "registry+https://github.com/rust-lang/crates.io-index" 902 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 903 + dependencies = [ 904 + "cc", 905 + "libc", 906 + "pkg-config", 907 + ] 908 + 909 + [[package]] 733 910 name = "camino" 734 911 version = "1.1.6" 735 912 source = "registry+https://github.com/rust-lang/crates.io-index" 736 913 checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 737 914 738 915 [[package]] 916 + name = "candle-core" 917 + version = "0.3.1" 918 + source = "registry+https://github.com/rust-lang/crates.io-index" 919 + checksum = "d60d9b91c73bc662dc45aff607f5ffe79724b7cf7d7c8dc12a72b25921683b67" 920 + dependencies = [ 921 + "byteorder", 922 + "gemm", 923 + "half 2.3.1", 924 + "memmap2", 925 + "num-traits", 926 + "num_cpus", 927 + "rand 0.8.5", 928 + "rand_distr", 929 + "rayon", 930 + "safetensors", 931 + "thiserror", 932 + "yoke", 933 + "zip", 934 + ] 935 + 936 + [[package]] 739 937 name = "cast" 740 938 version = "0.3.0" 741 939 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 775 973 "android-tzdata", 776 974 "iana-time-zone", 777 975 "num-traits", 778 - "windows-targets", 976 + "windows-targets 0.48.5", 779 977 ] 780 978 781 979 [[package]] ··· 817 1015 818 1016 [[package]] 819 1017 name = "clap" 820 - version = "4.4.7" 1018 + version = "4.4.11" 821 1019 source = "registry+https://github.com/rust-lang/crates.io-index" 822 - checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" 1020 + checksum = "bfaff671f6b22ca62406885ece523383b9b64022e341e53e009a62ebc47a45f2" 823 1021 dependencies = [ 824 1022 "clap_builder", 825 1023 "clap_derive", ··· 827 1025 828 1026 [[package]] 829 1027 name = "clap_builder" 830 - version = "4.4.7" 1028 + version = "4.4.11" 831 1029 source = "registry+https://github.com/rust-lang/crates.io-index" 832 - checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" 1030 + checksum = "a216b506622bb1d316cd51328dce24e07bdff4a6128a47c7e7fad11878d5adbb" 833 1031 dependencies = [ 834 1032 "anstream", 835 1033 "anstyle", ··· 856 1054 "heck", 857 1055 "proc-macro2", 858 1056 "quote", 859 - "syn 2.0.38", 1057 + "syn 2.0.39", 860 1058 ] 861 1059 862 1060 [[package]] ··· 867 1065 868 1066 [[package]] 869 1067 name = "coarsetime" 870 - version = "0.1.29" 1068 + version = "0.1.33" 871 1069 source = "registry+https://github.com/rust-lang/crates.io-index" 872 - checksum = "a73ef0d00d14301df35d0f13f5ea32344de6b00837485c358458f1e7f2d27db4" 1070 + checksum = "71367d3385c716342014ad17e3d19f7788ae514885a1f4c24f500260fb365e1a" 873 1071 dependencies = [ 874 1072 "libc", 875 1073 "once_cell", ··· 899 1097 ] 900 1098 901 1099 [[package]] 1100 + name = "color_quant" 1101 + version = "1.1.0" 1102 + source = "registry+https://github.com/rust-lang/crates.io-index" 1103 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 1104 + 1105 + [[package]] 902 1106 name = "colorchoice" 903 1107 version = "1.0.0" 904 1108 source = "registry+https://github.com/rust-lang/crates.io-index" 905 1109 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 906 1110 907 1111 [[package]] 1112 + name = "com-rs" 1113 + version = "0.2.1" 1114 + source = "registry+https://github.com/rust-lang/crates.io-index" 1115 + checksum = "bf43edc576402991846b093a7ca18a3477e0ef9c588cde84964b5d3e43016642" 1116 + 1117 + [[package]] 908 1118 name = "concurrent-queue" 909 - version = "2.3.0" 1119 + version = "2.4.0" 910 1120 source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 1121 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 912 1122 dependencies = [ 913 1123 "crossbeam-utils", 914 1124 ] ··· 918 1128 version = "0.0.0" 919 1129 dependencies = [ 920 1130 "anyhow", 921 - "itertools 0.11.0", 1131 + "itertools 0.12.0", 922 1132 "ninja_gen", 923 1133 ] 924 1134 925 1135 [[package]] 926 1136 name = "constant_time_eq" 1137 + version = "0.1.5" 1138 + source = "registry+https://github.com/rust-lang/crates.io-index" 1139 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 1140 + 1141 + [[package]] 1142 + name = "constant_time_eq" 927 1143 version = "0.3.0" 928 1144 source = "registry+https://github.com/rust-lang/crates.io-index" 929 1145 checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" ··· 939 1155 940 1156 [[package]] 941 1157 name = "core-foundation" 942 - version = "0.9.3" 1158 + version = "0.9.4" 943 1159 source = "registry+https://github.com/rust-lang/crates.io-index" 944 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1160 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 945 1161 dependencies = [ 946 1162 "core-foundation-sys", 947 1163 "libc", ··· 949 1165 950 1166 [[package]] 951 1167 name = "core-foundation-sys" 952 - version = "0.8.4" 1168 + version = "0.8.6" 953 1169 source = "registry+https://github.com/rust-lang/crates.io-index" 954 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1170 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1171 + 1172 + [[package]] 1173 + name = "core-graphics-types" 1174 + version = "0.1.3" 1175 + source = "registry+https://github.com/rust-lang/crates.io-index" 1176 + checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 1177 + dependencies = [ 1178 + "bitflags 1.3.2", 1179 + "core-foundation", 1180 + "libc", 1181 + ] 955 1182 956 1183 [[package]] 957 1184 name = "cpufeatures" 958 - version = "0.2.10" 1185 + version = "0.2.11" 959 1186 source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "3fbc60abd742b35f2492f808e1abbb83d45f72db402e14c55057edc9c7b1e9e4" 1187 + checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 961 1188 dependencies = [ 962 1189 "libc", 963 1190 ] ··· 1088 1315 ] 1089 1316 1090 1317 [[package]] 1318 + name = "d3d12" 1319 + version = "0.7.0" 1320 + source = "registry+https://github.com/rust-lang/crates.io-index" 1321 + checksum = "e16e44ab292b1dddfdaf7be62cfd8877df52f2f3fde5858d95bab606be259f20" 1322 + dependencies = [ 1323 + "bitflags 2.4.1", 1324 + "libloading 0.8.1", 1325 + "winapi", 1326 + ] 1327 + 1328 + [[package]] 1329 + name = "dashmap" 1330 + version = "5.5.3" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 1333 + dependencies = [ 1334 + "cfg-if", 1335 + "hashbrown 0.14.3", 1336 + "lock_api", 1337 + "once_cell", 1338 + "parking_lot_core", 1339 + ] 1340 + 1341 + [[package]] 1091 1342 name = "data-encoding" 1092 - version = "2.4.0" 1343 + version = "2.5.0" 1093 1344 source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 1345 + checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 1095 1346 1096 1347 [[package]] 1097 1348 name = "deadpool" ··· 1114 1365 1115 1366 [[package]] 1116 1367 name = "deranged" 1117 - version = "0.3.9" 1368 + version = "0.3.10" 1118 1369 source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 1370 + checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" 1120 1371 dependencies = [ 1121 1372 "powerfmt", 1122 1373 ] ··· 1176 1427 "libc", 1177 1428 "option-ext", 1178 1429 "redox_users", 1179 - "windows-sys", 1430 + "windows-sys 0.48.0", 1180 1431 ] 1181 1432 1182 1433 [[package]] ··· 1187 1438 dependencies = [ 1188 1439 "proc-macro2", 1189 1440 "quote", 1190 - "syn 2.0.38", 1441 + "syn 2.0.39", 1191 1442 ] 1192 1443 1193 1444 [[package]] ··· 1215 1466 checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 1216 1467 1217 1468 [[package]] 1469 + name = "dyn-stack" 1470 + version = "0.10.0" 1471 + source = "registry+https://github.com/rust-lang/crates.io-index" 1472 + checksum = "56e53799688f5632f364f8fb387488dd05db9fe45db7011be066fc20e7027f8b" 1473 + dependencies = [ 1474 + "bytemuck", 1475 + "reborrow", 1476 + ] 1477 + 1478 + [[package]] 1218 1479 name = "either" 1219 1480 version = "1.9.0" 1220 1481 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1243 1504 1244 1505 [[package]] 1245 1506 name = "env_logger" 1246 - version = "0.10.0" 1507 + version = "0.10.1" 1247 1508 source = "registry+https://github.com/rust-lang/crates.io-index" 1248 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1509 + checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 1249 1510 dependencies = [ 1250 1511 "humantime", 1251 1512 "is-terminal", ··· 1271 1532 1272 1533 [[package]] 1273 1534 name = "errno" 1274 - version = "0.3.5" 1535 + version = "0.3.8" 1275 1536 source = "registry+https://github.com/rust-lang/crates.io-index" 1276 - checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 1537 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1277 1538 dependencies = [ 1278 1539 "libc", 1279 - "windows-sys", 1540 + "windows-sys 0.52.0", 1280 1541 ] 1281 1542 1282 1543 [[package]] ··· 1286 1547 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1287 1548 1288 1549 [[package]] 1550 + name = "exr" 1551 + version = "1.6.4" 1552 + source = "registry+https://github.com/rust-lang/crates.io-index" 1553 + checksum = "279d3efcc55e19917fff7ab3ddd6c14afb6a90881a0078465196fe2f99d08c56" 1554 + dependencies = [ 1555 + "bit_field", 1556 + "flume 0.10.14", 1557 + "half 2.3.1", 1558 + "lebe", 1559 + "miniz_oxide", 1560 + "rayon-core", 1561 + "smallvec", 1562 + "zune-inflate", 1563 + ] 1564 + 1565 + [[package]] 1289 1566 name = "fallible-iterator" 1290 - version = "0.2.0" 1567 + version = "0.3.0" 1291 1568 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1569 + checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 1293 1570 1294 1571 [[package]] 1295 1572 name = "fallible-streaming-iterator" ··· 1298 1575 checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1299 1576 1300 1577 [[package]] 1578 + name = "faster-hex" 1579 + version = "0.8.1" 1580 + source = "registry+https://github.com/rust-lang/crates.io-index" 1581 + checksum = "239f7bfb930f820ab16a9cd95afc26f88264cf6905c960b340a615384aa3338a" 1582 + dependencies = [ 1583 + "serde", 1584 + ] 1585 + 1586 + [[package]] 1301 1587 name = "fastrand" 1302 1588 version = "1.9.0" 1303 1589 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1313 1599 checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1314 1600 1315 1601 [[package]] 1602 + name = "fdeflate" 1603 + version = "0.3.1" 1604 + source = "registry+https://github.com/rust-lang/crates.io-index" 1605 + checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 1606 + dependencies = [ 1607 + "simd-adler32", 1608 + ] 1609 + 1610 + [[package]] 1316 1611 name = "filetime" 1317 - version = "0.2.22" 1612 + version = "0.2.23" 1318 1613 source = "registry+https://github.com/rust-lang/crates.io-index" 1319 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1614 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1320 1615 dependencies = [ 1321 1616 "cfg-if", 1322 1617 "libc", 1323 - "redox_syscall 0.3.5", 1324 - "windows-sys", 1618 + "redox_syscall", 1619 + "windows-sys 0.52.0", 1620 + ] 1621 + 1622 + [[package]] 1623 + name = "find-crate" 1624 + version = "0.6.3" 1625 + source = "registry+https://github.com/rust-lang/crates.io-index" 1626 + checksum = "59a98bbaacea1c0eb6a0876280051b892eb73594fd90cf3b20e9c817029c57d2" 1627 + dependencies = [ 1628 + "toml", 1325 1629 ] 1326 1630 1327 1631 [[package]] ··· 1372 1676 "intl-memoizer", 1373 1677 "intl_pluralrules", 1374 1678 "rustc-hash", 1375 - "self_cell", 1679 + "self_cell 0.10.3", 1376 1680 "smallvec", 1377 1681 "unic-langid", 1378 1682 ] ··· 1396 1700 ] 1397 1701 1398 1702 [[package]] 1703 + name = "flume" 1704 + version = "0.10.14" 1705 + source = "registry+https://github.com/rust-lang/crates.io-index" 1706 + checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1707 + dependencies = [ 1708 + "futures-core", 1709 + "futures-sink", 1710 + "nanorand", 1711 + "pin-project", 1712 + "spin 0.9.8", 1713 + ] 1714 + 1715 + [[package]] 1716 + name = "flume" 1717 + version = "0.11.0" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1720 + dependencies = [ 1721 + "futures-core", 1722 + "futures-sink", 1723 + "nanorand", 1724 + "spin 0.9.8", 1725 + ] 1726 + 1727 + [[package]] 1399 1728 name = "fnv" 1400 1729 version = "1.0.7" 1401 1730 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1407 1736 source = "registry+https://github.com/rust-lang/crates.io-index" 1408 1737 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1409 1738 dependencies = [ 1410 - "foreign-types-shared", 1739 + "foreign-types-shared 0.1.1", 1740 + ] 1741 + 1742 + [[package]] 1743 + name = "foreign-types" 1744 + version = "0.5.0" 1745 + source = "registry+https://github.com/rust-lang/crates.io-index" 1746 + checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1747 + dependencies = [ 1748 + "foreign-types-macros", 1749 + "foreign-types-shared 0.3.1", 1750 + ] 1751 + 1752 + [[package]] 1753 + name = "foreign-types-macros" 1754 + version = "0.2.3" 1755 + source = "registry+https://github.com/rust-lang/crates.io-index" 1756 + checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1757 + dependencies = [ 1758 + "proc-macro2", 1759 + "quote", 1760 + "syn 2.0.39", 1411 1761 ] 1412 1762 1413 1763 [[package]] ··· 1417 1767 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1418 1768 1419 1769 [[package]] 1770 + name = "foreign-types-shared" 1771 + version = "0.3.1" 1772 + source = "registry+https://github.com/rust-lang/crates.io-index" 1773 + checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1774 + 1775 + [[package]] 1420 1776 name = "form_urlencoded" 1421 - version = "1.2.0" 1777 + version = "1.2.1" 1422 1778 source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1779 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1424 1780 dependencies = [ 1425 1781 "percent-encoding", 1426 1782 ] ··· 1457 1813 [[package]] 1458 1814 name = "fsrs" 1459 1815 version = "0.1.0" 1460 - source = "git+https://github.com/open-spaced-repetition/fsrs-rs.git?rev=725417fe310b74a719e18c2127f64223be1cb669#725417fe310b74a719e18c2127f64223be1cb669" 1816 + source = "git+https://github.com/open-spaced-repetition/fsrs-rs.git?rev=f45f46bdba6625f03677eaeb039dd8a6ffcad688#f45f46bdba6625f03677eaeb039dd8a6ffcad688" 1461 1817 dependencies = [ 1462 1818 "burn", 1463 - "itertools 0.11.0", 1819 + "itertools 0.12.0", 1464 1820 "log", 1465 1821 "ndarray", 1466 1822 "ndarray-rand", ··· 1481 1837 "camino", 1482 1838 "clap", 1483 1839 "fluent-syntax", 1484 - "itertools 0.11.0", 1840 + "itertools 0.12.0", 1485 1841 "lazy_static", 1486 1842 "regex", 1487 1843 "serde_json", ··· 1501 1857 1502 1858 [[package]] 1503 1859 name = "futures" 1504 - version = "0.3.28" 1860 + version = "0.3.29" 1505 1861 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1862 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1507 1863 dependencies = [ 1508 1864 "futures-channel", 1509 1865 "futures-core", ··· 1516 1872 1517 1873 [[package]] 1518 1874 name = "futures-channel" 1519 - version = "0.3.28" 1875 + version = "0.3.29" 1520 1876 source = "registry+https://github.com/rust-lang/crates.io-index" 1521 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1877 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1522 1878 dependencies = [ 1523 1879 "futures-core", 1524 1880 "futures-sink", ··· 1526 1882 1527 1883 [[package]] 1528 1884 name = "futures-core" 1529 - version = "0.3.28" 1885 + version = "0.3.29" 1530 1886 source = "registry+https://github.com/rust-lang/crates.io-index" 1531 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1887 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1532 1888 1533 1889 [[package]] 1534 1890 name = "futures-executor" 1535 - version = "0.3.28" 1891 + version = "0.3.29" 1536 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1893 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1538 1894 dependencies = [ 1539 1895 "futures-core", 1540 1896 "futures-task", ··· 1542 1898 ] 1543 1899 1544 1900 [[package]] 1901 + name = "futures-intrusive" 1902 + version = "0.5.0" 1903 + source = "registry+https://github.com/rust-lang/crates.io-index" 1904 + checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 1905 + dependencies = [ 1906 + "futures-core", 1907 + "lock_api", 1908 + "parking_lot", 1909 + ] 1910 + 1911 + [[package]] 1545 1912 name = "futures-io" 1546 - version = "0.3.28" 1913 + version = "0.3.29" 1547 1914 source = "registry+https://github.com/rust-lang/crates.io-index" 1548 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1915 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1549 1916 1550 1917 [[package]] 1551 1918 name = "futures-lite" ··· 1564 1931 1565 1932 [[package]] 1566 1933 name = "futures-macro" 1567 - version = "0.3.28" 1934 + version = "0.3.29" 1568 1935 source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1936 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1570 1937 dependencies = [ 1571 1938 "proc-macro2", 1572 1939 "quote", 1573 - "syn 2.0.38", 1940 + "syn 2.0.39", 1574 1941 ] 1575 1942 1576 1943 [[package]] 1577 1944 name = "futures-sink" 1578 - version = "0.3.28" 1945 + version = "0.3.29" 1579 1946 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1947 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1581 1948 1582 1949 [[package]] 1583 1950 name = "futures-task" 1584 - version = "0.3.28" 1951 + version = "0.3.29" 1585 1952 source = "registry+https://github.com/rust-lang/crates.io-index" 1586 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1953 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1587 1954 1588 1955 [[package]] 1589 1956 name = "futures-timer" ··· 1593 1960 1594 1961 [[package]] 1595 1962 name = "futures-util" 1596 - version = "0.3.28" 1963 + version = "0.3.29" 1597 1964 source = "registry+https://github.com/rust-lang/crates.io-index" 1598 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1965 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1599 1966 dependencies = [ 1600 1967 "futures-channel", 1601 1968 "futures-core", ··· 1610 1977 ] 1611 1978 1612 1979 [[package]] 1980 + name = "gemm" 1981 + version = "0.16.15" 1982 + source = "registry+https://github.com/rust-lang/crates.io-index" 1983 + checksum = "5b3afa707040531a7527477fd63a81ea4f6f3d26037a2f96776e57fb843b258e" 1984 + dependencies = [ 1985 + "dyn-stack", 1986 + "gemm-c32", 1987 + "gemm-c64", 1988 + "gemm-common", 1989 + "gemm-f16", 1990 + "gemm-f32", 1991 + "gemm-f64", 1992 + "num-complex", 1993 + "num-traits", 1994 + "paste", 1995 + "raw-cpuid", 1996 + "seq-macro", 1997 + ] 1998 + 1999 + [[package]] 2000 + name = "gemm-c32" 2001 + version = "0.16.15" 2002 + source = "registry+https://github.com/rust-lang/crates.io-index" 2003 + checksum = "1cc3973a4c30c73f26a099113953d0c772bb17ee2e07976c0a06b8fe1f38a57d" 2004 + dependencies = [ 2005 + "dyn-stack", 2006 + "gemm-common", 2007 + "num-complex", 2008 + "num-traits", 2009 + "paste", 2010 + "raw-cpuid", 2011 + "seq-macro", 2012 + ] 2013 + 2014 + [[package]] 2015 + name = "gemm-c64" 2016 + version = "0.16.15" 2017 + source = "registry+https://github.com/rust-lang/crates.io-index" 2018 + checksum = "30362894b93dada374442cb2edf4512ddf19513c9bec88e06a445bcb6b22e64f" 2019 + dependencies = [ 2020 + "dyn-stack", 2021 + "gemm-common", 2022 + "num-complex", 2023 + "num-traits", 2024 + "paste", 2025 + "raw-cpuid", 2026 + "seq-macro", 2027 + ] 2028 + 2029 + [[package]] 2030 + name = "gemm-common" 2031 + version = "0.16.15" 2032 + source = "registry+https://github.com/rust-lang/crates.io-index" 2033 + checksum = "988499faa80566b046b4fee2c5f15af55b5a20c1fe8486b112ebb34efa045ad6" 2034 + dependencies = [ 2035 + "bytemuck", 2036 + "dyn-stack", 2037 + "half 2.3.1", 2038 + "num-complex", 2039 + "num-traits", 2040 + "once_cell", 2041 + "paste", 2042 + "pulp", 2043 + "raw-cpuid", 2044 + "rayon", 2045 + "seq-macro", 2046 + ] 2047 + 2048 + [[package]] 2049 + name = "gemm-f16" 2050 + version = "0.16.15" 2051 + source = "registry+https://github.com/rust-lang/crates.io-index" 2052 + checksum = "d6cf2854a12371684c38d9a865063a27661812a3ff5803454c5742e8f5a388ce" 2053 + dependencies = [ 2054 + "dyn-stack", 2055 + "gemm-common", 2056 + "gemm-f32", 2057 + "half 2.3.1", 2058 + "num-complex", 2059 + "num-traits", 2060 + "paste", 2061 + "raw-cpuid", 2062 + "rayon", 2063 + "seq-macro", 2064 + ] 2065 + 2066 + [[package]] 2067 + name = "gemm-f32" 2068 + version = "0.16.15" 2069 + source = "registry+https://github.com/rust-lang/crates.io-index" 2070 + checksum = "0bc84003cf6d950a7c7ca714ad6db281b6cef5c7d462f5cd9ad90ea2409c7227" 2071 + dependencies = [ 2072 + "dyn-stack", 2073 + "gemm-common", 2074 + "num-complex", 2075 + "num-traits", 2076 + "paste", 2077 + "raw-cpuid", 2078 + "seq-macro", 2079 + ] 2080 + 2081 + [[package]] 2082 + name = "gemm-f64" 2083 + version = "0.16.15" 2084 + source = "registry+https://github.com/rust-lang/crates.io-index" 2085 + checksum = "35187ef101a71eed0ecd26fb4a6255b4192a12f1c5335f3a795698f2d9b6cf33" 2086 + dependencies = [ 2087 + "dyn-stack", 2088 + "gemm-common", 2089 + "num-complex", 2090 + "num-traits", 2091 + "paste", 2092 + "raw-cpuid", 2093 + "seq-macro", 2094 + ] 2095 + 2096 + [[package]] 1613 2097 name = "generic-array" 1614 2098 version = "0.14.7" 1615 2099 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1641 2125 1642 2126 [[package]] 1643 2127 name = "getrandom" 1644 - version = "0.2.10" 2128 + version = "0.2.11" 1645 2129 source = "registry+https://github.com/rust-lang/crates.io-index" 1646 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 2130 + checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1647 2131 dependencies = [ 1648 2132 "cfg-if", 1649 2133 "js-sys", ··· 1653 2137 ] 1654 2138 1655 2139 [[package]] 2140 + name = "gif" 2141 + version = "0.12.0" 2142 + source = "registry+https://github.com/rust-lang/crates.io-index" 2143 + checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 2144 + dependencies = [ 2145 + "color_quant", 2146 + "weezl", 2147 + ] 2148 + 2149 + [[package]] 1656 2150 name = "gimli" 1657 - version = "0.28.0" 2151 + version = "0.28.1" 1658 2152 source = "registry+https://github.com/rust-lang/crates.io-index" 1659 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 2153 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 2154 + 2155 + [[package]] 2156 + name = "gix-features" 2157 + version = "0.33.0" 2158 + source = "registry+https://github.com/rust-lang/crates.io-index" 2159 + checksum = "7f77decb545f63a52852578ef5f66ecd71017ffc1983d551d5fa2328d6d9817f" 2160 + dependencies = [ 2161 + "gix-hash", 2162 + "gix-trace", 2163 + "libc", 2164 + ] 2165 + 2166 + [[package]] 2167 + name = "gix-fs" 2168 + version = "0.5.0" 2169 + source = "registry+https://github.com/rust-lang/crates.io-index" 2170 + checksum = "53d5089f3338647776733a75a800a664ab046f56f21c515fa4722e395f877ef8" 2171 + dependencies = [ 2172 + "gix-features", 2173 + ] 2174 + 2175 + [[package]] 2176 + name = "gix-hash" 2177 + version = "0.12.0" 2178 + source = "registry+https://github.com/rust-lang/crates.io-index" 2179 + checksum = "7d4796bac3aaf0c2f8bea152ca924ae3bdc5f135caefe6431116bcd67e98eab9" 2180 + dependencies = [ 2181 + "faster-hex", 2182 + "thiserror", 2183 + ] 2184 + 2185 + [[package]] 2186 + name = "gix-tempfile" 2187 + version = "8.0.0" 2188 + source = "registry+https://github.com/rust-lang/crates.io-index" 2189 + checksum = "cea558d3daf3b1d0001052b12218c66c8f84788852791333b633d7eeb6999db1" 2190 + dependencies = [ 2191 + "dashmap", 2192 + "gix-fs", 2193 + "libc", 2194 + "once_cell", 2195 + "parking_lot", 2196 + "signal-hook", 2197 + "signal-hook-registry", 2198 + "tempfile", 2199 + ] 2200 + 2201 + [[package]] 2202 + name = "gix-trace" 2203 + version = "0.1.3" 2204 + source = "registry+https://github.com/rust-lang/crates.io-index" 2205 + checksum = "96b6d623a1152c3facb79067d6e2ecdae48130030cf27d6eb21109f13bd7b836" 2206 + 2207 + [[package]] 2208 + name = "gl_generator" 2209 + version = "0.14.0" 2210 + source = "registry+https://github.com/rust-lang/crates.io-index" 2211 + checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" 2212 + dependencies = [ 2213 + "khronos_api", 2214 + "log", 2215 + "xml-rs", 2216 + ] 1660 2217 1661 2218 [[package]] 1662 2219 name = "glob" ··· 1666 2223 1667 2224 [[package]] 1668 2225 name = "globset" 1669 - version = "0.4.13" 2226 + version = "0.4.14" 1670 2227 source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 2228 + checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 1672 2229 dependencies = [ 1673 2230 "aho-corasick", 1674 2231 "bstr", 1675 - "fnv", 1676 2232 "log", 1677 - "regex", 2233 + "regex-automata 0.4.3", 2234 + "regex-syntax 0.8.2", 2235 + ] 2236 + 2237 + [[package]] 2238 + name = "glow" 2239 + version = "0.13.0" 2240 + source = "registry+https://github.com/rust-lang/crates.io-index" 2241 + checksum = "886c2a30b160c4c6fec8f987430c26b526b7988ca71f664e6a699ddf6f9601e4" 2242 + dependencies = [ 2243 + "js-sys", 2244 + "slotmap", 2245 + "wasm-bindgen", 2246 + "web-sys", 2247 + ] 2248 + 2249 + [[package]] 2250 + name = "glutin_wgl_sys" 2251 + version = "0.5.0" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead" 2254 + dependencies = [ 2255 + "gl_generator", 2256 + ] 2257 + 2258 + [[package]] 2259 + name = "gpu-alloc" 2260 + version = "0.6.0" 2261 + source = "registry+https://github.com/rust-lang/crates.io-index" 2262 + checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171" 2263 + dependencies = [ 2264 + "bitflags 2.4.1", 2265 + "gpu-alloc-types", 2266 + ] 2267 + 2268 + [[package]] 2269 + name = "gpu-alloc-types" 2270 + version = "0.3.0" 2271 + source = "registry+https://github.com/rust-lang/crates.io-index" 2272 + checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4" 2273 + dependencies = [ 2274 + "bitflags 2.4.1", 2275 + ] 2276 + 2277 + [[package]] 2278 + name = "gpu-allocator" 2279 + version = "0.23.0" 2280 + source = "registry+https://github.com/rust-lang/crates.io-index" 2281 + checksum = "40fe17c8a05d60c38c0a4e5a3c802f2f1ceb66b76c67d96ffb34bef0475a7fad" 2282 + dependencies = [ 2283 + "backtrace", 2284 + "log", 2285 + "presser", 2286 + "thiserror", 2287 + "winapi", 2288 + "windows 0.51.1", 2289 + ] 2290 + 2291 + [[package]] 2292 + name = "gpu-descriptor" 2293 + version = "0.2.4" 2294 + source = "registry+https://github.com/rust-lang/crates.io-index" 2295 + checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c" 2296 + dependencies = [ 2297 + "bitflags 2.4.1", 2298 + "gpu-descriptor-types", 2299 + "hashbrown 0.14.3", 2300 + ] 2301 + 2302 + [[package]] 2303 + name = "gpu-descriptor-types" 2304 + version = "0.1.2" 2305 + source = "registry+https://github.com/rust-lang/crates.io-index" 2306 + checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c" 2307 + dependencies = [ 2308 + "bitflags 2.4.1", 1678 2309 ] 1679 2310 1680 2311 [[package]] 1681 2312 name = "h2" 1682 - version = "0.3.21" 2313 + version = "0.3.22" 1683 2314 source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 2315 + checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 1685 2316 dependencies = [ 1686 2317 "bytes", 1687 2318 "fnv", ··· 1689 2320 "futures-sink", 1690 2321 "futures-util", 1691 2322 "http", 1692 - "indexmap 1.9.3", 2323 + "indexmap", 1693 2324 "slab", 1694 2325 "tokio", 1695 2326 "tokio-util", ··· 1708 2339 source = "registry+https://github.com/rust-lang/crates.io-index" 1709 2340 checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 1710 2341 dependencies = [ 2342 + "bytemuck", 1711 2343 "cfg-if", 1712 2344 "crunchy", 1713 2345 "num-traits", 2346 + "rand 0.8.5", 2347 + "rand_distr", 1714 2348 "serde", 1715 2349 ] 1716 2350 1717 2351 [[package]] 1718 2352 name = "handlebars" 1719 - version = "4.4.0" 2353 + version = "4.5.0" 1720 2354 source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683" 2355 + checksum = "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225" 1722 2356 dependencies = [ 1723 2357 "log", 1724 2358 "pest", ··· 1730 2364 1731 2365 [[package]] 1732 2366 name = "hashbrown" 1733 - version = "0.12.3" 2367 + version = "0.13.2" 1734 2368 source = "registry+https://github.com/rust-lang/crates.io-index" 1735 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2369 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2370 + dependencies = [ 2371 + "ahash", 2372 + ] 1736 2373 1737 2374 [[package]] 1738 2375 name = "hashbrown" 1739 - version = "0.14.2" 2376 + version = "0.14.3" 1740 2377 source = "registry+https://github.com/rust-lang/crates.io-index" 1741 - checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 2378 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1742 2379 dependencies = [ 1743 2380 "ahash", 1744 2381 "allocator-api2", ··· 1751 2388 source = "registry+https://github.com/rust-lang/crates.io-index" 1752 2389 checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 1753 2390 dependencies = [ 1754 - "hashbrown 0.14.2", 2391 + "hashbrown 0.14.3", 2392 + ] 2393 + 2394 + [[package]] 2395 + name = "hassle-rs" 2396 + version = "0.10.0" 2397 + source = "registry+https://github.com/rust-lang/crates.io-index" 2398 + checksum = "1397650ee315e8891a0df210707f0fc61771b0cc518c3023896064c5407cb3b0" 2399 + dependencies = [ 2400 + "bitflags 1.3.2", 2401 + "com-rs", 2402 + "libc", 2403 + "libloading 0.7.4", 2404 + "thiserror", 2405 + "widestring", 2406 + "winapi", 1755 2407 ] 1756 2408 1757 2409 [[package]] ··· 1797 2449 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1798 2450 1799 2451 [[package]] 2452 + name = "hexf-parse" 2453 + version = "0.2.1" 2454 + source = "registry+https://github.com/rust-lang/crates.io-index" 2455 + checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" 2456 + 2457 + [[package]] 1800 2458 name = "hmac" 1801 2459 version = "0.12.1" 1802 2460 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1811 2469 source = "registry+https://github.com/rust-lang/crates.io-index" 1812 2470 checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1813 2471 dependencies = [ 1814 - "windows-sys", 2472 + "windows-sys 0.48.0", 1815 2473 ] 1816 2474 1817 2475 [[package]] ··· 1836 2494 1837 2495 [[package]] 1838 2496 name = "http" 1839 - version = "0.2.9" 2497 + version = "0.2.11" 1840 2498 source = "registry+https://github.com/rust-lang/crates.io-index" 1841 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2499 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1842 2500 dependencies = [ 1843 2501 "bytes", 1844 2502 "fnv", ··· 1927 2585 1928 2586 [[package]] 1929 2587 name = "hyper-rustls" 1930 - version = "0.24.1" 2588 + version = "0.24.2" 1931 2589 source = "registry+https://github.com/rust-lang/crates.io-index" 1932 - checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 2590 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1933 2591 dependencies = [ 1934 2592 "futures-util", 1935 2593 "http", ··· 1963 2621 "iana-time-zone-haiku", 1964 2622 "js-sys", 1965 2623 "wasm-bindgen", 1966 - "windows-core", 2624 + "windows-core 0.51.1", 1967 2625 ] 1968 2626 1969 2627 [[package]] ··· 1986 2644 1987 2645 [[package]] 1988 2646 name = "idna" 1989 - version = "0.4.0" 2647 + version = "0.5.0" 1990 2648 source = "registry+https://github.com/rust-lang/crates.io-index" 1991 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 2649 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1992 2650 dependencies = [ 1993 2651 "unicode-bidi", 1994 2652 "unicode-normalization", ··· 1996 2654 1997 2655 [[package]] 1998 2656 name = "ignore" 1999 - version = "0.4.20" 2657 + version = "0.4.21" 2000 2658 source = "registry+https://github.com/rust-lang/crates.io-index" 2001 - checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 2659 + checksum = "747ad1b4ae841a78e8aba0d63adbfbeaea26b517b63705d47856b73015d27060" 2002 2660 dependencies = [ 2661 + "crossbeam-deque", 2003 2662 "globset", 2004 - "lazy_static", 2005 2663 "log", 2006 2664 "memchr", 2007 - "regex", 2665 + "regex-automata 0.4.3", 2008 2666 "same-file", 2009 - "thread_local", 2010 2667 "walkdir", 2011 2668 "winapi-util", 2012 2669 ] 2013 2670 2014 2671 [[package]] 2015 - name = "indexmap" 2016 - version = "1.9.3" 2672 + name = "image" 2673 + version = "0.24.7" 2017 2674 source = "registry+https://github.com/rust-lang/crates.io-index" 2018 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2675 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2019 2676 dependencies = [ 2020 - "autocfg", 2021 - "hashbrown 0.12.3", 2677 + "bytemuck", 2678 + "byteorder", 2679 + "color_quant", 2680 + "exr", 2681 + "gif", 2682 + "jpeg-decoder", 2683 + "num-rational", 2684 + "num-traits", 2685 + "png", 2686 + "qoi", 2687 + "tiff", 2022 2688 ] 2023 2689 2024 2690 [[package]] 2025 2691 name = "indexmap" 2026 - version = "2.0.2" 2692 + version = "2.1.0" 2027 2693 source = "registry+https://github.com/rust-lang/crates.io-index" 2028 - checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 2694 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2029 2695 dependencies = [ 2030 2696 "equivalent", 2031 - "hashbrown 0.14.2", 2697 + "hashbrown 0.14.3", 2032 2698 ] 2033 2699 2034 2700 [[package]] ··· 2121 2787 dependencies = [ 2122 2788 "hermit-abi", 2123 2789 "rustix", 2124 - "windows-sys", 2790 + "windows-sys 0.48.0", 2125 2791 ] 2126 2792 2127 2793 [[package]] ··· 2143 2809 ] 2144 2810 2145 2811 [[package]] 2812 + name = "itertools" 2813 + version = "0.12.0" 2814 + source = "registry+https://github.com/rust-lang/crates.io-index" 2815 + checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" 2816 + dependencies = [ 2817 + "either", 2818 + ] 2819 + 2820 + [[package]] 2146 2821 name = "itoa" 2147 2822 version = "1.0.9" 2148 2823 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2158 2833 ] 2159 2834 2160 2835 [[package]] 2836 + name = "jpeg-decoder" 2837 + version = "0.3.0" 2838 + source = "registry+https://github.com/rust-lang/crates.io-index" 2839 + checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2840 + dependencies = [ 2841 + "rayon", 2842 + ] 2843 + 2844 + [[package]] 2161 2845 name = "js-sys" 2162 - version = "0.3.64" 2846 + version = "0.3.66" 2163 2847 source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2848 + checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 2165 2849 dependencies = [ 2166 2850 "wasm-bindgen", 2167 2851 ] ··· 2177 2861 ] 2178 2862 2179 2863 [[package]] 2864 + name = "khronos-egl" 2865 + version = "6.0.0" 2866 + source = "registry+https://github.com/rust-lang/crates.io-index" 2867 + checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76" 2868 + dependencies = [ 2869 + "libc", 2870 + "libloading 0.8.1", 2871 + "pkg-config", 2872 + ] 2873 + 2874 + [[package]] 2875 + name = "khronos_api" 2876 + version = "3.1.0" 2877 + source = "registry+https://github.com/rust-lang/crates.io-index" 2878 + checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 2879 + 2880 + [[package]] 2180 2881 name = "kqueue" 2181 2882 version = "1.0.8" 2182 2883 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2203 2904 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2204 2905 2205 2906 [[package]] 2907 + name = "lebe" 2908 + version = "0.5.2" 2909 + source = "registry+https://github.com/rust-lang/crates.io-index" 2910 + checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" 2911 + 2912 + [[package]] 2206 2913 name = "libc" 2207 - version = "0.2.149" 2914 + version = "0.2.150" 2208 2915 source = "registry+https://github.com/rust-lang/crates.io-index" 2209 - checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 2916 + checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 2917 + 2918 + [[package]] 2919 + name = "libloading" 2920 + version = "0.7.4" 2921 + source = "registry+https://github.com/rust-lang/crates.io-index" 2922 + checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2923 + dependencies = [ 2924 + "cfg-if", 2925 + "winapi", 2926 + ] 2927 + 2928 + [[package]] 2929 + name = "libloading" 2930 + version = "0.8.1" 2931 + source = "registry+https://github.com/rust-lang/crates.io-index" 2932 + checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 2933 + dependencies = [ 2934 + "cfg-if", 2935 + "windows-sys 0.48.0", 2936 + ] 2210 2937 2211 2938 [[package]] 2212 2939 name = "libm" ··· 2215 2942 checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2216 2943 2217 2944 [[package]] 2945 + name = "libredox" 2946 + version = "0.0.1" 2947 + source = "registry+https://github.com/rust-lang/crates.io-index" 2948 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2949 + dependencies = [ 2950 + "bitflags 2.4.1", 2951 + "libc", 2952 + "redox_syscall", 2953 + ] 2954 + 2955 + [[package]] 2218 2956 name = "libsqlite3-sys" 2219 - version = "0.26.0" 2957 + version = "0.27.0" 2220 2958 source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 2959 + checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 2222 2960 dependencies = [ 2223 2961 "cc", 2224 2962 "pkg-config", ··· 2264 3002 dependencies = [ 2265 3003 "anki", 2266 3004 "futures", 2267 - "itertools 0.11.0", 3005 + "itertools 0.12.0", 2268 3006 "lazy_static", 2269 3007 "linkcheck", 2270 3008 "regex", ··· 2284 3022 2285 3023 [[package]] 2286 3024 name = "linux-raw-sys" 2287 - version = "0.4.10" 3025 + version = "0.4.12" 2288 3026 source = "registry+https://github.com/rust-lang/crates.io-index" 2289 - checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 3027 + checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 2290 3028 2291 3029 [[package]] 2292 3030 name = "lock_api" ··· 2338 3076 ] 2339 3077 2340 3078 [[package]] 2341 - name = "makeinstall" 3079 + name = "makeexe" 2342 3080 version = "0.0.0" 2343 3081 dependencies = [ 2344 3082 "anyhow", ··· 2349 3087 ] 2350 3088 2351 3089 [[package]] 3090 + name = "malloc_buf" 3091 + version = "0.0.6" 3092 + source = "registry+https://github.com/rust-lang/crates.io-index" 3093 + checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 3094 + dependencies = [ 3095 + "libc", 3096 + ] 3097 + 3098 + [[package]] 2352 3099 name = "maplit" 2353 3100 version = "1.0.2" 2354 3101 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2416 3163 2417 3164 [[package]] 2418 3165 name = "mdbook" 2419 - version = "0.4.35" 3166 + version = "0.4.36" 2420 3167 source = "registry+https://github.com/rust-lang/crates.io-index" 2421 - checksum = "1c3f88addd34930bc5f01b9dc19f780447e51c92bf2536e3ded058018271775d" 3168 + checksum = "80992cb0e05f22cc052c99f8e883f1593b891014b96a8b4637fd274d7030c85e" 2422 3169 dependencies = [ 2423 3170 "ammonia", 2424 3171 "anyhow", ··· 2436 3183 "notify-debouncer-mini", 2437 3184 "once_cell", 2438 3185 "opener", 3186 + "pathdiff", 2439 3187 "pulldown-cmark 0.9.3", 2440 3188 "regex", 2441 3189 "serde", ··· 2455 3203 checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2456 3204 2457 3205 [[package]] 3206 + name = "memmap2" 3207 + version = "0.7.1" 3208 + source = "registry+https://github.com/rust-lang/crates.io-index" 3209 + checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" 3210 + dependencies = [ 3211 + "libc", 3212 + "stable_deref_trait", 3213 + ] 3214 + 3215 + [[package]] 2458 3216 name = "memoffset" 2459 3217 version = "0.9.0" 2460 3218 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2464 3222 ] 2465 3223 2466 3224 [[package]] 3225 + name = "metal" 3226 + version = "0.27.0" 3227 + source = "registry+https://github.com/rust-lang/crates.io-index" 3228 + checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25" 3229 + dependencies = [ 3230 + "bitflags 2.4.1", 3231 + "block", 3232 + "core-graphics-types", 3233 + "foreign-types 0.5.0", 3234 + "log", 3235 + "objc", 3236 + "paste", 3237 + ] 3238 + 3239 + [[package]] 2467 3240 name = "mime" 2468 3241 version = "0.3.17" 2469 3242 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2505 3278 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2506 3279 dependencies = [ 2507 3280 "adler", 3281 + "simd-adler32", 2508 3282 ] 2509 3283 2510 3284 [[package]] ··· 2516 3290 "libc", 2517 3291 "log", 2518 3292 "wasi 0.11.0+wasi-snapshot-preview1", 2519 - "windows-sys", 3293 + "windows-sys 0.48.0", 2520 3294 ] 2521 3295 2522 3296 [[package]] ··· 2544 3318 checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 2545 3319 2546 3320 [[package]] 3321 + name = "naga" 3322 + version = "0.14.1" 3323 + source = "registry+https://github.com/rust-lang/crates.io-index" 3324 + checksum = "6cd05939c491da968a42986204b7431678be21fdcd4b10cc84997ba130ada5a4" 3325 + dependencies = [ 3326 + "bit-set", 3327 + "bitflags 2.4.1", 3328 + "codespan-reporting", 3329 + "hexf-parse", 3330 + "indexmap", 3331 + "log", 3332 + "num-traits", 3333 + "rustc-hash", 3334 + "spirv", 3335 + "termcolor", 3336 + "thiserror", 3337 + "unicode-xid", 3338 + ] 3339 + 3340 + [[package]] 3341 + name = "nanorand" 3342 + version = "0.7.0" 3343 + source = "registry+https://github.com/rust-lang/crates.io-index" 3344 + checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 3345 + dependencies = [ 3346 + "getrandom 0.2.11", 3347 + ] 3348 + 3349 + [[package]] 2547 3350 name = "native-tls" 2548 3351 version = "0.2.11" 2549 3352 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2601 3404 "camino", 2602 3405 "dunce", 2603 3406 "globset", 2604 - "itertools 0.11.0", 3407 + "itertools 0.12.0", 2605 3408 "lazy_static", 2606 3409 "maplit", 2607 3410 "num_cpus", ··· 2631 3434 source = "registry+https://github.com/rust-lang/crates.io-index" 2632 3435 checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" 2633 3436 dependencies = [ 2634 - "windows-sys", 3437 + "windows-sys 0.48.0", 2635 3438 ] 2636 3439 2637 3440 [[package]] ··· 2650 3453 "log", 2651 3454 "mio", 2652 3455 "walkdir", 2653 - "windows-sys", 3456 + "windows-sys 0.48.0", 2654 3457 ] 2655 3458 2656 3459 [[package]] 2657 3460 name = "notify-debouncer-mini" 2658 - version = "0.3.0" 3461 + version = "0.4.1" 2659 3462 source = "registry+https://github.com/rust-lang/crates.io-index" 2660 - checksum = "e55ee272914f4563a2f8b8553eb6811f3c0caea81c756346bad15b7e3ef969f0" 3463 + checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" 2661 3464 dependencies = [ 2662 3465 "crossbeam-channel", 3466 + "log", 2663 3467 "notify", 2664 3468 ] 2665 3469 ··· 2679 3483 source = "registry+https://github.com/rust-lang/crates.io-index" 2680 3484 checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 2681 3485 dependencies = [ 3486 + "bytemuck", 2682 3487 "num-traits", 2683 3488 ] 2684 3489 ··· 2703 3508 ] 2704 3509 2705 3510 [[package]] 3511 + name = "num-rational" 3512 + version = "0.4.1" 3513 + source = "registry+https://github.com/rust-lang/crates.io-index" 3514 + checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 3515 + dependencies = [ 3516 + "autocfg", 3517 + "num-integer", 3518 + "num-traits", 3519 + ] 3520 + 3521 + [[package]] 2706 3522 name = "num-traits" 2707 3523 version = "0.2.17" 2708 3524 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2724 3540 2725 3541 [[package]] 2726 3542 name = "num_enum" 2727 - version = "0.7.0" 3543 + version = "0.7.1" 2728 3544 source = "registry+https://github.com/rust-lang/crates.io-index" 2729 - checksum = "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" 3545 + checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0" 2730 3546 dependencies = [ 2731 3547 "num_enum_derive", 2732 3548 ] 2733 3549 2734 3550 [[package]] 2735 3551 name = "num_enum_derive" 2736 - version = "0.7.0" 3552 + version = "0.7.1" 2737 3553 source = "registry+https://github.com/rust-lang/crates.io-index" 2738 - checksum = "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" 3554 + checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e" 2739 3555 dependencies = [ 2740 3556 "proc-macro-crate", 2741 3557 "proc-macro2", 2742 3558 "quote", 2743 - "syn 2.0.38", 3559 + "syn 2.0.39", 3560 + ] 3561 + 3562 + [[package]] 3563 + name = "objc" 3564 + version = "0.2.7" 3565 + source = "registry+https://github.com/rust-lang/crates.io-index" 3566 + checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 3567 + dependencies = [ 3568 + "malloc_buf", 3569 + "objc_exception", 3570 + ] 3571 + 3572 + [[package]] 3573 + name = "objc_exception" 3574 + version = "0.1.2" 3575 + source = "registry+https://github.com/rust-lang/crates.io-index" 3576 + checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 3577 + dependencies = [ 3578 + "cc", 2744 3579 ] 2745 3580 2746 3581 [[package]] ··· 2777 3612 2778 3613 [[package]] 2779 3614 name = "openssl" 2780 - version = "0.10.57" 3615 + version = "0.10.61" 2781 3616 source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 3617 + checksum = "6b8419dc8cc6d866deb801274bba2e6f8f6108c1bb7fcc10ee5ab864931dbb45" 2783 3618 dependencies = [ 2784 3619 "bitflags 2.4.1", 2785 3620 "cfg-if", 2786 - "foreign-types", 3621 + "foreign-types 0.3.2", 2787 3622 "libc", 2788 3623 "once_cell", 2789 3624 "openssl-macros", ··· 2798 3633 dependencies = [ 2799 3634 "proc-macro2", 2800 3635 "quote", 2801 - "syn 2.0.38", 3636 + "syn 2.0.39", 2802 3637 ] 2803 3638 2804 3639 [[package]] ··· 2809 3644 2810 3645 [[package]] 2811 3646 name = "openssl-sys" 2812 - version = "0.9.93" 3647 + version = "0.9.97" 2813 3648 source = "registry+https://github.com/rust-lang/crates.io-index" 2814 - checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 3649 + checksum = "c3eaad34cdd97d81de97964fc7f29e2d104f483840d906ef56daa1912338460b" 2815 3650 dependencies = [ 2816 3651 "cc", 2817 3652 "libc", ··· 2832 3667 checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 2833 3668 dependencies = [ 2834 3669 "libc", 2835 - "windows-sys", 3670 + "windows-sys 0.48.0", 2836 3671 ] 2837 3672 2838 3673 [[package]] ··· 2850 3685 "cbc", 2851 3686 "cipher", 2852 3687 "des", 2853 - "getrandom 0.2.10", 3688 + "getrandom 0.2.11", 2854 3689 "hmac", 2855 3690 "lazy_static", 2856 3691 "rc2", ··· 2882 3717 dependencies = [ 2883 3718 "cfg-if", 2884 3719 "libc", 2885 - "redox_syscall 0.4.1", 3720 + "redox_syscall", 2886 3721 "smallvec", 2887 - "windows-targets", 3722 + "windows-targets 0.48.5", 3723 + ] 3724 + 3725 + [[package]] 3726 + name = "password-hash" 3727 + version = "0.4.2" 3728 + source = "registry+https://github.com/rust-lang/crates.io-index" 3729 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 3730 + dependencies = [ 3731 + "base64ct", 3732 + "rand_core 0.6.4", 3733 + "subtle", 2888 3734 ] 2889 3735 2890 3736 [[package]] ··· 2894 3740 checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 2895 3741 2896 3742 [[package]] 3743 + name = "pathdiff" 3744 + version = "0.2.1" 3745 + source = "registry+https://github.com/rust-lang/crates.io-index" 3746 + checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 3747 + 3748 + [[package]] 3749 + name = "pbkdf2" 3750 + version = "0.11.0" 3751 + source = "registry+https://github.com/rust-lang/crates.io-index" 3752 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 3753 + dependencies = [ 3754 + "digest", 3755 + "hmac", 3756 + "password-hash", 3757 + "sha2", 3758 + ] 3759 + 3760 + [[package]] 2897 3761 name = "pem" 2898 3762 version = "1.1.1" 2899 3763 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2904 3768 2905 3769 [[package]] 2906 3770 name = "percent-encoding" 2907 - version = "2.3.0" 3771 + version = "2.3.1" 2908 3772 source = "registry+https://github.com/rust-lang/crates.io-index" 2909 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 3773 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2910 3774 2911 3775 [[package]] 2912 3776 name = "percent-encoding-iri" ··· 2944 3808 "pest_meta", 2945 3809 "proc-macro2", 2946 3810 "quote", 2947 - "syn 2.0.38", 3811 + "syn 2.0.39", 2948 3812 ] 2949 3813 2950 3814 [[package]] ··· 2965 3829 checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 2966 3830 dependencies = [ 2967 3831 "fixedbitset", 2968 - "indexmap 2.0.2", 3832 + "indexmap", 2969 3833 ] 2970 3834 2971 3835 [[package]] ··· 3027 3891 "phf_shared 0.11.2", 3028 3892 "proc-macro2", 3029 3893 "quote", 3030 - "syn 2.0.38", 3894 + "syn 2.0.39", 3031 3895 ] 3032 3896 3033 3897 [[package]] ··· 3065 3929 dependencies = [ 3066 3930 "proc-macro2", 3067 3931 "quote", 3068 - "syn 2.0.38", 3932 + "syn 2.0.39", 3069 3933 ] 3070 3934 3071 3935 [[package]] ··· 3088 3952 3089 3953 [[package]] 3090 3954 name = "plist" 3091 - version = "1.5.1" 3955 + version = "1.6.0" 3092 3956 source = "registry+https://github.com/rust-lang/crates.io-index" 3093 - checksum = "9a4a0cfc5fb21a09dc6af4bf834cf10d4a32fccd9e2ea468c4b1751a097487aa" 3957 + checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 3094 3958 dependencies = [ 3095 3959 "base64 0.21.5", 3096 - "indexmap 1.9.3", 3960 + "indexmap", 3097 3961 "line-wrap", 3098 3962 "quick-xml", 3099 3963 "serde", ··· 3127 3991 dependencies = [ 3128 3992 "plotters-backend", 3129 3993 ] 3994 + 3995 + [[package]] 3996 + name = "png" 3997 + version = "0.17.10" 3998 + source = "registry+https://github.com/rust-lang/crates.io-index" 3999 + checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 4000 + dependencies = [ 4001 + "bitflags 1.3.2", 4002 + "crc32fast", 4003 + "fdeflate", 4004 + "flate2", 4005 + "miniz_oxide", 4006 + ] 4007 + 4008 + [[package]] 4009 + name = "pollster" 4010 + version = "0.3.0" 4011 + source = "registry+https://github.com/rust-lang/crates.io-index" 4012 + checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2" 3130 4013 3131 4014 [[package]] 3132 4015 name = "powerfmt" ··· 3147 4030 checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 3148 4031 3149 4032 [[package]] 4033 + name = "presser" 4034 + version = "0.3.1" 4035 + source = "registry+https://github.com/rust-lang/crates.io-index" 4036 + checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa" 4037 + 4038 + [[package]] 3150 4039 name = "prettyplease" 3151 4040 version = "0.2.15" 3152 4041 source = "registry+https://github.com/rust-lang/crates.io-index" 3153 4042 checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" 3154 4043 dependencies = [ 3155 4044 "proc-macro2", 3156 - "syn 2.0.38", 4045 + "syn 2.0.39", 3157 4046 ] 3158 4047 3159 4048 [[package]] 3160 4049 name = "proc-macro-crate" 3161 - version = "1.3.1" 4050 + version = "2.0.0" 3162 4051 source = "registry+https://github.com/rust-lang/crates.io-index" 3163 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 4052 + checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 3164 4053 dependencies = [ 3165 - "once_cell", 3166 4054 "toml_edit", 3167 4055 ] 3168 4056 3169 4057 [[package]] 3170 - name = "proc-macro-hack" 3171 - version = "0.5.20+deprecated" 3172 - source = "registry+https://github.com/rust-lang/crates.io-index" 3173 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 3174 - 3175 - [[package]] 3176 4058 name = "proc-macro2" 3177 - version = "1.0.69" 4059 + version = "1.0.70" 3178 4060 source = "registry+https://github.com/rust-lang/crates.io-index" 3179 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 4061 + checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 3180 4062 dependencies = [ 3181 4063 "unicode-ident", 3182 4064 ] 3183 4065 3184 4066 [[package]] 4067 + name = "profiling" 4068 + version = "1.0.11" 4069 + source = "registry+https://github.com/rust-lang/crates.io-index" 4070 + checksum = "f89dff0959d98c9758c88826cc002e2c3d0b9dfac4139711d1f30de442f1139b" 4071 + 4072 + [[package]] 3185 4073 name = "prost" 3186 - version = "0.12.1" 4074 + version = "0.12.3" 3187 4075 source = "registry+https://github.com/rust-lang/crates.io-index" 3188 - checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d" 4076 + checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a" 3189 4077 dependencies = [ 3190 4078 "bytes", 3191 4079 "prost-derive", ··· 3193 4081 3194 4082 [[package]] 3195 4083 name = "prost-build" 3196 - version = "0.12.1" 4084 + version = "0.12.3" 3197 4085 source = "registry+https://github.com/rust-lang/crates.io-index" 3198 - checksum = "8bdf592881d821b83d471f8af290226c8d51402259e9bb5be7f9f8bdebbb11ac" 4086 + checksum = "c55e02e35260070b6f716a2423c2ff1c3bb1642ddca6f99e1f26d06268a0e2d2" 3199 4087 dependencies = [ 3200 4088 "bytes", 3201 4089 "heck", 3202 - "itertools 0.10.5", 4090 + "itertools 0.11.0", 3203 4091 "log", 3204 4092 "multimap", 3205 4093 "once_cell", ··· 3208 4096 "prost", 3209 4097 "prost-types", 3210 4098 "regex", 3211 - "syn 2.0.38", 4099 + "syn 2.0.39", 3212 4100 "tempfile", 3213 4101 "which 4.4.2", 3214 4102 ] 3215 4103 3216 4104 [[package]] 3217 4105 name = "prost-derive" 3218 - version = "0.12.1" 4106 + version = "0.12.3" 3219 4107 source = "registry+https://github.com/rust-lang/crates.io-index" 3220 - checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" 4108 + checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e" 3221 4109 dependencies = [ 3222 4110 "anyhow", 3223 - "itertools 0.10.5", 4111 + "itertools 0.11.0", 3224 4112 "proc-macro2", 3225 4113 "quote", 3226 - "syn 2.0.38", 4114 + "syn 2.0.39", 3227 4115 ] 3228 4116 3229 4117 [[package]] ··· 3239 4127 3240 4128 [[package]] 3241 4129 name = "prost-types" 3242 - version = "0.12.1" 4130 + version = "0.12.3" 3243 4131 source = "registry+https://github.com/rust-lang/crates.io-index" 3244 - checksum = "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf" 4132 + checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e" 3245 4133 dependencies = [ 3246 4134 "prost", 3247 4135 ] ··· 3268 4156 "getopts", 3269 4157 "memchr", 3270 4158 "unicase", 4159 + ] 4160 + 4161 + [[package]] 4162 + name = "pulp" 4163 + version = "0.18.6" 4164 + source = "registry+https://github.com/rust-lang/crates.io-index" 4165 + checksum = "16785ee69419641c75affff7c9fdbdb7c0ab26dc9a5fb5218c2a2e9e4ef2087d" 4166 + dependencies = [ 4167 + "bytemuck", 4168 + "libm", 4169 + "num-complex", 4170 + "reborrow", 3271 4171 ] 3272 4172 3273 4173 [[package]] ··· 3316 4216 "proc-macro2", 3317 4217 "pyo3-macros-backend", 3318 4218 "quote", 3319 - "syn 2.0.38", 4219 + "syn 2.0.39", 3320 4220 ] 3321 4221 3322 4222 [[package]] ··· 3328 4228 "heck", 3329 4229 "proc-macro2", 3330 4230 "quote", 3331 - "syn 2.0.38", 4231 + "syn 2.0.39", 4232 + ] 4233 + 4234 + [[package]] 4235 + name = "qoi" 4236 + version = "0.4.1" 4237 + source = "registry+https://github.com/rust-lang/crates.io-index" 4238 + checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 4239 + dependencies = [ 4240 + "bytemuck", 3332 4241 ] 3333 4242 3334 4243 [[package]] 3335 4244 name = "quick-xml" 3336 - version = "0.30.0" 4245 + version = "0.31.0" 3337 4246 source = "registry+https://github.com/rust-lang/crates.io-index" 3338 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 4247 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 3339 4248 dependencies = [ 3340 4249 "memchr", 3341 4250 ] ··· 3350 4259 ] 3351 4260 3352 4261 [[package]] 4262 + name = "r2d2" 4263 + version = "0.8.10" 4264 + source = "registry+https://github.com/rust-lang/crates.io-index" 4265 + checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93" 4266 + dependencies = [ 4267 + "log", 4268 + "parking_lot", 4269 + "scheduled-thread-pool", 4270 + ] 4271 + 4272 + [[package]] 4273 + name = "r2d2_sqlite" 4274 + version = "0.23.0" 4275 + source = "registry+https://github.com/rust-lang/crates.io-index" 4276 + checksum = "4dc290b669d30e20751e813517bbe13662d020419c5c8818ff10b6e8bb7777f6" 4277 + dependencies = [ 4278 + "r2d2", 4279 + "rusqlite", 4280 + "uuid", 4281 + ] 4282 + 4283 + [[package]] 3353 4284 name = "rand" 3354 4285 version = "0.7.3" 3355 4286 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3408 4339 source = "registry+https://github.com/rust-lang/crates.io-index" 3409 4340 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3410 4341 dependencies = [ 3411 - "getrandom 0.2.10", 4342 + "getrandom 0.2.11", 3412 4343 ] 3413 4344 3414 4345 [[package]] ··· 3431 4362 ] 3432 4363 3433 4364 [[package]] 4365 + name = "range-alloc" 4366 + version = "0.1.3" 4367 + source = "registry+https://github.com/rust-lang/crates.io-index" 4368 + checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab" 4369 + 4370 + [[package]] 4371 + name = "raw-cpuid" 4372 + version = "10.7.0" 4373 + source = "registry+https://github.com/rust-lang/crates.io-index" 4374 + checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 4375 + dependencies = [ 4376 + "bitflags 1.3.2", 4377 + ] 4378 + 4379 + [[package]] 4380 + name = "raw-window-handle" 4381 + version = "0.5.2" 4382 + source = "registry+https://github.com/rust-lang/crates.io-index" 4383 + checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 4384 + 4385 + [[package]] 3434 4386 name = "rawpointer" 3435 4387 version = "0.2.1" 3436 4388 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3478 4430 ] 3479 4431 3480 4432 [[package]] 3481 - name = "redox_syscall" 3482 - version = "0.2.16" 3483 - source = "registry+https://github.com/rust-lang/crates.io-index" 3484 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3485 - dependencies = [ 3486 - "bitflags 1.3.2", 3487 - ] 3488 - 3489 - [[package]] 3490 - name = "redox_syscall" 3491 - version = "0.3.5" 4433 + name = "reborrow" 4434 + version = "0.5.5" 3492 4435 source = "registry+https://github.com/rust-lang/crates.io-index" 3493 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3494 - dependencies = [ 3495 - "bitflags 1.3.2", 3496 - ] 4436 + checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430" 3497 4437 3498 4438 [[package]] 3499 4439 name = "redox_syscall" ··· 3506 4446 3507 4447 [[package]] 3508 4448 name = "redox_users" 3509 - version = "0.4.3" 4449 + version = "0.4.4" 3510 4450 source = "registry+https://github.com/rust-lang/crates.io-index" 3511 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 4451 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 3512 4452 dependencies = [ 3513 - "getrandom 0.2.10", 3514 - "redox_syscall 0.2.16", 4453 + "getrandom 0.2.11", 4454 + "libredox", 3515 4455 "thiserror", 3516 4456 ] 3517 4457 ··· 3558 4498 version = "0.8.2" 3559 4499 source = "registry+https://github.com/rust-lang/crates.io-index" 3560 4500 checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 4501 + 4502 + [[package]] 4503 + name = "renderdoc-sys" 4504 + version = "1.0.0" 4505 + source = "registry+https://github.com/rust-lang/crates.io-index" 4506 + checksum = "216080ab382b992234dda86873c18d4c48358f5cfcb70fd693d7f6f2131b628b" 3561 4507 3562 4508 [[package]] 3563 4509 name = "reqwest" ··· 3630 4576 3631 4577 [[package]] 3632 4578 name = "ring" 3633 - version = "0.17.5" 4579 + version = "0.17.7" 3634 4580 source = "registry+https://github.com/rust-lang/crates.io-index" 3635 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 4581 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 3636 4582 dependencies = [ 3637 4583 "cc", 3638 - "getrandom 0.2.10", 4584 + "getrandom 0.2.11", 3639 4585 "libc", 3640 4586 "spin 0.9.8", 3641 4587 "untrusted 0.9.0", 3642 - "windows-sys", 4588 + "windows-sys 0.48.0", 3643 4589 ] 3644 4590 3645 4591 [[package]] ··· 3691 4637 "which 5.0.0", 3692 4638 "xz2", 3693 4639 "zip", 3694 - "zstd", 4640 + "zstd 0.13.0", 3695 4641 ] 3696 4642 3697 4643 [[package]] 3698 4644 name = "rusqlite" 3699 - version = "0.29.0" 4645 + version = "0.30.0" 3700 4646 source = "registry+https://github.com/rust-lang/crates.io-index" 3701 - checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" 4647 + checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d" 3702 4648 dependencies = [ 3703 4649 "bitflags 2.4.1", 3704 4650 "fallible-iterator", ··· 3722 4668 3723 4669 [[package]] 3724 4670 name = "rustix" 3725 - version = "0.38.20" 4671 + version = "0.38.26" 3726 4672 source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "67ce50cb2e16c2903e30d1cbccfd8387a74b9d4c938b6a4c5ec6cc7556f7a8a0" 4673 + checksum = "9470c4bf8246c8daf25f9598dca807fb6510347b1e1cfa55749113850c79d88a" 3728 4674 dependencies = [ 3729 4675 "bitflags 2.4.1", 3730 4676 "errno", 3731 4677 "libc", 3732 4678 "linux-raw-sys", 3733 - "windows-sys", 4679 + "windows-sys 0.52.0", 3734 4680 ] 3735 4681 3736 4682 [[package]] 3737 4683 name = "rustls" 3738 - version = "0.21.8" 4684 + version = "0.21.9" 3739 4685 source = "registry+https://github.com/rust-lang/crates.io-index" 3740 - checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" 4686 + checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" 3741 4687 dependencies = [ 3742 4688 "log", 3743 - "ring 0.17.5", 4689 + "ring 0.17.7", 3744 4690 "rustls-webpki", 3745 4691 "sct", 3746 4692 ] ··· 3759 4705 3760 4706 [[package]] 3761 4707 name = "rustls-pemfile" 3762 - version = "1.0.3" 4708 + version = "1.0.4" 3763 4709 source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 4710 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3765 4711 dependencies = [ 3766 4712 "base64 0.21.5", 3767 4713 ] ··· 3772 4718 source = "registry+https://github.com/rust-lang/crates.io-index" 3773 4719 checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3774 4720 dependencies = [ 3775 - "ring 0.17.5", 4721 + "ring 0.17.7", 3776 4722 "untrusted 0.9.0", 3777 4723 ] 3778 4724 ··· 3793 4739 version = "0.3.3" 3794 4740 source = "registry+https://github.com/rust-lang/crates.io-index" 3795 4741 checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 4742 + 4743 + [[package]] 4744 + name = "safetensors" 4745 + version = "0.3.3" 4746 + source = "registry+https://github.com/rust-lang/crates.io-index" 4747 + checksum = "d93279b86b3de76f820a8854dd06cbc33cfa57a417b19c47f6a25280112fb1df" 4748 + dependencies = [ 4749 + "serde", 4750 + "serde_json", 4751 + ] 3796 4752 3797 4753 [[package]] 3798 4754 name = "same-file" ··· 3819 4775 source = "registry+https://github.com/rust-lang/crates.io-index" 3820 4776 checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 3821 4777 dependencies = [ 3822 - "windows-sys", 4778 + "windows-sys 0.48.0", 4779 + ] 4780 + 4781 + [[package]] 4782 + name = "scheduled-thread-pool" 4783 + version = "0.2.7" 4784 + source = "registry+https://github.com/rust-lang/crates.io-index" 4785 + checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19" 4786 + dependencies = [ 4787 + "parking_lot", 3823 4788 ] 3824 4789 3825 4790 [[package]] ··· 3840 4805 source = "registry+https://github.com/rust-lang/crates.io-index" 3841 4806 checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3842 4807 dependencies = [ 3843 - "ring 0.17.5", 4808 + "ring 0.17.7", 3844 4809 "untrusted 0.9.0", 3845 4810 ] 3846 4811 ··· 3869 4834 3870 4835 [[package]] 3871 4836 name = "self_cell" 3872 - version = "0.10.2" 4837 + version = "0.10.3" 3873 4838 source = "registry+https://github.com/rust-lang/crates.io-index" 3874 - checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 4839 + checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d" 4840 + dependencies = [ 4841 + "self_cell 1.0.2", 4842 + ] 4843 + 4844 + [[package]] 4845 + name = "self_cell" 4846 + version = "1.0.2" 4847 + source = "registry+https://github.com/rust-lang/crates.io-index" 4848 + checksum = "e388332cd64eb80cd595a00941baf513caffae8dce9cfd0467fc9c66397dade6" 3875 4849 3876 4850 [[package]] 3877 4851 name = "semver" ··· 3880 4854 checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 3881 4855 3882 4856 [[package]] 4857 + name = "seq-macro" 4858 + version = "0.3.5" 4859 + source = "registry+https://github.com/rust-lang/crates.io-index" 4860 + checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 4861 + 4862 + [[package]] 3883 4863 name = "serde" 3884 - version = "1.0.189" 4864 + version = "1.0.193" 3885 4865 source = "registry+https://github.com/rust-lang/crates.io-index" 3886 - checksum = "8e422a44e74ad4001bdc8eede9a4570ab52f71190e9c076d14369f38b9200537" 4866 + checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 3887 4867 dependencies = [ 3888 4868 "serde_derive", 3889 4869 ] 3890 4870 3891 4871 [[package]] 3892 4872 name = "serde-aux" 3893 - version = "4.2.0" 4873 + version = "4.3.1" 3894 4874 source = "registry+https://github.com/rust-lang/crates.io-index" 3895 - checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39" 4875 + checksum = "184eba62ebddb71658697c8b08822edee89970bf318c5362189f0de27f85b498" 3896 4876 dependencies = [ 3897 4877 "chrono", 3898 4878 "serde", ··· 3901 4881 3902 4882 [[package]] 3903 4883 name = "serde_derive" 3904 - version = "1.0.189" 4884 + version = "1.0.193" 3905 4885 source = "registry+https://github.com/rust-lang/crates.io-index" 3906 - checksum = "1e48d1f918009ce3145511378cf68d613e3b3d9137d67272562080d68a2b32d5" 4886 + checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 3907 4887 dependencies = [ 3908 4888 "proc-macro2", 3909 4889 "quote", 3910 - "syn 2.0.38", 4890 + "syn 2.0.39", 3911 4891 ] 3912 4892 3913 4893 [[package]] 3914 4894 name = "serde_json" 3915 - version = "1.0.107" 4895 + version = "1.0.108" 3916 4896 source = "registry+https://github.com/rust-lang/crates.io-index" 3917 - checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 4897 + checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 3918 4898 dependencies = [ 3919 4899 "itoa", 3920 4900 "ryu", ··· 3944 4924 3945 4925 [[package]] 3946 4926 name = "serde_repr" 3947 - version = "0.1.16" 4927 + version = "0.1.17" 3948 4928 source = "registry+https://github.com/rust-lang/crates.io-index" 3949 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 4929 + checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 3950 4930 dependencies = [ 3951 4931 "proc-macro2", 3952 4932 "quote", 3953 - "syn 2.0.38", 4933 + "syn 2.0.39", 4934 + ] 4935 + 4936 + [[package]] 4937 + name = "serde_rusqlite" 4938 + version = "0.34.0" 4939 + source = "registry+https://github.com/rust-lang/crates.io-index" 4940 + checksum = "4600dac14aada464c5584d327baa164e372153309bc4c0fb1498bbfbaa5a028b" 4941 + dependencies = [ 4942 + "rusqlite", 4943 + "serde", 3954 4944 ] 3955 4945 3956 4946 [[package]] ··· 4034 5024 checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 4035 5025 4036 5026 [[package]] 5027 + name = "signal-hook" 5028 + version = "0.3.17" 5029 + source = "registry+https://github.com/rust-lang/crates.io-index" 5030 + checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 5031 + dependencies = [ 5032 + "libc", 5033 + "signal-hook-registry", 5034 + ] 5035 + 5036 + [[package]] 4037 5037 name = "signal-hook-registry" 4038 5038 version = "1.4.1" 4039 5039 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4043 5043 ] 4044 5044 4045 5045 [[package]] 5046 + name = "simd-adler32" 5047 + version = "0.3.7" 5048 + source = "registry+https://github.com/rust-lang/crates.io-index" 5049 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 5050 + 5051 + [[package]] 4046 5052 name = "simple-file-manifest" 4047 5053 version = "0.11.0" 4048 5054 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4064 5070 ] 4065 5071 4066 5072 [[package]] 5073 + name = "slotmap" 5074 + version = "1.0.7" 5075 + source = "registry+https://github.com/rust-lang/crates.io-index" 5076 + checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 5077 + dependencies = [ 5078 + "version_check", 5079 + ] 5080 + 5081 + [[package]] 4067 5082 name = "smallvec" 4068 - version = "1.11.1" 5083 + version = "1.11.2" 4069 5084 source = "registry+https://github.com/rust-lang/crates.io-index" 4070 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 5085 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 4071 5086 4072 5087 [[package]] 4073 5088 name = "snafu" ··· 4115 5130 checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 4116 5131 dependencies = [ 4117 5132 "libc", 4118 - "windows-sys", 5133 + "windows-sys 0.48.0", 4119 5134 ] 4120 5135 4121 5136 [[package]] ··· 4134 5149 ] 4135 5150 4136 5151 [[package]] 5152 + name = "spirv" 5153 + version = "0.2.0+1.5.4" 5154 + source = "registry+https://github.com/rust-lang/crates.io-index" 5155 + checksum = "246bfa38fe3db3f1dfc8ca5a2cdeb7348c78be2112740cc0ec8ef18b6d94f830" 5156 + dependencies = [ 5157 + "bitflags 1.3.2", 5158 + "num-traits", 5159 + ] 5160 + 5161 + [[package]] 5162 + name = "stable_deref_trait" 5163 + version = "1.2.0" 5164 + source = "registry+https://github.com/rust-lang/crates.io-index" 5165 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 5166 + 5167 + [[package]] 5168 + name = "static_assertions" 5169 + version = "1.1.0" 5170 + source = "registry+https://github.com/rust-lang/crates.io-index" 5171 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 5172 + 5173 + [[package]] 4137 5174 name = "string_cache" 4138 5175 version = "0.8.7" 4139 5176 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4184 5221 "proc-macro2", 4185 5222 "quote", 4186 5223 "rustversion", 4187 - "syn 2.0.38", 5224 + "syn 2.0.39", 4188 5225 ] 4189 5226 4190 5227 [[package]] ··· 4206 5243 4207 5244 [[package]] 4208 5245 name = "syn" 4209 - version = "2.0.38" 5246 + version = "2.0.39" 4210 5247 source = "registry+https://github.com/rust-lang/crates.io-index" 4211 - checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 5248 + checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 4212 5249 dependencies = [ 4213 5250 "proc-macro2", 4214 5251 "quote", ··· 4222 5259 checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4223 5260 4224 5261 [[package]] 5262 + name = "synstructure" 5263 + version = "0.13.0" 5264 + source = "registry+https://github.com/rust-lang/crates.io-index" 5265 + checksum = "285ba80e733fac80aa4270fbcdf83772a79b80aa35c97075320abfee4a915b06" 5266 + dependencies = [ 5267 + "proc-macro2", 5268 + "quote", 5269 + "syn 2.0.39", 5270 + "unicode-xid", 5271 + ] 5272 + 5273 + [[package]] 4225 5274 name = "system-configuration" 4226 5275 version = "0.5.1" 4227 5276 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4260 5309 checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" 4261 5310 4262 5311 [[package]] 5312 + name = "tch" 5313 + version = "0.14.0" 5314 + source = "registry+https://github.com/rust-lang/crates.io-index" 5315 + checksum = "0ed5dddab3812892bf5fb567136e372ea49f31672931e21cec967ca68aec03da" 5316 + dependencies = [ 5317 + "half 2.3.1", 5318 + "lazy_static", 5319 + "libc", 5320 + "ndarray", 5321 + "rand 0.8.5", 5322 + "safetensors", 5323 + "thiserror", 5324 + "torch-sys", 5325 + "zip", 5326 + ] 5327 + 5328 + [[package]] 4263 5329 name = "tempfile" 4264 - version = "3.8.0" 5330 + version = "3.8.1" 4265 5331 source = "registry+https://github.com/rust-lang/crates.io-index" 4266 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 5332 + checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 4267 5333 dependencies = [ 4268 5334 "cfg-if", 4269 5335 "fastrand 2.0.1", 4270 - "redox_syscall 0.3.5", 5336 + "redox_syscall", 4271 5337 "rustix", 4272 - "windows-sys", 5338 + "windows-sys 0.48.0", 4273 5339 ] 4274 5340 4275 5341 [[package]] ··· 4285 5351 4286 5352 [[package]] 4287 5353 name = "termcolor" 4288 - version = "1.3.0" 5354 + version = "1.4.0" 4289 5355 source = "registry+https://github.com/rust-lang/crates.io-index" 4290 - checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 5356 + checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 4291 5357 dependencies = [ 4292 5358 "winapi-util", 4293 5359 ] ··· 4299 5365 checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 4300 5366 dependencies = [ 4301 5367 "rustix", 4302 - "windows-sys", 5368 + "windows-sys 0.48.0", 5369 + ] 5370 + 5371 + [[package]] 5372 + name = "text_placeholder" 5373 + version = "0.5.0" 5374 + source = "registry+https://github.com/rust-lang/crates.io-index" 5375 + checksum = "512104f982ce6f50def5340f9d7d14cc21f7a859e9ccd251aa19d12e1345c070" 5376 + dependencies = [ 5377 + "hashbrown 0.13.2", 5378 + "serde", 5379 + "serde_json", 4303 5380 ] 4304 5381 4305 5382 [[package]] ··· 4319 5396 dependencies = [ 4320 5397 "proc-macro2", 4321 5398 "quote", 4322 - "syn 2.0.38", 5399 + "syn 2.0.39", 4323 5400 ] 4324 5401 4325 5402 [[package]] ··· 4342 5419 ] 4343 5420 4344 5421 [[package]] 5422 + name = "tiff" 5423 + version = "0.9.0" 5424 + source = "registry+https://github.com/rust-lang/crates.io-index" 5425 + checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 5426 + dependencies = [ 5427 + "flate2", 5428 + "jpeg-decoder", 5429 + "weezl", 5430 + ] 5431 + 5432 + [[package]] 4345 5433 name = "time" 4346 5434 version = "0.3.30" 4347 5435 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4372 5460 4373 5461 [[package]] 4374 5462 name = "tinystr" 4375 - version = "0.7.4" 5463 + version = "0.7.5" 4376 5464 source = "registry+https://github.com/rust-lang/crates.io-index" 4377 - checksum = "d5d0e245e80bdc9b4e5356fc45a72184abbc3861992603f515270e9340f5a219" 5465 + checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece" 4378 5466 dependencies = [ 4379 5467 "displaydoc", 4380 5468 ] ··· 4406 5494 4407 5495 [[package]] 4408 5496 name = "tokio" 4409 - version = "1.33.0" 5497 + version = "1.34.0" 4410 5498 source = "registry+https://github.com/rust-lang/crates.io-index" 4411 - checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 5499 + checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 4412 5500 dependencies = [ 4413 5501 "backtrace", 4414 5502 "bytes", ··· 4419 5507 "signal-hook-registry", 4420 5508 "socket2 0.5.5", 4421 5509 "tokio-macros", 4422 - "windows-sys", 5510 + "windows-sys 0.48.0", 4423 5511 ] 4424 5512 4425 5513 [[package]] 4426 5514 name = "tokio-macros" 4427 - version = "2.1.0" 5515 + version = "2.2.0" 4428 5516 source = "registry+https://github.com/rust-lang/crates.io-index" 4429 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 5517 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 4430 5518 dependencies = [ 4431 5519 "proc-macro2", 4432 5520 "quote", 4433 - "syn 2.0.38", 5521 + "syn 2.0.39", 4434 5522 ] 4435 5523 4436 5524 [[package]] ··· 4490 5578 4491 5579 [[package]] 4492 5580 name = "tokio-util" 4493 - version = "0.7.9" 5581 + version = "0.7.10" 4494 5582 source = "registry+https://github.com/rust-lang/crates.io-index" 4495 - checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" 5583 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 4496 5584 dependencies = [ 4497 5585 "bytes", 4498 5586 "futures-core", ··· 4519 5607 4520 5608 [[package]] 4521 5609 name = "toml_edit" 4522 - version = "0.19.15" 5610 + version = "0.20.7" 4523 5611 source = "registry+https://github.com/rust-lang/crates.io-index" 4524 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 5612 + checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 4525 5613 dependencies = [ 4526 - "indexmap 2.0.2", 5614 + "indexmap", 4527 5615 "toml_datetime", 4528 5616 "winnow", 4529 5617 ] ··· 4535 5623 checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d" 4536 5624 4537 5625 [[package]] 5626 + name = "torch-sys" 5627 + version = "0.14.0" 5628 + source = "registry+https://github.com/rust-lang/crates.io-index" 5629 + checksum = "803446f89fb877a117503dbfb8375b6a29fa8b0e0f44810fac3863c798ecef22" 5630 + dependencies = [ 5631 + "anyhow", 5632 + "cc", 5633 + "libc", 5634 + "serde", 5635 + "serde_json", 5636 + "ureq", 5637 + "zip", 5638 + ] 5639 + 5640 + [[package]] 4538 5641 name = "tower" 4539 5642 version = "0.4.13" 4540 5643 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4595 5698 4596 5699 [[package]] 4597 5700 name = "tracing-appender" 4598 - version = "0.2.2" 5701 + version = "0.2.3" 4599 5702 source = "registry+https://github.com/rust-lang/crates.io-index" 4600 - checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e" 5703 + checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" 4601 5704 dependencies = [ 4602 5705 "crossbeam-channel", 5706 + "thiserror", 4603 5707 "time", 4604 5708 "tracing-subscriber", 4605 5709 ] ··· 4612 5716 dependencies = [ 4613 5717 "proc-macro2", 4614 5718 "quote", 4615 - "syn 2.0.38", 5719 + "syn 2.0.39", 4616 5720 ] 4617 5721 4618 5722 [[package]] ··· 4627 5731 4628 5732 [[package]] 4629 5733 name = "tracing-log" 4630 - version = "0.1.4" 5734 + version = "0.2.0" 4631 5735 source = "registry+https://github.com/rust-lang/crates.io-index" 4632 - checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" 5736 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 4633 5737 dependencies = [ 4634 5738 "log", 4635 5739 "once_cell", ··· 4638 5742 4639 5743 [[package]] 4640 5744 name = "tracing-subscriber" 4641 - version = "0.3.17" 5745 + version = "0.3.18" 4642 5746 source = "registry+https://github.com/rust-lang/crates.io-index" 4643 - checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 5747 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 4644 5748 dependencies = [ 4645 5749 "matchers", 4646 5750 "nu-ansi-term", ··· 4775 5879 4776 5880 [[package]] 4777 5881 name = "unic-langid" 4778 - version = "0.9.1" 5882 + version = "0.9.3" 4779 5883 source = "registry+https://github.com/rust-lang/crates.io-index" 4780 - checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 5884 + checksum = "887622f8e7b723780c5e64b04dcc0c9b8f426ada7cca6790cd3ea3bf0f08037a" 4781 5885 dependencies = [ 4782 5886 "unic-langid-impl", 4783 5887 "unic-langid-macros", ··· 4785 5889 4786 5890 [[package]] 4787 5891 name = "unic-langid-impl" 4788 - version = "0.9.1" 5892 + version = "0.9.3" 4789 5893 source = "registry+https://github.com/rust-lang/crates.io-index" 4790 - checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 5894 + checksum = "5adeb847e35eed4efbffd9fb2e4d078b91ece56e4d6a3c0d2df55b3a1dac07d5" 4791 5895 dependencies = [ 4792 5896 "tinystr", 4793 5897 ] 4794 5898 4795 5899 [[package]] 4796 5900 name = "unic-langid-macros" 4797 - version = "0.9.1" 5901 + version = "0.9.3" 4798 5902 source = "registry+https://github.com/rust-lang/crates.io-index" 4799 - checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe" 5903 + checksum = "d4d4589552627b69df7135a17919dc0b62f320be06988b77fcfc69bc89425600" 4800 5904 dependencies = [ 4801 - "proc-macro-hack", 4802 5905 "tinystr", 4803 5906 "unic-langid-impl", 4804 5907 "unic-langid-macros-impl", ··· 4806 5909 4807 5910 [[package]] 4808 5911 name = "unic-langid-macros-impl" 4809 - version = "0.9.1" 5912 + version = "0.9.3" 4810 5913 source = "registry+https://github.com/rust-lang/crates.io-index" 4811 - checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8" 5914 + checksum = "fb865515362dca12581b9a4b731acdc9015f4b81e1be9b21fa6d9dbbd2598e5e" 4812 5915 dependencies = [ 4813 - "proc-macro-hack", 5916 + "find-crate", 5917 + "proc-macro2", 4814 5918 "quote", 4815 - "syn 1.0.109", 5919 + "syn 2.0.39", 4816 5920 "unic-langid-impl", 4817 5921 ] 4818 5922 ··· 4880 5984 checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 4881 5985 4882 5986 [[package]] 5987 + name = "unicode-xid" 5988 + version = "0.2.4" 5989 + source = "registry+https://github.com/rust-lang/crates.io-index" 5990 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5991 + 5992 + [[package]] 4883 5993 name = "unindent" 4884 5994 version = "0.2.3" 4885 5995 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4898 6008 checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4899 6009 4900 6010 [[package]] 6011 + name = "ureq" 6012 + version = "2.9.1" 6013 + source = "registry+https://github.com/rust-lang/crates.io-index" 6014 + checksum = "f8cdd25c339e200129fe4de81451814e5228c9b771d57378817d6117cc2b3f97" 6015 + dependencies = [ 6016 + "base64 0.21.5", 6017 + "flate2", 6018 + "log", 6019 + "once_cell", 6020 + "rustls", 6021 + "rustls-webpki", 6022 + "serde", 6023 + "serde_json", 6024 + "url", 6025 + "webpki-roots", 6026 + ] 6027 + 6028 + [[package]] 4901 6029 name = "url" 4902 - version = "2.4.1" 6030 + version = "2.5.0" 4903 6031 source = "registry+https://github.com/rust-lang/crates.io-index" 4904 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 6032 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 4905 6033 dependencies = [ 4906 6034 "form_urlencoded", 4907 6035 "idna", ··· 4933 6061 4934 6062 [[package]] 4935 6063 name = "uuid" 4936 - version = "1.5.0" 6064 + version = "1.6.1" 4937 6065 source = "registry+https://github.com/rust-lang/crates.io-index" 4938 - checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 6066 + checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 6067 + dependencies = [ 6068 + "getrandom 0.2.11", 6069 + "rand 0.8.5", 6070 + ] 4939 6071 4940 6072 [[package]] 4941 6073 name = "valuable" ··· 5024 6156 5025 6157 [[package]] 5026 6158 name = "wasm-bindgen" 5027 - version = "0.2.87" 6159 + version = "0.2.89" 5028 6160 source = "registry+https://github.com/rust-lang/crates.io-index" 5029 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 6161 + checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 5030 6162 dependencies = [ 5031 6163 "cfg-if", 5032 6164 "wasm-bindgen-macro", ··· 5034 6166 5035 6167 [[package]] 5036 6168 name = "wasm-bindgen-backend" 5037 - version = "0.2.87" 6169 + version = "0.2.89" 5038 6170 source = "registry+https://github.com/rust-lang/crates.io-index" 5039 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 6171 + checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 5040 6172 dependencies = [ 5041 6173 "bumpalo", 5042 6174 "log", 5043 6175 "once_cell", 5044 6176 "proc-macro2", 5045 6177 "quote", 5046 - "syn 2.0.38", 6178 + "syn 2.0.39", 5047 6179 "wasm-bindgen-shared", 5048 6180 ] 5049 6181 5050 6182 [[package]] 5051 6183 name = "wasm-bindgen-futures" 5052 - version = "0.4.37" 6184 + version = "0.4.39" 5053 6185 source = "registry+https://github.com/rust-lang/crates.io-index" 5054 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 6186 + checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 5055 6187 dependencies = [ 5056 6188 "cfg-if", 5057 6189 "js-sys", ··· 5061 6193 5062 6194 [[package]] 5063 6195 name = "wasm-bindgen-macro" 5064 - version = "0.2.87" 6196 + version = "0.2.89" 5065 6197 source = "registry+https://github.com/rust-lang/crates.io-index" 5066 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 6198 + checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 5067 6199 dependencies = [ 5068 6200 "quote", 5069 6201 "wasm-bindgen-macro-support", ··· 5071 6203 5072 6204 [[package]] 5073 6205 name = "wasm-bindgen-macro-support" 5074 - version = "0.2.87" 6206 + version = "0.2.89" 5075 6207 source = "registry+https://github.com/rust-lang/crates.io-index" 5076 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 6208 + checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 5077 6209 dependencies = [ 5078 6210 "proc-macro2", 5079 6211 "quote", 5080 - "syn 2.0.38", 6212 + "syn 2.0.39", 5081 6213 "wasm-bindgen-backend", 5082 6214 "wasm-bindgen-shared", 5083 6215 ] 5084 6216 5085 6217 [[package]] 5086 6218 name = "wasm-bindgen-shared" 5087 - version = "0.2.87" 6219 + version = "0.2.89" 5088 6220 source = "registry+https://github.com/rust-lang/crates.io-index" 5089 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 6221 + checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 5090 6222 5091 6223 [[package]] 5092 6224 name = "wasm-streams" ··· 5113 6245 5114 6246 [[package]] 5115 6247 name = "webpki-roots" 5116 - version = "0.25.2" 6248 + version = "0.25.3" 6249 + source = "registry+https://github.com/rust-lang/crates.io-index" 6250 + checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 6251 + 6252 + [[package]] 6253 + name = "weezl" 6254 + version = "0.1.7" 6255 + source = "registry+https://github.com/rust-lang/crates.io-index" 6256 + checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 6257 + 6258 + [[package]] 6259 + name = "wgpu" 6260 + version = "0.18.0" 6261 + source = "registry+https://github.com/rust-lang/crates.io-index" 6262 + checksum = "30e7d227c9f961f2061c26f4cb0fbd4df0ef37e056edd0931783599d6c94ef24" 6263 + dependencies = [ 6264 + "arrayvec", 6265 + "cfg-if", 6266 + "flume 0.11.0", 6267 + "js-sys", 6268 + "log", 6269 + "naga", 6270 + "parking_lot", 6271 + "profiling", 6272 + "raw-window-handle", 6273 + "smallvec", 6274 + "static_assertions", 6275 + "wasm-bindgen", 6276 + "wasm-bindgen-futures", 6277 + "web-sys", 6278 + "wgpu-core", 6279 + "wgpu-hal", 6280 + "wgpu-types", 6281 + ] 6282 + 6283 + [[package]] 6284 + name = "wgpu-core" 6285 + version = "0.18.1" 6286 + source = "registry+https://github.com/rust-lang/crates.io-index" 6287 + checksum = "ef91c1d62d1e9e81c79e600131a258edf75c9531cbdbde09c44a011a47312726" 6288 + dependencies = [ 6289 + "arrayvec", 6290 + "bit-vec", 6291 + "bitflags 2.4.1", 6292 + "codespan-reporting", 6293 + "log", 6294 + "naga", 6295 + "parking_lot", 6296 + "profiling", 6297 + "raw-window-handle", 6298 + "rustc-hash", 6299 + "smallvec", 6300 + "thiserror", 6301 + "web-sys", 6302 + "wgpu-hal", 6303 + "wgpu-types", 6304 + ] 6305 + 6306 + [[package]] 6307 + name = "wgpu-hal" 6308 + version = "0.18.1" 6309 + source = "registry+https://github.com/rust-lang/crates.io-index" 6310 + checksum = "b84ecc802da3eb67b4cf3dd9ea6fe45bbb47ef13e6c49c5c3240868a9cc6cdd9" 6311 + dependencies = [ 6312 + "android_system_properties", 6313 + "arrayvec", 6314 + "ash", 6315 + "bit-set", 6316 + "bitflags 2.4.1", 6317 + "block", 6318 + "core-graphics-types", 6319 + "d3d12", 6320 + "glow", 6321 + "glutin_wgl_sys", 6322 + "gpu-alloc", 6323 + "gpu-allocator", 6324 + "gpu-descriptor", 6325 + "hassle-rs", 6326 + "js-sys", 6327 + "khronos-egl", 6328 + "libc", 6329 + "libloading 0.8.1", 6330 + "log", 6331 + "metal", 6332 + "naga", 6333 + "objc", 6334 + "once_cell", 6335 + "parking_lot", 6336 + "profiling", 6337 + "range-alloc", 6338 + "raw-window-handle", 6339 + "renderdoc-sys", 6340 + "rustc-hash", 6341 + "smallvec", 6342 + "thiserror", 6343 + "wasm-bindgen", 6344 + "web-sys", 6345 + "wgpu-types", 6346 + "winapi", 6347 + ] 6348 + 6349 + [[package]] 6350 + name = "wgpu-types" 6351 + version = "0.18.0" 5117 6352 source = "registry+https://github.com/rust-lang/crates.io-index" 5118 - checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 6353 + checksum = "0d5ed5f0edf0de351fe311c53304986315ce866f394a2e6df0c4b3c70774bcdd" 6354 + dependencies = [ 6355 + "bitflags 2.4.1", 6356 + "js-sys", 6357 + "web-sys", 6358 + ] 5119 6359 5120 6360 [[package]] 5121 6361 name = "which" ··· 5139 6379 "home", 5140 6380 "once_cell", 5141 6381 "rustix", 5142 - "windows-sys", 6382 + "windows-sys 0.48.0", 5143 6383 ] 5144 6384 5145 6385 [[package]] 6386 + name = "widestring" 6387 + version = "1.0.2" 6388 + source = "registry+https://github.com/rust-lang/crates.io-index" 6389 + checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 6390 + 6391 + [[package]] 5146 6392 name = "winapi" 5147 6393 version = "0.3.9" 5148 6394 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5179 6425 source = "registry+https://github.com/rust-lang/crates.io-index" 5180 6426 checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 5181 6427 dependencies = [ 5182 - "windows-core", 5183 - "windows-targets", 6428 + "windows-core 0.51.1", 6429 + "windows-targets 0.48.5", 6430 + ] 6431 + 6432 + [[package]] 6433 + name = "windows" 6434 + version = "0.52.0" 6435 + source = "registry+https://github.com/rust-lang/crates.io-index" 6436 + checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 6437 + dependencies = [ 6438 + "windows-core 0.52.0", 6439 + "windows-targets 0.52.0", 5184 6440 ] 5185 6441 5186 6442 [[package]] ··· 5189 6445 source = "registry+https://github.com/rust-lang/crates.io-index" 5190 6446 checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5191 6447 dependencies = [ 5192 - "windows-targets", 6448 + "windows-targets 0.48.5", 6449 + ] 6450 + 6451 + [[package]] 6452 + name = "windows-core" 6453 + version = "0.52.0" 6454 + source = "registry+https://github.com/rust-lang/crates.io-index" 6455 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 6456 + dependencies = [ 6457 + "windows-targets 0.52.0", 5193 6458 ] 5194 6459 5195 6460 [[package]] ··· 5198 6463 source = "registry+https://github.com/rust-lang/crates.io-index" 5199 6464 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5200 6465 dependencies = [ 5201 - "windows-targets", 6466 + "windows-targets 0.48.5", 6467 + ] 6468 + 6469 + [[package]] 6470 + name = "windows-sys" 6471 + version = "0.52.0" 6472 + source = "registry+https://github.com/rust-lang/crates.io-index" 6473 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6474 + dependencies = [ 6475 + "windows-targets 0.52.0", 5202 6476 ] 5203 6477 5204 6478 [[package]] ··· 5207 6481 source = "registry+https://github.com/rust-lang/crates.io-index" 5208 6482 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5209 6483 dependencies = [ 5210 - "windows_aarch64_gnullvm", 5211 - "windows_aarch64_msvc", 5212 - "windows_i686_gnu", 5213 - "windows_i686_msvc", 5214 - "windows_x86_64_gnu", 5215 - "windows_x86_64_gnullvm", 5216 - "windows_x86_64_msvc", 6484 + "windows_aarch64_gnullvm 0.48.5", 6485 + "windows_aarch64_msvc 0.48.5", 6486 + "windows_i686_gnu 0.48.5", 6487 + "windows_i686_msvc 0.48.5", 6488 + "windows_x86_64_gnu 0.48.5", 6489 + "windows_x86_64_gnullvm 0.48.5", 6490 + "windows_x86_64_msvc 0.48.5", 6491 + ] 6492 + 6493 + [[package]] 6494 + name = "windows-targets" 6495 + version = "0.52.0" 6496 + source = "registry+https://github.com/rust-lang/crates.io-index" 6497 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 6498 + dependencies = [ 6499 + "windows_aarch64_gnullvm 0.52.0", 6500 + "windows_aarch64_msvc 0.52.0", 6501 + "windows_i686_gnu 0.52.0", 6502 + "windows_i686_msvc 0.52.0", 6503 + "windows_x86_64_gnu 0.52.0", 6504 + "windows_x86_64_gnullvm 0.52.0", 6505 + "windows_x86_64_msvc 0.52.0", 5217 6506 ] 5218 6507 5219 6508 [[package]] ··· 5223 6512 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5224 6513 5225 6514 [[package]] 6515 + name = "windows_aarch64_gnullvm" 6516 + version = "0.52.0" 6517 + source = "registry+https://github.com/rust-lang/crates.io-index" 6518 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 6519 + 6520 + [[package]] 5226 6521 name = "windows_aarch64_msvc" 5227 6522 version = "0.48.5" 5228 6523 source = "registry+https://github.com/rust-lang/crates.io-index" 5229 6524 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5230 6525 5231 6526 [[package]] 6527 + name = "windows_aarch64_msvc" 6528 + version = "0.52.0" 6529 + source = "registry+https://github.com/rust-lang/crates.io-index" 6530 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 6531 + 6532 + [[package]] 5232 6533 name = "windows_i686_gnu" 5233 6534 version = "0.48.5" 5234 6535 source = "registry+https://github.com/rust-lang/crates.io-index" 5235 6536 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 5236 6537 5237 6538 [[package]] 6539 + name = "windows_i686_gnu" 6540 + version = "0.52.0" 6541 + source = "registry+https://github.com/rust-lang/crates.io-index" 6542 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 6543 + 6544 + [[package]] 5238 6545 name = "windows_i686_msvc" 5239 6546 version = "0.48.5" 5240 6547 source = "registry+https://github.com/rust-lang/crates.io-index" 5241 6548 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5242 6549 5243 6550 [[package]] 6551 + name = "windows_i686_msvc" 6552 + version = "0.52.0" 6553 + source = "registry+https://github.com/rust-lang/crates.io-index" 6554 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 6555 + 6556 + [[package]] 5244 6557 name = "windows_x86_64_gnu" 5245 6558 version = "0.48.5" 5246 6559 source = "registry+https://github.com/rust-lang/crates.io-index" 5247 6560 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5248 6561 5249 6562 [[package]] 6563 + name = "windows_x86_64_gnu" 6564 + version = "0.52.0" 6565 + source = "registry+https://github.com/rust-lang/crates.io-index" 6566 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 6567 + 6568 + [[package]] 5250 6569 name = "windows_x86_64_gnullvm" 5251 6570 version = "0.48.5" 5252 6571 source = "registry+https://github.com/rust-lang/crates.io-index" 5253 6572 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5254 6573 5255 6574 [[package]] 6575 + name = "windows_x86_64_gnullvm" 6576 + version = "0.52.0" 6577 + source = "registry+https://github.com/rust-lang/crates.io-index" 6578 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 6579 + 6580 + [[package]] 5256 6581 name = "windows_x86_64_msvc" 5257 6582 version = "0.48.5" 5258 6583 source = "registry+https://github.com/rust-lang/crates.io-index" 5259 6584 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5260 6585 5261 6586 [[package]] 6587 + name = "windows_x86_64_msvc" 6588 + version = "0.52.0" 6589 + source = "registry+https://github.com/rust-lang/crates.io-index" 6590 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 6591 + 6592 + [[package]] 5262 6593 name = "winnow" 5263 - version = "0.5.17" 6594 + version = "0.5.25" 5264 6595 source = "registry+https://github.com/rust-lang/crates.io-index" 5265 - checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" 6596 + checksum = "b7e87b8dfbe3baffbe687eef2e164e32286eff31a5ee16463ce03d991643ec94" 5266 6597 dependencies = [ 5267 6598 "memchr", 5268 6599 ] ··· 5284 6615 checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 5285 6616 dependencies = [ 5286 6617 "cfg-if", 5287 - "windows-sys", 6618 + "windows-sys 0.48.0", 5288 6619 ] 5289 6620 5290 6621 [[package]] 5291 6622 name = "wiremock" 5292 - version = "0.5.19" 6623 + version = "0.5.22" 5293 6624 source = "registry+https://github.com/rust-lang/crates.io-index" 5294 - checksum = "c6f71803d3a1c80377a06221e0530be02035d5b3e854af56c6ece7ac20ac441d" 6625 + checksum = "13a3a53eaf34f390dd30d7b1b078287dd05df2aa2e21a589ccb80f5c7253c2e9" 5295 6626 dependencies = [ 5296 6627 "assert-json-diff", 5297 6628 "async-trait", ··· 5319 6650 ] 5320 6651 5321 6652 [[package]] 6653 + name = "xml-rs" 6654 + version = "0.8.19" 6655 + source = "registry+https://github.com/rust-lang/crates.io-index" 6656 + checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 6657 + 6658 + [[package]] 5322 6659 name = "xml5ever" 5323 6660 version = "0.17.0" 5324 6661 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5348 6685 ] 5349 6686 5350 6687 [[package]] 6688 + name = "yoke" 6689 + version = "0.7.3" 6690 + source = "registry+https://github.com/rust-lang/crates.io-index" 6691 + checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4" 6692 + dependencies = [ 6693 + "serde", 6694 + "stable_deref_trait", 6695 + "yoke-derive", 6696 + "zerofrom", 6697 + ] 6698 + 6699 + [[package]] 6700 + name = "yoke-derive" 6701 + version = "0.7.3" 6702 + source = "registry+https://github.com/rust-lang/crates.io-index" 6703 + checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8" 6704 + dependencies = [ 6705 + "proc-macro2", 6706 + "quote", 6707 + "syn 2.0.39", 6708 + "synstructure", 6709 + ] 6710 + 6711 + [[package]] 5351 6712 name = "zerocopy" 5352 - version = "0.7.13" 6713 + version = "0.7.31" 5353 6714 source = "registry+https://github.com/rust-lang/crates.io-index" 5354 - checksum = "9ffc046c9f849405a42c87e82e2f2f861d1f0a06b855910c76c2bd1e87be900c" 6715 + checksum = "1c4061bedbb353041c12f413700357bec76df2c7e2ca8e4df8bac24c6bf68e3d" 5355 6716 dependencies = [ 5356 6717 "zerocopy-derive", 5357 6718 ] 5358 6719 5359 6720 [[package]] 5360 6721 name = "zerocopy-derive" 5361 - version = "0.7.13" 6722 + version = "0.7.31" 6723 + source = "registry+https://github.com/rust-lang/crates.io-index" 6724 + checksum = "b3c129550b3e6de3fd0ba67ba5c81818f9805e58b8d7fee80a3a59d2c9fc601a" 6725 + dependencies = [ 6726 + "proc-macro2", 6727 + "quote", 6728 + "syn 2.0.39", 6729 + ] 6730 + 6731 + [[package]] 6732 + name = "zerofrom" 6733 + version = "0.1.3" 6734 + source = "registry+https://github.com/rust-lang/crates.io-index" 6735 + checksum = "655b0814c5c0b19ade497851070c640773304939a6c0fd5f5fb43da0696d05b7" 6736 + dependencies = [ 6737 + "zerofrom-derive", 6738 + ] 6739 + 6740 + [[package]] 6741 + name = "zerofrom-derive" 6742 + version = "0.1.3" 5362 6743 source = "registry+https://github.com/rust-lang/crates.io-index" 5363 - checksum = "246c000cfc5f942bac7ff99fde24a9ebb589d92e024bc758c6c733c15a02a73e" 6744 + checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3" 5364 6745 dependencies = [ 5365 6746 "proc-macro2", 5366 6747 "quote", 5367 - "syn 2.0.38", 6748 + "syn 2.0.39", 6749 + "synstructure", 5368 6750 ] 5369 6751 5370 6752 [[package]] ··· 5373 6755 source = "registry+https://github.com/rust-lang/crates.io-index" 5374 6756 checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 5375 6757 dependencies = [ 6758 + "aes", 5376 6759 "byteorder", 6760 + "bzip2", 6761 + "constant_time_eq 0.1.5", 5377 6762 "crc32fast", 5378 6763 "crossbeam-utils", 5379 6764 "flate2", 6765 + "hmac", 6766 + "pbkdf2", 6767 + "sha1", 5380 6768 "time", 6769 + "zstd 0.11.2+zstd.1.5.2", 6770 + ] 6771 + 6772 + [[package]] 6773 + name = "zstd" 6774 + version = "0.11.2+zstd.1.5.2" 6775 + source = "registry+https://github.com/rust-lang/crates.io-index" 6776 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 6777 + dependencies = [ 6778 + "zstd-safe 5.0.2+zstd.1.5.2", 5381 6779 ] 5382 6780 5383 6781 [[package]] ··· 5386 6784 source = "registry+https://github.com/rust-lang/crates.io-index" 5387 6785 checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 5388 6786 dependencies = [ 5389 - "zstd-safe", 6787 + "zstd-safe 7.0.0", 6788 + ] 6789 + 6790 + [[package]] 6791 + name = "zstd-safe" 6792 + version = "5.0.2+zstd.1.5.2" 6793 + source = "registry+https://github.com/rust-lang/crates.io-index" 6794 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 6795 + dependencies = [ 6796 + "libc", 6797 + "zstd-sys", 5390 6798 ] 5391 6799 5392 6800 [[package]] ··· 5407 6815 "cc", 5408 6816 "pkg-config", 5409 6817 ] 6818 + 6819 + [[package]] 6820 + name = "zune-inflate" 6821 + version = "0.2.54" 6822 + source = "registry+https://github.com/rust-lang/crates.io-index" 6823 + checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 6824 + dependencies = [ 6825 + "simd-adler32", 6826 + ]
+5 -5
pkgs/games/anki/default.nix
··· 28 28 29 29 let 30 30 pname = "anki"; 31 - version = "23.10.1"; 32 - rev = "fac9e0ee1436ba5ac3366c72dd9394a6e692b1cf"; 31 + version = "23.12"; 32 + rev = "55ef11af84151b397f267a2f37d537aad5f1076d"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "ankitects"; 36 36 repo = "anki"; 37 37 rev = version; 38 - hash = "sha256-leGdamjCehffv2ByL7JWdaUhxRA4ZEPRKxBphUVzfRw="; 38 + hash = "sha256-KkB0tNjW08XIdpmW2mzwLqhn5DHoPV0AM0ciZOxSKEs="; 39 39 fetchSubmodules = true; 40 40 }; 41 41 42 42 cargoLock = { 43 43 lockFile = ./Cargo.lock; 44 44 outputHashes = { 45 - "fsrs-0.1.0" = "sha256-bnLmJk2aaWBdgdsiasRrDG4NiTDMCDCXotCSoc0ldlk="; 45 + "fsrs-0.1.0" = "sha256-RIT7mbesrju70S4fPNy1N6+pSr78mcenQ6ujPtu4UbE="; 46 46 "linkcheck-0.4.1" = "sha256-S93J1cDzMlzDjcvz/WABmv8CEC6x78E+f7nzhsN7NkE="; 47 47 "percent-encoding-iri-2.2.0" = "sha256-kCBeS1PNExyJd4jWfDfctxq6iTdAq69jtxFQgCCQ8kQ="; 48 48 }; ··· 51 51 52 52 yarnOfflineCache = fetchYarnDeps { 53 53 yarnLock = "${src}/yarn.lock"; 54 - hash = "sha256-ckpKxALSpZAu5xyBOYzMcNDQDfCMaYAtSGONHTCBhw4="; 54 + hash = "sha256-tOl+gLBE6SNPQvVWT/N7RKFaaP9SnpCBJf5dq2wCPuM="; 55 55 }; 56 56 57 57 anki-build-python = python3.withPackages (ps: with ps; [
+2 -2
pkgs/games/doom-ports/doomretro/default.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "doomretro"; 14 - version = "5.1.1"; 14 + version = "5.1.3"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "bradharding"; 18 18 repo = "doomretro"; 19 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-OxnsjY+Czo8nWLSBwPd1HlggPbkogC9l8CVuOyJ/vBo="; 20 + hash = "sha256-hwjz9nzhasDIeFlmPIwBNhJjrNfZ8ksttx5A7WSomBQ="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+3 -3
pkgs/games/legendary-gl/default.nix
··· 9 9 10 10 buildPythonApplication rec { 11 11 pname = "legendary-gl"; # Name in pypi 12 - version = "unstable-2023-10-14"; 12 + version = "0.20.34"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "derrod"; 16 16 repo = "legendary"; 17 - rev = "450784283dd49152dda6322db2fb2ef33e7c382e"; 18 - sha256 = "sha256-iwIaxD35tkOX6NX1SVNmN2OQACwaX/C4xnfgT5YcUvg="; 17 + rev = "56d439ed2d3d9f34e2b08fa23e627c23a487b8d6"; 18 + sha256 = "sha256-yCHeeEGw+9gtRMGyIhbStxJhmSM/1Fqly7HSRDkZILQ="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+3 -3
pkgs/games/minesweep-rs/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "minesweep-rs"; 8 - version = "6.0.41"; 8 + version = "6.0.45"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "cpcloud"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-j72ragB4cwFGX08Zlz8eF3j+3dp7JZ64oJ461JoLIrU="; 14 + hash = "sha256-nD2lDfTT1lm2jN1ORq4PV3ER+RJJJU0ZTvSlvvskCxs="; 15 15 }; 16 16 17 - cargoHash = "sha256-QtAuUNhBIMz+j6h2DVLDxxWk8iMXy8G2pinS8115qr4="; 17 + cargoHash = "sha256-skzi5lSQSQgBK9RDtiuUwFDEzyV4LYrV5+g+7dmgfMc="; 18 18 19 19 meta = with lib; { 20 20 description = "Sweep some mines for fun, and probably not for profit";
+4 -2
pkgs/games/rare/default.nix
··· 3 3 , buildPythonApplication 4 4 , qt5 5 5 , legendary-gl 6 + , orjson 6 7 , pypresence 7 8 , pyqt5 8 9 , python ··· 14 15 15 16 buildPythonApplication rec { 16 17 pname = "rare"; 17 - version = "1.10.7"; 18 + version = "1.10.11"; 18 19 pyproject = true; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "RareDevs"; 22 23 repo = "Rare"; 23 24 rev = "refs/tags/${version}"; 24 - hash = "sha256-rV6B9tCdwWK9yvEtVyLnv4Lo1WP5xW0f4JcsNZ7iBGI="; 25 + hash = "sha256-2DtI5iaK4bYdGfIEhPy52WaEqh+IJMZ6qo/348lMnLY="; 25 26 }; 26 27 27 28 nativeBuildInputs = [ ··· 31 32 32 33 propagatedBuildInputs = [ 33 34 legendary-gl 35 + orjson 34 36 pypresence 35 37 pyqt5 36 38 qtawesome
+2 -2
pkgs/os-specific/bsd/netbsd/default.nix
··· 766 766 version = "9.2"; 767 767 sha256 = "0pd0dggl3w4bv5i5h0s1wrc8hr66n4hkv3zlklarwfdhc692fqal"; 768 768 buildInputs = with self; [ libterminfo ]; 769 - env.NIX_CFLAGS_COMPILE = toString [ 769 + env.NIX_CFLAGS_COMPILE = toString ([ 770 770 "-D__scanflike(a,b)=" 771 771 "-D__va_list=va_list" 772 772 "-D__warn_references(a,b)=" 773 - ] ++ lib.optional stdenv.isDarwin "-D__strong_alias(a,b)="; 773 + ] ++ lib.optional stdenv.isDarwin "-D__strong_alias(a,b)="); 774 774 propagatedBuildInputs = with self; compatIfNeeded; 775 775 MKDOC = "no"; # missing vfontedpr 776 776 makeFlags = defaultMakeFlags ++ [ "LIBDO.terminfo=${self.libterminfo}/lib" ];
+2 -2
pkgs/servers/home-automation/evcc/default.nix
··· 16 16 17 17 buildGoModule rec { 18 18 pname = "evcc"; 19 - version = "0.123.1"; 19 + version = "0.123.2"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "evcc-io"; 23 23 repo = pname; 24 24 rev = version; 25 - hash = "sha256-12xRdyBil5sTUqxmjw3af9bLdO+LTI+8qwnDQYYm9NA="; 25 + hash = "sha256-iGt3j8q8dpQLUIHHnGHCgraPETk9GL9t/ygBZtPG7yM="; 26 26 }; 27 27 28 28 vendorHash = "sha256-rhGMN5v+JzNg1p2GptomDDtqS7M4EafROXXy185qtmU=";
+3 -3
pkgs/servers/homepage-dashboard/default.nix
··· 13 13 14 14 buildNpmPackage rec { 15 15 pname = "homepage-dashboard"; 16 - version = "0.8.3"; 16 + version = "0.8.4"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "gethomepage"; 20 20 repo = "homepage"; 21 21 rev = "v${version}"; 22 - hash = "sha256-I1WoEt824qk7vfaDHD1zIXo4/QbihK5hoR3GbjxiO90="; 22 + hash = "sha256-WjyOpR8DcjlJJgUkWortc0ApgpusknTSeVQlSa5rCRQ="; 23 23 }; 24 24 25 - npmDepsHash = "sha256-tsAUPb7RFW7HSV1bS8ZBCL1xLEhvgvTZSDfS8DlcUgg="; 25 + npmDepsHash = "sha256-RC2Y4XZqO+mLEKQxq+j2ukZYi/uu9XIjYadxek9P+SM="; 26 26 27 27 preBuild = '' 28 28 mkdir -p config
+3 -3
pkgs/servers/monitoring/mackerel-agent/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mackerel-agent"; 5 - version = "0.78.2"; 5 + version = "0.78.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mackerelio"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-KjPfu09+N9JWdFX3NWhGm2TfAUq5tN2QU/zLMYlYUtg="; 11 + sha256 = "sha256-9PahaZlHtD4p3C8CvXF2ceNuSOqyApJaZWhFNffNlVA="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; 15 15 nativeCheckInputs = lib.optionals (!stdenv.isDarwin) [ nettools ]; 16 16 buildInputs = lib.optionals (!stdenv.isDarwin) [ iproute2 ]; 17 17 18 - vendorHash = "sha256-A3e6qd6yjKsNUaXiltbS9G4WEMd3F1FxaxqMMVuBCUI="; 18 + vendorHash = "sha256-lcK1rofTKPpEu/tK8XpS9EhOA30R/8J3o57YlU1/+0k="; 19 19 20 20 subPackages = [ "." ]; 21 21
+2 -1
pkgs/servers/search/opensearch/default.nix
··· 41 41 --set JAVA_HOME "${jre_headless}" 42 42 43 43 wrapProgram $out/bin/opensearch-plugin --set JAVA_HOME "${jre_headless}" 44 - wrapProgram $out/bin/opensearch-cli --set JAVA_HOME "${jre_headless}" 44 + 45 + rm $out/bin/opensearch-cli 45 46 46 47 runHook postInstall 47 48 '';
+3 -3
pkgs/servers/spicedb/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "spicedb"; 9 - version = "1.26.0"; 9 + version = "1.28.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "authzed"; 13 13 repo = "spicedb"; 14 14 rev = "v${version}"; 15 - hash = "sha256-D68VuTCwa7RNHxNJEUIu6vP2VPHlnOlBM+vtnM30zDw="; 15 + hash = "sha256-Zbg5rcgOSgTeVDuZpvzXuo0DWx5PH+9xPxHZZJjqpKs="; 16 16 }; 17 17 18 - vendorHash = "sha256-dniZH+x3BFEMtmjpMBurphpJ1YMZvm9+CCHIJV5Xy4w="; 18 + vendorHash = "sha256-jzH9f/hN2S9MUtomIjPQ/VErDWyVjNN9G4W7hHiFRJs="; 19 19 20 20 subPackages = [ "cmd/spicedb" ]; 21 21
+2 -2
pkgs/shells/murex/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "murex"; 8 - version = "5.3.4000"; 8 + version = "5.3.5000"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "lmorg"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-cShXZa3ms7RmnRrvWyvijWF7kTO7K6GS1IvEUyT2mio="; 14 + sha256 = "sha256-2TX1HgbW2C8Yvrk4fnv43SRxYoCxYMrgLgsut4lj7NY="; 15 15 }; 16 16 17 17 vendorHash = "sha256-qOItRqCIxoHigufI6b7j2VdBDo50qGDe+LAaccgDh5w=";
+2 -2
pkgs/tools/admin/qovery-cli/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "qovery-cli"; 11 - version = "0.75.5"; 11 + version = "0.76.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Qovery"; 15 15 repo = "qovery-cli"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-dmdyKMmIi09AG7deI20cYukUuT6485B5xNhpHk14zC8="; 17 + hash = "sha256-Gf0wW+bv3+uvovsRa2AHn/N4sN8lc1ADK9t+jEVMA0c="; 18 18 }; 19 19 20 20 vendorHash = "sha256-R1CAB42moobsYuXNTtZXNLcCpSp8jfSt2FQi5fRnEdI=";
+3 -3
pkgs/tools/admin/wander/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "wander"; 5 - version = "0.12.6"; 5 + version = "0.14.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "robinovitch61"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-DYlbMdh5vgf3PjHVRU7F31upOe4QX5t2D3YdR3e736I="; 11 + sha256 = "sha256-ULttOJcP3LHQAlyJKGEKT3B3PqYOP5+IxDej673020M="; 12 12 }; 13 13 14 - vendorHash = "sha256-SqDGXV8MpvEQFAkcE1NWvWjdzYsvbO5vA6k+hpY0js0="; 14 + vendorHash = "sha256-0S8tzP5yNUrH6fp+v7nbUPTMWzYXyGw+ZNcXkSN+tWY="; 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17
+2 -2
pkgs/tools/audio/abcmidi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "abcMIDI"; 5 - version = "2023.11.17"; 5 + version = "2023.12.23"; 6 6 7 7 src = fetchzip { 8 8 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip"; 9 - hash = "sha256-yWCHK7bi1kCZNWBhaLqilm/ZUv5YXUGi7W3PaRKA7ww="; 9 + hash = "sha256-j7gww8T3wHMtec/Nvqxys2dSQCTJOw/7OQ8gwpc3mxo="; 10 10 }; 11 11 12 12 meta = with lib; {
+3 -3
pkgs/tools/audio/unflac/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "unflac"; 10 - version = "1.1"; 10 + version = "1.2"; 11 11 12 12 src = fetchFromSourcehut { 13 13 owner = "~ft"; 14 14 repo = pname; 15 15 rev = version; 16 - sha256 = "sha256-gDgmEEOvsudSYdLUodTuE50+2hZpMqlnaVGanv/rg+U="; 16 + sha256 = "sha256-BgXuPAXrw28axfTEh10Yh8dQc27M1/lSmCo2eAeNnjE="; 17 17 }; 18 18 19 - vendorHash = "sha256-X3cMhzaf1t+x7D8BVBfQy00rAACDEPmIOezIhKzqOZ8="; 19 + vendorHash = "sha256-IQHxEYv6l8ORoX+a3Szox9tS2fyBk0tpK+Q1AsWohX0="; 20 20 21 21 nativeBuildInputs = [ makeWrapper ]; 22 22 postFixup = ''
+3 -3
pkgs/tools/games/igir/default.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "igir"; 8 - version = "2.0.6"; 8 + version = "2.2.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "emmercm"; 12 12 repo = "igir"; 13 13 rev = "v${version}"; 14 - hash = "sha256-HIhk60I5VUMHBUp5EQGpE7RZ0KiYwVMl1jEX9zb5ttA="; 14 + hash = "sha256-RHMsLiet3O/4aYLKWtxr1oJDU6sy5kHxr422AUqLzMA="; 15 15 }; 16 16 17 - npmDepsHash = "sha256-P+H6q+jwfJFMb5qtOS3OCVUu9MtZ+Knaog0qyP3FpFo="; 17 + npmDepsHash = "sha256-MvXhSSqHHI3Ofgx+EnKwR5LuHl33h6sjTZ+ErBfjb6s="; 18 18 19 19 # I have no clue why I have to do this 20 20 postPatch = ''
+2 -2
pkgs/tools/misc/blahaj/default.nix
··· 5 5 6 6 crystal.buildCrystalPackage rec { 7 7 pname = "blahaj"; 8 - version = "2.1.0"; 8 + version = "2.2.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "GeopJr"; 12 12 repo = "BLAHAJ"; 13 13 rev = "v${version}"; 14 - hash = "sha256-rX6isAIlpNDBOGLmtvRXmqY90ByFfXeYI0HAAPIMXf8="; 14 + hash = "sha256-CmMF9jDKUo+c8dYc2UEHKdBDE4dgwExcRS5sSUsUJik="; 15 15 }; 16 16 17 17 meta = with lib; {
+3 -3
pkgs/tools/misc/phrase-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "phrase-cli"; 5 - version = "2.19.0"; 5 + version = "2.19.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "phrase"; 9 9 repo = "phrase-cli"; 10 10 rev = version; 11 - sha256 = "sha256-dJlyeld1tXLW6CMRCbP5DfNFu6T8vvT950qKcCrc+DY="; 11 + sha256 = "sha256-lBAht2r48+nlCrJTUPzcJK2Nd5pPqStTv27jghtF8e4="; 12 12 }; 13 13 14 - vendorHash = "sha256-kKw0yrxx1+C3dJ59DQ0eJL5k+yqkDC5twMcIMTrYvY8="; 14 + vendorHash = "sha256-0oepdfm+MWA/F+B/Ayl2PiBvOL4bA9iUNV+zculIaN8="; 15 15 16 16 ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; 17 17
+3 -3
pkgs/tools/networking/cfspeedtest/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cfspeedtest"; 9 - version = "1.1.3"; 9 + version = "1.2.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "code-inflation"; 13 13 repo = pname; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-ZbE8/mh9hb81cGz0Wxq3gTa9BueKfQApeq5z2DGUak0="; 15 + hash = "sha256-/Msm5odr0K4yxkfc54nVrVxtaBhoerBymFrfOP8zigU="; 16 16 }; 17 17 18 - cargoHash = "sha256-+cKQkogZc4iIIVMyHtbS44DNkCKD2cWkVN2o9m+WFbM="; 18 + cargoHash = "sha256-JqFX9RbyjZqp9rp2ZNA1XlOCUQ5I4aGvv4UsWVtsvQ0="; 19 19 20 20 meta = with lib; { 21 21 description = "Unofficial CLI for speed.cloudflare.com";
+3 -3
pkgs/tools/networking/dae/default.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "dae"; 8 - version = "0.3.0"; 8 + version = "0.4.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "daeuniverse"; 12 12 repo = "dae"; 13 13 rev = "v${version}"; 14 - hash = "sha256-WiJqhXYehuUCLEuVbsQkmTntuH1srtePtZgYBSTbxiw="; 14 + hash = "sha256-hvAuWCacaWxXwxx5ktj57hnWt8fcnwD6rUuRj1+ZtFA="; 15 15 fetchSubmodules = true; 16 16 }; 17 17 18 - vendorHash = "sha256-fb4PEMhV8+5zaRJyl+nYi2BHcOUDUVAwxce2xaRt5JA="; 18 + vendorHash = "sha256-qK+x6ciAebwIWHRjRpNXCAqsfnmEx37evS4+7kwcFIs="; 19 19 20 20 proxyVendor = true; 21 21
+3 -3
pkgs/tools/networking/kail/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kail"; 5 - version = "0.17.1"; 5 + version = "0.17.2"; 6 6 7 7 ldflags = [ 8 8 "-s" ··· 14 14 owner = "boz"; 15 15 repo = "kail"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-AmbgrSG8Mc4cHEDn9qtaAQ/RQjSDS5JjKhqZAcHYLV4="; 17 + sha256 = "sha256-mUdb3f5GaD+3GceUOpIFHKgGqqollzCJ8/oUj/37xAU="; 18 18 }; 19 19 20 - vendorHash = "sha256-80ZZZWTRmCClHkfsV/0WStuZ/xcxyycA5Fg4W2BqtF8="; 20 + vendorHash = "sha256-GOrw/5nDMTg2FKkzii7FkyzCxfBurnnQbfBF4nfSaJI="; 21 21 22 22 meta = with lib; { 23 23 description = "Kubernetes log viewer";
+2 -2
pkgs/tools/package-management/apx/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "apx"; 9 - version = "2.1.0"; 9 + version = "2.1.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Vanilla-OS"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-spxZgc1krs8AhOhAZmqGj/yiXzMUefcFFKg/xFpdWj8="; 15 + hash = "sha256-TXGfJHe4dOOpP7iJFbjL5WnqcxHeOn5naKjnBQ3c5dE="; 16 16 }; 17 17 18 18 vendorHash = null;
+3 -4
pkgs/tools/security/otpauth/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "otpauth"; 8 - version = "0.5.1"; 8 + version = "0.5.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "dim13"; 12 12 repo = "otpauth"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-jeKxCuE3cA/oTEKwdrCGPchsrtaMyirTzv8oLl9gxtA="; 14 + sha256 = "sha256-1+A1oXY5sKMr9dVa/4vB+ZkfZSDdhag5y5LfM7OJmKo="; 15 15 }; 16 16 17 - vendorHash = "sha256-jnIq7Zc2MauJReJ9a8TeqXXsvHixsBB+znmXAxcpqUQ="; 18 - doCheck = true; 17 + vendorHash = "sha256-ZRCwZGlWzlWh+E3KUH83639Tfck7bwE36wXVnG7EQIE="; 19 18 20 19 meta = with lib; { 21 20 description = "Google Authenticator migration decoder";
+3 -3
pkgs/tools/text/markdownlint-cli/default.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "markdownlint-cli"; 8 - version = "0.35.0"; 8 + version = "0.38.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "igorshubovych"; 12 12 repo = "markdownlint-cli"; 13 13 rev = "v${version}"; 14 - hash = "sha256-PkvgZn7cQafKO7p5i1fYYZrWjNcFuX700r223qUMN5I="; 14 + hash = "sha256-3PiienQjyJQ/ElY4j0Ccu+r6KtIu1kuPlobHqXE0GY4="; 15 15 }; 16 16 17 - npmDepsHash = "sha256-hh8T2MRjUJQVibd+cY7vkJvBgNDueWuluGE3HxWOCU8="; 17 + npmDepsHash = "sha256-WoXyWn58E4+Lj3LWqr/8JbvAo5IcjLgnzhIt59bSqV4="; 18 18 19 19 dontNpmBuild = true; 20 20
+4 -4
pkgs/tools/text/percollate/default.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "percollate"; 5 - version = "4.0.2"; 5 + version = "4.0.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "danburzo"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-QLbLg/zdDCZsRKgC4vR0OT//JHaapGmX33l7jIqUc1M="; 11 + hash = "sha256-Gl9v8WdntiatgxIvH1PZe3U9imGqdm5iYUx8gCwJhLw="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-Hxhgjdiz0zC/UlFXK8vvKZFI963Wi2Wx6iHWegr6f10="; 14 + npmDepsHash = "sha256-/HYnoMd+rriZ4WYGyM7g62Yii7lc/+ZKkc5QfPpFAQU="; 15 15 16 16 dontNpmBuild = true; 17 17 18 18 # Dev dependencies include an unnecessary Java dependency (epubchecker) 19 - # https://github.com/danburzo/percollate/blob/v4.0.2/package.json#L40 19 + # https://github.com/danburzo/percollate/blob/v4.0.4/package.json#L40 20 20 npmInstallFlags = [ "--omit=dev" ]; 21 21 22 22 nativeBuildInputs = [ makeWrapper ];
+2
pkgs/top-level/aliases.nix
··· 306 306 }; # Added 2021-01-14 307 307 308 308 gitter = throw "gitter has been removed since the client has been abandoned by upstream with the backend migration to Matrix"; # Added 2023-09-18 309 + glide = throw "'glide' has been removed as it is unmaintained, please use Go modules instead"; # Added 2023-12-26 309 310 gmailieer = lieer; # Added 2020-04-19 310 311 gmic-qt-krita = throw "gmic-qt-krita was removed as it's no longer supported upstream."; # Converted to throw 2023-02-02 311 312 gnatboot11 = gnat-bootstrap11; ··· 332 333 gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 333 334 gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2023-09-10 334 335 gnuradio-rds = throw "'gnuradio-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 336 + go2nix = throw "'go2nix' has been removed as it was archived upstream"; # Added 2023-12-27 335 337 gobby5 = gobby; # Added 2021-02-01 336 338 337 339 #godot
-8
pkgs/top-level/all-packages.nix
··· 3041 3041 fox = fox_1_6; 3042 3042 }; 3043 3043 3044 - xplr = callPackage ../applications/file-managers/xplr { }; 3045 - 3046 3044 xplorer = callPackage ../applications/file-managers/xplorer { }; 3047 3045 3048 3046 johnny-reborn-engine = callPackage ../applications/misc/johnny-reborn { }; ··· 5598 5596 glpaper = callPackage ../development/tools/glpaper { }; 5599 5597 5600 5598 gllvm = callPackage ../development/tools/gllvm { }; 5601 - 5602 - glide = callPackage ../development/tools/glide { }; 5603 5599 5604 5600 globalarrays = callPackage ../development/libraries/globalarrays { }; 5605 5601 ··· 25990 25986 go = buildPackages.go_1_21; 25991 25987 }; 25992 25988 25993 - go2nix = callPackage ../development/tools/go2nix { }; 25994 - 25995 25989 leaps = callPackage ../development/tools/leaps { }; 25996 25990 25997 25991 ### DEVELOPMENT / JAVA MODULES ··· 30477 30471 }; 30478 30472 30479 30473 anytone-emu = callPackage ../applications/radio/anytone-emu { }; 30480 - 30481 - anytype = callPackage ../applications/misc/anytype { }; 30482 30474 30483 30475 ao = libfive; 30484 30476
+1 -1
pkgs/top-level/beam-packages.nix
··· 13 13 self = beam; 14 14 15 15 # Aliases added 2023-03-21 16 - versionLoop = f: lib.lists.foldr (version: acc: (f version) // acc) { } [ "26" "25" "24" "23" ]; 16 + versionLoop = f: lib.lists.foldr (version: acc: (f version) // acc) { } [ "26" "25" "24" ]; 17 17 18 18 interpretersAliases = versionLoop (version: { 19 19 "erlangR${version}" = self.interpreters."erlang_${version}";