Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 7cb8db1c 2a6f9a7e

+1610 -97
+2 -2
pkgs/applications/editors/vscode/extensions/default.nix
··· 1222 mktplcRef = { 1223 name = "prettier-vscode"; 1224 publisher = "esbenp"; 1225 - version = "9.14.0"; 1226 - sha256 = "sha256-0eb3W9SErsqPofjR1DaChDghvWOQFSYIMnnWbu8GiHY="; 1227 }; 1228 meta = { 1229 changelog = "https://marketplace.visualstudio.com/items/esbenp.prettier-vscode/changelog";
··· 1222 mktplcRef = { 1223 name = "prettier-vscode"; 1224 publisher = "esbenp"; 1225 + version = "9.16.0"; 1226 + sha256 = "sha256-MF+mPhX4Q6wi7FxfaWG6fNJHY6EsTWOX+9UmN0iIZGU="; 1227 }; 1228 meta = { 1229 changelog = "https://marketplace.visualstudio.com/items/esbenp.prettier-vscode/changelog";
+3 -3
pkgs/applications/emulators/citra/generic.nix
··· 17 , enableQt ? true, qtbase, qtmultimedia, wrapQtAppsHook 18 , enableQtTranslation ? enableQt, qttools 19 , enableWebService ? true 20 - , enableCubeb ? true, libpulseaudio 21 , enableFfmpegAudioDecoder ? true 22 , enableFfmpegVideoDumper ? true 23 , ffmpeg_4 ··· 40 ] ++ lib.optionals enableQt [ qtbase qtmultimedia ] 41 ++ lib.optional enableSdl2 SDL2 42 ++ lib.optional enableQtTranslation qttools 43 - ++ lib.optional enableCubeb libpulseaudio 44 ++ lib.optional (enableFfmpegAudioDecoder || enableFfmpegVideoDumper) ffmpeg_4 45 ++ lib.optional useDiscordRichPresence rapidjson 46 ++ lib.optional enableFdk fdk_aac; ··· 89 # Fixes https://github.com/NixOS/nixpkgs/issues/171173 90 postInstall = lib.optionalString (enableCubeb && enableSdl2) '' 91 wrapProgram "$out/bin/citra" \ 92 - --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpulseaudio ]} 93 ''; 94 95 meta = with lib; {
··· 17 , enableQt ? true, qtbase, qtmultimedia, wrapQtAppsHook 18 , enableQtTranslation ? enableQt, qttools 19 , enableWebService ? true 20 + , enableCubeb ? true, cubeb 21 , enableFfmpegAudioDecoder ? true 22 , enableFfmpegVideoDumper ? true 23 , ffmpeg_4 ··· 40 ] ++ lib.optionals enableQt [ qtbase qtmultimedia ] 41 ++ lib.optional enableSdl2 SDL2 42 ++ lib.optional enableQtTranslation qttools 43 + ++ lib.optionals enableCubeb cubeb.passthru.backendLibs 44 ++ lib.optional (enableFfmpegAudioDecoder || enableFfmpegVideoDumper) ffmpeg_4 45 ++ lib.optional useDiscordRichPresence rapidjson 46 ++ lib.optional enableFdk fdk_aac; ··· 89 # Fixes https://github.com/NixOS/nixpkgs/issues/171173 90 postInstall = lib.optionalString (enableCubeb && enableSdl2) '' 91 wrapProgram "$out/bin/citra" \ 92 + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath cubeb.passthru.backendLibs} 93 ''; 94 95 meta = with lib; {
+4 -4
pkgs/applications/emulators/duckstation/default.nix
··· 4 , SDL2 5 , cmake 6 , copyDesktopItems 7 , curl 8 , extra-cmake-modules 9 , libXrandr 10 - , libpulseaudio 11 , makeDesktopItem 12 , mesa # for libgbm 13 , ninja ··· 48 buildInputs = [ 49 SDL2 50 curl 51 - libpulseaudio 52 libXrandr 53 mesa 54 qtbase ··· 58 ++ lib.optionals enableWayland [ 59 qtwayland 60 wayland 61 - ]; 62 63 cmakeFlags = [ 64 "-DUSE_DRMKMS=ON" ··· 100 ''; 101 102 qtWrapperArgs = [ 103 - "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpulseaudio vulkan-loader ]}" 104 ]; 105 106 meta = with lib; {
··· 4 , SDL2 5 , cmake 6 , copyDesktopItems 7 + , cubeb 8 , curl 9 , extra-cmake-modules 10 , libXrandr 11 , makeDesktopItem 12 , mesa # for libgbm 13 , ninja ··· 48 buildInputs = [ 49 SDL2 50 curl 51 libXrandr 52 mesa 53 qtbase ··· 57 ++ lib.optionals enableWayland [ 58 qtwayland 59 wayland 60 + ] 61 + ++ cubeb.passthru.backendLibs; 62 63 cmakeFlags = [ 64 "-DUSE_DRMKMS=ON" ··· 100 ''; 101 102 qtWrapperArgs = [ 103 + "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath ([ vulkan-loader ] ++ cubeb.passthru.backendLibs)}" 104 ]; 105 106 meta = with lib; {
+5 -6
pkgs/applications/emulators/pcsx2/default.nix
··· 2 , fetchFromGitHub 3 , lib 4 , stdenv 5 , curl 6 , ffmpeg 7 , fmt ··· 10 , libaio 11 , libbacktrace 12 , libpcap 13 - , libpulseaudio 14 , libsamplerate 15 , libXrandr 16 , libzip ··· 69 libaio 70 libbacktrace 71 libpcap 72 - libpulseaudio 73 libsamplerate 74 libXrandr 75 libzip ··· 85 vulkan-loader 86 wayland 87 xz 88 - ]; 89 90 installPhase = '' 91 mkdir -p $out/bin ··· 98 ''; 99 100 qtWrapperArgs = [ 101 - "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ 102 ffmpeg # It's loaded with dlopen. They plan to change it https://github.com/PCSX2/pcsx2/issues/8624 103 - libpulseaudio 104 vulkan-loader 105 - ]}" 106 ]; 107 108 meta = with lib; {
··· 2 , fetchFromGitHub 3 , lib 4 , stdenv 5 + , cubeb 6 , curl 7 , ffmpeg 8 , fmt ··· 11 , libaio 12 , libbacktrace 13 , libpcap 14 , libsamplerate 15 , libXrandr 16 , libzip ··· 69 libaio 70 libbacktrace 71 libpcap 72 libsamplerate 73 libXrandr 74 libzip ··· 84 vulkan-loader 85 wayland 86 xz 87 + ] 88 + ++ cubeb.passthru.backendLibs; 89 90 installPhase = '' 91 mkdir -p $out/bin ··· 98 ''; 99 100 qtWrapperArgs = [ 101 + "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath ([ 102 ffmpeg # It's loaded with dlopen. They plan to change it https://github.com/PCSX2/pcsx2/issues/8624 103 vulkan-loader 104 + ] ++ cubeb.passthru.backendLibs)}" 105 ]; 106 107 meta = with lib; {
+2 -4
pkgs/applications/emulators/rpcs3/default.nix
··· 2 , qtbase, qtquickcontrols, qtmultimedia, openal, glew, vulkan-headers, vulkan-loader, libpng 3 , ffmpeg, libevdev, libusb1, zlib, curl, wolfssl, python3, pugixml, faudio, flatbuffers 4 , sdl2Support ? true, SDL2 5 - , pulseaudioSupport ? true, libpulseaudio 6 , waylandSupport ? true, wayland 7 - , alsaSupport ? true, alsa-lib 8 }: 9 10 let ··· 66 qtbase qtquickcontrols qtmultimedia openal glew vulkan-headers vulkan-loader libpng ffmpeg 67 libevdev zlib libusb1 curl wolfssl python3 pugixml faudio flatbuffers 68 ] ++ lib.optional sdl2Support SDL2 69 - ++ lib.optional pulseaudioSupport libpulseaudio 70 - ++ lib.optional alsaSupport alsa-lib 71 ++ lib.optional waylandSupport wayland; 72 73 postInstall = ''
··· 2 , qtbase, qtquickcontrols, qtmultimedia, openal, glew, vulkan-headers, vulkan-loader, libpng 3 , ffmpeg, libevdev, libusb1, zlib, curl, wolfssl, python3, pugixml, faudio, flatbuffers 4 , sdl2Support ? true, SDL2 5 + , cubebSupport ? true, cubeb 6 , waylandSupport ? true, wayland 7 }: 8 9 let ··· 65 qtbase qtquickcontrols qtmultimedia openal glew vulkan-headers vulkan-loader libpng ffmpeg 66 libevdev zlib libusb1 curl wolfssl python3 pugixml faudio flatbuffers 67 ] ++ lib.optional sdl2Support SDL2 68 + ++ lib.optionals cubebSupport cubeb.passthru.backendLibs 69 ++ lib.optional waylandSupport wayland; 70 71 postInstall = ''
+2 -2
pkgs/applications/misc/confy/default.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "confy"; 19 - version = "0.6.4"; 20 21 src = fetchurl { 22 url = "https://git.sr.ht/~fabrixxm/confy/archive/${version}.tar.gz"; 23 - sha256 = "0v74pdyihj7r9gb3k2rkvbphan27ajlvycscd8xzrnsv74lcmbpm"; 24 }; 25 26 nativeBuildInputs = [
··· 16 17 stdenv.mkDerivation rec { 18 pname = "confy"; 19 + version = "0.6.5"; 20 21 src = fetchurl { 22 url = "https://git.sr.ht/~fabrixxm/confy/archive/${version}.tar.gz"; 23 + sha256 = "sha256-zfuwOZBSGQzJUc36M6C5wSHarLbPFqayQVFo+WbVo7k="; 24 }; 25 26 nativeBuildInputs = [
+3 -3
pkgs/applications/misc/process-compose/default.nix
··· 8 in 9 buildGoModule rec { 10 pname = "process-compose"; 11 - version = "0.51.0"; 12 13 src = fetchFromGitHub { 14 owner = "F1bonacc1"; 15 repo = pname; 16 rev = "v${version}"; 17 - hash = "sha256-WPggJ86rWL8OIVXsDBT6P2AslT8rhDY4IIZdSPz6waE="; 18 # populate values that require us to use git. By doing this in postFetch we 19 # can delete .git afterwards and maintain better reproducibility of the src. 20 leaveDotGit = true; ··· 43 installShellFiles 44 ]; 45 46 - vendorHash = "sha256-9RvVBup07FHCjfV/Q6ryU28inqydL/pMGVUfbo2OG5s="; 47 48 doCheck = false; 49
··· 8 in 9 buildGoModule rec { 10 pname = "process-compose"; 11 + version = "0.51.4"; 12 13 src = fetchFromGitHub { 14 owner = "F1bonacc1"; 15 repo = pname; 16 rev = "v${version}"; 17 + hash = "sha256-eR8uYeScV6bxntc2bEwJC/VSH1bXendJ1FNJB0bC2i0="; 18 # populate values that require us to use git. By doing this in postFetch we 19 # can delete .git afterwards and maintain better reproducibility of the src. 20 leaveDotGit = true; ··· 43 installShellFiles 44 ]; 45 46 + vendorHash = "sha256-dlTqBKyI2t3twxQ+mnn+LTWzM2+CnEa4X0K2yDAZsQA="; 47 48 doCheck = false; 49
+2 -2
pkgs/applications/networking/browsers/lagrange/default.nix
··· 17 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "lagrange"; 20 - version = "1.16.4"; 21 22 src = fetchFromGitHub { 23 owner = "skyjake"; 24 repo = "lagrange"; 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-crOUuCQwqB1Eaesx7jXUd3/ti1LGMOjjESiOJjg/iZo="; 27 }; 28 29 nativeBuildInputs = [ cmake pkg-config zip ];
··· 17 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "lagrange"; 20 + version = "1.16.5"; 21 22 src = fetchFromGitHub { 23 owner = "skyjake"; 24 repo = "lagrange"; 25 rev = "v${finalAttrs.version}"; 26 + hash = "sha256-OLKUw0qimt0WgcW26T4IWVK16nDGSmqHSuSJ8tHhbsE="; 27 }; 28 29 nativeBuildInputs = [ cmake pkg-config zip ];
+3 -3
pkgs/applications/networking/cluster/argocd/default.nix
··· 2 3 buildGoModule rec { 4 pname = "argocd"; 5 - version = "2.7.4"; 6 7 src = fetchFromGitHub { 8 owner = "argoproj"; 9 repo = "argo-cd"; 10 rev = "v${version}"; 11 - sha256 = "sha256-9S30m4iA5qrcXFWk3QiDSuhHebhWYOpVfKSE6mz0mig="; 12 }; 13 14 proxyVendor = true; # darwin/linux hash mismatch 15 - vendorHash = "sha256-Ec2v9BehSvbx3phA1JrZnsZ4BObFTTOs2Ee+5pKsAGs="; 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.7.6"; 6 7 src = fetchFromGitHub { 8 owner = "argoproj"; 9 repo = "argo-cd"; 10 rev = "v${version}"; 11 + sha256 = "sha256-YEQ5vLE13FzcE0dt/RRxuM2qRuvuHrTgGlF+3D4aox4="; 12 }; 13 14 proxyVendor = true; # darwin/linux hash mismatch 15 + vendorHash = "sha256-PQys3jXpwBsBQAMLW6WUUsIc+l1knSAvUicQug9fCmU="; 16 17 # Set target as ./cmd per cli-local 18 # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
+18 -1
pkgs/development/compilers/cudatoolkit/common.nix
··· 9 , autoAddOpenGLRunpathHook 10 , addOpenGLRunpath 11 , alsa-lib 12 , expat 13 , fetchurl 14 , fontconfig ··· 16 , gdk-pixbuf 17 , glib 18 , glibc 19 , gtk2 20 , lib 21 , libxkbcommon ··· 129 ucx 130 xorg.libxshmfence 131 xorg.libxkbfile 132 - ]; 133 134 # Prepended to runpaths by autoPatchelf. 135 # The order inherited from older rpath preFixup code
··· 9 , autoAddOpenGLRunpathHook 10 , addOpenGLRunpath 11 , alsa-lib 12 + , curlMinimal 13 , expat 14 , fetchurl 15 , fontconfig ··· 17 , gdk-pixbuf 18 , glib 19 , glibc 20 + , gst_all_1 21 , gtk2 22 , lib 23 , libxkbcommon ··· 131 ucx 132 xorg.libxshmfence 133 xorg.libxkbfile 134 + ] ++ lib.optionals (lib.versionAtLeast version "12.1") (map lib.getLib [ 135 + # Used by `/target-linux-x64/CollectX/clx` and `/target-linux-x64/CollectX/libclx_api.so` for: 136 + # - `libcurl.so.4` 137 + curlMinimal 138 + 139 + # Used by `/target-linux-x64/libQt6Multimedia.so.6` for: 140 + # - `libgstaudio-1.0.so.0` 141 + # - `libgstvideo-1.0.so.0` 142 + # - `libgstpbutils-1.0.so.0` 143 + # - `libgstallocators-1.0.so.0` 144 + # - `libgstapp-1.0.so.0` 145 + # - `libgstbase-1.0.so.0` 146 + # - `libgstreamer-1.0.so.0` 147 + gst_all_1.gstreamer 148 + gst_all_1.gst-plugins-base 149 + ]); 150 151 # Prepended to runpaths by autoPatchelf. 152 # The order inherited from older rpath preFixup code
+2 -2
pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-containerservice"; 14 - version = "23.0.0"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 19 src = fetchPypi { 20 inherit pname version; 21 extension = "zip"; 22 - hash = "sha256-V8IUTQvbUSOpsqkGfBqLo4DVIB7fryYMVx6WpfWzOnc="; 23 }; 24 25 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-containerservice"; 14 + version = "24.0.0"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 19 src = fetchPypi { 20 inherit pname version; 21 extension = "zip"; 22 + hash = "sha256-sUp3LDVsc1DmVf4HdaXGSDeEvmAE2weSHHTxL/BwRk8="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-redis/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-redis"; 14 - version = "14.1.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 - hash = "sha256-LO92Wc2+VvsEKiOjVSHXw2o3D69NQlL58m+YqWl6+ig="; 20 }; 21 22 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "azure-mgmt-redis"; 14 + version = "14.2.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 + hash = "sha256-u6PG1mx3iiiLssoLzOj5kxI2L3uvQMnWrEQY6MBJOtA="; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/flake8-bugbear/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "flake8-bugbear"; 14 - version = "23.5.9"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "PyCQA"; 21 repo = pname; 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-qjR6WbgewVdmxubtEK6BdZv6zXgp0B9bQLxana3o+WU="; 24 }; 25 26 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "flake8-bugbear"; 14 + version = "23.6.5"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "PyCQA"; 21 repo = pname; 22 rev = "refs/tags/${version}"; 23 + hash = "sha256-tjjluiyFkhWstcZBfNPAIAonxs1k0mwWmXOAujMC9tI="; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-vision/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-vision"; 15 - version = "3.4.2"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-uLKI2lY094rCMXPdXV69hrorN85cTLrbVkyqeBiOBRg="; 23 }; 24 25 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-vision"; 15 + version = "3.4.3"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-RSe/saqfidAn20INQN6fquSCS2QGyANzpt2CfnmJwJ4="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/gsd/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "gsd"; 12 - version = "2.8.1"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "glotzerlab"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-6Ixy62hHbSjArlDzBICdk0e8DDKxaHShamHpHEKOqqU="; 22 }; 23 24 nativeBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "gsd"; 12 + version = "3.0.1"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "glotzerlab"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-jfik8Rz4gqBNQn8cb20VcSUodupS/FNgpQJtW/DMzPY="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pathy/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "pathy"; 15 - version = "0.10.1"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-TNbnG0zV/4dc+7lJrZ+lUZ2NHb5p1fwdGyOqPLBJYYs="; 23 }; 24 25 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "pathy"; 15 + version = "0.10.2"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-ecVyq3/thNxGg3NG7a5YVlmS0Ed6eJzUaRpB2Oq5kX0="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/psd-tools/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "psd-tools"; 16 - version = "1.9.24"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "psd-tools"; 23 repo = pname; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-RW8v3UeO2tCjKkCqraFw2IfVt2YL3EbixfGsK7pOQYI="; 26 }; 27 28 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "psd-tools"; 16 + version = "1.9.26"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "psd-tools"; 23 repo = pname; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-fwUFBqr397l6vLBc4xF78EdnXzc83Gqn5nu/9M19ZW8="; 26 }; 27 28 nativeBuildInputs = [
+4 -1
pkgs/development/tools/continuous-integration/github-runner/default.nix
··· 131 132 # Fully qualified name of disabled tests 133 disabledTests = 134 - [ "GitHub.Runner.Common.Tests.Listener.SelfUpdaterL0.TestSelfUpdateAsync" ] 135 ++ map (x: "GitHub.Runner.Common.Tests.Listener.SelfUpdaterL0.TestSelfUpdateAsync_${x}") [ 136 "Cancel_CloneHashTask_WhenNotNeeded" 137 "CloneHash_RuntimeAndExternals"
··· 131 132 # Fully qualified name of disabled tests 133 disabledTests = 134 + [ 135 + "GitHub.Runner.Common.Tests.Listener.SelfUpdaterL0.TestSelfUpdateAsync" 136 + "GitHub.Runner.Common.Tests.ProcessInvokerL0.OomScoreAdjIsInherited" 137 + ] 138 ++ map (x: "GitHub.Runner.Common.Tests.Listener.SelfUpdaterL0.TestSelfUpdateAsync_${x}") [ 139 "Cancel_CloneHashTask_WhenNotNeeded" 140 "CloneHash_RuntimeAndExternals"
+3 -3
pkgs/development/tools/kustomize/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kustomize"; 5 - version = "5.0.3"; 6 7 ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in 8 [ ··· 15 owner = "kubernetes-sigs"; 16 repo = pname; 17 rev = "kustomize/v${version}"; 18 - hash = "sha256-VKDLutzt5mFY7M9zmtEKvBjRD8+ea1Yil/NupvWBoVU="; 19 }; 20 21 # avoid finding test and development commands 22 modRoot = "kustomize"; 23 proxyVendor = true; 24 - vendorHash = "sha256-FvxkQqC4LuYcgOw6HUSIbdJcYpJoJQN7TQHGquZRlZA="; 25 26 nativeBuildInputs = [ installShellFiles ]; 27
··· 2 3 buildGoModule rec { 4 pname = "kustomize"; 5 + version = "5.1.0"; 6 7 ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in 8 [ ··· 15 owner = "kubernetes-sigs"; 16 repo = pname; 17 rev = "kustomize/v${version}"; 18 + hash = "sha256-nYndDoaCMyIvMlhHawgcv8WCCa3HYgAcF+3QxyYxub4="; 19 }; 20 21 # avoid finding test and development commands 22 modRoot = "kustomize"; 23 proxyVendor = true; 24 + vendorHash = "sha256-/XyxZHhlxD0CpaDAuJbLkOHysLXo1+ThTcexqtNdVIs="; 25 26 nativeBuildInputs = [ installShellFiles ]; 27
+1491
pkgs/development/tools/wasmi/Cargo.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "ambient-authority" 7 + version = "0.0.1" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "ec8ad6edb4840b78c5c3d88de606b22252d552b55f3a4699fbb10fc070ec3049" 10 + 11 + [[package]] 12 + name = "anes" 13 + version = "0.1.6" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 16 + 17 + [[package]] 18 + name = "anstream" 19 + version = "0.3.2" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 22 + dependencies = [ 23 + "anstyle", 24 + "anstyle-parse", 25 + "anstyle-query", 26 + "anstyle-wincon", 27 + "colorchoice", 28 + "is-terminal 0.4.7", 29 + "utf8parse", 30 + ] 31 + 32 + [[package]] 33 + name = "anstyle" 34 + version = "1.0.0" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 37 + 38 + [[package]] 39 + name = "anstyle-parse" 40 + version = "0.2.0" 41 + source = "registry+https://github.com/rust-lang/crates.io-index" 42 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 43 + dependencies = [ 44 + "utf8parse", 45 + ] 46 + 47 + [[package]] 48 + name = "anstyle-query" 49 + version = "1.0.0" 50 + source = "registry+https://github.com/rust-lang/crates.io-index" 51 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 52 + dependencies = [ 53 + "windows-sys 0.48.0", 54 + ] 55 + 56 + [[package]] 57 + name = "anstyle-wincon" 58 + version = "1.0.1" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 61 + dependencies = [ 62 + "anstyle", 63 + "windows-sys 0.48.0", 64 + ] 65 + 66 + [[package]] 67 + name = "anyhow" 68 + version = "1.0.71" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 71 + 72 + [[package]] 73 + name = "assert_cmd" 74 + version = "2.0.11" 75 + source = "registry+https://github.com/rust-lang/crates.io-index" 76 + checksum = "86d6b683edf8d1119fe420a94f8a7e389239666aa72e65495d91c00462510151" 77 + dependencies = [ 78 + "anstyle", 79 + "bstr", 80 + "doc-comment", 81 + "predicates", 82 + "predicates-core", 83 + "predicates-tree", 84 + "wait-timeout", 85 + ] 86 + 87 + [[package]] 88 + name = "assert_matches" 89 + version = "1.5.0" 90 + source = "registry+https://github.com/rust-lang/crates.io-index" 91 + checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 92 + 93 + [[package]] 94 + name = "async-trait" 95 + version = "0.1.68" 96 + source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 98 + dependencies = [ 99 + "proc-macro2", 100 + "quote", 101 + "syn 2.0.18", 102 + ] 103 + 104 + [[package]] 105 + name = "atty" 106 + version = "0.2.14" 107 + source = "registry+https://github.com/rust-lang/crates.io-index" 108 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 109 + dependencies = [ 110 + "hermit-abi 0.1.19", 111 + "libc", 112 + "winapi", 113 + ] 114 + 115 + [[package]] 116 + name = "autocfg" 117 + version = "1.1.0" 118 + source = "registry+https://github.com/rust-lang/crates.io-index" 119 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 120 + 121 + [[package]] 122 + name = "bitflags" 123 + version = "1.3.2" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 126 + 127 + [[package]] 128 + name = "bstr" 129 + version = "1.5.0" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5" 132 + dependencies = [ 133 + "memchr", 134 + "once_cell", 135 + "regex-automata", 136 + "serde", 137 + ] 138 + 139 + [[package]] 140 + name = "cap-fs-ext" 141 + version = "0.26.1" 142 + source = "registry+https://github.com/rust-lang/crates.io-index" 143 + checksum = "0b0e103ce36d217d568903ad27b14ec2238ecb5d65bad2e756a8f3c0d651506e" 144 + dependencies = [ 145 + "cap-primitives", 146 + "cap-std", 147 + "io-lifetimes 0.7.5", 148 + "windows-sys 0.36.1", 149 + ] 150 + 151 + [[package]] 152 + name = "cap-primitives" 153 + version = "0.26.1" 154 + source = "registry+https://github.com/rust-lang/crates.io-index" 155 + checksum = "af3f336aa91cce16033ed3c94ac91d98956c49b420e6d6cd0dd7d0e386a57085" 156 + dependencies = [ 157 + "ambient-authority", 158 + "fs-set-times", 159 + "io-extras", 160 + "io-lifetimes 0.7.5", 161 + "ipnet", 162 + "maybe-owned", 163 + "rustix 0.35.13", 164 + "winapi-util", 165 + "windows-sys 0.36.1", 166 + "winx", 167 + ] 168 + 169 + [[package]] 170 + name = "cap-rand" 171 + version = "0.26.1" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "d14b9606aa9550d34651bc481443203bc014237bdb992d201d2afa62d2ec6dea" 174 + dependencies = [ 175 + "ambient-authority", 176 + "rand", 177 + ] 178 + 179 + [[package]] 180 + name = "cap-std" 181 + version = "0.26.1" 182 + source = "registry+https://github.com/rust-lang/crates.io-index" 183 + checksum = "c9d6e70b626eceac9d6fc790fe2d72cc3f2f7bc3c35f467690c54a526b0f56db" 184 + dependencies = [ 185 + "cap-primitives", 186 + "io-extras", 187 + "io-lifetimes 0.7.5", 188 + "ipnet", 189 + "rustix 0.35.13", 190 + ] 191 + 192 + [[package]] 193 + name = "cap-time-ext" 194 + version = "0.26.1" 195 + source = "registry+https://github.com/rust-lang/crates.io-index" 196 + checksum = "c3a0524f7c4cff2ea547ae2b652bf7a348fd3e48f76556dc928d8b45ab2f1d50" 197 + dependencies = [ 198 + "cap-primitives", 199 + "once_cell", 200 + "rustix 0.35.13", 201 + "winx", 202 + ] 203 + 204 + [[package]] 205 + name = "cast" 206 + version = "0.3.0" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 209 + 210 + [[package]] 211 + name = "cc" 212 + version = "1.0.79" 213 + source = "registry+https://github.com/rust-lang/crates.io-index" 214 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 215 + 216 + [[package]] 217 + name = "cfg-if" 218 + version = "1.0.0" 219 + source = "registry+https://github.com/rust-lang/crates.io-index" 220 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 221 + 222 + [[package]] 223 + name = "ciborium" 224 + version = "0.2.1" 225 + source = "registry+https://github.com/rust-lang/crates.io-index" 226 + checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 227 + dependencies = [ 228 + "ciborium-io", 229 + "ciborium-ll", 230 + "serde", 231 + ] 232 + 233 + [[package]] 234 + name = "ciborium-io" 235 + version = "0.2.1" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 238 + 239 + [[package]] 240 + name = "ciborium-ll" 241 + version = "0.2.1" 242 + source = "registry+https://github.com/rust-lang/crates.io-index" 243 + checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 244 + dependencies = [ 245 + "ciborium-io", 246 + "half", 247 + ] 248 + 249 + [[package]] 250 + name = "clap" 251 + version = "3.2.25" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 254 + dependencies = [ 255 + "bitflags", 256 + "clap_lex 0.2.4", 257 + "indexmap", 258 + "textwrap", 259 + ] 260 + 261 + [[package]] 262 + name = "clap" 263 + version = "4.3.4" 264 + source = "registry+https://github.com/rust-lang/crates.io-index" 265 + checksum = "80672091db20273a15cf9fdd4e47ed43b5091ec9841bf4c6145c9dfbbcae09ed" 266 + dependencies = [ 267 + "clap_builder", 268 + "clap_derive", 269 + "once_cell", 270 + ] 271 + 272 + [[package]] 273 + name = "clap_builder" 274 + version = "4.3.4" 275 + source = "registry+https://github.com/rust-lang/crates.io-index" 276 + checksum = "c1458a1df40e1e2afebb7ab60ce55c1fa8f431146205aa5f4887e0b111c27636" 277 + dependencies = [ 278 + "anstream", 279 + "anstyle", 280 + "bitflags", 281 + "clap_lex 0.5.0", 282 + "strsim", 283 + ] 284 + 285 + [[package]] 286 + name = "clap_derive" 287 + version = "4.3.2" 288 + source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f" 290 + dependencies = [ 291 + "heck", 292 + "proc-macro2", 293 + "quote", 294 + "syn 2.0.18", 295 + ] 296 + 297 + [[package]] 298 + name = "clap_lex" 299 + version = "0.2.4" 300 + source = "registry+https://github.com/rust-lang/crates.io-index" 301 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 302 + dependencies = [ 303 + "os_str_bytes", 304 + ] 305 + 306 + [[package]] 307 + name = "clap_lex" 308 + version = "0.5.0" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 311 + 312 + [[package]] 313 + name = "colorchoice" 314 + version = "1.0.0" 315 + source = "registry+https://github.com/rust-lang/crates.io-index" 316 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 317 + 318 + [[package]] 319 + name = "criterion" 320 + version = "0.4.0" 321 + source = "registry+https://github.com/rust-lang/crates.io-index" 322 + checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 323 + dependencies = [ 324 + "anes", 325 + "atty", 326 + "cast", 327 + "ciborium", 328 + "clap 3.2.25", 329 + "criterion-plot", 330 + "itertools", 331 + "lazy_static", 332 + "num-traits", 333 + "oorandom", 334 + "regex", 335 + "serde", 336 + "serde_derive", 337 + "serde_json", 338 + "tinytemplate", 339 + "walkdir", 340 + ] 341 + 342 + [[package]] 343 + name = "criterion-plot" 344 + version = "0.5.0" 345 + source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 347 + dependencies = [ 348 + "cast", 349 + "itertools", 350 + ] 351 + 352 + [[package]] 353 + name = "difflib" 354 + version = "0.4.0" 355 + source = "registry+https://github.com/rust-lang/crates.io-index" 356 + checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 357 + 358 + [[package]] 359 + name = "dirs" 360 + version = "4.0.0" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 363 + dependencies = [ 364 + "dirs-sys", 365 + ] 366 + 367 + [[package]] 368 + name = "dirs-sys" 369 + version = "0.3.7" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 372 + dependencies = [ 373 + "libc", 374 + "redox_users", 375 + "winapi", 376 + ] 377 + 378 + [[package]] 379 + name = "doc-comment" 380 + version = "0.3.3" 381 + source = "registry+https://github.com/rust-lang/crates.io-index" 382 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 383 + 384 + [[package]] 385 + name = "downcast-rs" 386 + version = "1.2.0" 387 + source = "registry+https://github.com/rust-lang/crates.io-index" 388 + checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 389 + 390 + [[package]] 391 + name = "either" 392 + version = "1.8.1" 393 + source = "registry+https://github.com/rust-lang/crates.io-index" 394 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 395 + 396 + [[package]] 397 + name = "errno" 398 + version = "0.2.8" 399 + source = "registry+https://github.com/rust-lang/crates.io-index" 400 + checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 401 + dependencies = [ 402 + "errno-dragonfly", 403 + "libc", 404 + "winapi", 405 + ] 406 + 407 + [[package]] 408 + name = "errno" 409 + version = "0.3.1" 410 + source = "registry+https://github.com/rust-lang/crates.io-index" 411 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 412 + dependencies = [ 413 + "errno-dragonfly", 414 + "libc", 415 + "windows-sys 0.48.0", 416 + ] 417 + 418 + [[package]] 419 + name = "errno-dragonfly" 420 + version = "0.1.2" 421 + source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 423 + dependencies = [ 424 + "cc", 425 + "libc", 426 + ] 427 + 428 + [[package]] 429 + name = "fs-set-times" 430 + version = "0.17.1" 431 + source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "a267b6a9304912e018610d53fe07115d8b530b160e85db4d2d3a59f3ddde1aec" 433 + dependencies = [ 434 + "io-lifetimes 0.7.5", 435 + "rustix 0.35.13", 436 + "windows-sys 0.36.1", 437 + ] 438 + 439 + [[package]] 440 + name = "getrandom" 441 + version = "0.2.10" 442 + source = "registry+https://github.com/rust-lang/crates.io-index" 443 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 444 + dependencies = [ 445 + "cfg-if", 446 + "libc", 447 + "wasi", 448 + ] 449 + 450 + [[package]] 451 + name = "half" 452 + version = "1.8.2" 453 + source = "registry+https://github.com/rust-lang/crates.io-index" 454 + checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 455 + 456 + [[package]] 457 + name = "hashbrown" 458 + version = "0.12.3" 459 + source = "registry+https://github.com/rust-lang/crates.io-index" 460 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 461 + 462 + [[package]] 463 + name = "heck" 464 + version = "0.4.1" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 467 + 468 + [[package]] 469 + name = "hermit-abi" 470 + version = "0.1.19" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 473 + dependencies = [ 474 + "libc", 475 + ] 476 + 477 + [[package]] 478 + name = "hermit-abi" 479 + version = "0.2.6" 480 + source = "registry+https://github.com/rust-lang/crates.io-index" 481 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 482 + dependencies = [ 483 + "libc", 484 + ] 485 + 486 + [[package]] 487 + name = "hermit-abi" 488 + version = "0.3.1" 489 + source = "registry+https://github.com/rust-lang/crates.io-index" 490 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 491 + 492 + [[package]] 493 + name = "indexmap" 494 + version = "1.9.3" 495 + source = "registry+https://github.com/rust-lang/crates.io-index" 496 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 497 + dependencies = [ 498 + "autocfg", 499 + "hashbrown", 500 + ] 501 + 502 + [[package]] 503 + name = "indexmap-nostd" 504 + version = "0.4.0" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" 507 + 508 + [[package]] 509 + name = "intx" 510 + version = "0.1.0" 511 + source = "registry+https://github.com/rust-lang/crates.io-index" 512 + checksum = "f6f38a50a899dc47a6d0ed5508e7f601a2e34c3a85303514b5d137f3c10a0c75" 513 + 514 + [[package]] 515 + name = "io-extras" 516 + version = "0.15.0" 517 + source = "registry+https://github.com/rust-lang/crates.io-index" 518 + checksum = "4a5d8c2ab5becd8720e30fd25f8fa5500d8dc3fceadd8378f05859bd7b46fc49" 519 + dependencies = [ 520 + "io-lifetimes 0.7.5", 521 + "windows-sys 0.36.1", 522 + ] 523 + 524 + [[package]] 525 + name = "io-lifetimes" 526 + version = "0.7.5" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074" 529 + dependencies = [ 530 + "libc", 531 + "windows-sys 0.42.0", 532 + ] 533 + 534 + [[package]] 535 + name = "io-lifetimes" 536 + version = "1.0.11" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 539 + dependencies = [ 540 + "hermit-abi 0.3.1", 541 + "libc", 542 + "windows-sys 0.48.0", 543 + ] 544 + 545 + [[package]] 546 + name = "ipnet" 547 + version = "2.7.2" 548 + source = "registry+https://github.com/rust-lang/crates.io-index" 549 + checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 550 + 551 + [[package]] 552 + name = "is-terminal" 553 + version = "0.3.0" 554 + source = "registry+https://github.com/rust-lang/crates.io-index" 555 + checksum = "0d508111813f9af3afd2f92758f77e4ed2cc9371b642112c6a48d22eb73105c5" 556 + dependencies = [ 557 + "hermit-abi 0.2.6", 558 + "io-lifetimes 0.7.5", 559 + "rustix 0.35.13", 560 + "windows-sys 0.36.1", 561 + ] 562 + 563 + [[package]] 564 + name = "is-terminal" 565 + version = "0.4.7" 566 + source = "registry+https://github.com/rust-lang/crates.io-index" 567 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 568 + dependencies = [ 569 + "hermit-abi 0.3.1", 570 + "io-lifetimes 1.0.11", 571 + "rustix 0.37.20", 572 + "windows-sys 0.48.0", 573 + ] 574 + 575 + [[package]] 576 + name = "itertools" 577 + version = "0.10.5" 578 + source = "registry+https://github.com/rust-lang/crates.io-index" 579 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 580 + dependencies = [ 581 + "either", 582 + ] 583 + 584 + [[package]] 585 + name = "itoa" 586 + version = "1.0.6" 587 + source = "registry+https://github.com/rust-lang/crates.io-index" 588 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 589 + 590 + [[package]] 591 + name = "lazy_static" 592 + version = "1.4.0" 593 + source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 595 + 596 + [[package]] 597 + name = "leb128" 598 + version = "0.2.5" 599 + source = "registry+https://github.com/rust-lang/crates.io-index" 600 + checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" 601 + 602 + [[package]] 603 + name = "libc" 604 + version = "0.2.146" 605 + source = "registry+https://github.com/rust-lang/crates.io-index" 606 + checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 607 + 608 + [[package]] 609 + name = "libm" 610 + version = "0.2.7" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 613 + 614 + [[package]] 615 + name = "linux-raw-sys" 616 + version = "0.0.46" 617 + source = "registry+https://github.com/rust-lang/crates.io-index" 618 + checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d" 619 + 620 + [[package]] 621 + name = "linux-raw-sys" 622 + version = "0.3.8" 623 + source = "registry+https://github.com/rust-lang/crates.io-index" 624 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 625 + 626 + [[package]] 627 + name = "log" 628 + version = "0.4.19" 629 + source = "registry+https://github.com/rust-lang/crates.io-index" 630 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 631 + 632 + [[package]] 633 + name = "maybe-owned" 634 + version = "0.3.4" 635 + source = "registry+https://github.com/rust-lang/crates.io-index" 636 + checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4" 637 + 638 + [[package]] 639 + name = "memchr" 640 + version = "2.5.0" 641 + source = "registry+https://github.com/rust-lang/crates.io-index" 642 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 643 + 644 + [[package]] 645 + name = "num-traits" 646 + version = "0.2.15" 647 + source = "registry+https://github.com/rust-lang/crates.io-index" 648 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 649 + dependencies = [ 650 + "autocfg", 651 + ] 652 + 653 + [[package]] 654 + name = "once_cell" 655 + version = "1.18.0" 656 + source = "registry+https://github.com/rust-lang/crates.io-index" 657 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 658 + 659 + [[package]] 660 + name = "oorandom" 661 + version = "11.1.3" 662 + source = "registry+https://github.com/rust-lang/crates.io-index" 663 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 664 + 665 + [[package]] 666 + name = "os_str_bytes" 667 + version = "6.5.1" 668 + source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" 670 + 671 + [[package]] 672 + name = "paste" 673 + version = "1.0.12" 674 + source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 676 + 677 + [[package]] 678 + name = "pin-project-lite" 679 + version = "0.2.9" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 682 + 683 + [[package]] 684 + name = "ppv-lite86" 685 + version = "0.2.17" 686 + source = "registry+https://github.com/rust-lang/crates.io-index" 687 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 688 + 689 + [[package]] 690 + name = "predicates" 691 + version = "3.0.3" 692 + source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" 694 + dependencies = [ 695 + "anstyle", 696 + "difflib", 697 + "itertools", 698 + "predicates-core", 699 + ] 700 + 701 + [[package]] 702 + name = "predicates-core" 703 + version = "1.0.6" 704 + source = "registry+https://github.com/rust-lang/crates.io-index" 705 + checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 706 + 707 + [[package]] 708 + name = "predicates-tree" 709 + version = "1.0.9" 710 + source = "registry+https://github.com/rust-lang/crates.io-index" 711 + checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 712 + dependencies = [ 713 + "predicates-core", 714 + "termtree", 715 + ] 716 + 717 + [[package]] 718 + name = "proc-macro2" 719 + version = "1.0.60" 720 + source = "registry+https://github.com/rust-lang/crates.io-index" 721 + checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406" 722 + dependencies = [ 723 + "unicode-ident", 724 + ] 725 + 726 + [[package]] 727 + name = "quote" 728 + version = "1.0.28" 729 + source = "registry+https://github.com/rust-lang/crates.io-index" 730 + checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 731 + dependencies = [ 732 + "proc-macro2", 733 + ] 734 + 735 + [[package]] 736 + name = "rand" 737 + version = "0.8.5" 738 + source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 740 + dependencies = [ 741 + "libc", 742 + "rand_chacha", 743 + "rand_core", 744 + ] 745 + 746 + [[package]] 747 + name = "rand_chacha" 748 + version = "0.3.1" 749 + source = "registry+https://github.com/rust-lang/crates.io-index" 750 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 751 + dependencies = [ 752 + "ppv-lite86", 753 + "rand_core", 754 + ] 755 + 756 + [[package]] 757 + name = "rand_core" 758 + version = "0.6.4" 759 + source = "registry+https://github.com/rust-lang/crates.io-index" 760 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 761 + dependencies = [ 762 + "getrandom", 763 + ] 764 + 765 + [[package]] 766 + name = "redox_syscall" 767 + version = "0.2.16" 768 + source = "registry+https://github.com/rust-lang/crates.io-index" 769 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 770 + dependencies = [ 771 + "bitflags", 772 + ] 773 + 774 + [[package]] 775 + name = "redox_users" 776 + version = "0.4.3" 777 + source = "registry+https://github.com/rust-lang/crates.io-index" 778 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 779 + dependencies = [ 780 + "getrandom", 781 + "redox_syscall", 782 + "thiserror", 783 + ] 784 + 785 + [[package]] 786 + name = "regex" 787 + version = "1.8.4" 788 + source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f" 790 + dependencies = [ 791 + "regex-syntax", 792 + ] 793 + 794 + [[package]] 795 + name = "regex-automata" 796 + version = "0.1.10" 797 + source = "registry+https://github.com/rust-lang/crates.io-index" 798 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 799 + 800 + [[package]] 801 + name = "regex-syntax" 802 + version = "0.7.2" 803 + source = "registry+https://github.com/rust-lang/crates.io-index" 804 + checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 805 + 806 + [[package]] 807 + name = "rustix" 808 + version = "0.35.13" 809 + source = "registry+https://github.com/rust-lang/crates.io-index" 810 + checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9" 811 + dependencies = [ 812 + "bitflags", 813 + "errno 0.2.8", 814 + "io-lifetimes 0.7.5", 815 + "itoa", 816 + "libc", 817 + "linux-raw-sys 0.0.46", 818 + "once_cell", 819 + "windows-sys 0.42.0", 820 + ] 821 + 822 + [[package]] 823 + name = "rustix" 824 + version = "0.37.20" 825 + source = "registry+https://github.com/rust-lang/crates.io-index" 826 + checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" 827 + dependencies = [ 828 + "bitflags", 829 + "errno 0.3.1", 830 + "io-lifetimes 1.0.11", 831 + "libc", 832 + "linux-raw-sys 0.3.8", 833 + "windows-sys 0.48.0", 834 + ] 835 + 836 + [[package]] 837 + name = "ryu" 838 + version = "1.0.13" 839 + source = "registry+https://github.com/rust-lang/crates.io-index" 840 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 841 + 842 + [[package]] 843 + name = "same-file" 844 + version = "1.0.6" 845 + source = "registry+https://github.com/rust-lang/crates.io-index" 846 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 847 + dependencies = [ 848 + "winapi-util", 849 + ] 850 + 851 + [[package]] 852 + name = "serde" 853 + version = "1.0.164" 854 + source = "registry+https://github.com/rust-lang/crates.io-index" 855 + checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" 856 + dependencies = [ 857 + "serde_derive", 858 + ] 859 + 860 + [[package]] 861 + name = "serde_derive" 862 + version = "1.0.164" 863 + source = "registry+https://github.com/rust-lang/crates.io-index" 864 + checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" 865 + dependencies = [ 866 + "proc-macro2", 867 + "quote", 868 + "syn 2.0.18", 869 + ] 870 + 871 + [[package]] 872 + name = "serde_json" 873 + version = "1.0.97" 874 + source = "registry+https://github.com/rust-lang/crates.io-index" 875 + checksum = "bdf3bf93142acad5821c99197022e170842cdbc1c30482b98750c688c640842a" 876 + dependencies = [ 877 + "itoa", 878 + "ryu", 879 + "serde", 880 + ] 881 + 882 + [[package]] 883 + name = "shellexpand" 884 + version = "2.1.2" 885 + source = "registry+https://github.com/rust-lang/crates.io-index" 886 + checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4" 887 + dependencies = [ 888 + "dirs", 889 + ] 890 + 891 + [[package]] 892 + name = "smallvec" 893 + version = "1.10.0" 894 + source = "registry+https://github.com/rust-lang/crates.io-index" 895 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 896 + 897 + [[package]] 898 + name = "spin" 899 + version = "0.9.8" 900 + source = "registry+https://github.com/rust-lang/crates.io-index" 901 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 902 + 903 + [[package]] 904 + name = "strsim" 905 + version = "0.10.0" 906 + source = "registry+https://github.com/rust-lang/crates.io-index" 907 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 908 + 909 + [[package]] 910 + name = "syn" 911 + version = "1.0.109" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 914 + dependencies = [ 915 + "proc-macro2", 916 + "quote", 917 + "unicode-ident", 918 + ] 919 + 920 + [[package]] 921 + name = "syn" 922 + version = "2.0.18" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 925 + dependencies = [ 926 + "proc-macro2", 927 + "quote", 928 + "unicode-ident", 929 + ] 930 + 931 + [[package]] 932 + name = "system-interface" 933 + version = "0.23.0" 934 + source = "registry+https://github.com/rust-lang/crates.io-index" 935 + checksum = "92adbaf536f5aff6986e1e62ba36cee72b1718c5153eee08b9e728ddde3f6029" 936 + dependencies = [ 937 + "atty", 938 + "bitflags", 939 + "cap-fs-ext", 940 + "cap-std", 941 + "io-lifetimes 0.7.5", 942 + "rustix 0.35.13", 943 + "windows-sys 0.36.1", 944 + "winx", 945 + ] 946 + 947 + [[package]] 948 + name = "termtree" 949 + version = "0.4.1" 950 + source = "registry+https://github.com/rust-lang/crates.io-index" 951 + checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 952 + 953 + [[package]] 954 + name = "textwrap" 955 + version = "0.16.0" 956 + source = "registry+https://github.com/rust-lang/crates.io-index" 957 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 958 + 959 + [[package]] 960 + name = "thiserror" 961 + version = "1.0.40" 962 + source = "registry+https://github.com/rust-lang/crates.io-index" 963 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 964 + dependencies = [ 965 + "thiserror-impl", 966 + ] 967 + 968 + [[package]] 969 + name = "thiserror-impl" 970 + version = "1.0.40" 971 + source = "registry+https://github.com/rust-lang/crates.io-index" 972 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 973 + dependencies = [ 974 + "proc-macro2", 975 + "quote", 976 + "syn 2.0.18", 977 + ] 978 + 979 + [[package]] 980 + name = "tinytemplate" 981 + version = "1.2.1" 982 + source = "registry+https://github.com/rust-lang/crates.io-index" 983 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 984 + dependencies = [ 985 + "serde", 986 + "serde_json", 987 + ] 988 + 989 + [[package]] 990 + name = "tracing" 991 + version = "0.1.37" 992 + source = "registry+https://github.com/rust-lang/crates.io-index" 993 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 994 + dependencies = [ 995 + "cfg-if", 996 + "log", 997 + "pin-project-lite", 998 + "tracing-attributes", 999 + "tracing-core", 1000 + ] 1001 + 1002 + [[package]] 1003 + name = "tracing-attributes" 1004 + version = "0.1.25" 1005 + source = "registry+https://github.com/rust-lang/crates.io-index" 1006 + checksum = "8803eee176538f94ae9a14b55b2804eb7e1441f8210b1c31290b3bccdccff73b" 1007 + dependencies = [ 1008 + "proc-macro2", 1009 + "quote", 1010 + "syn 2.0.18", 1011 + ] 1012 + 1013 + [[package]] 1014 + name = "tracing-core" 1015 + version = "0.1.31" 1016 + source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 1018 + dependencies = [ 1019 + "once_cell", 1020 + ] 1021 + 1022 + [[package]] 1023 + name = "unicode-ident" 1024 + version = "1.0.9" 1025 + source = "registry+https://github.com/rust-lang/crates.io-index" 1026 + checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 1027 + 1028 + [[package]] 1029 + name = "unicode-width" 1030 + version = "0.1.10" 1031 + source = "registry+https://github.com/rust-lang/crates.io-index" 1032 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 1033 + 1034 + [[package]] 1035 + name = "utf8parse" 1036 + version = "0.2.1" 1037 + source = "registry+https://github.com/rust-lang/crates.io-index" 1038 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 1039 + 1040 + [[package]] 1041 + name = "wait-timeout" 1042 + version = "0.2.0" 1043 + source = "registry+https://github.com/rust-lang/crates.io-index" 1044 + checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 1045 + dependencies = [ 1046 + "libc", 1047 + ] 1048 + 1049 + [[package]] 1050 + name = "walkdir" 1051 + version = "2.3.3" 1052 + source = "registry+https://github.com/rust-lang/crates.io-index" 1053 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 1054 + dependencies = [ 1055 + "same-file", 1056 + "winapi-util", 1057 + ] 1058 + 1059 + [[package]] 1060 + name = "wasi" 1061 + version = "0.11.0+wasi-snapshot-preview1" 1062 + source = "registry+https://github.com/rust-lang/crates.io-index" 1063 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1064 + 1065 + [[package]] 1066 + name = "wasi-cap-std-sync" 1067 + version = "2.0.2" 1068 + source = "registry+https://github.com/rust-lang/crates.io-index" 1069 + checksum = "c4b4953999c746173c263b81e9e5e3e335ff47face7187ba2a5ecc91c716e6f3" 1070 + dependencies = [ 1071 + "anyhow", 1072 + "async-trait", 1073 + "cap-fs-ext", 1074 + "cap-rand", 1075 + "cap-std", 1076 + "cap-time-ext", 1077 + "fs-set-times", 1078 + "io-extras", 1079 + "io-lifetimes 0.7.5", 1080 + "is-terminal 0.3.0", 1081 + "once_cell", 1082 + "rustix 0.35.13", 1083 + "system-interface", 1084 + "tracing", 1085 + "wasi-common", 1086 + "windows-sys 0.36.1", 1087 + ] 1088 + 1089 + [[package]] 1090 + name = "wasi-common" 1091 + version = "2.0.2" 1092 + source = "registry+https://github.com/rust-lang/crates.io-index" 1093 + checksum = "d47faf4f76ebfdeb1f3346a949c6fbf2f2471afc68280b00c76d6c02221d80ad" 1094 + dependencies = [ 1095 + "anyhow", 1096 + "bitflags", 1097 + "cap-rand", 1098 + "cap-std", 1099 + "io-extras", 1100 + "rustix 0.35.13", 1101 + "thiserror", 1102 + "tracing", 1103 + "wiggle", 1104 + "windows-sys 0.36.1", 1105 + ] 1106 + 1107 + [[package]] 1108 + name = "wasm-encoder" 1109 + version = "0.22.1" 1110 + source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "9a584273ccc2d9311f1dd19dc3fb26054661fa3e373d53ede5d1144ba07a9acd" 1112 + dependencies = [ 1113 + "leb128", 1114 + ] 1115 + 1116 + [[package]] 1117 + name = "wasm-encoder" 1118 + version = "0.29.0" 1119 + source = "registry+https://github.com/rust-lang/crates.io-index" 1120 + checksum = "18c41dbd92eaebf3612a39be316540b8377c871cb9bde6b064af962984912881" 1121 + dependencies = [ 1122 + "leb128", 1123 + ] 1124 + 1125 + [[package]] 1126 + name = "wasmi" 1127 + version = "0.30.0" 1128 + dependencies = [ 1129 + "anyhow", 1130 + "assert_matches", 1131 + "criterion", 1132 + "intx", 1133 + "smallvec", 1134 + "spin", 1135 + "wasmi_arena", 1136 + "wasmi_core", 1137 + "wasmparser-nostd", 1138 + "wast 52.0.3", 1139 + "wat", 1140 + ] 1141 + 1142 + [[package]] 1143 + name = "wasmi_arena" 1144 + version = "0.4.0" 1145 + 1146 + [[package]] 1147 + name = "wasmi_cli" 1148 + version = "0.30.0" 1149 + dependencies = [ 1150 + "anyhow", 1151 + "assert_cmd", 1152 + "clap 4.3.4", 1153 + "wasmi", 1154 + "wasmi_wasi", 1155 + "wat", 1156 + ] 1157 + 1158 + [[package]] 1159 + name = "wasmi_core" 1160 + version = "0.12.0" 1161 + dependencies = [ 1162 + "downcast-rs", 1163 + "libm", 1164 + "num-traits", 1165 + "paste", 1166 + "rand", 1167 + ] 1168 + 1169 + [[package]] 1170 + name = "wasmi_wasi" 1171 + version = "0.30.0" 1172 + dependencies = [ 1173 + "wasi-cap-std-sync", 1174 + "wasi-common", 1175 + "wasmi", 1176 + "wat", 1177 + "wiggle", 1178 + ] 1179 + 1180 + [[package]] 1181 + name = "wasmparser-nostd" 1182 + version = "0.100.1" 1183 + source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724" 1185 + dependencies = [ 1186 + "indexmap-nostd", 1187 + ] 1188 + 1189 + [[package]] 1190 + name = "wast" 1191 + version = "35.0.2" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68" 1194 + dependencies = [ 1195 + "leb128", 1196 + ] 1197 + 1198 + [[package]] 1199 + name = "wast" 1200 + version = "52.0.3" 1201 + source = "registry+https://github.com/rust-lang/crates.io-index" 1202 + checksum = "15942180f265280eede7bc38b239e9770031d1821c02d905284216c645316430" 1203 + dependencies = [ 1204 + "leb128", 1205 + "memchr", 1206 + "unicode-width", 1207 + "wasm-encoder 0.22.1", 1208 + ] 1209 + 1210 + [[package]] 1211 + name = "wast" 1212 + version = "60.0.0" 1213 + source = "registry+https://github.com/rust-lang/crates.io-index" 1214 + checksum = "bd06cc744b536e30387e72a48fdd492105b9c938bb4f415c39c616a7a0a697ad" 1215 + dependencies = [ 1216 + "leb128", 1217 + "memchr", 1218 + "unicode-width", 1219 + "wasm-encoder 0.29.0", 1220 + ] 1221 + 1222 + [[package]] 1223 + name = "wat" 1224 + version = "1.0.66" 1225 + source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + checksum = "5abe520f0ab205366e9ac7d3e6b2fc71de44e32a2b58f2ec871b6b575bdcea3b" 1227 + dependencies = [ 1228 + "wast 60.0.0", 1229 + ] 1230 + 1231 + [[package]] 1232 + name = "wiggle" 1233 + version = "2.0.2" 1234 + source = "registry+https://github.com/rust-lang/crates.io-index" 1235 + checksum = "211ef4d238fd83bbe6f1bc57f3e2e20dc8b1f999188be252e7a535b696c6f84f" 1236 + dependencies = [ 1237 + "anyhow", 1238 + "async-trait", 1239 + "bitflags", 1240 + "thiserror", 1241 + "tracing", 1242 + "wiggle-macro", 1243 + "witx", 1244 + ] 1245 + 1246 + [[package]] 1247 + name = "wiggle-generate" 1248 + version = "2.0.2" 1249 + source = "registry+https://github.com/rust-lang/crates.io-index" 1250 + checksum = "63feec26b2fc3708c7a63316949ca75dd96988f03a17e4cb8d533dc62587ada4" 1251 + dependencies = [ 1252 + "anyhow", 1253 + "heck", 1254 + "proc-macro2", 1255 + "quote", 1256 + "shellexpand", 1257 + "syn 1.0.109", 1258 + "witx", 1259 + ] 1260 + 1261 + [[package]] 1262 + name = "wiggle-macro" 1263 + version = "2.0.2" 1264 + source = "registry+https://github.com/rust-lang/crates.io-index" 1265 + checksum = "494dc2646618c2b7fb0ec5e1d27dbac5ca31194c00a64698a4b5b35a83d80c21" 1266 + dependencies = [ 1267 + "proc-macro2", 1268 + "quote", 1269 + "syn 1.0.109", 1270 + "wiggle-generate", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "winapi" 1275 + version = "0.3.9" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1278 + dependencies = [ 1279 + "winapi-i686-pc-windows-gnu", 1280 + "winapi-x86_64-pc-windows-gnu", 1281 + ] 1282 + 1283 + [[package]] 1284 + name = "winapi-i686-pc-windows-gnu" 1285 + version = "0.4.0" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1288 + 1289 + [[package]] 1290 + name = "winapi-util" 1291 + version = "0.1.5" 1292 + source = "registry+https://github.com/rust-lang/crates.io-index" 1293 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1294 + dependencies = [ 1295 + "winapi", 1296 + ] 1297 + 1298 + [[package]] 1299 + name = "winapi-x86_64-pc-windows-gnu" 1300 + version = "0.4.0" 1301 + source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1303 + 1304 + [[package]] 1305 + name = "windows-sys" 1306 + version = "0.36.1" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 1309 + dependencies = [ 1310 + "windows_aarch64_msvc 0.36.1", 1311 + "windows_i686_gnu 0.36.1", 1312 + "windows_i686_msvc 0.36.1", 1313 + "windows_x86_64_gnu 0.36.1", 1314 + "windows_x86_64_msvc 0.36.1", 1315 + ] 1316 + 1317 + [[package]] 1318 + name = "windows-sys" 1319 + version = "0.42.0" 1320 + source = "registry+https://github.com/rust-lang/crates.io-index" 1321 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1322 + dependencies = [ 1323 + "windows_aarch64_gnullvm 0.42.2", 1324 + "windows_aarch64_msvc 0.42.2", 1325 + "windows_i686_gnu 0.42.2", 1326 + "windows_i686_msvc 0.42.2", 1327 + "windows_x86_64_gnu 0.42.2", 1328 + "windows_x86_64_gnullvm 0.42.2", 1329 + "windows_x86_64_msvc 0.42.2", 1330 + ] 1331 + 1332 + [[package]] 1333 + name = "windows-sys" 1334 + version = "0.48.0" 1335 + source = "registry+https://github.com/rust-lang/crates.io-index" 1336 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1337 + dependencies = [ 1338 + "windows-targets", 1339 + ] 1340 + 1341 + [[package]] 1342 + name = "windows-targets" 1343 + version = "0.48.0" 1344 + source = "registry+https://github.com/rust-lang/crates.io-index" 1345 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1346 + dependencies = [ 1347 + "windows_aarch64_gnullvm 0.48.0", 1348 + "windows_aarch64_msvc 0.48.0", 1349 + "windows_i686_gnu 0.48.0", 1350 + "windows_i686_msvc 0.48.0", 1351 + "windows_x86_64_gnu 0.48.0", 1352 + "windows_x86_64_gnullvm 0.48.0", 1353 + "windows_x86_64_msvc 0.48.0", 1354 + ] 1355 + 1356 + [[package]] 1357 + name = "windows_aarch64_gnullvm" 1358 + version = "0.42.2" 1359 + source = "registry+https://github.com/rust-lang/crates.io-index" 1360 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1361 + 1362 + [[package]] 1363 + name = "windows_aarch64_gnullvm" 1364 + version = "0.48.0" 1365 + source = "registry+https://github.com/rust-lang/crates.io-index" 1366 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1367 + 1368 + [[package]] 1369 + name = "windows_aarch64_msvc" 1370 + version = "0.36.1" 1371 + source = "registry+https://github.com/rust-lang/crates.io-index" 1372 + checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 1373 + 1374 + [[package]] 1375 + name = "windows_aarch64_msvc" 1376 + version = "0.42.2" 1377 + source = "registry+https://github.com/rust-lang/crates.io-index" 1378 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1379 + 1380 + [[package]] 1381 + name = "windows_aarch64_msvc" 1382 + version = "0.48.0" 1383 + source = "registry+https://github.com/rust-lang/crates.io-index" 1384 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1385 + 1386 + [[package]] 1387 + name = "windows_i686_gnu" 1388 + version = "0.36.1" 1389 + source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 1391 + 1392 + [[package]] 1393 + name = "windows_i686_gnu" 1394 + version = "0.42.2" 1395 + source = "registry+https://github.com/rust-lang/crates.io-index" 1396 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1397 + 1398 + [[package]] 1399 + name = "windows_i686_gnu" 1400 + version = "0.48.0" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1403 + 1404 + [[package]] 1405 + name = "windows_i686_msvc" 1406 + version = "0.36.1" 1407 + source = "registry+https://github.com/rust-lang/crates.io-index" 1408 + checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 1409 + 1410 + [[package]] 1411 + name = "windows_i686_msvc" 1412 + version = "0.42.2" 1413 + source = "registry+https://github.com/rust-lang/crates.io-index" 1414 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1415 + 1416 + [[package]] 1417 + name = "windows_i686_msvc" 1418 + version = "0.48.0" 1419 + source = "registry+https://github.com/rust-lang/crates.io-index" 1420 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1421 + 1422 + [[package]] 1423 + name = "windows_x86_64_gnu" 1424 + version = "0.36.1" 1425 + source = "registry+https://github.com/rust-lang/crates.io-index" 1426 + checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 1427 + 1428 + [[package]] 1429 + name = "windows_x86_64_gnu" 1430 + version = "0.42.2" 1431 + source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1433 + 1434 + [[package]] 1435 + name = "windows_x86_64_gnu" 1436 + version = "0.48.0" 1437 + source = "registry+https://github.com/rust-lang/crates.io-index" 1438 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1439 + 1440 + [[package]] 1441 + name = "windows_x86_64_gnullvm" 1442 + version = "0.42.2" 1443 + source = "registry+https://github.com/rust-lang/crates.io-index" 1444 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1445 + 1446 + [[package]] 1447 + name = "windows_x86_64_gnullvm" 1448 + version = "0.48.0" 1449 + source = "registry+https://github.com/rust-lang/crates.io-index" 1450 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1451 + 1452 + [[package]] 1453 + name = "windows_x86_64_msvc" 1454 + version = "0.36.1" 1455 + source = "registry+https://github.com/rust-lang/crates.io-index" 1456 + checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 1457 + 1458 + [[package]] 1459 + name = "windows_x86_64_msvc" 1460 + version = "0.42.2" 1461 + source = "registry+https://github.com/rust-lang/crates.io-index" 1462 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1463 + 1464 + [[package]] 1465 + name = "windows_x86_64_msvc" 1466 + version = "0.48.0" 1467 + source = "registry+https://github.com/rust-lang/crates.io-index" 1468 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1469 + 1470 + [[package]] 1471 + name = "winx" 1472 + version = "0.33.0" 1473 + source = "registry+https://github.com/rust-lang/crates.io-index" 1474 + checksum = "b7b01e010390eb263a4518c8cebf86cb67469d1511c00b749a47b64c39e8054d" 1475 + dependencies = [ 1476 + "bitflags", 1477 + "io-lifetimes 0.7.5", 1478 + "windows-sys 0.36.1", 1479 + ] 1480 + 1481 + [[package]] 1482 + name = "witx" 1483 + version = "0.9.1" 1484 + source = "registry+https://github.com/rust-lang/crates.io-index" 1485 + checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b" 1486 + dependencies = [ 1487 + "anyhow", 1488 + "log", 1489 + "thiserror", 1490 + "wast 35.0.2", 1491 + ]
+34
pkgs/development/tools/wasmi/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "wasmi"; 8 + version = "0.30.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "paritytech"; 12 + repo = "wasmi"; 13 + rev = "v${version}"; 14 + hash = "sha256-0G/K61JP4SehhP+wD9uwCU1GRjzJdz4fkePv+IiqUY4="; 15 + fetchSubmodules = true; 16 + }; 17 + 18 + cargoLock = { 19 + lockFile = ./Cargo.lock; 20 + }; 21 + 22 + postPatch = '' 23 + ln -s ${./Cargo.lock} Cargo.lock 24 + ''; 25 + 26 + meta = with lib; { 27 + description = "An efficient WebAssembly interpreter"; 28 + homepage = "https://github.com/paritytech/wasmi"; 29 + changelog = "https://github.com/paritytech/wasmi/blob/${src.rev}/CHANGELOG.md"; 30 + license = with licenses; [ asl20 mit ]; 31 + mainProgram = "wasmi_cli"; 32 + maintainers = with maintainers; [ dit7ya ]; 33 + }; 34 + }
+4 -36
pkgs/tools/graphics/jhead/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libjpeg, fetchpatch }: 2 3 stdenv.mkDerivation rec { 4 pname = "jhead"; 5 - version = "3.06.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "Matthias-Wandel"; 9 repo = "jhead"; 10 rev = version; 11 - sha256 = "0zgh36486cpcnf7xg6dwf7rhz2h4gpayqvdk8hmrx6y418b2pfyf"; 12 }; 13 14 - patches = [ 15 - # Just a spelling/whitespace change, but makes it easier to apply the rest. 16 - (fetchpatch { 17 - url = "https://github.com/Matthias-Wandel/jhead/commit/8384c6fd2ebfb8eb8bd96616343e73af0e575131.patch"; 18 - sha256 = "sha256-f3FOIqgFr5QPAsBjvUVAOf1CAqw8pNAVx+pZZuMjq3c="; 19 - includes = [ "jhead.c" ]; 20 - }) 21 - (fetchpatch { 22 - url = "https://github.com/Matthias-Wandel/jhead/commit/63aff8e9bd8c970fedf87f0ec3a1f3368bf2421e.patch"; 23 - sha256 = "sha256-jyhGdWuwd/eP5uuS8uLYiTJZJdxxLYdsvl0jnQC+Y5c="; 24 - includes = [ "jhead.c" ]; 25 - }) 26 - 27 - # Fixes around CVE-2022-41751 28 - (fetchpatch { 29 - url = "https://github.com/Matthias-Wandel/jhead/commit/6985da52c9ad4f5f6c247269cb5508fae34a971c.patch"; 30 - sha256 = "sha256-8Uw0Udr9aZEMrD/0zS498MVw+rJqpFukvjb7FgzjgT4="; 31 - }) 32 - (fetchpatch { 33 - url = "https://github.com/Matthias-Wandel/jhead/commit/3fe905cf674f8dbac8a89e58cee1b4850abf9530.patch"; 34 - sha256 = "sha256-5995EV/pOktZc45c7fLl+oQqyutRDQJl3eNutR1JGJo="; 35 - }) 36 - (fetchpatch { 37 - url = "https://github.com/joachim-reichel/jhead/commit/ec67262b8e5a4b05d8ad6898a09f1dc3fc032062.patch"; 38 - sha256 = "sha256-a3KogIV45cRNthJSPygIRw1m2KBJZJSIGSWfsr7FWs4="; 39 - }) 40 - (fetchpatch { 41 - url = "https://github.com/joachim-reichel/jhead/commit/65de38cb68747c6f8397608b56b58ce15271a1fe.patch"; 42 - sha256 = "sha256-xf0d2hxW4rVZwffrYJVVFQ3cDMOcPoGbCdrrQKxf16M="; 43 - }) 44 - ]; 45 - 46 buildInputs = [ libjpeg ]; 47 48 makeFlags = [ "CPPFLAGS=" "CFLAGS=-O3" "LDFLAGS=" ]; ··· 59 ''; 60 61 meta = with lib; { 62 - homepage = "http://www.sentex.net/~mwandel/jhead/"; 63 description = "Exif Jpeg header manipulation tool"; 64 license = licenses.publicDomain; 65 maintainers = with maintainers; [ rycee ];
··· 1 + { lib, stdenv, fetchFromGitHub, libjpeg }: 2 3 stdenv.mkDerivation rec { 4 pname = "jhead"; 5 + version = "3.08"; 6 7 src = fetchFromGitHub { 8 owner = "Matthias-Wandel"; 9 repo = "jhead"; 10 rev = version; 11 + hash = "sha256-d1cuy4kkwY/21UcpNN6judrFxGVyEH+b+0TaZw9hP2E="; 12 }; 13 14 buildInputs = [ libjpeg ]; 15 16 makeFlags = [ "CPPFLAGS=" "CFLAGS=-O3" "LDFLAGS=" ]; ··· 27 ''; 28 29 meta = with lib; { 30 + homepage = "https://www.sentex.net/~mwandel/jhead/"; 31 description = "Exif Jpeg header manipulation tool"; 32 license = licenses.publicDomain; 33 maintainers = with maintainers; [ rycee ];
+2 -2
pkgs/tools/misc/ugs/default.nix
··· 19 in 20 stdenv.mkDerivation rec { 21 pname = "ugs"; 22 - version = "2.0.17"; 23 24 src = fetchzip { 25 url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip"; 26 - hash = "sha256-m4oD0ibrlVwP8ZS1pjnu/QaWmQMQlAWtZV2MGhB9X1A="; 27 }; 28 29 dontUnpack = true;
··· 19 in 20 stdenv.mkDerivation rec { 21 pname = "ugs"; 22 + version = "2.0.18"; 23 24 src = fetchzip { 25 url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip"; 26 + hash = "sha256-NaEDG3dmpPRwfVvwYJQXqpCcAkRPeQ1EcKoa0xKeDFA="; 27 }; 28 29 dontUnpack = true;
+9 -8
pkgs/tools/networking/dhcpdump/default.nix
··· 1 { lib 2 , stdenv 3 - , fetchurl 4 , perl 5 , installShellFiles 6 , libpcap ··· 8 9 stdenv.mkDerivation rec { 10 pname = "dhcpdump"; 11 - version = "1.8"; 12 13 - src = fetchurl { 14 - url = "http://www.mavetju.org/download/dhcpdump-${version}.tar.gz"; 15 - hash = "sha256-bV65QYFi+3OLxW5MFoLOf3OS3ZblaMyZbkTCjef3cZA="; 16 }; 17 18 strictDeps = true; ··· 26 libpcap 27 ]; 28 29 - hardeningDisable = [ "fortify" ]; 30 - 31 installPhase = '' 32 runHook preBuild 33 ··· 39 40 meta = with lib; { 41 description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses"; 42 - homepage = "http://www.mavetju.org/unix/dhcpdump-man.php"; 43 platforms = platforms.linux; 44 maintainers = with maintainers; [ nickcao ]; 45 license = licenses.bsd2;
··· 1 { lib 2 , stdenv 3 + , fetchFromGitHub 4 , perl 5 , installShellFiles 6 , libpcap ··· 8 9 stdenv.mkDerivation rec { 10 pname = "dhcpdump"; 11 + version = "1.9"; 12 13 + src = fetchFromGitHub { 14 + owner = "bbonev"; 15 + repo = pname; 16 + rev = "refs/tags/v${version}"; 17 + hash = "sha256-ck6DLsLQ00unNqPLBKkxaJLDCaPFjTFJcQjTbKSq0U8="; 18 }; 19 20 strictDeps = true; ··· 28 libpcap 29 ]; 30 31 installPhase = '' 32 runHook preBuild 33 ··· 39 40 meta = with lib; { 41 description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses"; 42 + homepage = "https://github.com/bbonev/dhcpdump"; 43 + changelog = "https://github.com/bbonev/dhcpdump/releases/tag/v${version}"; 44 platforms = platforms.linux; 45 maintainers = with maintainers; [ nickcao ]; 46 license = licenses.bsd2;
+3 -3
pkgs/tools/security/cosign/default.nix
··· 13 }: 14 buildGoModule rec { 15 pname = "cosign"; 16 - version = "2.0.2"; 17 18 src = fetchFromGitHub { 19 owner = "sigstore"; 20 repo = pname; 21 rev = "v${version}"; 22 - hash = "sha256-jJHLCN9hEQy4ijFm6g2E9WvTT43kvPhdRW1aczvEcFs="; 23 }; 24 25 buildInputs = ··· 28 29 nativeBuildInputs = [ pkg-config installShellFiles ]; 30 31 - vendorHash = "sha256-X5CY8U3IgxWD3zpb1f9R9Xk/25x1zxfYXkvXbelFBQc="; 32 33 subPackages = [ 34 "cmd/cosign"
··· 13 }: 14 buildGoModule rec { 15 pname = "cosign"; 16 + version = "2.1.0"; 17 18 src = fetchFromGitHub { 19 owner = "sigstore"; 20 repo = pname; 21 rev = "v${version}"; 22 + hash = "sha256-fZIkRmQAnLTllA0UBOIlbYCfjvEQ9LTXymGJ480gtb0="; 23 }; 24 25 buildInputs = ··· 28 29 nativeBuildInputs = [ pkg-config installShellFiles ]; 30 31 + vendorHash = "sha256-CYDhr9E8xg/mn8yUP6xy5gFl15tNEcUfGUTpmHyDGaY="; 32 33 subPackages = [ 34 "cmd/cosign"
+2
pkgs/top-level/all-packages.nix
··· 13827 inherit (darwin.apple_sdk_11_0.frameworks) Foundation; 13828 }; 13829 13830 welkin = callPackage ../tools/graphics/welkin { }; 13831 13832 wemux = callPackage ../tools/misc/wemux { };
··· 13827 inherit (darwin.apple_sdk_11_0.frameworks) Foundation; 13828 }; 13829 13830 + wasmi = callPackage ../development/tools/wasmi { }; 13831 + 13832 welkin = callPackage ../tools/graphics/welkin { }; 13833 13834 wemux = callPackage ../tools/misc/wemux { };