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 }; 16026 running-grass = { 16027 name = "Leo Liu"; 16028 - email = "467195537@qq.com"; 16029 github = "running-grass"; 16030 githubId = 17241154; 16031 keys = [{
··· 16025 }; 16026 running-grass = { 16027 name = "Leo Liu"; 16028 + email = "hi@grass.show"; 16029 github = "running-grass"; 16030 githubId = 17241154; 16031 keys = [{
+2 -2
nixos/modules/services/web-apps/invidious.nix
··· 153 message = '' 154 For local automatic database provisioning (services.invidious.database.createLocally == true) 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. 157 This is the default since NixOS 24.05. For older systems, it is normally safe to manually set 158 services.invidious.database.user to "invidious" as the new user will be created with permissions 159 - for the existing database. 160 ''; 161 } 162 ];
··· 153 message = '' 154 For local automatic database provisioning (services.invidious.database.createLocally == true) 155 to work, the username used to connect to PostgreSQL must match the database name, that is 156 + services.invidious.settings.db.user must match services.invidious.settings.db.dbname. 157 This is the default since NixOS 24.05. For older systems, it is normally safe to manually set 158 services.invidious.database.user to "invidious" as the new user will be created with permissions 159 + for the existing database. `REASSIGN OWNED BY kemal TO invidious;` may also be needed. 160 ''; 161 } 162 ];
+3 -3
pkgs/applications/audio/mopidy/spotify.nix
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "mopidy-spotify"; 5 - version = "unstable-2023-11-01"; 6 7 src = fetchFromGitHub { 8 owner = "mopidy"; 9 repo = "mopidy-spotify"; 10 - rev = "48faaaa2642647b0152231798b46ccd9631694f5"; 11 - hash = "sha256-RwkUdcbDU7/ndVnPteG/iXB2dloljvCHQlvPk4tacuA="; 12 }; 13 14 propagatedBuildInputs = [
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "mopidy-spotify"; 5 + version = "unstable-2023-12-20"; 6 7 src = fetchFromGitHub { 8 owner = "mopidy"; 9 repo = "mopidy-spotify"; 10 + rev = "2d26b54900bc1fdb974f571036f7101f6e6a3846"; 11 + hash = "sha256-T5lWgjDhYCUe/mWAM1SFHzWbxyJ7US1fn0sPTVi/s2s="; 12 }; 13 14 propagatedBuildInputs = [
+2 -2
pkgs/applications/blockchains/clightning/default.nix
··· 22 in 23 stdenv.mkDerivation rec { 24 pname = "clightning"; 25 - version = "23.11.1"; 26 27 src = fetchurl { 28 url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip"; 29 - sha256 = "sha256-PH5vNaQWUP9liKOiNXJnYPWn6LPBw6+XfT4KvcXb4Kk="; 30 }; 31 32 # when building on darwin we need dawin.cctools to provide the correct libtool
··· 22 in 23 stdenv.mkDerivation rec { 24 pname = "clightning"; 25 + version = "23.11.2"; 26 27 src = fetchurl { 28 url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip"; 29 + sha256 = "sha256-n1+9Q493N/N5sr7sVpzhObtbKpEejsNUUhhbYPukveg="; 30 }; 31 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 # nix run --impure --expr 'with import <nixpkgs> {}; jupyter.override { definitions.coq = coq-kernel.definition; }' 19 20 let 21 - python = python3.withPackages (ps: [ ps.traitlets ps.jupyter_core ps.ipykernel (callPackage ./kernel.nix {}) ]); 22 23 logos = runCommand "coq-logos" { buildInputs = [ imagemagick ]; } '' 24 mkdir -p $out
··· 18 # nix run --impure --expr 'with import <nixpkgs> {}; jupyter.override { definitions.coq = coq-kernel.definition; }' 19 20 let 21 + python = python3.withPackages (ps: [ ps.traitlets ps.jupyter-core ps.ipykernel (callPackage ./kernel.nix {}) ]); 22 23 logos = runCommand "coq-logos" { buildInputs = [ imagemagick ]; } '' 24 mkdir -p $out
+2 -2
pkgs/applications/file-managers/xplr/default.nix pkgs/by-name/xp/xplr/package.nix
··· 24 ''; 25 26 postInstall = '' 27 - mkdir -p $out/share 28 - cp assets/desktop/xplr.desktop $out/share 29 30 mkdir -p $out/share/icons/hicolor/scalable/apps 31 cp assets/icon/xplr.svg $out/share/icons/hicolor/scalable/apps
··· 24 ''; 25 26 postInstall = '' 27 + mkdir -p $out/share/applications 28 + cp assets/desktop/xplr.desktop $out/share/applications 29 30 mkdir -p $out/share/icons/hicolor/scalable/apps 31 cp assets/icon/xplr.svg $out/share/icons/hicolor/scalable/apps
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 49 50 stdenv.mkDerivation (finalAttrs: { 51 pname = "imagemagick"; 52 - version = "7.1.1-23"; 53 54 src = fetchFromGitHub { 55 owner = "ImageMagick"; 56 repo = "ImageMagick"; 57 rev = finalAttrs.version; 58 - hash = "sha256-ytDMCZN+vavOtiPju5z87nJmSafRTt1gGycZtl3seGI="; 59 }; 60 61 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
··· 49 50 stdenv.mkDerivation (finalAttrs: { 51 pname = "imagemagick"; 52 + version = "7.1.1-24"; 53 54 src = fetchFromGitHub { 55 owner = "ImageMagick"; 56 repo = "ImageMagick"; 57 rev = finalAttrs.version; 58 + hash = "sha256-oQ/g2/OhZWKvh//QevYsyi8uNwgo1yuihT5728eVKF8="; 59 }; 60 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 3 let 4 pname = "anytype"; 5 - version = "0.36.0"; 6 name = "Anytype-${version}"; 7 nameExecutable = pname; 8 src = fetchurl { 9 url = "https://github.com/anyproto/anytype-ts/releases/download/v${version}/${name}.AppImage"; 10 name = "Anytype-${version}.AppImage"; 11 - sha256 = "sha256-Efoqy/izULDgd2Dc3ktVZNj9/U0vCtENm0NLr5VKQpQ="; 12 }; 13 appimageContents = appimageTools.extractType2 { inherit name src; }; 14 in ··· 26 install -m 444 -D ${appimageContents}/anytype.desktop -t $out/share/applications 27 substituteInPlace $out/share/applications/anytype.desktop \ 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 31 ''; 32 33 meta = with lib; {
··· 2 3 let 4 pname = "anytype"; 5 + version = "0.37.0"; 6 name = "Anytype-${version}"; 7 nameExecutable = pname; 8 src = fetchurl { 9 url = "https://github.com/anyproto/anytype-ts/releases/download/v${version}/${name}.AppImage"; 10 name = "Anytype-${version}.AppImage"; 11 + sha256 = "sha256-Z46GTcJoaqvjVuxUP+OuxD32KM0NQISWMlv3uco5r6g="; 12 }; 13 appimageContents = appimageTools.extractType2 { inherit name src; }; 14 in ··· 26 install -m 444 -D ${appimageContents}/anytype.desktop -t $out/share/applications 27 substituteInPlace $out/share/applications/anytype.desktop \ 28 --replace 'Exec=AppRun' 'Exec=${pname}' 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 33 ''; 34 35 meta = with lib; {
+4 -4
pkgs/applications/misc/joplin-desktop/default.nix
··· 2 3 let 4 pname = "joplin-desktop"; 5 - version = "2.13.9"; 6 7 inherit (stdenv.hostPlatform) system; 8 throwSystem = throw "Unsupported system: ${system}"; ··· 16 src = fetchurl { 17 url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}${suffix}"; 18 sha256 = { 19 - x86_64-linux = "sha256-1po4i+SG5o28uBtgmIXxnCP8/ZvFgTXxrdKVTSA7ndE="; 20 - x86_64-darwin = "sha256-4NeFVj+RB3CyCQxrMM7ZfFahBMa0WumY1YPslJ2votc="; 21 - aarch64-darwin = "sha256-pxlato6AQYduTCXouGVNSGr5awhGwlC8jTkG9nB2U+4="; 22 }.${system} or throwSystem; 23 }; 24
··· 2 3 let 4 pname = "joplin-desktop"; 5 + version = "2.13.11"; 6 7 inherit (stdenv.hostPlatform) system; 8 throwSystem = throw "Unsupported system: ${system}"; ··· 16 src = fetchurl { 17 url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}${suffix}"; 18 sha256 = { 19 + x86_64-linux = "sha256-YkNtvgPAYD7Rw72QoMHqRN24K1RB1GR8W9ka8wCUA8w="; 20 + x86_64-darwin = "sha256-/T8OkTIIQ6ApnL0y5+xRdkQlByzXSwrpw5wXqbhoSoE="; 21 + aarch64-darwin = "sha256-OM+Le2c1esvE8+QwAMpXc03yLUwxibKRRc37WaTGnTs="; 22 }.${system} or throwSystem; 23 }; 24
+2 -2
pkgs/applications/misc/obsidian/default.nix
··· 12 let 13 inherit (stdenv.hostPlatform) system; 14 pname = "obsidian"; 15 - version = "1.4.16"; 16 appname = "Obsidian"; 17 meta = with lib; { 18 description = "A powerful knowledge base that works on top of a local folder of plain text Markdown files"; ··· 25 filename = if stdenv.isDarwin then "Obsidian-${version}-universal.dmg" else "obsidian-${version}.tar.gz"; 26 src = fetchurl { 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="; 29 }; 30 31 icon = fetchurl {
··· 12 let 13 inherit (stdenv.hostPlatform) system; 14 pname = "obsidian"; 15 + version = "1.5.3"; 16 appname = "Obsidian"; 17 meta = with lib; { 18 description = "A powerful knowledge base that works on top of a local folder of plain text Markdown files"; ··· 25 filename = if stdenv.isDarwin then "Obsidian-${version}-universal.dmg" else "obsidian-${version}.tar.gz"; 26 src = fetchurl { 27 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/${filename}"; 28 + hash = if stdenv.isDarwin then "sha256-AXjzQwZxyRaI8mMU2EsNK0fRcXS7UNNBWPXeJzgomlY=" else "sha256-F7nqWOeBGGSmSVNTpcx3lHRejSjNeM2BBqS9tsasTvg="; 29 }; 30 31 icon = fetchurl {
+3 -3
pkgs/applications/misc/typioca/default.nix
··· 7 8 buildGoModule rec { 9 pname = "typioca"; 10 - version = "2.8.0"; 11 12 src = fetchFromGitHub { 13 owner = "bloznelis"; 14 repo = "typioca"; 15 rev = version; 16 - hash = "sha256-cm6z7MVAbFxfkSTaCfh8wZhtgXdfVQopqEk+w+hPZpI="; 17 }; 18 19 - vendorHash = "sha256-XiKn18WCbhVvsrIvTN/Yquj4mhq4n1X1jqdGUaMacV4="; 20 21 ldflags = [ 22 "-s"
··· 7 8 buildGoModule rec { 9 pname = "typioca"; 10 + version = "2.9.0"; 11 12 src = fetchFromGitHub { 13 owner = "bloznelis"; 14 repo = "typioca"; 15 rev = version; 16 + hash = "sha256-N7+etRqHxLX0eVvdOofXQ1fqEUTsck7UAL5mX6NUsOU="; 17 }; 18 19 + vendorHash = "sha256-FKLAbrZVtF8gj90NU7m47pG+BBKYkPjJKax5nZmpehY="; 20 21 ldflags = [ 22 "-s"
+3 -3
pkgs/applications/networking/cluster/argocd/default.nix
··· 2 3 buildGoModule rec { 4 pname = "argocd"; 5 - version = "2.9.1"; 6 7 src = fetchFromGitHub { 8 owner = "argoproj"; 9 repo = "argo-cd"; 10 rev = "v${version}"; 11 - hash = "sha256-5oSuExdkP+69AJD5U74yLD4e+5pvbFOY6T9mcKnJ5Jw="; 12 }; 13 14 proxyVendor = true; # darwin/linux hash mismatch 15 - vendorHash = "sha256-/MmcWusqgEe8KEJcEBOqOkv1lJb06R3TKYFk4wvdWHk="; 16 17 # Set target as ./cmd per cli-local 18 # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
··· 2 3 buildGoModule rec { 4 pname = "argocd"; 5 + version = "2.9.3"; 6 7 src = fetchFromGitHub { 8 owner = "argoproj"; 9 repo = "argo-cd"; 10 rev = "v${version}"; 11 + hash = "sha256-GaY4Cw/LlSwy35umbB4epXt6ev8ya19UjHRwhDwilqU="; 12 }; 13 14 proxyVendor = true; # darwin/linux hash mismatch 15 + vendorHash = "sha256-2TNBbxNX4HGdRqbOEDrLBkWgw+0lyIrdxnVcbip3N6c="; 16 17 # Set target as ./cmd per cli-local 18 # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
+3 -3
pkgs/applications/networking/cluster/kubectl-cnpg/default.nix
··· 5 6 buildGoModule rec { 7 pname = "kubectl-cnpg"; 8 - version = "1.21.1"; 9 10 src = fetchFromGitHub { 11 owner = "cloudnative-pg"; 12 repo = "cloudnative-pg"; 13 rev = "v${version}"; 14 - hash = "sha256-xDjDBbnYR0PnSrF/vr+HXVGMoba9NmE/uMX/DRm+CVE="; 15 }; 16 17 - vendorHash = "sha256-NqQGqvvwLi6niey9Mi9hJSRYrRXE4Dj4VWiMu5wUXXw="; 18 19 subPackages = [ "cmd/kubectl-cnpg" ]; 20
··· 5 6 buildGoModule rec { 7 pname = "kubectl-cnpg"; 8 + version = "1.22.0"; 9 10 src = fetchFromGitHub { 11 owner = "cloudnative-pg"; 12 repo = "cloudnative-pg"; 13 rev = "v${version}"; 14 + hash = "sha256-qaIpx8iZhkGEW8MZNgI6rMopNuz+FPpoVBDs9z+BJa0="; 15 }; 16 17 + vendorHash = "sha256-SCeKoxI1zFzSwLAdAa1YI3DiyfK/uOk7CmWwQWVeF7g="; 18 19 subPackages = [ "cmd/kubectl-cnpg" ]; 20
+2 -2
pkgs/applications/networking/cluster/kubectl-node-shell/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "kubectl-node-shell"; 5 - version = "1.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "kvaps"; 9 repo = "kubectl-node-shell"; 10 rev = "v${version}"; 11 - sha256 = "sha256-+JRHSigjsxuZFQg73wTMWWKtCVXd2mMFqivYGcwYznE="; 12 }; 13 14 strictDeps = true;
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "kubectl-node-shell"; 5 + version = "1.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "kvaps"; 9 repo = "kubectl-node-shell"; 10 rev = "v${version}"; 11 + sha256 = "sha256-ZVLL++QTc4fvOTsFfaWVad/jj4EqPiZUpL7HsMb2AdE="; 12 }; 13 14 strictDeps = true;
+3 -3
pkgs/applications/networking/feedreaders/goeland/default.nix
··· 5 6 buildGoModule rec { 7 pname = "goeland"; 8 - version = "0.17.0"; 9 10 src = fetchFromGitHub { 11 owner = "slurdge"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-ISAaV1MgqnzO2fMgoZZKT8FSDq6XIRvjWG72dALY+rU="; 15 }; 16 17 - vendorHash = "sha256-uk1Ew77XaS/k7QXqNa70Nyynb+6pzs7B5jhusz3ffZY="; 18 19 ldflags = [ 20 "-s"
··· 5 6 buildGoModule rec { 7 pname = "goeland"; 8 + version = "0.18.1"; 9 10 src = fetchFromGitHub { 11 owner = "slurdge"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-3LO0p3klnwamhTuOw5S0dN5qsI8u1l5UWN5FkGnY5Lo="; 15 }; 16 17 + vendorHash = "sha256-zwUX6EBz34lg7vg7R52xcslrhyRTiueP3RNLRxsupn4="; 18 19 ldflags = [ 20 "-s"
+3 -3
pkgs/applications/networking/feedreaders/newsboat/default.nix
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "newsboat"; 6 - version = "2.33"; 7 8 src = fetchFromGitHub { 9 owner = "newsboat"; 10 repo = "newsboat"; 11 rev = "r${version}"; 12 - hash = "sha256-p9cyH5jANkB+PuvAq6KjaelgPwj1f7XNxuKMpT7jjpg="; 13 }; 14 15 - cargoHash = "sha256-95xM4kZZ70xhfx+EvqFecYbVdisq9hpgp0t+s5Cp8QQ="; 16 17 # TODO: Check if that's still needed 18 postPatch = lib.optionalString stdenv.isDarwin ''
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "newsboat"; 6 + version = "2.34"; 7 8 src = fetchFromGitHub { 9 owner = "newsboat"; 10 repo = "newsboat"; 11 rev = "r${version}"; 12 + hash = "sha256-knF+N/HHL/E6C973t+ww5XTLV2thwy7lMAeqTyXspHY="; 13 }; 14 15 + cargoHash = "sha256-IsDym+tqF040SxCJF575OPm45IROYMFsCrxJcM1SAJ4="; 16 17 # TODO: Check if that's still needed 18 postPatch = lib.optionalString stdenv.isDarwin ''
+2 -2
pkgs/applications/office/fava/default.nix
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "fava"; 5 - version = "1.26.2"; 6 format = "pyproject"; 7 8 src = fetchPypi { 9 inherit pname version; 10 - hash = "sha256-+rMuVfe6BDAcZgJkBb18YLFZirOBfad6WGbWtAT21uI="; 11 }; 12 13 nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
··· 2 3 python3.pkgs.buildPythonApplication rec { 4 pname = "fava"; 5 + version = "1.26.3"; 6 format = "pyproject"; 7 8 src = fetchPypi { 9 inherit pname version; 10 + hash = "sha256-HjMcNZ+VV5PdTIW3q6Ja/gFIZl6xXDxk0pUCyIX4dPM="; 11 }; 12 13 nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
+2 -2
pkgs/applications/version-management/git-town/default.nix
··· 2 3 buildGoModule rec { 4 pname = "git-town"; 5 - version = "10.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "git-town"; 9 repo = "git-town"; 10 rev = "v${version}"; 11 - hash = "sha256-b4NwimMHF5023I0NvfYMlYIJA9Tj6wPwfKDI4Fmo3lg="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "git-town"; 5 + version = "11.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "git-town"; 9 repo = "git-town"; 10 rev = "v${version}"; 11 + hash = "sha256-QQ+sIZzkzecs+pZBzsmCL048JZpMPvdYi0PRtMN4AhY="; 12 }; 13 14 vendorHash = null;
+3 -3
pkgs/by-name/li/lint-staged/package.nix
··· 2 3 buildNpmPackage rec { 4 pname = "lint-staged"; 5 - version = "14.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "okonet"; 9 repo = "lint-staged"; 10 rev = "v${version}"; 11 - hash = "sha256-xuHrxi/1zfeY2dd625iLDNJFoNO28JJrPvmECdqeZXk="; 12 }; 13 14 - npmDepsHash = "sha256-4lyTBmcX5k//kbFHmzbOQJp+Jd9TPY7bzm51QuiXUzE="; 15 16 dontNpmBuild = true; 17
··· 2 3 buildNpmPackage rec { 4 pname = "lint-staged"; 5 + version = "15.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "okonet"; 9 repo = "lint-staged"; 10 rev = "v${version}"; 11 + hash = "sha256-Vziz8pV3pd1Rp6X6mHzyD22Z3q5LJJTXQ8kFuHpVgKc="; 12 }; 13 14 + npmDepsHash = "sha256-BKgncl53MKFDASXo6I2Vn3v54iTL/h9gykJ3PWNUGQU="; 15 16 dontNpmBuild = true; 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 }: 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "ut"; 9 - version = "2.0.0"; 10 11 cmakeFlags = [ 12 "-DBOOST_UT_ALLOW_CPM_USE=OFF" ··· 16 owner = "boost-ext"; 17 repo = "ut"; 18 rev = "v${finalAttrs.version}"; 19 - hash = "sha256-nMRhVtbnORMnZxIdrv6pvfj8/fv/buh4Y7mz0cr4p+E="; 20 }; 21 22 nativeBuildInputs = [
··· 6 }: 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "ut"; 9 + version = "2.0.1"; 10 11 cmakeFlags = [ 12 "-DBOOST_UT_ALLOW_CPM_USE=OFF" ··· 16 owner = "boost-ext"; 17 repo = "ut"; 18 rev = "v${finalAttrs.version}"; 19 + hash = "sha256-4OZvDcUtw6x/E9yLRQukfn6PskxtVBrsLPP48yo/lN0="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/data/fonts/julia-mono/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "JuliaMono-ttf"; 5 - version = "0.052"; 6 7 src = fetchzip { 8 url = "https://github.com/cormullion/juliamono/releases/download/v${version}/${pname}.tar.gz"; 9 stripRoot = false; 10 - hash = "sha256-GXT1VHRQj8yiz/DpZtYb5wPz/MlOLSNS92/2Kd6Q7Qs="; 11 }; 12 13 installPhase = ''
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "JuliaMono-ttf"; 5 + version = "0.053"; 6 7 src = fetchzip { 8 url = "https://github.com/cormullion/juliamono/releases/download/v${version}/${pname}.tar.gz"; 9 stripRoot = false; 10 + hash = "sha256-KvDyT0T8ecpSoNmqvsvDMooWNNe+z/PvxYj1Nd6qqfA="; 11 }; 12 13 installPhase = ''
+2 -14
pkgs/desktops/gnome/default.nix
··· 260 }) // lib.optionalAttrs config.allowAliases { 261 #### Legacy aliases. They need to be outside the scope or they will shadow the attributes from parent scope. 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 277 }
··· 260 }) // lib.optionalAttrs config.allowAliases { 261 #### Legacy aliases. They need to be outside the scope or they will shadow the attributes from parent scope. 262 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 265 }
+2 -2
pkgs/desktops/mate/libmateweather/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "libmateweather"; 17 - version = "1.26.2"; 18 19 src = fetchurl { 20 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 21 - sha256 = "ylCoFYZlXPU6j5Z2a5zpCk0H7Q/hYr1eFdra3QBgx/Y="; 22 }; 23 24 strictDeps = true;
··· 14 15 stdenv.mkDerivation rec { 16 pname = "libmateweather"; 17 + version = "1.26.3"; 18 19 src = fetchurl { 20 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 21 + sha256 = "XmzSRBiEfLRazxfaW0NacTHLTsKs/2joKPNCob8T70o="; 22 }; 23 24 strictDeps = true;
+2 -2
pkgs/desktops/mate/mate-media/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "mate-media"; 17 - version = "1.26.1"; 18 19 src = fetchurl { 20 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 21 - sha256 = "KLKiGiltkVx8BtnSFvSahUHNPOyJWzJZvKBoqF4m6ws="; 22 }; 23 24 buildInputs = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "mate-media"; 17 + version = "1.26.2"; 18 19 src = fetchurl { 20 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 21 + sha256 = "r0ZjlXTMOIUTCJyhC7FB/8Pm0awz5zDkII21dZZChQ8="; 22 }; 23 24 buildInputs = [
+3 -3
pkgs/development/compilers/assemblyscript/default.nix
··· 5 6 buildNpmPackage rec { 7 pname = "assemblyscript"; 8 - version = "0.27.9"; 9 10 src = fetchFromGitHub { 11 owner = "AssemblyScript"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-UOMWUM1wOhX2pR29DSYpPKLnjb1CWrKk6BtyXK7kqDk="; 15 }; 16 17 - npmDepsHash = "sha256-9ILa1qY2GpP2RckcZYcCMmgCwdXIImOm+D8nldeoQL8="; 18 19 meta = with lib; { 20 homepage = "https://github.com/AssemblyScript/${pname}";
··· 5 6 buildNpmPackage rec { 7 pname = "assemblyscript"; 8 + version = "0.27.22"; 9 10 src = fetchFromGitHub { 11 owner = "AssemblyScript"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-8j012eAM+tl8AH5vNhg9xKDRJt5pZKV9KNwJFmUgXMY="; 15 }; 16 17 + npmDepsHash = "sha256-y7gY9VhbR+xfXf3OvKvpcohk2mwfa0uOQO7Nmg+L6ug="; 18 19 meta = with lib; { 20 homepage = "https://github.com/AssemblyScript/${pname}";
+2 -2
pkgs/development/libraries/intel-gmmlib/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "intel-gmmlib"; 12 - version = "22.3.15"; 13 14 src = fetchFromGitHub { 15 owner = "intel"; 16 repo = "gmmlib"; 17 rev = "intel-gmmlib-${version}"; 18 - sha256 = "sha256-MVM5MfX+uVMik+332blWvqh6Wt1iq6DNR7/hrHC+rWI="; 19 }; 20 21 nativeBuildInputs = [ cmake ];
··· 9 10 stdenv.mkDerivation rec { 11 pname = "intel-gmmlib"; 12 + version = "22.3.16"; 13 14 src = fetchFromGitHub { 15 owner = "intel"; 16 repo = "gmmlib"; 17 rev = "intel-gmmlib-${version}"; 18 + sha256 = "sha256-6cN7qnFpVe362u4o0bZMKlUq1/eCpPZF0nBgon9Eav4="; 19 }; 20 21 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/libcifpp/default.nix
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "libcifpp"; 13 - version = "5.2.4"; 14 15 src = fetchFromGitHub { 16 owner = "PDB-REDO"; 17 repo = "libcifpp"; 18 rev = "refs/tags/v${finalAttrs.version}"; 19 - hash = "sha256-AAEk9gDxtlNDEG8B4HmOJ5Nd+GyWibT+yuMccylU8iQ="; 20 }; 21 22 nativeBuildInputs = [
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "libcifpp"; 13 + version = "6.0.0"; 14 15 src = fetchFromGitHub { 16 owner = "PDB-REDO"; 17 repo = "libcifpp"; 18 rev = "refs/tags/v${finalAttrs.version}"; 19 + hash = "sha256-cj7xhRYTGxQnod/kw02UYiJewPJosxKSwvwDIu6nG0A="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/science/biology/htslib/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "htslib"; 5 - version = "1.18"; 6 7 src = fetchurl { 8 url = "https://github.com/samtools/htslib/releases/download/${version}/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-8atTpZOiMgob+t9O+RXa54QAbFtckiyKgXTXUwqa8Y8="; 10 }; 11 12 # perl is only used during the check phase.
··· 2 3 stdenv.mkDerivation rec { 4 pname = "htslib"; 5 + version = "1.19"; 6 7 src = fetchurl { 8 url = "https://github.com/samtools/htslib/releases/download/${version}/${pname}-${version}.tar.bz2"; 9 + sha256 = "sha256-h1HEDE+n0fI6aGTFsgpzdE+L5oI5U1rncpxffTlNBzY="; 10 }; 11 12 # perl is only used during the check phase.
+1 -1
pkgs/development/php-packages/datadog_trace/Cargo.lock
··· 678 679 [[package]] 680 name = "datadog-php-profiling" 681 - version = "0.95.0" 682 dependencies = [ 683 "ahash 0.8.3", 684 "anyhow",
··· 678 679 [[package]] 680 name = "datadog-php-profiling" 681 + version = "0.96.0" 682 dependencies = [ 683 "ahash 0.8.3", 684 "anyhow",
+2 -2
pkgs/development/php-packages/datadog_trace/default.nix
··· 13 14 buildPecl rec { 15 pname = "ddtrace"; 16 - version = "0.95.0"; 17 18 src = fetchFromGitHub { 19 owner = "DataDog"; 20 repo = "dd-trace-php"; 21 rev = version; 22 fetchSubmodules = true; 23 - hash = "sha256-NKlSTpC06FKc1eyz/QaoavPFxn8tq6UXtlUjqtC4S6w="; 24 }; 25 26 cargoDeps = rustPlatform.importCargoLock {
··· 13 14 buildPecl rec { 15 pname = "ddtrace"; 16 + version = "0.96.0"; 17 18 src = fetchFromGitHub { 19 owner = "DataDog"; 20 repo = "dd-trace-php"; 21 rev = version; 22 fetchSubmodules = true; 23 + hash = "sha256-SXhva2acXIOuru8tTdRt5OU3Pce5eHm6SOn/y7N3ZIs="; 24 }; 25 26 cargoDeps = rustPlatform.importCargoLock {
+2 -2
pkgs/development/php-packages/ds/default.nix
··· 1 { buildPecl, lib, pcre2, php, fetchFromGitHub }: 2 3 let 4 - version = "1.4.0"; 5 in buildPecl { 6 inherit version; 7 pname = "ds"; ··· 10 owner = "php-ds"; 11 repo = "ext-ds"; 12 rev = "v${version}"; 13 - sha256 = "sha256-IqNv2jVW1Hg1hV8H9vEyLT5BWsFkGHR+WlAOHJhlW84="; 14 }; 15 16 buildInputs = [ pcre2 ];
··· 1 { buildPecl, lib, pcre2, php, fetchFromGitHub }: 2 3 let 4 + version = "1.5.0"; 5 in buildPecl { 6 inherit version; 7 pname = "ds"; ··· 10 owner = "php-ds"; 11 repo = "ext-ds"; 12 rev = "v${version}"; 13 + sha256 = "sha256-lL1PUjc4bMTsWm2th0wDxnMaGuVziBUtgK88bUJXuBY="; 14 }; 15 16 buildInputs = [ pcre2 ];
+2 -2
pkgs/development/php-packages/mongodb/default.nix
··· 15 16 buildPecl rec { 17 pname = "mongodb"; 18 - version = "1.17.1"; 19 20 src = fetchFromGitHub { 21 owner = "mongodb"; 22 repo = "mongo-php-driver"; 23 rev = version; 24 - hash = "sha256-QAMDzI9f/I7hNlafYoEJrCpsbEMFvKR+JnR1G+ZnPpU="; 25 fetchSubmodules = true; 26 }; 27
··· 15 16 buildPecl rec { 17 pname = "mongodb"; 18 + version = "1.17.2"; 19 20 src = fetchFromGitHub { 21 owner = "mongodb"; 22 repo = "mongo-php-driver"; 23 rev = version; 24 + hash = "sha256-7JzFls5cMzlA2aEM7M4+Dg4yIJNzz/vNOXNEITejePk="; 25 fetchSubmodules = true; 26 }; 27
+2 -2
pkgs/development/php-packages/phalcon/default.nix
··· 2 3 buildPecl rec { 4 pname = "phalcon"; 5 - version = "5.4.0"; 6 7 src = fetchFromGitHub { 8 owner = "phalcon"; 9 repo = "cphalcon"; 10 rev = "v${version}"; 11 - hash = "sha256-svw+cYL5ISKk6jEvdFmLcC4hEzrFw3kIbDJsymt2tEs="; 12 }; 13 14 internalDeps = [ php.extensions.session php.extensions.pdo ];
··· 2 3 buildPecl rec { 4 pname = "phalcon"; 5 + version = "5.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "phalcon"; 9 repo = "cphalcon"; 10 rev = "v${version}"; 11 + hash = "sha256-ycE8A3ESV97COTdbjkrOJCZpEmP1l9nkmNnhjJGaBeE="; 12 }; 13 14 internalDeps = [ php.extensions.session php.extensions.pdo ];
+2 -2
pkgs/development/php-packages/phan/default.nix
··· 9 in 10 mkDerivation rec { 11 pname = "phan"; 12 - version = "5.4.2"; 13 14 src = fetchurl { 15 url = "https://github.com/phan/phan/releases/download/${version}/phan.phar"; 16 - hash = "sha256-9fpmsv2ia5ad+QtaicdZ0XpOZw7T5LWhfd2miYfSpWM="; 17 }; 18 19 dontUnpack = true;
··· 9 in 10 mkDerivation rec { 11 pname = "phan"; 12 + version = "5.4.3"; 13 14 src = fetchurl { 15 url = "https://github.com/phan/phan/releases/download/${version}/phan.phar"; 16 + hash = "sha256-wZU6YIlH0q18iD044y6Z5gSscBn7cI0AwRwZgT/YhOo="; 17 }; 18 19 dontUnpack = true;
+2 -2
pkgs/development/php-packages/php-cs-fixer/default.nix
··· 2 3 let 4 pname = "php-cs-fixer"; 5 - version = "3.41.1"; 6 in 7 mkDerivation { 8 inherit pname version; 9 10 src = fetchurl { 11 url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar"; 12 - sha256 = "sha256-1XOJc5WQfHzUf+FOSi2VrcT4iy4/WogYh1HZAiGwjY0="; 13 }; 14 15 dontUnpack = true;
··· 2 3 let 4 pname = "php-cs-fixer"; 5 + version = "3.42.0"; 6 in 7 mkDerivation { 8 inherit pname version; 9 10 src = fetchurl { 11 url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar"; 12 + sha256 = "sha256-ppkkVNAQ0F6DNSxMdvz5E4ZBPqlGNtMDgNC9vTsK6CY="; 13 }; 14 15 dontUnpack = true;
+2 -2
pkgs/development/python-modules/aioairq/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "aioairq"; 11 - version = "0.3.1"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.9"; ··· 17 owner = "CorantGmbH"; 18 repo = pname; 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-SRsDSHTZkkygaQZjHENKNLx3ZWMi/PubS1m/MonEKNk="; 21 }; 22 23 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "aioairq"; 11 + version = "0.3.2"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.9"; ··· 17 owner = "CorantGmbH"; 18 repo = pname; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-Sau0Ih+9WRChbztl8yjXVWy4/QxyllQKOPslbZroBeQ="; 21 }; 22 23 propagatedBuildInputs = [
+10 -5
pkgs/development/python-modules/aiopulse/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , async-timeout 5 , pythonOlder 6 }: 7 8 buildPythonPackage rec { 9 pname = "aiopulse"; 10 - version = "0.4.4"; 11 - format = "setuptools"; 12 13 disabled = pythonOlder "3.6"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-JbdJbkzd55KeM3Sf1ExvMuHRKNu5VAvGG4y+wkMS0Wo="; 18 }; 19 20 propagatedBuildInputs = [ 21 async-timeout 22 ]; 23 24 - # tests are not present 25 doCheck = false; 26 27 pythonImportsCheck = [
··· 1 { lib 2 + , async-timeout 3 , buildPythonPackage 4 , fetchPypi 5 , pythonOlder 6 + , setuptools 7 }: 8 9 buildPythonPackage rec { 10 pname = "aiopulse"; 11 + version = "0.4.5"; 12 + pyproject = true; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-yrltqnePNnNwsVGkfXgtrtL/FuazRvmoVL4L0H4j4Bg="; 19 }; 20 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 + 25 propagatedBuildInputs = [ 26 async-timeout 27 ]; 28 29 + # Tests are not present 30 doCheck = false; 31 32 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/appthreat-vulnerability-db/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "appthreat-vulnerability-db"; 20 - version = "5.5.6"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "AppThreat"; 27 repo = "vulnerability-db"; 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-jPbYbyVOfn5XCVdzLEEtMcRnGQzzHiea0GZ+YatswEM="; 30 }; 31 32 postPatch = ''
··· 17 18 buildPythonPackage rec { 19 pname = "appthreat-vulnerability-db"; 20 + version = "5.5.7"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "AppThreat"; 27 repo = "vulnerability-db"; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-qDloyoc6FpfWVo0+rbnvSQ0nxAKjKXcC+ZNZr2vkMEE="; 30 }; 31 32 postPatch = ''
+2 -2
pkgs/development/python-modules/argilla/default.nix
··· 65 }: 66 let 67 pname = "argilla"; 68 - version = "1.20.0"; 69 optional-dependencies = { 70 server = [ 71 fastapi ··· 126 owner = "argilla-io"; 127 repo = pname; 128 rev = "refs/tags/v${version}"; 129 - hash = "sha256-LYtudVk4FJMMCMDwCW38DBFsHA2xGd2ScvXogy6zRdI="; 130 }; 131 132 pythonRelaxDeps = [
··· 65 }: 66 let 67 pname = "argilla"; 68 + version = "1.21.0"; 69 optional-dependencies = { 70 server = [ 71 fastapi ··· 126 owner = "argilla-io"; 127 repo = pname; 128 rev = "refs/tags/v${version}"; 129 + hash = "sha256-/CU/8CnoGhxe1tapA9k60o/Bpnaql/6Y/6Ksw5mfk/E="; 130 }; 131 132 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/geoalchemy2/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "geoalchemy2"; 16 - version = "0.14.2"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "geoalchemy"; 23 repo = "geoalchemy2"; 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-C/F1hpL2DnzC4UPAGGFntlQlULCx5Ufzkw7EIrzRV7I="; 26 }; 27 28 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "geoalchemy2"; 16 + version = "0.14.3"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "geoalchemy"; 23 repo = "geoalchemy2"; 24 rev = "refs/tags/${version}"; 25 + hash = "sha256-L3/gLbiEF2VEqyhfVPnREMUPFbf9cD3tqGJ+AbThPkQ="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/jupyter-collaboration/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "jupyter-collaboration"; 22 - version = "2.0.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.8"; ··· 27 src = fetchPypi { 28 pname = "jupyter_collaboration"; 29 inherit version; 30 - hash = "sha256-7tIdCXcEXwdPgO5HxnjAlPGcgVZ2AtUKethYqxiplY8="; 31 }; 32 33 postPatch = ''
··· 19 20 buildPythonPackage rec { 21 pname = "jupyter-collaboration"; 22 + version = "2.0.1"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.8"; ··· 27 src = fetchPypi { 28 pname = "jupyter_collaboration"; 29 inherit version; 30 + hash = "sha256-Uc57kxhaj/DQi5cX+kjV4PGRcFbxWmzc+B248+1VAYI="; 31 }; 32 33 postPatch = ''
+2 -2
pkgs/development/python-modules/jupyter-ydoc/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "jupyter-ydoc"; 16 - version = "2.0.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "jupyter_ydoc"; 23 inherit version; 24 - hash = "sha256-m7P00yfUdZfZQwNY3z1ZeViZUhyg61DHmcAjbvTcF30="; 25 }; 26 27 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "jupyter-ydoc"; 16 + version = "2.0.1"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "jupyter_ydoc"; 23 inherit version; 24 + hash = "sha256-cW3ajLiviB/sL7yIrqP7DTuyS764Cpmor/LgHQidWw0="; 25 }; 26 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/millheater/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "millheater"; 11 - version = "0.11.7"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.10"; ··· 17 owner = "Danielhiversen"; 18 repo = "pymill"; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-jqtyJHoG/8tgv4OJleb7DV6C7pCpgplieLykfvO3cNM="; 21 }; 22 23 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "millheater"; 11 + version = "0.11.8"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.10"; ··· 17 owner = "Danielhiversen"; 18 repo = "pymill"; 19 rev = "refs/tags/${version}"; 20 + hash = "sha256-BSrnUhe6SFtalUGldC24eJTqJAF5FdUWo3rwWNT1uCw="; 21 }; 22 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/optimum/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "optimum"; 25 - version = "1.14.1"; 26 format = "setuptools"; 27 28 disabled = pythonOlder "3.7"; ··· 31 owner = "huggingface"; 32 repo = "optimum"; 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-aHolI+vM3sA83elsqxY5yaiZGB+I0okjSdRmjTRaxJI="; 35 }; 36 37 propagatedBuildInputs = [
··· 22 23 buildPythonPackage rec { 24 pname = "optimum"; 25 + version = "1.16.1"; 26 format = "setuptools"; 27 28 disabled = pythonOlder "3.7"; ··· 31 owner = "huggingface"; 32 repo = "optimum"; 33 rev = "refs/tags/v${version}"; 34 + hash = "sha256-UlxArfNK4Ialodpne5GY7GuWGUBcLbSjAidL67Li0S0="; 35 }; 36 37 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pydrawise/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "pydrawise"; 20 - version = "2023.12.0"; 21 format = "pyproject"; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "dknowles2"; 27 repo = "pydrawise"; 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-20EPAvunKDByHRQ3jYz1Mbn6n1CFn4WWA6vbCdKen/g="; 30 }; 31 32 nativeBuildInputs = [
··· 17 18 buildPythonPackage rec { 19 pname = "pydrawise"; 20 + version = "2023.12.1"; 21 format = "pyproject"; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "dknowles2"; 27 repo = "pydrawise"; 28 rev = "refs/tags/${version}"; 29 + hash = "sha256-w5M6ihPGOVCqMrWd8qj6XEmS4tfxKhwpwZSXjcOc4z0="; 30 }; 31 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/python-lsp-ruff/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "python-lsp-ruff"; 15 - version = "2.0.0"; 16 pyproject = true; 17 disabled = pythonOlder "3.8"; 18 19 src = fetchPypi { 20 inherit version; 21 pname = "python-lsp-ruff"; 22 - sha256 = "sha256-lCTBFKTb1djrRQcX4Eg/G2Fs+VrqTvJ/XVnUPVM/5nE="; 23 }; 24 25 postPatch = ''
··· 12 13 buildPythonPackage rec { 14 pname = "python-lsp-ruff"; 15 + version = "2.0.1"; 16 pyproject = true; 17 disabled = pythonOlder "3.8"; 18 19 src = fetchPypi { 20 inherit version; 21 pname = "python-lsp-ruff"; 22 + sha256 = "sha256-sgS0wwFuAaaen9b/vpJrpAsUvE2lehfHVaOB/hSol9k="; 23 }; 24 25 postPatch = ''
+3 -5
pkgs/development/python-modules/rich-pixels/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "rich-pixels"; 14 - version = "2.1.1"; 15 format = "pyproject"; 16 17 src = fetchFromGitHub { 18 owner = "darrenburns"; 19 repo = "rich-pixels"; 20 rev = version; 21 - hash = "sha256-zI6jtEdmBAEGxyASo/6fiHdzwzoSwXN7A5x1CmYS5qc="; 22 }; 23 24 nativeBuildInputs = [ ··· 49 description = "A Rich-compatible library for writing pixel images and ASCII art to the terminal"; 50 homepage = "https://github.com/darrenburns/rich-pixels"; 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; 55 maintainers = with maintainers; [ figsoda ]; 56 }; 57 }
··· 11 12 buildPythonPackage rec { 13 pname = "rich-pixels"; 14 + version = "2.2.0"; 15 format = "pyproject"; 16 17 src = fetchFromGitHub { 18 owner = "darrenburns"; 19 repo = "rich-pixels"; 20 rev = version; 21 + hash = "sha256-fbpnHEfBPWLSYhgETqKbdmmzt7Lu/4oKgetjgNvv04c="; 22 }; 23 24 nativeBuildInputs = [ ··· 49 description = "A Rich-compatible library for writing pixel images and ASCII art to the terminal"; 50 homepage = "https://github.com/darrenburns/rich-pixels"; 51 changelog = "https://github.com/darrenburns/rich-pixels/releases/tag/${src.rev}"; 52 + license = licenses.mit; 53 maintainers = with maintainers; [ figsoda ]; 54 }; 55 }
+2 -2
pkgs/development/python-modules/svg2tikz/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "svg2tikz"; 13 - version = "2.1.0"; 14 15 disabled = pythonOlder "3.7"; 16 ··· 20 owner = "xyz2tex"; 21 repo = "svg2tikz"; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-v8+0h90uJlkI5eJcwCG55nxPz8n2aJXwP8Ocp48cl9M="; 24 }; 25 26 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "svg2tikz"; 13 + version = "3.0.0"; 14 15 disabled = pythonOlder "3.7"; 16 ··· 20 owner = "xyz2tex"; 21 repo = "svg2tikz"; 22 rev = "refs/tags/v${version}"; 23 + hash = "sha256-YnWkj4xvjGzpKQv+H+spage+dy+fC9fJkqsOaQ6C1Ho="; 24 }; 25 26 nativeBuildInputs = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "checkov"; 8 - version = "3.1.42"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "bridgecrewio"; 13 repo = "checkov"; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-tQemwSqlwVjBdxwJ22OY1CxZ/Kv06S9u0ECHtxe3Jm4="; 16 }; 17 18 patches = [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "checkov"; 8 + version = "3.1.44"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "bridgecrewio"; 13 repo = "checkov"; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-dh52+MSaF3f0XWYQLeIzWrn29YUduplhXj2z+4yAOr4="; 16 }; 17 18 patches = [
+3 -3
pkgs/development/tools/build-managers/moon/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "moon"; 12 - version = "1.18.2"; 13 14 src = fetchFromGitHub { 15 owner = "moonrepo"; 16 repo = pname; 17 rev = "v${version}"; 18 - hash = "sha256-7z5hmwBb8PBrQzXn2fg4MU7/jCOF8Ul4nMza87QNXYk="; 19 }; 20 21 - cargoHash = "sha256-1YarqedZ4SUs+Nv0qLeiFo+RCBu4e2Ejf4UI42hs8YQ="; 22 23 env = { 24 RUSTFLAGS = "-C strip=symbols";
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "moon"; 12 + version = "1.18.5"; 13 14 src = fetchFromGitHub { 15 owner = "moonrepo"; 16 repo = pname; 17 rev = "v${version}"; 18 + hash = "sha256-NZiFxcEdNdqR38VDJe4lC5maLTguk3+t78yG1zqXuA0="; 19 }; 20 21 + cargoHash = "sha256-BecaYeQYYoP7SubTktYqOejFyCTRolmUTV7rpGwXOGI="; 22 23 env = { 24 RUSTFLAGS = "-C strip=symbols";
+2 -2
pkgs/development/tools/build-managers/xmake/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "xmake"; 15 - version = "2.8.5"; 16 17 src = fetchurl { 18 url = "https://github.com/xmake-io/xmake/releases/download/v${version}/xmake-v${version}.tar.gz"; 19 - hash = "sha256-GcZ747z8valsqHoY7/rDm/zMRD+7N1THu8AVEd7NJK8="; 20 }; 21 22 nativeBuildInputs = [
··· 12 13 stdenv.mkDerivation rec { 14 pname = "xmake"; 15 + version = "2.8.6"; 16 17 src = fetchurl { 18 url = "https://github.com/xmake-io/xmake/releases/download/v${version}/xmake-v${version}.tar.gz"; 19 + hash = "sha256-DmKE6v1RoyNgmCE8CVI39WrK+umoilBAa4gszl6iaz0="; 20 }; 21 22 nativeBuildInputs = [
+2 -2
pkgs/development/tools/gci/default.nix
··· 5 }: 6 buildGoModule rec { 7 pname = "gci"; 8 - version = "0.12.0"; 9 10 src = fetchFromGitHub { 11 owner = "daixiang0"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-75ye/624fDcWCn+H0gAYHRPcVUh+JJm3vU6T4w1T0jM="; 15 }; 16 17 vendorHash = "sha256-bPRcOvwbWEpcJUlIqQNeoYME4ky0YE5LlyWhSTWCIHQ=";
··· 5 }: 6 buildGoModule rec { 7 pname = "gci"; 8 + version = "0.12.1"; 9 10 src = fetchFromGitHub { 11 owner = "daixiang0"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-h8vqpqohKQzd2IltHroo/AKnhufJsCC6qpSo8NYyhPI="; 15 }; 16 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 , stdenv 3 , buildBazelPackage 4 , fetchFromGitHub 5 - , bazel_4 6 , bison 7 , flex 8 , python3 ··· 17 # These environment variables are read in bazel/build-version.py to create 18 # a build string shown in the tools --version output. 19 # 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"; 22 23 # Derive nix package version from GIT_VERSION: "v1.2-345-abcde" -> "1.2.345" 24 version = builtins.concatStringsSep "." (lib.take 3 (lib.drop 1 (builtins.splitVersion GIT_VERSION))); ··· 27 owner = "chipsalliance"; 28 repo = "verible"; 29 rev = "${GIT_VERSION}"; 30 - hash = "sha256-snWhOuGyAdtdJDMttcbEjlkwPUO1mdR9vuro0tZt+Z8="; 31 }; 32 33 patches = [ ··· 37 ./remove-unused-deps.patch 38 ]; 39 40 - bazel = bazel_4; 41 bazelFlags = [ 42 "--//bazel:use_local_flex_bison" 43 - "--javabase=@bazel_tools//tools/jdk:remote_jdk11" 44 - "--host_javabase=@bazel_tools//tools/jdk:remote_jdk11" 45 ]; 46 47 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}"); 56 }; 57 58 nativeBuildInputs = [ 59 bison # We use local flex and bison as WORKSPACE sources fail 60 flex # .. to compile with newer glibc 61 python3
··· 2 , stdenv 3 , buildBazelPackage 4 , fetchFromGitHub 5 + , bazel_5 6 + , jdk 7 , bison 8 , flex 9 , python3 ··· 18 # These environment variables are read in bazel/build-version.py to create 19 # a build string shown in the tools --version output. 20 # If env variables not set, it would attempt to extract it from .git/. 21 + GIT_DATE = "2023-12-23"; 22 + GIT_VERSION = "v0.0-3471-g9cb45092"; 23 24 # Derive nix package version from GIT_VERSION: "v1.2-345-abcde" -> "1.2.345" 25 version = builtins.concatStringsSep "." (lib.take 3 (lib.drop 1 (builtins.splitVersion GIT_VERSION))); ··· 28 owner = "chipsalliance"; 29 repo = "verible"; 30 rev = "${GIT_VERSION}"; 31 + hash = "sha256-nFt5TeFv63Igx8Zer2s/ZLj5DsHeZj5V/+3burnEm9g="; 32 }; 33 34 patches = [ ··· 38 ./remove-unused-deps.patch 39 ]; 40 41 + bazel = bazel_5; 42 bazelFlags = [ 43 "--//bazel:use_local_flex_bison" 44 + "--java_runtime_version=local_jdk" 45 + "--tool_java_runtime_version=local_jdk" 46 ]; 47 48 fetchAttrs = { 49 + sha256 = "sha256-gZzrgZsHQ9zMoIDooVo9nRQbkJ41igme8wcNFj5EzWc="; 50 }; 51 52 nativeBuildInputs = [ 53 + jdk # bazel uses that. 54 bison # We use local flex and bison as WORKSPACE sources fail 55 flex # .. to compile with newer glibc 56 python3
+16 -16
pkgs/development/tools/misc/blackfire/php-probe.nix
··· 14 let 15 phpMajor = lib.versions.majorMinor php.version; 16 17 - version = "1.92.3"; 18 19 hashes = { 20 "x86_64-linux" = { 21 system = "amd64"; 22 hash = { 23 - "8.1" = "sha256-WyduRLnXWR8B5CPMfQyd9yBSTCb/SY/yH2Me8FSdKsk="; 24 - "8.2" = "sha256-oQbsQpftQnCzrAqdgkwuz9Igg0vWzYN030ZpkPL9a6Q="; 25 - "8.3" = "sha256-NVLVi6IRd+kJSkG0/70MFfCyv4qaFr/vI+96/taiBSQ="; 26 }; 27 }; 28 "i686-linux" = { 29 system = "i386"; 30 hash = { 31 - "8.1" = "sha256-5k3GAB4LoUYv/QS5EVv5xVhv7RfBYq4Tkzr7q/+As7M="; 32 - "8.2" = "sha256-VK7USg73q8WUQoq5dZ9au8TtbiCi9FUwi8CONEMipfQ="; 33 - "8.3" = "sha256-TT2lMVtI+Frn1EVzGUCy7MSkPhYOT6hgD4yzv3Bi4Uc="; 34 }; 35 }; 36 "aarch64-linux" = { 37 system = "arm64"; 38 hash = { 39 - "8.1" = "sha256-t1I9CQ73iK3FM5dhTV68uitwjR+lNZgpWFhQnOkzTWU="; 40 - "8.2" = "sha256-+GtJVqpK1+CXJl4gxvttcs2fhDoNcvE1Gqd8TNy6IFU="; 41 - "8.3" = "sha256-KTKu6Nvv5Xdk3PzKzww5ZWYtG7eRgedU2AooYZGLE+0="; 42 }; 43 }; 44 "aarch64-darwin" = { 45 system = "arm64"; 46 hash = { 47 - "8.1" = "sha256-q+2xEeHxb1jKz/5o83OuJGXQJ6EFLZ0esUzfe924vio="; 48 - "8.2" = "sha256-Ug6Y7nqSFGUcm4YvTrYTsxifavmPrsqfomNZceaiHpA="; 49 - "8.3" = "sha256-6BEK56Naxzk8m7UOV40pFqLTbSd7jsA8VEOPEKZjbzM="; 50 }; 51 }; 52 "x86_64-darwin" = { 53 system = "amd64"; 54 hash = { 55 - "8.1" = "sha256-jE5z02gFUkFCBPg/KNrtRS53TifA3MkuztXQJm2x4qw="; 56 - "8.2" = "sha256-Ix+qb1jWHdxKAh0Vjpe9O2Yc0I6Qwb+qLK3vNLqpZVY="; 57 - "8.3" = "sha256-PjUFoZQnk4VRRCQE1OddzxV5LRPa2uQawpYzfooQSk8="; 58 }; 59 }; 60 };
··· 14 let 15 phpMajor = lib.versions.majorMinor php.version; 16 17 + version = "1.92.5"; 18 19 hashes = { 20 "x86_64-linux" = { 21 system = "amd64"; 22 hash = { 23 + "8.1" = "sha256-DT1ETsJGOebC0kt4zKiSMu/wF0TG2zUiNNh+Giokjz4="; 24 + "8.2" = "sha256-X/inhHAA34aQSycoSzT28jfntH3QTZgHPId5zYgcWT4="; 25 + "8.3" = "sha256-SHR+J+yFA2YxggdNPq2HtLkh9I3bG01TMk9EUKGkRM0="; 26 }; 27 }; 28 "i686-linux" = { 29 system = "i386"; 30 hash = { 31 + "8.1" = "sha256-7aDO6shHWIAgby8qCwpc7aICnWyYvferqjDgtnYZCeI="; 32 + "8.2" = "sha256-mpHS9zUjgJnxvi3np2sUS0GhtOjhDOzlepRByYbjUCk="; 33 + "8.3" = "sha256-75C9NwMuUTNuAfdPRgtq4XK6bqo/IRa/SXfM7Wz2y90="; 34 }; 35 }; 36 "aarch64-linux" = { 37 system = "arm64"; 38 hash = { 39 + "8.1" = "sha256-Vj2rnKik+Fy+9yfbUMSOoiXTGm84YNPo1cfh9hojr9c="; 40 + "8.2" = "sha256-lvWwwKJj3/ZxAQcnbcjv/0CLqDDRiOkFo2rJeMhZLHQ="; 41 + "8.3" = "sha256-yqa5GE/FBINR3oFNTP1IZGnhSDYCfluRiEFiTSySjns="; 42 }; 43 }; 44 "aarch64-darwin" = { 45 system = "arm64"; 46 hash = { 47 + "8.1" = "sha256-OcQtr16Qt6TsxPBG3OY/viGXqknKx5GdM/fcCJlFiaY="; 48 + "8.2" = "sha256-ay/6JwB959bT2f18LGMB5560dIPAPSAY5Nby44FGBMc="; 49 + "8.3" = "sha256-7yyhcusin7pLYZqjUgyIkDGmufIPX8cKWqplXetZzMU="; 50 }; 51 }; 52 "x86_64-darwin" = { 53 system = "amd64"; 54 hash = { 55 + "8.1" = "sha256-l0xgj0tAjYNI0EwoZhnGpRadg5EJtBlt5WhylmZaGDg="; 56 + "8.2" = "sha256-lD6lE6u9nzHhHPTPLoGKaDsZlvrpbshd+4fr4ua8H8c="; 57 + "8.3" = "sha256-CMPv+pDPJVwQ4gDAnQxyeJXp4YYkwAVoSdS3a+49fDU="; 58 }; 59 }; 60 };
+2 -2
pkgs/development/tools/okteto/default.nix
··· 2 3 buildGoModule rec { 4 pname = "okteto"; 5 - version = "2.23.1"; 6 7 src = fetchFromGitHub { 8 owner = "okteto"; 9 repo = "okteto"; 10 rev = version; 11 - hash = "sha256-ZBNSGBTTZ7U8NHmMVa+gyNR2WS95I5a/fgHwsTNJqUk="; 12 }; 13 14 vendorHash = "sha256-HodvOSuzp57ijaShCJ+fnX5qk4o5LzMLOfPnpDlc2FU=";
··· 2 3 buildGoModule rec { 4 pname = "okteto"; 5 + version = "2.23.2"; 6 7 src = fetchFromGitHub { 8 owner = "okteto"; 9 repo = "okteto"; 10 rev = version; 11 + hash = "sha256-CR3ay54Z/h/mYomWtoOqV0Ynq+iygLR5Zd31gaEQ098="; 12 }; 13 14 vendorHash = "sha256-HodvOSuzp57ijaShCJ+fnX5qk4o5LzMLOfPnpDlc2FU=";
+3 -3
pkgs/development/tools/pulumictl/default.nix
··· 2 3 buildGoModule rec { 4 pname = "pulumictl"; 5 - version = "0.0.45"; 6 7 src = fetchFromGitHub { 8 owner = "pulumi"; 9 repo = "pulumictl"; 10 rev = "v${version}"; 11 - sha256 = "sha256-DDuzJcYfa0zHqLdyoZ/Vi14+0C6ucgkmb5ndrhTlOik="; 12 }; 13 14 - vendorHash = "sha256-XOgHvOaHExazQfsu1brYDq1o2fUh6dZeJlpVhCQX9ns="; 15 16 ldflags = [ 17 "-s" "-w" "-X=github.com/pulumi/pulumictl/pkg/version.Version=${src.rev}"
··· 2 3 buildGoModule rec { 4 pname = "pulumictl"; 5 + version = "0.0.46"; 6 7 src = fetchFromGitHub { 8 owner = "pulumi"; 9 repo = "pulumictl"; 10 rev = "v${version}"; 11 + sha256 = "sha256-7A6dx/5091FIQ2AB6C+Z2CjhTBx2e6iB21Du2u9EiHY="; 12 }; 13 14 + vendorHash = "sha256-Wktr3TXSIIzbkiT3Gk5i4K58gahnxySi6ht30li+Z0o="; 15 16 ldflags = [ 17 "-s" "-w" "-X=github.com/pulumi/pulumictl/pkg/version.Version=${src.rev}"
+3 -3
pkgs/development/tools/the-way/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "the-way"; 5 - version = "0.19.2"; 6 7 src = fetchCrate { 8 inherit pname version; 9 - sha256 = "sha256-jTyKz9ZvA9xJlDQXv2LHrSMeSDbh4AJBxi1WtqUhjgE="; 10 }; 11 12 - cargoSha256 = "sha256-D0H8vChCzBCRjC/S/ceJbuNNAXISiFMZtgu8TMfic+0="; 13 14 nativeBuildInputs = [ installShellFiles ]; 15
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "the-way"; 5 + version = "0.20.1"; 6 7 src = fetchCrate { 8 inherit pname version; 9 + sha256 = "sha256-xOoqMqUFVCTS5gQnX4KEoXoMxVvQX3JRoNgzuA20M6g="; 10 }; 11 12 + cargoHash = "sha256-8eN+O3lygbftXVjIBWCwNfYKAIkmPF/eaUKDa9oVaCA="; 13 14 nativeBuildInputs = [ installShellFiles ]; 15
+1780 -363
pkgs/games/anki/Cargo.lock
··· 18 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20 [[package]] 21 name = "ahash" 22 - version = "0.8.5" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "cd7d5a2cecb58716e47d67d5703a249964b14c7be1ec3cad3affc295b2d1c35d" 25 dependencies = [ 26 "cfg-if", 27 "once_cell", ··· 115 "hyper", 116 "id_tree", 117 "inflections", 118 - "itertools 0.11.0", 119 "lazy_static", 120 "nom", 121 "num_cpus", ··· 141 "sha1", 142 "snafu", 143 "strum", 144 - "syn 2.0.38", 145 "tempfile", 146 "tokio", 147 "tokio-util", ··· 153 "unicase", 154 "unicode-normalization", 155 "utime", 156 - "windows", 157 "wiremock", 158 "zip", 159 - "zstd", 160 ] 161 162 [[package]] ··· 177 "fluent-syntax", 178 "inflections", 179 "intl-memoizer", 180 - "itertools 0.11.0", 181 "num-format", 182 "phf 0.11.2", 183 "serde", ··· 198 name = "anki_process" 199 version = "0.0.0" 200 dependencies = [ 201 - "itertools 0.11.0", 202 "snafu", 203 ] 204 ··· 210 "anki_proto_gen", 211 "anyhow", 212 "inflections", 213 - "itertools 0.11.0", 214 "prost", 215 "prost-build", 216 "prost-reflect", ··· 228 "anyhow", 229 "camino", 230 "inflections", 231 - "itertools 0.11.0", 232 "once_cell", 233 "prost-reflect", 234 "prost-types", ··· 258 259 [[package]] 260 name = "anstyle-parse" 261 - version = "0.2.2" 262 source = "registry+https://github.com/rust-lang/crates.io-index" 263 - checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" 264 dependencies = [ 265 "utf8parse", 266 ] 267 268 [[package]] 269 name = "anstyle-query" 270 - version = "1.0.0" 271 source = "registry+https://github.com/rust-lang/crates.io-index" 272 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 273 dependencies = [ 274 - "windows-sys", 275 ] 276 277 [[package]] 278 name = "anstyle-wincon" 279 - version = "3.0.1" 280 source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 282 dependencies = [ 283 "anstyle", 284 - "windows-sys", 285 ] 286 287 [[package]] ··· 315 checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 316 317 [[package]] 318 name = "assert-json-diff" 319 version = "2.0.2" 320 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 337 338 [[package]] 339 name = "async-compression" 340 - version = "0.4.4" 341 source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" 343 dependencies = [ 344 "futures-core", 345 "memchr", 346 "pin-project-lite", 347 "tokio", 348 - "zstd", 349 - "zstd-safe", 350 ] 351 352 [[package]] ··· 368 dependencies = [ 369 "proc-macro2", 370 "quote", 371 - "syn 2.0.38", 372 ] 373 374 [[package]] ··· 379 dependencies = [ 380 "proc-macro2", 381 "quote", 382 - "syn 2.0.38", 383 ] 384 385 [[package]] ··· 460 "heck", 461 "proc-macro2", 462 "quote", 463 - "syn 2.0.38", 464 ] 465 466 [[package]] ··· 491 checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 492 493 [[package]] 494 name = "bincode" 495 version = "2.0.0-rc.3" 496 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 500 ] 501 502 [[package]] 503 name = "bitflags" 504 version = "1.3.2" 505 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 521 "arrayvec", 522 "cc", 523 "cfg-if", 524 - "constant_time_eq", 525 ] 526 527 [[package]] 528 name = "block-buffer" 529 version = "0.10.4" 530 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 544 545 [[package]] 546 name = "bstr" 547 - version = "1.7.0" 548 source = "registry+https://github.com/rust-lang/crates.io-index" 549 - checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" 550 dependencies = [ 551 "memchr", 552 "regex-automata 0.4.3", ··· 561 562 [[package]] 563 name = "burn" 564 - version = "0.10.0" 565 source = "registry+https://github.com/rust-lang/crates.io-index" 566 - checksum = "e06bb3dfa90408228c879224e26a8bbf072aa2a68194c9b512f715624525c7cc" 567 dependencies = [ 568 "burn-core", 569 "burn-train", ··· 571 572 [[package]] 573 name = "burn-autodiff" 574 - version = "0.10.0" 575 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "b20c3ba4141da32bbcc48a4ce33a0fbf09742dfb6f17d6e781f27e076bf06d82" 577 dependencies = [ 578 "burn-common", 579 "burn-tensor", ··· 583 ] 584 585 [[package]] 586 name = "burn-common" 587 - version = "0.10.0" 588 source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "2ce227728da80c4c7f932e66900d285ff6e04b815d77d769fd2ade463acb0d52" 590 dependencies = [ 591 "async-trait", 592 "derive-new", 593 - "getrandom 0.2.10", 594 "rand 0.8.5", 595 "spin 0.9.8", 596 "uuid", 597 ] 598 599 [[package]] 600 name = "burn-core" 601 - version = "0.10.0" 602 source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "fbbeb7c07436e89d3b7e2445198f5d4142255bf74564eb4dc6cb9898f00d2da5" 604 dependencies = [ 605 "bincode", 606 "burn-autodiff", 607 "burn-common", 608 "burn-dataset", 609 "burn-derive", 610 "burn-ndarray", 611 "burn-tensor", 612 "derive-new", 613 "flate2", 614 "half 2.3.1", 615 - "hashbrown 0.14.2", 616 "libm", 617 "log", 618 "rand 0.8.5", ··· 624 625 [[package]] 626 name = "burn-dataset" 627 - version = "0.10.0" 628 source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "1c7f12f9a55e82d327384e20c394c79e5a414b245fe59c37346e7a98234d1707" 630 dependencies = [ 631 "csv", 632 "derive-new", 633 "dirs", 634 "rand 0.8.5", 635 "rmp-serde", 636 "sanitize-filename", 637 "serde", 638 "serde_json", 639 "strum", 640 "strum_macros", 641 "tempfile", ··· 644 645 [[package]] 646 name = "burn-derive" 647 - version = "0.10.0" 648 source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "0726d6006ab4f1c65b37b079a8663ad168110976fb57234764495ed8c49a94b6" 650 dependencies = [ 651 "derive-new", 652 "proc-macro2", 653 "quote", 654 - "syn 2.0.38", 655 ] 656 657 [[package]] 658 name = "burn-ndarray" 659 - version = "0.10.0" 660 source = "registry+https://github.com/rust-lang/crates.io-index" 661 - checksum = "0cbba6e5180a91a48e2e5da7e74107d82dae9cc94a772a73783eb1381dd71fa2" 662 dependencies = [ 663 "burn-autodiff", 664 "burn-common", ··· 674 ] 675 676 [[package]] 677 name = "burn-tensor" 678 - version = "0.10.0" 679 source = "registry+https://github.com/rust-lang/crates.io-index" 680 - checksum = "c4ddf687c9e2ddf235bb1528530b5e6c04601d4240aca78de6484fd01cc81e9f" 681 dependencies = [ 682 "burn-common", 683 "burn-tensor-testgen", 684 "derive-new", 685 "half 2.3.1", 686 - "hashbrown 0.14.2", 687 "libm", 688 "num-traits", 689 "rand 0.8.5", ··· 693 694 [[package]] 695 name = "burn-tensor-testgen" 696 - version = "0.10.0" 697 source = "registry+https://github.com/rust-lang/crates.io-index" 698 - checksum = "f92da000e738bcf20ec873d63c3b46ed4e0afa10fb14ea3133874886c0fb591f" 699 dependencies = [ 700 "proc-macro2", 701 "quote", 702 - "syn 2.0.38", 703 ] 704 705 [[package]] 706 name = "burn-train" 707 - version = "0.10.0" 708 source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "f7b6ae54075e0f4ea7da7d1e6b94fb84854aed912885a2a957e9ce1e18aae12a" 710 dependencies = [ 711 "burn-core", 712 "derive-new", ··· 718 ] 719 720 [[package]] 721 name = "byteorder" 722 version = "1.5.0" 723 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 730 checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 731 732 [[package]] 733 name = "camino" 734 version = "1.1.6" 735 source = "registry+https://github.com/rust-lang/crates.io-index" 736 checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 737 738 [[package]] 739 name = "cast" 740 version = "0.3.0" 741 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 775 "android-tzdata", 776 "iana-time-zone", 777 "num-traits", 778 - "windows-targets", 779 ] 780 781 [[package]] ··· 817 818 [[package]] 819 name = "clap" 820 - version = "4.4.7" 821 source = "registry+https://github.com/rust-lang/crates.io-index" 822 - checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" 823 dependencies = [ 824 "clap_builder", 825 "clap_derive", ··· 827 828 [[package]] 829 name = "clap_builder" 830 - version = "4.4.7" 831 source = "registry+https://github.com/rust-lang/crates.io-index" 832 - checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" 833 dependencies = [ 834 "anstream", 835 "anstyle", ··· 856 "heck", 857 "proc-macro2", 858 "quote", 859 - "syn 2.0.38", 860 ] 861 862 [[package]] ··· 867 868 [[package]] 869 name = "coarsetime" 870 - version = "0.1.29" 871 source = "registry+https://github.com/rust-lang/crates.io-index" 872 - checksum = "a73ef0d00d14301df35d0f13f5ea32344de6b00837485c358458f1e7f2d27db4" 873 dependencies = [ 874 "libc", 875 "once_cell", ··· 899 ] 900 901 [[package]] 902 name = "colorchoice" 903 version = "1.0.0" 904 source = "registry+https://github.com/rust-lang/crates.io-index" 905 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 906 907 [[package]] 908 name = "concurrent-queue" 909 - version = "2.3.0" 910 source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 912 dependencies = [ 913 "crossbeam-utils", 914 ] ··· 918 version = "0.0.0" 919 dependencies = [ 920 "anyhow", 921 - "itertools 0.11.0", 922 "ninja_gen", 923 ] 924 925 [[package]] 926 name = "constant_time_eq" 927 version = "0.3.0" 928 source = "registry+https://github.com/rust-lang/crates.io-index" 929 checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" ··· 939 940 [[package]] 941 name = "core-foundation" 942 - version = "0.9.3" 943 source = "registry+https://github.com/rust-lang/crates.io-index" 944 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 945 dependencies = [ 946 "core-foundation-sys", 947 "libc", ··· 949 950 [[package]] 951 name = "core-foundation-sys" 952 - version = "0.8.4" 953 source = "registry+https://github.com/rust-lang/crates.io-index" 954 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 955 956 [[package]] 957 name = "cpufeatures" 958 - version = "0.2.10" 959 source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "3fbc60abd742b35f2492f808e1abbb83d45f72db402e14c55057edc9c7b1e9e4" 961 dependencies = [ 962 "libc", 963 ] ··· 1088 ] 1089 1090 [[package]] 1091 name = "data-encoding" 1092 - version = "2.4.0" 1093 source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 1095 1096 [[package]] 1097 name = "deadpool" ··· 1114 1115 [[package]] 1116 name = "deranged" 1117 - version = "0.3.9" 1118 source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 1120 dependencies = [ 1121 "powerfmt", 1122 ] ··· 1176 "libc", 1177 "option-ext", 1178 "redox_users", 1179 - "windows-sys", 1180 ] 1181 1182 [[package]] ··· 1187 dependencies = [ 1188 "proc-macro2", 1189 "quote", 1190 - "syn 2.0.38", 1191 ] 1192 1193 [[package]] ··· 1215 checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 1216 1217 [[package]] 1218 name = "either" 1219 version = "1.9.0" 1220 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1243 1244 [[package]] 1245 name = "env_logger" 1246 - version = "0.10.0" 1247 source = "registry+https://github.com/rust-lang/crates.io-index" 1248 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1249 dependencies = [ 1250 "humantime", 1251 "is-terminal", ··· 1271 1272 [[package]] 1273 name = "errno" 1274 - version = "0.3.5" 1275 source = "registry+https://github.com/rust-lang/crates.io-index" 1276 - checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 1277 dependencies = [ 1278 "libc", 1279 - "windows-sys", 1280 ] 1281 1282 [[package]] ··· 1286 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1287 1288 [[package]] 1289 name = "fallible-iterator" 1290 - version = "0.2.0" 1291 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1293 1294 [[package]] 1295 name = "fallible-streaming-iterator" ··· 1298 checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1299 1300 [[package]] 1301 name = "fastrand" 1302 version = "1.9.0" 1303 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1313 checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1314 1315 [[package]] 1316 name = "filetime" 1317 - version = "0.2.22" 1318 source = "registry+https://github.com/rust-lang/crates.io-index" 1319 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1320 dependencies = [ 1321 "cfg-if", 1322 "libc", 1323 - "redox_syscall 0.3.5", 1324 - "windows-sys", 1325 ] 1326 1327 [[package]] ··· 1372 "intl-memoizer", 1373 "intl_pluralrules", 1374 "rustc-hash", 1375 - "self_cell", 1376 "smallvec", 1377 "unic-langid", 1378 ] ··· 1396 ] 1397 1398 [[package]] 1399 name = "fnv" 1400 version = "1.0.7" 1401 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1407 source = "registry+https://github.com/rust-lang/crates.io-index" 1408 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1409 dependencies = [ 1410 - "foreign-types-shared", 1411 ] 1412 1413 [[package]] ··· 1417 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1418 1419 [[package]] 1420 name = "form_urlencoded" 1421 - version = "1.2.0" 1422 source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1424 dependencies = [ 1425 "percent-encoding", 1426 ] ··· 1457 [[package]] 1458 name = "fsrs" 1459 version = "0.1.0" 1460 - source = "git+https://github.com/open-spaced-repetition/fsrs-rs.git?rev=725417fe310b74a719e18c2127f64223be1cb669#725417fe310b74a719e18c2127f64223be1cb669" 1461 dependencies = [ 1462 "burn", 1463 - "itertools 0.11.0", 1464 "log", 1465 "ndarray", 1466 "ndarray-rand", ··· 1481 "camino", 1482 "clap", 1483 "fluent-syntax", 1484 - "itertools 0.11.0", 1485 "lazy_static", 1486 "regex", 1487 "serde_json", ··· 1501 1502 [[package]] 1503 name = "futures" 1504 - version = "0.3.28" 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1507 dependencies = [ 1508 "futures-channel", 1509 "futures-core", ··· 1516 1517 [[package]] 1518 name = "futures-channel" 1519 - version = "0.3.28" 1520 source = "registry+https://github.com/rust-lang/crates.io-index" 1521 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1522 dependencies = [ 1523 "futures-core", 1524 "futures-sink", ··· 1526 1527 [[package]] 1528 name = "futures-core" 1529 - version = "0.3.28" 1530 source = "registry+https://github.com/rust-lang/crates.io-index" 1531 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1532 1533 [[package]] 1534 name = "futures-executor" 1535 - version = "0.3.28" 1536 source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1538 dependencies = [ 1539 "futures-core", 1540 "futures-task", ··· 1542 ] 1543 1544 [[package]] 1545 name = "futures-io" 1546 - version = "0.3.28" 1547 source = "registry+https://github.com/rust-lang/crates.io-index" 1548 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1549 1550 [[package]] 1551 name = "futures-lite" ··· 1564 1565 [[package]] 1566 name = "futures-macro" 1567 - version = "0.3.28" 1568 source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1570 dependencies = [ 1571 "proc-macro2", 1572 "quote", 1573 - "syn 2.0.38", 1574 ] 1575 1576 [[package]] 1577 name = "futures-sink" 1578 - version = "0.3.28" 1579 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1581 1582 [[package]] 1583 name = "futures-task" 1584 - version = "0.3.28" 1585 source = "registry+https://github.com/rust-lang/crates.io-index" 1586 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1587 1588 [[package]] 1589 name = "futures-timer" ··· 1593 1594 [[package]] 1595 name = "futures-util" 1596 - version = "0.3.28" 1597 source = "registry+https://github.com/rust-lang/crates.io-index" 1598 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1599 dependencies = [ 1600 "futures-channel", 1601 "futures-core", ··· 1610 ] 1611 1612 [[package]] 1613 name = "generic-array" 1614 version = "0.14.7" 1615 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1641 1642 [[package]] 1643 name = "getrandom" 1644 - version = "0.2.10" 1645 source = "registry+https://github.com/rust-lang/crates.io-index" 1646 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1647 dependencies = [ 1648 "cfg-if", 1649 "js-sys", ··· 1653 ] 1654 1655 [[package]] 1656 name = "gimli" 1657 - version = "0.28.0" 1658 source = "registry+https://github.com/rust-lang/crates.io-index" 1659 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1660 1661 [[package]] 1662 name = "glob" ··· 1666 1667 [[package]] 1668 name = "globset" 1669 - version = "0.4.13" 1670 source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 1672 dependencies = [ 1673 "aho-corasick", 1674 "bstr", 1675 - "fnv", 1676 "log", 1677 - "regex", 1678 ] 1679 1680 [[package]] 1681 name = "h2" 1682 - version = "0.3.21" 1683 source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 1685 dependencies = [ 1686 "bytes", 1687 "fnv", ··· 1689 "futures-sink", 1690 "futures-util", 1691 "http", 1692 - "indexmap 1.9.3", 1693 "slab", 1694 "tokio", 1695 "tokio-util", ··· 1708 source = "registry+https://github.com/rust-lang/crates.io-index" 1709 checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 1710 dependencies = [ 1711 "cfg-if", 1712 "crunchy", 1713 "num-traits", 1714 "serde", 1715 ] 1716 1717 [[package]] 1718 name = "handlebars" 1719 - version = "4.4.0" 1720 source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683" 1722 dependencies = [ 1723 "log", 1724 "pest", ··· 1730 1731 [[package]] 1732 name = "hashbrown" 1733 - version = "0.12.3" 1734 source = "registry+https://github.com/rust-lang/crates.io-index" 1735 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1736 1737 [[package]] 1738 name = "hashbrown" 1739 - version = "0.14.2" 1740 source = "registry+https://github.com/rust-lang/crates.io-index" 1741 - checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 1742 dependencies = [ 1743 "ahash", 1744 "allocator-api2", ··· 1751 source = "registry+https://github.com/rust-lang/crates.io-index" 1752 checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 1753 dependencies = [ 1754 - "hashbrown 0.14.2", 1755 ] 1756 1757 [[package]] ··· 1797 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1798 1799 [[package]] 1800 name = "hmac" 1801 version = "0.12.1" 1802 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1811 source = "registry+https://github.com/rust-lang/crates.io-index" 1812 checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1813 dependencies = [ 1814 - "windows-sys", 1815 ] 1816 1817 [[package]] ··· 1836 1837 [[package]] 1838 name = "http" 1839 - version = "0.2.9" 1840 source = "registry+https://github.com/rust-lang/crates.io-index" 1841 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1842 dependencies = [ 1843 "bytes", 1844 "fnv", ··· 1927 1928 [[package]] 1929 name = "hyper-rustls" 1930 - version = "0.24.1" 1931 source = "registry+https://github.com/rust-lang/crates.io-index" 1932 - checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 1933 dependencies = [ 1934 "futures-util", 1935 "http", ··· 1963 "iana-time-zone-haiku", 1964 "js-sys", 1965 "wasm-bindgen", 1966 - "windows-core", 1967 ] 1968 1969 [[package]] ··· 1986 1987 [[package]] 1988 name = "idna" 1989 - version = "0.4.0" 1990 source = "registry+https://github.com/rust-lang/crates.io-index" 1991 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1992 dependencies = [ 1993 "unicode-bidi", 1994 "unicode-normalization", ··· 1996 1997 [[package]] 1998 name = "ignore" 1999 - version = "0.4.20" 2000 source = "registry+https://github.com/rust-lang/crates.io-index" 2001 - checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 2002 dependencies = [ 2003 "globset", 2004 - "lazy_static", 2005 "log", 2006 "memchr", 2007 - "regex", 2008 "same-file", 2009 - "thread_local", 2010 "walkdir", 2011 "winapi-util", 2012 ] 2013 2014 [[package]] 2015 - name = "indexmap" 2016 - version = "1.9.3" 2017 source = "registry+https://github.com/rust-lang/crates.io-index" 2018 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2019 dependencies = [ 2020 - "autocfg", 2021 - "hashbrown 0.12.3", 2022 ] 2023 2024 [[package]] 2025 name = "indexmap" 2026 - version = "2.0.2" 2027 source = "registry+https://github.com/rust-lang/crates.io-index" 2028 - checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 2029 dependencies = [ 2030 "equivalent", 2031 - "hashbrown 0.14.2", 2032 ] 2033 2034 [[package]] ··· 2121 dependencies = [ 2122 "hermit-abi", 2123 "rustix", 2124 - "windows-sys", 2125 ] 2126 2127 [[package]] ··· 2143 ] 2144 2145 [[package]] 2146 name = "itoa" 2147 version = "1.0.9" 2148 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2158 ] 2159 2160 [[package]] 2161 name = "js-sys" 2162 - version = "0.3.64" 2163 source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2165 dependencies = [ 2166 "wasm-bindgen", 2167 ] ··· 2177 ] 2178 2179 [[package]] 2180 name = "kqueue" 2181 version = "1.0.8" 2182 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2203 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2204 2205 [[package]] 2206 name = "libc" 2207 - version = "0.2.149" 2208 source = "registry+https://github.com/rust-lang/crates.io-index" 2209 - checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 2210 2211 [[package]] 2212 name = "libm" ··· 2215 checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2216 2217 [[package]] 2218 name = "libsqlite3-sys" 2219 - version = "0.26.0" 2220 source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 2222 dependencies = [ 2223 "cc", 2224 "pkg-config", ··· 2264 dependencies = [ 2265 "anki", 2266 "futures", 2267 - "itertools 0.11.0", 2268 "lazy_static", 2269 "linkcheck", 2270 "regex", ··· 2284 2285 [[package]] 2286 name = "linux-raw-sys" 2287 - version = "0.4.10" 2288 source = "registry+https://github.com/rust-lang/crates.io-index" 2289 - checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 2290 2291 [[package]] 2292 name = "lock_api" ··· 2338 ] 2339 2340 [[package]] 2341 - name = "makeinstall" 2342 version = "0.0.0" 2343 dependencies = [ 2344 "anyhow", ··· 2349 ] 2350 2351 [[package]] 2352 name = "maplit" 2353 version = "1.0.2" 2354 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2416 2417 [[package]] 2418 name = "mdbook" 2419 - version = "0.4.35" 2420 source = "registry+https://github.com/rust-lang/crates.io-index" 2421 - checksum = "1c3f88addd34930bc5f01b9dc19f780447e51c92bf2536e3ded058018271775d" 2422 dependencies = [ 2423 "ammonia", 2424 "anyhow", ··· 2436 "notify-debouncer-mini", 2437 "once_cell", 2438 "opener", 2439 "pulldown-cmark 0.9.3", 2440 "regex", 2441 "serde", ··· 2455 checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2456 2457 [[package]] 2458 name = "memoffset" 2459 version = "0.9.0" 2460 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2464 ] 2465 2466 [[package]] 2467 name = "mime" 2468 version = "0.3.17" 2469 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2505 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2506 dependencies = [ 2507 "adler", 2508 ] 2509 2510 [[package]] ··· 2516 "libc", 2517 "log", 2518 "wasi 0.11.0+wasi-snapshot-preview1", 2519 - "windows-sys", 2520 ] 2521 2522 [[package]] ··· 2544 checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 2545 2546 [[package]] 2547 name = "native-tls" 2548 version = "0.2.11" 2549 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2601 "camino", 2602 "dunce", 2603 "globset", 2604 - "itertools 0.11.0", 2605 "lazy_static", 2606 "maplit", 2607 "num_cpus", ··· 2631 source = "registry+https://github.com/rust-lang/crates.io-index" 2632 checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" 2633 dependencies = [ 2634 - "windows-sys", 2635 ] 2636 2637 [[package]] ··· 2650 "log", 2651 "mio", 2652 "walkdir", 2653 - "windows-sys", 2654 ] 2655 2656 [[package]] 2657 name = "notify-debouncer-mini" 2658 - version = "0.3.0" 2659 source = "registry+https://github.com/rust-lang/crates.io-index" 2660 - checksum = "e55ee272914f4563a2f8b8553eb6811f3c0caea81c756346bad15b7e3ef969f0" 2661 dependencies = [ 2662 "crossbeam-channel", 2663 "notify", 2664 ] 2665 ··· 2679 source = "registry+https://github.com/rust-lang/crates.io-index" 2680 checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 2681 dependencies = [ 2682 "num-traits", 2683 ] 2684 ··· 2703 ] 2704 2705 [[package]] 2706 name = "num-traits" 2707 version = "0.2.17" 2708 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2724 2725 [[package]] 2726 name = "num_enum" 2727 - version = "0.7.0" 2728 source = "registry+https://github.com/rust-lang/crates.io-index" 2729 - checksum = "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" 2730 dependencies = [ 2731 "num_enum_derive", 2732 ] 2733 2734 [[package]] 2735 name = "num_enum_derive" 2736 - version = "0.7.0" 2737 source = "registry+https://github.com/rust-lang/crates.io-index" 2738 - checksum = "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" 2739 dependencies = [ 2740 "proc-macro-crate", 2741 "proc-macro2", 2742 "quote", 2743 - "syn 2.0.38", 2744 ] 2745 2746 [[package]] ··· 2777 2778 [[package]] 2779 name = "openssl" 2780 - version = "0.10.57" 2781 source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 2783 dependencies = [ 2784 "bitflags 2.4.1", 2785 "cfg-if", 2786 - "foreign-types", 2787 "libc", 2788 "once_cell", 2789 "openssl-macros", ··· 2798 dependencies = [ 2799 "proc-macro2", 2800 "quote", 2801 - "syn 2.0.38", 2802 ] 2803 2804 [[package]] ··· 2809 2810 [[package]] 2811 name = "openssl-sys" 2812 - version = "0.9.93" 2813 source = "registry+https://github.com/rust-lang/crates.io-index" 2814 - checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 2815 dependencies = [ 2816 "cc", 2817 "libc", ··· 2832 checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 2833 dependencies = [ 2834 "libc", 2835 - "windows-sys", 2836 ] 2837 2838 [[package]] ··· 2850 "cbc", 2851 "cipher", 2852 "des", 2853 - "getrandom 0.2.10", 2854 "hmac", 2855 "lazy_static", 2856 "rc2", ··· 2882 dependencies = [ 2883 "cfg-if", 2884 "libc", 2885 - "redox_syscall 0.4.1", 2886 "smallvec", 2887 - "windows-targets", 2888 ] 2889 2890 [[package]] ··· 2894 checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 2895 2896 [[package]] 2897 name = "pem" 2898 version = "1.1.1" 2899 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2904 2905 [[package]] 2906 name = "percent-encoding" 2907 - version = "2.3.0" 2908 source = "registry+https://github.com/rust-lang/crates.io-index" 2909 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2910 2911 [[package]] 2912 name = "percent-encoding-iri" ··· 2944 "pest_meta", 2945 "proc-macro2", 2946 "quote", 2947 - "syn 2.0.38", 2948 ] 2949 2950 [[package]] ··· 2965 checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 2966 dependencies = [ 2967 "fixedbitset", 2968 - "indexmap 2.0.2", 2969 ] 2970 2971 [[package]] ··· 3027 "phf_shared 0.11.2", 3028 "proc-macro2", 3029 "quote", 3030 - "syn 2.0.38", 3031 ] 3032 3033 [[package]] ··· 3065 dependencies = [ 3066 "proc-macro2", 3067 "quote", 3068 - "syn 2.0.38", 3069 ] 3070 3071 [[package]] ··· 3088 3089 [[package]] 3090 name = "plist" 3091 - version = "1.5.1" 3092 source = "registry+https://github.com/rust-lang/crates.io-index" 3093 - checksum = "9a4a0cfc5fb21a09dc6af4bf834cf10d4a32fccd9e2ea468c4b1751a097487aa" 3094 dependencies = [ 3095 "base64 0.21.5", 3096 - "indexmap 1.9.3", 3097 "line-wrap", 3098 "quick-xml", 3099 "serde", ··· 3127 dependencies = [ 3128 "plotters-backend", 3129 ] 3130 3131 [[package]] 3132 name = "powerfmt" ··· 3147 checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 3148 3149 [[package]] 3150 name = "prettyplease" 3151 version = "0.2.15" 3152 source = "registry+https://github.com/rust-lang/crates.io-index" 3153 checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" 3154 dependencies = [ 3155 "proc-macro2", 3156 - "syn 2.0.38", 3157 ] 3158 3159 [[package]] 3160 name = "proc-macro-crate" 3161 - version = "1.3.1" 3162 source = "registry+https://github.com/rust-lang/crates.io-index" 3163 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3164 dependencies = [ 3165 - "once_cell", 3166 "toml_edit", 3167 ] 3168 3169 [[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 name = "proc-macro2" 3177 - version = "1.0.69" 3178 source = "registry+https://github.com/rust-lang/crates.io-index" 3179 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 3180 dependencies = [ 3181 "unicode-ident", 3182 ] 3183 3184 [[package]] 3185 name = "prost" 3186 - version = "0.12.1" 3187 source = "registry+https://github.com/rust-lang/crates.io-index" 3188 - checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d" 3189 dependencies = [ 3190 "bytes", 3191 "prost-derive", ··· 3193 3194 [[package]] 3195 name = "prost-build" 3196 - version = "0.12.1" 3197 source = "registry+https://github.com/rust-lang/crates.io-index" 3198 - checksum = "8bdf592881d821b83d471f8af290226c8d51402259e9bb5be7f9f8bdebbb11ac" 3199 dependencies = [ 3200 "bytes", 3201 "heck", 3202 - "itertools 0.10.5", 3203 "log", 3204 "multimap", 3205 "once_cell", ··· 3208 "prost", 3209 "prost-types", 3210 "regex", 3211 - "syn 2.0.38", 3212 "tempfile", 3213 "which 4.4.2", 3214 ] 3215 3216 [[package]] 3217 name = "prost-derive" 3218 - version = "0.12.1" 3219 source = "registry+https://github.com/rust-lang/crates.io-index" 3220 - checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" 3221 dependencies = [ 3222 "anyhow", 3223 - "itertools 0.10.5", 3224 "proc-macro2", 3225 "quote", 3226 - "syn 2.0.38", 3227 ] 3228 3229 [[package]] ··· 3239 3240 [[package]] 3241 name = "prost-types" 3242 - version = "0.12.1" 3243 source = "registry+https://github.com/rust-lang/crates.io-index" 3244 - checksum = "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf" 3245 dependencies = [ 3246 "prost", 3247 ] ··· 3268 "getopts", 3269 "memchr", 3270 "unicase", 3271 ] 3272 3273 [[package]] ··· 3316 "proc-macro2", 3317 "pyo3-macros-backend", 3318 "quote", 3319 - "syn 2.0.38", 3320 ] 3321 3322 [[package]] ··· 3328 "heck", 3329 "proc-macro2", 3330 "quote", 3331 - "syn 2.0.38", 3332 ] 3333 3334 [[package]] 3335 name = "quick-xml" 3336 - version = "0.30.0" 3337 source = "registry+https://github.com/rust-lang/crates.io-index" 3338 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 3339 dependencies = [ 3340 "memchr", 3341 ] ··· 3350 ] 3351 3352 [[package]] 3353 name = "rand" 3354 version = "0.7.3" 3355 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3408 source = "registry+https://github.com/rust-lang/crates.io-index" 3409 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3410 dependencies = [ 3411 - "getrandom 0.2.10", 3412 ] 3413 3414 [[package]] ··· 3431 ] 3432 3433 [[package]] 3434 name = "rawpointer" 3435 version = "0.2.1" 3436 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3478 ] 3479 3480 [[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" 3492 source = "registry+https://github.com/rust-lang/crates.io-index" 3493 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3494 - dependencies = [ 3495 - "bitflags 1.3.2", 3496 - ] 3497 3498 [[package]] 3499 name = "redox_syscall" ··· 3506 3507 [[package]] 3508 name = "redox_users" 3509 - version = "0.4.3" 3510 source = "registry+https://github.com/rust-lang/crates.io-index" 3511 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3512 dependencies = [ 3513 - "getrandom 0.2.10", 3514 - "redox_syscall 0.2.16", 3515 "thiserror", 3516 ] 3517 ··· 3558 version = "0.8.2" 3559 source = "registry+https://github.com/rust-lang/crates.io-index" 3560 checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 3561 3562 [[package]] 3563 name = "reqwest" ··· 3630 3631 [[package]] 3632 name = "ring" 3633 - version = "0.17.5" 3634 source = "registry+https://github.com/rust-lang/crates.io-index" 3635 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 3636 dependencies = [ 3637 "cc", 3638 - "getrandom 0.2.10", 3639 "libc", 3640 "spin 0.9.8", 3641 "untrusted 0.9.0", 3642 - "windows-sys", 3643 ] 3644 3645 [[package]] ··· 3691 "which 5.0.0", 3692 "xz2", 3693 "zip", 3694 - "zstd", 3695 ] 3696 3697 [[package]] 3698 name = "rusqlite" 3699 - version = "0.29.0" 3700 source = "registry+https://github.com/rust-lang/crates.io-index" 3701 - checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" 3702 dependencies = [ 3703 "bitflags 2.4.1", 3704 "fallible-iterator", ··· 3722 3723 [[package]] 3724 name = "rustix" 3725 - version = "0.38.20" 3726 source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "67ce50cb2e16c2903e30d1cbccfd8387a74b9d4c938b6a4c5ec6cc7556f7a8a0" 3728 dependencies = [ 3729 "bitflags 2.4.1", 3730 "errno", 3731 "libc", 3732 "linux-raw-sys", 3733 - "windows-sys", 3734 ] 3735 3736 [[package]] 3737 name = "rustls" 3738 - version = "0.21.8" 3739 source = "registry+https://github.com/rust-lang/crates.io-index" 3740 - checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" 3741 dependencies = [ 3742 "log", 3743 - "ring 0.17.5", 3744 "rustls-webpki", 3745 "sct", 3746 ] ··· 3759 3760 [[package]] 3761 name = "rustls-pemfile" 3762 - version = "1.0.3" 3763 source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 3765 dependencies = [ 3766 "base64 0.21.5", 3767 ] ··· 3772 source = "registry+https://github.com/rust-lang/crates.io-index" 3773 checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3774 dependencies = [ 3775 - "ring 0.17.5", 3776 "untrusted 0.9.0", 3777 ] 3778 ··· 3793 version = "0.3.3" 3794 source = "registry+https://github.com/rust-lang/crates.io-index" 3795 checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 3796 3797 [[package]] 3798 name = "same-file" ··· 3819 source = "registry+https://github.com/rust-lang/crates.io-index" 3820 checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 3821 dependencies = [ 3822 - "windows-sys", 3823 ] 3824 3825 [[package]] ··· 3840 source = "registry+https://github.com/rust-lang/crates.io-index" 3841 checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3842 dependencies = [ 3843 - "ring 0.17.5", 3844 "untrusted 0.9.0", 3845 ] 3846 ··· 3869 3870 [[package]] 3871 name = "self_cell" 3872 - version = "0.10.2" 3873 source = "registry+https://github.com/rust-lang/crates.io-index" 3874 - checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 3875 3876 [[package]] 3877 name = "semver" ··· 3880 checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 3881 3882 [[package]] 3883 name = "serde" 3884 - version = "1.0.189" 3885 source = "registry+https://github.com/rust-lang/crates.io-index" 3886 - checksum = "8e422a44e74ad4001bdc8eede9a4570ab52f71190e9c076d14369f38b9200537" 3887 dependencies = [ 3888 "serde_derive", 3889 ] 3890 3891 [[package]] 3892 name = "serde-aux" 3893 - version = "4.2.0" 3894 source = "registry+https://github.com/rust-lang/crates.io-index" 3895 - checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39" 3896 dependencies = [ 3897 "chrono", 3898 "serde", ··· 3901 3902 [[package]] 3903 name = "serde_derive" 3904 - version = "1.0.189" 3905 source = "registry+https://github.com/rust-lang/crates.io-index" 3906 - checksum = "1e48d1f918009ce3145511378cf68d613e3b3d9137d67272562080d68a2b32d5" 3907 dependencies = [ 3908 "proc-macro2", 3909 "quote", 3910 - "syn 2.0.38", 3911 ] 3912 3913 [[package]] 3914 name = "serde_json" 3915 - version = "1.0.107" 3916 source = "registry+https://github.com/rust-lang/crates.io-index" 3917 - checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 3918 dependencies = [ 3919 "itoa", 3920 "ryu", ··· 3944 3945 [[package]] 3946 name = "serde_repr" 3947 - version = "0.1.16" 3948 source = "registry+https://github.com/rust-lang/crates.io-index" 3949 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 3950 dependencies = [ 3951 "proc-macro2", 3952 "quote", 3953 - "syn 2.0.38", 3954 ] 3955 3956 [[package]] ··· 4034 checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 4035 4036 [[package]] 4037 name = "signal-hook-registry" 4038 version = "1.4.1" 4039 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4043 ] 4044 4045 [[package]] 4046 name = "simple-file-manifest" 4047 version = "0.11.0" 4048 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4064 ] 4065 4066 [[package]] 4067 name = "smallvec" 4068 - version = "1.11.1" 4069 source = "registry+https://github.com/rust-lang/crates.io-index" 4070 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 4071 4072 [[package]] 4073 name = "snafu" ··· 4115 checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 4116 dependencies = [ 4117 "libc", 4118 - "windows-sys", 4119 ] 4120 4121 [[package]] ··· 4134 ] 4135 4136 [[package]] 4137 name = "string_cache" 4138 version = "0.8.7" 4139 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4184 "proc-macro2", 4185 "quote", 4186 "rustversion", 4187 - "syn 2.0.38", 4188 ] 4189 4190 [[package]] ··· 4206 4207 [[package]] 4208 name = "syn" 4209 - version = "2.0.38" 4210 source = "registry+https://github.com/rust-lang/crates.io-index" 4211 - checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 4212 dependencies = [ 4213 "proc-macro2", 4214 "quote", ··· 4222 checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4223 4224 [[package]] 4225 name = "system-configuration" 4226 version = "0.5.1" 4227 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4260 checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" 4261 4262 [[package]] 4263 name = "tempfile" 4264 - version = "3.8.0" 4265 source = "registry+https://github.com/rust-lang/crates.io-index" 4266 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 4267 dependencies = [ 4268 "cfg-if", 4269 "fastrand 2.0.1", 4270 - "redox_syscall 0.3.5", 4271 "rustix", 4272 - "windows-sys", 4273 ] 4274 4275 [[package]] ··· 4285 4286 [[package]] 4287 name = "termcolor" 4288 - version = "1.3.0" 4289 source = "registry+https://github.com/rust-lang/crates.io-index" 4290 - checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 4291 dependencies = [ 4292 "winapi-util", 4293 ] ··· 4299 checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 4300 dependencies = [ 4301 "rustix", 4302 - "windows-sys", 4303 ] 4304 4305 [[package]] ··· 4319 dependencies = [ 4320 "proc-macro2", 4321 "quote", 4322 - "syn 2.0.38", 4323 ] 4324 4325 [[package]] ··· 4342 ] 4343 4344 [[package]] 4345 name = "time" 4346 version = "0.3.30" 4347 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4372 4373 [[package]] 4374 name = "tinystr" 4375 - version = "0.7.4" 4376 source = "registry+https://github.com/rust-lang/crates.io-index" 4377 - checksum = "d5d0e245e80bdc9b4e5356fc45a72184abbc3861992603f515270e9340f5a219" 4378 dependencies = [ 4379 "displaydoc", 4380 ] ··· 4406 4407 [[package]] 4408 name = "tokio" 4409 - version = "1.33.0" 4410 source = "registry+https://github.com/rust-lang/crates.io-index" 4411 - checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 4412 dependencies = [ 4413 "backtrace", 4414 "bytes", ··· 4419 "signal-hook-registry", 4420 "socket2 0.5.5", 4421 "tokio-macros", 4422 - "windows-sys", 4423 ] 4424 4425 [[package]] 4426 name = "tokio-macros" 4427 - version = "2.1.0" 4428 source = "registry+https://github.com/rust-lang/crates.io-index" 4429 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4430 dependencies = [ 4431 "proc-macro2", 4432 "quote", 4433 - "syn 2.0.38", 4434 ] 4435 4436 [[package]] ··· 4490 4491 [[package]] 4492 name = "tokio-util" 4493 - version = "0.7.9" 4494 source = "registry+https://github.com/rust-lang/crates.io-index" 4495 - checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" 4496 dependencies = [ 4497 "bytes", 4498 "futures-core", ··· 4519 4520 [[package]] 4521 name = "toml_edit" 4522 - version = "0.19.15" 4523 source = "registry+https://github.com/rust-lang/crates.io-index" 4524 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4525 dependencies = [ 4526 - "indexmap 2.0.2", 4527 "toml_datetime", 4528 "winnow", 4529 ] ··· 4535 checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d" 4536 4537 [[package]] 4538 name = "tower" 4539 version = "0.4.13" 4540 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4595 4596 [[package]] 4597 name = "tracing-appender" 4598 - version = "0.2.2" 4599 source = "registry+https://github.com/rust-lang/crates.io-index" 4600 - checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e" 4601 dependencies = [ 4602 "crossbeam-channel", 4603 "time", 4604 "tracing-subscriber", 4605 ] ··· 4612 dependencies = [ 4613 "proc-macro2", 4614 "quote", 4615 - "syn 2.0.38", 4616 ] 4617 4618 [[package]] ··· 4627 4628 [[package]] 4629 name = "tracing-log" 4630 - version = "0.1.4" 4631 source = "registry+https://github.com/rust-lang/crates.io-index" 4632 - checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" 4633 dependencies = [ 4634 "log", 4635 "once_cell", ··· 4638 4639 [[package]] 4640 name = "tracing-subscriber" 4641 - version = "0.3.17" 4642 source = "registry+https://github.com/rust-lang/crates.io-index" 4643 - checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 4644 dependencies = [ 4645 "matchers", 4646 "nu-ansi-term", ··· 4775 4776 [[package]] 4777 name = "unic-langid" 4778 - version = "0.9.1" 4779 source = "registry+https://github.com/rust-lang/crates.io-index" 4780 - checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 4781 dependencies = [ 4782 "unic-langid-impl", 4783 "unic-langid-macros", ··· 4785 4786 [[package]] 4787 name = "unic-langid-impl" 4788 - version = "0.9.1" 4789 source = "registry+https://github.com/rust-lang/crates.io-index" 4790 - checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 4791 dependencies = [ 4792 "tinystr", 4793 ] 4794 4795 [[package]] 4796 name = "unic-langid-macros" 4797 - version = "0.9.1" 4798 source = "registry+https://github.com/rust-lang/crates.io-index" 4799 - checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe" 4800 dependencies = [ 4801 - "proc-macro-hack", 4802 "tinystr", 4803 "unic-langid-impl", 4804 "unic-langid-macros-impl", ··· 4806 4807 [[package]] 4808 name = "unic-langid-macros-impl" 4809 - version = "0.9.1" 4810 source = "registry+https://github.com/rust-lang/crates.io-index" 4811 - checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8" 4812 dependencies = [ 4813 - "proc-macro-hack", 4814 "quote", 4815 - "syn 1.0.109", 4816 "unic-langid-impl", 4817 ] 4818 ··· 4880 checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 4881 4882 [[package]] 4883 name = "unindent" 4884 version = "0.2.3" 4885 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4898 checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4899 4900 [[package]] 4901 name = "url" 4902 - version = "2.4.1" 4903 source = "registry+https://github.com/rust-lang/crates.io-index" 4904 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 4905 dependencies = [ 4906 "form_urlencoded", 4907 "idna", ··· 4933 4934 [[package]] 4935 name = "uuid" 4936 - version = "1.5.0" 4937 source = "registry+https://github.com/rust-lang/crates.io-index" 4938 - checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 4939 4940 [[package]] 4941 name = "valuable" ··· 5024 5025 [[package]] 5026 name = "wasm-bindgen" 5027 - version = "0.2.87" 5028 source = "registry+https://github.com/rust-lang/crates.io-index" 5029 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 5030 dependencies = [ 5031 "cfg-if", 5032 "wasm-bindgen-macro", ··· 5034 5035 [[package]] 5036 name = "wasm-bindgen-backend" 5037 - version = "0.2.87" 5038 source = "registry+https://github.com/rust-lang/crates.io-index" 5039 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 5040 dependencies = [ 5041 "bumpalo", 5042 "log", 5043 "once_cell", 5044 "proc-macro2", 5045 "quote", 5046 - "syn 2.0.38", 5047 "wasm-bindgen-shared", 5048 ] 5049 5050 [[package]] 5051 name = "wasm-bindgen-futures" 5052 - version = "0.4.37" 5053 source = "registry+https://github.com/rust-lang/crates.io-index" 5054 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 5055 dependencies = [ 5056 "cfg-if", 5057 "js-sys", ··· 5061 5062 [[package]] 5063 name = "wasm-bindgen-macro" 5064 - version = "0.2.87" 5065 source = "registry+https://github.com/rust-lang/crates.io-index" 5066 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 5067 dependencies = [ 5068 "quote", 5069 "wasm-bindgen-macro-support", ··· 5071 5072 [[package]] 5073 name = "wasm-bindgen-macro-support" 5074 - version = "0.2.87" 5075 source = "registry+https://github.com/rust-lang/crates.io-index" 5076 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 5077 dependencies = [ 5078 "proc-macro2", 5079 "quote", 5080 - "syn 2.0.38", 5081 "wasm-bindgen-backend", 5082 "wasm-bindgen-shared", 5083 ] 5084 5085 [[package]] 5086 name = "wasm-bindgen-shared" 5087 - version = "0.2.87" 5088 source = "registry+https://github.com/rust-lang/crates.io-index" 5089 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 5090 5091 [[package]] 5092 name = "wasm-streams" ··· 5113 5114 [[package]] 5115 name = "webpki-roots" 5116 - version = "0.25.2" 5117 source = "registry+https://github.com/rust-lang/crates.io-index" 5118 - checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 5119 5120 [[package]] 5121 name = "which" ··· 5139 "home", 5140 "once_cell", 5141 "rustix", 5142 - "windows-sys", 5143 ] 5144 5145 [[package]] 5146 name = "winapi" 5147 version = "0.3.9" 5148 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5179 source = "registry+https://github.com/rust-lang/crates.io-index" 5180 checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 5181 dependencies = [ 5182 - "windows-core", 5183 - "windows-targets", 5184 ] 5185 5186 [[package]] ··· 5189 source = "registry+https://github.com/rust-lang/crates.io-index" 5190 checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5191 dependencies = [ 5192 - "windows-targets", 5193 ] 5194 5195 [[package]] ··· 5198 source = "registry+https://github.com/rust-lang/crates.io-index" 5199 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5200 dependencies = [ 5201 - "windows-targets", 5202 ] 5203 5204 [[package]] ··· 5207 source = "registry+https://github.com/rust-lang/crates.io-index" 5208 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5209 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", 5217 ] 5218 5219 [[package]] ··· 5223 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5224 5225 [[package]] 5226 name = "windows_aarch64_msvc" 5227 version = "0.48.5" 5228 source = "registry+https://github.com/rust-lang/crates.io-index" 5229 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5230 5231 [[package]] 5232 name = "windows_i686_gnu" 5233 version = "0.48.5" 5234 source = "registry+https://github.com/rust-lang/crates.io-index" 5235 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 5236 5237 [[package]] 5238 name = "windows_i686_msvc" 5239 version = "0.48.5" 5240 source = "registry+https://github.com/rust-lang/crates.io-index" 5241 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5242 5243 [[package]] 5244 name = "windows_x86_64_gnu" 5245 version = "0.48.5" 5246 source = "registry+https://github.com/rust-lang/crates.io-index" 5247 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5248 5249 [[package]] 5250 name = "windows_x86_64_gnullvm" 5251 version = "0.48.5" 5252 source = "registry+https://github.com/rust-lang/crates.io-index" 5253 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5254 5255 [[package]] 5256 name = "windows_x86_64_msvc" 5257 version = "0.48.5" 5258 source = "registry+https://github.com/rust-lang/crates.io-index" 5259 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5260 5261 [[package]] 5262 name = "winnow" 5263 - version = "0.5.17" 5264 source = "registry+https://github.com/rust-lang/crates.io-index" 5265 - checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" 5266 dependencies = [ 5267 "memchr", 5268 ] ··· 5284 checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 5285 dependencies = [ 5286 "cfg-if", 5287 - "windows-sys", 5288 ] 5289 5290 [[package]] 5291 name = "wiremock" 5292 - version = "0.5.19" 5293 source = "registry+https://github.com/rust-lang/crates.io-index" 5294 - checksum = "c6f71803d3a1c80377a06221e0530be02035d5b3e854af56c6ece7ac20ac441d" 5295 dependencies = [ 5296 "assert-json-diff", 5297 "async-trait", ··· 5319 ] 5320 5321 [[package]] 5322 name = "xml5ever" 5323 version = "0.17.0" 5324 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5348 ] 5349 5350 [[package]] 5351 name = "zerocopy" 5352 - version = "0.7.13" 5353 source = "registry+https://github.com/rust-lang/crates.io-index" 5354 - checksum = "9ffc046c9f849405a42c87e82e2f2f861d1f0a06b855910c76c2bd1e87be900c" 5355 dependencies = [ 5356 "zerocopy-derive", 5357 ] 5358 5359 [[package]] 5360 name = "zerocopy-derive" 5361 - version = "0.7.13" 5362 source = "registry+https://github.com/rust-lang/crates.io-index" 5363 - checksum = "246c000cfc5f942bac7ff99fde24a9ebb589d92e024bc758c6c733c15a02a73e" 5364 dependencies = [ 5365 "proc-macro2", 5366 "quote", 5367 - "syn 2.0.38", 5368 ] 5369 5370 [[package]] ··· 5373 source = "registry+https://github.com/rust-lang/crates.io-index" 5374 checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 5375 dependencies = [ 5376 "byteorder", 5377 "crc32fast", 5378 "crossbeam-utils", 5379 "flate2", 5380 "time", 5381 ] 5382 5383 [[package]] ··· 5386 source = "registry+https://github.com/rust-lang/crates.io-index" 5387 checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 5388 dependencies = [ 5389 - "zstd-safe", 5390 ] 5391 5392 [[package]] ··· 5407 "cc", 5408 "pkg-config", 5409 ]
··· 18 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 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]] 32 name = "ahash" 33 + version = "0.8.6" 34 source = "registry+https://github.com/rust-lang/crates.io-index" 35 + checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 36 dependencies = [ 37 "cfg-if", 38 "once_cell", ··· 126 "hyper", 127 "id_tree", 128 "inflections", 129 + "itertools 0.12.0", 130 "lazy_static", 131 "nom", 132 "num_cpus", ··· 152 "sha1", 153 "snafu", 154 "strum", 155 + "syn 2.0.39", 156 "tempfile", 157 "tokio", 158 "tokio-util", ··· 164 "unicase", 165 "unicode-normalization", 166 "utime", 167 + "windows 0.52.0", 168 "wiremock", 169 "zip", 170 + "zstd 0.13.0", 171 ] 172 173 [[package]] ··· 188 "fluent-syntax", 189 "inflections", 190 "intl-memoizer", 191 + "itertools 0.12.0", 192 "num-format", 193 "phf 0.11.2", 194 "serde", ··· 209 name = "anki_process" 210 version = "0.0.0" 211 dependencies = [ 212 + "itertools 0.12.0", 213 "snafu", 214 ] 215 ··· 221 "anki_proto_gen", 222 "anyhow", 223 "inflections", 224 + "itertools 0.12.0", 225 "prost", 226 "prost-build", 227 "prost-reflect", ··· 239 "anyhow", 240 "camino", 241 "inflections", 242 + "itertools 0.12.0", 243 "once_cell", 244 "prost-reflect", 245 "prost-types", ··· 269 270 [[package]] 271 name = "anstyle-parse" 272 + version = "0.2.3" 273 source = "registry+https://github.com/rust-lang/crates.io-index" 274 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 275 dependencies = [ 276 "utf8parse", 277 ] 278 279 [[package]] 280 name = "anstyle-query" 281 + version = "1.0.1" 282 source = "registry+https://github.com/rust-lang/crates.io-index" 283 + checksum = "a3a318f1f38d2418400f8209655bfd825785afd25aa30bb7ba6cc792e4596748" 284 dependencies = [ 285 + "windows-sys 0.52.0", 286 ] 287 288 [[package]] 289 name = "anstyle-wincon" 290 + version = "3.0.2" 291 source = "registry+https://github.com/rust-lang/crates.io-index" 292 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 293 dependencies = [ 294 "anstyle", 295 + "windows-sys 0.52.0", 296 ] 297 298 [[package]] ··· 326 checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 327 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]] 338 name = "assert-json-diff" 339 version = "2.0.2" 340 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 357 358 [[package]] 359 name = "async-compression" 360 + version = "0.4.5" 361 source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 363 dependencies = [ 364 "futures-core", 365 "memchr", 366 "pin-project-lite", 367 "tokio", 368 + "zstd 0.13.0", 369 + "zstd-safe 7.0.0", 370 ] 371 372 [[package]] ··· 388 dependencies = [ 389 "proc-macro2", 390 "quote", 391 + "syn 2.0.39", 392 ] 393 394 [[package]] ··· 399 dependencies = [ 400 "proc-macro2", 401 "quote", 402 + "syn 2.0.39", 403 ] 404 405 [[package]] ··· 480 "heck", 481 "proc-macro2", 482 "quote", 483 + "syn 2.0.39", 484 ] 485 486 [[package]] ··· 511 checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 512 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]] 520 name = "bincode" 521 version = "2.0.0-rc.3" 522 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 526 ] 527 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]] 550 name = "bitflags" 551 version = "1.3.2" 552 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 568 "arrayvec", 569 "cc", 570 "cfg-if", 571 + "constant_time_eq 0.3.0", 572 ] 573 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]] 581 name = "block-buffer" 582 version = "0.10.4" 583 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 597 598 [[package]] 599 name = "bstr" 600 + version = "1.8.0" 601 source = "registry+https://github.com/rust-lang/crates.io-index" 602 + checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 603 dependencies = [ 604 "memchr", 605 "regex-automata 0.4.3", ··· 614 615 [[package]] 616 name = "burn" 617 + version = "0.11.1" 618 source = "registry+https://github.com/rust-lang/crates.io-index" 619 + checksum = "d5008368c07b8ffc5c8bde2ebf31b59bdd263fdd825152bd0a9d333a220ba44f" 620 dependencies = [ 621 "burn-core", 622 "burn-train", ··· 624 625 [[package]] 626 name = "burn-autodiff" 627 + version = "0.11.1" 628 source = "registry+https://github.com/rust-lang/crates.io-index" 629 + checksum = "176a12ffd413ba2bfafa2b4ed1e2a21d7880b67a1ac3a9bb4919c9c0f102cdd7" 630 dependencies = [ 631 "burn-common", 632 "burn-tensor", ··· 636 ] 637 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]] 651 name = "burn-common" 652 + version = "0.11.1" 653 source = "registry+https://github.com/rust-lang/crates.io-index" 654 + checksum = "7dcb7947986d5420a9126959a5f16675f2d7b822bacc60a966fcfcf5a7dbd247" 655 dependencies = [ 656 "async-trait", 657 "derive-new", 658 + "getrandom 0.2.11", 659 "rand 0.8.5", 660 "spin 0.9.8", 661 "uuid", 662 ] 663 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]] 678 name = "burn-core" 679 + version = "0.11.1" 680 source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "2067024ff50b21e29e6835a7cc8189046024fc7c174f1d2d635a4955c5151fe5" 682 dependencies = [ 683 "bincode", 684 "burn-autodiff", 685 + "burn-candle", 686 "burn-common", 687 "burn-dataset", 688 "burn-derive", 689 + "burn-fusion", 690 "burn-ndarray", 691 + "burn-tch", 692 "burn-tensor", 693 + "burn-wgpu", 694 "derive-new", 695 "flate2", 696 "half 2.3.1", 697 + "hashbrown 0.14.3", 698 "libm", 699 "log", 700 "rand 0.8.5", ··· 706 707 [[package]] 708 name = "burn-dataset" 709 + version = "0.11.1" 710 source = "registry+https://github.com/rust-lang/crates.io-index" 711 + checksum = "a9f3481ac13ad69279d4922cf17866aa99841b76db49d9a7915a7521d772a345" 712 dependencies = [ 713 "csv", 714 "derive-new", 715 "dirs", 716 + "gix-tempfile", 717 + "image", 718 + "r2d2", 719 + "r2d2_sqlite", 720 "rand 0.8.5", 721 "rmp-serde", 722 + "rusqlite", 723 "sanitize-filename", 724 "serde", 725 "serde_json", 726 + "serde_rusqlite", 727 "strum", 728 "strum_macros", 729 "tempfile", ··· 732 733 [[package]] 734 name = "burn-derive" 735 + version = "0.11.1" 736 source = "registry+https://github.com/rust-lang/crates.io-index" 737 + checksum = "d44415ff69a525b49272a5ed893655441834f9ee6cac3ffe2b2387326042d8fc" 738 dependencies = [ 739 "derive-new", 740 "proc-macro2", 741 "quote", 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", 756 ] 757 758 [[package]] 759 name = "burn-ndarray" 760 + version = "0.11.1" 761 source = "registry+https://github.com/rust-lang/crates.io-index" 762 + checksum = "0448005c7ed6f1636ca0e12a148613fdd4d5739e1db8b241c7940140098f4fe3" 763 dependencies = [ 764 "burn-autodiff", 765 "burn-common", ··· 775 ] 776 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]] 791 name = "burn-tensor" 792 + version = "0.11.1" 793 source = "registry+https://github.com/rust-lang/crates.io-index" 794 + checksum = "60f8cf3d9588047b7d221c718b7208b829fdd1050150a69d069b66e1bb6e6cbb" 795 dependencies = [ 796 "burn-common", 797 "burn-tensor-testgen", 798 "derive-new", 799 "half 2.3.1", 800 + "hashbrown 0.14.3", 801 "libm", 802 "num-traits", 803 "rand 0.8.5", ··· 807 808 [[package]] 809 name = "burn-tensor-testgen" 810 + version = "0.11.1" 811 source = "registry+https://github.com/rust-lang/crates.io-index" 812 + checksum = "a555a79ab0ab974e61aee15e62e87576ca47e7df768f68145754527d31633f87" 813 dependencies = [ 814 "proc-macro2", 815 "quote", 816 ] 817 818 [[package]] 819 name = "burn-train" 820 + version = "0.11.1" 821 source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "eb7defef4e44f0780d25c0aaf4d55efc96fb726b3f5d60902da682a59692359d" 823 dependencies = [ 824 "burn-core", 825 "derive-new", ··· 831 ] 832 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]] 877 name = "byteorder" 878 version = "1.5.0" 879 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 886 checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 887 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]] 910 name = "camino" 911 version = "1.1.6" 912 source = "registry+https://github.com/rust-lang/crates.io-index" 913 checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 914 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]] 937 name = "cast" 938 version = "0.3.0" 939 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 973 "android-tzdata", 974 "iana-time-zone", 975 "num-traits", 976 + "windows-targets 0.48.5", 977 ] 978 979 [[package]] ··· 1015 1016 [[package]] 1017 name = "clap" 1018 + version = "4.4.11" 1019 source = "registry+https://github.com/rust-lang/crates.io-index" 1020 + checksum = "bfaff671f6b22ca62406885ece523383b9b64022e341e53e009a62ebc47a45f2" 1021 dependencies = [ 1022 "clap_builder", 1023 "clap_derive", ··· 1025 1026 [[package]] 1027 name = "clap_builder" 1028 + version = "4.4.11" 1029 source = "registry+https://github.com/rust-lang/crates.io-index" 1030 + checksum = "a216b506622bb1d316cd51328dce24e07bdff4a6128a47c7e7fad11878d5adbb" 1031 dependencies = [ 1032 "anstream", 1033 "anstyle", ··· 1054 "heck", 1055 "proc-macro2", 1056 "quote", 1057 + "syn 2.0.39", 1058 ] 1059 1060 [[package]] ··· 1065 1066 [[package]] 1067 name = "coarsetime" 1068 + version = "0.1.33" 1069 source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "71367d3385c716342014ad17e3d19f7788ae514885a1f4c24f500260fb365e1a" 1071 dependencies = [ 1072 "libc", 1073 "once_cell", ··· 1097 ] 1098 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]] 1106 name = "colorchoice" 1107 version = "1.0.0" 1108 source = "registry+https://github.com/rust-lang/crates.io-index" 1109 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 1110 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]] 1118 name = "concurrent-queue" 1119 + version = "2.4.0" 1120 source = "registry+https://github.com/rust-lang/crates.io-index" 1121 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 1122 dependencies = [ 1123 "crossbeam-utils", 1124 ] ··· 1128 version = "0.0.0" 1129 dependencies = [ 1130 "anyhow", 1131 + "itertools 0.12.0", 1132 "ninja_gen", 1133 ] 1134 1135 [[package]] 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" 1143 version = "0.3.0" 1144 source = "registry+https://github.com/rust-lang/crates.io-index" 1145 checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" ··· 1155 1156 [[package]] 1157 name = "core-foundation" 1158 + version = "0.9.4" 1159 source = "registry+https://github.com/rust-lang/crates.io-index" 1160 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1161 dependencies = [ 1162 "core-foundation-sys", 1163 "libc", ··· 1165 1166 [[package]] 1167 name = "core-foundation-sys" 1168 + version = "0.8.6" 1169 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 1182 1183 [[package]] 1184 name = "cpufeatures" 1185 + version = "0.2.11" 1186 source = "registry+https://github.com/rust-lang/crates.io-index" 1187 + checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1188 dependencies = [ 1189 "libc", 1190 ] ··· 1315 ] 1316 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]] 1342 name = "data-encoding" 1343 + version = "2.5.0" 1344 source = "registry+https://github.com/rust-lang/crates.io-index" 1345 + checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 1346 1347 [[package]] 1348 name = "deadpool" ··· 1365 1366 [[package]] 1367 name = "deranged" 1368 + version = "0.3.10" 1369 source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" 1371 dependencies = [ 1372 "powerfmt", 1373 ] ··· 1427 "libc", 1428 "option-ext", 1429 "redox_users", 1430 + "windows-sys 0.48.0", 1431 ] 1432 1433 [[package]] ··· 1438 dependencies = [ 1439 "proc-macro2", 1440 "quote", 1441 + "syn 2.0.39", 1442 ] 1443 1444 [[package]] ··· 1466 checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 1467 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]] 1479 name = "either" 1480 version = "1.9.0" 1481 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1504 1505 [[package]] 1506 name = "env_logger" 1507 + version = "0.10.1" 1508 source = "registry+https://github.com/rust-lang/crates.io-index" 1509 + checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 1510 dependencies = [ 1511 "humantime", 1512 "is-terminal", ··· 1532 1533 [[package]] 1534 name = "errno" 1535 + version = "0.3.8" 1536 source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1538 dependencies = [ 1539 "libc", 1540 + "windows-sys 0.52.0", 1541 ] 1542 1543 [[package]] ··· 1547 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1548 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]] 1566 name = "fallible-iterator" 1567 + version = "0.3.0" 1568 source = "registry+https://github.com/rust-lang/crates.io-index" 1569 + checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 1570 1571 [[package]] 1572 name = "fallible-streaming-iterator" ··· 1575 checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1576 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]] 1587 name = "fastrand" 1588 version = "1.9.0" 1589 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1599 checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1600 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]] 1611 name = "filetime" 1612 + version = "0.2.23" 1613 source = "registry+https://github.com/rust-lang/crates.io-index" 1614 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1615 dependencies = [ 1616 "cfg-if", 1617 "libc", 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", 1629 ] 1630 1631 [[package]] ··· 1676 "intl-memoizer", 1677 "intl_pluralrules", 1678 "rustc-hash", 1679 + "self_cell 0.10.3", 1680 "smallvec", 1681 "unic-langid", 1682 ] ··· 1700 ] 1701 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]] 1728 name = "fnv" 1729 version = "1.0.7" 1730 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1736 source = "registry+https://github.com/rust-lang/crates.io-index" 1737 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1738 dependencies = [ 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", 1761 ] 1762 1763 [[package]] ··· 1767 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1768 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]] 1776 name = "form_urlencoded" 1777 + version = "1.2.1" 1778 source = "registry+https://github.com/rust-lang/crates.io-index" 1779 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1780 dependencies = [ 1781 "percent-encoding", 1782 ] ··· 1813 [[package]] 1814 name = "fsrs" 1815 version = "0.1.0" 1816 + source = "git+https://github.com/open-spaced-repetition/fsrs-rs.git?rev=f45f46bdba6625f03677eaeb039dd8a6ffcad688#f45f46bdba6625f03677eaeb039dd8a6ffcad688" 1817 dependencies = [ 1818 "burn", 1819 + "itertools 0.12.0", 1820 "log", 1821 "ndarray", 1822 "ndarray-rand", ··· 1837 "camino", 1838 "clap", 1839 "fluent-syntax", 1840 + "itertools 0.12.0", 1841 "lazy_static", 1842 "regex", 1843 "serde_json", ··· 1857 1858 [[package]] 1859 name = "futures" 1860 + version = "0.3.29" 1861 source = "registry+https://github.com/rust-lang/crates.io-index" 1862 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1863 dependencies = [ 1864 "futures-channel", 1865 "futures-core", ··· 1872 1873 [[package]] 1874 name = "futures-channel" 1875 + version = "0.3.29" 1876 source = "registry+https://github.com/rust-lang/crates.io-index" 1877 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1878 dependencies = [ 1879 "futures-core", 1880 "futures-sink", ··· 1882 1883 [[package]] 1884 name = "futures-core" 1885 + version = "0.3.29" 1886 source = "registry+https://github.com/rust-lang/crates.io-index" 1887 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1888 1889 [[package]] 1890 name = "futures-executor" 1891 + version = "0.3.29" 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1894 dependencies = [ 1895 "futures-core", 1896 "futures-task", ··· 1898 ] 1899 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]] 1912 name = "futures-io" 1913 + version = "0.3.29" 1914 source = "registry+https://github.com/rust-lang/crates.io-index" 1915 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1916 1917 [[package]] 1918 name = "futures-lite" ··· 1931 1932 [[package]] 1933 name = "futures-macro" 1934 + version = "0.3.29" 1935 source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1937 dependencies = [ 1938 "proc-macro2", 1939 "quote", 1940 + "syn 2.0.39", 1941 ] 1942 1943 [[package]] 1944 name = "futures-sink" 1945 + version = "0.3.29" 1946 source = "registry+https://github.com/rust-lang/crates.io-index" 1947 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1948 1949 [[package]] 1950 name = "futures-task" 1951 + version = "0.3.29" 1952 source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1954 1955 [[package]] 1956 name = "futures-timer" ··· 1960 1961 [[package]] 1962 name = "futures-util" 1963 + version = "0.3.29" 1964 source = "registry+https://github.com/rust-lang/crates.io-index" 1965 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1966 dependencies = [ 1967 "futures-channel", 1968 "futures-core", ··· 1977 ] 1978 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]] 2097 name = "generic-array" 2098 version = "0.14.7" 2099 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2125 2126 [[package]] 2127 name = "getrandom" 2128 + version = "0.2.11" 2129 source = "registry+https://github.com/rust-lang/crates.io-index" 2130 + checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2131 dependencies = [ 2132 "cfg-if", 2133 "js-sys", ··· 2137 ] 2138 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]] 2150 name = "gimli" 2151 + version = "0.28.1" 2152 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 2217 2218 [[package]] 2219 name = "glob" ··· 2223 2224 [[package]] 2225 name = "globset" 2226 + version = "0.4.14" 2227 source = "registry+https://github.com/rust-lang/crates.io-index" 2228 + checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 2229 dependencies = [ 2230 "aho-corasick", 2231 "bstr", 2232 "log", 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", 2309 ] 2310 2311 [[package]] 2312 name = "h2" 2313 + version = "0.3.22" 2314 source = "registry+https://github.com/rust-lang/crates.io-index" 2315 + checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 2316 dependencies = [ 2317 "bytes", 2318 "fnv", ··· 2320 "futures-sink", 2321 "futures-util", 2322 "http", 2323 + "indexmap", 2324 "slab", 2325 "tokio", 2326 "tokio-util", ··· 2339 source = "registry+https://github.com/rust-lang/crates.io-index" 2340 checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 2341 dependencies = [ 2342 + "bytemuck", 2343 "cfg-if", 2344 "crunchy", 2345 "num-traits", 2346 + "rand 0.8.5", 2347 + "rand_distr", 2348 "serde", 2349 ] 2350 2351 [[package]] 2352 name = "handlebars" 2353 + version = "4.5.0" 2354 source = "registry+https://github.com/rust-lang/crates.io-index" 2355 + checksum = "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225" 2356 dependencies = [ 2357 "log", 2358 "pest", ··· 2364 2365 [[package]] 2366 name = "hashbrown" 2367 + version = "0.13.2" 2368 source = "registry+https://github.com/rust-lang/crates.io-index" 2369 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2370 + dependencies = [ 2371 + "ahash", 2372 + ] 2373 2374 [[package]] 2375 name = "hashbrown" 2376 + version = "0.14.3" 2377 source = "registry+https://github.com/rust-lang/crates.io-index" 2378 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 2379 dependencies = [ 2380 "ahash", 2381 "allocator-api2", ··· 2388 source = "registry+https://github.com/rust-lang/crates.io-index" 2389 checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 2390 dependencies = [ 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", 2407 ] 2408 2409 [[package]] ··· 2449 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2450 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]] 2458 name = "hmac" 2459 version = "0.12.1" 2460 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2469 source = "registry+https://github.com/rust-lang/crates.io-index" 2470 checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2471 dependencies = [ 2472 + "windows-sys 0.48.0", 2473 ] 2474 2475 [[package]] ··· 2494 2495 [[package]] 2496 name = "http" 2497 + version = "0.2.11" 2498 source = "registry+https://github.com/rust-lang/crates.io-index" 2499 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2500 dependencies = [ 2501 "bytes", 2502 "fnv", ··· 2585 2586 [[package]] 2587 name = "hyper-rustls" 2588 + version = "0.24.2" 2589 source = "registry+https://github.com/rust-lang/crates.io-index" 2590 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2591 dependencies = [ 2592 "futures-util", 2593 "http", ··· 2621 "iana-time-zone-haiku", 2622 "js-sys", 2623 "wasm-bindgen", 2624 + "windows-core 0.51.1", 2625 ] 2626 2627 [[package]] ··· 2644 2645 [[package]] 2646 name = "idna" 2647 + version = "0.5.0" 2648 source = "registry+https://github.com/rust-lang/crates.io-index" 2649 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2650 dependencies = [ 2651 "unicode-bidi", 2652 "unicode-normalization", ··· 2654 2655 [[package]] 2656 name = "ignore" 2657 + version = "0.4.21" 2658 source = "registry+https://github.com/rust-lang/crates.io-index" 2659 + checksum = "747ad1b4ae841a78e8aba0d63adbfbeaea26b517b63705d47856b73015d27060" 2660 dependencies = [ 2661 + "crossbeam-deque", 2662 "globset", 2663 "log", 2664 "memchr", 2665 + "regex-automata 0.4.3", 2666 "same-file", 2667 "walkdir", 2668 "winapi-util", 2669 ] 2670 2671 [[package]] 2672 + name = "image" 2673 + version = "0.24.7" 2674 source = "registry+https://github.com/rust-lang/crates.io-index" 2675 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2676 dependencies = [ 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", 2688 ] 2689 2690 [[package]] 2691 name = "indexmap" 2692 + version = "2.1.0" 2693 source = "registry+https://github.com/rust-lang/crates.io-index" 2694 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2695 dependencies = [ 2696 "equivalent", 2697 + "hashbrown 0.14.3", 2698 ] 2699 2700 [[package]] ··· 2787 dependencies = [ 2788 "hermit-abi", 2789 "rustix", 2790 + "windows-sys 0.48.0", 2791 ] 2792 2793 [[package]] ··· 2809 ] 2810 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]] 2821 name = "itoa" 2822 version = "1.0.9" 2823 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2833 ] 2834 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]] 2845 name = "js-sys" 2846 + version = "0.3.66" 2847 source = "registry+https://github.com/rust-lang/crates.io-index" 2848 + checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 2849 dependencies = [ 2850 "wasm-bindgen", 2851 ] ··· 2861 ] 2862 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]] 2881 name = "kqueue" 2882 version = "1.0.8" 2883 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2904 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2905 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]] 2913 name = "libc" 2914 + version = "0.2.150" 2915 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 2937 2938 [[package]] 2939 name = "libm" ··· 2942 checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2943 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]] 2956 name = "libsqlite3-sys" 2957 + version = "0.27.0" 2958 source = "registry+https://github.com/rust-lang/crates.io-index" 2959 + checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 2960 dependencies = [ 2961 "cc", 2962 "pkg-config", ··· 3002 dependencies = [ 3003 "anki", 3004 "futures", 3005 + "itertools 0.12.0", 3006 "lazy_static", 3007 "linkcheck", 3008 "regex", ··· 3022 3023 [[package]] 3024 name = "linux-raw-sys" 3025 + version = "0.4.12" 3026 source = "registry+https://github.com/rust-lang/crates.io-index" 3027 + checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 3028 3029 [[package]] 3030 name = "lock_api" ··· 3076 ] 3077 3078 [[package]] 3079 + name = "makeexe" 3080 version = "0.0.0" 3081 dependencies = [ 3082 "anyhow", ··· 3087 ] 3088 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]] 3099 name = "maplit" 3100 version = "1.0.2" 3101 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3163 3164 [[package]] 3165 name = "mdbook" 3166 + version = "0.4.36" 3167 source = "registry+https://github.com/rust-lang/crates.io-index" 3168 + checksum = "80992cb0e05f22cc052c99f8e883f1593b891014b96a8b4637fd274d7030c85e" 3169 dependencies = [ 3170 "ammonia", 3171 "anyhow", ··· 3183 "notify-debouncer-mini", 3184 "once_cell", 3185 "opener", 3186 + "pathdiff", 3187 "pulldown-cmark 0.9.3", 3188 "regex", 3189 "serde", ··· 3203 checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 3204 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]] 3216 name = "memoffset" 3217 version = "0.9.0" 3218 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3222 ] 3223 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]] 3240 name = "mime" 3241 version = "0.3.17" 3242 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3278 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 3279 dependencies = [ 3280 "adler", 3281 + "simd-adler32", 3282 ] 3283 3284 [[package]] ··· 3290 "libc", 3291 "log", 3292 "wasi 0.11.0+wasi-snapshot-preview1", 3293 + "windows-sys 0.48.0", 3294 ] 3295 3296 [[package]] ··· 3318 checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 3319 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]] 3350 name = "native-tls" 3351 version = "0.2.11" 3352 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3404 "camino", 3405 "dunce", 3406 "globset", 3407 + "itertools 0.12.0", 3408 "lazy_static", 3409 "maplit", 3410 "num_cpus", ··· 3434 source = "registry+https://github.com/rust-lang/crates.io-index" 3435 checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" 3436 dependencies = [ 3437 + "windows-sys 0.48.0", 3438 ] 3439 3440 [[package]] ··· 3453 "log", 3454 "mio", 3455 "walkdir", 3456 + "windows-sys 0.48.0", 3457 ] 3458 3459 [[package]] 3460 name = "notify-debouncer-mini" 3461 + version = "0.4.1" 3462 source = "registry+https://github.com/rust-lang/crates.io-index" 3463 + checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" 3464 dependencies = [ 3465 "crossbeam-channel", 3466 + "log", 3467 "notify", 3468 ] 3469 ··· 3483 source = "registry+https://github.com/rust-lang/crates.io-index" 3484 checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 3485 dependencies = [ 3486 + "bytemuck", 3487 "num-traits", 3488 ] 3489 ··· 3508 ] 3509 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]] 3522 name = "num-traits" 3523 version = "0.2.17" 3524 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3540 3541 [[package]] 3542 name = "num_enum" 3543 + version = "0.7.1" 3544 source = "registry+https://github.com/rust-lang/crates.io-index" 3545 + checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0" 3546 dependencies = [ 3547 "num_enum_derive", 3548 ] 3549 3550 [[package]] 3551 name = "num_enum_derive" 3552 + version = "0.7.1" 3553 source = "registry+https://github.com/rust-lang/crates.io-index" 3554 + checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e" 3555 dependencies = [ 3556 "proc-macro-crate", 3557 "proc-macro2", 3558 "quote", 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", 3579 ] 3580 3581 [[package]] ··· 3612 3613 [[package]] 3614 name = "openssl" 3615 + version = "0.10.61" 3616 source = "registry+https://github.com/rust-lang/crates.io-index" 3617 + checksum = "6b8419dc8cc6d866deb801274bba2e6f8f6108c1bb7fcc10ee5ab864931dbb45" 3618 dependencies = [ 3619 "bitflags 2.4.1", 3620 "cfg-if", 3621 + "foreign-types 0.3.2", 3622 "libc", 3623 "once_cell", 3624 "openssl-macros", ··· 3633 dependencies = [ 3634 "proc-macro2", 3635 "quote", 3636 + "syn 2.0.39", 3637 ] 3638 3639 [[package]] ··· 3644 3645 [[package]] 3646 name = "openssl-sys" 3647 + version = "0.9.97" 3648 source = "registry+https://github.com/rust-lang/crates.io-index" 3649 + checksum = "c3eaad34cdd97d81de97964fc7f29e2d104f483840d906ef56daa1912338460b" 3650 dependencies = [ 3651 "cc", 3652 "libc", ··· 3667 checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 3668 dependencies = [ 3669 "libc", 3670 + "windows-sys 0.48.0", 3671 ] 3672 3673 [[package]] ··· 3685 "cbc", 3686 "cipher", 3687 "des", 3688 + "getrandom 0.2.11", 3689 "hmac", 3690 "lazy_static", 3691 "rc2", ··· 3717 dependencies = [ 3718 "cfg-if", 3719 "libc", 3720 + "redox_syscall", 3721 "smallvec", 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", 3734 ] 3735 3736 [[package]] ··· 3740 checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 3741 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]] 3761 name = "pem" 3762 version = "1.1.1" 3763 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3768 3769 [[package]] 3770 name = "percent-encoding" 3771 + version = "2.3.1" 3772 source = "registry+https://github.com/rust-lang/crates.io-index" 3773 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3774 3775 [[package]] 3776 name = "percent-encoding-iri" ··· 3808 "pest_meta", 3809 "proc-macro2", 3810 "quote", 3811 + "syn 2.0.39", 3812 ] 3813 3814 [[package]] ··· 3829 checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 3830 dependencies = [ 3831 "fixedbitset", 3832 + "indexmap", 3833 ] 3834 3835 [[package]] ··· 3891 "phf_shared 0.11.2", 3892 "proc-macro2", 3893 "quote", 3894 + "syn 2.0.39", 3895 ] 3896 3897 [[package]] ··· 3929 dependencies = [ 3930 "proc-macro2", 3931 "quote", 3932 + "syn 2.0.39", 3933 ] 3934 3935 [[package]] ··· 3952 3953 [[package]] 3954 name = "plist" 3955 + version = "1.6.0" 3956 source = "registry+https://github.com/rust-lang/crates.io-index" 3957 + checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 3958 dependencies = [ 3959 "base64 0.21.5", 3960 + "indexmap", 3961 "line-wrap", 3962 "quick-xml", 3963 "serde", ··· 3991 dependencies = [ 3992 "plotters-backend", 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" 4013 4014 [[package]] 4015 name = "powerfmt" ··· 4030 checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 4031 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]] 4039 name = "prettyplease" 4040 version = "0.2.15" 4041 source = "registry+https://github.com/rust-lang/crates.io-index" 4042 checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" 4043 dependencies = [ 4044 "proc-macro2", 4045 + "syn 2.0.39", 4046 ] 4047 4048 [[package]] 4049 name = "proc-macro-crate" 4050 + version = "2.0.0" 4051 source = "registry+https://github.com/rust-lang/crates.io-index" 4052 + checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 4053 dependencies = [ 4054 "toml_edit", 4055 ] 4056 4057 [[package]] 4058 name = "proc-macro2" 4059 + version = "1.0.70" 4060 source = "registry+https://github.com/rust-lang/crates.io-index" 4061 + checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 4062 dependencies = [ 4063 "unicode-ident", 4064 ] 4065 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]] 4073 name = "prost" 4074 + version = "0.12.3" 4075 source = "registry+https://github.com/rust-lang/crates.io-index" 4076 + checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a" 4077 dependencies = [ 4078 "bytes", 4079 "prost-derive", ··· 4081 4082 [[package]] 4083 name = "prost-build" 4084 + version = "0.12.3" 4085 source = "registry+https://github.com/rust-lang/crates.io-index" 4086 + checksum = "c55e02e35260070b6f716a2423c2ff1c3bb1642ddca6f99e1f26d06268a0e2d2" 4087 dependencies = [ 4088 "bytes", 4089 "heck", 4090 + "itertools 0.11.0", 4091 "log", 4092 "multimap", 4093 "once_cell", ··· 4096 "prost", 4097 "prost-types", 4098 "regex", 4099 + "syn 2.0.39", 4100 "tempfile", 4101 "which 4.4.2", 4102 ] 4103 4104 [[package]] 4105 name = "prost-derive" 4106 + version = "0.12.3" 4107 source = "registry+https://github.com/rust-lang/crates.io-index" 4108 + checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e" 4109 dependencies = [ 4110 "anyhow", 4111 + "itertools 0.11.0", 4112 "proc-macro2", 4113 "quote", 4114 + "syn 2.0.39", 4115 ] 4116 4117 [[package]] ··· 4127 4128 [[package]] 4129 name = "prost-types" 4130 + version = "0.12.3" 4131 source = "registry+https://github.com/rust-lang/crates.io-index" 4132 + checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e" 4133 dependencies = [ 4134 "prost", 4135 ] ··· 4156 "getopts", 4157 "memchr", 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", 4171 ] 4172 4173 [[package]] ··· 4216 "proc-macro2", 4217 "pyo3-macros-backend", 4218 "quote", 4219 + "syn 2.0.39", 4220 ] 4221 4222 [[package]] ··· 4228 "heck", 4229 "proc-macro2", 4230 "quote", 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", 4241 ] 4242 4243 [[package]] 4244 name = "quick-xml" 4245 + version = "0.31.0" 4246 source = "registry+https://github.com/rust-lang/crates.io-index" 4247 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 4248 dependencies = [ 4249 "memchr", 4250 ] ··· 4259 ] 4260 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]] 4284 name = "rand" 4285 version = "0.7.3" 4286 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4339 source = "registry+https://github.com/rust-lang/crates.io-index" 4340 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4341 dependencies = [ 4342 + "getrandom 0.2.11", 4343 ] 4344 4345 [[package]] ··· 4362 ] 4363 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]] 4386 name = "rawpointer" 4387 version = "0.2.1" 4388 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4430 ] 4431 4432 [[package]] 4433 + name = "reborrow" 4434 + version = "0.5.5" 4435 source = "registry+https://github.com/rust-lang/crates.io-index" 4436 + checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430" 4437 4438 [[package]] 4439 name = "redox_syscall" ··· 4446 4447 [[package]] 4448 name = "redox_users" 4449 + version = "0.4.4" 4450 source = "registry+https://github.com/rust-lang/crates.io-index" 4451 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 4452 dependencies = [ 4453 + "getrandom 0.2.11", 4454 + "libredox", 4455 "thiserror", 4456 ] 4457 ··· 4498 version = "0.8.2" 4499 source = "registry+https://github.com/rust-lang/crates.io-index" 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" 4507 4508 [[package]] 4509 name = "reqwest" ··· 4576 4577 [[package]] 4578 name = "ring" 4579 + version = "0.17.7" 4580 source = "registry+https://github.com/rust-lang/crates.io-index" 4581 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 4582 dependencies = [ 4583 "cc", 4584 + "getrandom 0.2.11", 4585 "libc", 4586 "spin 0.9.8", 4587 "untrusted 0.9.0", 4588 + "windows-sys 0.48.0", 4589 ] 4590 4591 [[package]] ··· 4637 "which 5.0.0", 4638 "xz2", 4639 "zip", 4640 + "zstd 0.13.0", 4641 ] 4642 4643 [[package]] 4644 name = "rusqlite" 4645 + version = "0.30.0" 4646 source = "registry+https://github.com/rust-lang/crates.io-index" 4647 + checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d" 4648 dependencies = [ 4649 "bitflags 2.4.1", 4650 "fallible-iterator", ··· 4668 4669 [[package]] 4670 name = "rustix" 4671 + version = "0.38.26" 4672 source = "registry+https://github.com/rust-lang/crates.io-index" 4673 + checksum = "9470c4bf8246c8daf25f9598dca807fb6510347b1e1cfa55749113850c79d88a" 4674 dependencies = [ 4675 "bitflags 2.4.1", 4676 "errno", 4677 "libc", 4678 "linux-raw-sys", 4679 + "windows-sys 0.52.0", 4680 ] 4681 4682 [[package]] 4683 name = "rustls" 4684 + version = "0.21.9" 4685 source = "registry+https://github.com/rust-lang/crates.io-index" 4686 + checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" 4687 dependencies = [ 4688 "log", 4689 + "ring 0.17.7", 4690 "rustls-webpki", 4691 "sct", 4692 ] ··· 4705 4706 [[package]] 4707 name = "rustls-pemfile" 4708 + version = "1.0.4" 4709 source = "registry+https://github.com/rust-lang/crates.io-index" 4710 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 4711 dependencies = [ 4712 "base64 0.21.5", 4713 ] ··· 4718 source = "registry+https://github.com/rust-lang/crates.io-index" 4719 checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 4720 dependencies = [ 4721 + "ring 0.17.7", 4722 "untrusted 0.9.0", 4723 ] 4724 ··· 4739 version = "0.3.3" 4740 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 4752 4753 [[package]] 4754 name = "same-file" ··· 4775 source = "registry+https://github.com/rust-lang/crates.io-index" 4776 checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 4777 dependencies = [ 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", 4788 ] 4789 4790 [[package]] ··· 4805 source = "registry+https://github.com/rust-lang/crates.io-index" 4806 checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 4807 dependencies = [ 4808 + "ring 0.17.7", 4809 "untrusted 0.9.0", 4810 ] 4811 ··· 4834 4835 [[package]] 4836 name = "self_cell" 4837 + version = "0.10.3" 4838 source = "registry+https://github.com/rust-lang/crates.io-index" 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" 4849 4850 [[package]] 4851 name = "semver" ··· 4854 checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 4855 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]] 4863 name = "serde" 4864 + version = "1.0.193" 4865 source = "registry+https://github.com/rust-lang/crates.io-index" 4866 + checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 4867 dependencies = [ 4868 "serde_derive", 4869 ] 4870 4871 [[package]] 4872 name = "serde-aux" 4873 + version = "4.3.1" 4874 source = "registry+https://github.com/rust-lang/crates.io-index" 4875 + checksum = "184eba62ebddb71658697c8b08822edee89970bf318c5362189f0de27f85b498" 4876 dependencies = [ 4877 "chrono", 4878 "serde", ··· 4881 4882 [[package]] 4883 name = "serde_derive" 4884 + version = "1.0.193" 4885 source = "registry+https://github.com/rust-lang/crates.io-index" 4886 + checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 4887 dependencies = [ 4888 "proc-macro2", 4889 "quote", 4890 + "syn 2.0.39", 4891 ] 4892 4893 [[package]] 4894 name = "serde_json" 4895 + version = "1.0.108" 4896 source = "registry+https://github.com/rust-lang/crates.io-index" 4897 + checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 4898 dependencies = [ 4899 "itoa", 4900 "ryu", ··· 4924 4925 [[package]] 4926 name = "serde_repr" 4927 + version = "0.1.17" 4928 source = "registry+https://github.com/rust-lang/crates.io-index" 4929 + checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 4930 dependencies = [ 4931 "proc-macro2", 4932 "quote", 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", 4944 ] 4945 4946 [[package]] ··· 5024 checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 5025 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]] 5037 name = "signal-hook-registry" 5038 version = "1.4.1" 5039 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5043 ] 5044 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]] 5052 name = "simple-file-manifest" 5053 version = "0.11.0" 5054 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5070 ] 5071 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]] 5082 name = "smallvec" 5083 + version = "1.11.2" 5084 source = "registry+https://github.com/rust-lang/crates.io-index" 5085 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 5086 5087 [[package]] 5088 name = "snafu" ··· 5130 checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 5131 dependencies = [ 5132 "libc", 5133 + "windows-sys 0.48.0", 5134 ] 5135 5136 [[package]] ··· 5149 ] 5150 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]] 5174 name = "string_cache" 5175 version = "0.8.7" 5176 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5221 "proc-macro2", 5222 "quote", 5223 "rustversion", 5224 + "syn 2.0.39", 5225 ] 5226 5227 [[package]] ··· 5243 5244 [[package]] 5245 name = "syn" 5246 + version = "2.0.39" 5247 source = "registry+https://github.com/rust-lang/crates.io-index" 5248 + checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 5249 dependencies = [ 5250 "proc-macro2", 5251 "quote", ··· 5259 checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 5260 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]] 5274 name = "system-configuration" 5275 version = "0.5.1" 5276 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5309 checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" 5310 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]] 5329 name = "tempfile" 5330 + version = "3.8.1" 5331 source = "registry+https://github.com/rust-lang/crates.io-index" 5332 + checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 5333 dependencies = [ 5334 "cfg-if", 5335 "fastrand 2.0.1", 5336 + "redox_syscall", 5337 "rustix", 5338 + "windows-sys 0.48.0", 5339 ] 5340 5341 [[package]] ··· 5351 5352 [[package]] 5353 name = "termcolor" 5354 + version = "1.4.0" 5355 source = "registry+https://github.com/rust-lang/crates.io-index" 5356 + checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 5357 dependencies = [ 5358 "winapi-util", 5359 ] ··· 5365 checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 5366 dependencies = [ 5367 "rustix", 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", 5380 ] 5381 5382 [[package]] ··· 5396 dependencies = [ 5397 "proc-macro2", 5398 "quote", 5399 + "syn 2.0.39", 5400 ] 5401 5402 [[package]] ··· 5419 ] 5420 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]] 5433 name = "time" 5434 version = "0.3.30" 5435 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5460 5461 [[package]] 5462 name = "tinystr" 5463 + version = "0.7.5" 5464 source = "registry+https://github.com/rust-lang/crates.io-index" 5465 + checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece" 5466 dependencies = [ 5467 "displaydoc", 5468 ] ··· 5494 5495 [[package]] 5496 name = "tokio" 5497 + version = "1.34.0" 5498 source = "registry+https://github.com/rust-lang/crates.io-index" 5499 + checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 5500 dependencies = [ 5501 "backtrace", 5502 "bytes", ··· 5507 "signal-hook-registry", 5508 "socket2 0.5.5", 5509 "tokio-macros", 5510 + "windows-sys 0.48.0", 5511 ] 5512 5513 [[package]] 5514 name = "tokio-macros" 5515 + version = "2.2.0" 5516 source = "registry+https://github.com/rust-lang/crates.io-index" 5517 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 5518 dependencies = [ 5519 "proc-macro2", 5520 "quote", 5521 + "syn 2.0.39", 5522 ] 5523 5524 [[package]] ··· 5578 5579 [[package]] 5580 name = "tokio-util" 5581 + version = "0.7.10" 5582 source = "registry+https://github.com/rust-lang/crates.io-index" 5583 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 5584 dependencies = [ 5585 "bytes", 5586 "futures-core", ··· 5607 5608 [[package]] 5609 name = "toml_edit" 5610 + version = "0.20.7" 5611 source = "registry+https://github.com/rust-lang/crates.io-index" 5612 + checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 5613 dependencies = [ 5614 + "indexmap", 5615 "toml_datetime", 5616 "winnow", 5617 ] ··· 5623 checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d" 5624 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]] 5641 name = "tower" 5642 version = "0.4.13" 5643 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5698 5699 [[package]] 5700 name = "tracing-appender" 5701 + version = "0.2.3" 5702 source = "registry+https://github.com/rust-lang/crates.io-index" 5703 + checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" 5704 dependencies = [ 5705 "crossbeam-channel", 5706 + "thiserror", 5707 "time", 5708 "tracing-subscriber", 5709 ] ··· 5716 dependencies = [ 5717 "proc-macro2", 5718 "quote", 5719 + "syn 2.0.39", 5720 ] 5721 5722 [[package]] ··· 5731 5732 [[package]] 5733 name = "tracing-log" 5734 + version = "0.2.0" 5735 source = "registry+https://github.com/rust-lang/crates.io-index" 5736 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 5737 dependencies = [ 5738 "log", 5739 "once_cell", ··· 5742 5743 [[package]] 5744 name = "tracing-subscriber" 5745 + version = "0.3.18" 5746 source = "registry+https://github.com/rust-lang/crates.io-index" 5747 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 5748 dependencies = [ 5749 "matchers", 5750 "nu-ansi-term", ··· 5879 5880 [[package]] 5881 name = "unic-langid" 5882 + version = "0.9.3" 5883 source = "registry+https://github.com/rust-lang/crates.io-index" 5884 + checksum = "887622f8e7b723780c5e64b04dcc0c9b8f426ada7cca6790cd3ea3bf0f08037a" 5885 dependencies = [ 5886 "unic-langid-impl", 5887 "unic-langid-macros", ··· 5889 5890 [[package]] 5891 name = "unic-langid-impl" 5892 + version = "0.9.3" 5893 source = "registry+https://github.com/rust-lang/crates.io-index" 5894 + checksum = "5adeb847e35eed4efbffd9fb2e4d078b91ece56e4d6a3c0d2df55b3a1dac07d5" 5895 dependencies = [ 5896 "tinystr", 5897 ] 5898 5899 [[package]] 5900 name = "unic-langid-macros" 5901 + version = "0.9.3" 5902 source = "registry+https://github.com/rust-lang/crates.io-index" 5903 + checksum = "d4d4589552627b69df7135a17919dc0b62f320be06988b77fcfc69bc89425600" 5904 dependencies = [ 5905 "tinystr", 5906 "unic-langid-impl", 5907 "unic-langid-macros-impl", ··· 5909 5910 [[package]] 5911 name = "unic-langid-macros-impl" 5912 + version = "0.9.3" 5913 source = "registry+https://github.com/rust-lang/crates.io-index" 5914 + checksum = "fb865515362dca12581b9a4b731acdc9015f4b81e1be9b21fa6d9dbbd2598e5e" 5915 dependencies = [ 5916 + "find-crate", 5917 + "proc-macro2", 5918 "quote", 5919 + "syn 2.0.39", 5920 "unic-langid-impl", 5921 ] 5922 ··· 5984 checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 5985 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]] 5993 name = "unindent" 5994 version = "0.2.3" 5995 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6008 checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 6009 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]] 6029 name = "url" 6030 + version = "2.5.0" 6031 source = "registry+https://github.com/rust-lang/crates.io-index" 6032 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 6033 dependencies = [ 6034 "form_urlencoded", 6035 "idna", ··· 6061 6062 [[package]] 6063 name = "uuid" 6064 + version = "1.6.1" 6065 source = "registry+https://github.com/rust-lang/crates.io-index" 6066 + checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 6067 + dependencies = [ 6068 + "getrandom 0.2.11", 6069 + "rand 0.8.5", 6070 + ] 6071 6072 [[package]] 6073 name = "valuable" ··· 6156 6157 [[package]] 6158 name = "wasm-bindgen" 6159 + version = "0.2.89" 6160 source = "registry+https://github.com/rust-lang/crates.io-index" 6161 + checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 6162 dependencies = [ 6163 "cfg-if", 6164 "wasm-bindgen-macro", ··· 6166 6167 [[package]] 6168 name = "wasm-bindgen-backend" 6169 + version = "0.2.89" 6170 source = "registry+https://github.com/rust-lang/crates.io-index" 6171 + checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 6172 dependencies = [ 6173 "bumpalo", 6174 "log", 6175 "once_cell", 6176 "proc-macro2", 6177 "quote", 6178 + "syn 2.0.39", 6179 "wasm-bindgen-shared", 6180 ] 6181 6182 [[package]] 6183 name = "wasm-bindgen-futures" 6184 + version = "0.4.39" 6185 source = "registry+https://github.com/rust-lang/crates.io-index" 6186 + checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 6187 dependencies = [ 6188 "cfg-if", 6189 "js-sys", ··· 6193 6194 [[package]] 6195 name = "wasm-bindgen-macro" 6196 + version = "0.2.89" 6197 source = "registry+https://github.com/rust-lang/crates.io-index" 6198 + checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 6199 dependencies = [ 6200 "quote", 6201 "wasm-bindgen-macro-support", ··· 6203 6204 [[package]] 6205 name = "wasm-bindgen-macro-support" 6206 + version = "0.2.89" 6207 source = "registry+https://github.com/rust-lang/crates.io-index" 6208 + checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 6209 dependencies = [ 6210 "proc-macro2", 6211 "quote", 6212 + "syn 2.0.39", 6213 "wasm-bindgen-backend", 6214 "wasm-bindgen-shared", 6215 ] 6216 6217 [[package]] 6218 name = "wasm-bindgen-shared" 6219 + version = "0.2.89" 6220 source = "registry+https://github.com/rust-lang/crates.io-index" 6221 + checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 6222 6223 [[package]] 6224 name = "wasm-streams" ··· 6245 6246 [[package]] 6247 name = "webpki-roots" 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" 6352 source = "registry+https://github.com/rust-lang/crates.io-index" 6353 + checksum = "0d5ed5f0edf0de351fe311c53304986315ce866f394a2e6df0c4b3c70774bcdd" 6354 + dependencies = [ 6355 + "bitflags 2.4.1", 6356 + "js-sys", 6357 + "web-sys", 6358 + ] 6359 6360 [[package]] 6361 name = "which" ··· 6379 "home", 6380 "once_cell", 6381 "rustix", 6382 + "windows-sys 0.48.0", 6383 ] 6384 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]] 6392 name = "winapi" 6393 version = "0.3.9" 6394 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6425 source = "registry+https://github.com/rust-lang/crates.io-index" 6426 checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 6427 dependencies = [ 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", 6440 ] 6441 6442 [[package]] ··· 6445 source = "registry+https://github.com/rust-lang/crates.io-index" 6446 checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 6447 dependencies = [ 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", 6458 ] 6459 6460 [[package]] ··· 6463 source = "registry+https://github.com/rust-lang/crates.io-index" 6464 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 6465 dependencies = [ 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", 6476 ] 6477 6478 [[package]] ··· 6481 source = "registry+https://github.com/rust-lang/crates.io-index" 6482 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 6483 dependencies = [ 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", 6506 ] 6507 6508 [[package]] ··· 6512 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 6513 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]] 6521 name = "windows_aarch64_msvc" 6522 version = "0.48.5" 6523 source = "registry+https://github.com/rust-lang/crates.io-index" 6524 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 6525 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]] 6533 name = "windows_i686_gnu" 6534 version = "0.48.5" 6535 source = "registry+https://github.com/rust-lang/crates.io-index" 6536 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 6537 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]] 6545 name = "windows_i686_msvc" 6546 version = "0.48.5" 6547 source = "registry+https://github.com/rust-lang/crates.io-index" 6548 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 6549 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]] 6557 name = "windows_x86_64_gnu" 6558 version = "0.48.5" 6559 source = "registry+https://github.com/rust-lang/crates.io-index" 6560 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 6561 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]] 6569 name = "windows_x86_64_gnullvm" 6570 version = "0.48.5" 6571 source = "registry+https://github.com/rust-lang/crates.io-index" 6572 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 6573 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]] 6581 name = "windows_x86_64_msvc" 6582 version = "0.48.5" 6583 source = "registry+https://github.com/rust-lang/crates.io-index" 6584 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 6585 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]] 6593 name = "winnow" 6594 + version = "0.5.25" 6595 source = "registry+https://github.com/rust-lang/crates.io-index" 6596 + checksum = "b7e87b8dfbe3baffbe687eef2e164e32286eff31a5ee16463ce03d991643ec94" 6597 dependencies = [ 6598 "memchr", 6599 ] ··· 6615 checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 6616 dependencies = [ 6617 "cfg-if", 6618 + "windows-sys 0.48.0", 6619 ] 6620 6621 [[package]] 6622 name = "wiremock" 6623 + version = "0.5.22" 6624 source = "registry+https://github.com/rust-lang/crates.io-index" 6625 + checksum = "13a3a53eaf34f390dd30d7b1b078287dd05df2aa2e21a589ccb80f5c7253c2e9" 6626 dependencies = [ 6627 "assert-json-diff", 6628 "async-trait", ··· 6650 ] 6651 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]] 6659 name = "xml5ever" 6660 version = "0.17.0" 6661 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6685 ] 6686 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]] 6712 name = "zerocopy" 6713 + version = "0.7.31" 6714 source = "registry+https://github.com/rust-lang/crates.io-index" 6715 + checksum = "1c4061bedbb353041c12f413700357bec76df2c7e2ca8e4df8bac24c6bf68e3d" 6716 dependencies = [ 6717 "zerocopy-derive", 6718 ] 6719 6720 [[package]] 6721 name = "zerocopy-derive" 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" 6743 source = "registry+https://github.com/rust-lang/crates.io-index" 6744 + checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3" 6745 dependencies = [ 6746 "proc-macro2", 6747 "quote", 6748 + "syn 2.0.39", 6749 + "synstructure", 6750 ] 6751 6752 [[package]] ··· 6755 source = "registry+https://github.com/rust-lang/crates.io-index" 6756 checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 6757 dependencies = [ 6758 + "aes", 6759 "byteorder", 6760 + "bzip2", 6761 + "constant_time_eq 0.1.5", 6762 "crc32fast", 6763 "crossbeam-utils", 6764 "flate2", 6765 + "hmac", 6766 + "pbkdf2", 6767 + "sha1", 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", 6779 ] 6780 6781 [[package]] ··· 6784 source = "registry+https://github.com/rust-lang/crates.io-index" 6785 checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 6786 dependencies = [ 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", 6798 ] 6799 6800 [[package]] ··· 6815 "cc", 6816 "pkg-config", 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 29 let 30 pname = "anki"; 31 - version = "23.10.1"; 32 - rev = "fac9e0ee1436ba5ac3366c72dd9394a6e692b1cf"; 33 34 src = fetchFromGitHub { 35 owner = "ankitects"; 36 repo = "anki"; 37 rev = version; 38 - hash = "sha256-leGdamjCehffv2ByL7JWdaUhxRA4ZEPRKxBphUVzfRw="; 39 fetchSubmodules = true; 40 }; 41 42 cargoLock = { 43 lockFile = ./Cargo.lock; 44 outputHashes = { 45 - "fsrs-0.1.0" = "sha256-bnLmJk2aaWBdgdsiasRrDG4NiTDMCDCXotCSoc0ldlk="; 46 "linkcheck-0.4.1" = "sha256-S93J1cDzMlzDjcvz/WABmv8CEC6x78E+f7nzhsN7NkE="; 47 "percent-encoding-iri-2.2.0" = "sha256-kCBeS1PNExyJd4jWfDfctxq6iTdAq69jtxFQgCCQ8kQ="; 48 }; ··· 51 52 yarnOfflineCache = fetchYarnDeps { 53 yarnLock = "${src}/yarn.lock"; 54 - hash = "sha256-ckpKxALSpZAu5xyBOYzMcNDQDfCMaYAtSGONHTCBhw4="; 55 }; 56 57 anki-build-python = python3.withPackages (ps: with ps; [
··· 28 29 let 30 pname = "anki"; 31 + version = "23.12"; 32 + rev = "55ef11af84151b397f267a2f37d537aad5f1076d"; 33 34 src = fetchFromGitHub { 35 owner = "ankitects"; 36 repo = "anki"; 37 rev = version; 38 + hash = "sha256-KkB0tNjW08XIdpmW2mzwLqhn5DHoPV0AM0ciZOxSKEs="; 39 fetchSubmodules = true; 40 }; 41 42 cargoLock = { 43 lockFile = ./Cargo.lock; 44 outputHashes = { 45 + "fsrs-0.1.0" = "sha256-RIT7mbesrju70S4fPNy1N6+pSr78mcenQ6ujPtu4UbE="; 46 "linkcheck-0.4.1" = "sha256-S93J1cDzMlzDjcvz/WABmv8CEC6x78E+f7nzhsN7NkE="; 47 "percent-encoding-iri-2.2.0" = "sha256-kCBeS1PNExyJd4jWfDfctxq6iTdAq69jtxFQgCCQ8kQ="; 48 }; ··· 51 52 yarnOfflineCache = fetchYarnDeps { 53 yarnLock = "${src}/yarn.lock"; 54 + hash = "sha256-tOl+gLBE6SNPQvVWT/N7RKFaaP9SnpCBJf5dq2wCPuM="; 55 }; 56 57 anki-build-python = python3.withPackages (ps: with ps; [
+2 -2
pkgs/games/doom-ports/doomretro/default.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "doomretro"; 14 - version = "5.1.1"; 15 16 src = fetchFromGitHub { 17 owner = "bradharding"; 18 repo = "doomretro"; 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-OxnsjY+Czo8nWLSBwPd1HlggPbkogC9l8CVuOyJ/vBo="; 21 }; 22 23 nativeBuildInputs = [
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "doomretro"; 14 + version = "5.1.3"; 15 16 src = fetchFromGitHub { 17 owner = "bradharding"; 18 repo = "doomretro"; 19 rev = "v${finalAttrs.version}"; 20 + hash = "sha256-hwjz9nzhasDIeFlmPIwBNhJjrNfZ8ksttx5A7WSomBQ="; 21 }; 22 23 nativeBuildInputs = [
+3 -3
pkgs/games/legendary-gl/default.nix
··· 9 10 buildPythonApplication rec { 11 pname = "legendary-gl"; # Name in pypi 12 - version = "unstable-2023-10-14"; 13 14 src = fetchFromGitHub { 15 owner = "derrod"; 16 repo = "legendary"; 17 - rev = "450784283dd49152dda6322db2fb2ef33e7c382e"; 18 - sha256 = "sha256-iwIaxD35tkOX6NX1SVNmN2OQACwaX/C4xnfgT5YcUvg="; 19 }; 20 21 propagatedBuildInputs = [
··· 9 10 buildPythonApplication rec { 11 pname = "legendary-gl"; # Name in pypi 12 + version = "0.20.34"; 13 14 src = fetchFromGitHub { 15 owner = "derrod"; 16 repo = "legendary"; 17 + rev = "56d439ed2d3d9f34e2b08fa23e627c23a487b8d6"; 18 + sha256 = "sha256-yCHeeEGw+9gtRMGyIhbStxJhmSM/1Fqly7HSRDkZILQ="; 19 }; 20 21 propagatedBuildInputs = [
+3 -3
pkgs/games/minesweep-rs/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "minesweep-rs"; 8 - version = "6.0.41"; 9 10 src = fetchFromGitHub { 11 owner = "cpcloud"; 12 repo = pname; 13 rev = "v${version}"; 14 - hash = "sha256-j72ragB4cwFGX08Zlz8eF3j+3dp7JZ64oJ461JoLIrU="; 15 }; 16 17 - cargoHash = "sha256-QtAuUNhBIMz+j6h2DVLDxxWk8iMXy8G2pinS8115qr4="; 18 19 meta = with lib; { 20 description = "Sweep some mines for fun, and probably not for profit";
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "minesweep-rs"; 8 + version = "6.0.45"; 9 10 src = fetchFromGitHub { 11 owner = "cpcloud"; 12 repo = pname; 13 rev = "v${version}"; 14 + hash = "sha256-nD2lDfTT1lm2jN1ORq4PV3ER+RJJJU0ZTvSlvvskCxs="; 15 }; 16 17 + cargoHash = "sha256-skzi5lSQSQgBK9RDtiuUwFDEzyV4LYrV5+g+7dmgfMc="; 18 19 meta = with lib; { 20 description = "Sweep some mines for fun, and probably not for profit";
+4 -2
pkgs/games/rare/default.nix
··· 3 , buildPythonApplication 4 , qt5 5 , legendary-gl 6 , pypresence 7 , pyqt5 8 , python ··· 14 15 buildPythonApplication rec { 16 pname = "rare"; 17 - version = "1.10.7"; 18 pyproject = true; 19 20 src = fetchFromGitHub { 21 owner = "RareDevs"; 22 repo = "Rare"; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-rV6B9tCdwWK9yvEtVyLnv4Lo1WP5xW0f4JcsNZ7iBGI="; 25 }; 26 27 nativeBuildInputs = [ ··· 31 32 propagatedBuildInputs = [ 33 legendary-gl 34 pypresence 35 pyqt5 36 qtawesome
··· 3 , buildPythonApplication 4 , qt5 5 , legendary-gl 6 + , orjson 7 , pypresence 8 , pyqt5 9 , python ··· 15 16 buildPythonApplication rec { 17 pname = "rare"; 18 + version = "1.10.11"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "RareDevs"; 23 repo = "Rare"; 24 rev = "refs/tags/${version}"; 25 + hash = "sha256-2DtI5iaK4bYdGfIEhPy52WaEqh+IJMZ6qo/348lMnLY="; 26 }; 27 28 nativeBuildInputs = [ ··· 32 33 propagatedBuildInputs = [ 34 legendary-gl 35 + orjson 36 pypresence 37 pyqt5 38 qtawesome
+2 -2
pkgs/os-specific/bsd/netbsd/default.nix
··· 766 version = "9.2"; 767 sha256 = "0pd0dggl3w4bv5i5h0s1wrc8hr66n4hkv3zlklarwfdhc692fqal"; 768 buildInputs = with self; [ libterminfo ]; 769 - env.NIX_CFLAGS_COMPILE = toString [ 770 "-D__scanflike(a,b)=" 771 "-D__va_list=va_list" 772 "-D__warn_references(a,b)=" 773 - ] ++ lib.optional stdenv.isDarwin "-D__strong_alias(a,b)="; 774 propagatedBuildInputs = with self; compatIfNeeded; 775 MKDOC = "no"; # missing vfontedpr 776 makeFlags = defaultMakeFlags ++ [ "LIBDO.terminfo=${self.libterminfo}/lib" ];
··· 766 version = "9.2"; 767 sha256 = "0pd0dggl3w4bv5i5h0s1wrc8hr66n4hkv3zlklarwfdhc692fqal"; 768 buildInputs = with self; [ libterminfo ]; 769 + env.NIX_CFLAGS_COMPILE = toString ([ 770 "-D__scanflike(a,b)=" 771 "-D__va_list=va_list" 772 "-D__warn_references(a,b)=" 773 + ] ++ lib.optional stdenv.isDarwin "-D__strong_alias(a,b)="); 774 propagatedBuildInputs = with self; compatIfNeeded; 775 MKDOC = "no"; # missing vfontedpr 776 makeFlags = defaultMakeFlags ++ [ "LIBDO.terminfo=${self.libterminfo}/lib" ];
+2 -2
pkgs/servers/home-automation/evcc/default.nix
··· 16 17 buildGoModule rec { 18 pname = "evcc"; 19 - version = "0.123.1"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 - hash = "sha256-12xRdyBil5sTUqxmjw3af9bLdO+LTI+8qwnDQYYm9NA="; 26 }; 27 28 vendorHash = "sha256-rhGMN5v+JzNg1p2GptomDDtqS7M4EafROXXy185qtmU=";
··· 16 17 buildGoModule rec { 18 pname = "evcc"; 19 + version = "0.123.2"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 + hash = "sha256-iGt3j8q8dpQLUIHHnGHCgraPETk9GL9t/ygBZtPG7yM="; 26 }; 27 28 vendorHash = "sha256-rhGMN5v+JzNg1p2GptomDDtqS7M4EafROXXy185qtmU=";
+3 -3
pkgs/servers/homepage-dashboard/default.nix
··· 13 14 buildNpmPackage rec { 15 pname = "homepage-dashboard"; 16 - version = "0.8.3"; 17 18 src = fetchFromGitHub { 19 owner = "gethomepage"; 20 repo = "homepage"; 21 rev = "v${version}"; 22 - hash = "sha256-I1WoEt824qk7vfaDHD1zIXo4/QbihK5hoR3GbjxiO90="; 23 }; 24 25 - npmDepsHash = "sha256-tsAUPb7RFW7HSV1bS8ZBCL1xLEhvgvTZSDfS8DlcUgg="; 26 27 preBuild = '' 28 mkdir -p config
··· 13 14 buildNpmPackage rec { 15 pname = "homepage-dashboard"; 16 + version = "0.8.4"; 17 18 src = fetchFromGitHub { 19 owner = "gethomepage"; 20 repo = "homepage"; 21 rev = "v${version}"; 22 + hash = "sha256-WjyOpR8DcjlJJgUkWortc0ApgpusknTSeVQlSa5rCRQ="; 23 }; 24 25 + npmDepsHash = "sha256-RC2Y4XZqO+mLEKQxq+j2ukZYi/uu9XIjYadxek9P+SM="; 26 27 preBuild = '' 28 mkdir -p config
+3 -3
pkgs/servers/monitoring/mackerel-agent/default.nix
··· 2 3 buildGoModule rec { 4 pname = "mackerel-agent"; 5 - version = "0.78.2"; 6 7 src = fetchFromGitHub { 8 owner = "mackerelio"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-KjPfu09+N9JWdFX3NWhGm2TfAUq5tN2QU/zLMYlYUtg="; 12 }; 13 14 nativeBuildInputs = [ makeWrapper ]; 15 nativeCheckInputs = lib.optionals (!stdenv.isDarwin) [ nettools ]; 16 buildInputs = lib.optionals (!stdenv.isDarwin) [ iproute2 ]; 17 18 - vendorHash = "sha256-A3e6qd6yjKsNUaXiltbS9G4WEMd3F1FxaxqMMVuBCUI="; 19 20 subPackages = [ "." ]; 21
··· 2 3 buildGoModule rec { 4 pname = "mackerel-agent"; 5 + version = "0.78.3"; 6 7 src = fetchFromGitHub { 8 owner = "mackerelio"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-9PahaZlHtD4p3C8CvXF2ceNuSOqyApJaZWhFNffNlVA="; 12 }; 13 14 nativeBuildInputs = [ makeWrapper ]; 15 nativeCheckInputs = lib.optionals (!stdenv.isDarwin) [ nettools ]; 16 buildInputs = lib.optionals (!stdenv.isDarwin) [ iproute2 ]; 17 18 + vendorHash = "sha256-lcK1rofTKPpEu/tK8XpS9EhOA30R/8J3o57YlU1/+0k="; 19 20 subPackages = [ "." ]; 21
+2 -1
pkgs/servers/search/opensearch/default.nix
··· 41 --set JAVA_HOME "${jre_headless}" 42 43 wrapProgram $out/bin/opensearch-plugin --set JAVA_HOME "${jre_headless}" 44 - wrapProgram $out/bin/opensearch-cli --set JAVA_HOME "${jre_headless}" 45 46 runHook postInstall 47 '';
··· 41 --set JAVA_HOME "${jre_headless}" 42 43 wrapProgram $out/bin/opensearch-plugin --set JAVA_HOME "${jre_headless}" 44 + 45 + rm $out/bin/opensearch-cli 46 47 runHook postInstall 48 '';
+3 -3
pkgs/servers/spicedb/default.nix
··· 6 7 buildGoModule rec { 8 pname = "spicedb"; 9 - version = "1.26.0"; 10 11 src = fetchFromGitHub { 12 owner = "authzed"; 13 repo = "spicedb"; 14 rev = "v${version}"; 15 - hash = "sha256-D68VuTCwa7RNHxNJEUIu6vP2VPHlnOlBM+vtnM30zDw="; 16 }; 17 18 - vendorHash = "sha256-dniZH+x3BFEMtmjpMBurphpJ1YMZvm9+CCHIJV5Xy4w="; 19 20 subPackages = [ "cmd/spicedb" ]; 21
··· 6 7 buildGoModule rec { 8 pname = "spicedb"; 9 + version = "1.28.0"; 10 11 src = fetchFromGitHub { 12 owner = "authzed"; 13 repo = "spicedb"; 14 rev = "v${version}"; 15 + hash = "sha256-Zbg5rcgOSgTeVDuZpvzXuo0DWx5PH+9xPxHZZJjqpKs="; 16 }; 17 18 + vendorHash = "sha256-jzH9f/hN2S9MUtomIjPQ/VErDWyVjNN9G4W7hHiFRJs="; 19 20 subPackages = [ "cmd/spicedb" ]; 21
+2 -2
pkgs/shells/murex/default.nix
··· 5 6 buildGoModule rec { 7 pname = "murex"; 8 - version = "5.3.4000"; 9 10 src = fetchFromGitHub { 11 owner = "lmorg"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-cShXZa3ms7RmnRrvWyvijWF7kTO7K6GS1IvEUyT2mio="; 15 }; 16 17 vendorHash = "sha256-qOItRqCIxoHigufI6b7j2VdBDo50qGDe+LAaccgDh5w=";
··· 5 6 buildGoModule rec { 7 pname = "murex"; 8 + version = "5.3.5000"; 9 10 src = fetchFromGitHub { 11 owner = "lmorg"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-2TX1HgbW2C8Yvrk4fnv43SRxYoCxYMrgLgsut4lj7NY="; 15 }; 16 17 vendorHash = "sha256-qOItRqCIxoHigufI6b7j2VdBDo50qGDe+LAaccgDh5w=";
+2 -2
pkgs/tools/admin/qovery-cli/default.nix
··· 8 9 buildGoModule rec { 10 pname = "qovery-cli"; 11 - version = "0.75.5"; 12 13 src = fetchFromGitHub { 14 owner = "Qovery"; 15 repo = "qovery-cli"; 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-dmdyKMmIi09AG7deI20cYukUuT6485B5xNhpHk14zC8="; 18 }; 19 20 vendorHash = "sha256-R1CAB42moobsYuXNTtZXNLcCpSp8jfSt2FQi5fRnEdI=";
··· 8 9 buildGoModule rec { 10 pname = "qovery-cli"; 11 + version = "0.76.0"; 12 13 src = fetchFromGitHub { 14 owner = "Qovery"; 15 repo = "qovery-cli"; 16 rev = "refs/tags/v${version}"; 17 + hash = "sha256-Gf0wW+bv3+uvovsRa2AHn/N4sN8lc1ADK9t+jEVMA0c="; 18 }; 19 20 vendorHash = "sha256-R1CAB42moobsYuXNTtZXNLcCpSp8jfSt2FQi5fRnEdI=";
+3 -3
pkgs/tools/admin/wander/default.nix
··· 2 3 buildGoModule rec { 4 pname = "wander"; 5 - version = "0.12.6"; 6 7 src = fetchFromGitHub { 8 owner = "robinovitch61"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-DYlbMdh5vgf3PjHVRU7F31upOe4QX5t2D3YdR3e736I="; 12 }; 13 14 - vendorHash = "sha256-SqDGXV8MpvEQFAkcE1NWvWjdzYsvbO5vA6k+hpY0js0="; 15 16 ldflags = [ "-s" "-w" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "wander"; 5 + version = "0.14.1"; 6 7 src = fetchFromGitHub { 8 owner = "robinovitch61"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-ULttOJcP3LHQAlyJKGEKT3B3PqYOP5+IxDej673020M="; 12 }; 13 14 + vendorHash = "sha256-0S8tzP5yNUrH6fp+v7nbUPTMWzYXyGw+ZNcXkSN+tWY="; 15 16 ldflags = [ "-s" "-w" ]; 17
+2 -2
pkgs/tools/audio/abcmidi/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "abcMIDI"; 5 - version = "2023.11.17"; 6 7 src = fetchzip { 8 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip"; 9 - hash = "sha256-yWCHK7bi1kCZNWBhaLqilm/ZUv5YXUGi7W3PaRKA7ww="; 10 }; 11 12 meta = with lib; {
··· 2 3 stdenv.mkDerivation rec { 4 pname = "abcMIDI"; 5 + version = "2023.12.23"; 6 7 src = fetchzip { 8 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip"; 9 + hash = "sha256-j7gww8T3wHMtec/Nvqxys2dSQCTJOw/7OQ8gwpc3mxo="; 10 }; 11 12 meta = with lib; {
+3 -3
pkgs/tools/audio/unflac/default.nix
··· 7 8 buildGoModule rec { 9 pname = "unflac"; 10 - version = "1.1"; 11 12 src = fetchFromSourcehut { 13 owner = "~ft"; 14 repo = pname; 15 rev = version; 16 - sha256 = "sha256-gDgmEEOvsudSYdLUodTuE50+2hZpMqlnaVGanv/rg+U="; 17 }; 18 19 - vendorHash = "sha256-X3cMhzaf1t+x7D8BVBfQy00rAACDEPmIOezIhKzqOZ8="; 20 21 nativeBuildInputs = [ makeWrapper ]; 22 postFixup = ''
··· 7 8 buildGoModule rec { 9 pname = "unflac"; 10 + version = "1.2"; 11 12 src = fetchFromSourcehut { 13 owner = "~ft"; 14 repo = pname; 15 rev = version; 16 + sha256 = "sha256-BgXuPAXrw28axfTEh10Yh8dQc27M1/lSmCo2eAeNnjE="; 17 }; 18 19 + vendorHash = "sha256-IQHxEYv6l8ORoX+a3Szox9tS2fyBk0tpK+Q1AsWohX0="; 20 21 nativeBuildInputs = [ makeWrapper ]; 22 postFixup = ''
+3 -3
pkgs/tools/games/igir/default.nix
··· 5 6 buildNpmPackage rec { 7 pname = "igir"; 8 - version = "2.0.6"; 9 10 src = fetchFromGitHub { 11 owner = "emmercm"; 12 repo = "igir"; 13 rev = "v${version}"; 14 - hash = "sha256-HIhk60I5VUMHBUp5EQGpE7RZ0KiYwVMl1jEX9zb5ttA="; 15 }; 16 17 - npmDepsHash = "sha256-P+H6q+jwfJFMb5qtOS3OCVUu9MtZ+Knaog0qyP3FpFo="; 18 19 # I have no clue why I have to do this 20 postPatch = ''
··· 5 6 buildNpmPackage rec { 7 pname = "igir"; 8 + version = "2.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "emmercm"; 12 repo = "igir"; 13 rev = "v${version}"; 14 + hash = "sha256-RHMsLiet3O/4aYLKWtxr1oJDU6sy5kHxr422AUqLzMA="; 15 }; 16 17 + npmDepsHash = "sha256-MvXhSSqHHI3Ofgx+EnKwR5LuHl33h6sjTZ+ErBfjb6s="; 18 19 # I have no clue why I have to do this 20 postPatch = ''
+2 -2
pkgs/tools/misc/blahaj/default.nix
··· 5 6 crystal.buildCrystalPackage rec { 7 pname = "blahaj"; 8 - version = "2.1.0"; 9 10 src = fetchFromGitHub { 11 owner = "GeopJr"; 12 repo = "BLAHAJ"; 13 rev = "v${version}"; 14 - hash = "sha256-rX6isAIlpNDBOGLmtvRXmqY90ByFfXeYI0HAAPIMXf8="; 15 }; 16 17 meta = with lib; {
··· 5 6 crystal.buildCrystalPackage rec { 7 pname = "blahaj"; 8 + version = "2.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "GeopJr"; 12 repo = "BLAHAJ"; 13 rev = "v${version}"; 14 + hash = "sha256-CmMF9jDKUo+c8dYc2UEHKdBDE4dgwExcRS5sSUsUJik="; 15 }; 16 17 meta = with lib; {
+3 -3
pkgs/tools/misc/phrase-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "phrase-cli"; 5 - version = "2.19.0"; 6 7 src = fetchFromGitHub { 8 owner = "phrase"; 9 repo = "phrase-cli"; 10 rev = version; 11 - sha256 = "sha256-dJlyeld1tXLW6CMRCbP5DfNFu6T8vvT950qKcCrc+DY="; 12 }; 13 14 - vendorHash = "sha256-kKw0yrxx1+C3dJ59DQ0eJL5k+yqkDC5twMcIMTrYvY8="; 15 16 ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "phrase-cli"; 5 + version = "2.19.1"; 6 7 src = fetchFromGitHub { 8 owner = "phrase"; 9 repo = "phrase-cli"; 10 rev = version; 11 + sha256 = "sha256-lBAht2r48+nlCrJTUPzcJK2Nd5pPqStTv27jghtF8e4="; 12 }; 13 14 + vendorHash = "sha256-0oepdfm+MWA/F+B/Ayl2PiBvOL4bA9iUNV+zculIaN8="; 15 16 ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; 17
+3 -3
pkgs/tools/networking/cfspeedtest/default.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cfspeedtest"; 9 - version = "1.1.3"; 10 11 src = fetchFromGitHub { 12 owner = "code-inflation"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-ZbE8/mh9hb81cGz0Wxq3gTa9BueKfQApeq5z2DGUak0="; 16 }; 17 18 - cargoHash = "sha256-+cKQkogZc4iIIVMyHtbS44DNkCKD2cWkVN2o9m+WFbM="; 19 20 meta = with lib; { 21 description = "Unofficial CLI for speed.cloudflare.com";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cfspeedtest"; 9 + version = "1.2.0"; 10 11 src = fetchFromGitHub { 12 owner = "code-inflation"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-/Msm5odr0K4yxkfc54nVrVxtaBhoerBymFrfOP8zigU="; 16 }; 17 18 + cargoHash = "sha256-JqFX9RbyjZqp9rp2ZNA1XlOCUQ5I4aGvv4UsWVtsvQ0="; 19 20 meta = with lib; { 21 description = "Unofficial CLI for speed.cloudflare.com";
+3 -3
pkgs/tools/networking/dae/default.nix
··· 5 }: 6 buildGoModule rec { 7 pname = "dae"; 8 - version = "0.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "daeuniverse"; 12 repo = "dae"; 13 rev = "v${version}"; 14 - hash = "sha256-WiJqhXYehuUCLEuVbsQkmTntuH1srtePtZgYBSTbxiw="; 15 fetchSubmodules = true; 16 }; 17 18 - vendorHash = "sha256-fb4PEMhV8+5zaRJyl+nYi2BHcOUDUVAwxce2xaRt5JA="; 19 20 proxyVendor = true; 21
··· 5 }: 6 buildGoModule rec { 7 pname = "dae"; 8 + version = "0.4.0"; 9 10 src = fetchFromGitHub { 11 owner = "daeuniverse"; 12 repo = "dae"; 13 rev = "v${version}"; 14 + hash = "sha256-hvAuWCacaWxXwxx5ktj57hnWt8fcnwD6rUuRj1+ZtFA="; 15 fetchSubmodules = true; 16 }; 17 18 + vendorHash = "sha256-qK+x6ciAebwIWHRjRpNXCAqsfnmEx37evS4+7kwcFIs="; 19 20 proxyVendor = true; 21
+3 -3
pkgs/tools/networking/kail/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kail"; 5 - version = "0.17.1"; 6 7 ldflags = [ 8 "-s" ··· 14 owner = "boz"; 15 repo = "kail"; 16 rev = "v${version}"; 17 - sha256 = "sha256-AmbgrSG8Mc4cHEDn9qtaAQ/RQjSDS5JjKhqZAcHYLV4="; 18 }; 19 20 - vendorHash = "sha256-80ZZZWTRmCClHkfsV/0WStuZ/xcxyycA5Fg4W2BqtF8="; 21 22 meta = with lib; { 23 description = "Kubernetes log viewer";
··· 2 3 buildGoModule rec { 4 pname = "kail"; 5 + version = "0.17.2"; 6 7 ldflags = [ 8 "-s" ··· 14 owner = "boz"; 15 repo = "kail"; 16 rev = "v${version}"; 17 + sha256 = "sha256-mUdb3f5GaD+3GceUOpIFHKgGqqollzCJ8/oUj/37xAU="; 18 }; 19 20 + vendorHash = "sha256-GOrw/5nDMTg2FKkzii7FkyzCxfBurnnQbfBF4nfSaJI="; 21 22 meta = with lib; { 23 description = "Kubernetes log viewer";
+2 -2
pkgs/tools/package-management/apx/default.nix
··· 6 7 buildGoModule rec { 8 pname = "apx"; 9 - version = "2.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "Vanilla-OS"; 13 repo = pname; 14 rev = "v${version}"; 15 - hash = "sha256-spxZgc1krs8AhOhAZmqGj/yiXzMUefcFFKg/xFpdWj8="; 16 }; 17 18 vendorHash = null;
··· 6 7 buildGoModule rec { 8 pname = "apx"; 9 + version = "2.1.1"; 10 11 src = fetchFromGitHub { 12 owner = "Vanilla-OS"; 13 repo = pname; 14 rev = "v${version}"; 15 + hash = "sha256-TXGfJHe4dOOpP7iJFbjL5WnqcxHeOn5naKjnBQ3c5dE="; 16 }; 17 18 vendorHash = null;
+3 -4
pkgs/tools/security/otpauth/default.nix
··· 5 6 buildGoModule rec { 7 pname = "otpauth"; 8 - version = "0.5.1"; 9 10 src = fetchFromGitHub { 11 owner = "dim13"; 12 repo = "otpauth"; 13 rev = "v${version}"; 14 - sha256 = "sha256-jeKxCuE3cA/oTEKwdrCGPchsrtaMyirTzv8oLl9gxtA="; 15 }; 16 17 - vendorHash = "sha256-jnIq7Zc2MauJReJ9a8TeqXXsvHixsBB+znmXAxcpqUQ="; 18 - doCheck = true; 19 20 meta = with lib; { 21 description = "Google Authenticator migration decoder";
··· 5 6 buildGoModule rec { 7 pname = "otpauth"; 8 + version = "0.5.2"; 9 10 src = fetchFromGitHub { 11 owner = "dim13"; 12 repo = "otpauth"; 13 rev = "v${version}"; 14 + sha256 = "sha256-1+A1oXY5sKMr9dVa/4vB+ZkfZSDdhag5y5LfM7OJmKo="; 15 }; 16 17 + vendorHash = "sha256-ZRCwZGlWzlWh+E3KUH83639Tfck7bwE36wXVnG7EQIE="; 18 19 meta = with lib; { 20 description = "Google Authenticator migration decoder";
+3 -3
pkgs/tools/text/markdownlint-cli/default.nix
··· 5 6 buildNpmPackage rec { 7 pname = "markdownlint-cli"; 8 - version = "0.35.0"; 9 10 src = fetchFromGitHub { 11 owner = "igorshubovych"; 12 repo = "markdownlint-cli"; 13 rev = "v${version}"; 14 - hash = "sha256-PkvgZn7cQafKO7p5i1fYYZrWjNcFuX700r223qUMN5I="; 15 }; 16 17 - npmDepsHash = "sha256-hh8T2MRjUJQVibd+cY7vkJvBgNDueWuluGE3HxWOCU8="; 18 19 dontNpmBuild = true; 20
··· 5 6 buildNpmPackage rec { 7 pname = "markdownlint-cli"; 8 + version = "0.38.0"; 9 10 src = fetchFromGitHub { 11 owner = "igorshubovych"; 12 repo = "markdownlint-cli"; 13 rev = "v${version}"; 14 + hash = "sha256-3PiienQjyJQ/ElY4j0Ccu+r6KtIu1kuPlobHqXE0GY4="; 15 }; 16 17 + npmDepsHash = "sha256-WoXyWn58E4+Lj3LWqr/8JbvAo5IcjLgnzhIt59bSqV4="; 18 19 dontNpmBuild = true; 20
+4 -4
pkgs/tools/text/percollate/default.nix
··· 2 3 buildNpmPackage rec { 4 pname = "percollate"; 5 - version = "4.0.2"; 6 7 src = fetchFromGitHub { 8 owner = "danburzo"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-QLbLg/zdDCZsRKgC4vR0OT//JHaapGmX33l7jIqUc1M="; 12 }; 13 14 - npmDepsHash = "sha256-Hxhgjdiz0zC/UlFXK8vvKZFI963Wi2Wx6iHWegr6f10="; 15 16 dontNpmBuild = true; 17 18 # Dev dependencies include an unnecessary Java dependency (epubchecker) 19 - # https://github.com/danburzo/percollate/blob/v4.0.2/package.json#L40 20 npmInstallFlags = [ "--omit=dev" ]; 21 22 nativeBuildInputs = [ makeWrapper ];
··· 2 3 buildNpmPackage rec { 4 pname = "percollate"; 5 + version = "4.0.4"; 6 7 src = fetchFromGitHub { 8 owner = "danburzo"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-Gl9v8WdntiatgxIvH1PZe3U9imGqdm5iYUx8gCwJhLw="; 12 }; 13 14 + npmDepsHash = "sha256-/HYnoMd+rriZ4WYGyM7g62Yii7lc/+ZKkc5QfPpFAQU="; 15 16 dontNpmBuild = true; 17 18 # Dev dependencies include an unnecessary Java dependency (epubchecker) 19 + # https://github.com/danburzo/percollate/blob/v4.0.4/package.json#L40 20 npmInstallFlags = [ "--omit=dev" ]; 21 22 nativeBuildInputs = [ makeWrapper ];
+2
pkgs/top-level/aliases.nix
··· 306 }; # Added 2021-01-14 307 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 gmailieer = lieer; # Added 2020-04-19 310 gmic-qt-krita = throw "gmic-qt-krita was removed as it's no longer supported upstream."; # Converted to throw 2023-02-02 311 gnatboot11 = gnat-bootstrap11; ··· 332 gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 333 gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2023-09-10 334 gnuradio-rds = throw "'gnuradio-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 335 gobby5 = gobby; # Added 2021-02-01 336 337 #godot
··· 306 }; # Added 2021-01-14 307 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 310 gmailieer = lieer; # Added 2020-04-19 311 gmic-qt-krita = throw "gmic-qt-krita was removed as it's no longer supported upstream."; # Converted to throw 2023-02-02 312 gnatboot11 = gnat-bootstrap11; ··· 333 gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 334 gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2023-09-10 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 337 gobby5 = gobby; # Added 2021-02-01 338 339 #godot
-8
pkgs/top-level/all-packages.nix
··· 3041 fox = fox_1_6; 3042 }; 3043 3044 - xplr = callPackage ../applications/file-managers/xplr { }; 3045 - 3046 xplorer = callPackage ../applications/file-managers/xplorer { }; 3047 3048 johnny-reborn-engine = callPackage ../applications/misc/johnny-reborn { }; ··· 5598 glpaper = callPackage ../development/tools/glpaper { }; 5599 5600 gllvm = callPackage ../development/tools/gllvm { }; 5601 - 5602 - glide = callPackage ../development/tools/glide { }; 5603 5604 globalarrays = callPackage ../development/libraries/globalarrays { }; 5605 ··· 25990 go = buildPackages.go_1_21; 25991 }; 25992 25993 - go2nix = callPackage ../development/tools/go2nix { }; 25994 - 25995 leaps = callPackage ../development/tools/leaps { }; 25996 25997 ### DEVELOPMENT / JAVA MODULES ··· 30477 }; 30478 30479 anytone-emu = callPackage ../applications/radio/anytone-emu { }; 30480 - 30481 - anytype = callPackage ../applications/misc/anytype { }; 30482 30483 ao = libfive; 30484
··· 3041 fox = fox_1_6; 3042 }; 3043 3044 xplorer = callPackage ../applications/file-managers/xplorer { }; 3045 3046 johnny-reborn-engine = callPackage ../applications/misc/johnny-reborn { }; ··· 5596 glpaper = callPackage ../development/tools/glpaper { }; 5597 5598 gllvm = callPackage ../development/tools/gllvm { }; 5599 5600 globalarrays = callPackage ../development/libraries/globalarrays { }; 5601 ··· 25986 go = buildPackages.go_1_21; 25987 }; 25988 25989 leaps = callPackage ../development/tools/leaps { }; 25990 25991 ### DEVELOPMENT / JAVA MODULES ··· 30471 }; 30472 30473 anytone-emu = callPackage ../applications/radio/anytone-emu { }; 30474 30475 ao = libfive; 30476
+1 -1
pkgs/top-level/beam-packages.nix
··· 13 self = beam; 14 15 # Aliases added 2023-03-21 16 - versionLoop = f: lib.lists.foldr (version: acc: (f version) // acc) { } [ "26" "25" "24" "23" ]; 17 18 interpretersAliases = versionLoop (version: { 19 "erlangR${version}" = self.interpreters."erlang_${version}";
··· 13 self = beam; 14 15 # Aliases added 2023-03-21 16 + versionLoop = f: lib.lists.foldr (version: acc: (f version) // acc) { } [ "26" "25" "24" ]; 17 18 interpretersAliases = versionLoop (version: { 19 "erlangR${version}" = self.interpreters."erlang_${version}";