Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
be318b76 011bf8f5

+315 -2102
+18 -1
doc/stdenv/meta.chapter.md
··· 86 86 87 87 Attribute Set `lib.platforms` defines [various common lists](https://github.com/NixOS/nixpkgs/blob/master/lib/systems/doubles.nix) of platforms types. 88 88 89 + ### `badPlatforms` {#var-meta-badPlatforms} 90 + 91 + The list of Nix [platform types](https://github.com/NixOS/nixpkgs/blob/b03ac42b0734da3e7be9bf8d94433a5195734b19/lib/meta.nix#L75-L81) on which the package is known not to be buildable. 92 + Hydra will never create prebuilt binaries for these platform types, even if they are in [`meta.platforms`](#var-meta-platforms). 93 + In general it is preferable to set `meta.platforms = lib.platforms.all` and then exclude any platforms on which the package is known not to build. 94 + For example, a package which requires dynamic linking and cannot be linked statically could use this: 95 + 96 + ```nix 97 + meta.platforms = lib.platforms.all; 98 + meta.badPlatforms = [ lib.systems.inspect.patterns.isStatic ]; 99 + ``` 100 + 101 + The [`lib.meta.availableOn`](https://github.com/NixOS/nixpkgs/blob/b03ac42b0734da3e7be9bf8d94433a5195734b19/lib/meta.nix#L95-L106) function can be used to test whether or not a package is available (i.e. buildable) on a given platform. 102 + Some packages use this to automatically detect the maximum set of features with which they can be built. 103 + For example, `systemd` [requires dynamic linking](https://github.com/systemd/systemd/issues/20600#issuecomment-912338965), and [has a `meta.badPlatforms` setting](https://github.com/NixOS/nixpkgs/blob/b03ac42b0734da3e7be9bf8d94433a5195734b19/pkgs/os-specific/linux/systemd/default.nix#L752) similar to the one above. 104 + Packages which can be built with or without `systemd` support will use `lib.meta.availableOn` to detect whether or not `systemd` is available on the [`hostPlatform`](#ssec-cross-platform-parameters) for which they are being built; if it is not available (e.g. due to a statically-linked host platform like `pkgsStatic`) this support will be disabled by default. 105 + 89 106 ### `tests` {#var-meta-tests} 90 107 91 108 ::: {.warning} ··· 173 190 174 191 ### `hydraPlatforms` {#var-meta-hydraPlatforms} 175 192 176 - The list of Nix platform types for which the Hydra instance at `hydra.nixos.org` will build the package. (Hydra is the Nix-based continuous build system.) It defaults to the value of `meta.platforms`. Thus, the only reason to set `meta.hydraPlatforms` is if you want `hydra.nixos.org` to build the package on a subset of `meta.platforms`, or not at all, e.g. 193 + The list of Nix platform types for which the [Hydra](https://github.com/nixos/hydra) [instance at `hydra.nixos.org`](https://nixos.org/hydra) will build the package. (Hydra is the Nix-based continuous build system.) It defaults to the value of `meta.platforms`. Thus, the only reason to set `meta.hydraPlatforms` is if you want `hydra.nixos.org` to build the package on a subset of `meta.platforms`, or not at all, e.g. 177 194 178 195 ```nix 179 196 meta.platforms = lib.platforms.linux;
+2 -2
pkgs/applications/blockchains/framesh/default.nix
··· 2 2 3 3 let 4 4 pname = "framesh"; 5 - version = "0.5.0-beta.22"; 5 + version = "0.6.2"; 6 6 src = fetchurl { 7 7 url = "https://github.com/floating/frame/releases/download/v${version}/Frame-${version}.AppImage"; 8 - sha256 = "sha256-/y7Pf1ADtz0CBeKKCHtSPOYvU7HCpq7hM/J4Ddq1XiA="; 8 + sha256 = "sha256-nN5+6SwfHcwhePlbsXjT3qNd/d6Xqnd85NVC8vw3ehk="; 9 9 }; 10 10 11 11 appimageContents = appimageTools.extractType2 {
+6 -6
pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/default.nix
··· 29 29 , tl-expected 30 30 , hunspell 31 31 , glibmm_2_68 32 - , webkitgtk_4_1 32 + , webkitgtk_6_0 33 33 , jemalloc 34 34 , rnnoise 35 35 , protobuf ··· 73 73 in 74 74 stdenv.mkDerivation rec { 75 75 pname = "telegram-desktop"; 76 - version = "4.7.1"; 76 + version = "4.8.0"; 77 77 # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py 78 78 79 79 src = fetchFromGitHub { ··· 81 81 repo = "tdesktop"; 82 82 rev = "v${version}"; 83 83 fetchSubmodules = true; 84 - sha256 = "1qv8029xzp2j1j58b1lkw3q53cwaaazvp2la80mfbjv348c29iyk"; 84 + sha256 = "1ari4kdjd99klrla0rn4cjjc54d6glf17s0q881f67vh2v5zdwf0"; 85 85 }; 86 86 87 87 patches = [ ··· 101 101 --replace '"libasound.so.2"' '"${alsa-lib}/lib/libasound.so.2"' 102 102 substituteInPlace Telegram/ThirdParty/libtgvoip/os/linux/AudioPulse.cpp \ 103 103 --replace '"libpulse.so.0"' '"${libpulseaudio}/lib/libpulse.so.0"' 104 - substituteInPlace Telegram/lib_webview/webview/platform/linux/webview_linux_webkit_gtk.cpp \ 105 - --replace '"libwebkit2gtk-4.1.so.0"' '"${webkitgtk_4_1}/lib/libwebkit2gtk-4.1.so.0"' 104 + substituteInPlace Telegram/lib_webview/webview/platform/linux/webview_linux_webkitgtk_library.cpp \ 105 + --replace '"libwebkitgtk-6.0.so.4"' '"${webkitgtk_6_0}/lib/libwebkitgtk-6.0.so.4"' 106 106 ''; 107 107 108 108 # We want to run wrapProgram manually (with additional parameters) ··· 140 140 tl-expected 141 141 hunspell 142 142 glibmm_2_68 143 - webkitgtk_4_1 143 + webkitgtk_6_0 144 144 jemalloc 145 145 rnnoise 146 146 protobuf
+3 -3
pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/tg_owt.nix
··· 9 9 10 10 stdenv.mkDerivation { 11 11 pname = "tg_owt"; 12 - version = "unstable-2023-03-14"; 12 + version = "unstable-2023-04-18"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "desktop-app"; 16 16 repo = "tg_owt"; 17 - rev = "1a18da2ed4d5ce134e984d1586b915738e0da257"; 18 - sha256 = "18srnl688ng8grfpmgcjpdyr4cw87yjdvyw94b2jjq5jmnq9n3a3"; 17 + rev = "fe316b0c5a155cceb2ddecee70d7b582cadfa225"; 18 + sha256 = "0wl2d1ycvf32prqjxxh6a14zgaqkk7s545cv2pn4dryn6lf7bfsp"; 19 19 fetchSubmodules = true; 20 20 }; 21 21
+2 -2
pkgs/applications/science/chemistry/octopus/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "octopus"; 15 - version = "12.1"; 15 + version = "12.2"; 16 16 17 17 src = fetchFromGitLab { 18 18 owner = "octopus-code"; 19 19 repo = "octopus"; 20 20 rev = version; 21 - sha256 = "sha256-dQdb4wGKOQefrgtQVorq6EH9IiAh1tMmj3GiZOXgTBY="; 21 + sha256 = "sha256-tM3D0geOT+8X3EofI+iPR48z8LKFSxQMoO/W/be+OFg="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/applications/science/molecular-dynamics/gromacs/default.nix
··· 19 19 20 20 in stdenv.mkDerivation rec { 21 21 pname = "gromacs"; 22 - version = "2023"; 22 + version = "2023.1"; 23 23 24 24 src = fetchurl { 25 25 url = "ftp://ftp.gromacs.org/pub/gromacs/gromacs-${version}.tar.gz"; 26 - sha256 = "sha256-rJLG2nL7vMpBT9io2Xnlbs8XxMHNq+0tpc+05yd7e6g="; 26 + sha256 = "sha256-7vK7Smy2MUz52kfybfKg0nr0v3swmXI9Q2AQc6sKQvQ="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ cmake ];
+142
pkgs/development/libraries/lightgbm/default.nix
··· 1 + { config, stdenv, lib, fetchFromGitHub, cmake, gtest, doCheck ? true 2 + , cudaSupport ? config.cudaSupport or false, openclSupport ? false, mpiSupport ? false, javaWrapper ? false, hdfsSupport ? false 3 + , rLibrary ? false, cudaPackages, opencl-headers, ocl-icd, boost, llvmPackages, openmpi, openjdk, swig, hadoop, R, rPackages }: 4 + 5 + assert doCheck -> mpiSupport != true; 6 + assert openclSupport -> cudaSupport != true; 7 + assert cudaSupport -> openclSupport != true; 8 + 9 + stdenv.mkDerivation rec { 10 + pnameBase = "lightgbm"; 11 + # prefix with r when building the R library 12 + # The R package build results in a special binary file 13 + # that contains a subset of the .so file use for the CLI 14 + # and python version. In general, the CRAN version from 15 + # nixpkgs's r-modules should be used, but this non-standard 16 + # build allows for enabling CUDA support and other features 17 + # which aren't included in the CRAN release. Build with: 18 + # nix-build -E "with (import $NIXPKGS{}); \ 19 + # let \ 20 + # lgbm = lightgbm.override{rLibrary = true; doCheck = false;}; \ 21 + # in \ 22 + # rWrapper.override{ packages = [ lgbm ]; }" 23 + pname = lib.optionalString rLibrary "r-" + pnameBase; 24 + version = "3.3.5"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "microsoft"; 28 + repo = pnameBase; 29 + rev = "v${version}"; 30 + fetchSubmodules = true; 31 + hash = "sha256-QRuBbMVtD5J5ECw+bAp57bWaRc/fATMcTq+AKikhj1I="; 32 + }; 33 + 34 + nativeBuildInputs = [ cmake ] 35 + ++ lib.optionals stdenv.isDarwin [ llvmPackages.openmp ] 36 + ++ lib.optionals openclSupport [ opencl-headers ocl-icd boost ] 37 + ++ lib.optionals mpiSupport [ openmpi ] 38 + ++ lib.optionals hdfsSupport [ hadoop ] 39 + ++ lib.optionals (hdfsSupport || javaWrapper) [ openjdk ] 40 + ++ lib.optionals javaWrapper [ swig ] 41 + ++ lib.optionals rLibrary [ R ]; 42 + 43 + buildInputs = [ gtest ] 44 + ++ lib.optional cudaSupport cudaPackages.cudatoolkit; 45 + 46 + propagatedBuildInputs = lib.optionals rLibrary [ 47 + rPackages.data_table 48 + rPackages.jsonlite 49 + rPackages.Matrix 50 + rPackages.R6 51 + ]; 52 + 53 + # Skip APPLE in favor of linux build for .so files 54 + postPatch = '' 55 + export PROJECT_SOURCE_DIR=./ 56 + substituteInPlace CMakeLists.txt \ 57 + --replace "find_package(GTest CONFIG)" "find_package(GTest REQUIRED)" \ 58 + --replace "OpenCL_INCLUDE_DIRS}" "OpenCL_INCLUDE_DIRS}" \ 59 + --replace "elseif(APPLE)" "elseif(APPLESKIP)" 60 + substituteInPlace \ 61 + external_libs/compute/include/boost/compute/cl.hpp \ 62 + external_libs/compute/include/boost/compute/cl_ext.hpp \ 63 + --replace "include <OpenCL/" "include <CL/" 64 + substituteInPlace build_r.R \ 65 + --replace "file.path(getwd(), \"lightgbm_r\")" "'$out/tmp'" \ 66 + --replace \ 67 + "install_args <- c(\"CMD\", \"INSTALL\", \"--no-multiarch\", \"--with-keep.source\", tarball)" \ 68 + "install_args <- c(\"CMD\", \"INSTALL\", \"--no-multiarch\", \"--with-keep.source\", \"-l $out/library\", tarball)" 69 + ''; 70 + 71 + cmakeFlags = lib.optionals doCheck [ "-DBUILD_CPP_TEST=ON" ] 72 + ++ lib.optionals cudaSupport [ "-DUSE_CUDA=1" "-DCMAKE_CXX_COMPILER=${cudaPackages.cudatoolkit.cc}/bin/cc" ] 73 + ++ lib.optionals openclSupport [ "-DUSE_GPU=ON" ] 74 + ++ lib.optionals mpiSupport [ "-DUSE_MPI=ON" ] 75 + ++ lib.optionals hdfsSupport [ 76 + "-DUSE_HDFS=ON" 77 + "-DHDFS_LIB=${hadoop}/lib/hadoop-3.3.1/lib/native/libhdfs.so" 78 + "-DHDFS_INCLUDE_DIR=${hadoop}/lib/hadoop-3.3.1/include" ] 79 + ++ lib.optionals javaWrapper [ "-DUSE_SWIG=ON" ] 80 + ++ lib.optionals rLibrary [ "-D__BUILD_FOR_R=ON" ]; 81 + 82 + configurePhase = lib.optionals rLibrary '' 83 + export R_LIBS_SITE="$out/library:$R_LIBS_SITE''${R_LIBS_SITE:+:}" 84 + ''; 85 + 86 + # set the R package buildPhase to null because lightgbm has a 87 + # custom builder script that builds and installs in one step 88 + buildPhase = lib.optionals rLibrary '' 89 + ''; 90 + 91 + inherit doCheck; 92 + 93 + installPhase = '' 94 + runHook preInstall 95 + '' + lib.optionalString (!rLibrary) '' 96 + mkdir -p $out 97 + mkdir -p $out/lib 98 + mkdir -p $out/bin 99 + cp -r ../include $out 100 + install -Dm755 ../lib_lightgbm.so $out/lib/lib_lightgbm.so 101 + install -Dm755 ../lightgbm $out/bin/lightgbm 102 + '' + lib.optionalString javaWrapper '' 103 + cp -r java $out 104 + cp -r com $out 105 + cp -r lightgbmlib.jar $out 106 + '' + '' 107 + '' + lib.optionalString javaWrapper '' 108 + cp -r java $out 109 + cp -r com $out 110 + cp -r lightgbmlib.jar $out 111 + '' + lib.optionalString rLibrary '' 112 + mkdir $out 113 + mkdir $out/tmp 114 + mkdir $out/library 115 + mkdir $out/library/lightgbm 116 + '' + lib.optionalString (rLibrary && (!openclSupport)) '' 117 + Rscript build_r.R 118 + rm -rf $out/tmp 119 + '' + lib.optionalString (rLibrary && openclSupport) '' 120 + Rscript build_r.R --use-gpu \ 121 + --opencl-library=${ocl-icd}/lib/libOpenCL.so \ 122 + --boost-librarydir=${boost} 123 + rm -rf $out/tmp 124 + '' + '' 125 + runHook postInstall 126 + ''; 127 + 128 + postFixup = lib.optionalString rLibrary '' 129 + if test -e $out/nix-support/propagated-build-inputs; then 130 + ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages 131 + fi 132 + ''; 133 + 134 + meta = with lib; { 135 + description = 136 + "LightGBM is a gradient boosting framework that uses tree based learning algorithms."; 137 + homepage = "https://github.com/microsoft/LightGBM"; 138 + license = licenses.mit; 139 + platforms = platforms.unix; 140 + maintainers = with maintainers; [ nviets ]; 141 + }; 142 + }
+2 -2
pkgs/development/libraries/ntirpc/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "ntirpc"; 7 - version = "4.3"; 7 + version = "5.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "nfs-ganesha"; 11 11 repo = "ntirpc"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-P9+t9dTiEKjloulypWPJ4sXWWemq9zPUH/Kctvq1SUQ="; 13 + sha256 = "sha256-xqnfo07EHwendzibIz187vdaenHwxg078D6zJvoyewc="; 14 14 }; 15 15 16 16 postPatch = ''
+1
pkgs/development/libraries/rocdbgapi/default.nix
··· 16 16 let 17 17 latex = lib.optionalAttrs buildDocs texlive.combine { 18 18 inherit (texlive) scheme-small 19 + changepage 19 20 latexmk 20 21 varwidth 21 22 multirow
-23
pkgs/development/python-modules/pyblake2/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - }: 5 - 6 - buildPythonPackage rec { 7 - pname = "pyblake2"; 8 - version = "1.1.2"; 9 - 10 - src = fetchPypi { 11 - inherit pname version; 12 - sha256 = "5ccc7eb02edb82fafb8adbb90746af71460fbc29aa0f822526fc976dff83e93f"; 13 - }; 14 - 15 - # requires setting up sphinx doctest 16 - doCheck = false; 17 - 18 - meta = { 19 - description = "BLAKE2 hash function extension module"; 20 - license = lib.licenses.publicDomain; 21 - homepage = "https://github.com/dchest/pyblake2"; 22 - }; 23 - }
+2 -2
pkgs/development/python-modules/pyinsteon/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "pyinsteon"; 18 - version = "1.4.1"; 18 + version = "1.4.2"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.6"; ··· 24 24 owner = pname; 25 25 repo = pname; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-K8uMyMNZwe6Zr/Qb98wmTLz2+45bx7cmoApnUW5oNPw="; 27 + hash = "sha256-5c2hcW9XSEyIMlyrn70U7tgBWdxGrtJoQkjkYzlrbKE="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pylitterbot/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pylitterbot"; 17 - version = "2023.1.2"; 17 + version = "2023.4.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "natekspencer"; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-PSg0u4Beg0OVUMxaBCPxJSVO/MxBvCpDu2rQhiYT9OM="; 26 + hash = "sha256-nF6njY2qNoHW2ZGNDHNeTBTjSBbitJxitPgyayLaqSE="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
-2
pkgs/development/python-modules/trezor/default.nix
··· 14 14 , mnemonic 15 15 , pillow 16 16 , protobuf 17 - , pyblake2 18 17 , requests 19 18 , shamir-mnemonic 20 19 , simple-rlp ··· 47 46 mnemonic 48 47 pillow 49 48 protobuf 50 - pyblake2 51 49 requests 52 50 shamir-mnemonic 53 51 simple-rlp
+3 -2
pkgs/development/python-modules/ttp/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "ttp"; 21 - version = "0.9.2"; 21 + version = "0.9.4"; 22 22 format = "pyproject"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "dmulyalin"; 26 26 repo = pname; 27 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-KhQRC4zcLCnYUtQm08wJzb/YwBquOEGR5L0YUmnzheg="; 28 + hash = "sha256-iZJ38NQnofW9awisY5cFBIN1rjXinA6CpJYSCCnNaOY="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ ··· 102 102 ]; 103 103 104 104 meta = with lib; { 105 + changelog = "https://github.com/dmulyalin/ttp/releases/tag/${version}"; 105 106 description = "Template Text Parser"; 106 107 homepage = "https://github.com/dmulyalin/ttp"; 107 108 license = licenses.mit;
+22 -15
pkgs/development/python-modules/uamqp/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , buildPythonPackage 4 + , fetchFromGitHub 5 + , cython 4 6 , certifi 5 7 , CFNetwork 6 8 , cmake 7 9 , CoreFoundation 8 - , enum34 9 - , fetchpatch 10 - , fetchPypi 11 - , isPy3k 12 10 , libcxxabi 13 11 , openssl 14 12 , Security 15 - , six 13 + , pytestCheckHook 14 + , pytest-asyncio 16 15 }: 17 16 18 17 buildPythonPackage rec { 19 18 pname = "uamqp"; 20 19 version = "1.6.4"; 21 20 22 - src = fetchPypi { 23 - inherit pname version; 24 - hash = "sha256-IYMzJDXveIL60ick4/L2PT/VpRx/DGNdY0h5SLAuN0k="; 21 + src = fetchFromGitHub { 22 + owner = "Azure"; 23 + repo = "azure-uamqp-python"; 24 + rev = "refs/tags/v.${version}"; 25 + hash = "sha256-OjZTroaBuUB/dakl5gAYigJkim9EFiCwUEBo7z35vhQ="; 25 26 }; 26 27 27 28 patches = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ ··· 43 44 44 45 nativeBuildInputs = [ 45 46 cmake 47 + cython 46 48 ]; 47 49 48 - buildInputs = lib.optionals stdenv.isDarwin [ 50 + buildInputs = [ 51 + openssl 52 + ] ++ lib.optionals stdenv.isDarwin [ 49 53 CoreFoundation 50 54 CFNetwork 51 55 Security ··· 53 57 54 58 propagatedBuildInputs = [ 55 59 certifi 56 - openssl 57 - six 58 - ] ++ lib.optionals (!isPy3k) [ 59 - enum34 60 60 ]; 61 61 62 62 LDFLAGS = lib.optionals stdenv.isDarwin [ ··· 65 65 66 66 dontUseCmakeConfigure = true; 67 67 68 - # Project has no tests 69 - doCheck = false; 68 + preCheck = '' 69 + # remove src module, so tests use the installed module instead 70 + rm -r uamqp 71 + ''; 72 + 73 + nativeCheckInputs = [ 74 + pytestCheckHook 75 + pytest-asyncio 76 + ]; 70 77 71 78 pythonImportsCheck = [ 72 79 "uamqp"
+6 -6
pkgs/development/tools/build-managers/muon/default.nix
··· 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "muon" 19 19 + lib.optionalString embedSamurai "-embedded-samurai"; 20 - version = "0.1.0"; 20 + version = "0.2.0"; 21 21 22 22 src = fetchFromSourcehut { 23 23 name = "muon-src"; 24 24 owner = "~lattis"; 25 25 repo = "muon"; 26 26 rev = finalAttrs.version; 27 - hash = "sha256-m382/Y+qOYk7hHdDdOpiYWNWrqpnWPCG4AKGGkmLt4o="; 27 + hash = "sha256-ZHWyUV/BqM3ihauXDqDVkZURDDbBiRcEzptyGQmw94I="; 28 28 }; 29 29 30 30 outputs = [ "out" ] ++ lib.optionals buildDocs [ "man" ]; ··· 52 52 # URLs manually extracted from subprojects directory 53 53 meson-docs-wrap = fetchurl { 54 54 name = "meson-docs-wrap"; 55 - url = "https://mochiro.moe/wrap/meson-docs-0.63.0-239-g41a05ff93.tar.gz"; 56 - hash = "sha256-wg2mDkrkE1xVNXJf4sVm6cN1ozVeDbbw0CBYtixg5/Q="; 55 + url = "https://mochiro.moe/wrap/meson-docs-1.0.1-19-gdd8d4ee22.tar.gz"; 56 + hash = "sha256-jHSPdLFR5jUeds4e+hLZ6JOblor5iuCV5cIwoc4K9gI="; 57 57 }; 58 58 59 59 samurai-wrap = fetchurl { 60 60 name = "samurai-wrap"; 61 - url = "https://mochiro.moe/wrap/samurai-1.2-28-g4e3a595.tar.gz"; 62 - hash = "sha256-TZAEwndVgoWr/zhykfr0wcz9wM96yG44GfzM5p9TpBo="; 61 + url = "https://mochiro.moe/wrap/samurai-1.2-32-g81cef5d.tar.gz"; 62 + hash = "sha256-aPMAtScqweGljvOLaTuR6B0A0GQQQrVbRviXY4dpCoc="; 63 63 }; 64 64 in '' 65 65 pushd $sourceRoot/subprojects
-1995
pkgs/development/tools/misc/texlab/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 = "adler" 7 - version = "1.0.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 - 11 - [[package]] 12 - name = "ahash" 13 - version = "0.7.6" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 16 - dependencies = [ 17 - "getrandom", 18 - "once_cell", 19 - "version_check", 20 - ] 21 - 22 - [[package]] 23 - name = "aho-corasick" 24 - version = "0.7.20" 25 - source = "registry+https://github.com/rust-lang/crates.io-index" 26 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 27 - dependencies = [ 28 - "memchr", 29 - ] 30 - 31 - [[package]] 32 - name = "anes" 33 - version = "0.1.6" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 36 - 37 - [[package]] 38 - name = "ansi_term" 39 - version = "0.12.1" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 42 - dependencies = [ 43 - "winapi", 44 - ] 45 - 46 - [[package]] 47 - name = "anyhow" 48 - version = "1.0.69" 49 - source = "registry+https://github.com/rust-lang/crates.io-index" 50 - checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" 51 - 52 - [[package]] 53 - name = "arc-swap" 54 - version = "1.6.0" 55 - source = "registry+https://github.com/rust-lang/crates.io-index" 56 - checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 57 - 58 - [[package]] 59 - name = "assert_unordered" 60 - version = "0.3.5" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "1c74323b7881323eb351134e08ee5331594826789557afef8e309baf481b2264" 63 - dependencies = [ 64 - "ansi_term", 65 - ] 66 - 67 - [[package]] 68 - name = "atty" 69 - version = "0.2.14" 70 - source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 72 - dependencies = [ 73 - "hermit-abi 0.1.19", 74 - "libc", 75 - "winapi", 76 - ] 77 - 78 - [[package]] 79 - name = "autocfg" 80 - version = "1.1.0" 81 - source = "registry+https://github.com/rust-lang/crates.io-index" 82 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 83 - 84 - [[package]] 85 - name = "beef" 86 - version = "0.5.2" 87 - source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1" 89 - 90 - [[package]] 91 - name = "bitflags" 92 - version = "1.3.2" 93 - source = "registry+https://github.com/rust-lang/crates.io-index" 94 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 95 - 96 - [[package]] 97 - name = "block-buffer" 98 - version = "0.10.4" 99 - source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 101 - dependencies = [ 102 - "generic-array", 103 - ] 104 - 105 - [[package]] 106 - name = "bstr" 107 - version = "1.3.0" 108 - source = "registry+https://github.com/rust-lang/crates.io-index" 109 - checksum = "5ffdb39cb703212f3c11973452c2861b972f757b021158f3516ba10f2fa8b2c1" 110 - dependencies = [ 111 - "memchr", 112 - "serde", 113 - ] 114 - 115 - [[package]] 116 - name = "bumpalo" 117 - version = "3.12.0" 118 - source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 120 - 121 - [[package]] 122 - name = "cast" 123 - version = "0.3.0" 124 - source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 126 - 127 - [[package]] 128 - name = "cc" 129 - version = "1.0.79" 130 - source = "registry+https://github.com/rust-lang/crates.io-index" 131 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 132 - 133 - [[package]] 134 - name = "cfg-if" 135 - version = "1.0.0" 136 - source = "registry+https://github.com/rust-lang/crates.io-index" 137 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 138 - 139 - [[package]] 140 - name = "chrono" 141 - version = "0.4.23" 142 - source = "registry+https://github.com/rust-lang/crates.io-index" 143 - checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 144 - dependencies = [ 145 - "num-integer", 146 - "num-traits", 147 - ] 148 - 149 - [[package]] 150 - name = "ciborium" 151 - version = "0.2.0" 152 - source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 154 - dependencies = [ 155 - "ciborium-io", 156 - "ciborium-ll", 157 - "serde", 158 - ] 159 - 160 - [[package]] 161 - name = "ciborium-io" 162 - version = "0.2.0" 163 - source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 165 - 166 - [[package]] 167 - name = "ciborium-ll" 168 - version = "0.2.0" 169 - source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 171 - dependencies = [ 172 - "ciborium-io", 173 - "half", 174 - ] 175 - 176 - [[package]] 177 - name = "clap" 178 - version = "3.2.23" 179 - source = "registry+https://github.com/rust-lang/crates.io-index" 180 - checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 181 - dependencies = [ 182 - "bitflags", 183 - "clap_lex 0.2.4", 184 - "indexmap", 185 - "textwrap", 186 - ] 187 - 188 - [[package]] 189 - name = "clap" 190 - version = "4.1.8" 191 - source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5" 193 - dependencies = [ 194 - "bitflags", 195 - "clap_derive", 196 - "clap_lex 0.3.2", 197 - "is-terminal", 198 - "once_cell", 199 - "strsim", 200 - "termcolor", 201 - ] 202 - 203 - [[package]] 204 - name = "clap_derive" 205 - version = "4.1.8" 206 - source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0" 208 - dependencies = [ 209 - "heck", 210 - "proc-macro-error", 211 - "proc-macro2", 212 - "quote", 213 - "syn", 214 - ] 215 - 216 - [[package]] 217 - name = "clap_lex" 218 - version = "0.2.4" 219 - source = "registry+https://github.com/rust-lang/crates.io-index" 220 - checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 221 - dependencies = [ 222 - "os_str_bytes", 223 - ] 224 - 225 - [[package]] 226 - name = "clap_lex" 227 - version = "0.3.2" 228 - source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09" 230 - dependencies = [ 231 - "os_str_bytes", 232 - ] 233 - 234 - [[package]] 235 - name = "console" 236 - version = "0.15.5" 237 - source = "registry+https://github.com/rust-lang/crates.io-index" 238 - checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 239 - dependencies = [ 240 - "encode_unicode", 241 - "lazy_static", 242 - "libc", 243 - "windows-sys 0.42.0", 244 - ] 245 - 246 - [[package]] 247 - name = "countme" 248 - version = "3.0.1" 249 - source = "registry+https://github.com/rust-lang/crates.io-index" 250 - checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636" 251 - 252 - [[package]] 253 - name = "cpufeatures" 254 - version = "0.2.5" 255 - source = "registry+https://github.com/rust-lang/crates.io-index" 256 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 257 - dependencies = [ 258 - "libc", 259 - ] 260 - 261 - [[package]] 262 - name = "crc32fast" 263 - version = "1.3.2" 264 - source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 266 - dependencies = [ 267 - "cfg-if", 268 - ] 269 - 270 - [[package]] 271 - name = "criterion" 272 - version = "0.4.0" 273 - source = "registry+https://github.com/rust-lang/crates.io-index" 274 - checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 275 - dependencies = [ 276 - "anes", 277 - "atty", 278 - "cast", 279 - "ciborium", 280 - "clap 3.2.23", 281 - "criterion-plot", 282 - "itertools", 283 - "lazy_static", 284 - "num-traits", 285 - "oorandom", 286 - "plotters", 287 - "rayon", 288 - "regex", 289 - "serde", 290 - "serde_derive", 291 - "serde_json", 292 - "tinytemplate", 293 - "walkdir", 294 - ] 295 - 296 - [[package]] 297 - name = "criterion-plot" 298 - version = "0.5.0" 299 - source = "registry+https://github.com/rust-lang/crates.io-index" 300 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 301 - dependencies = [ 302 - "cast", 303 - "itertools", 304 - ] 305 - 306 - [[package]] 307 - name = "crossbeam" 308 - version = "0.8.2" 309 - source = "registry+https://github.com/rust-lang/crates.io-index" 310 - checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 311 - dependencies = [ 312 - "cfg-if", 313 - "crossbeam-channel", 314 - "crossbeam-deque", 315 - "crossbeam-epoch", 316 - "crossbeam-queue", 317 - "crossbeam-utils", 318 - ] 319 - 320 - [[package]] 321 - name = "crossbeam-channel" 322 - version = "0.5.7" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" 325 - dependencies = [ 326 - "cfg-if", 327 - "crossbeam-utils", 328 - ] 329 - 330 - [[package]] 331 - name = "crossbeam-deque" 332 - version = "0.8.3" 333 - source = "registry+https://github.com/rust-lang/crates.io-index" 334 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 335 - dependencies = [ 336 - "cfg-if", 337 - "crossbeam-epoch", 338 - "crossbeam-utils", 339 - ] 340 - 341 - [[package]] 342 - name = "crossbeam-epoch" 343 - version = "0.9.14" 344 - source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 346 - dependencies = [ 347 - "autocfg", 348 - "cfg-if", 349 - "crossbeam-utils", 350 - "memoffset 0.8.0", 351 - "scopeguard", 352 - ] 353 - 354 - [[package]] 355 - name = "crossbeam-queue" 356 - version = "0.3.8" 357 - source = "registry+https://github.com/rust-lang/crates.io-index" 358 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 359 - dependencies = [ 360 - "cfg-if", 361 - "crossbeam-utils", 362 - ] 363 - 364 - [[package]] 365 - name = "crossbeam-utils" 366 - version = "0.8.15" 367 - source = "registry+https://github.com/rust-lang/crates.io-index" 368 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 369 - dependencies = [ 370 - "cfg-if", 371 - ] 372 - 373 - [[package]] 374 - name = "crypto-common" 375 - version = "0.1.6" 376 - source = "registry+https://github.com/rust-lang/crates.io-index" 377 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 378 - dependencies = [ 379 - "generic-array", 380 - "typenum", 381 - ] 382 - 383 - [[package]] 384 - name = "dashmap" 385 - version = "5.4.0" 386 - source = "registry+https://github.com/rust-lang/crates.io-index" 387 - checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 388 - dependencies = [ 389 - "cfg-if", 390 - "hashbrown", 391 - "lock_api", 392 - "once_cell", 393 - "parking_lot_core", 394 - ] 395 - 396 - [[package]] 397 - name = "digest" 398 - version = "0.10.6" 399 - source = "registry+https://github.com/rust-lang/crates.io-index" 400 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 401 - dependencies = [ 402 - "block-buffer", 403 - "crypto-common", 404 - ] 405 - 406 - [[package]] 407 - name = "dirs" 408 - version = "4.0.0" 409 - source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 411 - dependencies = [ 412 - "dirs-sys", 413 - ] 414 - 415 - [[package]] 416 - name = "dirs-sys" 417 - version = "0.3.7" 418 - source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 420 - dependencies = [ 421 - "libc", 422 - "redox_users", 423 - "winapi", 424 - ] 425 - 426 - [[package]] 427 - name = "either" 428 - version = "1.8.1" 429 - source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 431 - 432 - [[package]] 433 - name = "encode_unicode" 434 - version = "0.3.6" 435 - source = "registry+https://github.com/rust-lang/crates.io-index" 436 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 437 - 438 - [[package]] 439 - name = "encoding_rs" 440 - version = "0.8.32" 441 - source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 443 - dependencies = [ 444 - "cfg-if", 445 - ] 446 - 447 - [[package]] 448 - name = "encoding_rs_io" 449 - version = "0.1.7" 450 - source = "registry+https://github.com/rust-lang/crates.io-index" 451 - checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83" 452 - dependencies = [ 453 - "encoding_rs", 454 - ] 455 - 456 - [[package]] 457 - name = "errno" 458 - version = "0.2.8" 459 - source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 461 - dependencies = [ 462 - "errno-dragonfly", 463 - "libc", 464 - "winapi", 465 - ] 466 - 467 - [[package]] 468 - name = "errno-dragonfly" 469 - version = "0.1.2" 470 - source = "registry+https://github.com/rust-lang/crates.io-index" 471 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 472 - dependencies = [ 473 - "cc", 474 - "libc", 475 - ] 476 - 477 - [[package]] 478 - name = "eyre" 479 - version = "0.6.8" 480 - source = "registry+https://github.com/rust-lang/crates.io-index" 481 - checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" 482 - dependencies = [ 483 - "indenter", 484 - "once_cell", 485 - ] 486 - 487 - [[package]] 488 - name = "fastrand" 489 - version = "1.9.0" 490 - source = "registry+https://github.com/rust-lang/crates.io-index" 491 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 492 - dependencies = [ 493 - "instant", 494 - ] 495 - 496 - [[package]] 497 - name = "fern" 498 - version = "0.6.1" 499 - source = "registry+https://github.com/rust-lang/crates.io-index" 500 - checksum = "3bdd7b0849075e79ee9a1836df22c717d1eba30451796fdc631b04565dd11e2a" 501 - dependencies = [ 502 - "log", 503 - ] 504 - 505 - [[package]] 506 - name = "filetime" 507 - version = "0.2.20" 508 - source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" 510 - dependencies = [ 511 - "cfg-if", 512 - "libc", 513 - "redox_syscall", 514 - "windows-sys 0.45.0", 515 - ] 516 - 517 - [[package]] 518 - name = "flate2" 519 - version = "1.0.25" 520 - source = "registry+https://github.com/rust-lang/crates.io-index" 521 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 522 - dependencies = [ 523 - "crc32fast", 524 - "miniz_oxide", 525 - ] 526 - 527 - [[package]] 528 - name = "flume" 529 - version = "0.10.14" 530 - source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 532 - dependencies = [ 533 - "futures-core", 534 - "futures-sink", 535 - "nanorand", 536 - "pin-project", 537 - "spin", 538 - ] 539 - 540 - [[package]] 541 - name = "fnv" 542 - version = "1.0.7" 543 - source = "registry+https://github.com/rust-lang/crates.io-index" 544 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 545 - 546 - [[package]] 547 - name = "form_urlencoded" 548 - version = "1.1.0" 549 - source = "registry+https://github.com/rust-lang/crates.io-index" 550 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 551 - dependencies = [ 552 - "percent-encoding", 553 - ] 554 - 555 - [[package]] 556 - name = "fsevent-sys" 557 - version = "4.1.0" 558 - source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 560 - dependencies = [ 561 - "libc", 562 - ] 563 - 564 - [[package]] 565 - name = "futures-core" 566 - version = "0.3.26" 567 - source = "registry+https://github.com/rust-lang/crates.io-index" 568 - checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 569 - 570 - [[package]] 571 - name = "futures-sink" 572 - version = "0.3.26" 573 - source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 575 - 576 - [[package]] 577 - name = "fuzzy-matcher" 578 - version = "0.3.7" 579 - source = "registry+https://github.com/rust-lang/crates.io-index" 580 - checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94" 581 - dependencies = [ 582 - "thread_local", 583 - ] 584 - 585 - [[package]] 586 - name = "generic-array" 587 - version = "0.14.6" 588 - source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 590 - dependencies = [ 591 - "typenum", 592 - "version_check", 593 - ] 594 - 595 - [[package]] 596 - name = "getrandom" 597 - version = "0.2.8" 598 - source = "registry+https://github.com/rust-lang/crates.io-index" 599 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 600 - dependencies = [ 601 - "cfg-if", 602 - "js-sys", 603 - "libc", 604 - "wasi", 605 - "wasm-bindgen", 606 - ] 607 - 608 - [[package]] 609 - name = "globset" 610 - version = "0.4.10" 611 - source = "registry+https://github.com/rust-lang/crates.io-index" 612 - checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 613 - dependencies = [ 614 - "aho-corasick", 615 - "bstr", 616 - "fnv", 617 - "log", 618 - "regex", 619 - ] 620 - 621 - [[package]] 622 - name = "half" 623 - version = "1.8.2" 624 - source = "registry+https://github.com/rust-lang/crates.io-index" 625 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 626 - 627 - [[package]] 628 - name = "hashbrown" 629 - version = "0.12.3" 630 - source = "registry+https://github.com/rust-lang/crates.io-index" 631 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 632 - dependencies = [ 633 - "ahash", 634 - ] 635 - 636 - [[package]] 637 - name = "hashlink" 638 - version = "0.8.1" 639 - source = "registry+https://github.com/rust-lang/crates.io-index" 640 - checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" 641 - dependencies = [ 642 - "hashbrown", 643 - ] 644 - 645 - [[package]] 646 - name = "heck" 647 - version = "0.4.1" 648 - source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 650 - 651 - [[package]] 652 - name = "hermit-abi" 653 - version = "0.1.19" 654 - source = "registry+https://github.com/rust-lang/crates.io-index" 655 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 656 - dependencies = [ 657 - "libc", 658 - ] 659 - 660 - [[package]] 661 - name = "hermit-abi" 662 - version = "0.2.6" 663 - source = "registry+https://github.com/rust-lang/crates.io-index" 664 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 665 - dependencies = [ 666 - "libc", 667 - ] 668 - 669 - [[package]] 670 - name = "hermit-abi" 671 - version = "0.3.1" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 674 - 675 - [[package]] 676 - name = "human_name" 677 - version = "2.0.1" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "42af7ece82db04720531abb16506781d40a72c8e62ecb0762d39746d2173255e" 680 - dependencies = [ 681 - "crossbeam-utils", 682 - "libc", 683 - "phf", 684 - "phf_codegen", 685 - "serde", 686 - "serde_json", 687 - "smallstr", 688 - "smallvec", 689 - "unicode-case-mapping", 690 - "unicode-normalization", 691 - "unicode-segmentation", 692 - "unidecode", 693 - ] 694 - 695 - [[package]] 696 - name = "idna" 697 - version = "0.3.0" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 700 - dependencies = [ 701 - "unicode-bidi", 702 - "unicode-normalization", 703 - ] 704 - 705 - [[package]] 706 - name = "indenter" 707 - version = "0.3.3" 708 - source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" 710 - 711 - [[package]] 712 - name = "indexmap" 713 - version = "1.9.2" 714 - source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 716 - dependencies = [ 717 - "autocfg", 718 - "hashbrown", 719 - ] 720 - 721 - [[package]] 722 - name = "inotify" 723 - version = "0.9.6" 724 - source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 726 - dependencies = [ 727 - "bitflags", 728 - "inotify-sys", 729 - "libc", 730 - ] 731 - 732 - [[package]] 733 - name = "inotify-sys" 734 - version = "0.1.5" 735 - source = "registry+https://github.com/rust-lang/crates.io-index" 736 - checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 737 - dependencies = [ 738 - "libc", 739 - ] 740 - 741 - [[package]] 742 - name = "insta" 743 - version = "1.28.0" 744 - source = "registry+https://github.com/rust-lang/crates.io-index" 745 - checksum = "fea5b3894afe466b4bcf0388630fc15e11938a6074af0cd637c825ba2ec8a099" 746 - dependencies = [ 747 - "console", 748 - "globset", 749 - "lazy_static", 750 - "linked-hash-map", 751 - "pest", 752 - "pest_derive", 753 - "serde", 754 - "similar", 755 - "walkdir", 756 - "yaml-rust", 757 - ] 758 - 759 - [[package]] 760 - name = "instant" 761 - version = "0.1.12" 762 - source = "registry+https://github.com/rust-lang/crates.io-index" 763 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 764 - dependencies = [ 765 - "cfg-if", 766 - ] 767 - 768 - [[package]] 769 - name = "io-lifetimes" 770 - version = "1.0.6" 771 - source = "registry+https://github.com/rust-lang/crates.io-index" 772 - checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3" 773 - dependencies = [ 774 - "libc", 775 - "windows-sys 0.45.0", 776 - ] 777 - 778 - [[package]] 779 - name = "is-terminal" 780 - version = "0.4.4" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" 783 - dependencies = [ 784 - "hermit-abi 0.3.1", 785 - "io-lifetimes", 786 - "rustix", 787 - "windows-sys 0.45.0", 788 - ] 789 - 790 - [[package]] 791 - name = "isocountry" 792 - version = "0.3.2" 793 - source = "registry+https://github.com/rust-lang/crates.io-index" 794 - checksum = "1ea1dc4bf0fb4904ba83ffdb98af3d9c325274e92e6e295e4151e86c96363e04" 795 - dependencies = [ 796 - "serde", 797 - "thiserror", 798 - ] 799 - 800 - [[package]] 801 - name = "itertools" 802 - version = "0.10.5" 803 - source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 805 - dependencies = [ 806 - "either", 807 - ] 808 - 809 - [[package]] 810 - name = "itoa" 811 - version = "1.0.6" 812 - source = "registry+https://github.com/rust-lang/crates.io-index" 813 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 814 - 815 - [[package]] 816 - name = "joinery" 817 - version = "2.1.0" 818 - source = "registry+https://github.com/rust-lang/crates.io-index" 819 - checksum = "72167d68f5fce3b8655487b8038691a3c9984ee769590f93f2a631f4ad64e4f5" 820 - 821 - [[package]] 822 - name = "js-sys" 823 - version = "0.3.61" 824 - source = "registry+https://github.com/rust-lang/crates.io-index" 825 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 826 - dependencies = [ 827 - "wasm-bindgen", 828 - ] 829 - 830 - [[package]] 831 - name = "kqueue" 832 - version = "1.0.7" 833 - source = "registry+https://github.com/rust-lang/crates.io-index" 834 - checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98" 835 - dependencies = [ 836 - "kqueue-sys", 837 - "libc", 838 - ] 839 - 840 - [[package]] 841 - name = "kqueue-sys" 842 - version = "1.0.3" 843 - source = "registry+https://github.com/rust-lang/crates.io-index" 844 - checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" 845 - dependencies = [ 846 - "bitflags", 847 - "libc", 848 - ] 849 - 850 - [[package]] 851 - name = "lazy_static" 852 - version = "1.4.0" 853 - source = "registry+https://github.com/rust-lang/crates.io-index" 854 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 855 - 856 - [[package]] 857 - name = "libc" 858 - version = "0.2.140" 859 - source = "registry+https://github.com/rust-lang/crates.io-index" 860 - checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 861 - 862 - [[package]] 863 - name = "linked-hash-map" 864 - version = "0.5.6" 865 - source = "registry+https://github.com/rust-lang/crates.io-index" 866 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 867 - 868 - [[package]] 869 - name = "linux-raw-sys" 870 - version = "0.1.4" 871 - source = "registry+https://github.com/rust-lang/crates.io-index" 872 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 873 - 874 - [[package]] 875 - name = "lock_api" 876 - version = "0.4.9" 877 - source = "registry+https://github.com/rust-lang/crates.io-index" 878 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 879 - dependencies = [ 880 - "autocfg", 881 - "scopeguard", 882 - ] 883 - 884 - [[package]] 885 - name = "log" 886 - version = "0.4.17" 887 - source = "registry+https://github.com/rust-lang/crates.io-index" 888 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 889 - dependencies = [ 890 - "cfg-if", 891 - ] 892 - 893 - [[package]] 894 - name = "logos" 895 - version = "0.12.1" 896 - source = "registry+https://github.com/rust-lang/crates.io-index" 897 - checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1" 898 - dependencies = [ 899 - "logos-derive", 900 - ] 901 - 902 - [[package]] 903 - name = "logos-derive" 904 - version = "0.12.1" 905 - source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c" 907 - dependencies = [ 908 - "beef", 909 - "fnv", 910 - "proc-macro2", 911 - "quote", 912 - "regex-syntax", 913 - "syn", 914 - ] 915 - 916 - [[package]] 917 - name = "lsp-server" 918 - version = "0.7.0" 919 - source = "registry+https://github.com/rust-lang/crates.io-index" 920 - checksum = "68a9b4c78d1c3f35c5864c90e9633377b5f374a4a4983ac64c30b8ae898f9305" 921 - dependencies = [ 922 - "crossbeam-channel", 923 - "log", 924 - "serde", 925 - "serde_json", 926 - ] 927 - 928 - [[package]] 929 - name = "lsp-types" 930 - version = "0.94.0" 931 - source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "0b63735a13a1f9cd4f4835223d828ed9c2e35c8c5e61837774399f558b6a1237" 933 - dependencies = [ 934 - "bitflags", 935 - "serde", 936 - "serde_json", 937 - "serde_repr", 938 - "url", 939 - ] 940 - 941 - [[package]] 942 - name = "memchr" 943 - version = "2.5.0" 944 - source = "registry+https://github.com/rust-lang/crates.io-index" 945 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 946 - 947 - [[package]] 948 - name = "memoffset" 949 - version = "0.6.5" 950 - source = "registry+https://github.com/rust-lang/crates.io-index" 951 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 952 - dependencies = [ 953 - "autocfg", 954 - ] 955 - 956 - [[package]] 957 - name = "memoffset" 958 - version = "0.8.0" 959 - source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 961 - dependencies = [ 962 - "autocfg", 963 - ] 964 - 965 - [[package]] 966 - name = "miniz_oxide" 967 - version = "0.6.2" 968 - source = "registry+https://github.com/rust-lang/crates.io-index" 969 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 970 - dependencies = [ 971 - "adler", 972 - ] 973 - 974 - [[package]] 975 - name = "mio" 976 - version = "0.8.6" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 979 - dependencies = [ 980 - "libc", 981 - "log", 982 - "wasi", 983 - "windows-sys 0.45.0", 984 - ] 985 - 986 - [[package]] 987 - name = "nanorand" 988 - version = "0.7.0" 989 - source = "registry+https://github.com/rust-lang/crates.io-index" 990 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 991 - dependencies = [ 992 - "getrandom", 993 - ] 994 - 995 - [[package]] 996 - name = "notify" 997 - version = "5.1.0" 998 - source = "registry+https://github.com/rust-lang/crates.io-index" 999 - checksum = "58ea850aa68a06e48fdb069c0ec44d0d64c8dbffa49bf3b6f7f0a901fdea1ba9" 1000 - dependencies = [ 1001 - "bitflags", 1002 - "crossbeam-channel", 1003 - "filetime", 1004 - "fsevent-sys", 1005 - "inotify", 1006 - "kqueue", 1007 - "libc", 1008 - "mio", 1009 - "walkdir", 1010 - "windows-sys 0.42.0", 1011 - ] 1012 - 1013 - [[package]] 1014 - name = "num-integer" 1015 - version = "0.1.45" 1016 - source = "registry+https://github.com/rust-lang/crates.io-index" 1017 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1018 - dependencies = [ 1019 - "autocfg", 1020 - "num-traits", 1021 - ] 1022 - 1023 - [[package]] 1024 - name = "num-traits" 1025 - version = "0.2.15" 1026 - source = "registry+https://github.com/rust-lang/crates.io-index" 1027 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1028 - dependencies = [ 1029 - "autocfg", 1030 - ] 1031 - 1032 - [[package]] 1033 - name = "num_cpus" 1034 - version = "1.15.0" 1035 - source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1037 - dependencies = [ 1038 - "hermit-abi 0.2.6", 1039 - "libc", 1040 - ] 1041 - 1042 - [[package]] 1043 - name = "once_cell" 1044 - version = "1.17.1" 1045 - source = "registry+https://github.com/rust-lang/crates.io-index" 1046 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1047 - 1048 - [[package]] 1049 - name = "oorandom" 1050 - version = "11.1.3" 1051 - source = "registry+https://github.com/rust-lang/crates.io-index" 1052 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 1053 - 1054 - [[package]] 1055 - name = "os_str_bytes" 1056 - version = "6.4.1" 1057 - source = "registry+https://github.com/rust-lang/crates.io-index" 1058 - checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 1059 - 1060 - [[package]] 1061 - name = "parking_lot" 1062 - version = "0.12.1" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1065 - dependencies = [ 1066 - "lock_api", 1067 - "parking_lot_core", 1068 - ] 1069 - 1070 - [[package]] 1071 - name = "parking_lot_core" 1072 - version = "0.9.7" 1073 - source = "registry+https://github.com/rust-lang/crates.io-index" 1074 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1075 - dependencies = [ 1076 - "cfg-if", 1077 - "libc", 1078 - "redox_syscall", 1079 - "smallvec", 1080 - "windows-sys 0.45.0", 1081 - ] 1082 - 1083 - [[package]] 1084 - name = "percent-encoding" 1085 - version = "2.2.0" 1086 - source = "registry+https://github.com/rust-lang/crates.io-index" 1087 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1088 - 1089 - [[package]] 1090 - name = "pest" 1091 - version = "2.5.6" 1092 - source = "registry+https://github.com/rust-lang/crates.io-index" 1093 - checksum = "8cbd939b234e95d72bc393d51788aec68aeeb5d51e748ca08ff3aad58cb722f7" 1094 - dependencies = [ 1095 - "thiserror", 1096 - "ucd-trie", 1097 - ] 1098 - 1099 - [[package]] 1100 - name = "pest_derive" 1101 - version = "2.5.6" 1102 - source = "registry+https://github.com/rust-lang/crates.io-index" 1103 - checksum = "a81186863f3d0a27340815be8f2078dd8050b14cd71913db9fbda795e5f707d7" 1104 - dependencies = [ 1105 - "pest", 1106 - "pest_generator", 1107 - ] 1108 - 1109 - [[package]] 1110 - name = "pest_generator" 1111 - version = "2.5.6" 1112 - source = "registry+https://github.com/rust-lang/crates.io-index" 1113 - checksum = "75a1ef20bf3193c15ac345acb32e26b3dc3223aff4d77ae4fc5359567683796b" 1114 - dependencies = [ 1115 - "pest", 1116 - "pest_meta", 1117 - "proc-macro2", 1118 - "quote", 1119 - "syn", 1120 - ] 1121 - 1122 - [[package]] 1123 - name = "pest_meta" 1124 - version = "2.5.6" 1125 - source = "registry+https://github.com/rust-lang/crates.io-index" 1126 - checksum = "5e3b284b1f13a20dc5ebc90aff59a51b8d7137c221131b52a7260c08cbc1cc80" 1127 - dependencies = [ 1128 - "once_cell", 1129 - "pest", 1130 - "sha2", 1131 - ] 1132 - 1133 - [[package]] 1134 - name = "phf" 1135 - version = "0.11.1" 1136 - source = "registry+https://github.com/rust-lang/crates.io-index" 1137 - checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 1138 - dependencies = [ 1139 - "phf_shared", 1140 - ] 1141 - 1142 - [[package]] 1143 - name = "phf_codegen" 1144 - version = "0.11.1" 1145 - source = "registry+https://github.com/rust-lang/crates.io-index" 1146 - checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770" 1147 - dependencies = [ 1148 - "phf_generator", 1149 - "phf_shared", 1150 - ] 1151 - 1152 - [[package]] 1153 - name = "phf_generator" 1154 - version = "0.11.1" 1155 - source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 1157 - dependencies = [ 1158 - "phf_shared", 1159 - "rand", 1160 - ] 1161 - 1162 - [[package]] 1163 - name = "phf_shared" 1164 - version = "0.11.1" 1165 - source = "registry+https://github.com/rust-lang/crates.io-index" 1166 - checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 1167 - dependencies = [ 1168 - "siphasher", 1169 - ] 1170 - 1171 - [[package]] 1172 - name = "pin-project" 1173 - version = "1.0.12" 1174 - source = "registry+https://github.com/rust-lang/crates.io-index" 1175 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 1176 - dependencies = [ 1177 - "pin-project-internal", 1178 - ] 1179 - 1180 - [[package]] 1181 - name = "pin-project-internal" 1182 - version = "1.0.12" 1183 - source = "registry+https://github.com/rust-lang/crates.io-index" 1184 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 1185 - dependencies = [ 1186 - "proc-macro2", 1187 - "quote", 1188 - "syn", 1189 - ] 1190 - 1191 - [[package]] 1192 - name = "plotters" 1193 - version = "0.3.4" 1194 - source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 1196 - dependencies = [ 1197 - "num-traits", 1198 - "plotters-backend", 1199 - "plotters-svg", 1200 - "wasm-bindgen", 1201 - "web-sys", 1202 - ] 1203 - 1204 - [[package]] 1205 - name = "plotters-backend" 1206 - version = "0.3.4" 1207 - source = "registry+https://github.com/rust-lang/crates.io-index" 1208 - checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 1209 - 1210 - [[package]] 1211 - name = "plotters-svg" 1212 - version = "0.3.3" 1213 - source = "registry+https://github.com/rust-lang/crates.io-index" 1214 - checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 1215 - dependencies = [ 1216 - "plotters-backend", 1217 - ] 1218 - 1219 - [[package]] 1220 - name = "proc-macro-error" 1221 - version = "1.0.4" 1222 - source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1224 - dependencies = [ 1225 - "proc-macro-error-attr", 1226 - "proc-macro2", 1227 - "quote", 1228 - "syn", 1229 - "version_check", 1230 - ] 1231 - 1232 - [[package]] 1233 - name = "proc-macro-error-attr" 1234 - version = "1.0.4" 1235 - source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1237 - dependencies = [ 1238 - "proc-macro2", 1239 - "quote", 1240 - "version_check", 1241 - ] 1242 - 1243 - [[package]] 1244 - name = "proc-macro2" 1245 - version = "1.0.51" 1246 - source = "registry+https://github.com/rust-lang/crates.io-index" 1247 - checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 1248 - dependencies = [ 1249 - "unicode-ident", 1250 - ] 1251 - 1252 - [[package]] 1253 - name = "quote" 1254 - version = "1.0.23" 1255 - source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 1257 - dependencies = [ 1258 - "proc-macro2", 1259 - ] 1260 - 1261 - [[package]] 1262 - name = "rand" 1263 - version = "0.8.5" 1264 - source = "registry+https://github.com/rust-lang/crates.io-index" 1265 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1266 - dependencies = [ 1267 - "rand_core", 1268 - ] 1269 - 1270 - [[package]] 1271 - name = "rand_core" 1272 - version = "0.6.4" 1273 - source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1275 - 1276 - [[package]] 1277 - name = "rayon" 1278 - version = "1.7.0" 1279 - source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 1281 - dependencies = [ 1282 - "either", 1283 - "rayon-core", 1284 - ] 1285 - 1286 - [[package]] 1287 - name = "rayon-core" 1288 - version = "1.11.0" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 1291 - dependencies = [ 1292 - "crossbeam-channel", 1293 - "crossbeam-deque", 1294 - "crossbeam-utils", 1295 - "num_cpus", 1296 - ] 1297 - 1298 - [[package]] 1299 - name = "redox_syscall" 1300 - version = "0.2.16" 1301 - source = "registry+https://github.com/rust-lang/crates.io-index" 1302 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1303 - dependencies = [ 1304 - "bitflags", 1305 - ] 1306 - 1307 - [[package]] 1308 - name = "redox_users" 1309 - version = "0.4.3" 1310 - source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1312 - dependencies = [ 1313 - "getrandom", 1314 - "redox_syscall", 1315 - "thiserror", 1316 - ] 1317 - 1318 - [[package]] 1319 - name = "regex" 1320 - version = "1.7.1" 1321 - source = "registry+https://github.com/rust-lang/crates.io-index" 1322 - checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 1323 - dependencies = [ 1324 - "aho-corasick", 1325 - "memchr", 1326 - "regex-syntax", 1327 - ] 1328 - 1329 - [[package]] 1330 - name = "regex-syntax" 1331 - version = "0.6.28" 1332 - source = "registry+https://github.com/rust-lang/crates.io-index" 1333 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 1334 - 1335 - [[package]] 1336 - name = "rowan" 1337 - version = "0.15.10" 1338 - source = "registry+https://github.com/rust-lang/crates.io-index" 1339 - checksum = "5811547e7ba31e903fe48c8ceab10d40d70a101f3d15523c847cce91aa71f332" 1340 - dependencies = [ 1341 - "countme", 1342 - "hashbrown", 1343 - "memoffset 0.6.5", 1344 - "rustc-hash", 1345 - "text-size", 1346 - ] 1347 - 1348 - [[package]] 1349 - name = "rustc-hash" 1350 - version = "1.1.0" 1351 - source = "registry+https://github.com/rust-lang/crates.io-index" 1352 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1353 - 1354 - [[package]] 1355 - name = "rustix" 1356 - version = "0.36.9" 1357 - source = "registry+https://github.com/rust-lang/crates.io-index" 1358 - checksum = "fd5c6ff11fecd55b40746d1995a02f2eb375bf8c00d192d521ee09f42bef37bc" 1359 - dependencies = [ 1360 - "bitflags", 1361 - "errno", 1362 - "io-lifetimes", 1363 - "libc", 1364 - "linux-raw-sys", 1365 - "windows-sys 0.45.0", 1366 - ] 1367 - 1368 - [[package]] 1369 - name = "rustversion" 1370 - version = "1.0.12" 1371 - source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 1373 - 1374 - [[package]] 1375 - name = "ryu" 1376 - version = "1.0.13" 1377 - source = "registry+https://github.com/rust-lang/crates.io-index" 1378 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1379 - 1380 - [[package]] 1381 - name = "salsa-2022" 1382 - version = "0.1.0" 1383 - source = "git+https://github.com/salsa-rs/salsa?rev=ef7c0f12c8159e7025316e959c26f6278a576fa5#ef7c0f12c8159e7025316e959c26f6278a576fa5" 1384 - dependencies = [ 1385 - "arc-swap", 1386 - "crossbeam", 1387 - "crossbeam-utils", 1388 - "dashmap", 1389 - "hashlink", 1390 - "indexmap", 1391 - "log", 1392 - "parking_lot", 1393 - "rustc-hash", 1394 - "salsa-2022-macros", 1395 - "smallvec", 1396 - ] 1397 - 1398 - [[package]] 1399 - name = "salsa-2022-macros" 1400 - version = "0.1.0" 1401 - source = "git+https://github.com/salsa-rs/salsa?rev=ef7c0f12c8159e7025316e959c26f6278a576fa5#ef7c0f12c8159e7025316e959c26f6278a576fa5" 1402 - dependencies = [ 1403 - "eyre", 1404 - "heck", 1405 - "proc-macro2", 1406 - "quote", 1407 - "syn", 1408 - ] 1409 - 1410 - [[package]] 1411 - name = "same-file" 1412 - version = "1.0.6" 1413 - source = "registry+https://github.com/rust-lang/crates.io-index" 1414 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1415 - dependencies = [ 1416 - "winapi-util", 1417 - ] 1418 - 1419 - [[package]] 1420 - name = "scopeguard" 1421 - version = "1.1.0" 1422 - source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1424 - 1425 - [[package]] 1426 - name = "serde" 1427 - version = "1.0.154" 1428 - source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "8cdd151213925e7f1ab45a9bbfb129316bd00799784b174b7cc7bcd16961c49e" 1430 - dependencies = [ 1431 - "serde_derive", 1432 - ] 1433 - 1434 - [[package]] 1435 - name = "serde_derive" 1436 - version = "1.0.154" 1437 - source = "registry+https://github.com/rust-lang/crates.io-index" 1438 - checksum = "4fc80d722935453bcafdc2c9a73cd6fac4dc1938f0346035d84bf99fa9e33217" 1439 - dependencies = [ 1440 - "proc-macro2", 1441 - "quote", 1442 - "syn", 1443 - ] 1444 - 1445 - [[package]] 1446 - name = "serde_json" 1447 - version = "1.0.94" 1448 - source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" 1450 - dependencies = [ 1451 - "itoa", 1452 - "ryu", 1453 - "serde", 1454 - ] 1455 - 1456 - [[package]] 1457 - name = "serde_regex" 1458 - version = "1.1.0" 1459 - source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf" 1461 - dependencies = [ 1462 - "regex", 1463 - "serde", 1464 - ] 1465 - 1466 - [[package]] 1467 - name = "serde_repr" 1468 - version = "0.1.11" 1469 - source = "registry+https://github.com/rust-lang/crates.io-index" 1470 - checksum = "395627de918015623b32e7669714206363a7fc00382bf477e72c1f7533e8eafc" 1471 - dependencies = [ 1472 - "proc-macro2", 1473 - "quote", 1474 - "syn", 1475 - ] 1476 - 1477 - [[package]] 1478 - name = "sha2" 1479 - version = "0.10.6" 1480 - source = "registry+https://github.com/rust-lang/crates.io-index" 1481 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1482 - dependencies = [ 1483 - "cfg-if", 1484 - "cpufeatures", 1485 - "digest", 1486 - ] 1487 - 1488 - [[package]] 1489 - name = "similar" 1490 - version = "2.2.1" 1491 - source = "registry+https://github.com/rust-lang/crates.io-index" 1492 - checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" 1493 - 1494 - [[package]] 1495 - name = "siphasher" 1496 - version = "0.3.10" 1497 - source = "registry+https://github.com/rust-lang/crates.io-index" 1498 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 1499 - 1500 - [[package]] 1501 - name = "smallstr" 1502 - version = "0.3.0" 1503 - source = "registry+https://github.com/rust-lang/crates.io-index" 1504 - checksum = "63b1aefdf380735ff8ded0b15f31aab05daf1f70216c01c02a12926badd1df9d" 1505 - dependencies = [ 1506 - "smallvec", 1507 - ] 1508 - 1509 - [[package]] 1510 - name = "smallvec" 1511 - version = "1.10.0" 1512 - source = "registry+https://github.com/rust-lang/crates.io-index" 1513 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1514 - 1515 - [[package]] 1516 - name = "smol_str" 1517 - version = "0.1.24" 1518 - source = "registry+https://github.com/rust-lang/crates.io-index" 1519 - checksum = "fad6c857cbab2627dcf01ec85a623ca4e7dcb5691cbaa3d7fb7653671f0d09c9" 1520 - dependencies = [ 1521 - "serde", 1522 - ] 1523 - 1524 - [[package]] 1525 - name = "spin" 1526 - version = "0.9.5" 1527 - source = "registry+https://github.com/rust-lang/crates.io-index" 1528 - checksum = "7dccf47db1b41fa1573ed27ccf5e08e3ca771cb994f776668c5ebda893b248fc" 1529 - dependencies = [ 1530 - "lock_api", 1531 - ] 1532 - 1533 - [[package]] 1534 - name = "strsim" 1535 - version = "0.10.0" 1536 - source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1538 - 1539 - [[package]] 1540 - name = "strum" 1541 - version = "0.24.1" 1542 - source = "registry+https://github.com/rust-lang/crates.io-index" 1543 - checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 1544 - dependencies = [ 1545 - "strum_macros", 1546 - ] 1547 - 1548 - [[package]] 1549 - name = "strum_macros" 1550 - version = "0.24.3" 1551 - source = "registry+https://github.com/rust-lang/crates.io-index" 1552 - checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 1553 - dependencies = [ 1554 - "heck", 1555 - "proc-macro2", 1556 - "quote", 1557 - "rustversion", 1558 - "syn", 1559 - ] 1560 - 1561 - [[package]] 1562 - name = "syn" 1563 - version = "1.0.109" 1564 - source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1566 - dependencies = [ 1567 - "proc-macro2", 1568 - "quote", 1569 - "unicode-ident", 1570 - ] 1571 - 1572 - [[package]] 1573 - name = "tempfile" 1574 - version = "3.4.0" 1575 - source = "registry+https://github.com/rust-lang/crates.io-index" 1576 - checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" 1577 - dependencies = [ 1578 - "cfg-if", 1579 - "fastrand", 1580 - "redox_syscall", 1581 - "rustix", 1582 - "windows-sys 0.42.0", 1583 - ] 1584 - 1585 - [[package]] 1586 - name = "termcolor" 1587 - version = "1.2.0" 1588 - source = "registry+https://github.com/rust-lang/crates.io-index" 1589 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1590 - dependencies = [ 1591 - "winapi-util", 1592 - ] 1593 - 1594 - [[package]] 1595 - name = "texlab" 1596 - version = "5.4.1" 1597 - dependencies = [ 1598 - "anyhow", 1599 - "assert_unordered", 1600 - "chrono", 1601 - "clap 4.1.8", 1602 - "criterion", 1603 - "crossbeam-channel", 1604 - "dashmap", 1605 - "dirs", 1606 - "encoding_rs", 1607 - "encoding_rs_io", 1608 - "fern", 1609 - "flate2", 1610 - "flume", 1611 - "fuzzy-matcher", 1612 - "human_name", 1613 - "insta", 1614 - "isocountry", 1615 - "itertools", 1616 - "log", 1617 - "logos", 1618 - "lsp-server", 1619 - "lsp-types", 1620 - "notify", 1621 - "once_cell", 1622 - "regex", 1623 - "rowan", 1624 - "rustc-hash", 1625 - "salsa-2022", 1626 - "serde", 1627 - "serde_json", 1628 - "serde_regex", 1629 - "serde_repr", 1630 - "smol_str", 1631 - "strum", 1632 - "tempfile", 1633 - "thiserror", 1634 - "threadpool", 1635 - "titlecase", 1636 - "unicode-normalization", 1637 - ] 1638 - 1639 - [[package]] 1640 - name = "text-size" 1641 - version = "1.1.0" 1642 - source = "registry+https://github.com/rust-lang/crates.io-index" 1643 - checksum = "288cb548dbe72b652243ea797201f3d481a0609a967980fcc5b2315ea811560a" 1644 - 1645 - [[package]] 1646 - name = "textwrap" 1647 - version = "0.16.0" 1648 - source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 1650 - 1651 - [[package]] 1652 - name = "thiserror" 1653 - version = "1.0.39" 1654 - source = "registry+https://github.com/rust-lang/crates.io-index" 1655 - checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c" 1656 - dependencies = [ 1657 - "thiserror-impl", 1658 - ] 1659 - 1660 - [[package]] 1661 - name = "thiserror-impl" 1662 - version = "1.0.39" 1663 - source = "registry+https://github.com/rust-lang/crates.io-index" 1664 - checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e" 1665 - dependencies = [ 1666 - "proc-macro2", 1667 - "quote", 1668 - "syn", 1669 - ] 1670 - 1671 - [[package]] 1672 - name = "thread_local" 1673 - version = "1.1.7" 1674 - source = "registry+https://github.com/rust-lang/crates.io-index" 1675 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 1676 - dependencies = [ 1677 - "cfg-if", 1678 - "once_cell", 1679 - ] 1680 - 1681 - [[package]] 1682 - name = "threadpool" 1683 - version = "1.8.1" 1684 - source = "registry+https://github.com/rust-lang/crates.io-index" 1685 - checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 1686 - dependencies = [ 1687 - "num_cpus", 1688 - ] 1689 - 1690 - [[package]] 1691 - name = "tinytemplate" 1692 - version = "1.2.1" 1693 - source = "registry+https://github.com/rust-lang/crates.io-index" 1694 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 1695 - dependencies = [ 1696 - "serde", 1697 - "serde_json", 1698 - ] 1699 - 1700 - [[package]] 1701 - name = "tinyvec" 1702 - version = "1.6.0" 1703 - source = "registry+https://github.com/rust-lang/crates.io-index" 1704 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1705 - dependencies = [ 1706 - "tinyvec_macros", 1707 - ] 1708 - 1709 - [[package]] 1710 - name = "tinyvec_macros" 1711 - version = "0.1.1" 1712 - source = "registry+https://github.com/rust-lang/crates.io-index" 1713 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1714 - 1715 - [[package]] 1716 - name = "titlecase" 1717 - version = "2.2.1" 1718 - source = "registry+https://github.com/rust-lang/crates.io-index" 1719 - checksum = "38397a8cdb017cfeb48bf6c154d6de975ac69ffeed35980fde199d2ee0842042" 1720 - dependencies = [ 1721 - "joinery", 1722 - "lazy_static", 1723 - "regex", 1724 - ] 1725 - 1726 - [[package]] 1727 - name = "typenum" 1728 - version = "1.16.0" 1729 - source = "registry+https://github.com/rust-lang/crates.io-index" 1730 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 1731 - 1732 - [[package]] 1733 - name = "ucd-trie" 1734 - version = "0.1.5" 1735 - source = "registry+https://github.com/rust-lang/crates.io-index" 1736 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 1737 - 1738 - [[package]] 1739 - name = "unicode-bidi" 1740 - version = "0.3.11" 1741 - source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "524b68aca1d05e03fdf03fcdce2c6c94b6daf6d16861ddaa7e4f2b6638a9052c" 1743 - 1744 - [[package]] 1745 - name = "unicode-case-mapping" 1746 - version = "0.4.0" 1747 - source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "916a391c62ffbc5b6220fdafa353e93b530d21904d82ca1a2e29cdb5cfb4399f" 1749 - 1750 - [[package]] 1751 - name = "unicode-ident" 1752 - version = "1.0.8" 1753 - source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 1755 - 1756 - [[package]] 1757 - name = "unicode-normalization" 1758 - version = "0.1.22" 1759 - source = "registry+https://github.com/rust-lang/crates.io-index" 1760 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 1761 - dependencies = [ 1762 - "tinyvec", 1763 - ] 1764 - 1765 - [[package]] 1766 - name = "unicode-segmentation" 1767 - version = "1.10.1" 1768 - source = "registry+https://github.com/rust-lang/crates.io-index" 1769 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 1770 - 1771 - [[package]] 1772 - name = "unidecode" 1773 - version = "0.3.0" 1774 - source = "registry+https://github.com/rust-lang/crates.io-index" 1775 - checksum = "402bb19d8e03f1d1a7450e2bd613980869438e0666331be3e073089124aa1adc" 1776 - 1777 - [[package]] 1778 - name = "url" 1779 - version = "2.3.1" 1780 - source = "registry+https://github.com/rust-lang/crates.io-index" 1781 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 1782 - dependencies = [ 1783 - "form_urlencoded", 1784 - "idna", 1785 - "percent-encoding", 1786 - "serde", 1787 - ] 1788 - 1789 - [[package]] 1790 - name = "version_check" 1791 - version = "0.9.4" 1792 - source = "registry+https://github.com/rust-lang/crates.io-index" 1793 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1794 - 1795 - [[package]] 1796 - name = "walkdir" 1797 - version = "2.3.2" 1798 - source = "registry+https://github.com/rust-lang/crates.io-index" 1799 - checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 1800 - dependencies = [ 1801 - "same-file", 1802 - "winapi", 1803 - "winapi-util", 1804 - ] 1805 - 1806 - [[package]] 1807 - name = "wasi" 1808 - version = "0.11.0+wasi-snapshot-preview1" 1809 - source = "registry+https://github.com/rust-lang/crates.io-index" 1810 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1811 - 1812 - [[package]] 1813 - name = "wasm-bindgen" 1814 - version = "0.2.84" 1815 - source = "registry+https://github.com/rust-lang/crates.io-index" 1816 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 1817 - dependencies = [ 1818 - "cfg-if", 1819 - "wasm-bindgen-macro", 1820 - ] 1821 - 1822 - [[package]] 1823 - name = "wasm-bindgen-backend" 1824 - version = "0.2.84" 1825 - source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 1827 - dependencies = [ 1828 - "bumpalo", 1829 - "log", 1830 - "once_cell", 1831 - "proc-macro2", 1832 - "quote", 1833 - "syn", 1834 - "wasm-bindgen-shared", 1835 - ] 1836 - 1837 - [[package]] 1838 - name = "wasm-bindgen-macro" 1839 - version = "0.2.84" 1840 - source = "registry+https://github.com/rust-lang/crates.io-index" 1841 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 1842 - dependencies = [ 1843 - "quote", 1844 - "wasm-bindgen-macro-support", 1845 - ] 1846 - 1847 - [[package]] 1848 - name = "wasm-bindgen-macro-support" 1849 - version = "0.2.84" 1850 - source = "registry+https://github.com/rust-lang/crates.io-index" 1851 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 1852 - dependencies = [ 1853 - "proc-macro2", 1854 - "quote", 1855 - "syn", 1856 - "wasm-bindgen-backend", 1857 - "wasm-bindgen-shared", 1858 - ] 1859 - 1860 - [[package]] 1861 - name = "wasm-bindgen-shared" 1862 - version = "0.2.84" 1863 - source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 1865 - 1866 - [[package]] 1867 - name = "web-sys" 1868 - version = "0.3.61" 1869 - source = "registry+https://github.com/rust-lang/crates.io-index" 1870 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 1871 - dependencies = [ 1872 - "js-sys", 1873 - "wasm-bindgen", 1874 - ] 1875 - 1876 - [[package]] 1877 - name = "winapi" 1878 - version = "0.3.9" 1879 - source = "registry+https://github.com/rust-lang/crates.io-index" 1880 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1881 - dependencies = [ 1882 - "winapi-i686-pc-windows-gnu", 1883 - "winapi-x86_64-pc-windows-gnu", 1884 - ] 1885 - 1886 - [[package]] 1887 - name = "winapi-i686-pc-windows-gnu" 1888 - version = "0.4.0" 1889 - source = "registry+https://github.com/rust-lang/crates.io-index" 1890 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1891 - 1892 - [[package]] 1893 - name = "winapi-util" 1894 - version = "0.1.5" 1895 - source = "registry+https://github.com/rust-lang/crates.io-index" 1896 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1897 - dependencies = [ 1898 - "winapi", 1899 - ] 1900 - 1901 - [[package]] 1902 - name = "winapi-x86_64-pc-windows-gnu" 1903 - version = "0.4.0" 1904 - source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1906 - 1907 - [[package]] 1908 - name = "windows-sys" 1909 - version = "0.42.0" 1910 - source = "registry+https://github.com/rust-lang/crates.io-index" 1911 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1912 - dependencies = [ 1913 - "windows_aarch64_gnullvm", 1914 - "windows_aarch64_msvc", 1915 - "windows_i686_gnu", 1916 - "windows_i686_msvc", 1917 - "windows_x86_64_gnu", 1918 - "windows_x86_64_gnullvm", 1919 - "windows_x86_64_msvc", 1920 - ] 1921 - 1922 - [[package]] 1923 - name = "windows-sys" 1924 - version = "0.45.0" 1925 - source = "registry+https://github.com/rust-lang/crates.io-index" 1926 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1927 - dependencies = [ 1928 - "windows-targets", 1929 - ] 1930 - 1931 - [[package]] 1932 - name = "windows-targets" 1933 - version = "0.42.1" 1934 - source = "registry+https://github.com/rust-lang/crates.io-index" 1935 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 1936 - dependencies = [ 1937 - "windows_aarch64_gnullvm", 1938 - "windows_aarch64_msvc", 1939 - "windows_i686_gnu", 1940 - "windows_i686_msvc", 1941 - "windows_x86_64_gnu", 1942 - "windows_x86_64_gnullvm", 1943 - "windows_x86_64_msvc", 1944 - ] 1945 - 1946 - [[package]] 1947 - name = "windows_aarch64_gnullvm" 1948 - version = "0.42.1" 1949 - source = "registry+https://github.com/rust-lang/crates.io-index" 1950 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 1951 - 1952 - [[package]] 1953 - name = "windows_aarch64_msvc" 1954 - version = "0.42.1" 1955 - source = "registry+https://github.com/rust-lang/crates.io-index" 1956 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 1957 - 1958 - [[package]] 1959 - name = "windows_i686_gnu" 1960 - version = "0.42.1" 1961 - source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 1963 - 1964 - [[package]] 1965 - name = "windows_i686_msvc" 1966 - version = "0.42.1" 1967 - source = "registry+https://github.com/rust-lang/crates.io-index" 1968 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 1969 - 1970 - [[package]] 1971 - name = "windows_x86_64_gnu" 1972 - version = "0.42.1" 1973 - source = "registry+https://github.com/rust-lang/crates.io-index" 1974 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 1975 - 1976 - [[package]] 1977 - name = "windows_x86_64_gnullvm" 1978 - version = "0.42.1" 1979 - source = "registry+https://github.com/rust-lang/crates.io-index" 1980 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 1981 - 1982 - [[package]] 1983 - name = "windows_x86_64_msvc" 1984 - version = "0.42.1" 1985 - source = "registry+https://github.com/rust-lang/crates.io-index" 1986 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 1987 - 1988 - [[package]] 1989 - name = "yaml-rust" 1990 - version = "0.4.5" 1991 - source = "registry+https://github.com/rust-lang/crates.io-index" 1992 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 1993 - dependencies = [ 1994 - "linked-hash-map", 1995 - ]
+5 -10
pkgs/development/tools/misc/texlab/default.nix
··· 15 15 in 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "texlab"; 18 - version = "5.4.1"; 18 + version = "5.5.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "latex-lsp"; 22 22 repo = "texlab"; 23 23 rev = "refs/tags/v${version}"; 24 - sha256 = "sha256-rTYcYq8SL404A/ke5Rb9QcCtwHKhs+84TQGNqRn11HM="; 24 + hash = "sha256-xff6Wj1ZYn3jGrj/snr4ATabLUmL1Jw2LjsjpoG3ZjI="; 25 25 }; 26 26 27 - cargoLock = { 28 - lockFile = ./Cargo.lock; 29 - outputHashes = { 30 - "salsa-2022-0.1.0" = "sha256-GupU78LkQGUQ+GzqAVZZlNKL1zZkmdqJz9+81ROXDqE="; 31 - }; 32 - }; 27 + cargoHash = "sha256-gEwsnVXY84mTO+JZvcI7EEYCOnVFM07m4VvcWI6zFT0="; 33 28 34 29 outputs = [ "out" ] ++ lib.optional (!isCross) "man"; 35 30 ··· 46 41 # generate the man page 47 42 postInstall = lib.optionalString (!isCross) '' 48 43 # TexLab builds man page separately in CI: 49 - # https://github.com/latex-lsp/texlab/blob/v5.4.0/.github/workflows/publish.yml#L127-L131 44 + # https://github.com/latex-lsp/texlab/blob/v5.5.0/.github/workflows/publish.yml#L127-L131 50 45 help2man --no-info "$out/bin/texlab" > texlab.1 51 46 installManPage texlab.1 52 47 ''; ··· 55 50 56 51 meta = with lib; { 57 52 description = "An implementation of the Language Server Protocol for LaTeX"; 58 - homepage = "https://texlab.netlify.app"; 53 + homepage = "https://github.com/latex-lsp/texlab"; 59 54 license = licenses.mit; 60 55 maintainers = with maintainers; [ doronbehar kira-bruneau ]; 61 56 platforms = platforms.all;
+36
pkgs/development/tools/rye/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , rustPlatform 4 + , openssl 5 + , pkg-config 6 + , stdenv 7 + , SystemConfiguration 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "rye"; 12 + version = "unstable-2023-04-23"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "mitsuhiko"; 16 + repo = "rye"; 17 + rev = "b3fe43a4e462d10784258cad03c19c9738367346"; 18 + hash = "sha256-q9/VUWyrP/NsuLYY1+/5teYvDJGq646WbMXptnUUUyw="; 19 + }; 20 + 21 + cargoHash = "sha256-eyJ6gXFVnSC1aEt5YLl5rFoa3+M73smu5wJdAN15HQM="; 22 + 23 + nativeBuildInputs = [ pkg-config ]; 24 + 25 + buildInputs = [ 26 + openssl 27 + ] 28 + ++ lib.optional stdenv.isDarwin SystemConfiguration; 29 + 30 + meta = with lib; { 31 + description = "A tool to easily manage python dependencies and environments"; 32 + homepage = "https://github.com/mitsuhiko/rye"; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ GaetanLepage ]; 35 + }; 36 + }
+2 -2
pkgs/misc/uboot/default.nix
··· 24 24 }: 25 25 26 26 let 27 - defaultVersion = "2022.10"; 27 + defaultVersion = "2023.01"; 28 28 defaultSrc = fetchurl { 29 29 url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${defaultVersion}.tar.bz2"; 30 - hash = "sha256-ULRIKlBbwoG6hHDDmaPCbhReKbI1ALw1xQ3r1/pGvfg="; 30 + hash = "sha256-aUI7rTgPiaCRZjbonm3L0uRRLVhDCNki0QOdHkMxlQ8="; 31 31 }; 32 32 buildUBoot = lib.makeOverridable ({ 33 33 version ? null
+18
pkgs/os-specific/linux/kernel/linux-6.3.nix
··· 1 + { lib, fetchurl, buildLinux, ... } @ args: 2 + 3 + with lib; 4 + 5 + buildLinux (args // rec { 6 + version = "6.3"; 7 + 8 + # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 + modDirVersion = versions.pad 3 version; 10 + 11 + # branchVersion needs to be x.y 12 + extraMeta.branch = versions.majorMinor version; 13 + 14 + src = fetchurl { 15 + url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz"; 16 + sha256 = "sha256-ujSR9e1r0nCjcMRAQ049aQhfzdUoki+gHnPXZX23Ox4="; 17 + }; 18 + } // (args.argsOverride or { }))
+4 -4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
··· 3 3 let 4 4 # These names are how they are designated in https://xanmod.org. 5 5 ltsVariant = { 6 - version = "6.1.24"; 7 - hash = "sha256-mLhuyASE/3kv5MD1v5pwHDkL0m7bTaRuAitG3junRyU="; 6 + version = "6.1.25"; 7 + hash = "sha256-Cn8NAVdfL2VJIPuZ3tANxB3VyQI0X2/YZG0/4r/ccYg="; 8 8 variant = "lts"; 9 9 }; 10 10 11 11 mainVariant = { 12 - version = "6.2.11"; 13 - hash = "sha256-rwFlSv5SUwhr8U4mvOGCMKYuU5xVKC7UYRemf7DKwr0="; 12 + version = "6.2.12"; 13 + hash = "sha256-K/s1nSLOrzZ/A3pnv9qFs8SkI9R6keG0WGV1o7K6jUQ="; 14 14 variant = "main"; 15 15 }; 16 16
+2 -2
pkgs/os-specific/linux/xp-pen-drivers/deco-01-v2/default.nix
··· 20 20 in 21 21 stdenv.mkDerivation rec { 22 22 pname = "xp-pen-deco-01-v2-driver"; 23 - version = "3.2.3.220323-1"; 23 + version = "3.3.9.230222-1"; 24 24 25 25 src = fetchzip { 26 26 url = "https://www.xp-pen.com/download/file/id/1936/pid/440/ext/gz.html#.tar.gz"; 27 27 name = "xp-pen-deco-01-v2-driver-${version}.tar.gz"; 28 - sha256 = "sha256-n/yutkRsjcIRRhB4q1yqEmaa03/1SO8RigJi/ZkfLbk="; 28 + sha256 = "sha256-xrRDxH7e00dISXb+lTtrnui+fNFpX7bLke2o+aTjJNk="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2023.4.5"; 5 + version = "2023.4.6"; 6 6 components = { 7 7 "3_day_blinds" = ps: with ps; [ 8 8 ];
+3 -3
pkgs/servers/home-assistant/default.nix
··· 310 310 extraBuildInputs = extraPackages python.pkgs; 311 311 312 312 # Don't forget to run parse-requirements.py after updating 313 - hassVersion = "2023.4.5"; 313 + hassVersion = "2023.4.6"; 314 314 315 315 in python.pkgs.buildPythonApplication rec { 316 316 pname = "homeassistant"; ··· 326 326 # Primary source is the pypi sdist, because it contains translations 327 327 src = fetchPypi { 328 328 inherit pname version; 329 - hash = "sha256-nQ41tHIwmARVOGE4bi22zag4uN+6rPXJ6aDr+018fIw="; 329 + hash = "sha256-054MOhLU7sImD5Sl5vUuik6mt7GCupMeBI2pdtpWuls="; 330 330 }; 331 331 332 332 # Secondary source is git for tests ··· 334 334 owner = "home-assistant"; 335 335 repo = "core"; 336 336 rev = "refs/tags/${version}"; 337 - hash = "sha256-tFbgQ0e+J3/ERqlAKKXafWDaFIEIGsqX+uw8/bQyO5A="; 337 + hash = "sha256-/SYJUW028HvxLMNHhm6cqQ6jv0J+8NatbZ7h7HyGYXs="; 338 338 }; 339 339 340 340 nativeBuildInputs = with python3.pkgs; [
+2 -2
pkgs/servers/home-assistant/stubs.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "homeassistant-stubs"; 11 - version = "2023.4.5"; 11 + version = "2023.4.6"; 12 12 format = "pyproject"; 13 13 14 14 disabled = python.version != home-assistant.python.version; ··· 17 17 owner = "KapJI"; 18 18 repo = "homeassistant-stubs"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-uZuJ2k52p2fuT15srSifdiD/T0Vk9GUhCh7jY9/nV6o="; 20 + hash = "sha256-uPSES/yK6pgZJ68tRgmWuAwitlBOhYxMWPIi2tcEPh8="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+3 -2
pkgs/servers/nfs-ganesha/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "nfs-ganesha"; 8 - version = "4.4"; 8 + version = "5.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "nfs-ganesha"; 12 12 repo = "nfs-ganesha"; 13 13 rev = "V${version}"; 14 - sha256 = "sha256-MEPy2TXVTegwCpuaIrMol7ag8anxxdcj11z5eYNkDqQ="; 14 + sha256 = "sha256-uJlT0nH3n0zzCVOap7XlxilHqSfklHn0h49He1yZkbs="; 15 15 }; 16 16 17 17 preConfigure = "cd src"; ··· 20 20 "-DUSE_SYSTEM_NTIRPC=ON" 21 21 "-DSYSSTATEDIR=/var" 22 22 "-DENABLE_VFS_POSIX_ACL=ON" 23 + "-DUSE_ACL_MAPPING=ON" 23 24 ]; 24 25 25 26 nativeBuildInputs = [
+2 -2
pkgs/tools/networking/gsocket/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gsocket"; 5 - version = "1.4.39"; 5 + version = "1.4.40"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hackerschoice"; 9 9 repo = "gsocket"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-iSII21X3F4Cb1UqF0aYw23N7CyeTQMmziRioEULx9Zk="; 11 + hash = "sha256-pY4tjrMbx+OxkJfr8czo5fbhfcmJbiNX4B+FibzUc7w="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook ];
+5 -5
pkgs/tools/security/bitwarden/default.nix
··· 24 24 25 25 buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs-16_x; }; 26 26 27 - version = "2023.2.0"; 27 + version = "2023.3.2"; 28 28 src = fetchFromGitHub { 29 29 owner = "bitwarden"; 30 30 repo = "clients"; 31 31 rev = "desktop-v${version}"; 32 - sha256 = "/k2r+TikxVGlz8cnOq5zF3oUYw4zj31vDAD7OQFQlC4="; 32 + sha256 = "sha256-KQDM7XDUA+yRv8y1K//rMCs4J36df42RVsiAXazJeYQ="; 33 33 }; 34 34 35 - desktop-native = rustPlatform.buildRustPackage rec { 35 + desktop-native = rustPlatform.buildRustPackage { 36 36 pname = "bitwarden-desktop-native"; 37 37 inherit src version; 38 38 sourceRoot = "source/apps/desktop/desktop_native"; 39 - cargoSha256 = "sha256-zLftfmWYYUAaMvIT21qhVsHzxnNdQhFBH0fRBwVduAc="; 39 + cargoSha256 = "sha256-XsAmVYWPPnY0cgBzpO2aWx/fh85fKr8kMO98cDMzOKk="; 40 40 41 41 patchFlags = [ "-p4" ]; 42 42 ··· 91 91 npmBuildFlags = [ 92 92 "--workspace apps/desktop" 93 93 ]; 94 - npmDepsHash = "sha256-aFjN1S0+lhHjK3VSYfx0F5X8wSJwRRr6zQpPGt2VpxE="; 94 + npmDepsHash = "sha256-RmkTWhakZstCCMLQ3iJ8KD5Yt5ZafXc8NDgncJMLaxs="; 95 95 96 96 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 97 97
+2
pkgs/top-level/aliases.nix
··· 913 913 linuxPackages_6_0 = linuxKernel.packages.linux_6_0; 914 914 linuxPackages_6_1 = linuxKernel.packages.linux_6_1; 915 915 linuxPackages_6_2 = linuxKernel.packages.linux_6_2; 916 + linuxPackages_6_3 = linuxKernel.packages.linux_6_3; 916 917 linuxPackages_hardkernel_4_14 = linuxKernel.packages.hardkernel_4_14; 917 918 linuxPackages_rpi0 = linuxKernel.packages.linux_rpi1; 918 919 linuxPackages_rpi02w = linuxKernel.packages.linux_rpi3; ··· 935 936 linux_6_0 = linuxKernel.kernels.linux_6_0; 936 937 linux_6_1 = linuxKernel.kernels.linux_6_1; 937 938 linux_6_2 = linuxKernel.kernels.linux_6_2; 939 + linux_6_3 = linuxKernel.kernels.linux_6_3; 938 940 linuxPackages_mptcp = throw "'linuxPackages_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 939 941 linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 940 942 linux_mptcp_95 = throw "'linux_mptcp_95' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04
+6
pkgs/top-level/all-packages.nix
··· 18846 18846 18847 18847 rufo = callPackage ../development/tools/rufo { }; 18848 18848 18849 + rye = callPackage ../development/tools/rye { 18850 + inherit (darwin.apple_sdk.frameworks) SystemConfiguration; 18851 + }; 18852 + 18849 18853 samurai = callPackage ../development/tools/build-managers/samurai { }; 18850 18854 18851 18855 muon = callPackage ../development/tools/build-managers/muon { }; ··· 25192 25196 lemmy-ui = callPackage ../servers/web-apps/lemmy/ui.nix { 25193 25197 nodejs = nodejs-14_x; 25194 25198 }; 25199 + 25200 + lightgbm = callPackage ../development/libraries/lightgbm { }; 25195 25201 25196 25202 lighttpd = callPackage ../servers/http/lighttpd { }; 25197 25203
+10 -1
pkgs/top-level/linux-kernels.nix
··· 189 189 ]; 190 190 }; 191 191 192 + linux_6_3 = callPackage ../os-specific/linux/kernel/linux-6.3.nix { 193 + kernelPatches = [ 194 + kernelPatches.bridge_stp_helper 195 + kernelPatches.request_key_helper 196 + kernelPatches.fix-em-ice-bonding 197 + ]; 198 + }; 199 + 192 200 linux_testing = let 193 201 testing = callPackage ../os-specific/linux/kernel/linux-testing.nix { 194 202 kernelPatches = [ ··· 565 573 linux_5_15 = recurseIntoAttrs (packagesFor kernels.linux_5_15); 566 574 linux_6_1 = recurseIntoAttrs (packagesFor kernels.linux_6_1); 567 575 linux_6_2 = recurseIntoAttrs (packagesFor kernels.linux_6_2); 576 + linux_6_3 = recurseIntoAttrs (packagesFor kernels.linux_6_3); 568 577 } // lib.optionalAttrs config.allowAliases { 569 578 linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; # Added 2022-11-08 570 579 linux_5_18 = throw "linux 5.18 was removed because it reached its end of life upstream"; # Added 2022-09-17 ··· 632 641 packageAliases = { 633 642 linux_default = packages.linux_6_1; 634 643 # Update this when adding the newest kernel major version! 635 - linux_latest = packages.linux_6_2; 644 + linux_latest = packages.linux_6_3; 636 645 linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake"; 637 646 linux_rt_default = packages.linux_rt_5_4; 638 647 linux_rt_latest = packages.linux_rt_6_1;
+1
pkgs/top-level/python-aliases.nix
··· 186 186 pushbullet = pushbullet-py; # Added 2022-10-15 187 187 Pweave = pweave; # added 2023-02-19 188 188 pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02 189 + pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23 189 190 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01 190 191 PyGithub = pygithub; # added 2023-02-19 191 192 pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15
-3
pkgs/top-level/python-packages.nix
··· 8018 8018 8019 8019 pyblackbird = callPackage ../development/python-modules/pyblackbird { }; 8020 8020 8021 - pyblake2 = callPackage ../development/python-modules/pyblake2 { }; 8022 - 8023 8021 pyblock = toPythonModule (callPackage ../development/python-modules/pyblock { }); 8024 8022 8025 8023 pybluez = callPackage ../development/python-modules/pybluez { ··· 12208 12206 rustworkx = callPackage ../development/python-modules/rustworkx { }; 12209 12207 12210 12208 uamqp = callPackage ../development/python-modules/uamqp { 12211 - openssl = pkgs.openssl_1_1; 12212 12209 inherit (pkgs.darwin.apple_sdk.frameworks) CFNetwork CoreFoundation Security; 12213 12210 }; 12214 12211