Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 2280dc4e 954d533e

+1340 -336
+2 -2
pkgs/applications/audio/ncmpc/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "ncmpc"; 19 - version = "0.47"; 19 + version = "0.48"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "MusicPlayerDaemon"; 23 23 repo = "ncmpc"; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-7vywLMiIUfRx9/fCmUH1AGUB63bT8z7wabgm3CuLLUs="; 25 + sha256 = "sha256-89hBaWFwMPBqSWDmsXND0PEc1a9Fte+p1ho5tWuZFlY="; 26 26 }; 27 27 28 28 buildInputs = [ glib ncurses libmpdclient boost ]
+3 -3
pkgs/applications/editors/vscode/extensions/default.nix
··· 3286 3286 }; 3287 3287 3288 3288 aliases = super: { 3289 + _1Password = super."1Password"; 3290 + _2gua = super."2gua"; 3291 + _4ops = super."4ops"; 3289 3292 Arjun.swagger-viewer = super.arjun.swagger-viewer; 3290 3293 jakebecker.elixir-ls = super.elixir-lsp.vscode-elixir-ls; 3291 3294 jpoissonnier.vscode-styled-components = super.styled-components.vscode-styled-components; ··· 3294 3297 ms-vscode.PowerShell = super.ms-vscode.powershell; 3295 3298 rioj7.commandOnAllFiles = super.rioj7.commandonallfiles; 3296 3299 WakaTime.vscode-wakatime = super.wakatime.vscode-wakatime; 3297 - _1Password = throw ''_1Password has been replaced with "1Password"''; 3298 - _2gua = throw ''_2gua has been replaced with "2gua"''; 3299 - _4ops = throw ''_4ops has been replaced with "4ops"''; 3300 3300 }; 3301 3301 3302 3302 # TODO: add overrides overlay, so that we can have a generated.nix
+9 -6
pkgs/applications/misc/syncthingtray/default.nix
··· 1 1 { mkDerivation 2 2 , lib 3 + , stdenv 3 4 , fetchFromGitHub 4 5 , substituteAll 5 6 , qtbase ··· 14 15 , kio 15 16 , plasma-framework 16 17 , qttools 18 + , iconv 17 19 , webviewSupport ? true 18 20 , jsSupport ? true 19 - , kioPluginSupport ? true 20 - , plasmoidSupport ? true 21 - , systemdSupport ? true 21 + , kioPluginSupport ? stdenv.isLinux 22 + , plasmoidSupport ? stdenv.isLinux 23 + , systemdSupport ? stdenv.isLinux 22 24 /* It is possible to set via this option an absolute exec path that will be 23 25 written to the `~/.config/autostart/syncthingtray.desktop` file generated 24 26 during runtime. Alternatively, one can edit the desktop file themselves after ··· 44 46 qtutilities 45 47 boost 46 48 qtforkawesome 47 - ] 49 + ] ++ lib.optionals stdenv.isDarwin [ iconv ] 48 50 ++ lib.optionals webviewSupport [ qtwebengine ] 49 51 ++ lib.optionals jsSupport [ qtdeclarative ] 50 52 ++ lib.optionals kioPluginSupport [ kio ] ··· 59 61 ; 60 62 61 63 # No tests are available by upstream, but we test --help anyway 62 - doInstallCheck = true; 64 + # Don't test on Darwin because output is .app 65 + doInstallCheck = !stdenv.isDarwin; 63 66 installCheckPhase = '' 64 67 $out/bin/syncthingtray --help | grep ${version} 65 68 ''; ··· 79 82 description = "Tray application and Dolphin/Plasma integration for Syncthing"; 80 83 license = licenses.gpl2Plus; 81 84 maintainers = with maintainers; [ doronbehar ]; 82 - platforms = platforms.linux; 85 + platforms = platforms.linux ++ platforms.darwin; 83 86 }; 84 87 }
+32
pkgs/applications/networking/instant-messengers/iamb/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , darwin 5 + , stdenv 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "iamb"; 10 + version = "0.0.7"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "ulyssa"; 14 + repo = "iamb"; 15 + rev = "v${version}"; 16 + hash = "sha256-KKr7dfFSffkFgqcREy/3RIIn5c5IxhFR7CjFJqCmqdM="; 17 + }; 18 + 19 + cargoHash = "sha256-/OBGRE9zualLnMh9Ikh9s9IE9b8mEmAC/H5KUids8a8="; 20 + 21 + buildInputs = lib.optionals stdenv.isDarwin [ 22 + darwin.apple_sdk.frameworks.AppKit 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "A Matrix client for Vim addicts"; 27 + homepage = "https://github.com/ulyssa/iamb"; 28 + changelog = "https://github.com/ulyssa/iamb/releases/tag/${src.rev}"; 29 + license = licenses.asl20; 30 + maintainers = with maintainers; [ meain ]; 31 + }; 32 + }
+2 -2
pkgs/applications/networking/instant-messengers/signal-cli/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "signal-cli"; 5 - version = "0.11.7"; 5 + version = "0.11.8"; 6 6 7 7 # Building from source would be preferred, but is much more involved. 8 8 src = fetchurl { 9 9 url = "https://github.com/AsamK/signal-cli/releases/download/v${version}/signal-cli-${version}-Linux.tar.gz"; 10 - hash = "sha256-oN80HQkPpJfhM4WBaRm4ytmhLjSokjEpfMhP6/XnQXs="; 10 + hash = "sha256-lpCPPYkT+q9oYR32rHUGTJI4TmTvy01ttpJxeTSGxVo="; 11 11 }; 12 12 13 13 buildInputs = lib.optionals stdenv.isLinux [ libmatthew_java dbus dbus_java ];
+2 -15
pkgs/applications/science/electronics/nvc/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "nvc"; 19 - version = "1.9.0"; 19 + version = "1.9.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "nickg"; 23 23 repo = pname; 24 24 rev = "r${version}"; 25 - hash = "sha256-hsoEAFSXI2bvzZV33jdg1849fipPQlUu3MZVvht54fI="; 25 + hash = "sha256-UeA+6RKZMttLThyAf80ONximXRJNw5mUNM+cyCDTcGM="; 26 26 }; 27 - 28 - patches = [ 29 - # TODO: remove me on next release 30 - (fetchpatch { 31 - url = "https://github.com/nickg/nvc/commit/c857e16c33851f8a5386b97bc0dada2836b5db83.patch"; 32 - hash = "sha256-rvZHI1iQXT9zLpCugg5mGmMZBRbTe9PSHtDG7FVZ67Q="; 33 - }) 34 - ]; 35 - 36 - # TODO: recheck me on next release 37 - postPatch = lib.optionalString stdenv.isLinux '' 38 - sed -i "/vhpi4/d" test/regress/testlist.txt 39 - ''; 40 27 41 28 nativeBuildInputs = [ 42 29 autoreconfHook
+3 -3
pkgs/applications/science/math/form/default.nix
··· 1 1 { lib, stdenv, fetchurl, gmp, zlib }: 2 2 3 3 stdenv.mkDerivation { 4 - version = "4.3.0"; 4 + version = "4.3.1"; 5 5 pname = "form"; 6 6 7 7 # This tarball is released by author, it is not downloaded from tag, so can't use fetchFromGitHub 8 8 src = fetchurl { 9 - url = "https://github.com/vermaseren/form/releases/download/v4.3.0/form-4.3.0.tar.gz"; 10 - sha256 = "sha256-sjTg0JX3PssJBM3DsNjYMjqfp/RncKUvsiJnxiSq+/Y="; 9 + url = "https://github.com/vermaseren/form/releases/download/v4.3.1/form-4.3.1.tar.gz"; 10 + sha256 = "sha256-8fUS3DT+m71rGfLf7wX8uZEt+0PINop1t5bsRy7ou84="; 11 11 }; 12 12 13 13 buildInputs = [ gmp zlib ];
+3 -3
pkgs/applications/version-management/hut/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "hut"; 9 - version = "0.2.0"; 9 + version = "0.3.0"; 10 10 11 11 src = fetchFromSourcehut { 12 12 owner = "~emersion"; 13 13 repo = "hut"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-g9KbOtZaBAgy/iBBh/Tv5ULJNnNzwzZpA6DOynl+dnk="; 15 + sha256 = "sha256-kr5EWQ3zHUp/oNPZV2d3j9AyoEmHEX8/rETiMKTBi3s="; 16 16 }; 17 17 18 - vendorSha256 = "sha256-vuAx8B34Za+GEtekFOUaY07hBk3O2OaJ1JmulbIhwbs="; 18 + vendorHash = "sha256-aoqGb7g8UEC/ydmL3GbWGy3HDD1kfDJOMeUP4nO9waA="; 19 19 20 20 nativeBuildInputs = [ 21 21 scdoc
+3 -3
pkgs/development/compilers/gleam/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "gleam"; 5 - version = "0.27.0"; 5 + version = "0.28.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gleam-lang"; 9 9 repo = pname; 10 10 rev = "refs/tags/v${version}"; 11 - hash = "sha256-RkpHmrxKiMtXOPKd8qBREike2sJ3NZcrc7RIxG08eyI="; 11 + hash = "sha256-4sYHI3yh5KvLxdpWkCMya7v5aXG+FvvK7hmpOkX1R28="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ git pkg-config ]; ··· 16 16 buildInputs = [ openssl ] ++ 17 17 lib.optionals stdenv.isDarwin [ Security libiconv ]; 18 18 19 - cargoSha256 = "sha256-QluOPKEkofRRE+UxNe60f+sA8Ov3um25kl2F/pt19js="; 19 + cargoSha256 = "sha256-7RLeLZS28eIGObisRRI3skSkplWZGnyikvD3qfFDpU8="; 20 20 21 21 meta = with lib; { 22 22 description = "A statically typed language for the Erlang VM";
+7 -2
pkgs/development/libraries/cpp-utilities/default.nix
··· 3 3 , fetchFromGitHub 4 4 , cmake 5 5 , cppunit 6 + , iconv 6 7 }: 7 8 8 9 stdenv.mkDerivation rec { ··· 18 19 19 20 nativeBuildInputs = [ cmake ]; 20 21 nativeCheckInputs = [ cppunit ]; 22 + buildInputs = lib.optionals stdenv.isDarwin [ 23 + iconv # needed on Darwin, see https://github.com/Martchus/cpp-utilities/issues/4 24 + ]; 21 25 # Otherwise, tests fail since the resulting shared object libc++utilities.so is only available in PWD of the make files 22 26 preCheck = '' 23 27 checkFlagsArray+=( 24 28 "LD_LIBRARY_PATH=$PWD" 25 29 ) 26 30 ''; 27 - doCheck = true; 31 + # tests fail on Darwin 32 + doCheck = !stdenv.isDarwin; 28 33 29 34 meta = with lib; { 30 35 homepage = "https://github.com/Martchus/cpp-utilities"; 31 36 description = "Common C++ classes and routines used by @Martchus' applications featuring argument parser, IO and conversion utilities"; 32 37 license = licenses.gpl2Plus; 33 38 maintainers = with maintainers; [ doronbehar ]; 34 - platforms = platforms.linux; 39 + platforms = platforms.linux ++ platforms.darwin; 35 40 }; 36 41 }
+4
pkgs/development/libraries/duckdb/default.nix
··· 41 41 ++ lib.optionals withOdbc [ unixODBC ]; 42 42 43 43 cmakeFlags = [ 44 + "-DBUILD_AUTOCOMPLETE_EXTENSION=ON" 44 45 "-DBUILD_ICU_EXTENSION=ON" 45 46 "-DBUILD_PARQUET_EXTENSION=ON" 46 47 "-DBUILD_TPCH_EXTENSION=ON" ··· 55 56 "-DBUILD_TPCE=ON" 56 57 "-DBUILD_ODBC_DRIVER=${enableFeature withOdbc}" 57 58 "-DJDBC_DRIVER=${enableFeature withJdbc}" 59 + ] ++ lib.optionals doInstallCheck [ 58 60 # development settings 59 61 "-DBUILD_UNITTESTS=ON" 60 62 ]; ··· 86 88 "test/fuzzer/pedro/buffer_manager_out_of_memory.test" 87 89 "test/sql/storage/compression/bitpacking/bitpacking_size_calculation.test" 88 90 "test/sql/copy/parquet/delta_byte_array_length_mismatch.test" 91 + "test/sql/function/timestamp/test_icu_strptime.test" 92 + "test/sql/timezone/test_icu_timezone.test" 89 93 # these are only hidden if no filters are passed in 90 94 "[!hide]" 91 95 # this test apparently never terminates
+1 -1
pkgs/development/libraries/qtforkawesome/default.nix
··· 53 53 description = "Library that bundles ForkAwesome for use within Qt applications"; 54 54 license = licenses.gpl2Plus; 55 55 maintainers = with maintainers; [ doronbehar ]; 56 - platforms = platforms.linux; 56 + platforms = platforms.linux ++ platforms.darwin; 57 57 }; 58 58 } 59 59
+1 -1
pkgs/development/libraries/qtutilities/default.nix
··· 28 28 description = "Common Qt related C++ classes and routines used by @Martchus' applications such as dialogs, widgets and models Topics"; 29 29 license = licenses.gpl2Plus; 30 30 maintainers = with maintainers; [ doronbehar ]; 31 - platforms = platforms.linux; 31 + platforms = platforms.linux ++ platforms.darwin; 32 32 }; 33 33 }
+48
pkgs/development/python-modules/django-bootstrap3/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , setuptools 5 + , django 6 + , pytest-django 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "django-bootstrap3"; 12 + version = "23.1"; 13 + format = "pyproject"; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + hash = "sha256-cJW3xmqJ87rreOoCh5nr15XSlzn8hgJGBCLnwqGUrTA="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 23 + 24 + buildInputs = [ 25 + django 26 + ]; 27 + 28 + pythonImportsCheck = [ 29 + "bootstrap3" 30 + ]; 31 + 32 + nativeCheckInputs = [ 33 + pytest-django 34 + pytestCheckHook 35 + ]; 36 + 37 + env.DJANGO_SETTINGS_MODULE = "tests.app.settings"; 38 + 39 + meta = with lib; { 40 + description = "Bootstrap 3 integration for Django"; 41 + homepage = "https://github.com/zostera/django-bootstrap3"; 42 + changelog = "https://github.com/zostera/django-bootstrap3/blob/${version}/CHANGELOG.md"; 43 + license = licenses.bsd3; 44 + maintainers = with maintainers; [ hexa ]; 45 + }; 46 + } 47 + 48 +
+60
pkgs/development/python-modules/django-countries/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # build 6 + , setuptools 7 + 8 + # propagates 9 + , asgiref 10 + , typing-extensions 11 + 12 + # tests 13 + , django 14 + , djangorestframework 15 + , graphene-django 16 + , pytestCheckHook 17 + , pytest-django 18 + }: 19 + 20 + buildPythonPackage rec { 21 + pname = "django-countries"; 22 + version = "7.5.1"; 23 + format = "pyproject"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "SmileyChris"; 27 + repo = "django-countries"; 28 + rev = "refs/tags/v${version}"; 29 + hash = "sha256-se6s0sgIfMLW0sIMp/3vK4KdDPQ5ahg6OQCDAs4my4M="; 30 + }; 31 + 32 + nativeBuildInputs = [ 33 + setuptools 34 + ]; 35 + 36 + propagatedBuildInputs = [ 37 + asgiref 38 + typing-extensions 39 + ]; 40 + 41 + nativeCheckInputs = [ 42 + django 43 + djangorestframework 44 + graphene-django 45 + pytestCheckHook 46 + pytest-django 47 + ]; 48 + 49 + meta = with lib; { 50 + description = "Provides a country field for Django models"; 51 + longDescription = '' 52 + A Django application that provides country choices for use with 53 + forms, flag icons static files, and a country field for models. 54 + ''; 55 + homepage = "https://github.com/SmileyChris/django-countries"; 56 + changelog = "https://github.com/SmileyChris/django-countries/blob/v${version}/CHANGES.rst"; 57 + license = licenses.mit; 58 + maintainers = with maintainers; [ hexa ]; 59 + }; 60 + }
+40
pkgs/development/python-modules/django-formset-js-improved/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , django 5 + , django-jquery-js 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "django-formset-js-improved"; 10 + version = "0.5.0.3"; 11 + format = "setuptools"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "pretix"; 15 + repo = "django-formset-js"; 16 + rev = "refs/tags/${version}"; 17 + hash = "sha256-bOM24ldXk9WeV0jl6LIJB3BJ5hVWLA1PJTBBnJBoprU="; 18 + }; 19 + 20 + buildInputs = [ 21 + django 22 + ]; 23 + 24 + propagatedBuildInputs = [ 25 + django-jquery-js 26 + ]; 27 + 28 + pythonImportsCheck = [ 29 + "djangoformsetjs" 30 + ]; 31 + 32 + doCheck = false; # no tests 33 + 34 + meta = with lib; { 35 + description = "A wrapper for a JavaScript formset helper"; 36 + homepage = "https://github.com/pretix/django-formset-js"; 37 + license = licenses.bsd2; 38 + maintainers = with maintainers; [ hexa ]; 39 + }; 40 + }
+53
pkgs/development/python-modules/django-hierarkey/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # propagates 6 + , python-dateutil 7 + 8 + # tests 9 + , django-extensions 10 + , pytest-django 11 + , pytestCheckHook 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "django-hierarkey"; 16 + version = "1.1.0"; 17 + format = "setuptools"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "raphaelm"; 21 + repo = "django-hierarkey"; 22 + # https://github.com/raphaelm/django-hierarkey/commit/c81ace02ca404a8756e2931bb6faf55b6365e140 23 + rev = "c81ace02ca404a8756e2931bb6faf55b6365e140"; 24 + hash = "sha256-sCARyTjuuAUptlOsFmApnsQpcksP+uYnq0lukXDMcuk="; 25 + }; 26 + 27 + propagatedBuildInputs = [ 28 + python-dateutil 29 + ]; 30 + 31 + pythonImportsCheck = [ 32 + "hierarkey" 33 + ]; 34 + 35 + nativeCheckInputs = [ 36 + django-extensions 37 + pytest-django 38 + pytestCheckHook 39 + ]; 40 + 41 + DJANGO_SETTINGS_MODULE = "tests.settings"; 42 + 43 + pytestFlagsArray = [ 44 + "tests" 45 + ]; 46 + 47 + meta = with lib; { 48 + description = "Flexible and powerful hierarchical key-value store for your Django models"; 49 + homepage = "https://github.com/raphaelm/django-hierarkey"; 50 + license = licenses.asl20; 51 + maintainers = with maintainers; [ hexa ]; 52 + }; 53 + }
+35
pkgs/development/python-modules/django-jquery-js/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromBitbucket 4 + , django 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "django-jquery-js"; 9 + version = "3.1.1"; 10 + format = "setuptools"; 11 + 12 + src = fetchFromBitbucket { 13 + owner = "tim_heap"; 14 + repo = "django-jquery"; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-TzMo31jFhcvlrmq2TJgQyds9n8eATaChnyhnQ7bwdzs="; 17 + }; 18 + 19 + buildInputs = [ 20 + django 21 + ]; 22 + 23 + pythonImportsCheck = [ 24 + "jquery" 25 + ]; 26 + 27 + doCheck = false; # no tests 28 + 29 + meta = with lib; { 30 + description = "jQuery, bundled up so apps can depend upon it"; 31 + homepage = "https://bitbucket.org/tim_heap/django-jquery"; 32 + license = licenses.mit; 33 + maintainers = with maintainers; [ hexa ]; 34 + }; 35 + }
+75
pkgs/development/python-modules/django-markup/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , django 5 + 6 + # optionals 7 + , bleach 8 + , docutils 9 + , markdown 10 + , pygments 11 + , python-creole 12 + , smartypants 13 + , textile 14 + 15 + # tests 16 + , pytest-django 17 + , pytestCheckHook 18 + }: 19 + 20 + buildPythonPackage rec { 21 + pname = "django-markup"; 22 + version = "1.6"; 23 + format = "setuptools"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "bartTC"; 27 + repo = "django-markup"; 28 + rev = "refs/tags/v${version}"; 29 + hash = "sha256-Hh+3KxFE6sSIqRowyZ1Pz6NmBaTbltZaEhSjFrw760Q="; 30 + }; 31 + 32 + postPatch = '' 33 + sed -i "/--cov/d" setup.cfg 34 + ''; 35 + 36 + buildInputs = [ 37 + django 38 + ]; 39 + 40 + passthru.optional-dependencies = { 41 + all_filter_dependencies = [ 42 + bleach 43 + docutils 44 + markdown 45 + pygments 46 + python-creole 47 + smartypants 48 + textile 49 + ]; 50 + }; 51 + 52 + pythonImportsCheck = [ 53 + "django_markup" 54 + ]; 55 + 56 + nativeCheckInputs = [ 57 + pytest-django 58 + pytestCheckHook 59 + ] ++ passthru.optional-dependencies.all_filter_dependencies; 60 + 61 + env.DJANGO_SETTINGS_MODULE = "django_markup.tests"; 62 + 63 + disabledTests = [ 64 + # https://github.com/bartTC/django-markup/issues/40 65 + "test_rst_with_pygments" 66 + ]; 67 + 68 + meta = with lib; { 69 + description = "Generic Django application to convert text with specific markup to html."; 70 + homepage = "https://github.com/bartTC/django-markup"; 71 + changelog = "https://github.com/bartTC/django-markup/blob/v${version}/CHANGELOG.rst"; 72 + license = licenses.mit; 73 + maintainers = with maintainers; [ hexa ]; 74 + }; 75 + }
+85
pkgs/development/python-modules/django-two-factor-auth/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , django 4 + , django-formtools 5 + , django-otp 6 + , django-phonenumber-field 7 + , fetchFromGitHub 8 + , phonenumbers 9 + , pydantic 10 + , pythonOlder 11 + , pythonRelaxDepsHook 12 + , qrcode 13 + , setuptools-scm 14 + , twilio 15 + , webauthn 16 + }: 17 + 18 + buildPythonPackage rec { 19 + pname = "django-two-factor-auth"; 20 + version = "1.15.1"; 21 + format = "setuptools"; 22 + 23 + disabled = pythonOlder "3.7"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "jazzband"; 27 + repo = "django-two-factor-auth"; 28 + rev = "refs/tags/${version}"; 29 + hash = "sha256-+E6kSD00ChPiRLT2i43dNlVkbvuR1vKkbSZfD1Bf3qc="; 30 + }; 31 + 32 + nativeBuildInputs = [ 33 + pythonRelaxDepsHook 34 + setuptools-scm 35 + ]; 36 + 37 + pythonRelaxDeps = [ 38 + "django-phonenumber-field" 39 + ]; 40 + 41 + propagatedBuildInputs = [ 42 + django 43 + django-formtools 44 + django-otp 45 + django-phonenumber-field 46 + qrcode 47 + ]; 48 + 49 + passthru.optional-dependencies = { 50 + call = [ 51 + twilio 52 + ]; 53 + sms = [ 54 + twilio 55 + ]; 56 + webauthn = [ 57 + pydantic 58 + webauthn 59 + ]; 60 + # yubikey = [ 61 + # django-otp-yubikey 62 + # ]; 63 + phonenumbers = [ 64 + phonenumbers 65 + ]; 66 + # phonenumberslite = [ 67 + # phonenumberslite 68 + # ]; 69 + }; 70 + 71 + # Tests require internet connection 72 + doCheck = false; 73 + 74 + pythonImportsCheck = [ 75 + "two_factor" 76 + ]; 77 + 78 + meta = with lib; { 79 + description = "Complete Two-Factor Authentication for Django"; 80 + homepage = "https://github.com/jazzband/django-two-factor-auth"; 81 + changelog = "https://github.com/jazzband/django-two-factor-auth/releases/tag/${version}"; 82 + license = licenses.mit; 83 + maintainers = with maintainers; [ derdennisop ]; 84 + }; 85 + }
+2 -2
pkgs/development/python-modules/duckdb-engine/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "duckdb-engine"; 16 - version = "0.6.9"; 16 + version = "0.7.0"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 repo = "duckdb_engine"; 23 23 owner = "Mause"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-F1Y7NXkNnCbCxc43gBN7bt+z0D0EwnzCyBKFzbq9KcA="; 25 + hash = "sha256-qLQjFkud9DivLQ9PignLrXlUVOAxsd28s7+2GdC5jKE="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+45 -8
pkgs/development/python-modules/html5-parser/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pkgs, pkg-config, chardet, lxml }: 1 + { lib 2 + , beautifulsoup4 3 + , buildPythonPackage 4 + , chardet 5 + , fetchFromGitHub 6 + , lxml 7 + , pkg-config 8 + , pkgs 9 + , pytestCheckHook 10 + , pythonOlder 11 + }: 2 12 3 13 buildPythonPackage rec { 4 14 pname = "html5-parser"; 5 - version = "0.4.10"; 15 + version = "0.4.11"; 16 + format = "setuptools"; 6 17 7 - src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "f9294418c0da95c2d5facc19d3dc32941093a6b8e3b3e4b36cc7b5a1697fbca4"; 18 + disabled = pythonOlder "3.7"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "kovidgoyal"; 22 + repo = pname; 23 + rev = "refs/tags/v${version}"; 24 + hash = "sha256-l7cCt+zX+qOujS6noc1/p7mELqrHae3eiKQNXBxLm7o="; 10 25 }; 11 26 12 - nativeBuildInputs = [ pkg-config ]; 13 - propagatedBuildInputs = [ chardet lxml pkgs.libxml2 ]; 27 + nativeBuildInputs = [ 28 + pkg-config 29 + ]; 30 + 31 + buildInputs = [ 32 + pkgs.libxml2 33 + ]; 14 34 15 - doCheck = false; # No such file or directory: 'run_tests.py' 35 + propagatedBuildInputs = [ 36 + chardet 37 + lxml 38 + ]; 39 + 40 + nativeCheckInputs = [ 41 + beautifulsoup4 42 + pytestCheckHook 43 + ]; 44 + 45 + pythonImportsCheck = [ 46 + "html5_parser" 47 + ]; 48 + 49 + pytestFlagsArray = [ 50 + "test/*.py" 51 + ]; 16 52 17 53 meta = with lib; { 18 54 description = "Fast C based HTML 5 parsing for python"; 19 55 homepage = "https://html5-parser.readthedocs.io"; 20 56 license = licenses.asl20; 57 + maintainers = with maintainers; [ ]; 21 58 }; 22 59 }
+43
pkgs/development/python-modules/pydata-google-auth/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , google-auth 5 + , google-auth-oauthlib 6 + , setuptools 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pydata-google-auth"; 11 + version = "1.7.0"; 12 + format = "setuptools"; 13 + 14 + src = fetchFromGitHub { 15 + repo = pname; 16 + owner = "pydata"; 17 + rev = "refs/tags/${version}"; 18 + hash = "sha256-VJmu7VExWmXBa0cjgppyOgWDLDRMdhOoaOrZoi4WAxo="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + google-auth 27 + google-auth-oauthlib 28 + ]; 29 + 30 + # tests require network access 31 + doCheck = false; 32 + 33 + pythonImportsCheck = [ 34 + "pydata_google_auth" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Helpers for authenticating to Google APIs"; 39 + homepage = "https://github.com/pydata/pydata-google-auth"; 40 + license = licenses.bsd3; 41 + maintainers = with maintainers; [ cpcloud ]; 42 + }; 43 + }
+89
pkgs/development/python-modules/python-creole/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , runtimeShell 5 + 6 + # build 7 + , poetry-core 8 + 9 + # propagates 10 + , docutils 11 + 12 + # tests 13 + , pytestCheckHook 14 + , readme_renderer 15 + , textile 16 + }: 17 + 18 + buildPythonPackage rec { 19 + pname = "python-creole"; 20 + version = "1.4.10"; 21 + format = "pyproject"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "jedie"; 25 + repo = "python-creole"; 26 + rev = "refs/tags/v${version}"; 27 + hash = "sha256-8pXOnLNjhIv0d+BqjW8wlb6BT6CmFHSsxn5wLOv3LBQ="; 28 + }; 29 + 30 + nativeBuildInputs = [ 31 + poetry-core 32 + ]; 33 + 34 + postPatch = '' 35 + substituteInPlace pyproject.toml \ 36 + --replace "poetry.masonry.api" "poetry.core.masonry.api" 37 + 38 + substituteInPlace Makefile \ 39 + --replace "/bin/bash" "${runtimeShell}" 40 + 41 + sed -i "/-cov/d" pytest.ini 42 + ''; 43 + 44 + propagatedBuildInputs = [ 45 + docutils 46 + ]; 47 + 48 + pythonImportsCheck = [ 49 + "creole" 50 + ]; 51 + 52 + nativeCheckInputs = [ 53 + pytestCheckHook 54 + readme_renderer 55 + textile 56 + ]; 57 + 58 + preCheck = '' 59 + export PATH=$out/bin:$PATH 60 + ''; 61 + 62 + disabledTests = [ 63 + # macro didn't expect argument 64 + "test_macro_wrong_arguments_quite" 65 + "test_macro_wrong_arguments_with_error_report" 66 + # rendering mismatches, likely docutils version mismatch 67 + "test_headlines1" 68 + "test_simple_table" 69 + ]; 70 + 71 + disabledTestPaths = [ 72 + # requires poetry 73 + "creole/tests/test_Makefile.py" 74 + # requires poetry_publish 75 + "creole/publish.py" 76 + "creole/tests/test_project_setup.py" 77 + # rendering differencenes, likely docutils version mismatch 78 + "creole/tests/test_cross_compare_rest.py" 79 + "creole/tests/test_rest2html.py" 80 + ]; 81 + 82 + meta = with lib; { 83 + description = "Creole markup tools written in Python"; 84 + homepage = "https://github.com/jedie/python-creole"; 85 + changelog = "https://github.com/jedie/python-creole/releases/tag/v${version}"; 86 + license = licenses.gpl3Plus; 87 + maintainers = with maintainers; [ hexa ]; 88 + }; 89 + }
+5 -3
pkgs/development/python-modules/rdkit/default.nix
··· 40 40 in 41 41 buildPythonPackage rec { 42 42 pname = "rdkit"; 43 - version = "2022.09.1"; 43 + version = "2022.09.5"; 44 44 format = "other"; 45 45 46 46 src = ··· 51 51 owner = pname; 52 52 repo = pname; 53 53 rev = "Release_${versionTag}"; 54 - hash = "sha256-AaawjCv3/ShByOKU0c37/hjuyfD7NhFC8UngDoG7C0s="; 54 + hash = "sha256-zsiH4gNCAeXDLjHhDsKwZMkTvVCWG9LwAaEKNOuqV2Q="; 55 55 }; 56 56 57 57 unpackPhase = '' ··· 59 59 find . -type d -exec chmod +w {} + 60 60 61 61 mkdir External/AvalonTools/avalon 62 - ln -s ${external.avalon}/* External/AvalonTools/avalon 62 + # In buildPhase, CMake patches the file in this directory 63 + # see https://github.com/rdkit/rdkit/pull/5928 64 + cp -r ${external.avalon}/* External/AvalonTools/avalon 63 65 64 66 mkdir External/YAeHMOP/yaehmop 65 67 ln -s ${external.yaehmop}/* External/YAeHMOP/yaehmop
+639 -254
pkgs/development/tools/cotton/Cargo.lock
··· 33 33 ] 34 34 35 35 [[package]] 36 - name = "ansi_term" 37 - version = "0.12.1" 36 + name = "anstream" 37 + version = "0.3.0" 38 38 source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 39 + checksum = "9e579a7752471abc2a8268df8b20005e3eadd975f585398f17efcfd8d4927371" 40 40 dependencies = [ 41 - "winapi", 41 + "anstyle", 42 + "anstyle-parse", 43 + "anstyle-query", 44 + "anstyle-wincon", 45 + "colorchoice", 46 + "is-terminal", 47 + "utf8parse", 48 + ] 49 + 50 + [[package]] 51 + name = "anstyle" 52 + version = "1.0.0" 53 + source = "registry+https://github.com/rust-lang/crates.io-index" 54 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 55 + 56 + [[package]] 57 + name = "anstyle-parse" 58 + version = "0.2.0" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 61 + dependencies = [ 62 + "utf8parse", 63 + ] 64 + 65 + [[package]] 66 + name = "anstyle-query" 67 + version = "1.0.0" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 70 + dependencies = [ 71 + "windows-sys 0.48.0", 72 + ] 73 + 74 + [[package]] 75 + name = "anstyle-wincon" 76 + version = "1.0.0" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "4bcd8291a340dd8ac70e18878bc4501dd7b4ff970cfa21c207d36ece51ea88fd" 79 + dependencies = [ 80 + "anstyle", 81 + "windows-sys 0.48.0", 42 82 ] 43 83 44 84 [[package]] 45 85 name = "async-compression" 46 - version = "0.3.14" 86 + version = "0.3.15" 47 87 source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "345fd392ab01f746c717b1357165b76f0b67a60192007b234058c9045fdcf695" 88 + checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 49 89 dependencies = [ 50 90 "brotli", 51 91 "flate2", ··· 57 97 58 98 [[package]] 59 99 name = "async-recursion" 60 - version = "1.0.0" 100 + version = "1.0.4" 61 101 source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "2cda8f4bcc10624c4e85bc66b3f452cca98cfa5ca002dc83a16aad2367641bea" 102 + checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 63 103 dependencies = [ 64 104 "proc-macro2", 65 105 "quote", 66 - "syn", 106 + "syn 2.0.8", 67 107 ] 68 108 69 109 [[package]] ··· 74 114 dependencies = [ 75 115 "proc-macro2", 76 116 "quote", 77 - "syn", 117 + "syn 1.0.104", 78 118 ] 79 119 80 120 [[package]] ··· 84 124 checksum = "2ce4f10ea3abcd6617873bae9f91d1c5332b4a778bd9ce34d0cd517474c1de82" 85 125 86 126 [[package]] 87 - name = "atty" 88 - version = "0.2.14" 89 - source = "registry+https://github.com/rust-lang/crates.io-index" 90 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 91 - dependencies = [ 92 - "hermit-abi", 93 - "libc", 94 - "winapi", 95 - ] 96 - 97 - [[package]] 98 127 name = "autocfg" 99 128 version = "1.1.0" 100 129 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 108 137 dependencies = [ 109 138 "addr2line", 110 139 "cc", 111 - "cfg-if 1.0.0", 140 + "cfg-if", 112 141 "libc", 113 142 "miniz_oxide", 114 143 "object", ··· 120 149 version = "0.13.0" 121 150 source = "registry+https://github.com/rust-lang/crates.io-index" 122 151 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 152 + 153 + [[package]] 154 + name = "base64" 155 + version = "0.21.0" 156 + source = "registry+https://github.com/rust-lang/crates.io-index" 157 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 123 158 124 159 [[package]] 125 160 name = "bitflags" ··· 168 203 169 204 [[package]] 170 205 name = "cached" 171 - version = "0.39.0" 206 + version = "0.43.0" 172 207 source = "registry+https://github.com/rust-lang/crates.io-index" 173 - checksum = "f3e27085975166ffaacbd04527132e1cf5906fa612991f9b4fea08e787da2961" 208 + checksum = "bc2fafddf188d13788e7099295a59b99e99b2148ab2195cae454e754cc099925" 174 209 dependencies = [ 175 210 "async-trait", 176 211 "async_once", 177 212 "cached_proc_macro", 178 213 "cached_proc_macro_types", 179 214 "futures", 180 - "hashbrown", 215 + "hashbrown 0.13.1", 181 216 "instant", 182 217 "lazy_static", 183 218 "once_cell", ··· 187 222 188 223 [[package]] 189 224 name = "cached_proc_macro" 190 - version = "0.15.0" 225 + version = "0.16.0" 191 226 source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "751f7f4e7a091545e7f6c65bacc404eaee7e87bfb1f9ece234a1caa173dc16f2" 227 + checksum = "e10ca87c81aaa3a949dbbe2b5e6c2c45dbc94ba4897e45ea31ff9ec5087be3dc" 193 228 dependencies = [ 194 229 "cached_proc_macro_types", 195 230 "darling", 231 + "proc-macro2", 196 232 "quote", 197 - "syn", 233 + "syn 1.0.104", 198 234 ] 199 235 200 236 [[package]] ··· 217 253 version = "1.0.73" 218 254 source = "registry+https://github.com/rust-lang/crates.io-index" 219 255 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 220 - 221 - [[package]] 222 - name = "cfg-if" 223 - version = "0.1.10" 224 - source = "registry+https://github.com/rust-lang/crates.io-index" 225 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 226 256 227 257 [[package]] 228 258 name = "cfg-if" ··· 232 262 233 263 [[package]] 234 264 name = "clap" 235 - version = "4.0.9" 265 + version = "4.2.2" 236 266 source = "registry+https://github.com/rust-lang/crates.io-index" 237 - checksum = "30607dd93c420c6f1f80b544be522a0238a7db35e6a12968d28910983fee0df0" 267 + checksum = "9b802d85aaf3a1cdb02b224ba472ebdea62014fccfcb269b95a4d76443b5ee5a" 238 268 dependencies = [ 239 - "atty", 240 - "bitflags", 269 + "clap_builder", 241 270 "clap_derive", 242 - "clap_lex", 243 271 "once_cell", 272 + ] 273 + 274 + [[package]] 275 + name = "clap_builder" 276 + version = "4.2.2" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "14a1a858f532119338887a4b8e1af9c60de8249cd7bafd68036a489e261e37b6" 279 + dependencies = [ 280 + "anstream", 281 + "anstyle", 282 + "bitflags", 283 + "clap_lex", 244 284 "strsim", 245 - "termcolor", 246 285 ] 247 286 248 287 [[package]] 249 288 name = "clap_derive" 250 - version = "4.0.9" 289 + version = "4.2.0" 251 290 source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "a4a307492e1a34939f79d3b6b9650bd2b971513cd775436bf2b78defeb5af00b" 291 + checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" 253 292 dependencies = [ 254 293 "heck", 255 - "proc-macro-error", 256 294 "proc-macro2", 257 295 "quote", 258 - "syn", 296 + "syn 2.0.8", 259 297 ] 260 298 261 299 [[package]] 262 300 name = "clap_lex" 263 - version = "0.3.0" 301 + version = "0.4.0" 264 302 source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" 266 - dependencies = [ 267 - "os_str_bytes", 268 - ] 303 + checksum = "4f0807fb6f644c83f3e4ec014fec9858c1c8b26a7db8eb5f0bde5817df9c1df7" 269 304 270 305 [[package]] 271 306 name = "color-eyre" ··· 295 330 ] 296 331 297 332 [[package]] 333 + name = "colorchoice" 334 + version = "1.0.0" 335 + source = "registry+https://github.com/rust-lang/crates.io-index" 336 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 337 + 338 + [[package]] 298 339 name = "compact_str" 299 - version = "0.6.1" 340 + version = "0.7.0" 300 341 source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "5138945395949e7dfba09646dc9e766b548ff48e23deb5246890e6b64ae9e1b9" 342 + checksum = "bff0805f79ecb1b35163f3957a6934ea8d04fcd36ef98b52e7316f63e72e73d1" 302 343 dependencies = [ 303 344 "castaway", 345 + "cfg-if", 304 346 "itoa", 305 347 "ryu", 306 348 "serde", 349 + "static_assertions", 307 350 ] 308 351 309 352 [[package]] ··· 332 375 "color-eyre", 333 376 "compact_str", 334 377 "dashmap", 378 + "flume", 335 379 "futures", 336 380 "futures-lite", 337 - "generational-arena", 338 381 "indexmap", 339 382 "indicatif", 340 383 "itertools", 384 + "mimalloc", 385 + "multimap", 341 386 "nix", 342 387 "node-semver", 343 388 "notify", ··· 348 393 "serde", 349 394 "serde_json", 350 395 "serde_path_to_error", 351 - "tikv-jemallocator", 396 + "tap", 352 397 "tokio", 353 398 "tokio-tar", 354 399 "tokio-util", 400 + "toml", 355 401 "tracing", 356 402 "tracing-error", 357 403 "tracing-subscriber", ··· 363 409 source = "registry+https://github.com/rust-lang/crates.io-index" 364 410 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 365 411 dependencies = [ 366 - "cfg-if 1.0.0", 412 + "cfg-if", 367 413 ] 368 414 369 415 [[package]] ··· 372 418 source = "registry+https://github.com/rust-lang/crates.io-index" 373 419 checksum = "4c02a4d71819009c192cf4872265391563fd6a84c81ff2c0f2a7026ca4c1d85c" 374 420 dependencies = [ 375 - "cfg-if 1.0.0", 421 + "cfg-if", 376 422 "crossbeam-utils", 377 423 ] 378 424 ··· 382 428 source = "registry+https://github.com/rust-lang/crates.io-index" 383 429 checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83" 384 430 dependencies = [ 385 - "cfg-if 1.0.0", 431 + "cfg-if", 386 432 "once_cell", 387 433 ] 388 434 389 435 [[package]] 390 436 name = "darling" 391 - version = "0.13.4" 437 + version = "0.14.2" 392 438 source = "registry+https://github.com/rust-lang/crates.io-index" 393 - checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 439 + checksum = "b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa" 394 440 dependencies = [ 395 441 "darling_core", 396 442 "darling_macro", ··· 398 444 399 445 [[package]] 400 446 name = "darling_core" 401 - version = "0.13.4" 447 + version = "0.14.2" 402 448 source = "registry+https://github.com/rust-lang/crates.io-index" 403 - checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 449 + checksum = "a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f" 404 450 dependencies = [ 405 451 "fnv", 406 452 "ident_case", 407 453 "proc-macro2", 408 454 "quote", 409 455 "strsim", 410 - "syn", 456 + "syn 1.0.104", 411 457 ] 412 458 413 459 [[package]] 414 460 name = "darling_macro" 415 - version = "0.13.4" 461 + version = "0.14.2" 416 462 source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 463 + checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e" 418 464 dependencies = [ 419 465 "darling_core", 420 466 "quote", 421 - "syn", 467 + "syn 1.0.104", 422 468 ] 423 469 424 470 [[package]] ··· 427 473 source = "registry+https://github.com/rust-lang/crates.io-index" 428 474 checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 429 475 dependencies = [ 430 - "cfg-if 1.0.0", 431 - "hashbrown", 476 + "cfg-if", 477 + "hashbrown 0.12.3", 432 478 "lock_api", 433 479 "once_cell", 434 480 "parking_lot_core", ··· 459 505 source = "registry+https://github.com/rust-lang/crates.io-index" 460 506 checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 461 507 dependencies = [ 462 - "cfg-if 1.0.0", 508 + "cfg-if", 463 509 ] 464 510 465 511 [[package]] 466 512 name = "enum-as-inner" 467 - version = "0.4.0" 513 + version = "0.5.1" 468 514 source = "registry+https://github.com/rust-lang/crates.io-index" 469 - checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73" 515 + checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" 470 516 dependencies = [ 471 517 "heck", 472 518 "proc-macro2", 473 519 "quote", 474 - "syn", 520 + "syn 1.0.104", 521 + ] 522 + 523 + [[package]] 524 + name = "errno" 525 + version = "0.3.0" 526 + source = "registry+https://github.com/rust-lang/crates.io-index" 527 + checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" 528 + dependencies = [ 529 + "errno-dragonfly", 530 + "libc", 531 + "windows-sys 0.45.0", 532 + ] 533 + 534 + [[package]] 535 + name = "errno-dragonfly" 536 + version = "0.1.2" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 539 + dependencies = [ 540 + "cc", 541 + "libc", 475 542 ] 476 543 477 544 [[package]] ··· 499 566 source = "registry+https://github.com/rust-lang/crates.io-index" 500 567 checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" 501 568 dependencies = [ 502 - "cfg-if 1.0.0", 569 + "cfg-if", 503 570 "libc", 504 571 "redox_syscall", 505 - "windows-sys", 572 + "windows-sys 0.36.1", 506 573 ] 507 574 508 575 [[package]] ··· 513 580 dependencies = [ 514 581 "crc32fast", 515 582 "miniz_oxide", 583 + ] 584 + 585 + [[package]] 586 + name = "flume" 587 + version = "0.10.14" 588 + source = "registry+https://github.com/rust-lang/crates.io-index" 589 + checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 590 + dependencies = [ 591 + "futures-core", 592 + "futures-sink", 593 + "nanorand", 594 + "pin-project", 595 + "spin 0.9.4", 516 596 ] 517 597 518 598 [[package]] ··· 532 612 ] 533 613 534 614 [[package]] 535 - name = "fs_extra" 536 - version = "1.2.0" 537 - source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" 539 - 540 - [[package]] 541 615 name = "fsevent-sys" 542 616 version = "4.1.0" 543 617 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 548 622 549 623 [[package]] 550 624 name = "futures" 551 - version = "0.3.24" 625 + version = "0.3.28" 552 626 source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c" 627 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 554 628 dependencies = [ 555 629 "futures-channel", 556 630 "futures-core", ··· 563 637 564 638 [[package]] 565 639 name = "futures-channel" 566 - version = "0.3.24" 640 + version = "0.3.28" 567 641 source = "registry+https://github.com/rust-lang/crates.io-index" 568 - checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050" 642 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 569 643 dependencies = [ 570 644 "futures-core", 571 645 "futures-sink", ··· 573 647 574 648 [[package]] 575 649 name = "futures-core" 576 - version = "0.3.24" 650 + version = "0.3.28" 577 651 source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf" 652 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 579 653 580 654 [[package]] 581 655 name = "futures-executor" 582 - version = "0.3.24" 656 + version = "0.3.28" 583 657 source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab" 658 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 585 659 dependencies = [ 586 660 "futures-core", 587 661 "futures-task", ··· 590 664 591 665 [[package]] 592 666 name = "futures-io" 593 - version = "0.3.24" 667 + version = "0.3.28" 594 668 source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68" 669 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 596 670 597 671 [[package]] 598 672 name = "futures-lite" 599 - version = "1.12.0" 673 + version = "1.13.0" 600 674 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 675 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 602 676 dependencies = [ 603 677 "fastrand", 604 678 "futures-core", ··· 611 685 612 686 [[package]] 613 687 name = "futures-macro" 614 - version = "0.3.24" 688 + version = "0.3.28" 615 689 source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17" 690 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 617 691 dependencies = [ 618 692 "proc-macro2", 619 693 "quote", 620 - "syn", 694 + "syn 2.0.8", 621 695 ] 622 696 623 697 [[package]] 624 698 name = "futures-sink" 625 - version = "0.3.24" 699 + version = "0.3.28" 626 700 source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56" 701 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 628 702 629 703 [[package]] 630 704 name = "futures-task" 631 - version = "0.3.24" 705 + version = "0.3.28" 632 706 source = "registry+https://github.com/rust-lang/crates.io-index" 633 - checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1" 707 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 634 708 635 709 [[package]] 636 710 name = "futures-util" 637 - version = "0.3.24" 711 + version = "0.3.28" 638 712 source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90" 713 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 640 714 dependencies = [ 641 715 "futures-channel", 642 716 "futures-core", ··· 651 725 ] 652 726 653 727 [[package]] 654 - name = "generational-arena" 655 - version = "0.2.8" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "8e1d3b771574f62d0548cee0ad9057857e9fc25d7a3335f140c84f6acd0bf601" 658 - dependencies = [ 659 - "cfg-if 0.1.10", 660 - ] 661 - 662 - [[package]] 663 728 name = "getrandom" 664 729 version = "0.2.7" 665 730 source = "registry+https://github.com/rust-lang/crates.io-index" 666 731 checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 667 732 dependencies = [ 668 - "cfg-if 1.0.0", 733 + "cfg-if", 734 + "js-sys", 669 735 "libc", 670 736 "wasi", 737 + "wasm-bindgen", 671 738 ] 672 739 673 740 [[package]] ··· 702 769 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 703 770 704 771 [[package]] 772 + name = "hashbrown" 773 + version = "0.13.1" 774 + source = "registry+https://github.com/rust-lang/crates.io-index" 775 + checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038" 776 + 777 + [[package]] 705 778 name = "heck" 706 779 version = "0.4.0" 707 780 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 715 788 dependencies = [ 716 789 "libc", 717 790 ] 791 + 792 + [[package]] 793 + name = "hermit-abi" 794 + version = "0.3.1" 795 + source = "registry+https://github.com/rust-lang/crates.io-index" 796 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 718 797 719 798 [[package]] 720 799 name = "hostname" ··· 823 902 824 903 [[package]] 825 904 name = "indexmap" 826 - version = "1.9.1" 905 + version = "1.9.3" 827 906 source = "registry+https://github.com/rust-lang/crates.io-index" 828 - checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 907 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 829 908 dependencies = [ 830 909 "autocfg", 831 - "hashbrown", 910 + "hashbrown 0.12.3", 832 911 "serde", 833 912 ] 834 913 835 914 [[package]] 836 915 name = "indicatif" 837 - version = "0.17.1" 916 + version = "0.17.3" 838 917 source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "bfddc9561e8baf264e0e45e197fd7696320026eb10a8180340debc27b18f535b" 918 + checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729" 840 919 dependencies = [ 841 920 "console", 842 921 "number_prefix", 922 + "portable-atomic", 843 923 "unicode-width", 844 924 ] 845 925 ··· 869 949 source = "registry+https://github.com/rust-lang/crates.io-index" 870 950 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 871 951 dependencies = [ 872 - "cfg-if 1.0.0", 952 + "cfg-if", 953 + ] 954 + 955 + [[package]] 956 + name = "io-lifetimes" 957 + version = "1.0.1" 958 + source = "registry+https://github.com/rust-lang/crates.io-index" 959 + checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87" 960 + dependencies = [ 961 + "libc", 962 + "windows-sys 0.42.0", 873 963 ] 874 964 875 965 [[package]] ··· 889 979 version = "2.5.0" 890 980 source = "registry+https://github.com/rust-lang/crates.io-index" 891 981 checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 982 + 983 + [[package]] 984 + name = "is-terminal" 985 + version = "0.4.6" 986 + source = "registry+https://github.com/rust-lang/crates.io-index" 987 + checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" 988 + dependencies = [ 989 + "hermit-abi 0.3.1", 990 + "io-lifetimes", 991 + "rustix", 992 + "windows-sys 0.45.0", 993 + ] 892 994 893 995 [[package]] 894 996 name = "itertools" ··· 942 1044 943 1045 [[package]] 944 1046 name = "libc" 945 - version = "0.2.131" 1047 + version = "0.2.140" 1048 + source = "registry+https://github.com/rust-lang/crates.io-index" 1049 + checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 1050 + 1051 + [[package]] 1052 + name = "libmimalloc-sys" 1053 + version = "0.1.32" 946 1054 source = "registry+https://github.com/rust-lang/crates.io-index" 947 - checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40" 1055 + checksum = "43a558e3d911bc3c7bfc8c78bc580b404d6e51c1cefbf656e176a94b49b0df40" 1056 + dependencies = [ 1057 + "cc", 1058 + "libc", 1059 + ] 948 1060 949 1061 [[package]] 950 1062 name = "linked-hash-map" ··· 953 1065 checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 954 1066 955 1067 [[package]] 1068 + name = "linux-raw-sys" 1069 + version = "0.3.0" 1070 + source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "cd550e73688e6d578f0ac2119e32b797a327631a42f9433e59d02e139c8df60d" 1072 + 1073 + [[package]] 956 1074 name = "lock_api" 957 1075 version = "0.4.8" 958 1076 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 968 1086 source = "registry+https://github.com/rust-lang/crates.io-index" 969 1087 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 970 1088 dependencies = [ 971 - "cfg-if 1.0.0", 1089 + "cfg-if", 972 1090 ] 973 1091 974 1092 [[package]] ··· 1009 1127 1010 1128 [[package]] 1011 1129 name = "memoffset" 1012 - version = "0.6.5" 1130 + version = "0.7.1" 1013 1131 source = "registry+https://github.com/rust-lang/crates.io-index" 1014 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1132 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1015 1133 dependencies = [ 1016 1134 "autocfg", 1017 1135 ] ··· 1035 1153 dependencies = [ 1036 1154 "proc-macro2", 1037 1155 "quote", 1038 - "syn", 1156 + "syn 1.0.104", 1157 + ] 1158 + 1159 + [[package]] 1160 + name = "mimalloc" 1161 + version = "0.1.36" 1162 + source = "registry+https://github.com/rust-lang/crates.io-index" 1163 + checksum = "3d88dad3f985ec267a3fcb7a1726f5cb1a7e8cad8b646e70a84f967210df23da" 1164 + dependencies = [ 1165 + "libmimalloc-sys", 1039 1166 ] 1040 1167 1041 1168 [[package]] ··· 1068 1195 "libc", 1069 1196 "log", 1070 1197 "wasi", 1071 - "windows-sys", 1198 + "windows-sys 0.36.1", 1199 + ] 1200 + 1201 + [[package]] 1202 + name = "multimap" 1203 + version = "0.9.0" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "70db9248a93dc36a36d9a47898caa007a32755c7ad140ec64eeeb50d5a730631" 1206 + dependencies = [ 1207 + "serde", 1208 + ] 1209 + 1210 + [[package]] 1211 + name = "nanorand" 1212 + version = "0.7.0" 1213 + source = "registry+https://github.com/rust-lang/crates.io-index" 1214 + checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 1215 + dependencies = [ 1216 + "getrandom", 1072 1217 ] 1073 1218 1074 1219 [[package]] 1075 1220 name = "nix" 1076 - version = "0.25.0" 1221 + version = "0.26.2" 1077 1222 source = "registry+https://github.com/rust-lang/crates.io-index" 1078 - checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb" 1223 + checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 1079 1224 dependencies = [ 1080 - "autocfg", 1081 1225 "bitflags", 1082 - "cfg-if 1.0.0", 1226 + "cfg-if", 1083 1227 "libc", 1084 1228 "memoffset", 1085 1229 "pin-utils", 1230 + "static_assertions", 1086 1231 ] 1087 1232 1088 1233 [[package]] 1089 1234 name = "node-semver" 1090 1235 version = "2.0.1-alpha.0" 1091 - source = "git+https://github.com/danielhuang/node-semver-rs?rev=3af6c068bc59f58683a536cbcf683c5cec69621f#3af6c068bc59f58683a536cbcf683c5cec69621f" 1236 + source = "git+https://github.com/danielhuang/node-semver-rs?rev=bf4b103dc88b310c9dc049433aff1a14716e1e68#bf4b103dc88b310c9dc049433aff1a14716e1e68" 1092 1237 dependencies = [ 1093 1238 "bytecount", 1094 1239 "miette", ··· 1109 1254 1110 1255 [[package]] 1111 1256 name = "notify" 1112 - version = "5.0.0" 1257 + version = "5.1.0" 1113 1258 source = "registry+https://github.com/rust-lang/crates.io-index" 1114 - checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a" 1259 + checksum = "58ea850aa68a06e48fdb069c0ec44d0d64c8dbffa49bf3b6f7f0a901fdea1ba9" 1115 1260 dependencies = [ 1116 1261 "bitflags", 1117 1262 "crossbeam-channel", ··· 1122 1267 "libc", 1123 1268 "mio", 1124 1269 "walkdir", 1270 + "windows-sys 0.42.0", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "nu-ansi-term" 1275 + version = "0.46.0" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1278 + dependencies = [ 1279 + "overload", 1125 1280 "winapi", 1126 1281 ] 1127 1282 ··· 1131 1286 source = "registry+https://github.com/rust-lang/crates.io-index" 1132 1287 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1133 1288 dependencies = [ 1134 - "hermit-abi", 1289 + "hermit-abi 0.1.19", 1135 1290 "libc", 1136 1291 ] 1137 1292 ··· 1152 1307 1153 1308 [[package]] 1154 1309 name = "once_cell" 1155 - version = "1.15.0" 1310 + version = "1.17.1" 1156 1311 source = "registry+https://github.com/rust-lang/crates.io-index" 1157 - checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" 1312 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1158 1313 1159 1314 [[package]] 1160 - name = "os_str_bytes" 1161 - version = "6.2.0" 1315 + name = "overload" 1316 + version = "0.1.1" 1162 1317 source = "registry+https://github.com/rust-lang/crates.io-index" 1163 - checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4" 1318 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1164 1319 1165 1320 [[package]] 1166 1321 name = "owo-colors" 1167 - version = "3.5.0" 1322 + version = "3.6.0" 1168 1323 source = "registry+https://github.com/rust-lang/crates.io-index" 1169 - checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 1324 + checksum = "69dc4ec9e7e12502579e09e8a53c6a305b3aceb62ad5c307a62f7c3eada78324" 1170 1325 1171 1326 [[package]] 1172 1327 name = "parking" ··· 1190 1345 source = "registry+https://github.com/rust-lang/crates.io-index" 1191 1346 checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1192 1347 dependencies = [ 1193 - "cfg-if 1.0.0", 1348 + "cfg-if", 1194 1349 "libc", 1195 1350 "redox_syscall", 1196 1351 "smallvec", 1197 - "windows-sys", 1352 + "windows-sys 0.36.1", 1198 1353 ] 1199 1354 1200 1355 [[package]] ··· 1204 1359 checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1205 1360 1206 1361 [[package]] 1362 + name = "pin-project" 1363 + version = "1.0.12" 1364 + source = "registry+https://github.com/rust-lang/crates.io-index" 1365 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 1366 + dependencies = [ 1367 + "pin-project-internal", 1368 + ] 1369 + 1370 + [[package]] 1371 + name = "pin-project-internal" 1372 + version = "1.0.12" 1373 + source = "registry+https://github.com/rust-lang/crates.io-index" 1374 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 1375 + dependencies = [ 1376 + "proc-macro2", 1377 + "quote", 1378 + "syn 1.0.104", 1379 + ] 1380 + 1381 + [[package]] 1207 1382 name = "pin-project-lite" 1208 1383 version = "0.2.9" 1209 1384 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1216 1391 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1217 1392 1218 1393 [[package]] 1219 - name = "ppv-lite86" 1220 - version = "0.2.16" 1221 - source = "registry+https://github.com/rust-lang/crates.io-index" 1222 - checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1223 - 1224 - [[package]] 1225 - name = "proc-macro-error" 1226 - version = "1.0.4" 1394 + name = "portable-atomic" 1395 + version = "0.3.15" 1227 1396 source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1229 - dependencies = [ 1230 - "proc-macro-error-attr", 1231 - "proc-macro2", 1232 - "quote", 1233 - "syn", 1234 - "version_check", 1235 - ] 1397 + checksum = "15eb2c6e362923af47e13c23ca5afb859e83d54452c55b0b9ac763b8f7c1ac16" 1236 1398 1237 1399 [[package]] 1238 - name = "proc-macro-error-attr" 1239 - version = "1.0.4" 1400 + name = "ppv-lite86" 1401 + version = "0.2.16" 1240 1402 source = "registry+https://github.com/rust-lang/crates.io-index" 1241 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1242 - dependencies = [ 1243 - "proc-macro2", 1244 - "quote", 1245 - "version_check", 1246 - ] 1403 + checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1247 1404 1248 1405 [[package]] 1249 1406 name = "proc-macro2" 1250 - version = "1.0.45" 1407 + version = "1.0.52" 1251 1408 source = "registry+https://github.com/rust-lang/crates.io-index" 1252 - checksum = "3edcd08cf4fea98d1ae6c9ddd3b8ccb1acac7c3693d62625969a7daa04a2ae36" 1409 + checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224" 1253 1410 dependencies = [ 1254 1411 "unicode-ident", 1255 1412 ] ··· 1262 1419 1263 1420 [[package]] 1264 1421 name = "quote" 1265 - version = "1.0.20" 1422 + version = "1.0.26" 1266 1423 source = "registry+https://github.com/rust-lang/crates.io-index" 1267 - checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" 1424 + checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 1268 1425 dependencies = [ 1269 1426 "proc-macro2", 1270 1427 ] ··· 1334 1491 1335 1492 [[package]] 1336 1493 name = "reqwest" 1337 - version = "0.11.12" 1494 + version = "0.11.16" 1338 1495 source = "registry+https://github.com/rust-lang/crates.io-index" 1339 - checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc" 1496 + checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" 1340 1497 dependencies = [ 1341 1498 "async-compression", 1342 - "base64", 1499 + "base64 0.21.0", 1343 1500 "bytes", 1344 1501 "encoding_rs", 1345 1502 "futures-core", ··· 1369 1526 "url", 1370 1527 "wasm-bindgen", 1371 1528 "wasm-bindgen-futures", 1529 + "wasm-streams", 1372 1530 "web-sys", 1373 1531 "webpki-roots", 1374 1532 "winreg 0.10.1", ··· 1393 1551 "cc", 1394 1552 "libc", 1395 1553 "once_cell", 1396 - "spin", 1554 + "spin 0.5.2", 1397 1555 "untrusted", 1398 1556 "web-sys", 1399 1557 "winapi", ··· 1412 1570 checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1413 1571 1414 1572 [[package]] 1573 + name = "rustix" 1574 + version = "0.37.4" 1575 + source = "registry+https://github.com/rust-lang/crates.io-index" 1576 + checksum = "c348b5dc624ecee40108aa2922fed8bad89d7fcc2b9f8cb18f632898ac4a37f9" 1577 + dependencies = [ 1578 + "bitflags", 1579 + "errno", 1580 + "io-lifetimes", 1581 + "libc", 1582 + "linux-raw-sys", 1583 + "windows-sys 0.45.0", 1584 + ] 1585 + 1586 + [[package]] 1415 1587 name = "rustls" 1416 1588 version = "0.20.6" 1417 1589 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1429 1601 source = "registry+https://github.com/rust-lang/crates.io-index" 1430 1602 checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9" 1431 1603 dependencies = [ 1432 - "base64", 1604 + "base64 0.13.0", 1433 1605 ] 1434 1606 1435 1607 [[package]] ··· 1471 1643 1472 1644 [[package]] 1473 1645 name = "serde" 1474 - version = "1.0.145" 1646 + version = "1.0.160" 1475 1647 source = "registry+https://github.com/rust-lang/crates.io-index" 1476 - checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b" 1648 + checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" 1477 1649 dependencies = [ 1478 1650 "serde_derive", 1479 1651 ] 1480 1652 1481 1653 [[package]] 1482 1654 name = "serde_derive" 1483 - version = "1.0.145" 1655 + version = "1.0.160" 1484 1656 source = "registry+https://github.com/rust-lang/crates.io-index" 1485 - checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c" 1657 + checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" 1486 1658 dependencies = [ 1487 1659 "proc-macro2", 1488 1660 "quote", 1489 - "syn", 1661 + "syn 2.0.8", 1490 1662 ] 1491 1663 1492 1664 [[package]] 1493 1665 name = "serde_json" 1494 - version = "1.0.85" 1666 + version = "1.0.96" 1495 1667 source = "registry+https://github.com/rust-lang/crates.io-index" 1496 - checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" 1668 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 1497 1669 dependencies = [ 1498 1670 "indexmap", 1499 1671 "itoa", ··· 1503 1675 1504 1676 [[package]] 1505 1677 name = "serde_path_to_error" 1506 - version = "0.1.8" 1678 + version = "0.1.11" 1507 1679 source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "184c643044780f7ceb59104cef98a5a6f12cb2288a7bc701ab93a362b49fd47d" 1680 + checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0" 1681 + dependencies = [ 1682 + "serde", 1683 + ] 1684 + 1685 + [[package]] 1686 + name = "serde_spanned" 1687 + version = "0.6.1" 1688 + source = "registry+https://github.com/rust-lang/crates.io-index" 1689 + checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 1509 1690 dependencies = [ 1510 1691 "serde", 1511 1692 ] ··· 1557 1738 1558 1739 [[package]] 1559 1740 name = "socket2" 1560 - version = "0.4.4" 1741 + version = "0.4.9" 1561 1742 source = "registry+https://github.com/rust-lang/crates.io-index" 1562 - checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 1743 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1563 1744 dependencies = [ 1564 1745 "libc", 1565 1746 "winapi", ··· 1572 1753 checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1573 1754 1574 1755 [[package]] 1756 + name = "spin" 1757 + version = "0.9.4" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" 1760 + dependencies = [ 1761 + "lock_api", 1762 + ] 1763 + 1764 + [[package]] 1765 + name = "static_assertions" 1766 + version = "1.1.0" 1767 + source = "registry+https://github.com/rust-lang/crates.io-index" 1768 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1769 + 1770 + [[package]] 1575 1771 name = "strsim" 1576 1772 version = "0.10.0" 1577 1773 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1579 1775 1580 1776 [[package]] 1581 1777 name = "syn" 1582 - version = "1.0.98" 1778 + version = "1.0.104" 1583 1779 source = "registry+https://github.com/rust-lang/crates.io-index" 1584 - checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" 1780 + checksum = "4ae548ec36cf198c0ef7710d3c230987c2d6d7bd98ad6edc0274462724c585ce" 1585 1781 dependencies = [ 1586 1782 "proc-macro2", 1587 1783 "quote", ··· 1589 1785 ] 1590 1786 1591 1787 [[package]] 1592 - name = "termcolor" 1593 - version = "1.1.3" 1788 + name = "syn" 1789 + version = "2.0.8" 1594 1790 source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1791 + checksum = "bcc02725fd69ab9f26eab07fad303e2497fad6fb9eba4f96c4d1687bdf704ad9" 1596 1792 dependencies = [ 1597 - "winapi-util", 1793 + "proc-macro2", 1794 + "quote", 1795 + "unicode-ident", 1598 1796 ] 1797 + 1798 + [[package]] 1799 + name = "tap" 1800 + version = "1.0.1" 1801 + source = "registry+https://github.com/rust-lang/crates.io-index" 1802 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 1599 1803 1600 1804 [[package]] 1601 1805 name = "terminal_size" ··· 1624 1828 dependencies = [ 1625 1829 "proc-macro2", 1626 1830 "quote", 1627 - "syn", 1831 + "syn 1.0.104", 1628 1832 ] 1629 1833 1630 1834 [[package]] ··· 1637 1841 ] 1638 1842 1639 1843 [[package]] 1640 - name = "tikv-jemalloc-sys" 1641 - version = "0.5.1+5.3.0-patched" 1642 - source = "registry+https://github.com/rust-lang/crates.io-index" 1643 - checksum = "931e876f91fed0827f863a2d153897790da0b24d882c721a79cb3beb0b903261" 1644 - dependencies = [ 1645 - "cc", 1646 - "fs_extra", 1647 - "libc", 1648 - ] 1649 - 1650 - [[package]] 1651 - name = "tikv-jemallocator" 1652 - version = "0.5.0" 1653 - source = "registry+https://github.com/rust-lang/crates.io-index" 1654 - checksum = "20612db8a13a6c06d57ec83953694185a367e16945f66565e8028d2c0bd76979" 1655 - dependencies = [ 1656 - "libc", 1657 - "tikv-jemalloc-sys", 1658 - ] 1659 - 1660 - [[package]] 1661 1844 name = "tinyvec" 1662 1845 version = "1.6.0" 1663 1846 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1674 1857 1675 1858 [[package]] 1676 1859 name = "tokio" 1677 - version = "1.21.2" 1860 + version = "1.27.0" 1678 1861 source = "registry+https://github.com/rust-lang/crates.io-index" 1679 - checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" 1862 + checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" 1680 1863 dependencies = [ 1681 1864 "autocfg", 1682 1865 "bytes", 1683 1866 "libc", 1684 - "memchr", 1685 1867 "mio", 1686 1868 "num_cpus", 1687 1869 "parking_lot", ··· 1689 1871 "signal-hook-registry", 1690 1872 "socket2", 1691 1873 "tokio-macros", 1692 - "winapi", 1874 + "windows-sys 0.45.0", 1693 1875 ] 1694 1876 1695 1877 [[package]] 1696 1878 name = "tokio-macros" 1697 - version = "1.8.0" 1879 + version = "2.0.0" 1698 1880 source = "registry+https://github.com/rust-lang/crates.io-index" 1699 - checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 1881 + checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" 1700 1882 dependencies = [ 1701 1883 "proc-macro2", 1702 1884 "quote", 1703 - "syn", 1885 + "syn 2.0.8", 1704 1886 ] 1705 1887 1706 1888 [[package]] ··· 1741 1923 1742 1924 [[package]] 1743 1925 name = "tokio-util" 1744 - version = "0.7.4" 1926 + version = "0.7.7" 1745 1927 source = "registry+https://github.com/rust-lang/crates.io-index" 1746 - checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" 1928 + checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 1747 1929 dependencies = [ 1748 1930 "bytes", 1749 1931 "futures-core", ··· 1755 1937 ] 1756 1938 1757 1939 [[package]] 1940 + name = "toml" 1941 + version = "0.7.3" 1942 + source = "registry+https://github.com/rust-lang/crates.io-index" 1943 + checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 1944 + dependencies = [ 1945 + "serde", 1946 + "serde_spanned", 1947 + "toml_datetime", 1948 + "toml_edit", 1949 + ] 1950 + 1951 + [[package]] 1952 + name = "toml_datetime" 1953 + version = "0.6.1" 1954 + source = "registry+https://github.com/rust-lang/crates.io-index" 1955 + checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 1956 + dependencies = [ 1957 + "serde", 1958 + ] 1959 + 1960 + [[package]] 1961 + name = "toml_edit" 1962 + version = "0.19.6" 1963 + source = "registry+https://github.com/rust-lang/crates.io-index" 1964 + checksum = "08de71aa0d6e348f070457f85af8bd566e2bc452156a423ddf22861b3a953fae" 1965 + dependencies = [ 1966 + "indexmap", 1967 + "serde", 1968 + "serde_spanned", 1969 + "toml_datetime", 1970 + "winnow", 1971 + ] 1972 + 1973 + [[package]] 1758 1974 name = "tower-service" 1759 1975 version = "0.3.2" 1760 1976 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1762 1978 1763 1979 [[package]] 1764 1980 name = "tracing" 1765 - version = "0.1.36" 1981 + version = "0.1.37" 1766 1982 source = "registry+https://github.com/rust-lang/crates.io-index" 1767 - checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 1983 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 1768 1984 dependencies = [ 1769 - "cfg-if 1.0.0", 1985 + "cfg-if", 1770 1986 "pin-project-lite", 1771 1987 "tracing-attributes", 1772 1988 "tracing-core", ··· 1774 1990 1775 1991 [[package]] 1776 1992 name = "tracing-attributes" 1777 - version = "0.1.22" 1993 + version = "0.1.23" 1778 1994 source = "registry+https://github.com/rust-lang/crates.io-index" 1779 - checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" 1995 + checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 1780 1996 dependencies = [ 1781 1997 "proc-macro2", 1782 1998 "quote", 1783 - "syn", 1999 + "syn 1.0.104", 1784 2000 ] 1785 2001 1786 2002 [[package]] 1787 2003 name = "tracing-core" 1788 - version = "0.1.29" 2004 + version = "0.1.30" 1789 2005 source = "registry+https://github.com/rust-lang/crates.io-index" 1790 - checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 2006 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 1791 2007 dependencies = [ 1792 2008 "once_cell", 1793 2009 "valuable", ··· 1816 2032 1817 2033 [[package]] 1818 2034 name = "tracing-subscriber" 1819 - version = "0.3.15" 2035 + version = "0.3.16" 1820 2036 source = "registry+https://github.com/rust-lang/crates.io-index" 1821 - checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b" 2037 + checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 1822 2038 dependencies = [ 1823 - "ansi_term", 1824 2039 "matchers", 2040 + "nu-ansi-term", 1825 2041 "once_cell", 1826 2042 "regex", 1827 2043 "sharded-slab", ··· 1834 2050 1835 2051 [[package]] 1836 2052 name = "trust-dns-proto" 1837 - version = "0.21.2" 2053 + version = "0.22.0" 1838 2054 source = "registry+https://github.com/rust-lang/crates.io-index" 1839 - checksum = "9c31f240f59877c3d4bb3b3ea0ec5a6a0cff07323580ff8c7a605cd7d08b255d" 2055 + checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" 1840 2056 dependencies = [ 1841 2057 "async-trait", 1842 - "cfg-if 1.0.0", 2058 + "cfg-if", 1843 2059 "data-encoding", 1844 2060 "enum-as-inner", 1845 2061 "futures-channel", ··· 1848 2064 "idna", 1849 2065 "ipnet", 1850 2066 "lazy_static", 1851 - "log", 1852 2067 "rand", 1853 2068 "smallvec", 1854 2069 "thiserror", 1855 2070 "tinyvec", 1856 2071 "tokio", 2072 + "tracing", 1857 2073 "url", 1858 2074 ] 1859 2075 1860 2076 [[package]] 1861 2077 name = "trust-dns-resolver" 1862 - version = "0.21.2" 2078 + version = "0.22.0" 1863 2079 source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "e4ba72c2ea84515690c9fcef4c6c660bb9df3036ed1051686de84605b74fd558" 2080 + checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" 1865 2081 dependencies = [ 1866 - "cfg-if 1.0.0", 2082 + "cfg-if", 1867 2083 "futures-util", 1868 2084 "ipconfig", 1869 2085 "lazy_static", 1870 - "log", 1871 2086 "lru-cache", 1872 2087 "parking_lot", 1873 2088 "resolv-conf", 1874 2089 "smallvec", 1875 2090 "thiserror", 1876 2091 "tokio", 2092 + "tracing", 1877 2093 "trust-dns-proto", 1878 2094 ] 1879 2095 ··· 1929 2145 ] 1930 2146 1931 2147 [[package]] 1932 - name = "valuable" 1933 - version = "0.1.0" 2148 + name = "utf8parse" 2149 + version = "0.2.1" 1934 2150 source = "registry+https://github.com/rust-lang/crates.io-index" 1935 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2151 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 1936 2152 1937 2153 [[package]] 1938 - name = "version_check" 1939 - version = "0.9.4" 2154 + name = "valuable" 2155 + version = "0.1.0" 1940 2156 source = "registry+https://github.com/rust-lang/crates.io-index" 1941 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2157 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 1942 2158 1943 2159 [[package]] 1944 2160 name = "waker-fn" ··· 1979 2195 source = "registry+https://github.com/rust-lang/crates.io-index" 1980 2196 checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994" 1981 2197 dependencies = [ 1982 - "cfg-if 1.0.0", 2198 + "cfg-if", 1983 2199 "wasm-bindgen-macro", 1984 2200 ] 1985 2201 ··· 1994 2210 "log", 1995 2211 "proc-macro2", 1996 2212 "quote", 1997 - "syn", 2213 + "syn 1.0.104", 1998 2214 "wasm-bindgen-shared", 1999 2215 ] 2000 2216 ··· 2004 2220 source = "registry+https://github.com/rust-lang/crates.io-index" 2005 2221 checksum = "de9a9cec1733468a8c657e57fa2413d2ae2c0129b95e87c5b72b8ace4d13f31f" 2006 2222 dependencies = [ 2007 - "cfg-if 1.0.0", 2223 + "cfg-if", 2008 2224 "js-sys", 2009 2225 "wasm-bindgen", 2010 2226 "web-sys", ··· 2028 2244 dependencies = [ 2029 2245 "proc-macro2", 2030 2246 "quote", 2031 - "syn", 2247 + "syn 1.0.104", 2032 2248 "wasm-bindgen-backend", 2033 2249 "wasm-bindgen-shared", 2034 2250 ] ··· 2040 2256 checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be" 2041 2257 2042 2258 [[package]] 2259 + name = "wasm-streams" 2260 + version = "0.2.3" 2261 + source = "registry+https://github.com/rust-lang/crates.io-index" 2262 + checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078" 2263 + dependencies = [ 2264 + "futures-util", 2265 + "js-sys", 2266 + "wasm-bindgen", 2267 + "wasm-bindgen-futures", 2268 + "web-sys", 2269 + ] 2270 + 2271 + [[package]] 2043 2272 name = "web-sys" 2044 2273 version = "0.3.58" 2045 2274 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2111 2340 source = "registry+https://github.com/rust-lang/crates.io-index" 2112 2341 checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 2113 2342 dependencies = [ 2114 - "windows_aarch64_msvc", 2115 - "windows_i686_gnu", 2116 - "windows_i686_msvc", 2117 - "windows_x86_64_gnu", 2118 - "windows_x86_64_msvc", 2343 + "windows_aarch64_msvc 0.36.1", 2344 + "windows_i686_gnu 0.36.1", 2345 + "windows_i686_msvc 0.36.1", 2346 + "windows_x86_64_gnu 0.36.1", 2347 + "windows_x86_64_msvc 0.36.1", 2348 + ] 2349 + 2350 + [[package]] 2351 + name = "windows-sys" 2352 + version = "0.42.0" 2353 + source = "registry+https://github.com/rust-lang/crates.io-index" 2354 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 2355 + dependencies = [ 2356 + "windows_aarch64_gnullvm 0.42.1", 2357 + "windows_aarch64_msvc 0.42.1", 2358 + "windows_i686_gnu 0.42.1", 2359 + "windows_i686_msvc 0.42.1", 2360 + "windows_x86_64_gnu 0.42.1", 2361 + "windows_x86_64_gnullvm 0.42.1", 2362 + "windows_x86_64_msvc 0.42.1", 2363 + ] 2364 + 2365 + [[package]] 2366 + name = "windows-sys" 2367 + version = "0.45.0" 2368 + source = "registry+https://github.com/rust-lang/crates.io-index" 2369 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2370 + dependencies = [ 2371 + "windows-targets 0.42.1", 2372 + ] 2373 + 2374 + [[package]] 2375 + name = "windows-sys" 2376 + version = "0.48.0" 2377 + source = "registry+https://github.com/rust-lang/crates.io-index" 2378 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2379 + dependencies = [ 2380 + "windows-targets 0.48.0", 2381 + ] 2382 + 2383 + [[package]] 2384 + name = "windows-targets" 2385 + version = "0.42.1" 2386 + source = "registry+https://github.com/rust-lang/crates.io-index" 2387 + checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 2388 + dependencies = [ 2389 + "windows_aarch64_gnullvm 0.42.1", 2390 + "windows_aarch64_msvc 0.42.1", 2391 + "windows_i686_gnu 0.42.1", 2392 + "windows_i686_msvc 0.42.1", 2393 + "windows_x86_64_gnu 0.42.1", 2394 + "windows_x86_64_gnullvm 0.42.1", 2395 + "windows_x86_64_msvc 0.42.1", 2396 + ] 2397 + 2398 + [[package]] 2399 + name = "windows-targets" 2400 + version = "0.48.0" 2401 + source = "registry+https://github.com/rust-lang/crates.io-index" 2402 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 2403 + dependencies = [ 2404 + "windows_aarch64_gnullvm 0.48.0", 2405 + "windows_aarch64_msvc 0.48.0", 2406 + "windows_i686_gnu 0.48.0", 2407 + "windows_i686_msvc 0.48.0", 2408 + "windows_x86_64_gnu 0.48.0", 2409 + "windows_x86_64_gnullvm 0.48.0", 2410 + "windows_x86_64_msvc 0.48.0", 2119 2411 ] 2120 2412 2121 2413 [[package]] 2414 + name = "windows_aarch64_gnullvm" 2415 + version = "0.42.1" 2416 + source = "registry+https://github.com/rust-lang/crates.io-index" 2417 + checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 2418 + 2419 + [[package]] 2420 + name = "windows_aarch64_gnullvm" 2421 + version = "0.48.0" 2422 + source = "registry+https://github.com/rust-lang/crates.io-index" 2423 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2424 + 2425 + [[package]] 2122 2426 name = "windows_aarch64_msvc" 2123 2427 version = "0.36.1" 2124 2428 source = "registry+https://github.com/rust-lang/crates.io-index" 2125 2429 checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 2430 + 2431 + [[package]] 2432 + name = "windows_aarch64_msvc" 2433 + version = "0.42.1" 2434 + source = "registry+https://github.com/rust-lang/crates.io-index" 2435 + checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 2436 + 2437 + [[package]] 2438 + name = "windows_aarch64_msvc" 2439 + version = "0.48.0" 2440 + source = "registry+https://github.com/rust-lang/crates.io-index" 2441 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2126 2442 2127 2443 [[package]] 2128 2444 name = "windows_i686_gnu" ··· 2131 2447 checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 2132 2448 2133 2449 [[package]] 2450 + name = "windows_i686_gnu" 2451 + version = "0.42.1" 2452 + source = "registry+https://github.com/rust-lang/crates.io-index" 2453 + checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 2454 + 2455 + [[package]] 2456 + name = "windows_i686_gnu" 2457 + version = "0.48.0" 2458 + source = "registry+https://github.com/rust-lang/crates.io-index" 2459 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2460 + 2461 + [[package]] 2134 2462 name = "windows_i686_msvc" 2135 2463 version = "0.36.1" 2136 2464 source = "registry+https://github.com/rust-lang/crates.io-index" 2137 2465 checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 2138 2466 2139 2467 [[package]] 2468 + name = "windows_i686_msvc" 2469 + version = "0.42.1" 2470 + source = "registry+https://github.com/rust-lang/crates.io-index" 2471 + checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 2472 + 2473 + [[package]] 2474 + name = "windows_i686_msvc" 2475 + version = "0.48.0" 2476 + source = "registry+https://github.com/rust-lang/crates.io-index" 2477 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2478 + 2479 + [[package]] 2140 2480 name = "windows_x86_64_gnu" 2141 2481 version = "0.36.1" 2142 2482 source = "registry+https://github.com/rust-lang/crates.io-index" 2143 2483 checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 2144 2484 2145 2485 [[package]] 2486 + name = "windows_x86_64_gnu" 2487 + version = "0.42.1" 2488 + source = "registry+https://github.com/rust-lang/crates.io-index" 2489 + checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 2490 + 2491 + [[package]] 2492 + name = "windows_x86_64_gnu" 2493 + version = "0.48.0" 2494 + source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2496 + 2497 + [[package]] 2498 + name = "windows_x86_64_gnullvm" 2499 + version = "0.42.1" 2500 + source = "registry+https://github.com/rust-lang/crates.io-index" 2501 + checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 2502 + 2503 + [[package]] 2504 + name = "windows_x86_64_gnullvm" 2505 + version = "0.48.0" 2506 + source = "registry+https://github.com/rust-lang/crates.io-index" 2507 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2508 + 2509 + [[package]] 2146 2510 name = "windows_x86_64_msvc" 2147 2511 version = "0.36.1" 2148 2512 source = "registry+https://github.com/rust-lang/crates.io-index" 2149 2513 checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 2514 + 2515 + [[package]] 2516 + name = "windows_x86_64_msvc" 2517 + version = "0.42.1" 2518 + source = "registry+https://github.com/rust-lang/crates.io-index" 2519 + checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 2520 + 2521 + [[package]] 2522 + name = "windows_x86_64_msvc" 2523 + version = "0.48.0" 2524 + source = "registry+https://github.com/rust-lang/crates.io-index" 2525 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2526 + 2527 + [[package]] 2528 + name = "winnow" 2529 + version = "0.3.3" 2530 + source = "registry+https://github.com/rust-lang/crates.io-index" 2531 + checksum = "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" 2532 + dependencies = [ 2533 + "memchr", 2534 + ] 2150 2535 2151 2536 [[package]] 2152 2537 name = "winreg"
+7 -7
pkgs/development/tools/cotton/default.nix
··· 1 - { stdenv 2 - , lib 1 + { lib 3 2 , rustPlatform 4 3 , fetchFromGitHub 4 + , stdenv 5 5 , CoreServices 6 6 }: 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "cotton"; 10 - version = "unstable-2022-10-04"; 10 + version = "unstable-2023-04-13"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "danielhuang"; 14 14 repo = pname; 15 - rev = "30f3aa7ec6792f3e2dbafc9f4b009b1a6eadc755"; 16 - sha256 = "sha256-jq5aW6dViHTxh2btP5smtcyUSZ1EoMrQVN7K8zs1jJM="; 15 + rev = "e6aeb0757a2579de82e75e1d2e9fc20739f0ab7f"; 16 + sha256 = "sha256-DpwwTVlmmYxbZiJ9HAwQfomg7+WH3I3y3jZdaVbBf4w="; 17 17 }; 18 18 19 19 cargoLock = { 20 20 lockFile = ./Cargo.lock; 21 21 outputHashes = { 22 - "node-semver-2.0.1-alpha.0" = "sha256-TIMynpmRIrnft6kZjX3nJC/BafgudH/d01dpraM5YmU="; 22 + "node-semver-2.0.1-alpha.0" = "sha256-ldRQuJGo8gGc4fBD8E/J1aPJcwG7lg7jhwRvl/P2BbM="; 23 23 "tokio-tar-0.3.0" = "sha256-mD6bls4rGsJhu/W56C5VYgK4mzcSJ2DPOaPAbRLStT8="; 24 24 }; 25 25 }; ··· 30 30 description = "A package manager for JavaScript projects"; 31 31 homepage = "https://github.com/danielhuang/cotton"; 32 32 license = licenses.gpl3Only; 33 - maintainers = with maintainers; [ dit7ya ]; 33 + maintainers = with maintainers; [ dit7ya figsoda ]; 34 34 }; 35 35 }
+3 -3
pkgs/servers/openvscode-server/default.nix
··· 40 40 41 41 in stdenv.mkDerivation rec { 42 42 pname = "openvscode-server"; 43 - version = "1.76.2"; 43 + version = "1.77.1"; 44 44 45 45 src = fetchFromGitHub { 46 46 owner = "gitpod-io"; 47 47 repo = "openvscode-server"; 48 48 rev = "openvscode-server-v${version}"; 49 - sha256 = "IZyuMcu3f0jOflJsor/gMDoONgyOGU8Py+wRbRV38RU="; 49 + sha256 = "i1AexC4EmVi7xSjdCfYmMIUU+CgKT48o03n39XQ0nVY="; 50 50 }; 51 51 52 52 yarnCache = stdenv.mkDerivation { ··· 69 69 70 70 outputHashMode = "recursive"; 71 71 outputHashAlgo = "sha256"; 72 - outputHash = "sha256-zcT74h1bEPPwHCXPB2VoVDVelQlDW6FBO/b6SP1x8b4="; 72 + outputHash = "sha256-Ca2qd9Q88BNUIT9avq1KiMwKcKkMX/NkU2q8DjGYQjg="; 73 73 }; 74 74 75 75 nativeBuildInputs = [
+3 -3
pkgs/servers/tidb/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tidb"; 5 - version = "6.6.0"; 5 + version = "7.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pingcap"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-u0Zl2SULBWrUu3V7VbbbkSMPoRijWQRYCMcqD4nC3Bw="; 11 + sha256 = "sha256-giYAD6BJqK1Z9Rkpy3Xhf4Y4+lmZW6y1CJur0OqZHTU="; 12 12 }; 13 13 14 - vendorHash = "sha256-0fvvCOvRM3NbcUln5UfR/jTxVKZuQudgm6GivKaYm2c="; 14 + vendorHash = "sha256-IyVfML4XwogW/SMoZoZcQA32DxuHzuBoNePqk3u1vSw="; 15 15 16 16 ldflags = [ 17 17 "-s"
+2 -2
pkgs/tools/admin/qovery-cli/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "qovery-cli"; 11 - version = "0.57.1"; 11 + version = "0.58.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Qovery"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-i60u9U3SLu2EzRlLJliXrRC+SozreAsVI2Vd6gDDVE4="; 17 + hash = "sha256-+Js39lzJW92EpuIW853k4WdR7/8ba5osUcfKmQT9Uho="; 18 18 }; 19 19 20 20 vendorHash = "sha256-1krHpwjs4kGhPMBF5j3iqUBo8TGKs1h+nDCmDmviPu4=";
pkgs/tools/cd-dvd/ventoy-bin/000-nixos-sanitization.patch pkgs/tools/cd-dvd/ventoy/000-nixos-sanitization.patch
+7 -8
pkgs/tools/cd-dvd/ventoy-bin/default.nix pkgs/tools/cd-dvd/ventoy/default.nix
··· 50 50 or (throw "Unsupported platform ${stdenv.hostPlatform.system}"); 51 51 in 52 52 stdenv.mkDerivation (finalAttrs: { 53 - pname = "ventoy-bin"; 54 - version = "1.0.90"; 53 + pname = "ventoy"; 54 + version = "1.0.91"; 55 55 56 56 src = let 57 57 inherit (finalAttrs) version; 58 58 in fetchurl { 59 59 url = "https://github.com/ventoy/Ventoy/releases/download/v${version}/ventoy-${version}-linux.tar.gz"; 60 - hash = "sha256-UJ4kgtF2lIZn37p1SDkvCyHmuBSFSHmMHKLD4/ZorbQ="; 60 + hash = "sha256-9vsFdOxsW1Cs06gVPvQusju2+wp4PpBwbHZUugwb3co="; 61 61 }; 62 62 63 63 patches = [ ··· 183 183 runHook postInstall 184 184 ''; 185 185 186 - meta = with lib; { 186 + meta = { 187 187 homepage = "https://www.ventoy.net"; 188 188 description = "A New Bootable USB Solution"; 189 189 longDescription = '' ··· 200 200 800+ image files are tested. 90%+ distros in DistroWatch supported. 201 201 ''; 202 202 changelog = "https://www.ventoy.net/doc_news.html"; 203 - license = licenses.gpl3Plus; 204 - maintainers = with maintainers; [ AndersonTorres ]; 203 + license = lib.licenses.gpl3Plus; 204 + maintainers = with lib.maintainers; [ AndersonTorres ]; 205 205 platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "mipsel-linux" ]; 206 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 207 - mainProgram = "ventoy"; 206 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 208 207 }; 209 208 })
+2 -2
pkgs/tools/filesystems/f2fs-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "f2fs-tools"; 5 - version = "1.15.0"; 5 + version = "1.16.0"; 6 6 7 7 src = fetchgit { 8 8 url = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git"; 9 9 rev = "refs/tags/v${version}"; 10 - sha256 = "sha256-RSWvdC6kV0KfyJefK9qyFCWjlezFc7DBOOn+uy7S3Lk="; 10 + sha256 = "sha256-zNG1F//+BTBzlEc6qNVixyuCB6PMZD5Kf8pVK0ePYiA="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ autoreconfHook pkg-config ];
+1 -1
pkgs/tools/misc/ksnip/default.nix
··· 38 38 39 39 meta = with lib; { 40 40 homepage = "https://github.com/ksnip/ksnip"; 41 - description = "Cross-platform screenshot tool wihth many annotation features"; 41 + description = "Cross-platform screenshot tool with many annotation features"; 42 42 longDescription = '' 43 43 Features: 44 44
+2
pkgs/top-level/aliases.nix
··· 1671 1671 vaultwarden-vault = vaultwarden.webvault; # Added 2022-12-13 1672 1672 varnish71 = throw "varnish71 was removed from nixpkgs, because it was superseded upstream. Please switch to a different release"; # Added 2022-11-08 1673 1673 vdirsyncerStable = vdirsyncer; # Added 2020-11-08, see https://github.com/NixOS/nixpkgs/issues/103026#issuecomment-723428168 1674 + ventoy-bin = throw "ventoy-bin has been renamed to ventoy"; # Added 2023-04-12 1675 + ventoy-bin-full = throw "ventoy-bin-full has been renamed to ventoy-full"; # Added 2023-04-12 1674 1676 venus = throw "venus has been removed from nixpkgs, as it's unmaintained"; # Added 2021-02-05 1675 1677 vgo2nix = throw "vgo2nix has been removed, because it was deprecated. Consider using gomod2nix instead"; # added 2022-08-24 1676 1678 vimHugeX = vim-full; # Added 2022-12-04
+4 -2
pkgs/top-level/all-packages.nix
··· 1670 1670 1671 1671 veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { }; 1672 1672 1673 - ventoy-bin = callPackage ../tools/cd-dvd/ventoy-bin { }; 1674 - ventoy-bin-full = ventoy-bin.override { 1673 + ventoy = callPackage ../tools/cd-dvd/ventoy { }; 1674 + ventoy-full = ventoy.override { 1675 1675 withCryptsetup = true; 1676 1676 withXfs = true; 1677 1677 withExt4 = true; ··· 31843 31843 matrix-dl = callPackage ../applications/networking/instant-messengers/matrix-dl { }; 31844 31844 31845 31845 matrix-recorder = callPackage ../applications/networking/instant-messengers/matrix-recorder { }; 31846 + 31847 + iamb = callPackage ../applications/networking/instant-messengers/iamb { }; 31846 31848 31847 31849 mblaze = callPackage ../applications/networking/mailreaders/mblaze { }; 31848 31850
+18
pkgs/top-level/python-packages.nix
··· 2576 2576 2577 2577 django-autocomplete-light = callPackage ../development/python-modules/django-autocomplete-light { }; 2578 2578 2579 + django-bootstrap3 = callPackage ../development/python-modules/django-bootstrap3 { }; 2580 + 2579 2581 django-cache-url = callPackage ../development/python-modules/django-cache-url { }; 2580 2582 2581 2583 django-cacheops = callPackage ../development/python-modules/django-cacheops { }; ··· 2606 2608 2607 2609 django-cors-headers = callPackage ../development/python-modules/django-cors-headers { }; 2608 2610 2611 + django-countries = callPackage ../development/python-modules/django-countries { }; 2612 + 2609 2613 django-crispy-forms = callPackage ../development/python-modules/django-crispy-forms { }; 2610 2614 2611 2615 django-cryptography = callPackage ../development/python-modules/django-cryptography { }; ··· 2625 2629 django-filter = callPackage ../development/python-modules/django-filter { }; 2626 2630 2627 2631 django-formtools = callPackage ../development/python-modules/django-formtools { }; 2632 + 2633 + django-formset-js-improved = callPackage ../development/python-modules/django-formset-js-improved { }; 2628 2634 2629 2635 django-graphiql-debug-toolbar = callPackage ../development/python-modules/django-graphiql-debug-toolbar { }; 2630 2636 ··· 2638 2644 2639 2645 django-health-check = callPackage ../development/python-modules/django-health-check { }; 2640 2646 2647 + django-hierarkey = callPackage ../development/python-modules/django-hierarkey { }; 2648 + 2641 2649 django_hijack_admin = callPackage ../development/python-modules/django-hijack-admin { }; 2642 2650 2643 2651 django_hijack = callPackage ../development/python-modules/django-hijack { }; ··· 2649 2657 2650 2658 django-jinja = callPackage ../development/python-modules/django-jinja2 { }; 2651 2659 2660 + django-jquery-js = callPackage ../development/python-modules/django-jquery-js { }; 2661 + 2652 2662 django-js-asset = callPackage ../development/python-modules/django-js-asset { }; 2653 2663 2654 2664 django-js-reverse = callPackage ../development/python-modules/django-js-reverse { }; ··· 2658 2668 django-login-required-middleware = callPackage ../development/python-modules/django-login-required-middleware { }; 2659 2669 2660 2670 django-mailman3 = callPackage ../development/python-modules/django-mailman3 { }; 2671 + 2672 + django-markup = callPackage ../development/python-modules/django-markup { }; 2661 2673 2662 2674 django-model-utils = callPackage ../development/python-modules/django-model-utils { }; 2663 2675 ··· 2758 2770 django-timezone-field = callPackage ../development/python-modules/django-timezone-field { }; 2759 2771 2760 2772 django_treebeard = callPackage ../development/python-modules/django_treebeard { }; 2773 + 2774 + django-two-factor-auth = callPackage ../development/python-modules/django-two-factor-auth { }; 2761 2775 2762 2776 django-versatileimagefield = callPackage ../development/python-modules/django-versatileimagefield { }; 2763 2777 ··· 7492 7506 7493 7507 python-codon-tables = callPackage ../development/python-modules/python-codon-tables { }; 7494 7508 7509 + python-creole = callPackage ../development/python-modules/python-creole { }; 7510 + 7495 7511 python-crfsuite = callPackage ../development/python-modules/python-crfsuite { }; 7496 7512 7497 7513 python-csxcad = callPackage ../development/python-modules/python-csxcad { }; ··· 8125 8141 pydantic = callPackage ../development/python-modules/pydantic { }; 8126 8142 8127 8143 pydash = callPackage ../development/python-modules/pydash { }; 8144 + 8145 + pydata-google-auth = callPackage ../development/python-modules/pydata-google-auth { }; 8128 8146 8129 8147 pydata-sphinx-theme = callPackage ../development/python-modules/pydata-sphinx-theme { }; 8130 8148