Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 4dea63e4 2aa3d6ed

+2238 -1790
+21
maintainers/maintainer-list.nix
··· 1417 1417 fingerprint = "BF8B F725 DA30 E53E 7F11 4ED8 AAA5 0652 F047 9205"; 1418 1418 }]; 1419 1419 }; 1420 + appsforartists = { 1421 + github = "appsforartists"; 1422 + githubId = 926648; 1423 + name = "Brenton Simpson"; 1424 + }; 1420 1425 apraga = { 1421 1426 email = "alexis.praga@proton.me"; 1422 1427 github = "apraga"; ··· 3536 3541 githubId = 46303707; 3537 3542 name = "Christian Lütke-Stetzkamp"; 3538 3543 }; 3544 + clr-cera = { 3545 + email = "clrcera05@gmail.com"; 3546 + github = "clr-cera"; 3547 + githubId = 93736542; 3548 + name = "Clr"; 3549 + }; 3539 3550 cmacrae = { 3540 3551 email = "hi@cmacr.ae"; 3541 3552 github = "cmacrae"; ··· 4686 4697 github = "Diffumist"; 4687 4698 githubId = 32810399; 4688 4699 name = "Diffumist"; 4700 + }; 4701 + diogotcorreia = { 4702 + name = "Diogo Correia"; 4703 + email = "me@diogotc.com"; 4704 + matrix = "@dtc:diogotc.com"; 4705 + github = "diogotcorreia"; 4706 + githubId = 7467891; 4707 + keys = [{ 4708 + fingerprint = "111F 91B7 5F61 99D8 985B 4C70 12CF 31FD FF17 2B77"; 4709 + }]; 4689 4710 }; 4690 4711 diogox = { 4691 4712 name = "Diogo Xavier";
+2
nixos/doc/manual/release-notes/rl-2405.section.md
··· 215 215 - `services.zfs.zed.enableMail` now uses the global `sendmail` wrapper defined by an email module 216 216 (such as msmtp or Postfix). It no longer requires using a special ZFS build with email support. 217 217 218 + - `nextcloud-setup.service` no longer changes the group of each file & directory inside `/var/lib/nextcloud/{config,data,store-apps}` if one of these directories has the wrong owner group. This was part of transitioning the group used for `/var/lib/nextcloud`, but isn't necessary anymore. 219 + 218 220 - The `krb5` module has been rewritten and moved to `security.krb5`, moving all options but `security.krb5.enable` and `security.krb5.package` into `security.krb5.settings`. 219 221 220 222 - Gitea 1.21 upgrade has several breaking changes, including:
+1
nixos/modules/services/continuous-integration/github-runner/options.nix
··· 153 153 type = types.attrs; 154 154 description = lib.mdDoc '' 155 155 Modify the systemd service. Can be used to, e.g., adjust the sandboxing options. 156 + See {manpage}`systemd.exec(5)` for more options. 156 157 ''; 157 158 example = { 158 159 ProtectHome = false;
+3 -2
nixos/modules/services/mail/dovecot.nix
··· 119 119 '' 120 120 plugin { 121 121 sieve_plugins = ${concatStringsSep " " cfg.sieve.plugins} 122 - sieve_extensions = ${concatStringsSep " " (map (el: "+${el}") cfg.sieve.extensions)} 123 - sieve_global_extensions = ${concatStringsSep " " (map (el: "+${el}") cfg.sieve.globalExtensions)} 124 122 '' 123 + (optionalString (cfg.sieve.extensions != []) ''sieve_extensions = ${concatMapStringsSep " " (el: "+${el}") cfg.sieve.extensions}'') 124 + (optionalString (cfg.sieve.globalExtensions != []) ''sieve_global_extensions = ${concatMapStringsSep " " (el: "+${el}") cfg.sieve.globalExtensions}'') 125 + 125 126 (optionalString (cfg.imapsieve.mailbox != []) '' 126 127 ${ 127 128 concatStringsSep "\n" (flatten (imap1 (
+103 -108
nixos/modules/services/web-apps/nextcloud.nix
··· 99 99 mysqlLocal = cfg.database.createLocally && cfg.config.dbtype == "mysql"; 100 100 pgsqlLocal = cfg.database.createLocally && cfg.config.dbtype == "pgsql"; 101 101 102 + nextcloudGreaterOrEqualThan = versionAtLeast cfg.package.version; 103 + nextcloudOlderThan = versionOlder cfg.package.version; 104 + 102 105 # https://github.com/nextcloud/documentation/pull/11179 103 - ocmProviderIsNotAStaticDirAnymore = versionAtLeast cfg.package.version "27.1.2" 104 - || (versionOlder cfg.package.version "27.0.0" 105 - && versionAtLeast cfg.package.version "26.0.8"); 106 + ocmProviderIsNotAStaticDirAnymore = nextcloudGreaterOrEqualThan "27.1.2" 107 + || (nextcloudOlderThan "27.0.0" && nextcloudGreaterOrEqualThan "26.0.8"); 106 108 109 + overrideConfig = let 110 + c = cfg.config; 111 + requiresReadSecretFunction = c.dbpassFile != null || c.objectstore.s3.enable; 112 + objectstoreConfig = let s3 = c.objectstore.s3; in optionalString s3.enable '' 113 + 'objectstore' => [ 114 + 'class' => '\\OC\\Files\\ObjectStore\\S3', 115 + 'arguments' => [ 116 + 'bucket' => '${s3.bucket}', 117 + 'autocreate' => ${boolToString s3.autocreate}, 118 + 'key' => '${s3.key}', 119 + 'secret' => nix_read_secret('${s3.secretFile}'), 120 + ${optionalString (s3.hostname != null) "'hostname' => '${s3.hostname}',"} 121 + ${optionalString (s3.port != null) "'port' => ${toString s3.port},"} 122 + 'use_ssl' => ${boolToString s3.useSsl}, 123 + ${optionalString (s3.region != null) "'region' => '${s3.region}',"} 124 + 'use_path_style' => ${boolToString s3.usePathStyle}, 125 + ${optionalString (s3.sseCKeyFile != null) "'sse_c_key' => nix_read_secret('${s3.sseCKeyFile}'),"} 126 + ], 127 + ] 128 + ''; 129 + showAppStoreSetting = cfg.appstoreEnable != null || cfg.extraApps != {}; 130 + renderedAppStoreSetting = 131 + let 132 + x = cfg.appstoreEnable; 133 + in 134 + if x == null then "false" 135 + else boolToString x; 136 + mkAppStoreConfig = name: { enabled, writable, ... }: optionalString enabled '' 137 + [ 'path' => '${webroot}/${name}', 'url' => '/${name}', 'writable' => ${boolToString writable} ], 138 + ''; 139 + in pkgs.writeText "nextcloud-config.php" '' 140 + <?php 141 + ${optionalString requiresReadSecretFunction '' 142 + function nix_read_secret($file) { 143 + if (!file_exists($file)) { 144 + throw new \RuntimeException(sprintf( 145 + "Cannot start Nextcloud, secret file %s set by NixOS doesn't seem to " 146 + . "exist! Please make sure that the file exists and has appropriate " 147 + . "permissions for user & group 'nextcloud'!", 148 + $file 149 + )); 150 + } 151 + return trim(file_get_contents($file)); 152 + }''} 153 + function nix_decode_json_file($file, $error) { 154 + if (!file_exists($file)) { 155 + throw new \RuntimeException(sprintf($error, $file)); 156 + } 157 + $decoded = json_decode(file_get_contents($file), true); 158 + 159 + if (json_last_error() !== JSON_ERROR_NONE) { 160 + throw new \RuntimeException(sprintf("Cannot decode %s, because: %s", $file, json_last_error_msg())); 161 + } 162 + 163 + return $decoded; 164 + } 165 + $CONFIG = [ 166 + 'apps_paths' => [ 167 + ${concatStrings (mapAttrsToList mkAppStoreConfig appStores)} 168 + ], 169 + ${optionalString (showAppStoreSetting) "'appstoreenabled' => ${renderedAppStoreSetting},"} 170 + ${optionalString cfg.caching.apcu "'memcache.local' => '\\OC\\Memcache\\APCu',"} 171 + ${optionalString (c.dbname != null) "'dbname' => '${c.dbname}',"} 172 + ${optionalString (c.dbhost != null) "'dbhost' => '${c.dbhost}',"} 173 + ${optionalString (c.dbuser != null) "'dbuser' => '${c.dbuser}',"} 174 + ${optionalString (c.dbtableprefix != null) "'dbtableprefix' => '${toString c.dbtableprefix}',"} 175 + ${optionalString (c.dbpassFile != null) '' 176 + 'dbpassword' => nix_read_secret( 177 + "${c.dbpassFile}" 178 + ), 179 + '' 180 + } 181 + 'dbtype' => '${c.dbtype}', 182 + ${objectstoreConfig} 183 + ]; 184 + 185 + $CONFIG = array_replace_recursive($CONFIG, nix_decode_json_file( 186 + "${jsonFormat.generate "nextcloud-extraOptions.json" cfg.extraOptions}", 187 + "impossible: this should never happen (decoding generated extraOptions file %s failed)" 188 + )); 189 + 190 + ${optionalString (cfg.secretFile != null) '' 191 + $CONFIG = array_replace_recursive($CONFIG, nix_decode_json_file( 192 + "${cfg.secretFile}", 193 + "Cannot start Nextcloud, secrets file %s set by NixOS doesn't exist!" 194 + )); 195 + ''} 196 + ''; 107 197 in { 108 198 109 199 imports = [ ··· 787 877 timerConfig.Unit = "nextcloud-cron.service"; 788 878 }; 789 879 790 - systemd.tmpfiles.rules = ["d ${cfg.home} 0750 nextcloud nextcloud"]; 880 + systemd.tmpfiles.rules = map (dir: "d ${dir} 0750 nextcloud nextcloud - -") [ 881 + "${cfg.home}" 882 + "${datadir}/config" 883 + "${datadir}/data" 884 + "${cfg.home}/store-apps" 885 + ] ++ [ 886 + "L+ ${datadir}/config/override.config.php - - - - ${overrideConfig}" 887 + ]; 791 888 792 889 systemd.services = { 793 890 # When upgrading the Nextcloud package, Nextcloud can report errors such as 794 891 # "The files of the app [all apps in /var/lib/nextcloud/apps] were not replaced correctly" 795 892 # Restarting phpfpm on Nextcloud package update fixes these issues (but this is a workaround). 796 - phpfpm-nextcloud.restartTriggers = [ webroot ]; 893 + phpfpm-nextcloud.restartTriggers = [ webroot overrideConfig ]; 797 894 798 895 nextcloud-setup = let 799 896 c = cfg.config; 800 - requiresReadSecretFunction = c.dbpassFile != null || c.objectstore.s3.enable; 801 - objectstoreConfig = let s3 = c.objectstore.s3; in optionalString s3.enable '' 802 - 'objectstore' => [ 803 - 'class' => '\\OC\\Files\\ObjectStore\\S3', 804 - 'arguments' => [ 805 - 'bucket' => '${s3.bucket}', 806 - 'autocreate' => ${boolToString s3.autocreate}, 807 - 'key' => '${s3.key}', 808 - 'secret' => nix_read_secret('${s3.secretFile}'), 809 - ${optionalString (s3.hostname != null) "'hostname' => '${s3.hostname}',"} 810 - ${optionalString (s3.port != null) "'port' => ${toString s3.port},"} 811 - 'use_ssl' => ${boolToString s3.useSsl}, 812 - ${optionalString (s3.region != null) "'region' => '${s3.region}',"} 813 - 'use_path_style' => ${boolToString s3.usePathStyle}, 814 - ${optionalString (s3.sseCKeyFile != null) "'sse_c_key' => nix_read_secret('${s3.sseCKeyFile}'),"} 815 - ], 816 - ] 817 - ''; 818 - 819 - showAppStoreSetting = cfg.appstoreEnable != null || cfg.extraApps != {}; 820 - renderedAppStoreSetting = 821 - let 822 - x = cfg.appstoreEnable; 823 - in 824 - if x == null then "false" 825 - else boolToString x; 826 - 827 - nextcloudGreaterOrEqualThan = req: versionAtLeast cfg.package.version req; 828 - 829 - mkAppStoreConfig = name: { enabled, writable, ... }: optionalString enabled '' 830 - [ 'path' => '${webroot}/${name}', 'url' => '/${name}', 'writable' => ${boolToString writable} ], 831 - ''; 832 - 833 - overrideConfig = pkgs.writeText "nextcloud-config.php" '' 834 - <?php 835 - ${optionalString requiresReadSecretFunction '' 836 - function nix_read_secret($file) { 837 - if (!file_exists($file)) { 838 - throw new \RuntimeException(sprintf( 839 - "Cannot start Nextcloud, secret file %s set by NixOS doesn't seem to " 840 - . "exist! Please make sure that the file exists and has appropriate " 841 - . "permissions for user & group 'nextcloud'!", 842 - $file 843 - )); 844 - } 845 - return trim(file_get_contents($file)); 846 - }''} 847 - function nix_decode_json_file($file, $error) { 848 - if (!file_exists($file)) { 849 - throw new \RuntimeException(sprintf($error, $file)); 850 - } 851 - $decoded = json_decode(file_get_contents($file), true); 852 - 853 - if (json_last_error() !== JSON_ERROR_NONE) { 854 - throw new \RuntimeException(sprintf("Cannot decode %s, because: %s", $file, json_last_error_msg())); 855 - } 856 - 857 - return $decoded; 858 - } 859 - $CONFIG = [ 860 - 'apps_paths' => [ 861 - ${concatStrings (mapAttrsToList mkAppStoreConfig appStores)} 862 - ], 863 - ${optionalString (showAppStoreSetting) "'appstoreenabled' => ${renderedAppStoreSetting},"} 864 - ${optionalString cfg.caching.apcu "'memcache.local' => '\\OC\\Memcache\\APCu',"} 865 - ${optionalString (c.dbname != null) "'dbname' => '${c.dbname}',"} 866 - ${optionalString (c.dbhost != null) "'dbhost' => '${c.dbhost}',"} 867 - ${optionalString (c.dbuser != null) "'dbuser' => '${c.dbuser}',"} 868 - ${optionalString (c.dbtableprefix != null) "'dbtableprefix' => '${toString c.dbtableprefix}',"} 869 - ${optionalString (c.dbpassFile != null) '' 870 - 'dbpassword' => nix_read_secret( 871 - "${c.dbpassFile}" 872 - ), 873 - '' 874 - } 875 - 'dbtype' => '${c.dbtype}', 876 - ${objectstoreConfig} 877 - ]; 878 - 879 - $CONFIG = array_replace_recursive($CONFIG, nix_decode_json_file( 880 - "${jsonFormat.generate "nextcloud-extraOptions.json" cfg.extraOptions}", 881 - "impossible: this should never happen (decoding generated extraOptions file %s failed)" 882 - )); 883 - 884 - ${optionalString (cfg.secretFile != null) '' 885 - $CONFIG = array_replace_recursive($CONFIG, nix_decode_json_file( 886 - "${cfg.secretFile}", 887 - "Cannot start Nextcloud, secrets file %s set by NixOS doesn't exist!" 888 - )); 889 - ''} 890 - ''; 891 897 occInstallCmd = let 892 898 mkExport = { arg, value }: "export ${arg}=${value}"; 893 899 dbpass = { ··· 932 938 after = optional mysqlLocal "mysql.service" ++ optional pgsqlLocal "postgresql.service"; 933 939 requires = optional mysqlLocal "mysql.service" ++ optional pgsqlLocal "postgresql.service"; 934 940 path = [ occ ]; 941 + restartTriggers = [ overrideConfig ]; 935 942 script = '' 936 943 ${optionalString (c.dbpassFile != null) '' 937 944 if [ ! -r "${c.dbpassFile}" ]; then ··· 958 965 rm -r "${cfg.home}"/${name} 959 966 fi 960 967 '') [ "nix-apps" "apps" ]} 961 - 962 - # create nextcloud directories. 963 - # if the directories exist already with wrong permissions, we fix that 964 - for dir in ${datadir}/config ${datadir}/data ${cfg.home}/store-apps; do 965 - if [ ! -e $dir ]; then 966 - install -o nextcloud -g nextcloud -d $dir 967 - elif [ $(stat -c "%G" $dir) != "nextcloud" ]; then 968 - chgrp -R nextcloud $dir 969 - fi 970 - done 971 - 972 - ln -sf ${overrideConfig} ${datadir}/config/override.config.php 973 968 974 969 # Do not install if already installed 975 970 if [[ ! -e ${datadir}/config/config.php ]]; then
+24
nixos/modules/system/boot/resolved.nix
··· 95 95 ''; 96 96 }; 97 97 98 + services.resolved.dnsovertls = mkOption { 99 + default = "false"; 100 + example = "true"; 101 + type = types.enum [ "true" "opportunistic" "false" ]; 102 + description = lib.mdDoc '' 103 + If set to 104 + - `"true"`: 105 + all DNS lookups will be encrypted. This requires 106 + that the DNS server supports DNS-over-TLS and 107 + has a valid certificate. If the hostname was specified 108 + via the `address#hostname` format in {option}`services.resolved.domains` 109 + then the specified hostname is used to validate its certificate. 110 + - `"opportunistic"`: 111 + all DNS lookups will attempt to be encrypted, but will fallback 112 + to unecrypted requests if the server does not support DNS-over-TLS. 113 + Note that this mode does allow for a malicious party to conduct a 114 + downgrade attack by immitating the DNS server and pretending to not 115 + support encryption. 116 + - `"false"`: 117 + all DNS lookups are done unencrypted. 118 + ''; 119 + }; 120 + 98 121 services.resolved.extraConfig = mkOption { 99 122 default = ""; 100 123 type = types.lines; ··· 141 164 "Domains=${concatStringsSep " " cfg.domains}"} 142 165 LLMNR=${cfg.llmnr} 143 166 DNSSEC=${cfg.dnssec} 167 + DNSOverTLS=${cfg.dnsovertls} 144 168 ${config.services.resolved.extraConfig} 145 169 ''; 146 170
+3 -3
pkgs/applications/audio/lyrebird/default.nix
··· 20 20 in 21 21 python3Packages.buildPythonApplication rec { 22 22 pname = "lyrebird"; 23 - version = "1.1.0"; 23 + version = "1.2.0"; 24 24 25 25 format = "other"; 26 26 doCheck = false; ··· 28 28 src = fetchFromGitHub { 29 29 owner = "chxrlt"; 30 30 repo = "lyrebird"; 31 - rev = "v${version}"; 32 - sha256 = "0wmnww2wi8bb9m8jgc18n04gjia8pf9klmvij0w98xz11l6kxb13"; 31 + rev = "refs/tags/v${version}"; 32 + sha256 = "sha256-VIYcOxvSpzRvJMzEv2i5b7t0WMF7aQxB4Y1jfvuZN/Y="; 33 33 }; 34 34 35 35 propagatedBuildInputs = with python3Packages; [ toml pygobject3 ];
+2 -2
pkgs/applications/audio/mopidy/podcast.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "mopidy-podcast"; 5 - version = "3.0.0"; 5 + version = "3.0.1"; 6 6 7 7 src = fetchPypi { 8 8 inherit version; 9 9 pname = "Mopidy-Podcast"; 10 - sha256 = "1z2b523yvdpcf8p7m7kczrvaw045lmxzhq4qj00dflxa2yw61qxr"; 10 + sha256 = "sha256-grNPVEVM2PlpYhBXe6sabFjWVB9+q+apIRjcHUxH52A="; 11 11 }; 12 12 13 13 propagatedBuildInputs = [
+19 -12
pkgs/applications/emulators/stella/default.nix pkgs/by-name/st/stella/package.nix
··· 1 1 { lib 2 - , stdenv 2 + , SDL2 3 3 , fetchFromGitHub 4 + , sqlite 4 5 , pkg-config 5 - , SDL2 6 + , stdenv 6 7 }: 7 8 8 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 9 10 pname = "stella"; 10 - version = "6.7"; 11 + version = "6.7.1"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "stella-emu"; 14 - repo = pname; 15 - rev = version; 16 - hash = "sha256-E8vbBbsVMOSY3iSSE+UCwBwmfHU7Efmre1cYlexVZ+E="; 15 + repo = "stella"; 16 + rev = finalAttrs.version; 17 + hash = "sha256-4z6rFF6XqfyS9zZ4ByvTZi7cSqxpF4EcLffPbId5ppg="; 17 18 }; 18 19 19 20 nativeBuildInputs = [ 21 + SDL2 20 22 pkg-config 21 23 ]; 22 24 23 25 buildInputs = [ 24 26 SDL2 27 + sqlite 25 28 ]; 26 29 27 - meta = with lib;{ 30 + strictDeps = true; 31 + 32 + meta = { 28 33 homepage = "https://stella-emu.github.io/"; 29 34 description = "An open-source Atari 2600 VCS emulator"; 30 35 longDescription = '' ··· 38 43 39 44 As of its 3.5 release, Stella is officially donationware. 40 45 ''; 41 - license = licenses.gpl2Plus; 42 - maintainers = with maintainers; [ AndersonTorres ]; 43 - platforms = platforms.unix; 46 + changelog = "https://github.com/stella-emu/stella/releases/tag/${finalAttrs.src.rev}"; 47 + license = with lib.licenses; [ gpl2Plus ]; 48 + mainProgram = "stella"; 49 + maintainers = with lib.maintainers; [ AndersonTorres ]; 50 + platforms = lib.platforms.unix; 44 51 }; 45 - } 52 + })
+3 -3
pkgs/applications/file-managers/clifm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "clifm"; 5 - version = "1.15"; 5 + version = "1.16"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "leo-arch"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4Z2u1APNfJ9Ai95MMWb5FCUgCA2Hrbp+5eBJZD3tN+U="; 11 + sha256 = "sha256-tjxsJv5w0Rvk2XYisncytcRdZLRnOSDJmNJN4kkzr7U="; 12 12 }; 13 13 14 14 buildInputs = [ libcap acl file readline python3]; ··· 25 25 homepage = "https://github.com/leo-arch/clifm"; 26 26 description = "CliFM is a CLI-based, shell-like, and non-curses terminal file manager written in C: simple, fast, extensible, and lightweight as hell"; 27 27 license = licenses.gpl2Plus; 28 - maintainers = with maintainers; [ ]; 28 + maintainers = with maintainers; [ nadir-ishiguro ]; 29 29 platforms = platforms.unix; 30 30 }; 31 31 }
+2 -2
pkgs/applications/graphics/photoqt/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "photoqt"; 28 - version = "4.1"; 28 + version = "4.2"; 29 29 30 30 src = fetchurl { 31 31 url = "https://photoqt.org/pkgs/photoqt-${version}.tar.gz"; 32 - hash = "sha256-vxQZFlS4C+Dg9I6BKeMUFOYHz74d28gbhJlIpxSKTvs="; 32 + hash = "sha256-OUqsyvmv6ccJDzcWAeS1OOmK2eXOCEgGktz6GEUzoA8="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/calibre/default.nix
··· 32 32 33 33 stdenv.mkDerivation (finalAttrs: { 34 34 pname = "calibre"; 35 - version = "7.3.0"; 35 + version = "7.4.0"; 36 36 37 37 src = fetchurl { 38 38 url = "https://download.calibre-ebook.com/${finalAttrs.version}/calibre-${finalAttrs.version}.tar.xz"; 39 - hash = "sha256-fBdLXSRJMBVfQOfuqOqHzgHS8fXYq2x5J181pKZhASo="; 39 + hash = "sha256-xYMz0V3eBKAZNtV/8TqRmaaTQK6LeVRjZ1fakCoUSB8="; 40 40 }; 41 41 42 42 patches = [
+3 -3
pkgs/applications/misc/pairdrop/default.nix
··· 6 6 7 7 buildNpmPackage rec { 8 8 pname = "pairdrop"; 9 - version = "1.10.3"; 9 + version = "1.7.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "schlagmichdoch"; 13 13 repo = "PairDrop"; 14 14 rev = "v${version}"; 15 - hash = "sha256-0trhkaxDWk5zlHN/Mtk/RNeeIeXyOg2QcnSO1kTsNqE="; 15 + hash = "sha256-AOFATOCLf2KigeqoUzIfNngyeDesNrThRzxFvqtsXBs="; 16 16 }; 17 17 18 - npmDepsHash = "sha256-CjRTHH/2Hz5RZ83/4p//Q2L/CB48yRXSB08QxRox2bI="; 18 + npmDepsHash = "sha256-3nKjmC5eizoV/mrKDBhsSlVQxEHyIsWR6KHFwZhBugI="; 19 19 20 20 dontNpmBuild = true; 21 21
+2 -2
pkgs/applications/misc/process-compose/default.nix
··· 8 8 in 9 9 buildGoModule rec { 10 10 pname = "process-compose"; 11 - version = "0.77.8"; 11 + version = "0.80.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "F1bonacc1"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-9kDKNzehVcf+FF7OZoMdftp+uVoZ0Zu3ML3Tlor7Qc8="; 17 + hash = "sha256-9a850AKcHpKaZJ5C7l8y2dz6zHWyoZ7dIdEqtmXN3ww="; 18 18 # populate values that require us to use git. By doing this in postFetch we 19 19 # can delete .git afterwards and maintain better reproducibility of the src. 20 20 leaveDotGit = true;
+3 -3
pkgs/applications/misc/timew-sync-server/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "timew-sync-server"; 5 - version = "1.1.0"; 5 + version = "1.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "timewarrior-synchronize"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-GaDcnPJBcDJ3AQaHzifDgdl0QT4GSbAOIqp4RrAcO3M="; 11 + hash = "sha256-3THRP+hydvq/dnxzUOFGeuu8//qL7pFN0RHJVxzgibI="; 12 12 }; 13 13 14 - vendorHash = "sha256-iROqiRWkHG6N6kivUmgmu6sg14JDdG4f98BdR7CL1gs="; 14 + vendorHash = "sha256-w7I8PDQQeICDPln2Naf6whOg9qqOniTH/xs1/9luIVc="; 15 15 16 16 meta = with lib; { 17 17 homepage = "https://github.com/timewarrior-synchronize/timew-sync-server";
+2 -2
pkgs/applications/misc/visidata/default.nix
··· 45 45 }: 46 46 buildPythonApplication rec { 47 47 pname = "visidata"; 48 - version = "3.0.1"; 48 + version = "3.0.2"; 49 49 50 50 src = fetchFromGitHub { 51 51 owner = "saulpw"; 52 52 repo = "visidata"; 53 53 rev = "v${version}"; 54 - hash = "sha256-3/ACuUPj0XjbWuA8/iQQAMhLYAv5Lc/5AyyKmqjhBmc="; 54 + hash = "sha256-gplrkrFTIP6TLvk1YazD5roDzsPvDtOXLlTOmTio52s="; 55 55 }; 56 56 57 57 propagatedBuildInputs = [
+3 -3
pkgs/applications/networking/cluster/argocd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argocd"; 5 - version = "2.9.3"; 5 + version = "2.9.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "argoproj"; 9 9 repo = "argo-cd"; 10 10 rev = "v${version}"; 11 - hash = "sha256-GaY4Cw/LlSwy35umbB4epXt6ev8ya19UjHRwhDwilqU="; 11 + hash = "sha256-Os3C4+pdmbUCu1ok4MFFr4OZNdoODf4lFWRd7L9t3mM="; 12 12 }; 13 13 14 14 proxyVendor = true; # darwin/linux hash mismatch 15 - vendorHash = "sha256-2TNBbxNX4HGdRqbOEDrLBkWgw+0lyIrdxnVcbip3N6c="; 15 + vendorHash = "sha256-3IplGJvGFtEYVgPU2/G9XStmGqie+8/gKPlvBI1L4MI="; 16 16 17 17 # Set target as ./cmd per cli-local 18 18 # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
+15
pkgs/applications/networking/cluster/helm/default.nix
··· 20 20 "-X helm.sh/helm/v3/internal/version.gitCommit=${src.rev}" 21 21 ]; 22 22 23 + preBuild = '' 24 + # set k8s version to client-go version, to match upstream 25 + K8S_MODULES_VER="$(go list -f '{{.Version}}' -m k8s.io/client-go)" 26 + K8S_MODULES_MAJOR_VER="$(($(cut -d. -f1 <<<"$K8S_MODULES_VER") + 1))" 27 + K8S_MODULES_MINOR_VER="$(cut -d. -f2 <<<"$K8S_MODULES_VER")" 28 + old_ldflags="''${ldflags}" 29 + ldflags="''${ldflags} -X helm.sh/helm/v3/pkg/lint/rules.k8sVersionMajor=''${K8S_MODULES_MAJOR_VER}" 30 + ldflags="''${ldflags} -X helm.sh/helm/v3/pkg/lint/rules.k8sVersionMinor=''${K8S_MODULES_MINOR_VER}" 31 + ldflags="''${ldflags} -X helm.sh/helm/v3/pkg/chartutil.k8sVersionMajor=''${K8S_MODULES_MAJOR_VER}" 32 + ldflags="''${ldflags} -X helm.sh/helm/v3/pkg/chartutil.k8sVersionMinor=''${K8S_MODULES_MINOR_VER}" 33 + ''; 34 + 23 35 __darwinAllowLocalNetworking = true; 24 36 25 37 preCheck = '' 38 + # restore ldflags for tests 39 + ldflags="''${old_ldflags}" 40 + 26 41 # skipping version tests because they require dot git directory 27 42 substituteInPlace cmd/helm/version_test.go \ 28 43 --replace "TestVersion" "SkipVersion"
+2 -2
pkgs/applications/networking/cluster/roxctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "roxctl"; 5 - version = "4.3.2"; 5 + version = "4.3.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "stackrox"; 9 9 repo = "stackrox"; 10 10 rev = version; 11 - sha256 = "sha256-uVpWOUSBbq8r8UBPHHIkn2WVJ0KDX3J0o8cEhn1G9KM="; 11 + sha256 = "sha256-G+BmcGrVxZmVHNl2VsN7nankEIB7uV/PFpQekipdT3c="; 12 12 }; 13 13 14 14 vendorHash = "sha256-Jzv4ozR8RJiwkgVGGq6dlV/7rbBLq8hFe/Pm4SJZCkU=";
+8 -8
pkgs/applications/networking/gns3/default.nix
··· 12 12 13 13 guiStable = mkGui { 14 14 channel = "stable"; 15 - version = "2.2.44.1"; 16 - hash = "sha256-Ae1Yij81/rhZOMMfLYaQKR4Dxx1gDGZBpBj0gLCSToI="; 15 + version = "2.2.45"; 16 + hash = "sha256-SMnhPz5zTPtidy/BIvauDM60WgDLG+NIr9rdUrQhz0A="; 17 17 }; 18 18 19 19 guiPreview = mkGui { 20 20 channel = "stable"; 21 - version = "2.2.44.1"; 22 - hash = "sha256-Ae1Yij81/rhZOMMfLYaQKR4Dxx1gDGZBpBj0gLCSToI="; 21 + version = "2.2.45"; 22 + hash = "sha256-SMnhPz5zTPtidy/BIvauDM60WgDLG+NIr9rdUrQhz0A="; 23 23 }; 24 24 25 25 serverStable = mkServer { 26 26 channel = "stable"; 27 - version = "2.2.44.1"; 28 - hash = "sha256-YtYXTEZj5009L8OU7jdhegYu5Xll3jZAW6NJFWOvxHQ="; 27 + version = "2.2.45"; 28 + hash = "sha256-1GwhZEPfRW1e+enJipy7YOnA4QzeqZ7aCG92GrsZhms="; 29 29 }; 30 30 31 31 serverPreview = mkServer { 32 32 channel = "stable"; 33 - version = "2.2.44.1"; 34 - hash = "sha256-YtYXTEZj5009L8OU7jdhegYu5Xll3jZAW6NJFWOvxHQ="; 33 + version = "2.2.45"; 34 + hash = "sha256-1GwhZEPfRW1e+enJipy7YOnA4QzeqZ7aCG92GrsZhms="; 35 35 }; 36 36 }
+2 -3
pkgs/applications/networking/instant-messengers/fluffychat/default.nix
··· 39 39 description = "Chat with your friends (matrix client)"; 40 40 homepage = "https://fluffychat.im/"; 41 41 license = licenses.agpl3Plus; 42 + mainProgram = "fluffychat"; 42 43 maintainers = with maintainers; [ mkg20001 gilice ]; 43 44 platforms = [ "x86_64-linux" "aarch64-linux" ]; 44 45 sourceProvenance = [ sourceTypes.fromSource ]; ··· 54 55 55 56 desktopItem = makeDesktopItem { 56 57 name = "Fluffychat"; 57 - exec = "@out@/bin/fluffychat"; 58 + exec = "fluffychat"; 58 59 icon = "fluffychat"; 59 60 desktopName = "Fluffychat"; 60 61 genericName = "Chat with your friends (matrix client)"; ··· 73 74 mkdir -p $D 74 75 convert $FAV -resize ''${size}x''${size} $D/fluffychat.png 75 76 done 76 - substituteInPlace $out/share/applications/*.desktop \ 77 - --subst-var out 78 77 79 78 patchelf --add-rpath ${libwebrtcRpath} $out/app/lib/libwebrtc.so 80 79 '';
+2 -2
pkgs/applications/radio/freedv/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "freedv"; 28 - version = "1.9.7.1"; 28 + version = "1.9.7.2"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "drowe67"; 32 32 repo = "freedv-gui"; 33 33 rev = "v${version}"; 34 - hash = "sha256-cjqemWCjZr/1EOjUTsF4y03tvjQqquBLXxU0DG8OIFU="; 34 + hash = "sha256-JbLP65fC6uHrHXpSUwtgYHB+VLfheo5RU3C44lx8QlQ="; 35 35 }; 36 36 37 37 postPatch = lib.optionalString stdenv.isDarwin ''
+578 -582
pkgs/applications/version-management/sapling/Cargo.lock
··· 44 44 45 45 [[package]] 46 46 name = "ahash" 47 - version = "0.8.6" 47 + version = "0.8.7" 48 48 source = "registry+https://github.com/rust-lang/crates.io-index" 49 - checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 49 + checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" 50 50 dependencies = [ 51 51 "cfg-if 1.0.0", 52 52 "once_cell", ··· 110 110 111 111 [[package]] 112 112 name = "anstream" 113 - version = "0.6.4" 113 + version = "0.6.11" 114 114 source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" 115 + checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" 116 116 dependencies = [ 117 117 "anstyle", 118 118 "anstyle-parse", ··· 130 130 131 131 [[package]] 132 132 name = "anstyle-parse" 133 - version = "0.2.2" 133 + version = "0.2.3" 134 134 source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" 135 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 136 136 dependencies = [ 137 137 "utf8parse", 138 138 ] 139 139 140 140 [[package]] 141 141 name = "anstyle-query" 142 - version = "1.0.0" 142 + version = "1.0.2" 143 143 source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 144 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 145 145 dependencies = [ 146 - "windows-sys 0.48.0", 146 + "windows-sys 0.52.0", 147 147 ] 148 148 149 149 [[package]] 150 150 name = "anstyle-wincon" 151 - version = "3.0.1" 151 + version = "3.0.2" 152 152 source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 153 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 154 154 dependencies = [ 155 155 "anstyle", 156 - "windows-sys 0.48.0", 156 + "windows-sys 0.52.0", 157 157 ] 158 158 159 159 [[package]] 160 160 name = "anyhow" 161 - version = "1.0.72" 161 + version = "1.0.79" 162 162 source = "registry+https://github.com/rust-lang/crates.io-index" 163 - checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" 163 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 164 164 dependencies = [ 165 165 "backtrace", 166 166 ] ··· 208 208 209 209 [[package]] 210 210 name = "async-compression" 211 - version = "0.4.5" 211 + version = "0.4.6" 212 212 source = "registry+https://github.com/rust-lang/crates.io-index" 213 - checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 213 + checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" 214 214 dependencies = [ 215 215 "brotli", 216 216 "bzip2", ··· 257 257 name = "async-runtime" 258 258 version = "0.1.0" 259 259 dependencies = [ 260 - "futures 0.3.29", 260 + "futures 0.3.30", 261 261 "num_cpus", 262 262 "once_cell", 263 263 "tokio", ··· 265 265 266 266 [[package]] 267 267 name = "async-trait" 268 - version = "0.1.74" 268 + version = "0.1.77" 269 269 source = "registry+https://github.com/rust-lang/crates.io-index" 270 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 270 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 271 271 dependencies = [ 272 272 "proc-macro2", 273 273 "quote", 274 - "syn 2.0.39", 274 + "syn 2.0.48", 275 275 ] 276 276 277 277 [[package]] ··· 314 314 "anyhow", 315 315 "chrono", 316 316 "configmodel", 317 - "indexmap 1.9.3", 317 + "indexmap 2.1.0", 318 318 "once_cell", 319 319 "pem", 320 320 "simple_asn1", ··· 348 348 version = "0.1.0" 349 349 dependencies = [ 350 350 "anyhow", 351 - "async-runtime", 351 + "arc-swap", 352 352 "configloader", 353 353 "constructors", 354 + "cxx", 354 355 "eagerepo", 355 356 "edenapi", 356 - "env_logger 0.10.1", 357 + "env_logger 0.10.2", 357 358 "identity", 358 359 "indexedlog", 359 - "libc", 360 360 "log", 361 361 "manifest", 362 362 "parking_lot", 363 363 "repo", 364 - "revisionstore", 364 + "storemodel", 365 365 "tracing", 366 366 "tracing-collector", 367 367 "tracing-subscriber", ··· 405 405 406 406 [[package]] 407 407 name = "base64" 408 - version = "0.21.5" 408 + version = "0.21.7" 409 409 source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 410 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 411 411 412 412 [[package]] 413 413 name = "bindag" ··· 432 432 "pyblackbox", 433 433 "pybytes", 434 434 "pycats", 435 + "pycbor", 435 436 "pycext", 436 437 "pycheckout", 437 438 "pyclientinfo", ··· 524 525 525 526 [[package]] 526 527 name = "bitflags" 527 - version = "2.4.1" 528 + version = "2.4.2" 528 529 source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 530 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 530 531 531 532 [[package]] 532 533 name = "bitmaps" ··· 543 544 dependencies = [ 544 545 "anyhow", 545 546 "byteorder", 547 + "clientinfo", 546 548 "indexedlog", 547 549 "lazy_static", 548 550 "libc", ··· 567 569 568 570 [[package]] 569 571 name = "blake3" 570 - version = "1.3.1" 572 + version = "1.5.0" 571 573 source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f" 574 + checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87" 573 575 dependencies = [ 574 576 "arrayref", 575 577 "arrayvec", ··· 620 622 621 623 [[package]] 622 624 name = "bstr" 623 - version = "1.8.0" 625 + version = "1.9.0" 624 626 source = "registry+https://github.com/rust-lang/crates.io-index" 625 - checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 627 + checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" 626 628 dependencies = [ 627 629 "memchr", 628 630 "serde", ··· 630 632 631 633 [[package]] 632 634 name = "bufsize" 633 - version = "1.0.6" 635 + version = "1.0.7" 634 636 source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "da2a4f1be8d12d1d69cbcfd3e740dddba696710847cf8630f6676860045345e8" 637 + checksum = "7864afba28009cd99a4d973c3de89cc766b800cdf1bd909966d454906f3bce5d" 636 638 dependencies = [ 637 639 "bytes", 638 640 ] ··· 691 693 dependencies = [ 692 694 "anyhow", 693 695 "configmodel", 694 - "indexmap 1.9.3", 696 + "indexmap 2.1.0", 695 697 "serde", 696 698 "serde_json", 697 699 "thiserror", ··· 726 728 version = "0.1.0" 727 729 dependencies = [ 728 730 "anyhow", 729 - "async-runtime", 730 731 "async-trait", 732 + "atexit", 731 733 "configmodel", 734 + "crossbeam", 735 + "edenfs-client", 732 736 "fail", 733 - "futures 0.3.29", 734 - "io", 737 + "fs-err", 738 + "hg-metrics", 735 739 "manifest", 736 740 "manifest-tree", 737 741 "minibytes", ··· 742 746 "repo", 743 747 "repolock", 744 748 "serde_json", 749 + "spawn-ext", 745 750 "status", 746 751 "storemodel", 747 752 "tempfile", 753 + "termlogger", 748 754 "thiserror", 749 - "tokio", 755 + "toml", 750 756 "tracing", 751 757 "treestate", 752 758 "types", ··· 806 812 807 813 [[package]] 808 814 name = "clap" 809 - version = "4.4.8" 815 + version = "4.4.18" 810 816 source = "registry+https://github.com/rust-lang/crates.io-index" 811 - checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" 817 + checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" 812 818 dependencies = [ 813 819 "clap_builder", 814 820 "clap_derive 4.4.7", ··· 816 822 817 823 [[package]] 818 824 name = "clap_builder" 819 - version = "4.4.8" 825 + version = "4.4.18" 820 826 source = "registry+https://github.com/rust-lang/crates.io-index" 821 - checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" 827 + checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" 822 828 dependencies = [ 823 829 "anstream", 824 830 "anstyle", ··· 851 857 "heck 0.4.1", 852 858 "proc-macro2", 853 859 "quote", 854 - "syn 2.0.39", 860 + "syn 2.0.48", 855 861 ] 856 862 857 863 [[package]] ··· 922 928 dependencies = [ 923 929 "anyhow", 924 930 "cpython", 925 - "indexmap 1.9.3", 931 + "indexmap 2.1.0", 926 932 "serde", 927 933 "shlex", 928 934 "thiserror", ··· 951 957 [[package]] 952 958 name = "cloned" 953 959 version = "0.1.0" 954 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 960 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 955 961 956 962 [[package]] 957 963 name = "codegen" ··· 963 969 [[package]] 964 970 name = "codegen_includer_proc_macro" 965 971 version = "0.1.0" 966 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 972 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 967 973 dependencies = [ 968 974 "quote", 969 975 ] ··· 1035 1041 version = "0.1.0" 1036 1042 dependencies = [ 1037 1043 "anyhow", 1044 + "base64 0.13.1", 1038 1045 "filetime", 1039 - "futures 0.3.29", 1040 1046 "hostcaps", 1041 1047 "identity", 1042 1048 "lazy_static", ··· 1045 1051 "parking_lot", 1046 1052 "regex", 1047 1053 "reqwest", 1048 - "reqwest-eventsource", 1049 1054 "rust-ini", 1050 1055 "serde", 1051 1056 "serde_json", ··· 1064 1069 "dag", 1065 1070 "factory", 1066 1071 "fs-err", 1067 - "futures 0.3.29", 1072 + "futures 0.3.30", 1068 1073 "gitdag", 1069 1074 "metalog", 1070 1075 "minibytes", ··· 1082 1087 "anyhow", 1083 1088 "async-trait", 1084 1089 "dag", 1085 - "futures 0.3.29", 1090 + "futures 0.3.30", 1086 1091 "metalog", 1087 1092 "minibytes", 1088 1093 "serde", ··· 1108 1113 1109 1114 [[package]] 1110 1115 name = "concurrent-queue" 1111 - version = "2.3.0" 1116 + version = "2.4.0" 1112 1117 source = "registry+https://github.com/rust-lang/crates.io-index" 1113 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 1118 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 1114 1119 dependencies = [ 1115 - "crossbeam-utils 0.8.16", 1120 + "crossbeam-utils 0.8.19", 1116 1121 ] 1117 1122 1118 1123 [[package]] ··· 1125 1130 "config_types", 1126 1131 "const-cstr", 1127 1132 "fbthrift", 1128 - "futures 0.3.29", 1133 + "futures 0.3.30", 1129 1134 "ref-cast", 1130 1135 "thiserror", 1131 1136 "thrift_compiler", ··· 1143 1148 "config_thrift_types", 1144 1149 "const-cstr", 1145 1150 "fbthrift", 1146 - "futures 0.3.29", 1151 + "futures 0.3.30", 1147 1152 "ref-cast", 1148 1153 "thiserror", 1149 1154 "thrift_compiler", ··· 1158 1163 "anyhow", 1159 1164 "codegen_includer_proc_macro", 1160 1165 "fbthrift", 1161 - "futures 0.3.29", 1166 + "futures 0.3.30", 1162 1167 "once_cell", 1163 1168 "ref-cast", 1164 1169 "serde", ··· 1174 1179 "anyhow", 1175 1180 "codegen_includer_proc_macro", 1176 1181 "fbthrift", 1177 - "futures 0.3.29", 1182 + "futures 0.3.30", 1178 1183 "once_cell", 1179 1184 "ref-cast", 1180 1185 "serde", ··· 1236 1241 dependencies = [ 1237 1242 "configmodel", 1238 1243 "hgrc-parser", 1239 - "indexmap 1.9.3", 1244 + "indexmap 2.1.0", 1240 1245 "minibytes", 1241 1246 "tempfile", 1242 1247 "tracing", ··· 1245 1250 1246 1251 [[package]] 1247 1252 name = "console" 1248 - version = "0.15.7" 1253 + version = "0.15.8" 1249 1254 source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 1255 + checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 1251 1256 dependencies = [ 1252 1257 "encode_unicode", 1253 1258 "lazy_static", 1254 1259 "libc", 1255 - "windows-sys 0.45.0", 1260 + "windows-sys 0.52.0", 1256 1261 ] 1257 1262 1258 1263 [[package]] ··· 1263 1268 1264 1269 [[package]] 1265 1270 name = "constant_time_eq" 1266 - version = "0.1.5" 1271 + version = "0.3.0" 1267 1272 source = "registry+https://github.com/rust-lang/crates.io-index" 1268 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 1273 + checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 1269 1274 1270 1275 [[package]] 1271 1276 name = "constructors" ··· 1276 1281 "edenapi", 1277 1282 "gitstore", 1278 1283 "hgcommits", 1284 + "manifest-tree", 1279 1285 "once_cell", 1280 1286 ] 1281 1287 ··· 1325 1331 version = "0.1.0" 1326 1332 dependencies = [ 1327 1333 "anyhow", 1334 + "async-runtime", 1328 1335 "async-trait", 1329 1336 "configmodel", 1330 1337 "dag", ··· 1348 1355 1349 1356 [[package]] 1350 1357 name = "core-foundation" 1351 - version = "0.9.3" 1358 + version = "0.9.4" 1352 1359 source = "registry+https://github.com/rust-lang/crates.io-index" 1353 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1360 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1354 1361 dependencies = [ 1355 1362 "core-foundation-sys", 1356 1363 "libc", ··· 1358 1365 1359 1366 [[package]] 1360 1367 name = "core-foundation-sys" 1361 - version = "0.8.4" 1368 + version = "0.8.6" 1362 1369 source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1370 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1364 1371 1365 1372 [[package]] 1366 1373 name = "cpufeatures" 1367 - version = "0.2.11" 1374 + version = "0.2.12" 1368 1375 source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1376 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1370 1377 dependencies = [ 1371 1378 "libc", 1372 1379 ] ··· 1392 1399 "async-runtime", 1393 1400 "cpython", 1394 1401 "cpython_ext", 1395 - "futures 0.3.29", 1402 + "futures 0.3.30", 1396 1403 "itertools", 1397 1404 "tokio", 1398 1405 ] ··· 1425 1432 1426 1433 [[package]] 1427 1434 name = "crossbeam" 1428 - version = "0.8.2" 1435 + version = "0.8.4" 1429 1436 source = "registry+https://github.com/rust-lang/crates.io-index" 1430 - checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 1437 + checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 1431 1438 dependencies = [ 1432 - "cfg-if 1.0.0", 1433 - "crossbeam-channel 0.5.8", 1439 + "crossbeam-channel 0.5.11", 1434 1440 "crossbeam-deque", 1435 1441 "crossbeam-epoch", 1436 1442 "crossbeam-queue", 1437 - "crossbeam-utils 0.8.16", 1443 + "crossbeam-utils 0.8.19", 1438 1444 ] 1439 1445 1440 1446 [[package]] ··· 1448 1454 1449 1455 [[package]] 1450 1456 name = "crossbeam-channel" 1451 - version = "0.5.8" 1457 + version = "0.5.11" 1452 1458 source = "registry+https://github.com/rust-lang/crates.io-index" 1453 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1459 + checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 1454 1460 dependencies = [ 1455 - "cfg-if 1.0.0", 1456 - "crossbeam-utils 0.8.16", 1461 + "crossbeam-utils 0.8.19", 1457 1462 ] 1458 1463 1459 1464 [[package]] 1460 1465 name = "crossbeam-deque" 1461 - version = "0.8.3" 1466 + version = "0.8.5" 1462 1467 source = "registry+https://github.com/rust-lang/crates.io-index" 1463 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1468 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1464 1469 dependencies = [ 1465 - "cfg-if 1.0.0", 1466 1470 "crossbeam-epoch", 1467 - "crossbeam-utils 0.8.16", 1471 + "crossbeam-utils 0.8.19", 1468 1472 ] 1469 1473 1470 1474 [[package]] 1471 1475 name = "crossbeam-epoch" 1472 - version = "0.9.15" 1476 + version = "0.9.18" 1473 1477 source = "registry+https://github.com/rust-lang/crates.io-index" 1474 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 1478 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1475 1479 dependencies = [ 1476 - "autocfg", 1477 - "cfg-if 1.0.0", 1478 - "crossbeam-utils 0.8.16", 1479 - "memoffset 0.9.0", 1480 - "scopeguard", 1480 + "crossbeam-utils 0.8.19", 1481 1481 ] 1482 1482 1483 1483 [[package]] 1484 1484 name = "crossbeam-queue" 1485 - version = "0.3.8" 1485 + version = "0.3.11" 1486 1486 source = "registry+https://github.com/rust-lang/crates.io-index" 1487 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 1487 + checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 1488 1488 dependencies = [ 1489 - "cfg-if 1.0.0", 1490 - "crossbeam-utils 0.8.16", 1489 + "crossbeam-utils 0.8.19", 1491 1490 ] 1492 1491 1493 1492 [[package]] ··· 1502 1501 1503 1502 [[package]] 1504 1503 name = "crossbeam-utils" 1505 - version = "0.8.16" 1504 + version = "0.8.19" 1506 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1507 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 1508 - dependencies = [ 1509 - "cfg-if 1.0.0", 1510 - ] 1506 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 1511 1507 1512 1508 [[package]] 1513 1509 name = "crossterm" ··· 1566 1562 1567 1563 [[package]] 1568 1564 name = "ctrlc" 1569 - version = "3.4.1" 1565 + version = "3.4.2" 1570 1566 source = "registry+https://github.com/rust-lang/crates.io-index" 1571 - checksum = "82e95fbd621905b854affdc67943b043a0fbb6ed7385fd5a25650d19a8a6cfdf" 1567 + checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b" 1572 1568 dependencies = [ 1573 1569 "nix 0.27.1", 1574 - "windows-sys 0.48.0", 1570 + "windows-sys 0.52.0", 1575 1571 ] 1576 1572 1577 1573 [[package]] ··· 1591 1587 1592 1588 [[package]] 1593 1589 name = "curl-sys" 1594 - version = "0.4.68+curl-8.4.0" 1590 + version = "0.4.70+curl-8.5.0" 1595 1591 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "b4a0d18d88360e374b16b2273c832b5e57258ffc1d4aa4f96b108e0738d5752f" 1592 + checksum = "3c0333d8849afe78a4c8102a429a446bfdd055832af071945520e835ae2d841e" 1597 1593 dependencies = [ 1598 1594 "cc", 1599 1595 "libc", ··· 1607 1603 1608 1604 [[package]] 1609 1605 name = "cxx" 1610 - version = "1.0.110" 1606 + version = "1.0.115" 1611 1607 source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "7129e341034ecb940c9072817cd9007974ea696844fc4dd582dc1653a7fbe2e8" 1608 + checksum = "8de00f15a6fa069c99b88c5c78c4541d0e7899a33b86f7480e23df2431fce0bc" 1613 1609 dependencies = [ 1614 1610 "cc", 1615 1611 "cxxbridge-flags", ··· 1619 1615 1620 1616 [[package]] 1621 1617 name = "cxx-build" 1622 - version = "1.0.110" 1618 + version = "1.0.115" 1623 1619 source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "a2a24f3f5f8eed71936f21e570436f024f5c2e25628f7496aa7ccd03b90109d5" 1620 + checksum = "0a71e1e631fa2f2f5f92e8b0d860a00c198c6771623a6cefcc863e3554f0d8d6" 1625 1621 dependencies = [ 1626 1622 "cc", 1627 1623 "codespan-reporting", ··· 1629 1625 "proc-macro2", 1630 1626 "quote", 1631 1627 "scratch", 1632 - "syn 2.0.39", 1628 + "syn 2.0.48", 1633 1629 ] 1634 1630 1635 1631 [[package]] 1636 1632 name = "cxxbridge-flags" 1637 - version = "1.0.110" 1633 + version = "1.0.115" 1638 1634 source = "registry+https://github.com/rust-lang/crates.io-index" 1639 - checksum = "06fdd177fc61050d63f67f5bd6351fac6ab5526694ea8e359cd9cd3b75857f44" 1635 + checksum = "6f3fed61d56ba497c4efef9144dfdbaa25aa58f2f6b3a7cf441d4591c583745c" 1640 1636 1641 1637 [[package]] 1642 1638 name = "cxxbridge-macro" 1643 - version = "1.0.110" 1639 + version = "1.0.115" 1644 1640 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "587663dd5fb3d10932c8aecfe7c844db1bcf0aee93eeab08fac13dc1212c2e7f" 1641 + checksum = "8908e380a8efd42150c017b0cfa31509fc49b6d47f7cb6b33e93ffb8f4e3661e" 1646 1642 dependencies = [ 1647 1643 "proc-macro2", 1648 1644 "quote", 1649 - "syn 2.0.39", 1645 + "syn 2.0.48", 1650 1646 ] 1651 1647 1652 1648 [[package]] ··· 1655 1651 dependencies = [ 1656 1652 "anyhow", 1657 1653 "async-trait", 1658 - "bitflags 1.3.2", 1654 + "bitflags 2.4.2", 1659 1655 "byteorder", 1660 1656 "dag-types", 1661 1657 "dev-logger", 1662 1658 "drawdag", 1663 1659 "fail", 1664 1660 "fs2", 1665 - "futures 0.3.29", 1661 + "futures 0.3.30", 1666 1662 "indexedlog", 1667 - "indexmap 1.9.3", 1663 + "indexmap 2.1.0", 1668 1664 "mincode", 1669 1665 "minibytes", 1670 1666 "nonblocking", ··· 1686 1682 dependencies = [ 1687 1683 "bindag", 1688 1684 "dag", 1685 + "dev-logger", 1689 1686 "mincode", 1690 1687 "minibench", 1691 1688 "nonblocking", 1689 + "serde_cbor", 1692 1690 "tempfile", 1693 1691 ] 1694 1692 ··· 1710 1708 checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 1711 1709 dependencies = [ 1712 1710 "cfg-if 1.0.0", 1713 - "hashbrown 0.14.2", 1711 + "hashbrown 0.14.3", 1714 1712 "lock_api", 1715 1713 "once_cell", 1716 1714 "parking_lot_core", ··· 1735 1733 1736 1734 [[package]] 1737 1735 name = "deranged" 1738 - version = "0.3.9" 1736 + version = "0.3.11" 1739 1737 source = "registry+https://github.com/rust-lang/crates.io-index" 1740 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 1738 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1741 1739 dependencies = [ 1742 1740 "powerfmt", 1743 1741 ] ··· 1843 1841 "edenapi_trait", 1844 1842 "factory", 1845 1843 "fail", 1846 - "futures 0.3.29", 1844 + "futures 0.3.30", 1847 1845 "hgstore", 1848 1846 "http", 1849 1847 "identity", ··· 1889 1887 "configmodel", 1890 1888 "edenapi_trait", 1891 1889 "edenapi_types", 1892 - "futures 0.3.29", 1890 + "futures 0.3.30", 1893 1891 "hg-http", 1894 1892 "http-client", 1895 1893 "itertools", ··· 1920 1918 "crossbeam", 1921 1919 "edenapi", 1922 1920 "edenapi_types", 1923 - "futures 0.3.29", 1921 + "futures 0.3.30", 1924 1922 "itertools", 1925 1923 "minibytes", 1926 1924 "tokio", ··· 1937 1935 "auth", 1938 1936 "configmodel", 1939 1937 "edenapi_types", 1940 - "futures 0.3.29", 1938 + "futures 0.3.30", 1941 1939 "http", 1942 1940 "http-client", 1943 1941 "minibytes", ··· 1999 1997 "async-runtime", 2000 1998 "cxx", 2001 1999 "cxx-build", 2002 - "futures 0.3.29", 2003 2000 "identity", 2004 2001 "manifest", 2005 - "manifest-tree", 2006 2002 "once_cell", 2003 + "parking_lot", 2007 2004 "pathmatcher", 2008 2005 "repo", 2009 2006 "sparse", 2010 - "tokio", 2011 2007 "types", 2012 2008 ] 2013 2009 ··· 2050 2046 "once_cell", 2051 2047 "proc-macro2", 2052 2048 "quote", 2053 - "syn 2.0.39", 2049 + "syn 2.0.48", 2054 2050 ] 2055 2051 2056 2052 [[package]] ··· 2065 2061 2066 2062 [[package]] 2067 2063 name = "env_logger" 2068 - version = "0.10.1" 2064 + version = "0.10.2" 2069 2065 source = "registry+https://github.com/rust-lang/crates.io-index" 2070 - checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 2066 + checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 2071 2067 dependencies = [ 2072 2068 "humantime", 2073 2069 "is-terminal", ··· 2084 2080 2085 2081 [[package]] 2086 2082 name = "erased-serde" 2087 - version = "0.3.31" 2083 + version = "0.4.2" 2088 2084 source = "registry+https://github.com/rust-lang/crates.io-index" 2089 - checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" 2085 + checksum = "55d05712b2d8d88102bc9868020c9e5c7a1f5527c452b9b97450a1d006140ba7" 2090 2086 dependencies = [ 2091 2087 "serde", 2092 2088 ] 2093 2089 2094 2090 [[package]] 2095 2091 name = "errno" 2096 - version = "0.3.7" 2092 + version = "0.3.8" 2097 2093 source = "registry+https://github.com/rust-lang/crates.io-index" 2098 - checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8" 2094 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 2099 2095 dependencies = [ 2100 2096 "libc", 2101 - "windows-sys 0.48.0", 2097 + "windows-sys 0.52.0", 2102 2098 ] 2103 2099 2104 2100 [[package]] ··· 2108 2104 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 2109 2105 2110 2106 [[package]] 2111 - name = "eventsource-stream" 2112 - version = "0.2.3" 2113 - source = "registry+https://github.com/rust-lang/crates.io-index" 2114 - checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab" 2115 - dependencies = [ 2116 - "futures-core", 2117 - "nom 7.1.3", 2118 - "pin-project-lite", 2119 - ] 2120 - 2121 - [[package]] 2122 2107 name = "exchange" 2123 2108 version = "0.1.0" 2124 2109 dependencies = [ ··· 2198 2183 [[package]] 2199 2184 name = "fb303_core" 2200 2185 version = "0.0.0" 2201 - source = "git+https://github.com/facebook/fb303.git?branch=main#b43090b2a64a33076412ab593ee1ada5e48a7a9c" 2186 + source = "git+https://github.com/facebook/fb303.git?branch=main#1dd3544a29690edacb8da2910cd6e788a9f6c66b" 2202 2187 dependencies = [ 2203 2188 "anyhow", 2204 2189 "async-trait", ··· 2206 2191 "const-cstr", 2207 2192 "fb303_core_types", 2208 2193 "fbthrift", 2209 - "futures 0.3.29", 2194 + "futures 0.3.30", 2210 2195 "ref-cast", 2211 2196 "thiserror", 2212 2197 "thrift_compiler", ··· 2217 2202 [[package]] 2218 2203 name = "fb303_core_types" 2219 2204 version = "0.0.0" 2220 - source = "git+https://github.com/facebook/fb303.git?branch=main#b43090b2a64a33076412ab593ee1ada5e48a7a9c" 2205 + source = "git+https://github.com/facebook/fb303.git?branch=main#1dd3544a29690edacb8da2910cd6e788a9f6c66b" 2221 2206 dependencies = [ 2222 2207 "anyhow", 2223 2208 "codegen_includer_proc_macro", 2224 2209 "fbthrift", 2225 - "futures 0.3.29", 2210 + "futures 0.3.30", 2226 2211 "once_cell", 2227 2212 "ref-cast", 2228 2213 "serde", ··· 2234 2219 [[package]] 2235 2220 name = "fbinit" 2236 2221 version = "0.1.2" 2237 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 2222 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 2238 2223 dependencies = [ 2239 2224 "fbinit_macros", 2240 2225 "quickcheck", ··· 2243 2228 [[package]] 2244 2229 name = "fbinit_macros" 2245 2230 version = "0.1.2" 2246 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 2231 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 2247 2232 dependencies = [ 2248 2233 "proc-macro2", 2249 2234 "quote", ··· 2253 2238 [[package]] 2254 2239 name = "fbthrift" 2255 2240 version = "0.0.1+unstable" 2256 - source = "git+https://github.com/facebook/fbthrift.git?branch=main#7ba2d200ef5654b277c9ae85fe8b3bdbe15433e0" 2241 + source = "git+https://github.com/facebook/fbthrift.git?branch=main#f0eefaa2734bce13d861e0182b90a98d13250f17" 2257 2242 dependencies = [ 2258 2243 "anyhow", 2259 2244 "async-trait", 2260 2245 "base64 0.13.1", 2261 2246 "bufsize", 2262 2247 "bytes", 2263 - "futures 0.3.29", 2248 + "futures 0.3.30", 2264 2249 "ghost", 2265 2250 "num-derive", 2266 2251 "num-traits", ··· 2273 2258 [[package]] 2274 2259 name = "fbthrift_framed" 2275 2260 version = "0.1.0" 2276 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 2261 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 2277 2262 dependencies = [ 2278 2263 "byteorder", 2279 2264 "bytes", ··· 2283 2268 [[package]] 2284 2269 name = "fbthrift_socket" 2285 2270 version = "0.1.0" 2286 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 2271 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 2287 2272 dependencies = [ 2288 2273 "anyhow", 2289 2274 "bytes", 2290 2275 "fbthrift", 2291 2276 "fbthrift_framed", 2292 2277 "fbthrift_util", 2293 - "futures 0.3.29", 2278 + "futures 0.3.30", 2294 2279 "tokio", 2295 2280 "tokio-tower", 2296 2281 "tokio-util 0.7.10", ··· 2300 2285 [[package]] 2301 2286 name = "fbthrift_util" 2302 2287 version = "0.1.0" 2303 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 2288 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 2304 2289 dependencies = [ 2305 2290 "tokio", 2306 2291 ] ··· 2329 2314 2330 2315 [[package]] 2331 2316 name = "filetime" 2332 - version = "0.2.22" 2317 + version = "0.2.23" 2333 2318 source = "registry+https://github.com/rust-lang/crates.io-index" 2334 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 2319 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 2335 2320 dependencies = [ 2336 2321 "cfg-if 1.0.0", 2337 2322 "libc", 2338 - "redox_syscall 0.3.5", 2339 - "windows-sys 0.48.0", 2323 + "redox_syscall", 2324 + "windows-sys 0.52.0", 2340 2325 ] 2341 2326 2342 2327 [[package]] ··· 2369 2354 dependencies = [ 2370 2355 "proc-macro2", 2371 2356 "quote", 2372 - "syn 2.0.39", 2357 + "syn 2.0.48", 2373 2358 ] 2374 2359 2375 2360 [[package]] ··· 2395 2380 2396 2381 [[package]] 2397 2382 name = "form_urlencoded" 2398 - version = "1.2.0" 2383 + version = "1.2.1" 2399 2384 source = "registry+https://github.com/rust-lang/crates.io-index" 2400 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 2385 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 2401 2386 dependencies = [ 2402 2387 "percent-encoding", 2403 2388 ] ··· 2416 2401 2417 2402 [[package]] 2418 2403 name = "fs-err" 2419 - version = "2.10.0" 2404 + version = "2.11.0" 2420 2405 source = "registry+https://github.com/rust-lang/crates.io-index" 2421 - checksum = "fb5fd9bcbe8b1087cbd395b51498c01bc997cef73e778a80b77a811af5e2d29f" 2406 + checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" 2422 2407 dependencies = [ 2423 2408 "autocfg", 2409 + "tokio", 2424 2410 ] 2425 2411 2426 2412 [[package]] ··· 2474 2460 2475 2461 [[package]] 2476 2462 name = "futures" 2477 - version = "0.3.29" 2463 + version = "0.3.30" 2478 2464 source = "registry+https://github.com/rust-lang/crates.io-index" 2479 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 2465 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 2480 2466 dependencies = [ 2481 2467 "futures-channel", 2482 2468 "futures-core", ··· 2489 2475 2490 2476 [[package]] 2491 2477 name = "futures-channel" 2492 - version = "0.3.29" 2478 + version = "0.3.30" 2493 2479 source = "registry+https://github.com/rust-lang/crates.io-index" 2494 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 2480 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 2495 2481 dependencies = [ 2496 2482 "futures-core", 2497 2483 "futures-sink", ··· 2499 2485 2500 2486 [[package]] 2501 2487 name = "futures-core" 2502 - version = "0.3.29" 2488 + version = "0.3.30" 2503 2489 source = "registry+https://github.com/rust-lang/crates.io-index" 2504 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 2490 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 2505 2491 2506 2492 [[package]] 2507 2493 name = "futures-executor" 2508 - version = "0.3.29" 2494 + version = "0.3.30" 2509 2495 source = "registry+https://github.com/rust-lang/crates.io-index" 2510 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 2496 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 2511 2497 dependencies = [ 2512 2498 "futures-core", 2513 2499 "futures-task", ··· 2516 2502 2517 2503 [[package]] 2518 2504 name = "futures-io" 2519 - version = "0.3.29" 2505 + version = "0.3.30" 2520 2506 source = "registry+https://github.com/rust-lang/crates.io-index" 2521 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 2507 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 2522 2508 2523 2509 [[package]] 2524 2510 name = "futures-lite" ··· 2537 2523 2538 2524 [[package]] 2539 2525 name = "futures-macro" 2540 - version = "0.3.29" 2526 + version = "0.3.30" 2541 2527 source = "registry+https://github.com/rust-lang/crates.io-index" 2542 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 2528 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 2543 2529 dependencies = [ 2544 2530 "proc-macro2", 2545 2531 "quote", 2546 - "syn 2.0.39", 2532 + "syn 2.0.48", 2547 2533 ] 2548 2534 2549 2535 [[package]] 2550 2536 name = "futures-sink" 2551 - version = "0.3.29" 2537 + version = "0.3.30" 2552 2538 source = "registry+https://github.com/rust-lang/crates.io-index" 2553 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 2539 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 2554 2540 2555 2541 [[package]] 2556 2542 name = "futures-task" 2557 - version = "0.3.29" 2543 + version = "0.3.30" 2558 2544 source = "registry+https://github.com/rust-lang/crates.io-index" 2559 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 2560 - 2561 - [[package]] 2562 - name = "futures-timer" 2563 - version = "3.0.2" 2564 - source = "registry+https://github.com/rust-lang/crates.io-index" 2565 - checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 2545 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 2566 2546 2567 2547 [[package]] 2568 2548 name = "futures-util" 2569 - version = "0.3.29" 2549 + version = "0.3.30" 2570 2550 source = "registry+https://github.com/rust-lang/crates.io-index" 2571 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 2551 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 2572 2552 dependencies = [ 2573 2553 "futures 0.1.31", 2574 2554 "futures-channel", ··· 2615 2595 2616 2596 [[package]] 2617 2597 name = "getrandom" 2618 - version = "0.2.11" 2598 + version = "0.2.12" 2619 2599 source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2600 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 2621 2601 dependencies = [ 2622 2602 "cfg-if 1.0.0", 2623 2603 "libc", ··· 2626 2606 2627 2607 [[package]] 2628 2608 name = "ghost" 2629 - version = "0.1.16" 2609 + version = "0.1.17" 2630 2610 source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "ef81e7cedce6ab54cd5dc7b3400c442c8d132fe03200a1be0637db7ef308ff17" 2611 + checksum = "b0e085ded9f1267c32176b40921b9754c474f7dd96f7e808d4a982e48aa1e854" 2632 2612 dependencies = [ 2633 2613 "proc-macro2", 2634 2614 "quote", 2635 - "syn 2.0.39", 2615 + "syn 2.0.48", 2636 2616 ] 2637 2617 2638 2618 [[package]] 2639 2619 name = "gimli" 2640 - version = "0.28.0" 2620 + version = "0.28.1" 2641 2621 source = "registry+https://github.com/rust-lang/crates.io-index" 2642 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 2622 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 2643 2623 2644 2624 [[package]] 2645 2625 name = "git2" ··· 2690 2670 2691 2671 [[package]] 2692 2672 name = "globset" 2693 - version = "0.4.13" 2673 + version = "0.4.14" 2694 2674 source = "registry+https://github.com/rust-lang/crates.io-index" 2695 - checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 2675 + checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 2696 2676 dependencies = [ 2697 2677 "aho-corasick", 2698 2678 "bstr", 2699 - "fnv", 2700 2679 "log", 2701 - "regex", 2680 + "regex-automata 0.4.3", 2681 + "regex-syntax 0.8.2", 2702 2682 "serde", 2703 2683 ] 2704 2684 2705 2685 [[package]] 2706 2686 name = "h2" 2707 - version = "0.3.22" 2687 + version = "0.3.24" 2708 2688 source = "registry+https://github.com/rust-lang/crates.io-index" 2709 - checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 2689 + checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 2710 2690 dependencies = [ 2711 2691 "bytes", 2712 2692 "fnv", ··· 2744 2724 2745 2725 [[package]] 2746 2726 name = "hashbrown" 2747 - version = "0.14.2" 2727 + version = "0.14.3" 2748 2728 source = "registry+https://github.com/rust-lang/crates.io-index" 2749 - checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 2729 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 2750 2730 dependencies = [ 2751 - "ahash 0.8.6", 2731 + "ahash 0.8.7", 2752 2732 "allocator-api2", 2753 2733 ] 2754 2734 ··· 2778 2758 2779 2759 [[package]] 2780 2760 name = "hermit-abi" 2781 - version = "0.3.3" 2761 + version = "0.3.4" 2782 2762 source = "registry+https://github.com/rust-lang/crates.io-index" 2783 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 2763 + checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" 2784 2764 2785 2765 [[package]] 2786 2766 name = "hex" ··· 2864 2844 "procinfo", 2865 2845 "progress-model", 2866 2846 "progress-render", 2847 + "pycheckout", 2867 2848 "pyconfigloader", 2868 2849 "pyedenclient", 2869 2850 "pyio", 2870 2851 "pymodules", 2871 2852 "python3-sys", 2872 2853 "pytracing", 2854 + "pyworkingcopy", 2873 2855 "rand 0.8.5", 2874 2856 "repo", 2875 2857 "repo_name", 2858 + "repostate", 2876 2859 "revisionstore", 2877 2860 "runlog", 2878 2861 "sampling", ··· 2905 2888 "edenapi", 2906 2889 "factory", 2907 2890 "fs-err", 2908 - "futures 0.3.29", 2891 + "futures 0.3.30", 2909 2892 "minibytes", 2910 2893 "parking_lot", 2911 2894 "revlogindex", ··· 2965 2948 2966 2949 [[package]] 2967 2950 name = "home" 2968 - version = "0.5.5" 2951 + version = "0.5.9" 2969 2952 source = "registry+https://github.com/rust-lang/crates.io-index" 2970 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 2953 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 2971 2954 dependencies = [ 2972 - "windows-sys 0.48.0", 2955 + "windows-sys 0.52.0", 2973 2956 ] 2974 2957 2975 2958 [[package]] 2976 2959 name = "hostcaps" 2977 2960 version = "0.1.0" 2978 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 2961 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 2979 2962 dependencies = [ 2980 2963 "once_cell", 2981 2964 ] ··· 2983 2966 [[package]] 2984 2967 name = "hostname" 2985 2968 version = "0.1.0" 2986 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 2969 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 2987 2970 dependencies = [ 2988 2971 "anyhow", 2989 2972 "hostname 0.3.1", ··· 3008 2991 dependencies = [ 3009 2992 "bytes", 3010 2993 "fnv", 3011 - "itoa 1.0.9", 2994 + "itoa 1.0.10", 3012 2995 ] 3013 2996 3014 2997 [[package]] 3015 2998 name = "http-body" 3016 - version = "0.4.5" 2999 + version = "0.4.6" 3017 3000 source = "registry+https://github.com/rust-lang/crates.io-index" 3018 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 3001 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 3019 3002 dependencies = [ 3020 3003 "bytes", 3021 3004 "http", ··· 3030 3013 "assert_matches", 3031 3014 "async-compression", 3032 3015 "async-runtime", 3016 + "auto_impl", 3033 3017 "clientinfo", 3034 3018 "crossbeam", 3035 3019 "curl", 3036 3020 "curl-sys", 3037 - "env_logger 0.10.1", 3038 - "futures 0.3.29", 3021 + "env_logger 0.10.2", 3022 + "futures 0.3.30", 3039 3023 "http", 3040 3024 "lru-cache", 3041 3025 "maplit", ··· 3078 3062 3079 3063 [[package]] 3080 3064 name = "hyper" 3081 - version = "0.14.27" 3065 + version = "0.14.28" 3082 3066 source = "registry+https://github.com/rust-lang/crates.io-index" 3083 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 3067 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 3084 3068 dependencies = [ 3085 3069 "bytes", 3086 3070 "futures-channel", ··· 3091 3075 "http-body", 3092 3076 "httparse", 3093 3077 "httpdate", 3094 - "itoa 1.0.9", 3078 + "itoa 1.0.10", 3095 3079 "pin-project-lite", 3096 - "socket2 0.4.10", 3080 + "socket2 0.5.5", 3097 3081 "tokio", 3098 3082 "tower-service", 3099 3083 "tracing", ··· 3129 3113 3130 3114 [[package]] 3131 3115 name = "iana-time-zone" 3132 - version = "0.1.58" 3116 + version = "0.1.59" 3133 3117 source = "registry+https://github.com/rust-lang/crates.io-index" 3134 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 3118 + checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" 3135 3119 dependencies = [ 3136 3120 "android_system_properties", 3137 3121 "core-foundation-sys", ··· 3185 3169 3186 3170 [[package]] 3187 3171 name = "idna" 3188 - version = "0.4.0" 3172 + version = "0.5.0" 3189 3173 source = "registry+https://github.com/rust-lang/crates.io-index" 3190 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 3174 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 3191 3175 dependencies = [ 3192 3176 "unicode-bidi", 3193 3177 "unicode-normalization", ··· 3195 3179 3196 3180 [[package]] 3197 3181 name = "ignore" 3198 - version = "0.4.20" 3182 + version = "0.4.22" 3199 3183 source = "registry+https://github.com/rust-lang/crates.io-index" 3200 - checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 3184 + checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" 3201 3185 dependencies = [ 3186 + "crossbeam-deque", 3202 3187 "globset", 3203 - "lazy_static", 3204 3188 "log", 3205 3189 "memchr", 3206 - "regex", 3190 + "regex-automata 0.4.3", 3207 3191 "same-file", 3208 - "thread_local", 3209 3192 "walkdir", 3210 3193 "winapi-util", 3211 3194 ] ··· 3255 3238 source = "registry+https://github.com/rust-lang/crates.io-index" 3256 3239 checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 3257 3240 dependencies = [ 3258 - "arbitrary", 3259 3241 "autocfg", 3260 3242 "hashbrown 0.12.3", 3261 - "rayon", 3262 - "serde", 3263 3243 ] 3264 3244 3265 3245 [[package]] ··· 3268 3248 source = "registry+https://github.com/rust-lang/crates.io-index" 3269 3249 checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 3270 3250 dependencies = [ 3251 + "arbitrary", 3271 3252 "equivalent", 3272 - "hashbrown 0.14.2", 3253 + "hashbrown 0.14.3", 3254 + "rayon", 3255 + "serde", 3273 3256 ] 3274 3257 3275 3258 [[package]] ··· 3323 3306 source = "registry+https://github.com/rust-lang/crates.io-index" 3324 3307 checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 3325 3308 dependencies = [ 3326 - "hermit-abi 0.3.3", 3309 + "hermit-abi 0.3.4", 3327 3310 "libc", 3328 3311 "windows-sys 0.48.0", 3329 3312 ] ··· 3345 3328 3346 3329 [[package]] 3347 3330 name = "is-terminal" 3348 - version = "0.4.9" 3331 + version = "0.4.10" 3349 3332 source = "registry+https://github.com/rust-lang/crates.io-index" 3350 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 3333 + checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" 3351 3334 dependencies = [ 3352 - "hermit-abi 0.3.3", 3353 - "rustix 0.38.24", 3354 - "windows-sys 0.48.0", 3335 + "hermit-abi 0.3.4", 3336 + "rustix 0.38.30", 3337 + "windows-sys 0.52.0", 3355 3338 ] 3356 3339 3357 3340 [[package]] ··· 3381 3364 3382 3365 [[package]] 3383 3366 name = "itoa" 3384 - version = "1.0.9" 3367 + version = "1.0.10" 3385 3368 source = "registry+https://github.com/rust-lang/crates.io-index" 3386 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 3369 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 3387 3370 3388 3371 [[package]] 3389 3372 name = "jobserver" ··· 3396 3379 3397 3380 [[package]] 3398 3381 name = "js-sys" 3399 - version = "0.3.65" 3382 + version = "0.3.67" 3400 3383 source = "registry+https://github.com/rust-lang/crates.io-index" 3401 - checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 3384 + checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 3402 3385 dependencies = [ 3403 3386 "wasm-bindgen", 3404 3387 ] ··· 3444 3427 3445 3428 [[package]] 3446 3429 name = "libc" 3447 - version = "0.2.150" 3430 + version = "0.2.152" 3448 3431 source = "registry+https://github.com/rust-lang/crates.io-index" 3449 - checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 3432 + checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 3450 3433 3451 3434 [[package]] 3452 3435 name = "libgit2-sys" ··· 3464 3447 3465 3448 [[package]] 3466 3449 name = "libnghttp2-sys" 3467 - version = "0.1.8+1.55.1" 3450 + version = "0.1.9+1.58.0" 3468 3451 source = "registry+https://github.com/rust-lang/crates.io-index" 3469 - checksum = "4fae956c192dadcdb5dace96db71fa0b827333cce7c7b38dc71446f024d8a340" 3452 + checksum = "b57e858af2798e167e709b9d969325b6d8e9d50232fcbc494d7d54f976854a64" 3470 3453 dependencies = [ 3471 3454 "cc", 3472 3455 "libc", ··· 3478 3461 source = "registry+https://github.com/rust-lang/crates.io-index" 3479 3462 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 3480 3463 dependencies = [ 3481 - "bitflags 2.4.1", 3464 + "bitflags 2.4.2", 3482 3465 "libc", 3483 - "redox_syscall 0.4.1", 3466 + "redox_syscall", 3484 3467 ] 3485 3468 3486 3469 [[package]] ··· 3499 3482 3500 3483 [[package]] 3501 3484 name = "libz-sys" 3502 - version = "1.1.12" 3485 + version = "1.1.14" 3503 3486 source = "registry+https://github.com/rust-lang/crates.io-index" 3504 - checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" 3487 + checksum = "295c17e837573c8c821dbaeb3cceb3d745ad082f7572191409e69cbc1b3fd050" 3505 3488 dependencies = [ 3506 3489 "cc", 3507 3490 "libc", ··· 3549 3532 3550 3533 [[package]] 3551 3534 name = "linux-raw-sys" 3552 - version = "0.4.11" 3535 + version = "0.4.13" 3553 3536 source = "registry+https://github.com/rust-lang/crates.io-index" 3554 - checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 3537 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 3555 3538 3556 3539 [[package]] 3557 3540 name = "local-encoding" ··· 3589 3572 source = "registry+https://github.com/rust-lang/crates.io-index" 3590 3573 checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" 3591 3574 dependencies = [ 3592 - "hashbrown 0.14.2", 3575 + "hashbrown 0.14.3", 3593 3576 ] 3594 3577 3595 3578 [[package]] ··· 3639 3622 dependencies = [ 3640 3623 "anyhow", 3641 3624 "crossbeam", 3625 + "factory", 3642 3626 "manifest", 3643 3627 "minibench", 3644 3628 "minibytes", ··· 3685 3669 3686 3670 [[package]] 3687 3671 name = "memchr" 3688 - version = "2.6.4" 3672 + version = "2.7.1" 3689 3673 source = "registry+https://github.com/rust-lang/crates.io-index" 3690 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 3674 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 3691 3675 3692 3676 [[package]] 3693 3677 name = "memmap2" ··· 3748 3732 name = "metrics" 3749 3733 version = "0.1.0" 3750 3734 dependencies = [ 3751 - "futures 0.3.29", 3735 + "futures 0.3.30", 3752 3736 "once_cell", 3753 3737 ] 3754 3738 ··· 3802 3786 version = "0.1.0" 3803 3787 3804 3788 [[package]] 3789 + name = "minibench_examples" 3790 + version = "0.1.0" 3791 + dependencies = [ 3792 + "crossbeam", 3793 + "futures 0.3.30", 3794 + "minibench", 3795 + "tokio", 3796 + ] 3797 + 3798 + [[package]] 3805 3799 name = "minibytes" 3806 3800 version = "0.1.0" 3807 3801 dependencies = [ ··· 3812 3806 ] 3813 3807 3814 3808 [[package]] 3815 - name = "minimal-lexical" 3816 - version = "0.2.1" 3817 - source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3819 - 3820 - [[package]] 3821 3809 name = "miniz_oxide" 3822 3810 version = "0.7.1" 3823 3811 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3828 3816 3829 3817 [[package]] 3830 3818 name = "mio" 3831 - version = "0.8.9" 3819 + version = "0.8.10" 3832 3820 source = "registry+https://github.com/rust-lang/crates.io-index" 3833 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 3821 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 3834 3822 dependencies = [ 3835 3823 "libc", 3836 3824 "log", ··· 3891 3879 version = "0.1.0" 3892 3880 dependencies = [ 3893 3881 "anyhow", 3894 - "bitflags 1.3.2", 3882 + "bitflags 2.4.2", 3895 3883 "dag", 3896 3884 "drawdag", 3897 - "futures 0.3.29", 3885 + "futures 0.3.30", 3898 3886 "indexedlog", 3899 3887 "rand 0.8.5", 3900 3888 "rand_chacha 0.3.1", ··· 3955 3943 source = "registry+https://github.com/rust-lang/crates.io-index" 3956 3944 checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 3957 3945 dependencies = [ 3958 - "bitflags 2.4.1", 3946 + "bitflags 2.4.2", 3959 3947 "cfg-if 1.0.0", 3960 3948 "libc", 3961 3949 ] ··· 4001 3989 ] 4002 3990 4003 3991 [[package]] 4004 - name = "nom" 4005 - version = "7.1.3" 4006 - source = "registry+https://github.com/rust-lang/crates.io-index" 4007 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 4008 - dependencies = [ 4009 - "memchr", 4010 - "minimal-lexical", 4011 - ] 4012 - 4013 - [[package]] 4014 3992 name = "nonblocking" 4015 3993 version = "0.1.0" 4016 3994 dependencies = [ 4017 - "futures 0.3.29", 3995 + "futures 0.3.30", 4018 3996 ] 4019 3997 4020 3998 [[package]] ··· 4074 4052 source = "registry+https://github.com/rust-lang/crates.io-index" 4075 4053 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 4076 4054 dependencies = [ 4077 - "hermit-abi 0.3.3", 4055 + "hermit-abi 0.3.4", 4078 4056 "libc", 4079 4057 ] 4080 4058 ··· 4089 4067 4090 4068 [[package]] 4091 4069 name = "object" 4092 - version = "0.32.1" 4070 + version = "0.32.2" 4093 4071 source = "registry+https://github.com/rust-lang/crates.io-index" 4094 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 4072 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 4095 4073 dependencies = [ 4096 4074 "memchr", 4097 4075 ] 4098 4076 4099 4077 [[package]] 4100 4078 name = "once_cell" 4101 - version = "1.18.0" 4079 + version = "1.19.0" 4102 4080 source = "registry+https://github.com/rust-lang/crates.io-index" 4103 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 4081 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 4104 4082 4105 4083 [[package]] 4106 4084 name = "opaque-debug" ··· 4121 4099 4122 4100 [[package]] 4123 4101 name = "openssl" 4124 - version = "0.10.59" 4102 + version = "0.10.62" 4125 4103 source = "registry+https://github.com/rust-lang/crates.io-index" 4126 - checksum = "7a257ad03cd8fb16ad4172fedf8094451e1af1c4b70097636ef2eac9a5f0cc33" 4104 + checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" 4127 4105 dependencies = [ 4128 - "bitflags 2.4.1", 4106 + "bitflags 2.4.2", 4129 4107 "cfg-if 1.0.0", 4130 4108 "foreign-types", 4131 4109 "libc", ··· 4142 4120 dependencies = [ 4143 4121 "proc-macro2", 4144 4122 "quote", 4145 - "syn 2.0.39", 4123 + "syn 2.0.48", 4146 4124 ] 4147 4125 4148 4126 [[package]] ··· 4153 4131 4154 4132 [[package]] 4155 4133 name = "openssl-sys" 4156 - version = "0.9.95" 4134 + version = "0.9.98" 4157 4135 source = "registry+https://github.com/rust-lang/crates.io-index" 4158 - checksum = "40a4130519a360279579c2053038317e40eff64d13fd3f004f9e1b72b8a6aaf9" 4136 + checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" 4159 4137 dependencies = [ 4160 4138 "cc", 4161 4139 "libc", ··· 4226 4204 dependencies = [ 4227 4205 "cfg-if 1.0.0", 4228 4206 "libc", 4229 - "redox_syscall 0.4.1", 4207 + "redox_syscall", 4230 4208 "smallvec", 4231 4209 "windows-targets 0.48.5", 4232 4210 ] ··· 4266 4244 version = "0.1.0" 4267 4245 dependencies = [ 4268 4246 "anyhow", 4269 - "bitflags 1.3.2", 4247 + "bitflags 2.4.2", 4270 4248 "fancy-regex", 4271 4249 "fs-err", 4272 4250 "glob", ··· 4283 4261 4284 4262 [[package]] 4285 4263 name = "pem" 4286 - version = "0.8.3" 4264 + version = "3.0.3" 4287 4265 source = "registry+https://github.com/rust-lang/crates.io-index" 4288 - checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb" 4266 + checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" 4289 4267 dependencies = [ 4290 - "base64 0.13.1", 4291 - "once_cell", 4292 - "regex", 4268 + "base64 0.21.7", 4269 + "serde", 4293 4270 ] 4294 4271 4295 4272 [[package]] 4296 4273 name = "percent-encoding" 4297 - version = "2.3.0" 4274 + version = "2.3.1" 4298 4275 source = "registry+https://github.com/rust-lang/crates.io-index" 4299 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 4276 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 4300 4277 4301 4278 [[package]] 4302 4279 name = "perthread" 4303 4280 version = "0.1.0" 4304 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 4281 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 4305 4282 4306 4283 [[package]] 4307 4284 name = "pest" 4308 - version = "2.7.5" 4285 + version = "2.7.6" 4309 4286 source = "registry+https://github.com/rust-lang/crates.io-index" 4310 - checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5" 4287 + checksum = "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06" 4311 4288 dependencies = [ 4312 4289 "memchr", 4313 4290 "thiserror", ··· 4316 4293 4317 4294 [[package]] 4318 4295 name = "pest_derive" 4319 - version = "2.7.5" 4296 + version = "2.7.6" 4320 4297 source = "registry+https://github.com/rust-lang/crates.io-index" 4321 - checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2" 4298 + checksum = "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde" 4322 4299 dependencies = [ 4323 4300 "pest", 4324 4301 "pest_generator", ··· 4326 4303 4327 4304 [[package]] 4328 4305 name = "pest_generator" 4329 - version = "2.7.5" 4306 + version = "2.7.6" 4330 4307 source = "registry+https://github.com/rust-lang/crates.io-index" 4331 - checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227" 4308 + checksum = "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275" 4332 4309 dependencies = [ 4333 4310 "pest", 4334 4311 "pest_meta", 4335 4312 "proc-macro2", 4336 4313 "quote", 4337 - "syn 2.0.39", 4314 + "syn 2.0.48", 4338 4315 ] 4339 4316 4340 4317 [[package]] 4341 4318 name = "pest_meta" 4342 - version = "2.7.5" 4319 + version = "2.7.6" 4343 4320 source = "registry+https://github.com/rust-lang/crates.io-index" 4344 - checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6" 4321 + checksum = "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d" 4345 4322 dependencies = [ 4346 4323 "once_cell", 4347 4324 "pest", ··· 4397 4374 "phf_shared 0.11.2", 4398 4375 "proc-macro2", 4399 4376 "quote", 4400 - "syn 2.0.39", 4377 + "syn 2.0.48", 4401 4378 ] 4402 4379 4403 4380 [[package]] ··· 4455 4432 dependencies = [ 4456 4433 "proc-macro2", 4457 4434 "quote", 4458 - "syn 2.0.39", 4435 + "syn 2.0.48", 4459 4436 ] 4460 4437 4461 4438 [[package]] ··· 4481 4458 4482 4459 [[package]] 4483 4460 name = "pkg-config" 4484 - version = "0.3.27" 4461 + version = "0.3.29" 4485 4462 source = "registry+https://github.com/rust-lang/crates.io-index" 4486 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 4463 + checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 4487 4464 4488 4465 [[package]] 4489 4466 name = "plist" ··· 4491 4468 source = "registry+https://github.com/rust-lang/crates.io-index" 4492 4469 checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 4493 4470 dependencies = [ 4494 - "base64 0.21.5", 4471 + "base64 0.21.7", 4495 4472 "indexmap 2.1.0", 4496 4473 "line-wrap", 4497 4474 "quick-xml", ··· 4571 4548 4572 4549 [[package]] 4573 4550 name = "proc-macro2" 4574 - version = "1.0.69" 4551 + version = "1.0.76" 4575 4552 source = "registry+https://github.com/rust-lang/crates.io-index" 4576 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 4553 + checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" 4577 4554 dependencies = [ 4578 4555 "unicode-ident", 4579 4556 ] ··· 4696 4673 ] 4697 4674 4698 4675 [[package]] 4676 + name = "pycbor" 4677 + version = "0.1.0" 4678 + dependencies = [ 4679 + "cpython", 4680 + "cpython_ext", 4681 + "serde_cbor", 4682 + ] 4683 + 4684 + [[package]] 4699 4685 name = "pycext" 4700 4686 version = "0.1.0" 4701 4687 dependencies = [ ··· 4709 4695 version = "0.1.0" 4710 4696 dependencies = [ 4711 4697 "anyhow", 4712 - "async-runtime", 4713 4698 "checkout", 4699 + "configmodel", 4714 4700 "cpython", 4715 4701 "cpython_ext", 4702 + "io", 4716 4703 "manifest-tree", 4704 + "parking_lot", 4717 4705 "pathmatcher", 4718 4706 "progress-model", 4719 - "pyconfigloader", 4720 4707 "pymanifest", 4721 4708 "pypathmatcher", 4722 4709 "pystatus", 4723 4710 "pytreestate", 4724 4711 "storemodel", 4712 + "termlogger", 4725 4713 "vfs", 4714 + "workingcopy", 4726 4715 ] 4727 4716 4728 4717 [[package]] ··· 4788 4777 "cpython", 4789 4778 "cpython_ext", 4790 4779 "dag", 4791 - "futures 0.3.29", 4780 + "futures 0.3.30", 4792 4781 "hgcommits", 4793 4782 "minibytes", 4794 4783 "parking_lot", ··· 4859 4848 "edenapi", 4860 4849 "edenapi_ext", 4861 4850 "edenapi_types", 4862 - "futures 0.3.29", 4851 + "futures 0.3.30", 4863 4852 "hgstore", 4864 4853 "minibytes", 4865 4854 "progress-model", ··· 4911 4900 "pydag", 4912 4901 "pyedenapi", 4913 4902 "pymetalog", 4903 + "types", 4914 4904 ] 4915 4905 4916 4906 [[package]] ··· 5107 5097 "anyhow", 5108 5098 "cpython", 5109 5099 "cpython_ext", 5100 + "io", 5110 5101 "pathmatcher", 5111 5102 "tracing", 5112 5103 "types", ··· 5197 5188 version = "0.1.0" 5198 5189 dependencies = [ 5199 5190 "anyhow", 5200 - "async-runtime", 5201 - "async-trait", 5202 5191 "configmodel", 5203 5192 "cpython", 5204 5193 "cpython_ext", 5205 - "futures 0.3.29", 5206 - "io", 5207 5194 "minibytes", 5208 5195 "parking_lot", 5209 5196 "pyconfigloader", ··· 5372 5359 "parking_lot", 5373 5360 "pathmatcher", 5374 5361 "pyconfigloader", 5362 + "pyedenclient", 5375 5363 "pypathmatcher", 5376 5364 "pystatus", 5377 5365 "pytreestate", 5366 + "repostate", 5378 5367 "sparse", 5368 + "termlogger", 5379 5369 "types", 5380 5370 "workingcopy", 5381 5371 ] ··· 5432 5422 [[package]] 5433 5423 name = "quickcheck_arbitrary_derive" 5434 5424 version = "0.1.0" 5435 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 5425 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 5436 5426 dependencies = [ 5437 5427 "proc-macro2", 5438 5428 "quickcheck", ··· 5453 5443 5454 5444 [[package]] 5455 5445 name = "quote" 5456 - version = "1.0.33" 5446 + version = "1.0.35" 5457 5447 source = "registry+https://github.com/rust-lang/crates.io-index" 5458 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 5448 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 5459 5449 dependencies = [ 5460 5450 "proc-macro2", 5461 5451 ] ··· 5559 5549 source = "registry+https://github.com/rust-lang/crates.io-index" 5560 5550 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 5561 5551 dependencies = [ 5562 - "getrandom 0.2.11", 5552 + "getrandom 0.2.12", 5563 5553 "serde", 5564 5554 ] 5565 5555 ··· 5583 5573 5584 5574 [[package]] 5585 5575 name = "rayon" 5586 - version = "1.8.0" 5576 + version = "1.8.1" 5587 5577 source = "registry+https://github.com/rust-lang/crates.io-index" 5588 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 5578 + checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 5589 5579 dependencies = [ 5590 5580 "either", 5591 5581 "rayon-core", ··· 5593 5583 5594 5584 [[package]] 5595 5585 name = "rayon-core" 5596 - version = "1.12.0" 5586 + version = "1.12.1" 5597 5587 source = "registry+https://github.com/rust-lang/crates.io-index" 5598 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 5588 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 5599 5589 dependencies = [ 5600 5590 "crossbeam-deque", 5601 - "crossbeam-utils 0.8.16", 5591 + "crossbeam-utils 0.8.19", 5602 5592 ] 5603 5593 5604 5594 [[package]] ··· 5612 5602 5613 5603 [[package]] 5614 5604 name = "redox_syscall" 5615 - version = "0.3.5" 5616 - source = "registry+https://github.com/rust-lang/crates.io-index" 5617 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 5618 - dependencies = [ 5619 - "bitflags 1.3.2", 5620 - ] 5621 - 5622 - [[package]] 5623 - name = "redox_syscall" 5624 5605 version = "0.4.1" 5625 5606 source = "registry+https://github.com/rust-lang/crates.io-index" 5626 5607 checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" ··· 5634 5615 source = "registry+https://github.com/rust-lang/crates.io-index" 5635 5616 checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 5636 5617 dependencies = [ 5637 - "getrandom 0.2.11", 5618 + "getrandom 0.2.12", 5638 5619 "libredox", 5639 5620 "thiserror", 5640 5621 ] 5641 5622 5642 5623 [[package]] 5643 5624 name = "ref-cast" 5644 - version = "1.0.20" 5625 + version = "1.0.22" 5645 5626 source = "registry+https://github.com/rust-lang/crates.io-index" 5646 - checksum = "acde58d073e9c79da00f2b5b84eed919c8326832648a5b109b3fce1bb1175280" 5627 + checksum = "c4846d4c50d1721b1a3bef8af76924eef20d5e723647333798c1b519b3a9473f" 5647 5628 dependencies = [ 5648 5629 "ref-cast-impl", 5649 5630 ] 5650 5631 5651 5632 [[package]] 5652 5633 name = "ref-cast-impl" 5653 - version = "1.0.20" 5634 + version = "1.0.22" 5654 5635 source = "registry+https://github.com/rust-lang/crates.io-index" 5655 - checksum = "7f7473c2cfcf90008193dd0e3e16599455cb601a9fce322b5bb55de799664925" 5636 + checksum = "5fddb4f8d99b0a2ebafc65a87a69a7b9875e4b1ae1f00db265d300ef7f28bccc" 5656 5637 dependencies = [ 5657 5638 "proc-macro2", 5658 5639 "quote", 5659 - "syn 2.0.39", 5640 + "syn 2.0.48", 5660 5641 ] 5661 5642 5662 5643 [[package]] ··· 5740 5721 name = "renderdag" 5741 5722 version = "0.1.0" 5742 5723 dependencies = [ 5743 - "bitflags 1.3.2", 5724 + "bitflags 2.4.2", 5744 5725 "dag", 5745 5726 "itertools", 5746 5727 "nonblocking", ··· 5779 5760 "treestate", 5780 5761 "types", 5781 5762 "util", 5782 - "vfs", 5783 5763 "workingcopy", 5784 5764 ] 5785 5765 ··· 5807 5787 ] 5808 5788 5809 5789 [[package]] 5790 + name = "repostate" 5791 + version = "0.1.0" 5792 + dependencies = [ 5793 + "anyhow", 5794 + "byteorder", 5795 + "fs-err", 5796 + "identity", 5797 + "repolock", 5798 + "serde", 5799 + "tempfile", 5800 + "types", 5801 + "util", 5802 + ] 5803 + 5804 + [[package]] 5810 5805 name = "reqwest" 5811 - version = "0.11.22" 5806 + version = "0.11.23" 5812 5807 source = "registry+https://github.com/rust-lang/crates.io-index" 5813 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 5808 + checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" 5814 5809 dependencies = [ 5815 - "base64 0.21.5", 5810 + "base64 0.21.7", 5816 5811 "bytes", 5817 5812 "cookie", 5818 5813 "cookie_store", ··· 5856 5851 ] 5857 5852 5858 5853 [[package]] 5859 - name = "reqwest-eventsource" 5860 - version = "0.5.0" 5861 - source = "registry+https://github.com/rust-lang/crates.io-index" 5862 - checksum = "f529a5ff327743addc322af460761dff5b50e0c826b9e6ac44c3195c50bb2026" 5863 - dependencies = [ 5864 - "eventsource-stream", 5865 - "futures-core", 5866 - "futures-timer", 5867 - "mime", 5868 - "nom 7.1.3", 5869 - "pin-project-lite", 5870 - "reqwest", 5871 - "thiserror", 5872 - ] 5873 - 5874 - [[package]] 5875 5854 name = "revisionstore" 5876 5855 version = "0.1.0" 5877 5856 dependencies = [ ··· 5889 5868 "fbinit", 5890 5869 "fn-error-context", 5891 5870 "fs-err", 5892 - "futures 0.3.29", 5871 + "futures 0.3.30", 5893 5872 "hex", 5894 5873 "hg-http", 5895 5874 "hg-metrics", ··· 5907 5886 "minibytes", 5908 5887 "mockito", 5909 5888 "mpatch", 5889 + "once_cell", 5910 5890 "parking_lot", 5911 5891 "progress-model", 5912 5892 "quickcheck", ··· 5985 5965 5986 5966 [[package]] 5987 5967 name = "ring" 5988 - version = "0.17.5" 5968 + version = "0.17.7" 5989 5969 source = "registry+https://github.com/rust-lang/crates.io-index" 5990 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 5970 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 5991 5971 dependencies = [ 5992 5972 "cc", 5993 - "getrandom 0.2.11", 5973 + "getrandom 0.2.12", 5994 5974 "libc", 5995 5975 "spin", 5996 5976 "untrusted", ··· 6049 6029 6050 6030 [[package]] 6051 6031 name = "rustix" 6052 - version = "0.38.24" 6032 + version = "0.38.30" 6053 6033 source = "registry+https://github.com/rust-lang/crates.io-index" 6054 - checksum = "9ad981d6c340a49cdc40a1028d9c6084ec7e9fa33fcb839cab656a267071e234" 6034 + checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 6055 6035 dependencies = [ 6056 - "bitflags 2.4.1", 6036 + "bitflags 2.4.2", 6057 6037 "errno", 6058 6038 "libc", 6059 - "linux-raw-sys 0.4.11", 6060 - "windows-sys 0.48.0", 6039 + "linux-raw-sys 0.4.13", 6040 + "windows-sys 0.52.0", 6061 6041 ] 6062 6042 6063 6043 [[package]] 6064 6044 name = "rustls" 6065 - version = "0.21.8" 6045 + version = "0.21.10" 6066 6046 source = "registry+https://github.com/rust-lang/crates.io-index" 6067 - checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" 6047 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 6068 6048 dependencies = [ 6069 6049 "log", 6070 6050 "ring", ··· 6090 6070 source = "registry+https://github.com/rust-lang/crates.io-index" 6091 6071 checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 6092 6072 dependencies = [ 6093 - "base64 0.21.5", 6073 + "base64 0.21.7", 6094 6074 ] 6095 6075 6096 6076 [[package]] ··· 6111 6091 6112 6092 [[package]] 6113 6093 name = "ryu" 6114 - version = "1.0.15" 6094 + version = "1.0.16" 6115 6095 source = "registry+https://github.com/rust-lang/crates.io-index" 6116 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 6096 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 6117 6097 6118 6098 [[package]] 6119 6099 name = "safemem" ··· 6143 6123 6144 6124 [[package]] 6145 6125 name = "schannel" 6146 - version = "0.1.22" 6126 + version = "0.1.23" 6147 6127 source = "registry+https://github.com/rust-lang/crates.io-index" 6148 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 6128 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 6149 6129 dependencies = [ 6150 - "windows-sys 0.48.0", 6130 + "windows-sys 0.52.0", 6151 6131 ] 6152 6132 6153 6133 [[package]] ··· 6157 6137 "anyhow", 6158 6138 "clap 2.34.0", 6159 6139 "commitcloudsubscriber", 6160 - "env_logger 0.10.1", 6140 + "env_logger 0.10.2", 6161 6141 "libc", 6162 6142 "log", 6163 6143 "serde", ··· 6231 6211 6232 6212 [[package]] 6233 6213 name = "serde" 6234 - version = "1.0.192" 6214 + version = "1.0.195" 6235 6215 source = "registry+https://github.com/rust-lang/crates.io-index" 6236 - checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" 6216 + checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" 6237 6217 dependencies = [ 6238 6218 "serde_derive", 6239 6219 ] ··· 6245 6225 [[package]] 6246 6226 name = "serde_bser" 6247 6227 version = "0.3.1" 6248 - source = "git+https://github.com/facebook/watchman.git?branch=main#4bec06637edeb66496e53d678095fb427040b462" 6228 + source = "git+https://github.com/facebook/watchman.git?branch=main#d52738785ded4c290fb08adcb244e4c34ef1ffdd" 6249 6229 dependencies = [ 6250 6230 "anyhow", 6251 6231 "byteorder", ··· 6257 6237 6258 6238 [[package]] 6259 6239 name = "serde_bytes" 6260 - version = "0.11.12" 6240 + version = "0.11.14" 6261 6241 source = "registry+https://github.com/rust-lang/crates.io-index" 6262 - checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" 6242 + checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" 6263 6243 dependencies = [ 6264 6244 "serde", 6265 6245 ] ··· 6276 6256 6277 6257 [[package]] 6278 6258 name = "serde_derive" 6279 - version = "1.0.192" 6259 + version = "1.0.195" 6280 6260 source = "registry+https://github.com/rust-lang/crates.io-index" 6281 - checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" 6261 + checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" 6282 6262 dependencies = [ 6283 6263 "proc-macro2", 6284 6264 "quote", 6285 - "syn 2.0.39", 6265 + "syn 2.0.48", 6286 6266 ] 6287 6267 6288 6268 [[package]] ··· 6296 6276 6297 6277 [[package]] 6298 6278 name = "serde_json" 6299 - version = "1.0.108" 6279 + version = "1.0.111" 6300 6280 source = "registry+https://github.com/rust-lang/crates.io-index" 6301 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 6281 + checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" 6302 6282 dependencies = [ 6303 - "itoa 1.0.9", 6283 + "itoa 1.0.10", 6304 6284 "ryu", 6305 6285 "serde", 6306 6286 ] 6307 6287 6308 6288 [[package]] 6309 6289 name = "serde_spanned" 6310 - version = "0.6.4" 6290 + version = "0.6.5" 6311 6291 source = "registry+https://github.com/rust-lang/crates.io-index" 6312 - checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 6292 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 6313 6293 dependencies = [ 6314 6294 "serde", 6315 6295 ] ··· 6333 6313 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 6334 6314 dependencies = [ 6335 6315 "form_urlencoded", 6336 - "itoa 1.0.9", 6316 + "itoa 1.0.10", 6337 6317 "ryu", 6338 6318 "serde", 6339 6319 ] ··· 6445 6425 6446 6426 [[package]] 6447 6427 name = "similar" 6448 - version = "2.3.0" 6428 + version = "2.4.0" 6449 6429 source = "registry+https://github.com/rust-lang/crates.io-index" 6450 - checksum = "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" 6430 + checksum = "32fea41aca09ee824cc9724996433064c89f7777e60762749a4170a14abbfa21" 6451 6431 6452 6432 [[package]] 6453 6433 name = "simple_asn1" ··· 6498 6478 6499 6479 [[package]] 6500 6480 name = "smallvec" 6501 - version = "1.11.2" 6481 + version = "1.13.1" 6502 6482 source = "registry+https://github.com/rust-lang/crates.io-index" 6503 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 6483 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 6504 6484 6505 6485 [[package]] 6506 6486 name = "socket2" ··· 6525 6505 [[package]] 6526 6506 name = "sorted_vector_map" 6527 6507 version = "0.1.0" 6528 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 6508 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 6529 6509 dependencies = [ 6530 6510 "itertools", 6531 6511 "quickcheck", ··· 6536 6516 version = "0.1.0" 6537 6517 dependencies = [ 6538 6518 "anyhow", 6539 - "futures 0.3.29", 6519 + "futures 0.3.30", 6540 6520 "globset", 6541 6521 "once_cell", 6542 6522 "pathmatcher", 6543 6523 "regex", 6524 + "syncify", 6544 6525 "thiserror", 6545 6526 "tokio", 6546 6527 "tracing", ··· 6582 6563 version = "0.1.0" 6583 6564 dependencies = [ 6584 6565 "hgrc-parser", 6585 - "indexmap 1.9.3", 6566 + "indexmap 2.1.0", 6586 6567 ] 6587 6568 6588 6569 [[package]] 6589 6570 name = "stats" 6590 6571 version = "0.1.0" 6591 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 6572 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 6592 6573 dependencies = [ 6593 6574 "fbinit", 6594 - "futures 0.3.29", 6575 + "futures 0.3.30", 6595 6576 "once_cell", 6596 6577 "perthread", 6597 6578 "stats_traits", 6598 - "tokio_shim", 6579 + "tokio", 6580 + "tokio-stream", 6599 6581 ] 6600 6582 6601 6583 [[package]] 6602 6584 name = "stats_traits" 6603 6585 version = "0.1.0" 6604 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 6586 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 6605 6587 dependencies = [ 6606 6588 "auto_impl", 6607 6589 "dashmap", ··· 6620 6602 version = "0.1.0" 6621 6603 dependencies = [ 6622 6604 "anyhow", 6623 - "async-runtime", 6624 6605 "async-trait", 6625 6606 "configmodel", 6626 6607 "edenapi_trait", 6627 - "futures 0.3.29", 6608 + "edenapi_types", 6609 + "factory", 6610 + "futures 0.3.30", 6628 6611 "minibytes", 6612 + "once_cell", 6629 6613 "serde", 6630 6614 "types", 6631 6615 ] ··· 6637 6621 "bit-set", 6638 6622 "dirs 2.0.2", 6639 6623 "enum_dispatch", 6640 - "indexmap 1.9.3", 6624 + "indexmap 2.1.0", 6641 6625 "lazy_static", 6642 6626 "lru", 6643 6627 "memmap2", ··· 6661 6645 dependencies = [ 6662 6646 "anyhow", 6663 6647 "async-trait", 6664 - "futures 0.3.29", 6648 + "futures 0.3.30", 6665 6649 "pin-project 0.4.30", 6666 6650 "tokio", 6667 6651 ] ··· 6729 6713 6730 6714 [[package]] 6731 6715 name = "sval" 6732 - version = "2.10.2" 6716 + version = "2.11.0" 6733 6717 source = "registry+https://github.com/rust-lang/crates.io-index" 6734 - checksum = "b15df12a8db7c216a04b4b438f90d50d5335cd38f161b56389c9f5c9d96d0873" 6718 + checksum = "1604e9ab506f4805bc62d2868c6d20f23fa6ced4c7cfe695a1d20589ba5c63d0" 6735 6719 6736 6720 [[package]] 6737 6721 name = "sval_buffer" 6738 - version = "2.10.2" 6722 + version = "2.11.0" 6739 6723 source = "registry+https://github.com/rust-lang/crates.io-index" 6740 - checksum = "57e80556bc8acea0446e574ce542ad6114a76a0237f28a842bc01ca3ea98f479" 6724 + checksum = "2831b6451148d344f612016d4277348f7721b78a0869a145fd34ef8b06b3fa2e" 6741 6725 dependencies = [ 6742 6726 "sval", 6743 6727 "sval_ref", ··· 6745 6729 6746 6730 [[package]] 6747 6731 name = "sval_dynamic" 6748 - version = "2.10.2" 6732 + version = "2.11.0" 6749 6733 source = "registry+https://github.com/rust-lang/crates.io-index" 6750 - checksum = "9d93d2259edb1d7b4316179f0a98c62e3ffc726f47ab200e07cfe382771f57b8" 6734 + checksum = "238ac5832a23099a413ffd22e66f7e6248b9af4581b64c758ca591074be059fc" 6751 6735 dependencies = [ 6752 6736 "sval", 6753 6737 ] 6754 6738 6755 6739 [[package]] 6756 6740 name = "sval_fmt" 6757 - version = "2.10.2" 6741 + version = "2.11.0" 6758 6742 source = "registry+https://github.com/rust-lang/crates.io-index" 6759 - checksum = "532f7f882226f7a5a4656f5151224aaebf8217e0d539cb1595b831bace921343" 6743 + checksum = "c8474862431bac5ac7aee8a12597798e944df33f489c340e17e886767bda0c4e" 6760 6744 dependencies = [ 6761 - "itoa 1.0.9", 6745 + "itoa 1.0.10", 6762 6746 "ryu", 6763 6747 "sval", 6764 6748 ] 6765 6749 6766 6750 [[package]] 6767 6751 name = "sval_json" 6768 - version = "2.10.2" 6752 + version = "2.11.0" 6769 6753 source = "registry+https://github.com/rust-lang/crates.io-index" 6770 - checksum = "76e03bd8aa0ae6ee018f7ae95c9714577687a4415bd1a5f19b26e34695f7e072" 6754 + checksum = "d8f348030cc3d2a11eb534145600601f080cf16bf9ec0783efecd2883f14c21e" 6771 6755 dependencies = [ 6772 - "itoa 1.0.9", 6756 + "itoa 1.0.10", 6773 6757 "ryu", 6774 6758 "sval", 6775 6759 ] 6776 6760 6777 6761 [[package]] 6762 + name = "sval_nested" 6763 + version = "2.11.0" 6764 + source = "registry+https://github.com/rust-lang/crates.io-index" 6765 + checksum = "6659c3f6be1e5e99dc7c518877f48a8a39088ace2504b046db789bd78ce5969d" 6766 + dependencies = [ 6767 + "sval", 6768 + "sval_buffer", 6769 + "sval_ref", 6770 + ] 6771 + 6772 + [[package]] 6778 6773 name = "sval_ref" 6779 - version = "2.10.2" 6774 + version = "2.11.0" 6780 6775 source = "registry+https://github.com/rust-lang/crates.io-index" 6781 - checksum = "75ed054f2fb8c2a0ab5d36c1ec57b412919700099fc5e32ad8e7a38b23e1a9e1" 6776 + checksum = "829ad319bd82d0da77be6f3d547623686c453502f8eebdeb466cfa987972bd28" 6782 6777 dependencies = [ 6783 6778 "sval", 6784 6779 ] 6785 6780 6786 6781 [[package]] 6787 6782 name = "sval_serde" 6788 - version = "2.10.2" 6783 + version = "2.11.0" 6789 6784 source = "registry+https://github.com/rust-lang/crates.io-index" 6790 - checksum = "7ff191c4ff05b67e3844c161021427646cde5d6624597958be158357d9200586" 6785 + checksum = "1a9da6c3efaedf8b8c0861ec5343e8e8c51d838f326478623328bd8728b79bca" 6791 6786 dependencies = [ 6792 6787 "serde", 6793 6788 "sval", 6794 - "sval_buffer", 6795 - "sval_fmt", 6789 + "sval_nested", 6796 6790 ] 6797 6791 6798 6792 [[package]] ··· 6808 6802 6809 6803 [[package]] 6810 6804 name = "syn" 6811 - version = "2.0.39" 6805 + version = "2.0.48" 6812 6806 source = "registry+https://github.com/rust-lang/crates.io-index" 6813 - checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 6807 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 6814 6808 dependencies = [ 6815 6809 "proc-macro2", 6816 6810 "quote", 6817 6811 "unicode-ident", 6812 + ] 6813 + 6814 + [[package]] 6815 + name = "syncify" 6816 + version = "0.1.0" 6817 + dependencies = [ 6818 + "tree-pattern-match", 6818 6819 ] 6819 6820 6820 6821 [[package]] ··· 6866 6867 6867 6868 [[package]] 6868 6869 name = "tempfile" 6869 - version = "3.8.1" 6870 + version = "3.9.0" 6870 6871 source = "registry+https://github.com/rust-lang/crates.io-index" 6871 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 6872 + checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 6872 6873 dependencies = [ 6873 6874 "cfg-if 1.0.0", 6874 6875 "fastrand 2.0.1", 6875 - "redox_syscall 0.4.1", 6876 - "rustix 0.38.24", 6877 - "windows-sys 0.48.0", 6876 + "redox_syscall", 6877 + "rustix 0.38.30", 6878 + "windows-sys 0.52.0", 6878 6879 ] 6879 6880 6880 6881 [[package]] 6881 6882 name = "termcolor" 6882 - version = "1.4.0" 6883 + version = "1.4.1" 6883 6884 source = "registry+https://github.com/rust-lang/crates.io-index" 6884 - checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 6885 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 6885 6886 dependencies = [ 6886 6887 "winapi-util", 6887 6888 ] ··· 6902 6903 source = "registry+https://github.com/rust-lang/crates.io-index" 6903 6904 checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 6904 6905 dependencies = [ 6905 - "rustix 0.38.24", 6906 + "rustix 0.38.30", 6906 6907 "windows-sys 0.48.0", 6907 6908 ] 6908 6909 ··· 6914 6915 dependencies = [ 6915 6916 "dirs 4.0.0", 6916 6917 "fnv", 6917 - "nom 5.1.3", 6918 + "nom", 6918 6919 "phf 0.11.2", 6919 6920 "phf_codegen", 6920 6921 ] ··· 7022 7023 7023 7024 [[package]] 7024 7025 name = "thiserror" 7025 - version = "1.0.50" 7026 + version = "1.0.56" 7026 7027 source = "registry+https://github.com/rust-lang/crates.io-index" 7027 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 7028 + checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 7028 7029 dependencies = [ 7029 7030 "thiserror-impl", 7030 7031 ] 7031 7032 7032 7033 [[package]] 7033 7034 name = "thiserror-impl" 7034 - version = "1.0.50" 7035 + version = "1.0.56" 7035 7036 source = "registry+https://github.com/rust-lang/crates.io-index" 7036 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 7037 + checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 7037 7038 dependencies = [ 7038 7039 "proc-macro2", 7039 7040 "quote", 7040 - "syn 2.0.39", 7041 + "syn 2.0.48", 7041 7042 ] 7042 7043 7043 7044 [[package]] ··· 7061 7062 "const-cstr", 7062 7063 "fb303_core", 7063 7064 "fbthrift", 7064 - "futures 0.3.29", 7065 + "futures 0.3.30", 7065 7066 "ref-cast", 7066 7067 "sorted_vector_map", 7067 7068 "thiserror", ··· 7080 7081 "config_thrift", 7081 7082 "fb303_core", 7082 7083 "fbthrift", 7083 - "futures 0.3.29", 7084 + "futures 0.3.30", 7084 7085 "thiserror", 7085 7086 "thrift", 7086 7087 ] ··· 7088 7089 [[package]] 7089 7090 name = "thrift_compiler" 7090 7091 version = "0.1.0" 7091 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 7092 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 7092 7093 dependencies = [ 7093 7094 "anyhow", 7094 - "clap 4.4.8", 7095 + "clap 4.4.18", 7095 7096 "serde", 7096 7097 "which", 7097 7098 ] ··· 7105 7106 "config_thrift", 7106 7107 "fb303_core", 7107 7108 "fbthrift", 7108 - "futures 0.3.29", 7109 + "futures 0.3.30", 7109 7110 "once_cell", 7110 7111 "ref-cast", 7111 7112 "serde", ··· 7117 7118 7118 7119 [[package]] 7119 7120 name = "time" 7120 - version = "0.3.30" 7121 + version = "0.3.31" 7121 7122 source = "registry+https://github.com/rust-lang/crates.io-index" 7122 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 7123 + checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 7123 7124 dependencies = [ 7124 7125 "deranged", 7125 - "itoa 1.0.9", 7126 + "itoa 1.0.10", 7126 7127 "libc", 7127 7128 "num_threads", 7128 7129 "powerfmt", ··· 7143 7144 7144 7145 [[package]] 7145 7146 name = "time-macros" 7146 - version = "0.2.15" 7147 + version = "0.2.16" 7147 7148 source = "registry+https://github.com/rust-lang/crates.io-index" 7148 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 7149 + checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 7149 7150 dependencies = [ 7150 7151 "time-core", 7151 7152 ] ··· 7177 7178 7178 7179 [[package]] 7179 7180 name = "tokio" 7180 - version = "1.34.0" 7181 + version = "1.35.1" 7181 7182 source = "registry+https://github.com/rust-lang/crates.io-index" 7182 - checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 7183 + checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 7183 7184 dependencies = [ 7184 7185 "backtrace", 7185 7186 "bytes", ··· 7203 7204 dependencies = [ 7204 7205 "proc-macro2", 7205 7206 "quote", 7206 - "syn 2.0.39", 7207 + "syn 2.0.48", 7207 7208 ] 7208 7209 7209 7210 [[package]] ··· 7258 7259 [[package]] 7259 7260 name = "tokio-uds-compat" 7260 7261 version = "0.1.0" 7261 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 7262 + source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#76d2159747b056901daa362c3404b6d7b781eec5" 7262 7263 dependencies = [ 7263 7264 "async-io", 7264 - "futures 0.3.29", 7265 + "futures 0.3.30", 7265 7266 "tokio", 7266 7267 "tracing", 7267 7268 "uds_windows", ··· 7294 7295 "futures-io", 7295 7296 "futures-sink", 7296 7297 "futures-util", 7297 - "hashbrown 0.14.2", 7298 + "hashbrown 0.14.3", 7298 7299 "pin-project-lite", 7299 7300 "slab", 7300 7301 "tokio", 7301 7302 "tracing", 7302 - ] 7303 - 7304 - [[package]] 7305 - name = "tokio_shim" 7306 - version = "0.1.0" 7307 - source = "git+https://github.com/facebookexperimental/rust-shed.git?branch=main#d17bd97085a53e3da27b6349a6c03e9210b15e05" 7308 - dependencies = [ 7309 - "futures 0.3.29", 7310 - "pin-project 0.4.30", 7311 - "thiserror", 7312 - "tokio", 7313 - "tokio-stream", 7314 7303 ] 7315 7304 7316 7305 [[package]] ··· 7401 7390 dependencies = [ 7402 7391 "proc-macro2", 7403 7392 "quote", 7404 - "syn 2.0.39", 7393 + "syn 2.0.48", 7405 7394 ] 7406 7395 7407 7396 [[package]] 7408 7397 name = "tracing-collector" 7409 7398 version = "0.1.0" 7410 7399 dependencies = [ 7411 - "indexmap 1.9.3", 7400 + "indexmap 2.1.0", 7412 7401 "libc", 7413 7402 "parking_lot", 7414 7403 "serde", ··· 7434 7423 source = "registry+https://github.com/rust-lang/crates.io-index" 7435 7424 checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 7436 7425 dependencies = [ 7437 - "futures 0.3.29", 7426 + "futures 0.3.30", 7438 7427 "futures-task", 7439 7428 "pin-project 1.1.3", 7440 7429 "tracing", ··· 7498 7487 source = "registry+https://github.com/rust-lang/crates.io-index" 7499 7488 checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 7500 7489 dependencies = [ 7490 + "chrono", 7501 7491 "matchers", 7502 7492 "nu-ansi-term", 7503 7493 "once_cell", ··· 7537 7527 "quote", 7538 7528 "syn 1.0.109", 7539 7529 ] 7530 + 7531 + [[package]] 7532 + name = "tree-pattern-match" 7533 + version = "0.1.0" 7540 7534 7541 7535 [[package]] 7542 7536 name = "treestate" ··· 7544 7538 dependencies = [ 7545 7539 "anyhow", 7546 7540 "atomicfile", 7547 - "bitflags 1.3.2", 7541 + "bitflags 2.4.2", 7548 7542 "byteorder", 7549 7543 "fs-err", 7550 7544 "fs2", ··· 7568 7562 7569 7563 [[package]] 7570 7564 name = "try-lock" 7571 - version = "0.2.4" 7565 + version = "0.2.5" 7572 7566 source = "registry+https://github.com/rust-lang/crates.io-index" 7573 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 7567 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 7574 7568 7575 7569 [[package]] 7576 7570 name = "twox-hash" ··· 7628 7622 7629 7623 [[package]] 7630 7624 name = "uds_windows" 7631 - version = "1.0.2" 7625 + version = "1.1.0" 7632 7626 source = "registry+https://github.com/rust-lang/crates.io-index" 7633 - checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 7627 + checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 7634 7628 dependencies = [ 7629 + "memoffset 0.9.0", 7635 7630 "tempfile", 7636 7631 "winapi 0.3.9", 7637 7632 ] ··· 7658 7653 7659 7654 [[package]] 7660 7655 name = "unicode-bidi" 7661 - version = "0.3.13" 7656 + version = "0.3.15" 7662 7657 source = "registry+https://github.com/rust-lang/crates.io-index" 7663 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 7658 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 7664 7659 7665 7660 [[package]] 7666 7661 name = "unicode-ident" ··· 7700 7695 version = "0.1.0" 7701 7696 dependencies = [ 7702 7697 "configmodel", 7703 - "indexmap 1.9.3", 7698 + "indexmap 2.1.0", 7704 7699 "staticconfig", 7705 7700 ] 7706 7701 ··· 7712 7707 7713 7708 [[package]] 7714 7709 name = "url" 7715 - version = "2.4.1" 7710 + version = "2.5.0" 7716 7711 source = "registry+https://github.com/rust-lang/crates.io-index" 7717 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 7712 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 7718 7713 dependencies = [ 7719 7714 "form_urlencoded", 7720 - "idna 0.4.0", 7715 + "idna 0.5.0", 7721 7716 "percent-encoding", 7722 7717 ] 7723 7718 ··· 7734 7729 "anyhow", 7735 7730 "atomicfile", 7736 7731 "dirs 2.0.2", 7732 + "fn-error-context", 7737 7733 "fs2", 7738 7734 "hostname 0.3.1", 7739 7735 "lazystr", ··· 7750 7746 7751 7747 [[package]] 7752 7748 name = "uuid" 7753 - version = "1.5.0" 7749 + version = "1.7.0" 7754 7750 source = "registry+https://github.com/rust-lang/crates.io-index" 7755 - checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 7751 + checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 7756 7752 dependencies = [ 7757 7753 "atomic", 7758 - "getrandom 0.2.11", 7754 + "getrandom 0.2.12", 7759 7755 "serde", 7760 7756 "sha1_smol", 7761 7757 ] ··· 7768 7764 7769 7765 [[package]] 7770 7766 name = "value-bag" 7771 - version = "1.4.2" 7767 + version = "1.6.0" 7772 7768 source = "registry+https://github.com/rust-lang/crates.io-index" 7773 - checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe" 7769 + checksum = "7cdbaf5e132e593e9fc1de6a15bbec912395b11fb9719e061cf64f804524c503" 7774 7770 dependencies = [ 7775 7771 "value-bag-serde1", 7776 7772 "value-bag-sval2", ··· 7778 7774 7779 7775 [[package]] 7780 7776 name = "value-bag-serde1" 7781 - version = "1.4.2" 7777 + version = "1.6.0" 7782 7778 source = "registry+https://github.com/rust-lang/crates.io-index" 7783 - checksum = "07ba39dc791ecb35baad371a3fc04c6eab688c04937d2e0ac6c22b612c0357bf" 7779 + checksum = "92cad98b1b18d06b6f38b3cd04347a9d7a3a0111441a061f71377fb6740437e4" 7784 7780 dependencies = [ 7785 7781 "erased-serde", 7786 7782 "serde", ··· 7789 7785 7790 7786 [[package]] 7791 7787 name = "value-bag-sval2" 7792 - version = "1.4.2" 7788 + version = "1.6.0" 7793 7789 source = "registry+https://github.com/rust-lang/crates.io-index" 7794 - checksum = "c3e06c10810a57bbf45778d023d432a50a1daa7d185991ae06bcfb6c654d0945" 7790 + checksum = "3dc7271d6b3bf58dd2e610a601c0e159f271ffdb7fbb21517c40b52138d64f8e" 7795 7791 dependencies = [ 7796 7792 "sval", 7797 7793 "sval_buffer", ··· 7905 7901 7906 7902 [[package]] 7907 7903 name = "wasm-bindgen" 7908 - version = "0.2.88" 7904 + version = "0.2.90" 7909 7905 source = "registry+https://github.com/rust-lang/crates.io-index" 7910 - checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 7906 + checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 7911 7907 dependencies = [ 7912 7908 "cfg-if 1.0.0", 7913 7909 "wasm-bindgen-macro", ··· 7915 7911 7916 7912 [[package]] 7917 7913 name = "wasm-bindgen-backend" 7918 - version = "0.2.88" 7914 + version = "0.2.90" 7919 7915 source = "registry+https://github.com/rust-lang/crates.io-index" 7920 - checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 7916 + checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 7921 7917 dependencies = [ 7922 7918 "bumpalo", 7923 7919 "log", 7924 7920 "once_cell", 7925 7921 "proc-macro2", 7926 7922 "quote", 7927 - "syn 2.0.39", 7923 + "syn 2.0.48", 7928 7924 "wasm-bindgen-shared", 7929 7925 ] 7930 7926 7931 7927 [[package]] 7932 7928 name = "wasm-bindgen-futures" 7933 - version = "0.4.38" 7929 + version = "0.4.40" 7934 7930 source = "registry+https://github.com/rust-lang/crates.io-index" 7935 - checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" 7931 + checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 7936 7932 dependencies = [ 7937 7933 "cfg-if 1.0.0", 7938 7934 "js-sys", ··· 7942 7938 7943 7939 [[package]] 7944 7940 name = "wasm-bindgen-macro" 7945 - version = "0.2.88" 7941 + version = "0.2.90" 7946 7942 source = "registry+https://github.com/rust-lang/crates.io-index" 7947 - checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 7943 + checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 7948 7944 dependencies = [ 7949 7945 "quote", 7950 7946 "wasm-bindgen-macro-support", ··· 7952 7948 7953 7949 [[package]] 7954 7950 name = "wasm-bindgen-macro-support" 7955 - version = "0.2.88" 7951 + version = "0.2.90" 7956 7952 source = "registry+https://github.com/rust-lang/crates.io-index" 7957 - checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 7953 + checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 7958 7954 dependencies = [ 7959 7955 "proc-macro2", 7960 7956 "quote", 7961 - "syn 2.0.39", 7957 + "syn 2.0.48", 7962 7958 "wasm-bindgen-backend", 7963 7959 "wasm-bindgen-shared", 7964 7960 ] 7965 7961 7966 7962 [[package]] 7967 7963 name = "wasm-bindgen-shared" 7968 - version = "0.2.88" 7964 + version = "0.2.90" 7969 7965 source = "registry+https://github.com/rust-lang/crates.io-index" 7970 - checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 7966 + checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 7971 7967 7972 7968 [[package]] 7973 7969 name = "wasm-streams" ··· 7985 7981 [[package]] 7986 7982 name = "watchman_client" 7987 7983 version = "0.8.0" 7988 - source = "git+https://github.com/facebook/watchman.git?branch=main#4bec06637edeb66496e53d678095fb427040b462" 7984 + source = "git+https://github.com/facebook/watchman.git?branch=main#d52738785ded4c290fb08adcb244e4c34ef1ffdd" 7989 7985 dependencies = [ 7990 7986 "anyhow", 7991 7987 "bytes", 7992 - "futures 0.3.29", 7988 + "futures 0.3.30", 7993 7989 "maplit", 7994 7990 "serde", 7995 7991 "serde_bser", ··· 8001 7997 8002 7998 [[package]] 8003 7999 name = "web-sys" 8004 - version = "0.3.65" 8000 + version = "0.3.67" 8005 8001 source = "registry+https://github.com/rust-lang/crates.io-index" 8006 - checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 8002 + checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 8007 8003 dependencies = [ 8008 8004 "js-sys", 8009 8005 "wasm-bindgen", ··· 8011 8007 8012 8008 [[package]] 8013 8009 name = "webpki-roots" 8014 - version = "0.25.2" 8010 + version = "0.25.3" 8015 8011 source = "registry+https://github.com/rust-lang/crates.io-index" 8016 - checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 8012 + checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 8017 8013 8018 8014 [[package]] 8019 8015 name = "webview-app" ··· 8093 8089 "either", 8094 8090 "home", 8095 8091 "once_cell", 8096 - "rustix 0.38.24", 8092 + "rustix 0.38.30", 8097 8093 ] 8098 8094 8099 8095 [[package]] ··· 8147 8143 8148 8144 [[package]] 8149 8145 name = "windows-core" 8150 - version = "0.51.1" 8151 - source = "registry+https://github.com/rust-lang/crates.io-index" 8152 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 8153 - dependencies = [ 8154 - "windows-targets 0.48.5", 8155 - ] 8156 - 8157 - [[package]] 8158 - name = "windows-sys" 8159 - version = "0.45.0" 8146 + version = "0.52.0" 8160 8147 source = "registry+https://github.com/rust-lang/crates.io-index" 8161 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 8148 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 8162 8149 dependencies = [ 8163 - "windows-targets 0.42.2", 8150 + "windows-targets 0.52.0", 8164 8151 ] 8165 8152 8166 8153 [[package]] ··· 8173 8160 ] 8174 8161 8175 8162 [[package]] 8176 - name = "windows-targets" 8177 - version = "0.42.2" 8163 + name = "windows-sys" 8164 + version = "0.52.0" 8178 8165 source = "registry+https://github.com/rust-lang/crates.io-index" 8179 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 8166 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 8180 8167 dependencies = [ 8181 - "windows_aarch64_gnullvm 0.42.2", 8182 - "windows_aarch64_msvc 0.42.2", 8183 - "windows_i686_gnu 0.42.2", 8184 - "windows_i686_msvc 0.42.2", 8185 - "windows_x86_64_gnu 0.42.2", 8186 - "windows_x86_64_gnullvm 0.42.2", 8187 - "windows_x86_64_msvc 0.42.2", 8168 + "windows-targets 0.52.0", 8188 8169 ] 8189 8170 8190 8171 [[package]] ··· 8203 8184 ] 8204 8185 8205 8186 [[package]] 8206 - name = "windows_aarch64_gnullvm" 8207 - version = "0.42.2" 8187 + name = "windows-targets" 8188 + version = "0.52.0" 8208 8189 source = "registry+https://github.com/rust-lang/crates.io-index" 8209 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 8190 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 8191 + dependencies = [ 8192 + "windows_aarch64_gnullvm 0.52.0", 8193 + "windows_aarch64_msvc 0.52.0", 8194 + "windows_i686_gnu 0.52.0", 8195 + "windows_i686_msvc 0.52.0", 8196 + "windows_x86_64_gnu 0.52.0", 8197 + "windows_x86_64_gnullvm 0.52.0", 8198 + "windows_x86_64_msvc 0.52.0", 8199 + ] 8210 8200 8211 8201 [[package]] 8212 8202 name = "windows_aarch64_gnullvm" ··· 8215 8205 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 8216 8206 8217 8207 [[package]] 8218 - name = "windows_aarch64_msvc" 8219 - version = "0.42.2" 8208 + name = "windows_aarch64_gnullvm" 8209 + version = "0.52.0" 8220 8210 source = "registry+https://github.com/rust-lang/crates.io-index" 8221 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 8211 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 8222 8212 8223 8213 [[package]] 8224 8214 name = "windows_aarch64_msvc" ··· 8227 8217 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 8228 8218 8229 8219 [[package]] 8230 - name = "windows_i686_gnu" 8231 - version = "0.42.2" 8220 + name = "windows_aarch64_msvc" 8221 + version = "0.52.0" 8232 8222 source = "registry+https://github.com/rust-lang/crates.io-index" 8233 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 8223 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 8234 8224 8235 8225 [[package]] 8236 8226 name = "windows_i686_gnu" ··· 8239 8229 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 8240 8230 8241 8231 [[package]] 8242 - name = "windows_i686_msvc" 8243 - version = "0.42.2" 8232 + name = "windows_i686_gnu" 8233 + version = "0.52.0" 8244 8234 source = "registry+https://github.com/rust-lang/crates.io-index" 8245 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 8235 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 8246 8236 8247 8237 [[package]] 8248 8238 name = "windows_i686_msvc" ··· 8251 8241 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 8252 8242 8253 8243 [[package]] 8254 - name = "windows_x86_64_gnu" 8255 - version = "0.42.2" 8244 + name = "windows_i686_msvc" 8245 + version = "0.52.0" 8256 8246 source = "registry+https://github.com/rust-lang/crates.io-index" 8257 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 8247 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 8258 8248 8259 8249 [[package]] 8260 8250 name = "windows_x86_64_gnu" ··· 8263 8253 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 8264 8254 8265 8255 [[package]] 8266 - name = "windows_x86_64_gnullvm" 8267 - version = "0.42.2" 8256 + name = "windows_x86_64_gnu" 8257 + version = "0.52.0" 8268 8258 source = "registry+https://github.com/rust-lang/crates.io-index" 8269 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 8259 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 8270 8260 8271 8261 [[package]] 8272 8262 name = "windows_x86_64_gnullvm" ··· 8275 8265 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 8276 8266 8277 8267 [[package]] 8278 - name = "windows_x86_64_msvc" 8279 - version = "0.42.2" 8268 + name = "windows_x86_64_gnullvm" 8269 + version = "0.52.0" 8280 8270 source = "registry+https://github.com/rust-lang/crates.io-index" 8281 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 8271 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 8282 8272 8283 8273 [[package]] 8284 8274 name = "windows_x86_64_msvc" ··· 8287 8277 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 8288 8278 8289 8279 [[package]] 8280 + name = "windows_x86_64_msvc" 8281 + version = "0.52.0" 8282 + source = "registry+https://github.com/rust-lang/crates.io-index" 8283 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 8284 + 8285 + [[package]] 8290 8286 name = "winnow" 8291 - version = "0.5.19" 8287 + version = "0.5.34" 8292 8288 source = "registry+https://github.com/rust-lang/crates.io-index" 8293 - checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 8289 + checksum = "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" 8294 8290 dependencies = [ 8295 8291 "memchr", 8296 8292 ] ··· 8312 8308 "anyhow", 8313 8309 "async-runtime", 8314 8310 "async-trait", 8315 - "bitflags 1.3.2", 8311 + "bitflags 2.4.2", 8316 8312 "configloader", 8317 8313 "configmodel", 8318 8314 "crossbeam", 8319 8315 "edenfs-client", 8320 8316 "fs-err", 8321 - "futures 0.3.29", 8322 8317 "hgtime", 8323 8318 "identity", 8324 - "io", 8325 8319 "manifest", 8326 8320 "manifest-tree", 8327 8321 "parking_lot", 8328 8322 "pathmatcher", 8329 8323 "progress-model", 8330 8324 "repolock", 8325 + "repostate", 8331 8326 "serde", 8332 8327 "serde_json", 8333 8328 "sparse", 8334 8329 "status", 8335 8330 "storemodel", 8336 8331 "tempfile", 8332 + "termlogger", 8337 8333 "thiserror", 8338 8334 "tokio", 8339 8335 "tracing", ··· 8376 8372 8377 8373 [[package]] 8378 8374 name = "zerocopy" 8379 - version = "0.7.26" 8375 + version = "0.7.32" 8380 8376 source = "registry+https://github.com/rust-lang/crates.io-index" 8381 - checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0" 8377 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 8382 8378 dependencies = [ 8383 8379 "zerocopy-derive", 8384 8380 ] 8385 8381 8386 8382 [[package]] 8387 8383 name = "zerocopy-derive" 8388 - version = "0.7.26" 8384 + version = "0.7.32" 8389 8385 source = "registry+https://github.com/rust-lang/crates.io-index" 8390 - checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f" 8386 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 8391 8387 dependencies = [ 8392 8388 "proc-macro2", 8393 8389 "quote", 8394 - "syn 2.0.39", 8390 + "syn 2.0.48", 8395 8391 ] 8396 8392 8397 8393 [[package]]
+6 -6
pkgs/applications/version-management/sapling/default.nix
··· 48 48 owner = "facebook"; 49 49 repo = "sapling"; 50 50 rev = version; 51 - hash = "sha256-+LxvPJkyq/6gtcBQepZ5pVGXP1/h30zhCHVfUGPUzFE="; 51 + hash = "sha256-uzev4x9jY6foop35z4dvUMIfjRtRqhNFDVFpagOosAc"; 52 52 }; 53 53 54 54 addonsSrc = "${src}/addons"; ··· 56 56 # Fetches the Yarn modules in Nix to to be used as an offline cache 57 57 yarnOfflineCache = fetchYarnDeps { 58 58 yarnLock = "${addonsSrc}/yarn.lock"; 59 - sha256 = "sha256-3JFrVk78EiNVLLXkCFbuRnXwYHNfVv1pBPBS1yCHtPU="; 59 + sha256 = "sha256-3JFrVk78EiNVLLXkCFbuRnXwYHNfVv1pBPBS1yCHtPU"; 60 60 }; 61 61 62 62 # Builds the NodeJS server that runs with `sl web` ··· 113 113 lockFile = ./Cargo.lock; 114 114 outputHashes = { 115 115 "abomonation-0.7.3+smallvec1" = "sha256-AxEXR6GC8gHjycIPOfoViP7KceM29p2ZISIt4iwJzvM="; 116 - "cloned-0.1.0" = "sha256-dtAyQq6fgxvr1RXPQHGiCQesvitsKpVkis4c50uolLc="; 117 - "fb303_core-0.0.0" = "sha256-j+4zPXxewRxJsPQaAfvcpSkGNKw3d+inVL45Ibo7Q4E="; 118 - "fbthrift-0.0.1+unstable" = "sha256-fsIL07PFu645eJFttIJU4sRSjIVuA4BMJ6kYAA0BpwY="; 119 - "serde_bser-0.3.1" = "sha256-h50EJL6twJwK90sBXu40Oap4SfiT4kQAK1+bA8XKdHw="; 116 + "cloned-0.1.0" = "sha256-mzAqjM8qovZAd4ZF0GDuD0Ns/UztAO1pAJhukuKc5a0="; 117 + "fb303_core-0.0.0" = "sha256-x8I0Lty+sRclpkNMqTMc29J46z/vMsVwOUS3EX7Shes="; 118 + "fbthrift-0.0.1+unstable" = "sha256-yTS1wkh8tETZ4K43V0G+TbkN5jgSlXT0endDPBHa1Ps="; 119 + "serde_bser-0.3.1" = "sha256-vvMCa6mlcr+xazxZVl2bcF8/r+ufzZmiQ79KofZGWrA="; 120 120 }; 121 121 }; 122 122 postPatch = ''
+2 -2
pkgs/applications/version-management/sapling/deps.json
··· 1 1 { 2 2 "links": [], 3 - "version": "0.2.20231113-145254+995db0d6", 4 - "versionHash": "214505116687308775" 3 + "version": "0.2.20240116-133042+8acecb66", 4 + "versionHash": "11094621090461381576" 5 5 }
+11 -6
pkgs/applications/video/flirc/default.nix
··· 1 1 { lib 2 - , mkDerivation 2 + , stdenv 3 3 , fetchurl 4 4 , autoPatchelfHook 5 + , wrapQtAppsHook 5 6 , hidapi 6 7 , readline 7 8 , qtsvg 8 9 , qtxmlpatterns 9 10 }: 10 11 11 - mkDerivation rec { 12 + stdenv.mkDerivation { 12 13 pname = "flirc"; 13 - version = "3.24.3"; 14 + version = "3.27.10"; 14 15 15 16 src = fetchurl { 16 - url = "https://web.archive.org/web/20211021211803/http://apt.flirc.tv/arch/x86_64/flirc.latest.x86_64.tar.gz"; 17 - sha256 = "0p4pp7j70lbw6m25lmjg6ibc67r6jcy7qs3kki9f86ji1jvrxpga"; 17 + url = "https://web.archive.org/web/20240110170238/http://apt.flirc.tv/arch/x86_64/flirc.latest.x86_64.tar.gz"; 18 + hash = "sha256-iTr4vzFQ/+dsbsYD6sc8aTHctTkLKf5HnHBnO7cX5qc="; 18 19 }; 19 20 20 - nativeBuildInputs = [ autoPatchelfHook ]; 21 + nativeBuildInputs = [ 22 + autoPatchelfHook 23 + wrapQtAppsHook 24 + ]; 25 + 21 26 buildInputs = [ 22 27 hidapi 23 28 readline
+2 -2
pkgs/applications/video/streamlink/default.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "streamlink"; 9 - version = "6.5.0"; 9 + version = "6.5.1"; 10 10 format = "pyproject"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-j01hWTvM4Q+NXoTKlWqsT6Y5wKNJ5983mDQ3Oog5Zu0="; 14 + hash = "sha256-IH+0zpnDW/6xuPfHa5bPy0B2rWiBxh6upVPC7BPZfFc="; 15 15 }; 16 16 17 17 nativeCheckInputs = with python3Packages; [
+41
pkgs/by-name/ca/candy-icons/package.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , gtk3 5 + }: 6 + 7 + stdenvNoCC.mkDerivation { 8 + pname = "candy-icons"; 9 + version = "unstable-2023-12-31"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "EliverLara"; 13 + repo = "candy-icons"; 14 + rev = "e4464d7b4d8e1821025447b2064b6a8f5c4c8c89"; 15 + hash = "sha256-XdYjxWf8R4b1GK2iFQnoEOWykc19ZT37ki83WeESQBM="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + gtk3 20 + ]; 21 + 22 + dontDropIconThemeCache = true; 23 + 24 + installPhase = '' 25 + runHook preInstall 26 + 27 + mkdir -p $out/share/icons/candy-icons 28 + cp -r . $out/share/icons/candy-icons 29 + gtk-update-icon-cache $out/share/icons/candy-icons 30 + 31 + runHook postInstall 32 + ''; 33 + 34 + meta = with lib; { 35 + homepage = "https://github.com/EliverLara/candy-icons"; 36 + description = "An icon theme colored with sweet gradients"; 37 + license = licenses.gpl3Plus; 38 + platforms = platforms.linux; 39 + maintainers = with maintainers; [ clr-cera ]; 40 + }; 41 + }
+3 -3
pkgs/by-name/ce/centrifugo/package.nix
··· 14 14 in 15 15 buildGoModule rec { 16 16 pname = "centrifugo"; 17 - version = "5.2.0"; 17 + version = "5.2.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "centrifugal"; 21 21 repo = "centrifugo"; 22 22 rev = "v${version}"; 23 - hash = "sha256-lD7hUCXHH1nUN58rbn/p8BnVahEwF/jKrAtjwuXB4PM="; 23 + hash = "sha256-6N7/YTL18plTbpUr7rn7wzpKNmRqz4hqGTTZ02DpWcs="; 24 24 }; 25 25 26 - vendorHash = "sha256-s92P4PoYN2/L7pwGT0d/0E/KUNR1GT9DUhtHjAncNf4="; 26 + vendorHash = "sha256-4cBHX7Vhfpd5Z0rZmY0Cl0vgLK2WczKcFhHheBA68aA="; 27 27 28 28 ldflags = [ 29 29 "-s"
+3 -3
pkgs/by-name/co/cosmic-icons/package.nix
··· 8 8 }: 9 9 stdenvNoCC.mkDerivation rec { 10 10 pname = "cosmic-icons"; 11 - version = "unstable-2023-08-30"; 11 + version = "unstable-2023-11-28"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pop-os"; 15 15 repo = pname; 16 - rev = "14d8e2048087be1ad444f9b3ebb75885509f72c6"; 17 - sha256 = "sha256-WbdgHmTn403x95x9wEYL0T9ksbN+YLzEB2yE0UrF9T0="; 16 + rev = "1e328dacc117c21000a000a3170a801f467f3c2b"; 17 + sha256 = "sha256-QmCHkqSPWfZhofh4ieJhl4yjt0R4J15+xElbszHS/4M="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ just ];
+2 -2
pkgs/by-name/ek/eksctl/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "eksctl"; 9 - version = "0.167.0"; 9 + version = "0.168.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "weaveworks"; 13 13 repo = pname; 14 14 rev = version; 15 - hash = "sha256-8CxXfjYN9i2AxuKeYmmYN0TQROGkurfmzbqU+aOMbTY="; 15 + hash = "sha256-npnsBWhs9GJXBFvEPt+8QVdHIUj/fQ6GpYpbXyVQG3U="; 16 16 }; 17 17 18 18 vendorHash = "sha256-cuLzn0OZ5VC+RWGsJ8DCdJN8wm0DrsjH55K/cnyuqB8=";
+3 -3
pkgs/by-name/ne/netclient/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "netclient"; 11 - version = "0.21.2"; 11 + version = "0.22.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "gravitl"; 15 15 repo = "netclient"; 16 16 rev = "v${version}"; 17 - hash = "sha256-yUyC6QTNhTNN/npGXiwS7M6cGKjh4H9vR8/z2/Sckz4="; 17 + hash = "sha256-7raWk4Y/ZrSaGKPLrrnD49aDALkZ+Nxycd+px8Eks10="; 18 18 }; 19 19 20 - vendorHash = "sha256-cnzdqSd3KOITOAH++zxKTqvUzjFxszf/rwkCF6vDpMc="; 20 + vendorHash = "sha256-lRXZ9iSWQEKWmeQV1ei/G4+HvqhW9U8yUv1Qb/d2jvY="; 21 21 22 22 buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa 23 23 ++ lib.optional stdenv.isLinux libX11;
+40
pkgs/by-name/pa/paralus-cli/package.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildGoModule 4 + , paralus-cli 5 + , testers 6 + }: 7 + 8 + buildGoModule rec { 9 + pname = "paralus-cli"; 10 + version = "0.1.4"; 11 + 12 + src = fetchFromGitHub { 13 + repo = "cli"; 14 + owner = "paralus"; 15 + rev = "v${version}"; 16 + hash = "sha256-2lTT53VTvwcxYSn9koLKMIc7pmAdrOmeuBvAHjMkqu0="; 17 + }; 18 + 19 + vendorHash = "sha256-M4ur9V2HP/bxG4LzM4xoGdzd4l54pc8pjWiT5GQ3X04="; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + "-X main.version=${version}" 25 + "-X main.buildNum=${version}" 26 + ]; 27 + 28 + meta = with lib; { 29 + description = "Command Line Interface tool for Paralus"; 30 + longDescription = '' 31 + Paralus is a free, open source tool that enables controlled, audited access to Kubernetes infrastructure. 32 + It comes with just-in-time service account creation and user-level credential management that integrates 33 + with your RBAC and SSO. Ships as a GUI, API, and CLI. 34 + ''; 35 + homepage = "https://www.paralus.io/"; 36 + license = licenses.asl20; 37 + maintainers = with maintainers; [ kashw2 ]; 38 + mainProgram = "paralus"; 39 + }; 40 + }
+34
pkgs/by-name/po/polylux2pdfpc/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , nix-update-script 5 + }: 6 + 7 + let 8 + dirname = "pdfpc-extractor"; 9 + in 10 + rustPlatform.buildRustPackage rec { 11 + pname = "polylux2pdfpc"; 12 + version = "0.3.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "andreasKroepelin"; 16 + repo = "polylux"; 17 + rev = "v${version}"; 18 + sparseCheckout = [ dirname ]; 19 + hash = "sha256-GefX7XsUfOMCp2THstSizRGpKAoq7yquVukWQjGuFgc="; 20 + }; 21 + sourceRoot = "${src.name}/${dirname}"; 22 + 23 + cargoHash = "sha256-vmCaQxPkzz1ZVmtX7L3VeQb3kWhVqyPoQ1NrTSiJN9Y="; 24 + 25 + passthru.updateScript = nix-update-script { }; 26 + 27 + meta = with lib; { 28 + description = "A tool to make pdfpc interpret slides created by polylux correctly"; 29 + homepage = "https://github.com/andreasKroepelin/polylux/tree/main/pdfpc-extractor"; 30 + license = licenses.mit; 31 + mainProgram = "polylux2pdfpc"; 32 + maintainers = [ maintainers.diogotcorreia ]; 33 + }; 34 + }
+3 -3
pkgs/by-name/py/pyprland/package.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "pyprland"; 5 - version = "1.6.11"; 5 + version = "1.7.0"; 6 6 format = "pyproject"; 7 7 8 8 disabled = python3Packages.pythonOlder "3.10"; ··· 10 10 src = fetchFromGitHub { 11 11 owner = "hyprland-community"; 12 12 repo = "pyprland"; 13 - rev = version; 14 - hash = "sha256-intrvN6sPaokcY9If2GZvDaFdDFcHg4hO7LXXu0pLXU="; 13 + rev = "refs/tags/${version}"; 14 + hash = "sha256-xegMT8+rUMJ8mJDpMT4aLNFy4Atd1Qoe+40OxiociiE="; 15 15 }; 16 16 17 17 nativeBuildInputs = with python3Packages; [ poetry-core ];
+33
pkgs/by-name/ty/typodermic-free-fonts/package.nix
··· 1 + { lib, stdenvNoCC, fetchzip }: 2 + 3 + stdenvNoCC.mkDerivation { 4 + pname = "typodermic-free-fonts"; 5 + version = "2023a"; 6 + 7 + src = fetchzip { 8 + url = 9 + "https://typodermicfonts.com/wp-content/uploads/2023/01/typodermic-free-fonts-2023a.zip"; 10 + hash = "sha256-+1TPZkeiMMV0Qmk7ERgJjVVNFar9bMISbAd23H8fwFo="; 11 + curlOptsList = [ "--user-agent" "Mozilla/5.0" ]; # unbreak their wordpress 12 + stripRoot = false; 13 + }; 14 + 15 + dontUnpack = true; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + mkdir -p $out/share/fonts 20 + cp -a "$src/Typodermic Fonts" "$out/share/fonts/opentype" 21 + runHook postInstall 22 + ''; 23 + 24 + meta = { 25 + homepage = "https://typodermicfonts.com/"; 26 + description = "Typodermic fonts"; 27 + maintainers = with lib.maintainers; [ ehmry ]; 28 + license = lib.licenses.unfree // { 29 + fullName = "Font Software for Desktop End User License Agreement"; 30 + url = "https://typodermicfonts.com/end-user-license-agreement/"; 31 + }; # Font is fine for use in printing and display but cannot be embbeded. 32 + }; 33 + }
+30
pkgs/by-name/ty/typodermic-public-domain/package.nix
··· 1 + { lib, stdenvNoCC, fetchzip }: 2 + 3 + stdenvNoCC.mkDerivation { 4 + pname = "typodermic-public-domain"; 5 + version = "2022-11"; 6 + 7 + src = fetchzip { 8 + url = 9 + "https://typodermicfonts.com/wp-content/uploads/2022/11/typodermic-public-domain-2022-11.zip"; 10 + hash = "sha256-2hqpehQ4zxSvsw2dtom/fkMAayJKNvOdYs+c+rrvJKw="; 11 + curlOptsList = [ "--user-agent" "Mozilla/5.0" ]; # unbreak their wordpress 12 + stripRoot = false; 13 + }; 14 + 15 + dontUnpack = true; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + mkdir -p $out/share/fonts 20 + cp -a "$src/OpenType Fonts" "$out/share/fonts/opentype" 21 + runHook postInstall 22 + ''; 23 + 24 + meta = { 25 + homepage = "https://typodermicfonts.com/"; 26 + description = "Vintage Typodermic fonts"; 27 + maintainers = with lib.maintainers; [ ehmry ]; 28 + license = lib.licenses.cc0; 29 + }; 30 + }
+961 -848
pkgs/by-name/wi/windmill/Cargo.lock
··· 56 56 source = "registry+https://github.com/rust-lang/crates.io-index" 57 57 checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" 58 58 dependencies = [ 59 - "getrandom 0.2.11", 59 + "getrandom 0.2.12", 60 60 "once_cell", 61 61 "version_check", 62 62 ] 63 63 64 64 [[package]] 65 65 name = "ahash" 66 - version = "0.8.6" 66 + version = "0.8.7" 67 67 source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 68 + checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" 69 69 dependencies = [ 70 70 "cfg-if", 71 - "getrandom 0.2.11", 71 + "getrandom 0.2.12", 72 72 "once_cell", 73 73 "version_check", 74 74 "zerocopy", ··· 121 121 122 122 [[package]] 123 123 name = "anstream" 124 - version = "0.6.4" 124 + version = "0.6.9" 125 125 source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" 126 + checksum = "3fde6067df7359f2d6335ec1a50c1f8f825801687d10da0cc4c6b08e3f6afd15" 127 127 dependencies = [ 128 128 "anstyle", 129 129 "anstyle-parse", ··· 141 141 142 142 [[package]] 143 143 name = "anstyle-parse" 144 - version = "0.2.2" 144 + version = "0.2.3" 145 145 source = "registry+https://github.com/rust-lang/crates.io-index" 146 - checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" 146 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 147 147 dependencies = [ 148 148 "utf8parse", 149 149 ] 150 150 151 151 [[package]] 152 152 name = "anstyle-query" 153 - version = "1.0.0" 153 + version = "1.0.2" 154 154 source = "registry+https://github.com/rust-lang/crates.io-index" 155 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 155 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 156 156 dependencies = [ 157 - "windows-sys 0.48.0", 157 + "windows-sys 0.52.0", 158 158 ] 159 159 160 160 [[package]] 161 161 name = "anstyle-wincon" 162 - version = "3.0.1" 162 + version = "3.0.2" 163 163 source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 164 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 165 165 dependencies = [ 166 166 "anstyle", 167 - "windows-sys 0.48.0", 167 + "windows-sys 0.52.0", 168 168 ] 169 169 170 170 [[package]] 171 171 name = "anyhow" 172 - version = "1.0.75" 172 + version = "1.0.79" 173 173 source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 174 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 175 175 176 176 [[package]] 177 177 name = "archiver-rs" ··· 245 245 "proc-macro2", 246 246 "quote", 247 247 "swc_macros_common", 248 - "syn 2.0.39", 248 + "syn 2.0.48", 249 249 ] 250 250 251 251 [[package]] ··· 266 266 checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 267 267 dependencies = [ 268 268 "concurrent-queue", 269 - "event-listener 4.0.0", 269 + "event-listener 4.0.3", 270 270 "event-listener-strategy", 271 271 "futures-core", 272 272 "pin-project-lite", ··· 291 291 292 292 [[package]] 293 293 name = "async-compression" 294 - version = "0.4.5" 294 + version = "0.4.6" 295 295 source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 296 + checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" 297 297 dependencies = [ 298 298 "brotli", 299 299 "flate2", ··· 309 309 source = "registry+https://github.com/rust-lang/crates.io-index" 310 310 checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 311 311 dependencies = [ 312 - "async-lock 3.1.2", 312 + "async-lock 3.3.0", 313 313 "async-task", 314 314 "concurrent-queue", 315 315 "fastrand 2.0.1", 316 - "futures-lite 2.0.1", 316 + "futures-lite 2.2.0", 317 317 "slab", 318 318 ] 319 319 320 320 [[package]] 321 321 name = "async-global-executor" 322 - version = "2.4.0" 322 + version = "2.4.1" 323 323 source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "9b4353121d5644cdf2beb5726ab752e79a8db1ebb52031770ec47db31d245526" 324 + checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 325 325 dependencies = [ 326 326 "async-channel 2.1.1", 327 327 "async-executor", 328 - "async-io 2.2.1", 329 - "async-lock 3.1.2", 328 + "async-io 2.3.0", 329 + "async-lock 3.3.0", 330 330 "blocking", 331 - "futures-lite 2.0.1", 331 + "futures-lite 2.2.0", 332 332 "once_cell", 333 333 ] 334 334 ··· 354 354 355 355 [[package]] 356 356 name = "async-io" 357 - version = "2.2.1" 357 + version = "2.3.0" 358 358 source = "registry+https://github.com/rust-lang/crates.io-index" 359 - checksum = "d6d3b15875ba253d1110c740755e246537483f152fa334f91abd7fe84c88b3ff" 359 + checksum = "fb41eb19024a91746eba0773aa5e16036045bbf45733766661099e182ea6a744" 360 360 dependencies = [ 361 - "async-lock 3.1.2", 361 + "async-lock 3.3.0", 362 362 "cfg-if", 363 363 "concurrent-queue", 364 364 "futures-io", 365 - "futures-lite 2.0.1", 365 + "futures-lite 2.2.0", 366 366 "parking", 367 - "polling 3.3.1", 368 - "rustix 0.38.26", 367 + "polling 3.3.2", 368 + "rustix 0.38.30", 369 369 "slab", 370 370 "tracing", 371 371 "windows-sys 0.52.0", ··· 382 382 383 383 [[package]] 384 384 name = "async-lock" 385 - version = "3.1.2" 385 + version = "3.3.0" 386 386 source = "registry+https://github.com/rust-lang/crates.io-index" 387 - checksum = "dea8b3453dd7cc96711834b75400d671b73e3656975fa68d9f277163b7f7e316" 387 + checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 388 388 dependencies = [ 389 - "event-listener 4.0.0", 389 + "event-listener 4.0.3", 390 390 "event-listener-strategy", 391 391 "pin-project-lite", 392 392 ] ··· 397 397 source = "registry+https://github.com/rust-lang/crates.io-index" 398 398 checksum = "beec3f8fb8f710b7be84ccd1716e17f38f2868168355cab5f2f168ae988e767e" 399 399 dependencies = [ 400 - "base64 0.21.5", 400 + "base64 0.21.7", 401 401 "bytes", 402 402 "http", 403 403 "rand 0.8.5", ··· 418 418 dependencies = [ 419 419 "proc-macro2", 420 420 "quote", 421 - "syn 2.0.39", 421 + "syn 2.0.48", 422 422 ] 423 423 424 424 [[package]] ··· 466 466 dependencies = [ 467 467 "proc-macro2", 468 468 "quote", 469 - "syn 2.0.39", 469 + "syn 2.0.48", 470 470 ] 471 471 472 472 [[package]] ··· 496 496 497 497 [[package]] 498 498 name = "async-task" 499 - version = "4.5.0" 499 + version = "4.7.0" 500 500 source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1" 501 + checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" 502 502 503 503 [[package]] 504 504 name = "async-trait" 505 - version = "0.1.74" 505 + version = "0.1.77" 506 506 source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 507 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 508 508 dependencies = [ 509 509 "proc-macro2", 510 510 "quote", 511 - "syn 2.0.39", 511 + "syn 2.0.48", 512 512 ] 513 513 514 514 [[package]] ··· 541 541 542 542 [[package]] 543 543 name = "atoi" 544 - version = "1.0.0" 545 - source = "registry+https://github.com/rust-lang/crates.io-index" 546 - checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e" 547 - dependencies = [ 548 - "num-traits", 549 - ] 550 - 551 - [[package]] 552 - name = "atoi" 553 544 version = "2.0.0" 554 545 source = "registry+https://github.com/rust-lang/crates.io-index" 555 546 checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" ··· 559 550 560 551 [[package]] 561 552 name = "atoi_simd" 562 - version = "0.15.5" 553 + version = "0.15.6" 563 554 source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "ccfc14f5c3e34de57539a7ba9c18ecde3d9bbde48d232ea1da3e468adb307fd0" 555 + checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9" 565 556 566 557 [[package]] 567 558 name = "atomic-waker" ··· 587 578 588 579 [[package]] 589 580 name = "aws-config" 590 - version = "1.0.1" 581 + version = "1.1.2" 591 582 source = "registry+https://github.com/rust-lang/crates.io-index" 592 - checksum = "80c950a809d39bc9480207cb1cfc879ace88ea7e3a4392a8e9999e45d6e5692e" 583 + checksum = "7e64b72d4bdbb41a73d27709c65a25b6e4bfc8321bf70fa3a8b19ce7d4eb81b0" 593 584 dependencies = [ 594 585 "aws-credential-types", 595 586 "aws-http", ··· 609 600 "hex", 610 601 "http", 611 602 "hyper", 612 - "ring 0.17.6", 603 + "ring 0.17.7", 613 604 "time", 614 605 "tokio", 615 606 "tracing", ··· 618 609 619 610 [[package]] 620 611 name = "aws-credential-types" 621 - version = "1.0.1" 612 + version = "1.1.2" 622 613 source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "8c1317e1a3514b103cf7d5828bbab3b4d30f56bd22d684f8568bc51b6cfbbb1c" 614 + checksum = "4a7cb3510b95492bd9014b60e2e3bee3e48bc516e220316f8e6b60df18b47331" 624 615 dependencies = [ 625 616 "aws-smithy-async", 626 617 "aws-smithy-runtime-api", ··· 630 621 631 622 [[package]] 632 623 name = "aws-http" 633 - version = "0.60.0" 624 + version = "0.60.2" 634 625 source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "361c4310fdce94328cc2d1ca0c8a48c13f43009c61d3367585685a50ca8c66b6" 626 + checksum = "a95d41abe4e941399fdb4bc2f54713eac3c839d98151875948bb24e66ab658f2" 636 627 dependencies = [ 637 628 "aws-smithy-runtime-api", 638 629 "aws-smithy-types", ··· 646 637 647 638 [[package]] 648 639 name = "aws-runtime" 649 - version = "1.0.1" 640 + version = "1.1.2" 650 641 source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "1ed7ef604a15fd0d4d9e43701295161ea6b504b63c44990ead352afea2bc15e9" 642 + checksum = "233cca219c6705d525ace011d6f9bc51aaf32fce5b4c41661d2d7ff22d9b4d49" 652 643 dependencies = [ 653 644 "aws-credential-types", 654 645 "aws-http", ··· 668 659 669 660 [[package]] 670 661 name = "aws-sdk-s3" 671 - version = "0.39.1" 662 + version = "1.12.0" 672 663 source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "29223b1074621f1d011bac836d995c002936663052b1e7ad02927551b17d6625" 664 + checksum = "634fbe5b6591ee2e281cd2ba8641e9bd752dbf5bf338924d6ad4bd5a3304fe31" 674 665 dependencies = [ 675 666 "aws-credential-types", 676 667 "aws-http", ··· 691 682 "http-body", 692 683 "once_cell", 693 684 "percent-encoding", 694 - "regex", 685 + "regex-lite", 695 686 "tracing", 696 687 "url", 697 688 ] 698 689 699 690 [[package]] 700 691 name = "aws-sdk-sso" 701 - version = "1.3.0" 692 + version = "1.10.0" 702 693 source = "registry+https://github.com/rust-lang/crates.io-index" 703 - checksum = "0619ab97a5ca8982e7de073cdc66f93e5f6a1b05afc09e696bec1cb3607cd4df" 694 + checksum = "ee41005e0f3a19ae749c7953d9e1f1ef8d2183f76f64966e346fa41c1ba0ed44" 704 695 dependencies = [ 705 696 "aws-credential-types", 706 697 "aws-http", ··· 714 705 "aws-types", 715 706 "bytes", 716 707 "http", 717 - "regex", 708 + "once_cell", 709 + "regex-lite", 718 710 "tracing", 719 711 ] 720 712 721 713 [[package]] 722 714 name = "aws-sdk-ssooidc" 723 - version = "1.3.0" 715 + version = "1.10.0" 724 716 source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "f04b9f5474cc0f35d829510b2ec8c21e352309b46bf9633c5a81fb9321e9b1c7" 717 + checksum = "fa08168f8a27505e7b90f922c32a489feb1f2133878981a15138bebc849ac09c" 726 718 dependencies = [ 727 719 "aws-credential-types", 728 720 "aws-http", ··· 736 728 "aws-types", 737 729 "bytes", 738 730 "http", 739 - "regex", 731 + "once_cell", 732 + "regex-lite", 740 733 "tracing", 741 734 ] 742 735 743 736 [[package]] 744 737 name = "aws-sdk-sts" 745 - version = "1.3.1" 738 + version = "1.10.0" 746 739 source = "registry+https://github.com/rust-lang/crates.io-index" 747 - checksum = "798c8d82203af9e15a8b406574e0b36da91dd6db533028b74676489a1bc8bc7d" 740 + checksum = "29102eff04d50ef70f11a48823db33e33c6cc5f027bfb6ff4864efbd5f1f66f3" 748 741 dependencies = [ 749 742 "aws-credential-types", 750 743 "aws-http", ··· 759 752 "aws-smithy-xml", 760 753 "aws-types", 761 754 "http", 762 - "regex", 755 + "once_cell", 756 + "regex-lite", 763 757 "tracing", 764 758 ] 765 759 766 760 [[package]] 767 761 name = "aws-sigv4" 768 - version = "1.0.1" 762 + version = "1.1.2" 769 763 source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "380adcc8134ad8bbdfeb2ace7626a869914ee266322965276cbc54066186d236" 764 + checksum = "b92384b39aedb258aa734fe0e7b2ffcd13f33e68227251a72cd2635e0acc8f1a" 771 765 dependencies = [ 772 766 "aws-credential-types", 773 767 "aws-smithy-eventstream", ··· 781 775 "hmac", 782 776 "http", 783 777 "once_cell", 784 - "p256", 778 + "p256 0.11.1", 785 779 "percent-encoding", 786 - "regex", 787 - "ring 0.17.6", 780 + "ring 0.17.7", 788 781 "sha2 0.10.8", 789 782 "subtle", 790 783 "time", ··· 794 787 795 788 [[package]] 796 789 name = "aws-smithy-async" 797 - version = "1.0.2" 790 + version = "1.1.2" 798 791 source = "registry+https://github.com/rust-lang/crates.io-index" 799 - checksum = "3e37ca17d25fe1e210b6d4bdf59b81caebfe99f986201a1228cb5061233b4b13" 792 + checksum = "71d8e1c0904f78c76846a9dad41c28b41d330d97741c3e70d003d9a747d95e2a" 800 793 dependencies = [ 801 794 "futures-util", 802 795 "pin-project-lite", ··· 805 798 806 799 [[package]] 807 800 name = "aws-smithy-checksums" 808 - version = "0.60.0" 801 + version = "0.60.2" 809 802 source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "c5a373ec01aede3dd066ec018c1bc4e8f5dd11b2c11c59c8eef1a5c68101f397" 803 + checksum = "62d59ef74bf94562512e570eeccb81e9b3879f9136b2171ed4bf996ffa609955" 811 804 dependencies = [ 812 805 "aws-smithy-http", 813 806 "aws-smithy-types", ··· 826 819 827 820 [[package]] 828 821 name = "aws-smithy-eventstream" 829 - version = "0.60.0" 822 + version = "0.60.2" 830 823 source = "registry+https://github.com/rust-lang/crates.io-index" 831 - checksum = "1c669e1e5fc0d79561bf7a122b118bd50c898758354fe2c53eb8f2d31507cbc3" 824 + checksum = "31cf0466890a20988b9b2864250dd907f769bd189af1a51ba67beec86f7669fb" 832 825 dependencies = [ 833 826 "aws-smithy-types", 834 827 "bytes", ··· 837 830 838 831 [[package]] 839 832 name = "aws-smithy-http" 840 - version = "0.60.0" 833 + version = "0.60.2" 841 834 source = "registry+https://github.com/rust-lang/crates.io-index" 842 - checksum = "5b1de8aee22f67de467b2e3d0dd0fb30859dc53f579a63bd5381766b987db644" 835 + checksum = "568a3b159001358dd96143378afd7470e19baffb6918e4b5016abe576e553f9c" 843 836 dependencies = [ 844 837 "aws-smithy-eventstream", 845 838 "aws-smithy-runtime-api", ··· 858 851 859 852 [[package]] 860 853 name = "aws-smithy-json" 861 - version = "0.60.0" 854 + version = "0.60.2" 862 855 source = "registry+https://github.com/rust-lang/crates.io-index" 863 - checksum = "6a46dd338dc9576d6a6a5b5a19bd678dcad018ececee11cf28ecd7588bd1a55c" 856 + checksum = "f12bfb23370a069f8facbfd53ce78213461b0a8570f6c81488030f5ab6f8cc4e" 864 857 dependencies = [ 865 858 "aws-smithy-types", 866 859 ] 867 860 868 861 [[package]] 869 862 name = "aws-smithy-query" 870 - version = "0.60.0" 863 + version = "0.60.2" 871 864 source = "registry+https://github.com/rust-lang/crates.io-index" 872 - checksum = "feb5b8c7a86d4b6399169670723b7e6f21a39fc833a30f5c5a2f997608178129" 865 + checksum = "3b1adc06e0175c175d280267bb8fd028143518013fcb869e1c3199569a2e902a" 873 866 dependencies = [ 874 867 "aws-smithy-types", 875 868 "urlencoding", ··· 877 870 878 871 [[package]] 879 872 name = "aws-smithy-runtime" 880 - version = "1.0.2" 873 + version = "1.1.2" 881 874 source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "273479291efc55e7b0bce985b139d86b6031adb8e50f65c1f712f20ba38f6388" 875 + checksum = "7cf0f6845d2d97b953cea791b0ee37191c5509f2897ec7eb7580a0e7a594e98b" 883 876 dependencies = [ 884 877 "aws-smithy-async", 885 878 "aws-smithy-http", ··· 895 888 "once_cell", 896 889 "pin-project-lite", 897 890 "pin-utils", 898 - "rustls 0.21.9", 891 + "rustls 0.21.10", 899 892 "tokio", 900 893 "tracing", 901 894 ] 902 895 903 896 [[package]] 904 897 name = "aws-smithy-runtime-api" 905 - version = "1.0.2" 898 + version = "1.1.2" 906 899 source = "registry+https://github.com/rust-lang/crates.io-index" 907 - checksum = "c6cebff0d977b6b6feed2fd07db52aac58ba3ccaf26cdd49f1af4add5061bef9" 900 + checksum = "47798ba97a33979c80e837519cf837f18fd6df0adb02dd5286a75d9891c6e671" 908 901 dependencies = [ 909 902 "aws-smithy-async", 910 903 "aws-smithy-types", ··· 918 911 919 912 [[package]] 920 913 name = "aws-smithy-types" 921 - version = "1.0.2" 914 + version = "1.1.2" 922 915 source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "d7f48b3f27ddb40ab19892a5abda331f403e3cb877965e4e51171447807104af" 916 + checksum = "4e9a85eafeaf783b2408e35af599e8b96f2c49d9a5d13ad3a887fbdefb6bc744" 924 917 dependencies = [ 925 918 "base64-simd", 926 919 "bytes", ··· 941 934 942 935 [[package]] 943 936 name = "aws-smithy-xml" 944 - version = "0.60.0" 937 + version = "0.60.2" 945 938 source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "0ec40d74a67fd395bc3f6b4ccbdf1543672622d905ef3f979689aea5b730cb95" 939 + checksum = "5a84bee2b44c22cbba59f12c34b831a97df698f8e43df579b35998652a00dc13" 947 940 dependencies = [ 948 941 "xmlparser", 949 942 ] 950 943 951 944 [[package]] 952 945 name = "aws-types" 953 - version = "1.0.1" 946 + version = "1.1.2" 954 947 source = "registry+https://github.com/rust-lang/crates.io-index" 955 - checksum = "8403fc56b1f3761e8efe45771ddc1165e47ec3417c68e68a4519b5cb030159ca" 948 + checksum = "8549aa62c5b7db5c57ab915200ee214b4f5d8f19b29a4a8fa0b3ad3bca1380e3" 956 949 dependencies = [ 957 950 "aws-credential-types", 958 951 "aws-smithy-async", ··· 1035 1028 checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 1036 1029 1037 1030 [[package]] 1031 + name = "base16ct" 1032 + version = "0.2.0" 1033 + source = "registry+https://github.com/rust-lang/crates.io-index" 1034 + checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 1035 + 1036 + [[package]] 1038 1037 name = "base64" 1039 1038 version = "0.13.1" 1040 1039 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1042 1041 1043 1042 [[package]] 1044 1043 name = "base64" 1045 - version = "0.20.0" 1046 - source = "registry+https://github.com/rust-lang/crates.io-index" 1047 - checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" 1048 - 1049 - [[package]] 1050 - name = "base64" 1051 - version = "0.21.5" 1044 + version = "0.21.7" 1052 1045 source = "registry+https://github.com/rust-lang/crates.io-index" 1053 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 1046 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 1054 1047 1055 1048 [[package]] 1056 1049 name = "base64-simd" ··· 1077 1070 "async-trait", 1078 1071 "futures-channel", 1079 1072 "futures-util", 1080 - "parking_lot 0.12.1", 1073 + "parking_lot", 1081 1074 "tokio", 1082 1075 ] 1083 1076 ··· 1125 1118 1126 1119 [[package]] 1127 1120 name = "bindgen" 1128 - version = "0.65.1" 1121 + version = "0.69.2" 1129 1122 source = "registry+https://github.com/rust-lang/crates.io-index" 1130 - checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5" 1123 + checksum = "a4c69fae65a523209d34240b60abe0c42d33d1045d445c0839d8a4894a736e2d" 1131 1124 dependencies = [ 1132 - "bitflags 1.3.2", 1125 + "bitflags 2.4.2", 1133 1126 "cexpr", 1134 1127 "clang-sys", 1135 1128 "lazy_static", 1136 1129 "lazycell", 1137 1130 "log", 1138 1131 "peeking_take_while", 1139 - "prettyplease 0.2.15", 1132 + "prettyplease 0.2.16", 1140 1133 "proc-macro2", 1141 1134 "quote", 1142 1135 "regex", 1143 1136 "rustc-hash", 1144 1137 "shlex", 1145 - "syn 2.0.39", 1138 + "syn 2.0.48", 1146 1139 "which", 1147 1140 ] 1148 1141 1149 1142 [[package]] 1150 - name = "bindgen" 1151 - version = "0.69.1" 1152 - source = "registry+https://github.com/rust-lang/crates.io-index" 1153 - checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2" 1154 - dependencies = [ 1155 - "bitflags 2.4.1", 1156 - "cexpr", 1157 - "clang-sys", 1158 - "lazy_static", 1159 - "lazycell", 1160 - "peeking_take_while", 1161 - "proc-macro2", 1162 - "quote", 1163 - "regex", 1164 - "rustc-hash", 1165 - "shlex", 1166 - "syn 2.0.39", 1167 - ] 1168 - 1169 - [[package]] 1170 1143 name = "bitflags" 1171 1144 version = "1.3.2" 1172 1145 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1174 1147 1175 1148 [[package]] 1176 1149 name = "bitflags" 1177 - version = "2.4.1" 1150 + version = "2.4.2" 1178 1151 source = "registry+https://github.com/rust-lang/crates.io-index" 1179 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 1152 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 1180 1153 dependencies = [ 1181 1154 "serde", 1182 1155 ] ··· 1244 1217 checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 1245 1218 dependencies = [ 1246 1219 "async-channel 2.1.1", 1247 - "async-lock 3.1.2", 1220 + "async-lock 3.3.0", 1248 1221 "async-task", 1249 1222 "fastrand 2.0.1", 1250 1223 "futures-io", 1251 - "futures-lite 2.0.1", 1224 + "futures-lite 2.2.0", 1252 1225 "piper", 1253 1226 "tracing", 1254 1227 ] 1255 1228 1256 1229 [[package]] 1257 1230 name = "borsh" 1258 - version = "1.2.0" 1231 + version = "1.3.1" 1259 1232 source = "registry+https://github.com/rust-lang/crates.io-index" 1260 - checksum = "bf617fabf5cdbdc92f774bfe5062d870f228b80056d41180797abf48bed4056e" 1233 + checksum = "f58b559fd6448c6e2fd0adb5720cd98a2506594cafa4737ff98c396f3e82f667" 1261 1234 dependencies = [ 1262 1235 "borsh-derive", 1263 1236 "cfg_aliases", ··· 1265 1238 1266 1239 [[package]] 1267 1240 name = "borsh-derive" 1268 - version = "1.2.0" 1241 + version = "1.3.1" 1269 1242 source = "registry+https://github.com/rust-lang/crates.io-index" 1270 - checksum = "f404657a7ea7b5249e36808dff544bc88a28f26e0ac40009f674b7a009d14be3" 1243 + checksum = "7aadb5b6ccbd078890f6d7003694e33816e6b784358f18e15e7e6d9f065a57cd" 1271 1244 dependencies = [ 1272 1245 "once_cell", 1273 - "proc-macro-crate 2.0.0", 1246 + "proc-macro-crate 3.1.0", 1274 1247 "proc-macro2", 1275 1248 "quote", 1276 - "syn 2.0.39", 1249 + "syn 2.0.48", 1277 1250 "syn_derive", 1278 1251 ] 1279 1252 ··· 1362 1335 dependencies = [ 1363 1336 "proc-macro2", 1364 1337 "quote", 1365 - "syn 2.0.39", 1338 + "syn 2.0.48", 1366 1339 ] 1367 1340 1368 1341 [[package]] ··· 1410 1383 1411 1384 [[package]] 1412 1385 name = "candle-core" 1413 - version = "0.3.1" 1386 + version = "0.3.2" 1414 1387 source = "registry+https://github.com/rust-lang/crates.io-index" 1415 - checksum = "d60d9b91c73bc662dc45aff607f5ffe79724b7cf7d7c8dc12a72b25921683b67" 1388 + checksum = "57433f80b510bc603fd9e52c5a15eb44a8ac70112b95b28b0ab8fb1c1f001822" 1416 1389 dependencies = [ 1417 1390 "byteorder", 1418 1391 "gemm", ··· 1431 1404 1432 1405 [[package]] 1433 1406 name = "candle-nn" 1434 - version = "0.3.1" 1407 + version = "0.3.2" 1435 1408 source = "registry+https://github.com/rust-lang/crates.io-index" 1436 - checksum = "4eb6e13e7076439309786482d4d4c1b4e1f2b102ca93513372d5419ffcf5df25" 1409 + checksum = "211d0a1ca744eba0259b920ce767cb22620b4d766d5bf9acc2423402da0e8be8" 1437 1410 dependencies = [ 1438 1411 "candle-core", 1439 1412 "half", ··· 1446 1419 1447 1420 [[package]] 1448 1421 name = "candle-transformers" 1449 - version = "0.3.1" 1422 + version = "0.3.2" 1450 1423 source = "registry+https://github.com/rust-lang/crates.io-index" 1451 - checksum = "0169336de9dc62dd84e19af1408e53ef8ad07eef8fc103cfebf5b6c3e3f23c2c" 1424 + checksum = "f5b3eb1be12314656dca72d23e0e074628d4fbd8f9c8a5e628409174574cceaa" 1452 1425 dependencies = [ 1453 1426 "byteorder", 1454 1427 "candle-core", ··· 1469 1442 source = "registry+https://github.com/rust-lang/crates.io-index" 1470 1443 checksum = "e11c675378efb449ed3ce8de78d75d0d80542fc98487c26aba28eb3b82feac72" 1471 1444 dependencies = [ 1472 - "semver 1.0.20", 1445 + "semver 1.0.21", 1473 1446 "serde", 1474 1447 "toml 0.7.8", 1475 1448 "url", ··· 1523 1496 1524 1497 [[package]] 1525 1498 name = "chrono-tz" 1526 - version = "0.8.4" 1499 + version = "0.8.5" 1527 1500 source = "registry+https://github.com/rust-lang/crates.io-index" 1528 - checksum = "e23185c0e21df6ed832a12e2bda87c7d1def6842881fb634a8511ced741b0d76" 1501 + checksum = "91d7b79e99bfaa0d47da0687c43aa3b7381938a62ad3a6498599039321f660b7" 1529 1502 dependencies = [ 1530 1503 "chrono", 1531 1504 "chrono-tz-build", ··· 1564 1537 1565 1538 [[package]] 1566 1539 name = "clang-sys" 1567 - version = "1.6.1" 1540 + version = "1.7.0" 1568 1541 source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 1542 + checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" 1570 1543 dependencies = [ 1571 1544 "glob", 1572 1545 "libc", ··· 1575 1548 1576 1549 [[package]] 1577 1550 name = "clap" 1578 - version = "4.4.10" 1551 + version = "4.4.18" 1579 1552 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "41fffed7514f420abec6d183b1d3acfd9099c79c3a10a06ade4f8203f1411272" 1553 + checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" 1581 1554 dependencies = [ 1582 1555 "clap_builder", 1583 1556 "clap_derive", ··· 1585 1558 1586 1559 [[package]] 1587 1560 name = "clap_builder" 1588 - version = "4.4.9" 1561 + version = "4.4.18" 1589 1562 source = "registry+https://github.com/rust-lang/crates.io-index" 1590 - checksum = "63361bae7eef3771745f02d8d892bec2fee5f6e34af316ba556e7f97a7069ff1" 1563 + checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" 1591 1564 dependencies = [ 1592 1565 "anstream", 1593 1566 "anstyle", ··· 1604 1577 "heck", 1605 1578 "proc-macro2", 1606 1579 "quote", 1607 - "syn 2.0.39", 1580 + "syn 2.0.48", 1608 1581 ] 1609 1582 1610 1583 [[package]] ··· 1656 1629 1657 1630 [[package]] 1658 1631 name = "concurrent-queue" 1659 - version = "2.3.0" 1632 + version = "2.4.0" 1660 1633 source = "registry+https://github.com/rust-lang/crates.io-index" 1661 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 1634 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 1662 1635 dependencies = [ 1663 1636 "crossbeam-utils", 1664 1637 ] ··· 1671 1644 1672 1645 [[package]] 1673 1646 name = "console" 1674 - version = "0.15.7" 1647 + version = "0.15.8" 1675 1648 source = "registry+https://github.com/rust-lang/crates.io-index" 1676 - checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 1649 + checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 1677 1650 dependencies = [ 1678 1651 "encode_unicode", 1679 1652 "lazy_static", 1680 1653 "libc", 1681 1654 "unicode-width", 1682 - "windows-sys 0.45.0", 1655 + "windows-sys 0.52.0", 1683 1656 ] 1684 1657 1685 1658 [[package]] ··· 1694 1667 1695 1668 [[package]] 1696 1669 name = "const-oid" 1697 - version = "0.9.5" 1670 + version = "0.9.6" 1698 1671 source = "registry+https://github.com/rust-lang/crates.io-index" 1699 - checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" 1672 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1700 1673 1701 1674 [[package]] 1702 1675 name = "const_format" ··· 1769 1742 1770 1743 [[package]] 1771 1744 name = "cpufeatures" 1772 - version = "0.2.11" 1745 + version = "0.2.12" 1773 1746 source = "registry+https://github.com/rust-lang/crates.io-index" 1774 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1747 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1775 1748 dependencies = [ 1776 1749 "libc", 1777 1750 ] ··· 1787 1760 1788 1761 [[package]] 1789 1762 name = "crc-any" 1790 - version = "2.4.3" 1763 + version = "2.4.4" 1791 1764 source = "registry+https://github.com/rust-lang/crates.io-index" 1792 - checksum = "774646b687f63643eb0f4bf13dc263cb581c8c9e57973b6ddf78bda3994d88df" 1765 + checksum = "c01a5e1f881f6fb6099a7bdf949e946719fd4f1fefa56264890574febf0eb6d0" 1793 1766 dependencies = [ 1794 1767 "debug-helper", 1795 1768 ] ··· 1831 1804 1832 1805 [[package]] 1833 1806 name = "crossbeam" 1834 - version = "0.8.2" 1807 + version = "0.8.4" 1835 1808 source = "registry+https://github.com/rust-lang/crates.io-index" 1836 - checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 1809 + checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 1837 1810 dependencies = [ 1838 - "cfg-if", 1839 1811 "crossbeam-channel", 1840 1812 "crossbeam-deque", 1841 1813 "crossbeam-epoch", ··· 1845 1817 1846 1818 [[package]] 1847 1819 name = "crossbeam-channel" 1848 - version = "0.5.8" 1820 + version = "0.5.11" 1849 1821 source = "registry+https://github.com/rust-lang/crates.io-index" 1850 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1822 + checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 1851 1823 dependencies = [ 1852 - "cfg-if", 1853 1824 "crossbeam-utils", 1854 1825 ] 1855 1826 1856 1827 [[package]] 1857 1828 name = "crossbeam-deque" 1858 - version = "0.8.3" 1829 + version = "0.8.5" 1859 1830 source = "registry+https://github.com/rust-lang/crates.io-index" 1860 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1831 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1861 1832 dependencies = [ 1862 - "cfg-if", 1863 1833 "crossbeam-epoch", 1864 1834 "crossbeam-utils", 1865 1835 ] 1866 1836 1867 1837 [[package]] 1868 1838 name = "crossbeam-epoch" 1869 - version = "0.9.15" 1839 + version = "0.9.18" 1870 1840 source = "registry+https://github.com/rust-lang/crates.io-index" 1871 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 1841 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1872 1842 dependencies = [ 1873 - "autocfg", 1874 - "cfg-if", 1875 1843 "crossbeam-utils", 1876 - "memoffset", 1877 - "scopeguard", 1878 1844 ] 1879 1845 1880 1846 [[package]] 1881 1847 name = "crossbeam-queue" 1882 - version = "0.3.8" 1848 + version = "0.3.11" 1883 1849 source = "registry+https://github.com/rust-lang/crates.io-index" 1884 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 1850 + checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 1885 1851 dependencies = [ 1886 - "cfg-if", 1887 1852 "crossbeam-utils", 1888 1853 ] 1889 1854 1890 1855 [[package]] 1891 1856 name = "crossbeam-utils" 1892 - version = "0.8.16" 1857 + version = "0.8.19" 1893 1858 source = "registry+https://github.com/rust-lang/crates.io-index" 1894 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 1895 - dependencies = [ 1896 - "cfg-if", 1897 - ] 1859 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 1898 1860 1899 1861 [[package]] 1900 1862 name = "crossterm" ··· 1902 1864 source = "registry+https://github.com/rust-lang/crates.io-index" 1903 1865 checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" 1904 1866 dependencies = [ 1905 - "bitflags 2.4.1", 1867 + "bitflags 2.4.2", 1906 1868 "crossterm_winapi", 1907 1869 "libc", 1908 - "parking_lot 0.12.1", 1870 + "parking_lot", 1909 1871 "winapi", 1910 1872 ] 1911 1873 ··· 1942 1904 source = "registry+https://github.com/rust-lang/crates.io-index" 1943 1905 checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1944 1906 dependencies = [ 1907 + "generic-array", 1945 1908 "rand_core 0.6.4", 1946 1909 "subtle", 1910 + "zeroize", 1947 1911 ] 1948 1912 1949 1913 [[package]] ··· 1957 1921 ] 1958 1922 1959 1923 [[package]] 1924 + name = "curve25519-dalek" 1925 + version = "4.1.1" 1926 + source = "registry+https://github.com/rust-lang/crates.io-index" 1927 + checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c" 1928 + dependencies = [ 1929 + "cfg-if", 1930 + "cpufeatures", 1931 + "curve25519-dalek-derive", 1932 + "digest 0.10.7", 1933 + "fiat-crypto", 1934 + "platforms", 1935 + "rustc_version 0.4.0", 1936 + "subtle", 1937 + "zeroize", 1938 + ] 1939 + 1940 + [[package]] 1941 + name = "curve25519-dalek-derive" 1942 + version = "0.1.1" 1943 + source = "registry+https://github.com/rust-lang/crates.io-index" 1944 + checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1945 + dependencies = [ 1946 + "proc-macro2", 1947 + "quote", 1948 + "syn 2.0.48", 1949 + ] 1950 + 1951 + [[package]] 1960 1952 name = "darling" 1961 1953 version = "0.14.4" 1962 1954 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2001 1993 "proc-macro2", 2002 1994 "quote", 2003 1995 "strsim", 2004 - "syn 2.0.39", 1996 + "syn 2.0.48", 2005 1997 ] 2006 1998 2007 1999 [[package]] ··· 2023 2015 dependencies = [ 2024 2016 "darling_core 0.20.3", 2025 2017 "quote", 2026 - "syn 2.0.39", 2018 + "syn 2.0.48", 2027 2019 ] 2028 2020 2029 2021 [[package]] ··· 2036 2028 "hashbrown 0.14.3", 2037 2029 "lock_api", 2038 2030 "once_cell", 2039 - "parking_lot_core 0.9.9", 2031 + "parking_lot_core", 2040 2032 ] 2041 2033 2042 2034 [[package]] ··· 2081 2073 dependencies = [ 2082 2074 "deno-proc-macro-rules-macros", 2083 2075 "proc-macro2", 2084 - "syn 2.0.39", 2076 + "syn 2.0.48", 2085 2077 ] 2086 2078 2087 2079 [[package]] ··· 2093 2085 "once_cell", 2094 2086 "proc-macro2", 2095 2087 "quote", 2096 - "syn 2.0.39", 2088 + "syn 2.0.48", 2097 2089 ] 2098 2090 2099 2091 [[package]] ··· 2155 2147 "libc", 2156 2148 "log", 2157 2149 "once_cell", 2158 - "parking_lot 0.12.1", 2150 + "parking_lot", 2159 2151 "pin-project", 2160 2152 "serde", 2161 2153 "serde_json", ··· 2213 2205 "strum", 2214 2206 "strum_macros", 2215 2207 "syn 1.0.109", 2216 - "syn 2.0.39", 2208 + "syn 2.0.48", 2217 2209 "thiserror", 2218 2210 ] 2219 2211 ··· 2225 2217 dependencies = [ 2226 2218 "deno_core", 2227 2219 "once_cell", 2228 - "rustls 0.21.9", 2220 + "rustls 0.21.10", 2229 2221 "rustls-native-certs", 2230 2222 "rustls-pemfile", 2231 2223 "serde", ··· 2294 2286 2295 2287 [[package]] 2296 2288 name = "deranged" 2297 - version = "0.3.9" 2289 + version = "0.3.11" 2298 2290 source = "registry+https://github.com/rust-lang/crates.io-index" 2299 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 2291 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 2300 2292 dependencies = [ 2301 2293 "powerfmt", 2302 2294 "serde", ··· 2380 2372 2381 2373 [[package]] 2382 2374 name = "dirs" 2383 - version = "4.0.0" 2384 - source = "registry+https://github.com/rust-lang/crates.io-index" 2385 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 2386 - dependencies = [ 2387 - "dirs-sys 0.3.7", 2388 - ] 2389 - 2390 - [[package]] 2391 - name = "dirs" 2392 2375 version = "5.0.1" 2393 2376 source = "registry+https://github.com/rust-lang/crates.io-index" 2394 2377 checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 2395 2378 dependencies = [ 2396 - "dirs-sys 0.4.1", 2379 + "dirs-sys", 2397 2380 ] 2398 2381 2399 2382 [[package]] ··· 2408 2391 2409 2392 [[package]] 2410 2393 name = "dirs-sys" 2411 - version = "0.3.7" 2412 - source = "registry+https://github.com/rust-lang/crates.io-index" 2413 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 2414 - dependencies = [ 2415 - "libc", 2416 - "redox_users", 2417 - "winapi", 2418 - ] 2419 - 2420 - [[package]] 2421 - name = "dirs-sys" 2422 2394 version = "0.4.1" 2423 2395 source = "registry+https://github.com/rust-lang/crates.io-index" 2424 2396 checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" ··· 2503 2475 checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 2504 2476 dependencies = [ 2505 2477 "der 0.6.1", 2506 - "elliptic-curve", 2507 - "rfc6979", 2478 + "elliptic-curve 0.12.3", 2479 + "rfc6979 0.3.1", 2508 2480 "signature 1.6.4", 2509 2481 ] 2510 2482 2511 2483 [[package]] 2484 + name = "ecdsa" 2485 + version = "0.16.9" 2486 + source = "registry+https://github.com/rust-lang/crates.io-index" 2487 + checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 2488 + dependencies = [ 2489 + "der 0.7.8", 2490 + "digest 0.10.7", 2491 + "elliptic-curve 0.13.8", 2492 + "rfc6979 0.4.0", 2493 + "signature 2.2.0", 2494 + "spki 0.7.3", 2495 + ] 2496 + 2497 + [[package]] 2498 + name = "ed25519" 2499 + version = "2.2.3" 2500 + source = "registry+https://github.com/rust-lang/crates.io-index" 2501 + checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 2502 + dependencies = [ 2503 + "pkcs8 0.10.2", 2504 + "signature 2.2.0", 2505 + ] 2506 + 2507 + [[package]] 2508 + name = "ed25519-dalek" 2509 + version = "2.1.0" 2510 + source = "registry+https://github.com/rust-lang/crates.io-index" 2511 + checksum = "1f628eaec48bfd21b865dc2950cfa014450c01d2fa2b69a86c2fd5844ec523c0" 2512 + dependencies = [ 2513 + "curve25519-dalek", 2514 + "ed25519", 2515 + "serde", 2516 + "sha2 0.10.8", 2517 + "subtle", 2518 + "zeroize", 2519 + ] 2520 + 2521 + [[package]] 2512 2522 name = "either" 2513 2523 version = "1.9.0" 2514 2524 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2523 2533 source = "registry+https://github.com/rust-lang/crates.io-index" 2524 2534 checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 2525 2535 dependencies = [ 2526 - "base16ct", 2536 + "base16ct 0.1.1", 2527 2537 "crypto-bigint 0.4.9", 2528 2538 "der 0.6.1", 2529 2539 "digest 0.10.7", 2530 - "ff", 2540 + "ff 0.12.1", 2531 2541 "generic-array", 2532 - "group", 2542 + "group 0.12.1", 2533 2543 "pkcs8 0.9.0", 2534 2544 "rand_core 0.6.4", 2535 - "sec1", 2545 + "sec1 0.3.0", 2546 + "subtle", 2547 + "zeroize", 2548 + ] 2549 + 2550 + [[package]] 2551 + name = "elliptic-curve" 2552 + version = "0.13.8" 2553 + source = "registry+https://github.com/rust-lang/crates.io-index" 2554 + checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 2555 + dependencies = [ 2556 + "base16ct 0.2.0", 2557 + "crypto-bigint 0.5.5", 2558 + "digest 0.10.7", 2559 + "ff 0.13.0", 2560 + "generic-array", 2561 + "group 0.13.0", 2562 + "hkdf", 2563 + "pem-rfc7468 0.7.0", 2564 + "pkcs8 0.10.2", 2565 + "rand_core 0.6.4", 2566 + "sec1 0.7.3", 2536 2567 "subtle", 2537 2568 "zeroize", 2538 2569 ] ··· 2637 2668 "once_cell", 2638 2669 "proc-macro2", 2639 2670 "quote", 2640 - "syn 2.0.39", 2671 + "syn 2.0.48", 2641 2672 ] 2642 2673 2643 2674 [[package]] ··· 2657 2688 dependencies = [ 2658 2689 "proc-macro2", 2659 2690 "quote", 2660 - "syn 2.0.39", 2691 + "syn 2.0.48", 2661 2692 ] 2662 2693 2663 2694 [[package]] ··· 2710 2741 2711 2742 [[package]] 2712 2743 name = "event-listener" 2713 - version = "4.0.0" 2744 + version = "4.0.3" 2714 2745 source = "registry+https://github.com/rust-lang/crates.io-index" 2715 - checksum = "770d968249b5d99410d61f5bf89057f3199a077a04d087092f58e7d10692baae" 2746 + checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 2716 2747 dependencies = [ 2717 2748 "concurrent-queue", 2718 2749 "parking", ··· 2725 2756 source = "registry+https://github.com/rust-lang/crates.io-index" 2726 2757 checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 2727 2758 dependencies = [ 2728 - "event-listener 4.0.0", 2759 + "event-listener 4.0.3", 2729 2760 "pin-project-lite", 2730 2761 ] 2731 2762 ··· 2773 2804 ] 2774 2805 2775 2806 [[package]] 2807 + name = "ff" 2808 + version = "0.13.0" 2809 + source = "registry+https://github.com/rust-lang/crates.io-index" 2810 + checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 2811 + dependencies = [ 2812 + "rand_core 0.6.4", 2813 + "subtle", 2814 + ] 2815 + 2816 + [[package]] 2817 + name = "fiat-crypto" 2818 + version = "0.2.5" 2819 + source = "registry+https://github.com/rust-lang/crates.io-index" 2820 + checksum = "27573eac26f4dd11e2b1916c3fe1baa56407c83c71a773a8ba17ec0bca03b6b7" 2821 + 2822 + [[package]] 2776 2823 name = "filetime" 2777 - version = "0.2.22" 2824 + version = "0.2.23" 2778 2825 source = "registry+https://github.com/rust-lang/crates.io-index" 2779 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 2826 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 2780 2827 dependencies = [ 2781 2828 "cfg-if", 2782 2829 "libc", 2783 - "redox_syscall 0.3.5", 2784 - "windows-sys 0.48.0", 2830 + "redox_syscall 0.4.1", 2831 + "windows-sys 0.52.0", 2785 2832 ] 2786 2833 2787 2834 [[package]] ··· 2858 2905 "pmutil 0.6.1", 2859 2906 "proc-macro2", 2860 2907 "swc_macros_common", 2861 - "syn 2.0.39", 2908 + "syn 2.0.48", 2862 2909 ] 2863 2910 2864 2911 [[package]] ··· 2886 2933 dependencies = [ 2887 2934 "frunk_proc_macro_helpers", 2888 2935 "quote", 2889 - "syn 2.0.39", 2936 + "syn 2.0.48", 2890 2937 ] 2891 2938 2892 2939 [[package]] ··· 2898 2945 "frunk_core", 2899 2946 "proc-macro2", 2900 2947 "quote", 2901 - "syn 2.0.39", 2948 + "syn 2.0.48", 2902 2949 ] 2903 2950 2904 2951 [[package]] ··· 2910 2957 "frunk_core", 2911 2958 "frunk_proc_macro_helpers", 2912 2959 "quote", 2913 - "syn 2.0.39", 2960 + "syn 2.0.48", 2914 2961 ] 2915 2962 2916 2963 [[package]] ··· 2931 2978 2932 2979 [[package]] 2933 2980 name = "futures" 2934 - version = "0.3.29" 2981 + version = "0.3.30" 2935 2982 source = "registry+https://github.com/rust-lang/crates.io-index" 2936 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 2983 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 2937 2984 dependencies = [ 2938 2985 "futures-channel", 2939 2986 "futures-core", ··· 2946 2993 2947 2994 [[package]] 2948 2995 name = "futures-channel" 2949 - version = "0.3.29" 2996 + version = "0.3.30" 2950 2997 source = "registry+https://github.com/rust-lang/crates.io-index" 2951 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 2998 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 2952 2999 dependencies = [ 2953 3000 "futures-core", 2954 3001 "futures-sink", ··· 2956 3003 2957 3004 [[package]] 2958 3005 name = "futures-core" 2959 - version = "0.3.29" 3006 + version = "0.3.30" 2960 3007 source = "registry+https://github.com/rust-lang/crates.io-index" 2961 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 3008 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 2962 3009 2963 3010 [[package]] 2964 3011 name = "futures-executor" 2965 - version = "0.3.29" 3012 + version = "0.3.30" 2966 3013 source = "registry+https://github.com/rust-lang/crates.io-index" 2967 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 3014 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 2968 3015 dependencies = [ 2969 3016 "futures-core", 2970 3017 "futures-task", ··· 2973 3020 2974 3021 [[package]] 2975 3022 name = "futures-intrusive" 2976 - version = "0.4.2" 2977 - source = "registry+https://github.com/rust-lang/crates.io-index" 2978 - checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5" 2979 - dependencies = [ 2980 - "futures-core", 2981 - "lock_api", 2982 - "parking_lot 0.11.2", 2983 - ] 2984 - 2985 - [[package]] 2986 - name = "futures-intrusive" 2987 3023 version = "0.5.0" 2988 3024 source = "registry+https://github.com/rust-lang/crates.io-index" 2989 3025 checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 2990 3026 dependencies = [ 2991 3027 "futures-core", 2992 3028 "lock_api", 2993 - "parking_lot 0.12.1", 3029 + "parking_lot", 2994 3030 ] 2995 3031 2996 3032 [[package]] 2997 3033 name = "futures-io" 2998 - version = "0.3.29" 3034 + version = "0.3.30" 2999 3035 source = "registry+https://github.com/rust-lang/crates.io-index" 3000 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 3036 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 3001 3037 3002 3038 [[package]] 3003 3039 name = "futures-lite" ··· 3016 3052 3017 3053 [[package]] 3018 3054 name = "futures-lite" 3019 - version = "2.0.1" 3055 + version = "2.2.0" 3020 3056 source = "registry+https://github.com/rust-lang/crates.io-index" 3021 - checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" 3057 + checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 3022 3058 dependencies = [ 3023 3059 "fastrand 2.0.1", 3024 3060 "futures-core", 3025 3061 "futures-io", 3026 - "memchr", 3027 3062 "parking", 3028 3063 "pin-project-lite", 3029 3064 ] 3030 3065 3031 3066 [[package]] 3032 3067 name = "futures-macro" 3033 - version = "0.3.29" 3068 + version = "0.3.30" 3034 3069 source = "registry+https://github.com/rust-lang/crates.io-index" 3035 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 3070 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 3036 3071 dependencies = [ 3037 3072 "proc-macro2", 3038 3073 "quote", 3039 - "syn 2.0.39", 3074 + "syn 2.0.48", 3040 3075 ] 3041 3076 3042 3077 [[package]] 3043 3078 name = "futures-sink" 3044 - version = "0.3.29" 3079 + version = "0.3.30" 3045 3080 source = "registry+https://github.com/rust-lang/crates.io-index" 3046 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 3081 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 3047 3082 3048 3083 [[package]] 3049 3084 name = "futures-task" 3050 - version = "0.3.29" 3085 + version = "0.3.30" 3051 3086 source = "registry+https://github.com/rust-lang/crates.io-index" 3052 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 3087 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 3053 3088 3054 3089 [[package]] 3055 3090 name = "futures-util" 3056 - version = "0.3.29" 3091 + version = "0.3.30" 3057 3092 source = "registry+https://github.com/rust-lang/crates.io-index" 3058 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 3093 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 3059 3094 dependencies = [ 3060 3095 "futures-channel", 3061 3096 "futures-core", ··· 3076 3111 checksum = "7d3b20d3058763d26d88e6e7a49998841e5296735b00dbfb064ff7cb142933dd" 3077 3112 dependencies = [ 3078 3113 "async-trait", 3079 - "base64 0.21.5", 3114 + "base64 0.21.7", 3080 3115 "dirs-next", 3081 3116 "hyper", 3082 3117 "hyper-rustls", 3083 3118 "ring 0.16.20", 3084 - "rustls 0.21.9", 3119 + "rustls 0.21.10", 3085 3120 "rustls-pemfile", 3086 3121 "serde", 3087 3122 "serde_json", ··· 3219 3254 dependencies = [ 3220 3255 "typenum", 3221 3256 "version_check", 3257 + "zeroize", 3222 3258 ] 3223 3259 3224 3260 [[package]] ··· 3253 3289 3254 3290 [[package]] 3255 3291 name = "getrandom" 3256 - version = "0.2.11" 3292 + version = "0.2.12" 3257 3293 source = "registry+https://github.com/rust-lang/crates.io-index" 3258 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 3294 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 3259 3295 dependencies = [ 3260 3296 "cfg-if", 3261 3297 "js-sys", ··· 3272 3308 3273 3309 [[package]] 3274 3310 name = "git-version" 3275 - version = "0.3.8" 3311 + version = "0.3.9" 3276 3312 source = "registry+https://github.com/rust-lang/crates.io-index" 3277 - checksum = "13ad01ffa8221f7fe8b936d6ffb2a3e7ad428885a04fad51866a5f33eafda57c" 3313 + checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19" 3278 3314 dependencies = [ 3279 3315 "git-version-macro", 3280 3316 ] 3281 3317 3282 3318 [[package]] 3283 3319 name = "git-version-macro" 3284 - version = "0.3.8" 3320 + version = "0.3.9" 3285 3321 source = "registry+https://github.com/rust-lang/crates.io-index" 3286 - checksum = "84488ccbdb24ad6f56dc1863b4a8154a7856cd3c6c7610401634fab3cb588dae" 3322 + checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0" 3287 3323 dependencies = [ 3288 3324 "proc-macro2", 3289 3325 "quote", 3290 - "syn 2.0.39", 3326 + "syn 2.0.48", 3291 3327 ] 3292 3328 3293 3329 [[package]] ··· 3323 3359 3324 3360 [[package]] 3325 3361 name = "gosyn" 3326 - version = "0.2.6" 3362 + version = "0.2.8" 3327 3363 source = "registry+https://github.com/rust-lang/crates.io-index" 3328 - checksum = "099e29e0cf77a5b706f9e05e425cfeeed0debb2ee6c74c2c86bd9b17178bf8e0" 3364 + checksum = "14163cf566b1496f50447a61981892272a61ef220d37e69508e19075bc66e3f1" 3329 3365 dependencies = [ 3330 3366 "anyhow", 3331 3367 "strum", ··· 3339 3375 source = "registry+https://github.com/rust-lang/crates.io-index" 3340 3376 checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 3341 3377 dependencies = [ 3342 - "ff", 3378 + "ff 0.12.1", 3379 + "rand_core 0.6.4", 3380 + "subtle", 3381 + ] 3382 + 3383 + [[package]] 3384 + name = "group" 3385 + version = "0.13.0" 3386 + source = "registry+https://github.com/rust-lang/crates.io-index" 3387 + checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 3388 + dependencies = [ 3389 + "ff 0.13.0", 3343 3390 "rand_core 0.6.4", 3344 3391 "subtle", 3345 3392 ] 3346 3393 3347 3394 [[package]] 3348 3395 name = "h2" 3349 - version = "0.3.22" 3396 + version = "0.3.24" 3350 3397 source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 3398 + checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 3352 3399 dependencies = [ 3353 3400 "bytes", 3354 3401 "fnv", ··· 3392 3439 source = "registry+https://github.com/rust-lang/crates.io-index" 3393 3440 checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 3394 3441 dependencies = [ 3395 - "ahash 0.8.6", 3442 + "ahash 0.8.7", 3396 3443 ] 3397 3444 3398 3445 [[package]] ··· 3401 3448 source = "registry+https://github.com/rust-lang/crates.io-index" 3402 3449 checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 3403 3450 dependencies = [ 3404 - "ahash 0.8.6", 3451 + "ahash 0.8.7", 3405 3452 "allocator-api2", 3406 3453 "rayon", 3407 3454 ] ··· 3421 3468 source = "registry+https://github.com/rust-lang/crates.io-index" 3422 3469 checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" 3423 3470 dependencies = [ 3424 - "base64 0.21.5", 3471 + "base64 0.21.7", 3425 3472 "bytes", 3426 3473 "headers-core", 3427 3474 "http", ··· 3450 3497 3451 3498 [[package]] 3452 3499 name = "hermit-abi" 3453 - version = "0.3.3" 3500 + version = "0.3.4" 3454 3501 source = "registry+https://github.com/rust-lang/crates.io-index" 3455 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 3502 + checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" 3456 3503 3457 3504 [[package]] 3458 3505 name = "hex" ··· 3466 3513 source = "registry+https://github.com/rust-lang/crates.io-index" 3467 3514 checksum = "2b780635574b3d92f036890d8373433d6f9fc7abb320ee42a5c25897fc8ed732" 3468 3515 dependencies = [ 3469 - "dirs 5.0.1", 3516 + "dirs", 3470 3517 "indicatif", 3471 3518 "log", 3472 3519 "native-tls", ··· 3479 3526 3480 3527 [[package]] 3481 3528 name = "hkdf" 3482 - version = "0.12.3" 3529 + version = "0.12.4" 3483 3530 source = "registry+https://github.com/rust-lang/crates.io-index" 3484 - checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 3531 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 3485 3532 dependencies = [ 3486 3533 "hmac", 3487 3534 ] ··· 3497 3544 3498 3545 [[package]] 3499 3546 name = "home" 3500 - version = "0.5.5" 3547 + version = "0.5.9" 3501 3548 source = "registry+https://github.com/rust-lang/crates.io-index" 3502 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 3549 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 3503 3550 dependencies = [ 3504 - "windows-sys 0.48.0", 3551 + "windows-sys 0.52.0", 3505 3552 ] 3506 3553 3507 3554 [[package]] ··· 3517 3564 3518 3565 [[package]] 3519 3566 name = "http-body" 3520 - version = "0.4.5" 3567 + version = "0.4.6" 3521 3568 source = "registry+https://github.com/rust-lang/crates.io-index" 3522 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 3569 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 3523 3570 dependencies = [ 3524 3571 "bytes", 3525 3572 "http", ··· 3573 3620 3574 3621 [[package]] 3575 3622 name = "hyper" 3576 - version = "0.14.27" 3623 + version = "0.14.28" 3577 3624 source = "registry+https://github.com/rust-lang/crates.io-index" 3578 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 3625 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 3579 3626 dependencies = [ 3580 3627 "bytes", 3581 3628 "futures-channel", ··· 3588 3635 "httpdate", 3589 3636 "itoa", 3590 3637 "pin-project-lite", 3591 - "socket2 0.4.10", 3638 + "socket2 0.5.5", 3592 3639 "tokio", 3593 3640 "tower-service", 3594 3641 "tracing", ··· 3605 3652 "http", 3606 3653 "hyper", 3607 3654 "log", 3608 - "rustls 0.21.9", 3655 + "rustls 0.21.10", 3609 3656 "rustls-native-certs", 3610 3657 "tokio", 3611 3658 "tokio-rustls 0.24.1", ··· 3626 3673 3627 3674 [[package]] 3628 3675 name = "iana-time-zone" 3629 - version = "0.1.58" 3676 + version = "0.1.59" 3630 3677 source = "registry+https://github.com/rust-lang/crates.io-index" 3631 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 3678 + checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" 3632 3679 dependencies = [ 3633 3680 "android_system_properties", 3634 3681 "core-foundation-sys", ··· 3688 3735 dependencies = [ 3689 3736 "equivalent", 3690 3737 "hashbrown 0.14.3", 3738 + "serde", 3691 3739 ] 3692 3740 3693 3741 [[package]] ··· 3759 3807 3760 3808 [[package]] 3761 3809 name = "is-macro" 3762 - version = "0.3.0" 3810 + version = "0.3.5" 3763 3811 source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e" 3812 + checksum = "59a85abdc13717906baccb5a1e435556ce0df215f242892f721dff62bf25288f" 3765 3813 dependencies = [ 3766 3814 "Inflector", 3767 - "pmutil 0.6.1", 3768 3815 "proc-macro2", 3769 3816 "quote", 3770 - "syn 2.0.39", 3817 + "syn 2.0.48", 3818 + ] 3819 + 3820 + [[package]] 3821 + name = "itertools" 3822 + version = "0.9.0" 3823 + source = "registry+https://github.com/rust-lang/crates.io-index" 3824 + checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" 3825 + dependencies = [ 3826 + "either", 3771 3827 ] 3772 3828 3773 3829 [[package]] ··· 3799 3855 3800 3856 [[package]] 3801 3857 name = "itoa" 3802 - version = "1.0.9" 3858 + version = "1.0.10" 3803 3859 source = "registry+https://github.com/rust-lang/crates.io-index" 3804 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 3860 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 3805 3861 3806 3862 [[package]] 3807 3863 name = "itoap" ··· 3833 3889 source = "registry+https://github.com/rust-lang/crates.io-index" 3834 3890 checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" 3835 3891 dependencies = [ 3836 - "base64 0.21.5", 3892 + "base64 0.21.7", 3837 3893 "pem 1.1.1", 3838 3894 "ring 0.16.20", 3839 3895 "serde", ··· 3842 3898 ] 3843 3899 3844 3900 [[package]] 3901 + name = "keccak" 3902 + version = "0.1.5" 3903 + source = "registry+https://github.com/rust-lang/crates.io-index" 3904 + checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" 3905 + dependencies = [ 3906 + "cpufeatures", 3907 + ] 3908 + 3909 + [[package]] 3845 3910 name = "keyed_priority_queue" 3846 3911 version = "0.4.2" 3847 3912 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3920 3985 3921 3986 [[package]] 3922 3987 name = "libc" 3923 - version = "0.2.150" 3988 + version = "0.2.152" 3924 3989 source = "registry+https://github.com/rust-lang/crates.io-index" 3925 - checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 3990 + checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 3926 3991 3927 3992 [[package]] 3928 3993 name = "libgit2-sys" ··· 3938 4003 3939 4004 [[package]] 3940 4005 name = "libloading" 3941 - version = "0.7.4" 4006 + version = "0.8.1" 3942 4007 source = "registry+https://github.com/rust-lang/crates.io-index" 3943 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 4008 + checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 3944 4009 dependencies = [ 3945 4010 "cfg-if", 3946 - "winapi", 4011 + "windows-sys 0.48.0", 3947 4012 ] 3948 4013 3949 4014 [[package]] ··· 3958 4023 source = "registry+https://github.com/rust-lang/crates.io-index" 3959 4024 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 3960 4025 dependencies = [ 3961 - "bitflags 2.4.1", 4026 + "bitflags 2.4.2", 3962 4027 "libc", 3963 4028 "redox_syscall 0.4.1", 3964 4029 ] ··· 3987 4052 3988 4053 [[package]] 3989 4054 name = "libz-ng-sys" 3990 - version = "1.1.12" 4055 + version = "1.1.15" 3991 4056 source = "registry+https://github.com/rust-lang/crates.io-index" 3992 - checksum = "3dd9f43e75536a46ee0f92b758f6b63846e594e86638c61a9251338a65baea63" 4057 + checksum = "c6409efc61b12687963e602df8ecf70e8ddacf95bc6576bcf16e3ac6328083c5" 3993 4058 dependencies = [ 3994 4059 "cmake", 3995 4060 "libc", ··· 3997 4062 3998 4063 [[package]] 3999 4064 name = "libz-sys" 4000 - version = "1.1.12" 4065 + version = "1.1.14" 4001 4066 source = "registry+https://github.com/rust-lang/crates.io-index" 4002 - checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" 4067 + checksum = "295c17e837573c8c821dbaeb3cceb3d745ad082f7572191409e69cbc1b3fd050" 4003 4068 dependencies = [ 4004 4069 "cc", 4005 4070 "libc", ··· 4015 4080 4016 4081 [[package]] 4017 4082 name = "linux-raw-sys" 4018 - version = "0.4.12" 4083 + version = "0.4.13" 4019 4084 source = "registry+https://github.com/rust-lang/crates.io-index" 4020 - checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 4085 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 4021 4086 4022 4087 [[package]] 4023 4088 name = "lock_api" ··· 4111 4176 checksum = "6c42f95f9d296f2dcb50665f507ed5a68a171453142663ce44d77a4eb217b053" 4112 4177 dependencies = [ 4113 4178 "aes 0.7.5", 4114 - "base64 0.21.5", 4179 + "base64 0.21.7", 4115 4180 "block-modes", 4116 4181 "crc-any", 4117 4182 "des", ··· 4132 4197 4133 4198 [[package]] 4134 4199 name = "mail-send" 4135 - version = "0.4.1" 4200 + version = "0.4.6" 4136 4201 source = "registry+https://github.com/rust-lang/crates.io-index" 4137 - checksum = "4cbc58a799366b3b2956a2c5ae7e2892ea34b3016343cbbdc5deb844aa6c0973" 4202 + checksum = "5f5982137dccf24ca038daa022eb0ea97a31e9739477445a787a8ef77e015ebb" 4138 4203 dependencies = [ 4139 - "base64 0.20.0", 4204 + "base64 0.21.7", 4140 4205 "gethostname", 4141 4206 "mail-builder", 4142 - "rustls 0.21.9", 4207 + "rustls 0.22.2", 4208 + "rustls-pki-types", 4143 4209 "smtp-proto", 4144 4210 "tokio", 4145 - "tokio-rustls 0.24.1", 4146 - "webpki-roots 0.25.3", 4211 + "tokio-rustls 0.25.0", 4212 + "webpki-roots 0.26.0", 4147 4213 ] 4148 4214 4149 4215 [[package]] 4150 4216 name = "malachite" 4151 - version = "0.4.4" 4217 + version = "0.3.2" 4152 4218 source = "registry+https://github.com/rust-lang/crates.io-index" 4153 - checksum = "220cb36c52aa6eff45559df497abe0e2a4c1209f92279a746a399f622d7b95c7" 4219 + checksum = "f6cf7f4730c30071ba374fac86ad35b1cb7a0716f774737768667ea3fa1828e3" 4154 4220 dependencies = [ 4155 4221 "malachite-base", 4156 4222 "malachite-nz", ··· 4159 4225 4160 4226 [[package]] 4161 4227 name = "malachite-base" 4162 - version = "0.4.4" 4228 + version = "0.3.2" 4163 4229 source = "registry+https://github.com/rust-lang/crates.io-index" 4164 - checksum = "6538136c5daf04126d6be4899f7fe4879b7f8de896dd1b4210fe6de5b94f2555" 4230 + checksum = "2b06bfa98a4b4802af5a4263b4ad4660e28e51e8490f6354eb9336c70767e1c5" 4165 4231 dependencies = [ 4166 - "itertools 0.11.0", 4232 + "itertools 0.9.0", 4233 + "rand 0.7.3", 4234 + "rand_chacha 0.2.2", 4167 4235 "ryu", 4236 + "sha3", 4168 4237 ] 4169 4238 4170 4239 [[package]] 4171 4240 name = "malachite-bigint" 4172 - version = "0.1.1" 4241 + version = "0.1.0" 4173 4242 source = "registry+https://github.com/rust-lang/crates.io-index" 4174 - checksum = "76c3eca3b5df299486144c8423c45c24bdf9e82e2452c8a1eeda547c4d8b5d41" 4243 + checksum = "8a5110aee54537b0cef214efbebdd7df79b7408db8eef4f6a4b6db9d0d8fc01b" 4175 4244 dependencies = [ 4176 4245 "derive_more", 4177 4246 "malachite", ··· 4182 4251 4183 4252 [[package]] 4184 4253 name = "malachite-nz" 4185 - version = "0.4.4" 4254 + version = "0.3.2" 4186 4255 source = "registry+https://github.com/rust-lang/crates.io-index" 4187 - checksum = "5f0b05577b7a3f09433106460b10304f97fc572f0baabf6640e6cb1e23f5fc52" 4256 + checksum = "c89e21c64b7af5be3dc8cef16f786243faf59459fe4ba93b44efdeb264e5ade4" 4188 4257 dependencies = [ 4189 4258 "embed-doc-image", 4190 - "itertools 0.11.0", 4259 + "itertools 0.9.0", 4191 4260 "malachite-base", 4192 4261 ] 4193 4262 4194 4263 [[package]] 4195 4264 name = "malachite-q" 4196 - version = "0.4.4" 4265 + version = "0.3.2" 4197 4266 source = "registry+https://github.com/rust-lang/crates.io-index" 4198 - checksum = "a1cfdb4016292e6acd832eaee261175f3af8bbee62afeefe4420ebce4c440cb5" 4267 + checksum = "3755e541d5134b5016594c9043094172c4dda9259b3ce824a7b8101941850360" 4199 4268 dependencies = [ 4200 - "itertools 0.11.0", 4269 + "itertools 0.9.0", 4201 4270 "malachite-base", 4202 4271 "malachite-nz", 4203 4272 ] ··· 4246 4315 4247 4316 [[package]] 4248 4317 name = "memchr" 4249 - version = "2.6.4" 4318 + version = "2.7.1" 4250 4319 source = "registry+https://github.com/rust-lang/crates.io-index" 4251 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 4320 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 4252 4321 4253 4322 [[package]] 4254 4323 name = "memmap2" ··· 4261 4330 ] 4262 4331 4263 4332 [[package]] 4264 - name = "memoffset" 4265 - version = "0.9.0" 4266 - source = "registry+https://github.com/rust-lang/crates.io-index" 4267 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 4268 - dependencies = [ 4269 - "autocfg", 4270 - ] 4271 - 4272 - [[package]] 4273 4333 name = "mime" 4274 4334 version = "0.3.17" 4275 4335 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4302 4362 4303 4363 [[package]] 4304 4364 name = "mio" 4305 - version = "0.8.9" 4365 + version = "0.8.10" 4306 4366 source = "registry+https://github.com/rust-lang/crates.io-index" 4307 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 4367 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 4308 4368 dependencies = [ 4309 4369 "libc", 4310 4370 "log", ··· 4314 4374 4315 4375 [[package]] 4316 4376 name = "monostate" 4317 - version = "0.1.10" 4377 + version = "0.1.11" 4318 4378 source = "registry+https://github.com/rust-lang/crates.io-index" 4319 - checksum = "e404e13820ea0df0eda93aa294e0c80de76a0daa6bec590d376fbec6d7810394" 4379 + checksum = "878c2a1f1c70e5724fa28f101ca787b6a7e8ad5c5e4ae4ca3b0fa4a419fa9075" 4320 4380 dependencies = [ 4321 4381 "monostate-impl", 4322 4382 "serde", ··· 4324 4384 4325 4385 [[package]] 4326 4386 name = "monostate-impl" 4327 - version = "0.1.10" 4387 + version = "0.1.11" 4328 4388 source = "registry+https://github.com/rust-lang/crates.io-index" 4329 - checksum = "531c82a934da419bed3da09bd87d6e98c72f8d4aa755427b3b009c2b8b8c433c" 4389 + checksum = "f686d68a09079e63b1d2c64aa305095887ce50565f00a922ebfaeeee0d9ba6ce" 4330 4390 dependencies = [ 4331 4391 "proc-macro2", 4332 4392 "quote", 4333 - "syn 2.0.39", 4393 + "syn 2.0.48", 4334 4394 ] 4335 4395 4336 4396 [[package]] ··· 4368 4428 "proc-macro-error", 4369 4429 "proc-macro2", 4370 4430 "quote", 4371 - "syn 2.0.39", 4431 + "syn 2.0.48", 4372 4432 "termcolor", 4373 4433 "thiserror", 4374 4434 ] ··· 4392 4452 "mysql_common", 4393 4453 "native-tls", 4394 4454 "once_cell", 4395 - "pem 3.0.2", 4455 + "pem 3.0.3", 4396 4456 "percent-encoding", 4397 4457 "pin-project", 4398 4458 "rand 0.8.5", ··· 4413 4473 source = "registry+https://github.com/rust-lang/crates.io-index" 4414 4474 checksum = "06f19e4cfa0ab5a76b627cec2d81331c49b034988eaf302c3bafeada684eadef" 4415 4475 dependencies = [ 4416 - "base64 0.21.5", 4476 + "base64 0.21.7", 4417 4477 "bigdecimal 0.4.2", 4418 - "bindgen 0.69.1", 4419 - "bitflags 2.4.1", 4478 + "bindgen", 4479 + "bitflags 2.4.2", 4420 4480 "bitvec", 4421 4481 "btoi", 4422 4482 "byteorder", ··· 4476 4536 source = "registry+https://github.com/rust-lang/crates.io-index" 4477 4537 checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 4478 4538 dependencies = [ 4479 - "bitflags 2.4.1", 4539 + "bitflags 2.4.2", 4480 4540 "cfg-if", 4481 4541 "libc", 4482 4542 ] ··· 4607 4667 checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 4608 4668 4609 4669 [[package]] 4670 + name = "oauth2" 4671 + version = "4.4.2" 4672 + source = "registry+https://github.com/rust-lang/crates.io-index" 4673 + checksum = "c38841cdd844847e3e7c8d29cef9dcfed8877f8f56f9071f77843ecf3baf937f" 4674 + dependencies = [ 4675 + "base64 0.13.1", 4676 + "chrono", 4677 + "getrandom 0.2.12", 4678 + "http", 4679 + "rand 0.8.5", 4680 + "reqwest", 4681 + "serde", 4682 + "serde_json", 4683 + "serde_path_to_error", 4684 + "sha2 0.10.8", 4685 + "thiserror", 4686 + "url", 4687 + ] 4688 + 4689 + [[package]] 4610 4690 name = "object" 4611 - version = "0.32.1" 4691 + version = "0.32.2" 4612 4692 source = "registry+https://github.com/rust-lang/crates.io-index" 4613 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 4693 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 4614 4694 dependencies = [ 4615 4695 "memchr", 4616 4696 ] ··· 4622 4702 checksum = "2524735495ea1268be33d200e1ee97455096a0846295a21548cd2f3541de7050" 4623 4703 dependencies = [ 4624 4704 "async-trait", 4625 - "base64 0.21.5", 4705 + "base64 0.21.7", 4626 4706 "bytes", 4627 4707 "chrono", 4628 4708 "futures", 4629 4709 "humantime", 4630 4710 "hyper", 4631 4711 "itertools 0.11.0", 4632 - "parking_lot 0.12.1", 4712 + "parking_lot", 4633 4713 "percent-encoding", 4634 4714 "quick-xml 0.31.0", 4635 4715 "rand 0.8.5", 4636 4716 "reqwest", 4637 - "ring 0.17.6", 4717 + "ring 0.17.7", 4638 4718 "serde", 4639 4719 "serde_json", 4640 4720 "snafu", ··· 4646 4726 4647 4727 [[package]] 4648 4728 name = "once_cell" 4649 - version = "1.18.0" 4729 + version = "1.19.0" 4650 4730 source = "registry+https://github.com/rust-lang/crates.io-index" 4651 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 4731 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 4652 4732 4653 4733 [[package]] 4654 4734 name = "onig" ··· 4690 4770 ] 4691 4771 4692 4772 [[package]] 4773 + name = "openidconnect" 4774 + version = "3.4.0" 4775 + source = "registry+https://github.com/rust-lang/crates.io-index" 4776 + checksum = "62d6050f6a84b81f23c569f5607ad883293e57491036e318fafe6fc4895fadb1" 4777 + dependencies = [ 4778 + "base64 0.13.1", 4779 + "chrono", 4780 + "dyn-clone", 4781 + "ed25519-dalek", 4782 + "hmac", 4783 + "http", 4784 + "itertools 0.10.5", 4785 + "log", 4786 + "oauth2", 4787 + "p256 0.13.2", 4788 + "p384", 4789 + "rand 0.8.5", 4790 + "rsa 0.9.6", 4791 + "serde", 4792 + "serde-value", 4793 + "serde_derive", 4794 + "serde_json", 4795 + "serde_path_to_error", 4796 + "serde_plain", 4797 + "serde_with", 4798 + "sha2 0.10.8", 4799 + "subtle", 4800 + "thiserror", 4801 + "url", 4802 + ] 4803 + 4804 + [[package]] 4693 4805 name = "openssl" 4694 - version = "0.10.60" 4806 + version = "0.10.62" 4695 4807 source = "registry+https://github.com/rust-lang/crates.io-index" 4696 - checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" 4808 + checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" 4697 4809 dependencies = [ 4698 - "bitflags 2.4.1", 4810 + "bitflags 2.4.2", 4699 4811 "cfg-if", 4700 4812 "foreign-types", 4701 4813 "libc", ··· 4712 4824 dependencies = [ 4713 4825 "proc-macro2", 4714 4826 "quote", 4715 - "syn 2.0.39", 4827 + "syn 2.0.48", 4716 4828 ] 4717 4829 4718 4830 [[package]] ··· 4723 4835 4724 4836 [[package]] 4725 4837 name = "openssl-sys" 4726 - version = "0.9.96" 4838 + version = "0.9.98" 4727 4839 source = "registry+https://github.com/rust-lang/crates.io-index" 4728 - checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f" 4840 + checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" 4729 4841 dependencies = [ 4730 4842 "cc", 4731 4843 "libc", ··· 4740 4852 checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 4741 4853 4742 4854 [[package]] 4855 + name = "ordered-float" 4856 + version = "2.10.1" 4857 + source = "registry+https://github.com/rust-lang/crates.io-index" 4858 + checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 4859 + dependencies = [ 4860 + "num-traits", 4861 + ] 4862 + 4863 + [[package]] 4743 4864 name = "outref" 4744 4865 version = "0.5.1" 4745 4866 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4757 4878 source = "registry+https://github.com/rust-lang/crates.io-index" 4758 4879 checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 4759 4880 dependencies = [ 4760 - "ecdsa", 4761 - "elliptic-curve", 4881 + "ecdsa 0.14.8", 4882 + "elliptic-curve 0.12.3", 4762 4883 "sha2 0.10.8", 4763 4884 ] 4764 4885 4765 4886 [[package]] 4766 - name = "parking" 4767 - version = "2.2.0" 4887 + name = "p256" 4888 + version = "0.13.2" 4768 4889 source = "registry+https://github.com/rust-lang/crates.io-index" 4769 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 4890 + checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 4891 + dependencies = [ 4892 + "ecdsa 0.16.9", 4893 + "elliptic-curve 0.13.8", 4894 + "primeorder", 4895 + "sha2 0.10.8", 4896 + ] 4770 4897 4771 4898 [[package]] 4772 - name = "parking_lot" 4773 - version = "0.11.2" 4899 + name = "p384" 4900 + version = "0.13.0" 4774 4901 source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 4902 + checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" 4776 4903 dependencies = [ 4777 - "instant", 4778 - "lock_api", 4779 - "parking_lot_core 0.8.6", 4904 + "ecdsa 0.16.9", 4905 + "elliptic-curve 0.13.8", 4906 + "primeorder", 4907 + "sha2 0.10.8", 4780 4908 ] 4781 4909 4782 4910 [[package]] 4911 + name = "parking" 4912 + version = "2.2.0" 4913 + source = "registry+https://github.com/rust-lang/crates.io-index" 4914 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 4915 + 4916 + [[package]] 4783 4917 name = "parking_lot" 4784 4918 version = "0.12.1" 4785 4919 source = "registry+https://github.com/rust-lang/crates.io-index" 4786 4920 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 4787 4921 dependencies = [ 4788 4922 "lock_api", 4789 - "parking_lot_core 0.9.9", 4790 - ] 4791 - 4792 - [[package]] 4793 - name = "parking_lot_core" 4794 - version = "0.8.6" 4795 - source = "registry+https://github.com/rust-lang/crates.io-index" 4796 - checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 4797 - dependencies = [ 4798 - "cfg-if", 4799 - "instant", 4800 - "libc", 4801 - "redox_syscall 0.2.16", 4802 - "smallvec", 4803 - "winapi", 4923 + "parking_lot_core", 4804 4924 ] 4805 4925 4806 4926 [[package]] ··· 4898 5018 4899 5019 [[package]] 4900 5020 name = "pem" 4901 - version = "3.0.2" 5021 + version = "3.0.3" 4902 5022 source = "registry+https://github.com/rust-lang/crates.io-index" 4903 - checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923" 5023 + checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" 4904 5024 dependencies = [ 4905 - "base64 0.21.5", 5025 + "base64 0.21.7", 4906 5026 "serde", 4907 5027 ] 4908 5028 ··· 4938 5058 "archiver-rs", 4939 5059 "async-trait", 4940 5060 "bytes", 4941 - "dirs 5.0.1", 5061 + "dirs", 4942 5062 "futures", 4943 5063 "lazy_static", 4944 5064 "log", 4945 5065 "reqwest", 4946 - "sqlx 0.6.3", 4947 5066 "thiserror", 4948 5067 "tokio", 4949 5068 "zip", ··· 5024 5143 "phf_shared 0.11.2", 5025 5144 "proc-macro2", 5026 5145 "quote", 5027 - "syn 2.0.39", 5146 + "syn 2.0.48", 5028 5147 ] 5029 5148 5030 5149 [[package]] ··· 5062 5181 dependencies = [ 5063 5182 "proc-macro2", 5064 5183 "quote", 5065 - "syn 2.0.39", 5184 + "syn 2.0.48", 5066 5185 ] 5067 5186 5068 5187 [[package]] ··· 5133 5252 5134 5253 [[package]] 5135 5254 name = "pkg-config" 5136 - version = "0.3.27" 5255 + version = "0.3.29" 5137 5256 source = "registry+https://github.com/rust-lang/crates.io-index" 5138 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 5257 + checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 5139 5258 5140 5259 [[package]] 5141 5260 name = "planus" ··· 5147 5266 ] 5148 5267 5149 5268 [[package]] 5269 + name = "platforms" 5270 + version = "3.3.0" 5271 + source = "registry+https://github.com/rust-lang/crates.io-index" 5272 + checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c" 5273 + 5274 + [[package]] 5150 5275 name = "pmutil" 5151 5276 version = "0.5.3" 5152 5277 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5165 5290 dependencies = [ 5166 5291 "proc-macro2", 5167 5292 "quote", 5168 - "syn 2.0.39", 5293 + "syn 2.0.48", 5169 5294 ] 5170 5295 5171 5296 [[package]] ··· 5174 5299 source = "registry+https://github.com/rust-lang/crates.io-index" 5175 5300 checksum = "df8e52f9236eb722da0990a70bbb1216dcc7a77bcb00c63439d2d982823e90d5" 5176 5301 dependencies = [ 5177 - "getrandom 0.2.11", 5302 + "getrandom 0.2.12", 5178 5303 "polars-core", 5179 5304 "polars-io", 5180 5305 "polars-lazy", ··· 5190 5315 source = "registry+https://github.com/rust-lang/crates.io-index" 5191 5316 checksum = "dd503430a6d9779b07915d858865fe998317ef3cfef8973881f578ac5d4baae7" 5192 5317 dependencies = [ 5193 - "ahash 0.8.6", 5318 + "ahash 0.8.7", 5194 5319 "arrow-format", 5195 - "atoi 2.0.0", 5320 + "atoi", 5196 5321 "atoi_simd", 5197 5322 "bytemuck", 5198 5323 "chrono", ··· 5202 5327 "fast-float", 5203 5328 "foreign_vec", 5204 5329 "futures", 5205 - "getrandom 0.2.11", 5330 + "getrandom 0.2.12", 5206 5331 "hashbrown 0.14.3", 5207 5332 "itoa", 5208 5333 "lz4", ··· 5224 5349 source = "registry+https://github.com/rust-lang/crates.io-index" 5225 5350 checksum = "ae73d5b8e55decde670caba1cc82b61f14bfb9a72503198f0997d657a98dcfd6" 5226 5351 dependencies = [ 5227 - "ahash 0.8.6", 5228 - "bitflags 2.4.1", 5352 + "ahash 0.8.7", 5353 + "bitflags 2.4.2", 5229 5354 "bytemuck", 5230 5355 "chrono", 5231 5356 "comfy-table", ··· 5268 5393 source = "registry+https://github.com/rust-lang/crates.io-index" 5269 5394 checksum = "96e10a0745acd6009db64bef0ceb9e23a70b1c27b26a0a6517c91f3e6363bc06" 5270 5395 dependencies = [ 5271 - "ahash 0.8.6", 5396 + "ahash 0.8.7", 5272 5397 "async-trait", 5273 5398 "atoi_simd", 5274 5399 "bytes", ··· 5308 5433 source = "registry+https://github.com/rust-lang/crates.io-index" 5309 5434 checksum = "3555f759705be6dd0d3762d16a0b8787b2dc4da73b57465f3b2bf1a070ba8f20" 5310 5435 dependencies = [ 5311 - "ahash 0.8.6", 5312 - "bitflags 2.4.1", 5436 + "ahash 0.8.7", 5437 + "bitflags 2.4.2", 5313 5438 "futures", 5314 5439 "glob", 5315 5440 "once_cell", ··· 5333 5458 source = "registry+https://github.com/rust-lang/crates.io-index" 5334 5459 checksum = "1a7eb218296aaa7f79945f08288ca32ca3cf25fa505649eeee689ec21eebf636" 5335 5460 dependencies = [ 5336 - "ahash 0.8.6", 5461 + "ahash 0.8.7", 5337 5462 "argminmax", 5338 5463 "bytemuck", 5339 5464 "either", ··· 5357 5482 source = "registry+https://github.com/rust-lang/crates.io-index" 5358 5483 checksum = "146010e4b7dd4d2d0e58ddc762f6361f77d7a0385c54471199370c17164f67dd" 5359 5484 dependencies = [ 5360 - "ahash 0.8.6", 5485 + "ahash 0.8.7", 5361 5486 "async-stream", 5362 - "base64 0.21.5", 5487 + "base64 0.21.7", 5363 5488 "brotli", 5364 5489 "ethnum", 5365 5490 "flate2", ··· 5408 5533 source = "registry+https://github.com/rust-lang/crates.io-index" 5409 5534 checksum = "10e32a0958ef854b132bad7f8369cb3237254635d5e864c99505bc0bc1035fbc" 5410 5535 dependencies = [ 5411 - "ahash 0.8.6", 5536 + "ahash 0.8.7", 5412 5537 "bytemuck", 5413 5538 "once_cell", 5414 5539 "percent-encoding", ··· 5460 5585 source = "registry+https://github.com/rust-lang/crates.io-index" 5461 5586 checksum = "aae56f79e9cedd617773c1c8f5ca84a31a8b1d593714959d5f799e7bdd98fe51" 5462 5587 dependencies = [ 5463 - "atoi 2.0.0", 5588 + "atoi", 5464 5589 "chrono", 5465 5590 "now", 5466 5591 "once_cell", ··· 5479 5604 source = "registry+https://github.com/rust-lang/crates.io-index" 5480 5605 checksum = "da6ce68169fe61d46958c8eab7447360f30f2f23f6e24a0ce703a14b0a3cfbfc" 5481 5606 dependencies = [ 5482 - "ahash 0.8.6", 5607 + "ahash 0.8.7", 5483 5608 "bytemuck", 5484 5609 "hashbrown 0.14.3", 5485 5610 "indexmap 2.1.0", ··· 5510 5635 5511 5636 [[package]] 5512 5637 name = "polling" 5513 - version = "3.3.1" 5638 + version = "3.3.2" 5514 5639 source = "registry+https://github.com/rust-lang/crates.io-index" 5515 - checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" 5640 + checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" 5516 5641 dependencies = [ 5517 5642 "cfg-if", 5518 5643 "concurrent-queue", 5519 5644 "pin-project-lite", 5520 - "rustix 0.38.26", 5645 + "rustix 0.38.30", 5521 5646 "tracing", 5522 5647 "windows-sys 0.52.0", 5523 5648 ] 5524 5649 5525 5650 [[package]] 5526 5651 name = "portable-atomic" 5527 - version = "1.5.1" 5652 + version = "1.6.0" 5528 5653 source = "registry+https://github.com/rust-lang/crates.io-index" 5529 - checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b" 5654 + checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 5530 5655 5531 5656 [[package]] 5532 5657 name = "postgres" ··· 5561 5686 source = "registry+https://github.com/rust-lang/crates.io-index" 5562 5687 checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520" 5563 5688 dependencies = [ 5564 - "base64 0.21.5", 5689 + "base64 0.21.7", 5565 5690 "byteorder", 5566 5691 "bytes", 5567 5692 "fallible-iterator", ··· 5625 5750 5626 5751 [[package]] 5627 5752 name = "prettyplease" 5628 - version = "0.2.15" 5753 + version = "0.2.16" 5629 5754 source = "registry+https://github.com/rust-lang/crates.io-index" 5630 - checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" 5755 + checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" 5631 5756 dependencies = [ 5632 5757 "proc-macro2", 5633 - "syn 2.0.39", 5758 + "syn 2.0.48", 5759 + ] 5760 + 5761 + [[package]] 5762 + name = "primeorder" 5763 + version = "0.13.6" 5764 + source = "registry+https://github.com/rust-lang/crates.io-index" 5765 + checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 5766 + dependencies = [ 5767 + "elliptic-curve 0.13.8", 5634 5768 ] 5635 5769 5636 5770 [[package]] ··· 5645 5779 5646 5780 [[package]] 5647 5781 name = "proc-macro-crate" 5648 - version = "2.0.0" 5782 + version = "3.1.0" 5649 5783 source = "registry+https://github.com/rust-lang/crates.io-index" 5650 - checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 5784 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 5651 5785 dependencies = [ 5652 - "toml_edit 0.20.7", 5786 + "toml_edit 0.21.0", 5653 5787 ] 5654 5788 5655 5789 [[package]] ··· 5684 5818 5685 5819 [[package]] 5686 5820 name = "proc-macro2" 5687 - version = "1.0.70" 5821 + version = "1.0.76" 5688 5822 source = "registry+https://github.com/rust-lang/crates.io-index" 5689 - checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 5823 + checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" 5690 5824 dependencies = [ 5691 5825 "unicode-ident", 5692 5826 ] ··· 5740 5874 "schemars", 5741 5875 "serde", 5742 5876 "serde_json", 5743 - "syn 2.0.39", 5877 + "syn 2.0.48", 5744 5878 "thiserror", 5745 5879 "typify", 5746 5880 "unicode-ident", ··· 5760 5894 "serde_json", 5761 5895 "serde_tokenstream", 5762 5896 "serde_yaml", 5763 - "syn 2.0.39", 5897 + "syn 2.0.48", 5764 5898 ] 5765 5899 5766 5900 [[package]] ··· 5779 5913 "fnv", 5780 5914 "lazy_static", 5781 5915 "memchr", 5782 - "parking_lot 0.12.1", 5916 + "parking_lot", 5783 5917 "thiserror", 5784 5918 ] 5785 5919 ··· 5858 5992 5859 5993 [[package]] 5860 5994 name = "quick-xml" 5861 - version = "0.28.2" 5995 + version = "0.30.0" 5862 5996 source = "registry+https://github.com/rust-lang/crates.io-index" 5863 - checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 5997 + checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 5864 5998 dependencies = [ 5865 5999 "memchr", 5866 6000 "serde", ··· 5882 6016 source = "registry+https://github.com/rust-lang/crates.io-index" 5883 6017 checksum = "f69f8d22fa3f34f3083d9a4375c038732c7a7e964de1beb81c544da92dfc40b8" 5884 6018 dependencies = [ 5885 - "ahash 0.8.6", 6019 + "ahash 0.8.7", 5886 6020 "equivalent", 5887 6021 "hashbrown 0.14.3", 5888 - "parking_lot 0.12.1", 6022 + "parking_lot", 5889 6023 ] 5890 6024 5891 6025 [[package]] 5892 6026 name = "quote" 5893 - version = "1.0.33" 6027 + version = "1.0.35" 5894 6028 source = "registry+https://github.com/rust-lang/crates.io-index" 5895 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 6029 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 5896 6030 dependencies = [ 5897 6031 "proc-macro2", 5898 6032 ] ··· 5968 6102 source = "registry+https://github.com/rust-lang/crates.io-index" 5969 6103 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 5970 6104 dependencies = [ 5971 - "getrandom 0.2.11", 6105 + "getrandom 0.2.12", 5972 6106 ] 5973 6107 5974 6108 [[package]] ··· 6001 6135 6002 6136 [[package]] 6003 6137 name = "rayon" 6004 - version = "1.8.0" 6138 + version = "1.8.1" 6005 6139 source = "registry+https://github.com/rust-lang/crates.io-index" 6006 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 6140 + checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 6007 6141 dependencies = [ 6008 6142 "either", 6009 6143 "rayon-core", ··· 6022 6156 6023 6157 [[package]] 6024 6158 name = "rayon-core" 6025 - version = "1.12.0" 6159 + version = "1.12.1" 6026 6160 source = "registry+https://github.com/rust-lang/crates.io-index" 6027 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 6161 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 6028 6162 dependencies = [ 6029 6163 "crossbeam-deque", 6030 6164 "crossbeam-utils", ··· 6060 6194 6061 6195 [[package]] 6062 6196 name = "redox_syscall" 6063 - version = "0.2.16" 6064 - source = "registry+https://github.com/rust-lang/crates.io-index" 6065 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 6066 - dependencies = [ 6067 - "bitflags 1.3.2", 6068 - ] 6069 - 6070 - [[package]] 6071 - name = "redox_syscall" 6072 6197 version = "0.3.5" 6073 6198 source = "registry+https://github.com/rust-lang/crates.io-index" 6074 6199 checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" ··· 6091 6216 source = "registry+https://github.com/rust-lang/crates.io-index" 6092 6217 checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 6093 6218 dependencies = [ 6094 - "getrandom 0.2.11", 6219 + "getrandom 0.2.12", 6095 6220 "libredox", 6096 6221 "thiserror", 6097 6222 ] ··· 6127 6252 "memchr", 6128 6253 "regex-syntax 0.8.2", 6129 6254 ] 6255 + 6256 + [[package]] 6257 + name = "regex-lite" 6258 + version = "0.1.5" 6259 + source = "registry+https://github.com/rust-lang/crates.io-index" 6260 + checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" 6130 6261 6131 6262 [[package]] 6132 6263 name = "regex-syntax" ··· 6167 6298 6168 6299 [[package]] 6169 6300 name = "reqwest" 6170 - version = "0.11.22" 6301 + version = "0.11.23" 6171 6302 source = "registry+https://github.com/rust-lang/crates.io-index" 6172 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 6303 + checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" 6173 6304 dependencies = [ 6174 - "async-compression 0.4.5", 6175 - "base64 0.21.5", 6305 + "async-compression 0.4.6", 6306 + "base64 0.21.7", 6176 6307 "bytes", 6177 6308 "encoding_rs", 6178 6309 "futures-core", ··· 6191 6322 "once_cell", 6192 6323 "percent-encoding", 6193 6324 "pin-project-lite", 6194 - "rustls 0.21.9", 6325 + "rustls 0.21.10", 6195 6326 "rustls-pemfile", 6196 6327 "serde", 6197 6328 "serde_json", ··· 6224 6355 ] 6225 6356 6226 6357 [[package]] 6358 + name = "rfc6979" 6359 + version = "0.4.0" 6360 + source = "registry+https://github.com/rust-lang/crates.io-index" 6361 + checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 6362 + dependencies = [ 6363 + "hmac", 6364 + "subtle", 6365 + ] 6366 + 6367 + [[package]] 6227 6368 name = "riff" 6228 6369 version = "1.0.1" 6229 6370 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6246 6387 6247 6388 [[package]] 6248 6389 name = "ring" 6249 - version = "0.17.6" 6390 + version = "0.17.7" 6250 6391 source = "registry+https://github.com/rust-lang/crates.io-index" 6251 - checksum = "684d5e6e18f669ccebf64a92236bb7db9a34f07be010e3627368182027180866" 6392 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 6252 6393 dependencies = [ 6253 6394 "cc", 6254 - "getrandom 0.2.11", 6395 + "getrandom 0.2.12", 6255 6396 "libc", 6256 6397 "spin 0.9.8", 6257 6398 "untrusted 0.9.0", ··· 6260 6401 6261 6402 [[package]] 6262 6403 name = "rkyv" 6263 - version = "0.7.42" 6404 + version = "0.7.43" 6264 6405 source = "registry+https://github.com/rust-lang/crates.io-index" 6265 - checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" 6406 + checksum = "527a97cdfef66f65998b5f3b637c26f5a5ec09cc52a3f9932313ac645f4190f5" 6266 6407 dependencies = [ 6267 6408 "bitvec", 6268 6409 "bytecheck", 6410 + "bytes", 6269 6411 "hashbrown 0.12.3", 6270 6412 "ptr_meta", 6271 6413 "rend", ··· 6277 6419 6278 6420 [[package]] 6279 6421 name = "rkyv_derive" 6280 - version = "0.7.42" 6422 + version = "0.7.43" 6281 6423 source = "registry+https://github.com/rust-lang/crates.io-index" 6282 - checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" 6424 + checksum = "b5c462a1328c8e67e4d6dbad1eb0355dd43e8ab432c6e227a43657f16ade5033" 6283 6425 dependencies = [ 6284 6426 "proc-macro2", 6285 6427 "quote", ··· 6309 6451 6310 6452 [[package]] 6311 6453 name = "rsa" 6312 - version = "0.9.5" 6454 + version = "0.9.6" 6313 6455 source = "registry+https://github.com/rust-lang/crates.io-index" 6314 - checksum = "af6c4b23d99685a1408194da11270ef8e9809aff951cc70ec9b17350b087e474" 6456 + checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 6315 6457 dependencies = [ 6316 6458 "const-oid", 6317 6459 "digest 0.10.7", ··· 6362 6504 "proc-macro2", 6363 6505 "quote", 6364 6506 "rust-embed-utils", 6365 - "syn 2.0.39", 6507 + "syn 2.0.48", 6366 6508 "walkdir", 6367 6509 ] 6368 6510 ··· 6420 6562 source = "registry+https://github.com/rust-lang/crates.io-index" 6421 6563 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 6422 6564 dependencies = [ 6423 - "semver 1.0.20", 6565 + "semver 1.0.21", 6424 6566 ] 6425 6567 6426 6568 [[package]] ··· 6452 6594 6453 6595 [[package]] 6454 6596 name = "rustix" 6455 - version = "0.38.26" 6597 + version = "0.38.30" 6456 6598 source = "registry+https://github.com/rust-lang/crates.io-index" 6457 - checksum = "9470c4bf8246c8daf25f9598dca807fb6510347b1e1cfa55749113850c79d88a" 6599 + checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 6458 6600 dependencies = [ 6459 - "bitflags 2.4.1", 6601 + "bitflags 2.4.2", 6460 6602 "errno", 6461 6603 "libc", 6462 - "linux-raw-sys 0.4.12", 6604 + "linux-raw-sys 0.4.13", 6463 6605 "windows-sys 0.52.0", 6464 6606 ] 6465 6607 ··· 6477 6619 6478 6620 [[package]] 6479 6621 name = "rustls" 6480 - version = "0.21.9" 6622 + version = "0.21.10" 6481 6623 source = "registry+https://github.com/rust-lang/crates.io-index" 6482 - checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" 6624 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 6483 6625 dependencies = [ 6484 6626 "log", 6485 - "ring 0.17.6", 6486 - "rustls-webpki", 6627 + "ring 0.17.7", 6628 + "rustls-webpki 0.101.7", 6487 6629 "sct", 6488 6630 ] 6489 6631 6490 6632 [[package]] 6633 + name = "rustls" 6634 + version = "0.22.2" 6635 + source = "registry+https://github.com/rust-lang/crates.io-index" 6636 + checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" 6637 + dependencies = [ 6638 + "log", 6639 + "ring 0.17.7", 6640 + "rustls-pki-types", 6641 + "rustls-webpki 0.102.1", 6642 + "subtle", 6643 + "zeroize", 6644 + ] 6645 + 6646 + [[package]] 6491 6647 name = "rustls-native-certs" 6492 6648 version = "0.6.3" 6493 6649 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6505 6661 source = "registry+https://github.com/rust-lang/crates.io-index" 6506 6662 checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 6507 6663 dependencies = [ 6508 - "base64 0.21.5", 6664 + "base64 0.21.7", 6509 6665 ] 6510 6666 6511 6667 [[package]] 6668 + name = "rustls-pki-types" 6669 + version = "1.1.0" 6670 + source = "registry+https://github.com/rust-lang/crates.io-index" 6671 + checksum = "9e9d979b3ce68192e42760c7810125eb6cf2ea10efae545a156063e61f314e2a" 6672 + 6673 + [[package]] 6512 6674 name = "rustls-webpki" 6513 6675 version = "0.101.7" 6514 6676 source = "registry+https://github.com/rust-lang/crates.io-index" 6515 6677 checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 6516 6678 dependencies = [ 6517 - "ring 0.17.6", 6679 + "ring 0.17.7", 6680 + "untrusted 0.9.0", 6681 + ] 6682 + 6683 + [[package]] 6684 + name = "rustls-webpki" 6685 + version = "0.102.1" 6686 + source = "registry+https://github.com/rust-lang/crates.io-index" 6687 + checksum = "ef4ca26037c909dedb327b48c3327d0ba91d3dd3c4e05dad328f210ffb68e95b" 6688 + dependencies = [ 6689 + "ring 0.17.7", 6690 + "rustls-pki-types", 6518 6691 "untrusted 0.9.0", 6519 6692 ] 6520 6693 ··· 6583 6756 6584 6757 [[package]] 6585 6758 name = "ryu" 6586 - version = "1.0.15" 6759 + version = "1.0.16" 6587 6760 source = "registry+https://github.com/rust-lang/crates.io-index" 6588 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 6761 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 6589 6762 6590 6763 [[package]] 6591 6764 name = "safetensors" ··· 6599 6772 6600 6773 [[package]] 6601 6774 name = "samael" 6602 - version = "0.0.12" 6775 + version = "0.0.14" 6603 6776 source = "registry+https://github.com/rust-lang/crates.io-index" 6604 - checksum = "7af1a6bbd2d98a207abf060c0734b0b9eb8a2a679008bf7bb5296c8876e27958" 6777 + checksum = "b75583aad4a51c50fc0af69c230d18078c9d5a69a98d0f6013d01053acf744f4" 6605 6778 dependencies = [ 6606 - "base64 0.21.5", 6607 - "bindgen 0.65.1", 6779 + "base64 0.21.7", 6780 + "bindgen", 6608 6781 "chrono", 6609 6782 "data-encoding", 6610 6783 "derive_builder", ··· 6616 6789 "openssl-probe", 6617 6790 "openssl-sys", 6618 6791 "pkg-config", 6619 - "quick-xml 0.28.2", 6792 + "quick-xml 0.30.0", 6620 6793 "rand 0.8.5", 6621 6794 "serde", 6622 6795 "thiserror", ··· 6641 6814 6642 6815 [[package]] 6643 6816 name = "schannel" 6644 - version = "0.1.22" 6817 + version = "0.1.23" 6645 6818 source = "registry+https://github.com/rust-lang/crates.io-index" 6646 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 6819 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 6647 6820 dependencies = [ 6648 - "windows-sys 0.48.0", 6821 + "windows-sys 0.52.0", 6649 6822 ] 6650 6823 6651 6824 [[package]] ··· 6692 6865 source = "registry+https://github.com/rust-lang/crates.io-index" 6693 6866 checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 6694 6867 dependencies = [ 6695 - "ring 0.17.6", 6868 + "ring 0.17.7", 6696 6869 "untrusted 0.9.0", 6697 6870 ] 6698 6871 ··· 6708 6881 source = "registry+https://github.com/rust-lang/crates.io-index" 6709 6882 checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 6710 6883 dependencies = [ 6711 - "base16ct", 6884 + "base16ct 0.1.1", 6712 6885 "der 0.6.1", 6713 6886 "generic-array", 6714 6887 "pkcs8 0.9.0", ··· 6717 6890 ] 6718 6891 6719 6892 [[package]] 6893 + name = "sec1" 6894 + version = "0.7.3" 6895 + source = "registry+https://github.com/rust-lang/crates.io-index" 6896 + checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 6897 + dependencies = [ 6898 + "base16ct 0.2.0", 6899 + "der 0.7.8", 6900 + "generic-array", 6901 + "pkcs8 0.10.2", 6902 + "subtle", 6903 + "zeroize", 6904 + ] 6905 + 6906 + [[package]] 6720 6907 name = "security-framework" 6721 6908 version = "2.9.2" 6722 6909 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6750 6937 6751 6938 [[package]] 6752 6939 name = "semver" 6753 - version = "1.0.20" 6940 + version = "1.0.21" 6754 6941 source = "registry+https://github.com/rust-lang/crates.io-index" 6755 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 6942 + checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 6756 6943 dependencies = [ 6757 6944 "serde", 6758 6945 ] ··· 6771 6958 6772 6959 [[package]] 6773 6960 name = "serde" 6774 - version = "1.0.193" 6961 + version = "1.0.195" 6775 6962 source = "registry+https://github.com/rust-lang/crates.io-index" 6776 - checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 6963 + checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" 6777 6964 dependencies = [ 6778 6965 "serde_derive", 6779 6966 ] 6780 6967 6781 6968 [[package]] 6782 6969 name = "serde-aux" 6783 - version = "4.2.0" 6970 + version = "4.4.0" 6784 6971 source = "registry+https://github.com/rust-lang/crates.io-index" 6785 - checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39" 6972 + checksum = "a86348501c129f3ad50c2f4635a01971f76974cd8a3f335988a0f1581c082765" 6786 6973 dependencies = [ 6787 6974 "chrono", 6788 6975 "serde", ··· 6790 6977 ] 6791 6978 6792 6979 [[package]] 6980 + name = "serde-value" 6981 + version = "0.7.0" 6982 + source = "registry+https://github.com/rust-lang/crates.io-index" 6983 + checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 6984 + dependencies = [ 6985 + "ordered-float", 6986 + "serde", 6987 + ] 6988 + 6989 + [[package]] 6793 6990 name = "serde-wasm-bindgen" 6794 6991 version = "0.4.5" 6795 6992 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6802 6999 6803 7000 [[package]] 6804 7001 name = "serde_bytes" 6805 - version = "0.11.12" 7002 + version = "0.11.14" 6806 7003 source = "registry+https://github.com/rust-lang/crates.io-index" 6807 - checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" 7004 + checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" 6808 7005 dependencies = [ 6809 7006 "serde", 6810 7007 ] 6811 7008 6812 7009 [[package]] 6813 7010 name = "serde_derive" 6814 - version = "1.0.193" 7011 + version = "1.0.195" 6815 7012 source = "registry+https://github.com/rust-lang/crates.io-index" 6816 - checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 7013 + checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" 6817 7014 dependencies = [ 6818 7015 "proc-macro2", 6819 7016 "quote", 6820 - "syn 2.0.39", 7017 + "syn 2.0.48", 6821 7018 ] 6822 7019 6823 7020 [[package]] ··· 6833 7030 6834 7031 [[package]] 6835 7032 name = "serde_json" 6836 - version = "1.0.108" 7033 + version = "1.0.111" 6837 7034 source = "registry+https://github.com/rust-lang/crates.io-index" 6838 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 7035 + checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" 6839 7036 dependencies = [ 6840 7037 "indexmap 2.1.0", 6841 7038 "itoa", ··· 6845 7042 6846 7043 [[package]] 6847 7044 name = "serde_path_to_error" 6848 - version = "0.1.14" 7045 + version = "0.1.15" 6849 7046 source = "registry+https://github.com/rust-lang/crates.io-index" 6850 - checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" 7047 + checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c" 6851 7048 dependencies = [ 6852 7049 "itoa", 6853 7050 "serde", ··· 6886 7083 6887 7084 [[package]] 6888 7085 name = "serde_spanned" 6889 - version = "0.6.4" 7086 + version = "0.6.5" 6890 7087 source = "registry+https://github.com/rust-lang/crates.io-index" 6891 - checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 7088 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 6892 7089 dependencies = [ 6893 7090 "serde", 6894 7091 ] ··· 6902 7099 "proc-macro2", 6903 7100 "quote", 6904 7101 "serde", 6905 - "syn 2.0.39", 7102 + "syn 2.0.48", 6906 7103 ] 6907 7104 6908 7105 [[package]] ··· 6934 7131 ] 6935 7132 6936 7133 [[package]] 7134 + name = "serde_with" 7135 + version = "3.4.0" 7136 + source = "registry+https://github.com/rust-lang/crates.io-index" 7137 + checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23" 7138 + dependencies = [ 7139 + "base64 0.21.7", 7140 + "chrono", 7141 + "hex", 7142 + "indexmap 1.9.3", 7143 + "indexmap 2.1.0", 7144 + "serde", 7145 + "serde_json", 7146 + "serde_with_macros", 7147 + "time", 7148 + ] 7149 + 7150 + [[package]] 7151 + name = "serde_with_macros" 7152 + version = "3.4.0" 7153 + source = "registry+https://github.com/rust-lang/crates.io-index" 7154 + checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788" 7155 + dependencies = [ 7156 + "darling 0.20.3", 7157 + "proc-macro2", 7158 + "quote", 7159 + "syn 2.0.48", 7160 + ] 7161 + 7162 + [[package]] 6937 7163 name = "serde_yaml" 6938 - version = "0.9.27" 7164 + version = "0.9.30" 6939 7165 source = "registry+https://github.com/rust-lang/crates.io-index" 6940 - checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c" 7166 + checksum = "b1bf28c79a99f70ee1f1d83d10c875d2e70618417fda01ad1785e027579d9d38" 6941 7167 dependencies = [ 6942 7168 "indexmap 2.1.0", 6943 7169 "itoa", ··· 6999 7225 ] 7000 7226 7001 7227 [[package]] 7228 + name = "sha3" 7229 + version = "0.9.1" 7230 + source = "registry+https://github.com/rust-lang/crates.io-index" 7231 + checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" 7232 + dependencies = [ 7233 + "block-buffer 0.9.0", 7234 + "digest 0.9.0", 7235 + "keccak", 7236 + "opaque-debug", 7237 + ] 7238 + 7239 + [[package]] 7002 7240 name = "sharded-slab" 7003 7241 version = "0.1.7" 7004 7242 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 7077 7315 7078 7316 [[package]] 7079 7317 name = "smallvec" 7080 - version = "1.11.2" 7318 + version = "1.12.0" 7081 7319 source = "registry+https://github.com/rust-lang/crates.io-index" 7082 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 7320 + checksum = "2593d31f82ead8df961d8bd23a64c2ccf2eb5dd34b0a34bfb4dd54011c72009e" 7083 7321 7084 7322 [[package]] 7085 7323 name = "smart-default" ··· 7114 7352 7115 7353 [[package]] 7116 7354 name = "smtp-proto" 7117 - version = "0.1.1" 7355 + version = "0.1.3" 7118 7356 source = "registry+https://github.com/rust-lang/crates.io-index" 7119 - checksum = "d4b756ac662e92a0e5b360349bea5f0b0784d4be4541eff2972049dfdfd7f862" 7357 + checksum = "20b37ae016fedcac2174dd0e3029870154830a4d3fb10f533317f2604e72b343" 7120 7358 7121 7359 [[package]] 7122 7360 name = "snafu" ··· 7142 7380 7143 7381 [[package]] 7144 7382 name = "snap" 7145 - version = "1.1.0" 7383 + version = "1.1.1" 7146 7384 source = "registry+https://github.com/rust-lang/crates.io-index" 7147 - checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831" 7385 + checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" 7148 7386 7149 7387 [[package]] 7150 7388 name = "socket2" ··· 7241 7479 7242 7480 [[package]] 7243 7481 name = "sqlformat" 7244 - version = "0.2.2" 7482 + version = "0.2.3" 7245 7483 source = "registry+https://github.com/rust-lang/crates.io-index" 7246 - checksum = "6b7b278788e7be4d0d29c0f39497a0eef3fba6bbc8e70d8bf7fde46edeaa9e85" 7484 + checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c" 7247 7485 dependencies = [ 7248 - "itertools 0.11.0", 7486 + "itertools 0.12.0", 7249 7487 "nom", 7250 7488 "unicode_categories", 7251 7489 ] ··· 7261 7499 7262 7500 [[package]] 7263 7501 name = "sqlx" 7264 - version = "0.6.3" 7265 - source = "registry+https://github.com/rust-lang/crates.io-index" 7266 - checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188" 7267 - dependencies = [ 7268 - "sqlx-core 0.6.3", 7269 - "sqlx-macros 0.6.3", 7270 - ] 7271 - 7272 - [[package]] 7273 - name = "sqlx" 7274 7502 version = "0.7.3" 7275 7503 source = "registry+https://github.com/rust-lang/crates.io-index" 7276 7504 checksum = "dba03c279da73694ef99763320dea58b51095dfe87d001b1d4b5fe78ba8763cf" 7277 7505 dependencies = [ 7278 - "sqlx-core 0.7.3", 7279 - "sqlx-macros 0.7.3", 7506 + "sqlx-core", 7507 + "sqlx-macros", 7280 7508 "sqlx-mysql", 7281 7509 "sqlx-postgres", 7282 7510 "sqlx-sqlite", ··· 7284 7512 7285 7513 [[package]] 7286 7514 name = "sqlx-core" 7287 - version = "0.6.3" 7288 - source = "registry+https://github.com/rust-lang/crates.io-index" 7289 - checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029" 7290 - dependencies = [ 7291 - "ahash 0.7.7", 7292 - "atoi 1.0.0", 7293 - "base64 0.13.1", 7294 - "bitflags 1.3.2", 7295 - "byteorder", 7296 - "bytes", 7297 - "crc", 7298 - "crossbeam-queue", 7299 - "dirs 4.0.0", 7300 - "dotenvy", 7301 - "either", 7302 - "event-listener 2.5.3", 7303 - "futures-channel", 7304 - "futures-core", 7305 - "futures-intrusive 0.4.2", 7306 - "futures-util", 7307 - "hashlink", 7308 - "hex", 7309 - "hkdf", 7310 - "hmac", 7311 - "indexmap 1.9.3", 7312 - "itoa", 7313 - "libc", 7314 - "log", 7315 - "md-5 0.10.6", 7316 - "memchr", 7317 - "once_cell", 7318 - "paste", 7319 - "percent-encoding", 7320 - "rand 0.8.5", 7321 - "rustls 0.20.9", 7322 - "rustls-pemfile", 7323 - "serde", 7324 - "serde_json", 7325 - "sha1", 7326 - "sha2 0.10.8", 7327 - "smallvec", 7328 - "sqlformat", 7329 - "sqlx-rt", 7330 - "stringprep", 7331 - "thiserror", 7332 - "tokio-stream", 7333 - "url", 7334 - "webpki-roots 0.22.6", 7335 - "whoami", 7336 - ] 7337 - 7338 - [[package]] 7339 - name = "sqlx-core" 7340 7515 version = "0.7.3" 7341 7516 source = "registry+https://github.com/rust-lang/crates.io-index" 7342 7517 checksum = "d84b0a3c3739e220d94b3239fd69fb1f74bc36e16643423bd99de3b43c21bfbd" 7343 7518 dependencies = [ 7344 - "ahash 0.8.6", 7345 - "atoi 2.0.0", 7519 + "ahash 0.8.7", 7520 + "atoi", 7346 7521 "bigdecimal 0.3.1", 7347 7522 "byteorder", 7348 7523 "bytes", ··· 7354 7529 "event-listener 2.5.3", 7355 7530 "futures-channel", 7356 7531 "futures-core", 7357 - "futures-intrusive 0.5.0", 7532 + "futures-intrusive", 7358 7533 "futures-io", 7359 7534 "futures-util", 7360 7535 "hashlink", ··· 7365 7540 "once_cell", 7366 7541 "paste", 7367 7542 "percent-encoding", 7368 - "rustls 0.21.9", 7543 + "rustls 0.21.10", 7369 7544 "rustls-pemfile", 7370 7545 "serde", 7371 7546 "serde_json", ··· 7383 7558 7384 7559 [[package]] 7385 7560 name = "sqlx-macros" 7386 - version = "0.6.3" 7387 - source = "registry+https://github.com/rust-lang/crates.io-index" 7388 - checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9" 7389 - dependencies = [ 7390 - "dotenvy", 7391 - "either", 7392 - "heck", 7393 - "once_cell", 7394 - "proc-macro2", 7395 - "quote", 7396 - "sha2 0.10.8", 7397 - "sqlx-core 0.6.3", 7398 - "sqlx-rt", 7399 - "syn 1.0.109", 7400 - "url", 7401 - ] 7402 - 7403 - [[package]] 7404 - name = "sqlx-macros" 7405 7561 version = "0.7.3" 7406 7562 source = "registry+https://github.com/rust-lang/crates.io-index" 7407 7563 checksum = "89961c00dc4d7dffb7aee214964b065072bff69e36ddb9e2c107541f75e4f2a5" 7408 7564 dependencies = [ 7409 7565 "proc-macro2", 7410 7566 "quote", 7411 - "sqlx-core 0.7.3", 7567 + "sqlx-core", 7412 7568 "sqlx-macros-core", 7413 7569 "syn 1.0.109", 7414 7570 ] ··· 7430 7586 "serde", 7431 7587 "serde_json", 7432 7588 "sha2 0.10.8", 7433 - "sqlx-core 0.7.3", 7589 + "sqlx-core", 7434 7590 "sqlx-mysql", 7435 7591 "sqlx-postgres", 7436 7592 "sqlx-sqlite", ··· 7446 7602 source = "registry+https://github.com/rust-lang/crates.io-index" 7447 7603 checksum = "e37195395df71fd068f6e2082247891bc11e3289624bbc776a0cdfa1ca7f1ea4" 7448 7604 dependencies = [ 7449 - "atoi 2.0.0", 7450 - "base64 0.21.5", 7605 + "atoi", 7606 + "base64 0.21.7", 7451 7607 "bigdecimal 0.3.1", 7452 - "bitflags 2.4.1", 7608 + "bitflags 2.4.2", 7453 7609 "byteorder", 7454 7610 "bytes", 7455 7611 "chrono", ··· 7472 7628 "once_cell", 7473 7629 "percent-encoding", 7474 7630 "rand 0.8.5", 7475 - "rsa 0.9.5", 7631 + "rsa 0.9.6", 7476 7632 "serde", 7477 7633 "sha1", 7478 7634 "sha2 0.10.8", 7479 7635 "smallvec", 7480 - "sqlx-core 0.7.3", 7636 + "sqlx-core", 7481 7637 "stringprep", 7482 7638 "thiserror", 7483 7639 "tracing", ··· 7491 7647 source = "registry+https://github.com/rust-lang/crates.io-index" 7492 7648 checksum = "d6ac0ac3b7ccd10cc96c7ab29791a7dd236bd94021f31eec7ba3d46a74aa1c24" 7493 7649 dependencies = [ 7494 - "atoi 2.0.0", 7495 - "base64 0.21.5", 7650 + "atoi", 7651 + "base64 0.21.7", 7496 7652 "bigdecimal 0.3.1", 7497 - "bitflags 2.4.1", 7653 + "bitflags 2.4.2", 7498 7654 "byteorder", 7499 7655 "chrono", 7500 7656 "crc", ··· 7520 7676 "sha1", 7521 7677 "sha2 0.10.8", 7522 7678 "smallvec", 7523 - "sqlx-core 0.7.3", 7679 + "sqlx-core", 7524 7680 "stringprep", 7525 7681 "thiserror", 7526 7682 "tracing", ··· 7529 7685 ] 7530 7686 7531 7687 [[package]] 7532 - name = "sqlx-rt" 7533 - version = "0.6.3" 7534 - source = "registry+https://github.com/rust-lang/crates.io-index" 7535 - checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024" 7536 - dependencies = [ 7537 - "once_cell", 7538 - "tokio", 7539 - "tokio-rustls 0.23.4", 7540 - ] 7541 - 7542 - [[package]] 7543 7688 name = "sqlx-sqlite" 7544 7689 version = "0.7.3" 7545 7690 source = "registry+https://github.com/rust-lang/crates.io-index" 7546 7691 checksum = "210976b7d948c7ba9fced8ca835b11cbb2d677c59c79de41ac0d397e14547490" 7547 7692 dependencies = [ 7548 - "atoi 2.0.0", 7693 + "atoi", 7549 7694 "chrono", 7550 7695 "flume", 7551 7696 "futures-channel", 7552 7697 "futures-core", 7553 7698 "futures-executor", 7554 - "futures-intrusive 0.5.0", 7699 + "futures-intrusive", 7555 7700 "futures-util", 7556 7701 "libsqlite3-sys", 7557 7702 "log", 7558 7703 "percent-encoding", 7559 7704 "serde", 7560 - "sqlx-core 0.7.3", 7705 + "sqlx-core", 7561 7706 "tracing", 7562 7707 "url", 7563 7708 "urlencoding", ··· 7618 7763 dependencies = [ 7619 7764 "new_debug_unreachable", 7620 7765 "once_cell", 7621 - "parking_lot 0.12.1", 7766 + "parking_lot", 7622 7767 "phf_shared 0.10.0", 7623 7768 "precomputed-hash", 7624 7769 "serde", ··· 7646 7791 "proc-macro2", 7647 7792 "quote", 7648 7793 "swc_macros_common", 7649 - "syn 2.0.39", 7794 + "syn 2.0.48", 7650 7795 ] 7651 7796 7652 7797 [[package]] ··· 7685 7830 "proc-macro2", 7686 7831 "quote", 7687 7832 "rustversion", 7688 - "syn 2.0.39", 7833 + "syn 2.0.48", 7689 7834 ] 7690 7835 7691 7836 [[package]] ··· 7767 7912 "proc-macro2", 7768 7913 "quote", 7769 7914 "swc_macros_common", 7770 - "syn 2.0.39", 7915 + "syn 2.0.48", 7771 7916 ] 7772 7917 7773 7918 [[package]] ··· 7776 7921 source = "registry+https://github.com/rust-lang/crates.io-index" 7777 7922 checksum = "b7191c8c57af059b75a2aadc927a2608c3962d19e4d09ce8f9c3f03739ddf833" 7778 7923 dependencies = [ 7779 - "bitflags 2.4.1", 7780 - "is-macro 0.3.0", 7924 + "bitflags 2.4.2", 7925 + "is-macro 0.3.5", 7781 7926 "num-bigint", 7782 7927 "scoped-tls", 7783 7928 "serde", ··· 7816 7961 "proc-macro2", 7817 7962 "quote", 7818 7963 "swc_macros_common", 7819 - "syn 2.0.39", 7964 + "syn 2.0.48", 7820 7965 ] 7821 7966 7822 7967 [[package]] ··· 7859 8004 checksum = "d8d8ca5dd849cea79e6a9792d725f4082ad3ade7a9541fba960c42d55ae778f2" 7860 8005 dependencies = [ 7861 8006 "better_scoped_tls", 7862 - "bitflags 2.4.1", 8007 + "bitflags 2.4.2", 7863 8008 "indexmap 1.9.3", 7864 8009 "once_cell", 7865 8010 "phf 0.10.1", ··· 7899 8044 "proc-macro2", 7900 8045 "quote", 7901 8046 "swc_macros_common", 7902 - "syn 2.0.39", 8047 + "syn 2.0.48", 7903 8048 ] 7904 8049 7905 8050 [[package]] ··· 8003 8148 "pmutil 0.6.1", 8004 8149 "proc-macro2", 8005 8150 "quote", 8006 - "syn 2.0.39", 8151 + "syn 2.0.48", 8007 8152 ] 8008 8153 8009 8154 [[package]] ··· 8015 8160 "pmutil 0.6.1", 8016 8161 "proc-macro2", 8017 8162 "quote", 8018 - "syn 2.0.39", 8163 + "syn 2.0.48", 8019 8164 ] 8020 8165 8021 8166 [[package]] ··· 8039 8184 "proc-macro2", 8040 8185 "quote", 8041 8186 "swc_macros_common", 8042 - "syn 2.0.39", 8187 + "syn 2.0.48", 8043 8188 ] 8044 8189 8045 8190 [[package]] ··· 8055 8200 8056 8201 [[package]] 8057 8202 name = "syn" 8058 - version = "2.0.39" 8203 + version = "2.0.48" 8059 8204 source = "registry+https://github.com/rust-lang/crates.io-index" 8060 - checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 8205 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 8061 8206 dependencies = [ 8062 8207 "proc-macro2", 8063 8208 "quote", ··· 8073 8218 "proc-macro-error", 8074 8219 "proc-macro2", 8075 8220 "quote", 8076 - "syn 2.0.39", 8221 + "syn 2.0.48", 8077 8222 ] 8078 8223 8079 8224 [[package]] ··· 8090 8235 dependencies = [ 8091 8236 "proc-macro2", 8092 8237 "quote", 8093 - "syn 2.0.39", 8238 + "syn 2.0.48", 8094 8239 "unicode-xid", 8095 8240 ] 8096 8241 ··· 8154 8299 8155 8300 [[package]] 8156 8301 name = "tempfile" 8157 - version = "3.8.1" 8302 + version = "3.9.0" 8158 8303 source = "registry+https://github.com/rust-lang/crates.io-index" 8159 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 8304 + checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 8160 8305 dependencies = [ 8161 8306 "cfg-if", 8162 8307 "fastrand 2.0.1", 8163 8308 "redox_syscall 0.4.1", 8164 - "rustix 0.38.26", 8165 - "windows-sys 0.48.0", 8309 + "rustix 0.38.30", 8310 + "windows-sys 0.52.0", 8166 8311 ] 8167 8312 8168 8313 [[package]] 8169 8314 name = "termcolor" 8170 - version = "1.4.0" 8315 + version = "1.4.1" 8171 8316 source = "registry+https://github.com/rust-lang/crates.io-index" 8172 - checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 8317 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 8173 8318 dependencies = [ 8174 8319 "winapi-util", 8175 8320 ] ··· 8185 8330 8186 8331 [[package]] 8187 8332 name = "thiserror" 8188 - version = "1.0.50" 8333 + version = "1.0.56" 8189 8334 source = "registry+https://github.com/rust-lang/crates.io-index" 8190 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 8335 + checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 8191 8336 dependencies = [ 8192 8337 "thiserror-impl", 8193 8338 ] 8194 8339 8195 8340 [[package]] 8196 8341 name = "thiserror-impl" 8197 - version = "1.0.50" 8342 + version = "1.0.56" 8198 8343 source = "registry+https://github.com/rust-lang/crates.io-index" 8199 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 8344 + checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 8200 8345 dependencies = [ 8201 8346 "proc-macro2", 8202 8347 "quote", 8203 - "syn 2.0.39", 8348 + "syn 2.0.48", 8204 8349 ] 8205 8350 8206 8351 [[package]] ··· 8254 8399 8255 8400 [[package]] 8256 8401 name = "time" 8257 - version = "0.3.30" 8402 + version = "0.3.31" 8258 8403 source = "registry+https://github.com/rust-lang/crates.io-index" 8259 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 8404 + checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 8260 8405 dependencies = [ 8261 8406 "deranged", 8262 8407 "itoa", ··· 8274 8419 8275 8420 [[package]] 8276 8421 name = "time-macros" 8277 - version = "0.2.15" 8422 + version = "0.2.16" 8278 8423 source = "registry+https://github.com/rust-lang/crates.io-index" 8279 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 8424 + checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 8280 8425 dependencies = [ 8281 8426 "time-core", 8282 8427 ] ··· 8330 8475 "clap", 8331 8476 "derive_builder", 8332 8477 "esaxx-rs", 8333 - "getrandom 0.2.11", 8478 + "getrandom 0.2.12", 8334 8479 "indicatif", 8335 8480 "itertools 0.11.0", 8336 8481 "lazy_static", ··· 8355 8500 8356 8501 [[package]] 8357 8502 name = "tokio" 8358 - version = "1.32.0" 8503 + version = "1.32.1" 8359 8504 source = "registry+https://github.com/rust-lang/crates.io-index" 8360 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 8505 + checksum = "777d57dcc6bb4cf084e3212e1858447222aa451f21b5e2452497d9100da65b91" 8361 8506 dependencies = [ 8362 8507 "backtrace", 8363 8508 "bytes", 8364 8509 "libc", 8365 8510 "mio", 8366 8511 "num_cpus", 8367 - "parking_lot 0.12.1", 8512 + "parking_lot", 8368 8513 "pin-project-lite", 8369 8514 "signal-hook-registry", 8370 8515 "socket2 0.5.5", ··· 8381 8526 dependencies = [ 8382 8527 "proc-macro2", 8383 8528 "quote", 8384 - "syn 2.0.39", 8529 + "syn 2.0.48", 8385 8530 ] 8386 8531 8387 8532 [[package]] ··· 8418 8563 "futures-channel", 8419 8564 "futures-util", 8420 8565 "log", 8421 - "parking_lot 0.12.1", 8566 + "parking_lot", 8422 8567 "percent-encoding", 8423 8568 "phf 0.11.2", 8424 8569 "pin-project-lite", ··· 8448 8593 source = "registry+https://github.com/rust-lang/crates.io-index" 8449 8594 checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 8450 8595 dependencies = [ 8451 - "rustls 0.21.9", 8596 + "rustls 0.21.10", 8597 + "tokio", 8598 + ] 8599 + 8600 + [[package]] 8601 + name = "tokio-rustls" 8602 + version = "0.25.0" 8603 + source = "registry+https://github.com/rust-lang/crates.io-index" 8604 + checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 8605 + dependencies = [ 8606 + "rustls 0.22.2", 8607 + "rustls-pki-types", 8452 8608 "tokio", 8453 8609 ] 8454 8610 ··· 8553 8709 8554 8710 [[package]] 8555 8711 name = "toml_edit" 8556 - version = "0.20.7" 8557 - source = "registry+https://github.com/rust-lang/crates.io-index" 8558 - checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 8559 - dependencies = [ 8560 - "indexmap 2.1.0", 8561 - "toml_datetime", 8562 - "winnow", 8563 - ] 8564 - 8565 - [[package]] 8566 - name = "toml_edit" 8567 8712 version = "0.21.0" 8568 8713 source = "registry+https://github.com/rust-lang/crates.io-index" 8569 8714 checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" ··· 8584 8729 "home", 8585 8730 "once_cell", 8586 8731 "regex", 8587 - "semver 1.0.20", 8732 + "semver 1.0.21", 8588 8733 "walkdir", 8589 8734 ] 8590 8735 ··· 8615 8760 "cookie", 8616 8761 "futures-util", 8617 8762 "http", 8618 - "parking_lot 0.12.1", 8763 + "parking_lot", 8619 8764 "pin-project-lite", 8620 8765 "tower-layer", 8621 8766 "tower-service", ··· 8627 8772 source = "registry+https://github.com/rust-lang/crates.io-index" 8628 8773 checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" 8629 8774 dependencies = [ 8630 - "bitflags 2.4.1", 8775 + "bitflags 2.4.2", 8631 8776 "bytes", 8632 8777 "futures-core", 8633 8778 "futures-util", ··· 8672 8817 dependencies = [ 8673 8818 "proc-macro2", 8674 8819 "quote", 8675 - "syn 2.0.39", 8820 + "syn 2.0.48", 8676 8821 ] 8677 8822 8678 8823 [[package]] ··· 8792 8937 8793 8938 [[package]] 8794 8939 name = "try-lock" 8795 - version = "0.2.4" 8940 + version = "0.2.5" 8796 8941 source = "registry+https://github.com/rust-lang/crates.io-index" 8797 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 8942 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 8798 8943 8799 8944 [[package]] 8800 8945 name = "twox-hash" ··· 8842 8987 "regress", 8843 8988 "schemars", 8844 8989 "serde_json", 8845 - "syn 2.0.39", 8990 + "syn 2.0.48", 8846 8991 "thiserror", 8847 8992 "unicode-ident", 8848 8993 ] ··· 8859 9004 "serde", 8860 9005 "serde_json", 8861 9006 "serde_tokenstream", 8862 - "syn 2.0.39", 9007 + "syn 2.0.48", 8863 9008 "typify-impl", 8864 9009 ] 8865 9010 ··· 8948 9093 8949 9094 [[package]] 8950 9095 name = "unicode-bidi" 8951 - version = "0.3.13" 9096 + version = "0.3.15" 8952 9097 source = "registry+https://github.com/rust-lang/crates.io-index" 8953 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 9098 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 8954 9099 8955 9100 [[package]] 8956 9101 name = "unicode-id" ··· 9014 9159 9015 9160 [[package]] 9016 9161 name = "unsafe-libyaml" 9017 - version = "0.2.9" 9162 + version = "0.2.10" 9018 9163 source = "registry+https://github.com/rust-lang/crates.io-index" 9019 - checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 9164 + checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" 9020 9165 9021 9166 [[package]] 9022 9167 name = "untrusted" ··· 9036 9181 source = "registry+https://github.com/rust-lang/crates.io-index" 9037 9182 checksum = "f8cdd25c339e200129fe4de81451814e5228c9b771d57378817d6117cc2b3f97" 9038 9183 dependencies = [ 9039 - "base64 0.21.5", 9184 + "base64 0.21.7", 9040 9185 "flate2", 9041 9186 "log", 9042 9187 "native-tls", 9043 9188 "once_cell", 9044 - "rustls 0.21.9", 9045 - "rustls-webpki", 9189 + "rustls 0.21.10", 9190 + "rustls-webpki 0.101.7", 9046 9191 "serde", 9047 9192 "serde_json", 9048 9193 "url", ··· 9092 9237 source = "registry+https://github.com/rust-lang/crates.io-index" 9093 9238 checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 9094 9239 dependencies = [ 9095 - "getrandom 0.2.11", 9240 + "getrandom 0.2.12", 9096 9241 ] 9097 9242 9098 9243 [[package]] ··· 9101 9246 source = "registry+https://github.com/rust-lang/crates.io-index" 9102 9247 checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 9103 9248 dependencies = [ 9104 - "getrandom 0.2.11", 9249 + "getrandom 0.2.12", 9105 9250 "serde", 9106 9251 ] 9107 9252 ··· 9125 9270 9126 9271 [[package]] 9127 9272 name = "value-bag" 9128 - version = "1.4.2" 9273 + version = "1.6.0" 9129 9274 source = "registry+https://github.com/rust-lang/crates.io-index" 9130 - checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe" 9275 + checksum = "7cdbaf5e132e593e9fc1de6a15bbec912395b11fb9719e061cf64f804524c503" 9131 9276 9132 9277 [[package]] 9133 9278 name = "vcpkg" ··· 9205 9350 "once_cell", 9206 9351 "proc-macro2", 9207 9352 "quote", 9208 - "syn 2.0.39", 9353 + "syn 2.0.48", 9209 9354 "wasm-bindgen-shared", 9210 9355 ] 9211 9356 ··· 9239 9384 dependencies = [ 9240 9385 "proc-macro2", 9241 9386 "quote", 9242 - "syn 2.0.39", 9387 + "syn 2.0.48", 9243 9388 "wasm-bindgen-backend", 9244 9389 "wasm-bindgen-shared", 9245 9390 ] ··· 9272 9417 dependencies = [ 9273 9418 "proc-macro2", 9274 9419 "quote", 9275 - "syn 2.0.39", 9420 + "syn 2.0.48", 9276 9421 ] 9277 9422 9278 9423 [[package]] ··· 9313 9458 source = "registry+https://github.com/rust-lang/crates.io-index" 9314 9459 checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" 9315 9460 dependencies = [ 9316 - "ring 0.17.6", 9461 + "ring 0.17.7", 9317 9462 "untrusted 0.9.0", 9318 9463 ] 9319 9464 ··· 9333 9478 checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 9334 9479 9335 9480 [[package]] 9481 + name = "webpki-roots" 9482 + version = "0.26.0" 9483 + source = "registry+https://github.com/rust-lang/crates.io-index" 9484 + checksum = "0de2cfda980f21be5a7ed2eadb3e6fe074d56022bea2cdeb1a62eb220fc04188" 9485 + dependencies = [ 9486 + "rustls-pki-types", 9487 + ] 9488 + 9489 + [[package]] 9336 9490 name = "which" 9337 9491 version = "4.4.2" 9338 9492 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 9341 9495 "either", 9342 9496 "home", 9343 9497 "once_cell", 9344 - "rustix 0.38.26", 9498 + "rustix 0.38.30", 9345 9499 ] 9346 9500 9347 9501 [[package]] ··· 9387 9541 9388 9542 [[package]] 9389 9543 name = "windmill" 9390 - version = "1.219.1" 9544 + version = "1.246.15" 9391 9545 dependencies = [ 9392 9546 "anyhow", 9393 9547 "axum", 9394 - "base64 0.21.5", 9548 + "base64 0.21.7", 9395 9549 "chrono", 9396 9550 "dotenv", 9397 9551 "futures", ··· 9407 9561 "serde", 9408 9562 "serde_json", 9409 9563 "sha2 0.10.8", 9410 - "sqlx 0.7.3", 9564 + "sqlx", 9411 9565 "tokio", 9412 9566 "tokio-metrics", 9413 9567 "tracing", ··· 9416 9570 "windmill-api", 9417 9571 "windmill-api-client", 9418 9572 "windmill-common", 9573 + "windmill-git-sync", 9419 9574 "windmill-queue", 9420 9575 "windmill-worker", 9421 9576 ] 9422 9577 9423 9578 [[package]] 9424 9579 name = "windmill-api" 9425 - version = "1.219.1" 9580 + version = "1.246.15" 9426 9581 dependencies = [ 9427 9582 "anyhow", 9428 9583 "argon2", ··· 9430 9585 "async-recursion", 9431 9586 "async-stripe", 9432 9587 "async_zip", 9433 - "aws-config", 9434 9588 "aws-sdk-s3", 9435 9589 "axum", 9436 - "base64 0.21.5", 9590 + "base64 0.21.7", 9437 9591 "bytes", 9438 9592 "candle-core", 9439 9593 "candle-nn", ··· 9454 9608 "mail-send", 9455 9609 "mime_guess", 9456 9610 "object_store", 9611 + "openidconnect", 9457 9612 "polars", 9458 9613 "polars-io", 9459 9614 "prometheus", ··· 9470 9625 "serde_urlencoded", 9471 9626 "sha2 0.10.8", 9472 9627 "sql-builder", 9473 - "sqlx 0.7.3", 9628 + "sqlx", 9474 9629 "tempfile", 9475 9630 "time", 9476 9631 "tinyvector", ··· 9487 9642 "uuid 1.6.1", 9488 9643 "windmill-audit", 9489 9644 "windmill-common", 9645 + "windmill-git-sync", 9490 9646 "windmill-parser", 9491 9647 "windmill-parser-py-imports", 9492 9648 "windmill-queue", ··· 9494 9650 9495 9651 [[package]] 9496 9652 name = "windmill-api-client" 9497 - version = "1.219.1" 9653 + version = "1.246.15" 9498 9654 dependencies = [ 9499 - "base64 0.21.5", 9655 + "base64 0.21.7", 9500 9656 "chrono", 9501 9657 "openapiv3", 9502 9658 "prettyplease 0.1.25", ··· 9512 9668 9513 9669 [[package]] 9514 9670 name = "windmill-audit" 9515 - version = "1.219.1" 9671 + version = "1.246.15" 9516 9672 dependencies = [ 9517 9673 "chrono", 9518 9674 "serde", 9519 9675 "serde_json", 9520 9676 "sql-builder", 9521 - "sqlx 0.7.3", 9677 + "sqlx", 9522 9678 "tracing", 9523 9679 "windmill-common", 9524 9680 ] 9525 9681 9526 9682 [[package]] 9527 9683 name = "windmill-common" 9528 - version = "1.219.1" 9684 + version = "1.246.15" 9529 9685 dependencies = [ 9530 9686 "anyhow", 9687 + "aws-config", 9688 + "aws-sdk-s3", 9531 9689 "axum", 9532 9690 "chrono", 9533 9691 "cron", ··· 9537 9695 "hyper", 9538 9696 "itertools 0.12.0", 9539 9697 "lazy_static", 9698 + "magic-crypt", 9540 9699 "prometheus", 9541 9700 "rand 0.8.5", 9542 9701 "regex", ··· 9544 9703 "serde", 9545 9704 "serde_json", 9546 9705 "sha2 0.10.8", 9547 - "sqlx 0.7.3", 9706 + "sqlx", 9548 9707 "thiserror", 9549 9708 "tokio", 9550 9709 "tracing", ··· 9555 9714 ] 9556 9715 9557 9716 [[package]] 9717 + name = "windmill-git-sync" 9718 + version = "1.246.15" 9719 + dependencies = [ 9720 + "rsmq_async", 9721 + "serde", 9722 + "serde_json", 9723 + "sqlx", 9724 + "tracing", 9725 + "uuid 1.6.1", 9726 + "windmill-common", 9727 + "windmill-queue", 9728 + ] 9729 + 9730 + [[package]] 9558 9731 name = "windmill-parser" 9559 - version = "1.219.1" 9732 + version = "1.246.15" 9560 9733 dependencies = [ 9561 9734 "serde", 9562 9735 "serde_json", ··· 9564 9737 9565 9738 [[package]] 9566 9739 name = "windmill-parser-bash" 9567 - version = "1.219.1" 9740 + version = "1.246.15" 9568 9741 dependencies = [ 9569 9742 "anyhow", 9570 9743 "lazy_static", ··· 9575 9748 9576 9749 [[package]] 9577 9750 name = "windmill-parser-go" 9578 - version = "1.219.1" 9751 + version = "1.246.15" 9579 9752 dependencies = [ 9580 9753 "anyhow", 9581 9754 "gosyn", ··· 9587 9760 9588 9761 [[package]] 9589 9762 name = "windmill-parser-graphql" 9590 - version = "1.219.1" 9763 + version = "1.246.15" 9591 9764 dependencies = [ 9592 9765 "anyhow", 9593 9766 "lazy_static", ··· 9598 9771 9599 9772 [[package]] 9600 9773 name = "windmill-parser-py" 9601 - version = "1.219.1" 9774 + version = "1.246.15" 9602 9775 dependencies = [ 9603 9776 "anyhow", 9604 9777 "itertools 0.12.0", ··· 9609 9782 9610 9783 [[package]] 9611 9784 name = "windmill-parser-py-imports" 9612 - version = "1.219.1" 9785 + version = "1.246.15" 9613 9786 dependencies = [ 9614 9787 "anyhow", 9615 9788 "async-recursion", ··· 9619 9792 "regex", 9620 9793 "rustpython-parser", 9621 9794 "serde_json", 9622 - "sqlx 0.7.3", 9795 + "sqlx", 9623 9796 "windmill-common", 9624 9797 "windmill-parser", 9625 9798 ] 9626 9799 9627 9800 [[package]] 9628 9801 name = "windmill-parser-sql" 9629 - version = "1.219.1" 9802 + version = "1.246.15" 9630 9803 dependencies = [ 9631 9804 "anyhow", 9632 9805 "lazy_static", ··· 9637 9810 9638 9811 [[package]] 9639 9812 name = "windmill-parser-ts" 9640 - version = "1.219.1" 9813 + version = "1.246.15" 9641 9814 dependencies = [ 9642 9815 "anyhow", 9643 9816 "convert_case 0.6.0", 9817 + "lazy_static", 9644 9818 "regex", 9645 9819 "serde-wasm-bindgen", 9646 9820 "serde_json", ··· 9654 9828 9655 9829 [[package]] 9656 9830 name = "windmill-parser-wasm" 9657 - version = "1.219.1" 9831 + version = "1.246.15" 9658 9832 dependencies = [ 9659 9833 "anyhow", 9660 - "getrandom 0.2.11", 9834 + "getrandom 0.2.12", 9661 9835 "serde_json", 9662 9836 "wasm-bindgen", 9663 9837 "wasm-bindgen-test", ··· 9672 9846 9673 9847 [[package]] 9674 9848 name = "windmill-queue" 9675 - version = "1.219.1" 9849 + version = "1.246.15" 9676 9850 dependencies = [ 9677 9851 "anyhow", 9678 9852 "async-recursion", ··· 9687 9861 "itertools 0.12.0", 9688 9862 "lazy_static", 9689 9863 "prometheus", 9864 + "regex", 9690 9865 "reqwest", 9691 9866 "rsmq_async", 9692 9867 "serde", 9693 9868 "serde_json", 9694 9869 "serde_urlencoded", 9695 9870 "sql-builder", 9696 - "sqlx 0.7.3", 9871 + "sqlx", 9697 9872 "tokio", 9698 9873 "tracing", 9699 9874 "ulid", ··· 9704 9879 9705 9880 [[package]] 9706 9881 name = "windmill-worker" 9707 - version = "1.219.1" 9882 + version = "1.246.15" 9708 9883 dependencies = [ 9709 9884 "anyhow", 9710 9885 "async-recursion", 9711 - "base64 0.21.5", 9886 + "base64 0.21.7", 9712 9887 "bytes", 9713 9888 "chrono", 9714 9889 "const_format", ··· 9733 9908 "native-tls", 9734 9909 "nix", 9735 9910 "once_cell", 9736 - "pem 3.0.2", 9911 + "openidconnect", 9912 + "pem 3.0.3", 9737 9913 "postgres-native-tls", 9738 9914 "prometheus", 9739 9915 "rand 0.8.5", ··· 9744 9920 "serde", 9745 9921 "serde_json", 9746 9922 "sha2 0.10.8", 9747 - "sqlx 0.7.3", 9923 + "sqlx", 9748 9924 "tiberius", 9749 9925 "tokio", 9750 9926 "tokio-postgres", ··· 9754 9930 "uuid 1.6.1", 9755 9931 "windmill-audit", 9756 9932 "windmill-common", 9933 + "windmill-git-sync", 9757 9934 "windmill-parser", 9758 9935 "windmill-parser-bash", 9759 9936 "windmill-parser-go", ··· 9767 9944 9768 9945 [[package]] 9769 9946 name = "windows-core" 9770 - version = "0.51.1" 9771 - source = "registry+https://github.com/rust-lang/crates.io-index" 9772 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 9773 - dependencies = [ 9774 - "windows-targets 0.48.5", 9775 - ] 9776 - 9777 - [[package]] 9778 - name = "windows-sys" 9779 - version = "0.45.0" 9947 + version = "0.52.0" 9780 9948 source = "registry+https://github.com/rust-lang/crates.io-index" 9781 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 9949 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 9782 9950 dependencies = [ 9783 - "windows-targets 0.42.2", 9951 + "windows-targets 0.52.0", 9784 9952 ] 9785 9953 9786 9954 [[package]] ··· 9803 9971 9804 9972 [[package]] 9805 9973 name = "windows-targets" 9806 - version = "0.42.2" 9807 - source = "registry+https://github.com/rust-lang/crates.io-index" 9808 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 9809 - dependencies = [ 9810 - "windows_aarch64_gnullvm 0.42.2", 9811 - "windows_aarch64_msvc 0.42.2", 9812 - "windows_i686_gnu 0.42.2", 9813 - "windows_i686_msvc 0.42.2", 9814 - "windows_x86_64_gnu 0.42.2", 9815 - "windows_x86_64_gnullvm 0.42.2", 9816 - "windows_x86_64_msvc 0.42.2", 9817 - ] 9818 - 9819 - [[package]] 9820 - name = "windows-targets" 9821 9974 version = "0.48.5" 9822 9975 source = "registry+https://github.com/rust-lang/crates.io-index" 9823 9976 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" ··· 9848 10001 9849 10002 [[package]] 9850 10003 name = "windows_aarch64_gnullvm" 9851 - version = "0.42.2" 9852 - source = "registry+https://github.com/rust-lang/crates.io-index" 9853 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 9854 - 9855 - [[package]] 9856 - name = "windows_aarch64_gnullvm" 9857 10004 version = "0.48.5" 9858 10005 source = "registry+https://github.com/rust-lang/crates.io-index" 9859 10006 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" ··· 9866 10013 9867 10014 [[package]] 9868 10015 name = "windows_aarch64_msvc" 9869 - version = "0.42.2" 9870 - source = "registry+https://github.com/rust-lang/crates.io-index" 9871 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 9872 - 9873 - [[package]] 9874 - name = "windows_aarch64_msvc" 9875 10016 version = "0.48.5" 9876 10017 source = "registry+https://github.com/rust-lang/crates.io-index" 9877 10018 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" ··· 9884 10025 9885 10026 [[package]] 9886 10027 name = "windows_i686_gnu" 9887 - version = "0.42.2" 9888 - source = "registry+https://github.com/rust-lang/crates.io-index" 9889 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 9890 - 9891 - [[package]] 9892 - name = "windows_i686_gnu" 9893 10028 version = "0.48.5" 9894 10029 source = "registry+https://github.com/rust-lang/crates.io-index" 9895 10030 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" ··· 9902 10037 9903 10038 [[package]] 9904 10039 name = "windows_i686_msvc" 9905 - version = "0.42.2" 9906 - source = "registry+https://github.com/rust-lang/crates.io-index" 9907 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 9908 - 9909 - [[package]] 9910 - name = "windows_i686_msvc" 9911 10040 version = "0.48.5" 9912 10041 source = "registry+https://github.com/rust-lang/crates.io-index" 9913 10042 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" ··· 9920 10049 9921 10050 [[package]] 9922 10051 name = "windows_x86_64_gnu" 9923 - version = "0.42.2" 9924 - source = "registry+https://github.com/rust-lang/crates.io-index" 9925 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 9926 - 9927 - [[package]] 9928 - name = "windows_x86_64_gnu" 9929 10052 version = "0.48.5" 9930 10053 source = "registry+https://github.com/rust-lang/crates.io-index" 9931 10054 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" ··· 9938 10061 9939 10062 [[package]] 9940 10063 name = "windows_x86_64_gnullvm" 9941 - version = "0.42.2" 9942 - source = "registry+https://github.com/rust-lang/crates.io-index" 9943 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 9944 - 9945 - [[package]] 9946 - name = "windows_x86_64_gnullvm" 9947 10064 version = "0.48.5" 9948 10065 source = "registry+https://github.com/rust-lang/crates.io-index" 9949 10066 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" ··· 9953 10070 version = "0.52.0" 9954 10071 source = "registry+https://github.com/rust-lang/crates.io-index" 9955 10072 checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 9956 - 9957 - [[package]] 9958 - name = "windows_x86_64_msvc" 9959 - version = "0.42.2" 9960 - source = "registry+https://github.com/rust-lang/crates.io-index" 9961 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 9962 10073 9963 10074 [[package]] 9964 10075 name = "windows_x86_64_msvc" ··· 9974 10085 9975 10086 [[package]] 9976 10087 name = "winnow" 9977 - version = "0.5.19" 10088 + version = "0.5.34" 9978 10089 source = "registry+https://github.com/rust-lang/crates.io-index" 9979 - checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 10090 + checksum = "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" 9980 10091 dependencies = [ 9981 10092 "memchr", 9982 10093 ] ··· 10002 10113 10003 10114 [[package]] 10004 10115 name = "xattr" 10005 - version = "1.0.1" 10116 + version = "1.3.1" 10006 10117 source = "registry+https://github.com/rust-lang/crates.io-index" 10007 - checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 10118 + checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 10008 10119 dependencies = [ 10009 10120 "libc", 10121 + "linux-raw-sys 0.4.13", 10122 + "rustix 0.38.30", 10010 10123 ] 10011 10124 10012 10125 [[package]] ··· 10017 10130 10018 10131 [[package]] 10019 10132 name = "xxhash-rust" 10020 - version = "0.8.7" 10133 + version = "0.8.8" 10021 10134 source = "registry+https://github.com/rust-lang/crates.io-index" 10022 - checksum = "9828b178da53440fa9c766a3d2f73f7cf5d0ac1fe3980c1e5018d899fd19e07b" 10135 + checksum = "53be06678ed9e83edb1745eb72efc0bbcd7b5c3c35711a860906aed827a13d61" 10023 10136 10024 10137 [[package]] 10025 10138 name = "xz2" ··· 10050 10163 dependencies = [ 10051 10164 "proc-macro2", 10052 10165 "quote", 10053 - "syn 2.0.39", 10166 + "syn 2.0.48", 10054 10167 "synstructure", 10055 10168 ] 10056 10169 10057 10170 [[package]] 10058 10171 name = "zerocopy" 10059 - version = "0.7.28" 10172 + version = "0.7.32" 10060 10173 source = "registry+https://github.com/rust-lang/crates.io-index" 10061 - checksum = "7d6f15f7ade05d2a4935e34a457b936c23dc70a05cc1d97133dc99e7a3fe0f0e" 10174 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 10062 10175 dependencies = [ 10063 10176 "zerocopy-derive", 10064 10177 ] 10065 10178 10066 10179 [[package]] 10067 10180 name = "zerocopy-derive" 10068 - version = "0.7.28" 10181 + version = "0.7.32" 10069 10182 source = "registry+https://github.com/rust-lang/crates.io-index" 10070 - checksum = "dbbad221e3f78500350ecbd7dfa4e63ef945c05f4c61cb7f4d3f84cd0bba649b" 10183 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 10071 10184 dependencies = [ 10072 10185 "proc-macro2", 10073 10186 "quote", 10074 - "syn 2.0.39", 10187 + "syn 2.0.48", 10075 10188 ] 10076 10189 10077 10190 [[package]] ··· 10091 10204 dependencies = [ 10092 10205 "proc-macro2", 10093 10206 "quote", 10094 - "syn 2.0.39", 10207 + "syn 2.0.48", 10095 10208 "synstructure", 10096 10209 ] 10097 10210
+3 -3
pkgs/by-name/wi/windmill/package.nix
··· 24 24 25 25 let 26 26 pname = "windmill"; 27 - version = "1.219.1"; 27 + version = "1.246.15"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "windmill-labs"; 31 31 repo = "windmill"; 32 32 rev = "v${version}"; 33 - hash = "sha256-HGZuIun9PWi3Fv/kX95k4xnXu1L604teWUKXzjVXKF0="; 33 + hash = "sha256-5KDSCag70ww1mYvfKf3rg2RTi80rEWZnMTXB+/6VsNM="; 34 34 }; 35 35 36 36 pythonEnv = python3.withPackages (ps: [ ps.pip-tools ]); ··· 42 42 43 43 sourceRoot = "${src.name}/frontend"; 44 44 45 - npmDepsHash = "sha256-1uya/4FjMHTDW/KX1YinhTT/Mb7bJ9XVTWc6cU0oqJ8="; 45 + npmDepsHash = "sha256-PdRNjUQdr1NgTO5UaWfH8rJeiFB/VJ6sJkwhpmPo/1A="; 46 46 47 47 # without these you get a 48 48 # FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
+5 -5
pkgs/data/fonts/inconsolata/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "inconsolata"; 5 - version = "unstable-2021-01-19"; 5 + version = "3.001"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "google"; 9 9 repo = "fonts"; 10 - rev = "f113126dc4b9b1473d9354a86129c9d7b837aa1a"; 11 - sha256 = "0safw5prpa63mqcyfw3gr3a535w4c9hg5ayw5pkppiwil7n3pyxs"; 10 + rev = "0f203e3740b5eb77e0b179dff1e5869482676782"; 11 + sha256 = "sha256-Q8eUJ0mkoB245Ifz5ulxx61x4+AqKhG0uqhWF2nSLpw="; 12 12 }; 13 13 14 14 installPhase = '' 15 - install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/*.ttf 15 + install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/static/*.ttf 16 16 ''; 17 17 18 18 meta = with lib; { 19 19 homepage = "https://www.levien.com/type/myfonts/inconsolata.html"; 20 20 description = "A monospace font for both screen and print"; 21 - maintainers = with maintainers; [ mikoim raskin ]; 21 + maintainers = with maintainers; [ appsforartists mikoim raskin ]; 22 22 license = licenses.ofl; 23 23 platforms = platforms.all; 24 24 };
+4 -1
pkgs/development/compilers/fpc/default.nix
··· 36 36 substituteInPlace fpcsrc/compiler/systems/t_linux.pas --subst-var-by syslibpath "${glibc}/lib" 37 37 # Replace the `codesign --remove-signature` command with a custom script, since `codesign` is not available 38 38 # in nixpkgs 39 + # Remove the -no_uuid strip flag which does not work on llvm-strip, only 40 + # Apple strip. 39 41 substituteInPlace fpcsrc/compiler/Makefile \ 40 42 --replace \ 41 43 "\$(CODESIGN) --remove-signature" \ 42 44 "${./remove-signature.sh}" \ 43 - --replace "ifneq (\$(CODESIGN),)" "ifeq (\$(OS_TARGET), darwin)" 45 + --replace "ifneq (\$(CODESIGN),)" "ifeq (\$(OS_TARGET), darwin)" \ 46 + --replace "-no_uuid" "" 44 47 ''; 45 48 46 49 NIX_LDFLAGS = lib.optionalString
+4 -1
pkgs/development/compilers/llvm/10/compiler-rt/default.nix
··· 126 126 # "All of the code in the compiler-rt project is dual licensed under the MIT 127 127 # license and the UIUC License (a BSD-like license)": 128 128 license = with lib.licenses; [ mit ncsa ]; 129 - broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; 129 + broken = stdenv.hostPlatform.system == "aarch64-darwin" 130 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 131 + # https://reviews.llvm.org/D43106#1019077 132 + || (stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang); 130 133 }; 131 134 }
+1 -1
pkgs/development/compilers/llvm/11/compiler-rt/default.nix
··· 135 135 license = with lib.licenses; [ mit ncsa ]; 136 136 # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 137 137 # https://reviews.llvm.org/D43106#1019077 138 - broken = stdenv.hostPlatform.isRiscV && stdenv.hostPlatform.is32bit && !stdenv.cc.isClang; 138 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 139 139 }; 140 140 }
+3
pkgs/development/compilers/llvm/12/compiler-rt/default.nix
··· 124 124 # "All of the code in the compiler-rt project is dual licensed under the MIT 125 125 # license and the UIUC License (a BSD-like license)": 126 126 license = with lib.licenses; [ mit ncsa ]; 127 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 128 + # https://reviews.llvm.org/D43106#1019077 129 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 127 130 }; 128 131 }
+3
pkgs/development/compilers/llvm/13/compiler-rt/default.nix
··· 131 131 # "All of the code in the compiler-rt project is dual licensed under the MIT 132 132 # license and the UIUC License (a BSD-like license)": 133 133 license = with lib.licenses; [ mit ncsa ]; 134 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 135 + # https://reviews.llvm.org/D43106#1019077 136 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 134 137 }; 135 138 }
+3
pkgs/development/compilers/llvm/14/compiler-rt/default.nix
··· 139 139 # "All of the code in the compiler-rt project is dual licensed under the MIT 140 140 # license and the UIUC License (a BSD-like license)": 141 141 license = with lib.licenses; [ mit ncsa ]; 142 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 143 + # https://reviews.llvm.org/D43106#1019077 144 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 142 145 }; 143 146 }
+3
pkgs/development/compilers/llvm/15/compiler-rt/default.nix
··· 138 138 # "All of the code in the compiler-rt project is dual licensed under the MIT 139 139 # license and the UIUC License (a BSD-like license)": 140 140 license = with lib.licenses; [ mit ncsa ]; 141 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 142 + # https://reviews.llvm.org/D43106#1019077 143 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 141 144 }; 142 145 }
+3
pkgs/development/compilers/llvm/16/compiler-rt/default.nix
··· 152 152 # "All of the code in the compiler-rt project is dual licensed under the MIT 153 153 # license and the UIUC License (a BSD-like license)": 154 154 license = with lib.licenses; [ mit ncsa ]; 155 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 156 + # https://reviews.llvm.org/D43106#1019077 157 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 155 158 }; 156 159 }
+3
pkgs/development/compilers/llvm/17/compiler-rt/default.nix
··· 152 152 # "All of the code in the compiler-rt project is dual licensed under the MIT 153 153 # license and the UIUC License (a BSD-like license)": 154 154 license = with lib.licenses; [ mit ncsa ]; 155 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 156 + # https://reviews.llvm.org/D43106#1019077 157 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 155 158 }; 156 159 }
+4 -1
pkgs/development/compilers/llvm/9/compiler-rt/default.nix
··· 115 115 # "All of the code in the compiler-rt project is dual licensed under the MIT 116 116 # license and the UIUC License (a BSD-like license)": 117 117 license = with lib.licenses; [ mit ncsa ]; 118 - broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; 118 + broken = stdenv.hostPlatform.system == "aarch64-darwin" 119 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 120 + # https://reviews.llvm.org/D43106#1019077 121 + || (stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang); 119 122 }; 120 123 }
+3
pkgs/development/compilers/llvm/git/compiler-rt/default.nix
··· 152 152 # "All of the code in the compiler-rt project is dual licensed under the MIT 153 153 # license and the UIUC License (a BSD-like license)": 154 154 license = with lib.licenses; [ mit ncsa ]; 155 + # compiler-rt requires a Clang stdenv on 32-bit RISC-V: 156 + # https://reviews.llvm.org/D43106#1019077 157 + broken = stdenv.hostPlatform.isRiscV32 && !stdenv.cc.isClang; 155 158 }; 156 159 }
+2 -2
pkgs/development/compilers/yosys/default.nix
··· 77 77 78 78 in stdenv.mkDerivation (finalAttrs: { 79 79 pname = "yosys"; 80 - version = "0.36"; 80 + version = "0.37"; 81 81 82 82 src = fetchFromGitHub { 83 83 owner = "YosysHQ"; 84 84 repo = "yosys"; 85 85 rev = "refs/tags/${finalAttrs.pname}-${finalAttrs.version}"; 86 - hash = "sha256-jcaXn77OuKeC3AQTicILP3ABkJ3qBccM+uGbj1wn2Vw="; 86 + hash = "sha256-JRztXMZMBFhdZMeVHkRxFulRrFzyuNaLzcRlmgAz6Gc="; 87 87 }; 88 88 89 89 enableParallelBuilding = true;
+11 -4
pkgs/development/compilers/yosys/fix-clang-build.patch
··· 1 - diff --git a/Makefile b/Makefile 2 - index fa95b7b70..4d15ed721 100644 3 1 --- a/Makefile 4 2 +++ b/Makefile 5 3 @@ -215,7 +215,7 @@ ABC_ARCHFLAGS += "-DABC_NO_RLIMIT" ··· 11 9 LD = clang++ 12 10 CXXFLAGS += -std=$(CXXSTD) -Os 13 11 ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -Wno-c++11-narrowing $(ABC_ARCHFLAGS)" 14 - diff --git a/tests/fmt/run-test.sh b/tests/fmt/run-test.sh 15 - index 914a72347..bc0b129d2 100644 12 + --- a/tests/cxxrtl/run-test.sh 13 + +++ b/tests/cxxrtl/run-test.sh 14 + @@ -5,7 +5,7 @@ set -ex 15 + run_subtest () { 16 + local subtest=$1; shift 17 + 18 + - ${CC:-gcc} -std=c++11 -O2 -o cxxrtl-test-${subtest} -I../../backends/cxxrtl/runtime test_${subtest}.cc -lstdc++ 19 + + ${CXX:-gcc} -std=c++11 -O2 -o cxxrtl-test-${subtest} -I../../backends/cxxrtl/runtime test_${subtest}.cc -lstdc++ 20 + ./cxxrtl-test-${subtest} 21 + } 22 + 16 23 --- a/tests/fmt/run-test.sh 17 24 +++ b/tests/fmt/run-test.sh 18 25 @@ -51,7 +51,7 @@ test_cxxrtl () {
+2 -2
pkgs/development/interpreters/janet/default.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "janet"; 12 - version = "1.32.1"; 12 + version = "1.33.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "janet-lang"; 16 16 repo = "janet"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-24d9N59pTfQATWmAZN4dAFT8RTTlUlBPKokcQ/Fd2No="; 18 + hash = "sha256-kXbJtWxvysC4hLkgVyPpkunFhN+2iVu+S+LCo5ikj5s="; 19 19 }; 20 20 21 21 postPatch = ''
-2
pkgs/development/libraries/ogre/default.nix
··· 6 6 , unzip 7 7 , SDL2 8 8 , boost 9 - , freeimage 10 9 , freetype 11 10 , libpng 12 11 , ois ··· 55 54 buildInputs = [ 56 55 SDL2 57 56 boost 58 - freeimage 59 57 freetype 60 58 libpng 61 59 ois
+23 -3
pkgs/development/python-modules/aiopvapi/default.nix
··· 1 1 { lib 2 2 , aiohttp 3 - , async-timeout 4 3 , buildPythonPackage 5 4 , fetchFromGitHub 6 5 , pytestCheckHook 7 6 , pythonOlder 7 + , setuptools 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 11 pname = "aiopvapi"; 12 12 version = "3.0.1"; 13 - format = "setuptools"; 13 + pyproject = true; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 ··· 21 21 hash = "sha256-+jhfp8gLEmL8TGPPN7QY8lw1SkV4sMSDb4VSq2OJ6PU="; 22 22 }; 23 23 24 + postPatch = '' 25 + # https://github.com/sander76/aio-powerview-api/pull/31 26 + substituteInPlace setup.py \ 27 + --replace '"asyncio", ' "" 28 + ''; 29 + 30 + nativeBuildInputs = [ 31 + setuptools 32 + ]; 33 + 24 34 propagatedBuildInputs = [ 25 35 aiohttp 26 - async-timeout 27 36 ]; 28 37 29 38 nativeCheckInputs = [ ··· 34 43 "aiopvapi" 35 44 ]; 36 45 46 + disabledTestPaths = [ 47 + # https://github.com/sander76/aio-powerview-api/issues/32 48 + "tests/test_shade.py" 49 + "tests/test_scene.py" 50 + "tests/test_room.py" 51 + "tests/test_apiresource.py" 52 + "tests/test_hub.py" 53 + "tests/test_scene_members.py" 54 + ]; 55 + 37 56 meta = with lib; { 38 57 description = "Python API for the PowerView API"; 39 58 homepage = "https://github.com/sander76/aio-powerview-api"; 59 + changelog = "https://github.com/sander76/aio-powerview-api/releases/tag/v${version}"; 40 60 license = with licenses; [ bsd3 ]; 41 61 maintainers = with maintainers; [ fab ]; 42 62 };
+2 -2
pkgs/development/python-modules/dask-awkward/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "dask-awkward"; 16 - version = "2024.1.1"; 16 + version = "2024.1.2"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "dask-contrib"; 23 23 repo = "dask-awkward"; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-8nha0h1f/pLl7YmUc5HzlqwNRE/gRpRV2PudkddMHqg="; 25 + hash = "sha256-5UyB/qFfQPLA1N3L6NipW6+FzI0x6hZXu6ickAktlYw="; 26 26 }; 27 27 28 28 pythonRelaxDeps = [
+1 -1
pkgs/development/python-modules/dynalite-devices/default.nix
··· 43 43 ]; 44 44 45 45 # it would use the erroneous tag v0.47 46 - passthru.skipBulkUpdate = false; 46 + passthru.skipBulkUpdate = true; 47 47 48 48 meta = with lib; { 49 49 description = "An unofficial Dynalite DyNET interface creating devices";
+2 -2
pkgs/development/python-modules/habluetooth/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "habluetooth"; 19 - version = "2.2.0"; 19 + version = "2.1.0"; 20 20 pyproject = true; 21 21 22 22 disabled = pythonOlder "3.10"; ··· 25 25 owner = "Bluetooth-Devices"; 26 26 repo = "habluetooth"; 27 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-iFMs4FXl82ZkOKNad0XY8Ci9gHwdkyzP5LiYJ4/uyzY="; 28 + hash = "sha256-oPdKmaj2wKgOQw7QYwOQc8efcNtQiGryZgNJ+bbB6L8="; 29 29 }; 30 30 31 31 postPatch = ''
+2 -2
pkgs/development/python-modules/optimum/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "optimum"; 25 - version = "1.16.1"; 25 + version = "1.16.2"; 26 26 format = "setuptools"; 27 27 28 28 disabled = pythonOlder "3.7"; ··· 31 31 owner = "huggingface"; 32 32 repo = "optimum"; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-UlxArfNK4Ialodpne5GY7GuWGUBcLbSjAidL67Li0S0="; 34 + hash = "sha256-bEwCUPZJT1UTD8mQJKg+Nwag6kpn4076uyKocKI/+/M="; 35 35 }; 36 36 37 37 propagatedBuildInputs = [
+14 -6
pkgs/development/python-modules/pip-api/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 3 + , fetchFromGitHub 4 4 , pip 5 5 , pretend 6 6 , pytestCheckHook 7 7 , pythonOlder 8 + , setuptools 8 9 , virtualenv 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "pip-api"; 13 - version = "0.0.30"; 14 - format = "setuptools"; 14 + version = "0.0.31"; 15 + pyproject = true; 15 16 16 17 disabled = pythonOlder "3.7"; 17 18 18 - src = fetchPypi { 19 - inherit pname version; 20 - hash = "sha256-oF3yx6qbcVc3S89Cc1RCAaDHuuYKnGW8+E85We84lvM="; 19 + src = fetchFromGitHub { 20 + owner = "di"; 21 + repo = "pip-api"; 22 + rev = "refs/tags/${version}"; 23 + hash = "sha256-WFyrEEfrGwsITYzQaukwmz5ml+I6zlMddINTkGeNUTM="; 21 24 }; 25 + 26 + nativeBuildInputs = [ 27 + setuptools 28 + ]; 22 29 23 30 propagatedBuildInputs = [ 24 31 pip ··· 46 53 meta = with lib; { 47 54 description = "Importable pip API"; 48 55 homepage = "https://github.com/di/pip-api"; 56 + changelog = "https://github.com/di/pip-api/blob/${version}/CHANGELOG"; 49 57 license = with licenses; [ mit ]; 50 58 maintainers = with maintainers; [ fab ]; 51 59 };
+2 -2
pkgs/development/python-modules/pyatspi/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pyatspi"; 5 - version = "2.46.0"; 5 + version = "2.46.1"; 6 6 format = "other"; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 10 - sha256 = "1FSJzz1HqhULGjXolJs7MQNfjCB15YjSa278Yllwxi4="; 10 + sha256 = "+R9qV0NOnAfRPVxL+BndeOjuYFqsKuRdjGTCgRT7BBs="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/development/python-modules/reuse/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "reuse"; 15 - version = "2.1.0"; 15 + version = "3.0.1"; 16 16 format = "pyproject"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "fsfe"; 20 20 repo = "reuse-tool"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-MEQiuBxe/ctHlAnmLhQY4QH62uAcHb7CGfZz+iZCRSk="; 22 + hash = "sha256-hDvOT9BP/E95FTa8rvtdxQoEDYgfMAkCSbX5KKV3qbQ="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+22 -17
pkgs/development/python-modules/ufo2ft/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - 5 - # build 6 - , setuptools-scm 7 - 8 - # runtime 9 2 , booleanoperations 3 + , buildPythonPackage 10 4 , cffsubr 11 5 , compreffor 12 6 , cu2qu 13 7 , defcon 8 + , fetchPypi 14 9 , fonttools 10 + , pytestCheckHook 11 + , pythonOlder 12 + , setuptools-scm 15 13 , skia-pathops 16 14 , ufolib2 17 - 18 - # tests 19 - , pytestCheckHook 20 15 }: 21 16 22 17 buildPythonPackage rec { 23 18 pname = "ufo2ft"; 24 19 version = "2.33.4"; 25 - format = "setuptools"; 20 + pyproject = true; 21 + 22 + disabled = pythonOlder "3.8"; 26 23 27 24 src = fetchPypi { 28 25 inherit pname version; ··· 50 47 pytestCheckHook 51 48 ]; 52 49 53 - pytestFlagsArray = [ 50 + disabledTests = [ 54 51 # Do not depend on skia. 55 - "--deselect=tests/integration_test.py::IntegrationTest::test_removeOverlaps_CFF_pathops" 56 - "--deselect=tests/integration_test.py::IntegrationTest::test_removeOverlaps_pathops" 57 - "--deselect=tests/preProcessor_test.py::TTFPreProcessorTest::test_custom_filters_as_argument" 58 - "--deselect=tests/preProcessor_test.py::TTFInterpolatablePreProcessorTest::test_custom_filters_as_argument" 52 + "test_removeOverlaps_CFF_pathops" 53 + "test_removeOverlaps_pathops" 54 + "test_custom_filters_as_argument" 55 + "test_custom_filters_as_argument" 56 + # Some integration tests fail 57 + "test_compileVariableCFF2" 58 + "test_compileVariableTTF" 59 + "test_drop_glyph_names_variable" 60 + "test_drop_glyph_names_variable" 59 61 ]; 60 62 61 - pythonImportsCheck = [ "ufo2ft" ]; 63 + pythonImportsCheck = [ 64 + "ufo2ft" 65 + ]; 62 66 63 67 meta = with lib; { 64 68 description = "Bridge from UFOs to FontTools objects"; 65 69 homepage = "https://github.com/googlefonts/ufo2ft"; 70 + changelog = "https://github.com/googlefonts/ufo2ft/releases/tag/v${version}"; 66 71 license = licenses.mit; 67 72 maintainers = with maintainers; [ ]; 68 73 };
+3 -3
pkgs/development/tools/database/dbmate/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "dbmate"; 8 - version = "2.10.0"; 8 + version = "2.11.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "amacneil"; 12 12 repo = "dbmate"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-gJ1kYedws20C669Gonmsui59a/TvPXawqkx5k4pPn8M="; 14 + hash = "sha256-kY91ToCEl1bNdeIKDAAR3q7053oyFhx+THre7Syw96g="; 15 15 }; 16 16 17 - vendorHash = "sha256-JjFBUjSbHnJE7FPa11lQBx7Dvv7uBkuvLYqeuaDkHJM="; 17 + vendorHash = "sha256-z33Ayxc/ftNHh5zunDu0AlamuoSglX4aqOKQLuYT3+s="; 18 18 19 19 doCheck = false; 20 20
+3 -3
pkgs/development/tools/jql/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "jql"; 8 - version = "7.1.2"; 8 + version = "7.1.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "yamafaktory"; 12 12 repo = pname; 13 13 rev = "jql-v${version}"; 14 - hash = "sha256-gdHxaQkJJw/cvnWhAodp57VIfW5oehNE7/zGs7B5Akg="; 14 + hash = "sha256-UiIIPA4JREWniNOcqMW2jnfaEDpkT1jbdv3whr49Gqg="; 15 15 }; 16 16 17 - cargoHash = "sha256-urFwYHlHhxOmSBSpfEJV/3sg40r8CTnAOjjLqQ/GXeY="; 17 + cargoHash = "sha256-9ApucHYFHBritAdylzQuUDa47yG8dAeIQwPezXP3BXY="; 18 18 19 19 meta = with lib; { 20 20 description = "A JSON Query Language CLI tool built with Rust";
+2 -2
pkgs/development/tools/package-project-cmake/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 7 pname = "package-project-cmake"; 8 - version = "1.11.1"; 8 + version = "1.11.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "TheLartians"; 12 12 repo = "PackageProject.cmake"; 13 13 rev = "v${finalAttrs.version}"; 14 - hash = "sha256-E7WZSYDlss5bidbiWL1uX41Oh6JxBRtfhYsFU19kzIw="; 14 + hash = "sha256-2u7H2ZR7eQ6eoRIVZ1WBxw9K93E8BVYErZNDe1Jl8rg="; 15 15 }; 16 16 17 17 dontConfigure = true;
+1 -1
pkgs/development/tools/rust/cargo-show-asm/test-basic-x86_64.nix
··· 9 9 version = "0.0.0" 10 10 EOF 11 11 cat >src/lib.rs <<EOF 12 - pub fn add(a: u32, b: u32) -> u32 { a + b } 12 + #[inline(never)] pub fn add(a: u32, b: u32) -> u32 { a + b } 13 13 EOF 14 14 15 15 [[ "$(cargo asm add::add | tee /dev/stderr)" == *"lea eax, "* ]]
+3 -3
pkgs/development/tools/rust/rust-analyzer/default.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "rust-analyzer-unwrapped"; 16 - version = "2024-01-08"; 17 - cargoSha256 = "sha256-TzY+A0QvtSionE1bL9NHFJzuovUW7N4HCGxLz81CInU="; 16 + version = "2024-01-15"; 17 + cargoSha256 = "sha256-TVHMoGp7MiY8zyMbBQIbEMS4KbsqJP4WSl8snIvewCQ="; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "rust-lang"; 21 21 repo = "rust-analyzer"; 22 22 rev = version; 23 - sha256 = "sha256-fVi0wlgFjp/bXz1LxvbiBB07Aj5ZnNq2xsvrCzDpIDc="; 23 + sha256 = "sha256-H3RdtMxH8moTInVmracgtF8bgFpaEE3zYoSkuv7PBs0="; 24 24 }; 25 25 26 26 cargoBuildFlags = [ "--bin" "rust-analyzer" "--bin" "rust-analyzer-proc-macro-srv" ];
+5 -5
pkgs/development/web/bun/default.nix
··· 12 12 }: 13 13 14 14 stdenvNoCC.mkDerivation rec { 15 - version = "1.0.23"; 15 + version = "1.0.24"; 16 16 pname = "bun"; 17 17 18 18 src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); ··· 51 51 sources = { 52 52 "aarch64-darwin" = fetchurl { 53 53 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; 54 - hash = "sha256-qWg2WdWQHAYXLkIQd2RPQ2j1Bo3qKHhlxcFaqDIxcks="; 54 + hash = "sha256-emp0SXua/XdgVfbEemahRabl9K1MV2HfY/j4iInCUu4="; 55 55 }; 56 56 "aarch64-linux" = fetchurl { 57 57 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; 58 - hash = "sha256-nojMZknNXG+pMsSWx7SkkcAweeXtF3W+XC8+QvQHtD4="; 58 + hash = "sha256-92el7Z80IA37CJfj9XckG4JstAKI+36Z8/rA3SgukZg="; 59 59 }; 60 60 "x86_64-darwin" = fetchurl { 61 61 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip"; 62 - hash = "sha256-MQjeSKVYtKwVMq9p2NLZZPaxdEJJYzDLQ6xusR8qZGM="; 62 + hash = "sha256-Gpa+wgKoDKKuVO8ZkwucBs1yfVw+34L8Qhv3FuyK8go="; 63 63 }; 64 64 "x86_64-linux" = fetchurl { 65 65 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; 66 - hash = "sha256-IPQ4W8B4prlLljf7OviGpYtqNxSxMB1kHCMOrnbxldw="; 66 + hash = "sha256-8uHTAGCJ6fZ2CdN8GUSfOrSUyu1lIUXAL73ezx/7tV8="; 67 67 }; 68 68 }; 69 69 updateScript = writeShellScript "update-bun" ''
+7
pkgs/games/stuntrally/default.nix
··· 48 48 hash = "sha256-fglm1FetFGHM/qGTtpxDb8+k2iAREn5DQR5GPujuLms="; 49 49 }; 50 50 51 + postPatch = '' 52 + substituteInPlace config/*-default.cfg \ 53 + --replace "screenshot_png = off" "screenshot_png = on" 54 + substituteInPlace source/*/BaseApp_Create.cpp \ 55 + --replace "Codec_FreeImage" "Codec_STBI" 56 + ''; 57 + 51 58 preConfigure = '' 52 59 rmdir data/tracks 53 60 ln -s ${tracks}/ data/tracks
+2 -2
pkgs/games/unciv/default.nix
··· 25 25 in 26 26 stdenv.mkDerivation rec { 27 27 pname = "unciv"; 28 - version = "4.9.13"; 28 + version = "4.9.19"; 29 29 30 30 src = fetchurl { 31 31 url = "https://github.com/yairm210/Unciv/releases/download/${version}/Unciv.jar"; 32 - hash = "sha256-AQHhqxnNTNArXYlqpNcUMDRVb/IAR3dCYue+y0wPAw8="; 32 + hash = "sha256-C591QKk36v4GAO2oXLOHE4B2RpOObtriN6EPC+xXKnc="; 33 33 }; 34 34 35 35 dontUnpack = true;
+7 -5
pkgs/os-specific/linux/firmware/sof-firmware/default.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation rec { 7 7 pname = "sof-firmware"; 8 - version = "2.2.6"; 8 + version = "2023.12"; 9 9 10 10 src = fetchurl { 11 - url = "https://github.com/thesofproject/sof-bin/releases/download/v${version}/sof-bin-v${version}.tar.gz"; 12 - sha256 = "sha256-kyLCp2NtAoRcOyaYTVirj3jWP/THZtCEwxlqWF4ACQU="; 11 + url = "https://github.com/thesofproject/sof-bin/releases/download/v${version}/sof-bin-${version}.tar.gz"; 12 + sha256 = "sha256-VeR+tj5iSNvat9ojK7HjHKLnFVs33BFvbcWxc8ujUDs="; 13 13 }; 14 14 15 15 dontFixup = true; # binaries must not be stripped or patchelfed ··· 17 17 installPhase = '' 18 18 runHook preInstall 19 19 mkdir -p $out/lib/firmware/intel 20 - cp -av sof-v${version} $out/lib/firmware/intel/sof 21 - cp -av sof-tplg-v${version} $out/lib/firmware/intel/sof-tplg 20 + cp -av sof $out/lib/firmware/intel/sof 21 + cp -av sof-tplg $out/lib/firmware/intel/sof-tplg 22 + cp -av sof-ace-tplg $out/lib/firmware/intel/sof-ace-tplg 23 + cp -av sof-ipc4 $out/lib/firmware/intel/sof-ipc4 22 24 runHook postInstall 23 25 ''; 24 26
+2 -2
pkgs/os-specific/linux/health-check/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "health-check"; 5 - version = "0.03.12"; 5 + version = "0.04.00"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ColinIanKing"; 9 9 repo = pname; 10 10 rev = "V${version}"; 11 - hash = "sha256-LuUCs6GLaxI5ywv6dr8dlvAXfcLbr1t7y6s/pb6JDpg="; 11 + hash = "sha256-CPKXpPpdagq3UnTk8Z58WtSPek8L79totKX+Uh6foVg="; 12 12 }; 13 13 14 14 buildInputs = [ json_c libbsd ];
+30 -30
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 2 2 "4.19": { 3 3 "patch": { 4 4 "extra": "-hardened1", 5 - "name": "linux-hardened-4.19.304-hardened1.patch", 6 - "sha256": "0bv6abcx8sknhsnijs176yq7q2mgrlyrv5xysnxa0l6wqpl2gqif", 7 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.304-hardened1/linux-hardened-4.19.304-hardened1.patch" 5 + "name": "linux-hardened-4.19.305-hardened1.patch", 6 + "sha256": "1lrz04mxcp82qmfmwsahi5amv9j5j5qv7xjq9jcrycwcj0ljrfcv", 7 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.305-hardened1/linux-hardened-4.19.305-hardened1.patch" 8 8 }, 9 - "sha256": "165mljr8v1cf4vf4a4b44hx089rprkssvi2azq5wbxxg3basbind", 10 - "version": "4.19.304" 9 + "sha256": "1s6srmhd3visqchshg566c7gq5wnxr3m74854kxksqhhfif450ns", 10 + "version": "4.19.305" 11 11 }, 12 12 "5.10": { 13 13 "patch": { 14 14 "extra": "-hardened1", 15 - "name": "linux-hardened-5.10.206-hardened1.patch", 16 - "sha256": "14xmp28grpwpgrsg88bnv164kk54k6akw5jydrs8447mqfyw7sqr", 17 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.206-hardened1/linux-hardened-5.10.206-hardened1.patch" 15 + "name": "linux-hardened-5.10.208-hardened1.patch", 16 + "sha256": "0aniccfyi81wwfzva3i2vxairnkdwrypislphf8r9wg49sya2z7f", 17 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.208-hardened1/linux-hardened-5.10.208-hardened1.patch" 18 18 }, 19 - "sha256": "0ns8qxcrxj9i76b93xcghl002l8vbkg7ksd435sikig62qr62gf4", 20 - "version": "5.10.206" 19 + "sha256": "0vpvy47cmcinhs76cjl2n81zrlhbqgpi4v29izn2hzsl15x189ch", 20 + "version": "5.10.208" 21 21 }, 22 22 "5.15": { 23 23 "patch": { 24 24 "extra": "-hardened1", 25 - "name": "linux-hardened-5.15.146-hardened1.patch", 26 - "sha256": "0cd8gzixkc89n647g108f9r9dn8a3vw9ajdh4g7w7bq6vq71gglj", 27 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.146-hardened1/linux-hardened-5.15.146-hardened1.patch" 25 + "name": "linux-hardened-5.15.147-hardened1.patch", 26 + "sha256": "1z37g4gwxhdsbqh0yy7m9wlglayrmypsrdjgx0vk3shgvaiwx2il", 27 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.147-hardened1/linux-hardened-5.15.147-hardened1.patch" 28 28 }, 29 - "sha256": "14nijbspmzd4r38l8cpl4vn9dhawzcfnhyc0gnaxl2m8l9gpm02s", 30 - "version": "5.15.146" 29 + "sha256": "1m7wznqiakarpar4a0nbwxql0hkvds0s79zx3r1xn0fj4mbfdhan", 30 + "version": "5.15.147" 31 31 }, 32 32 "5.4": { 33 33 "patch": { 34 34 "extra": "-hardened1", 35 - "name": "linux-hardened-5.4.266-hardened1.patch", 36 - "sha256": "1gbyxz788j5lirjc62b56didnwq5s69cfindzndsj1r5wm0hknp4", 37 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.266-hardened1/linux-hardened-5.4.266-hardened1.patch" 35 + "name": "linux-hardened-5.4.267-hardened1.patch", 36 + "sha256": "12jyk0dmrs8kmmh8ca4s3jr2pk6m0izhm5yvncgjwff3xybzyj5p", 37 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.267-hardened1/linux-hardened-5.4.267-hardened1.patch" 38 38 }, 39 - "sha256": "1dmcn9i3nvf1gldm1a32gnl5ybwbk2lizb3wa4gc06g7dxz2y1ys", 40 - "version": "5.4.266" 39 + "sha256": "0hqw8ww7y9mjrh1wgdkiwk8llxpf4lxwmsmzxm8j4l615kpqvlj2", 40 + "version": "5.4.267" 41 41 }, 42 42 "6.1": { 43 43 "patch": { 44 44 "extra": "-hardened1", 45 - "name": "linux-hardened-6.1.72-hardened1.patch", 46 - "sha256": "0zp6i44y3fi2xsk4jbwhk8w688ci34p5ymmk3kkb8s1cvhqzgddy", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.72-hardened1/linux-hardened-6.1.72-hardened1.patch" 45 + "name": "linux-hardened-6.1.73-hardened1.patch", 46 + "sha256": "02w9cbsql70kkjyvny65f2375q0c4n1rx7gsm7sd61h2hwki2ykp", 47 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.73-hardened1/linux-hardened-6.1.73-hardened1.patch" 48 48 }, 49 - "sha256": "09h9kzv2xfrn369ynl09dfnjl9025b9vpkcxg75gyp63fy8fdp4q", 50 - "version": "6.1.72" 49 + "sha256": "11vyblm4nkjncdi3akcyizw7jkyxsqn2mjixc51f7kgiddq4ibbc", 50 + "version": "6.1.73" 51 51 }, 52 52 "6.5": { 53 53 "patch": { ··· 62 62 "6.6": { 63 63 "patch": { 64 64 "extra": "-hardened1", 65 - "name": "linux-hardened-6.6.11-hardened1.patch", 66 - "sha256": "07l4fvc115iqiwbaq916g1l1jpmcg8injr5z5dx6jp2h635w72n3", 67 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.6.11-hardened1/linux-hardened-6.6.11-hardened1.patch" 65 + "name": "linux-hardened-6.6.12-hardened1.patch", 66 + "sha256": "1avlbsf9z1q606wan1wkmgh7qwgzq7r8m2lk6glxhhv54chxv5k9", 67 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.6.12-hardened1/linux-hardened-6.6.12-hardened1.patch" 68 68 }, 69 - "sha256": "0lhyczcj1fhh52fjf06ikp5yh7kxc1qymsw44rv6v25vc6kfbqmg", 70 - "version": "6.6.11" 69 + "sha256": "01a6czk6xz9syxvkb2yhbn3vypqy2mnjq7ni84x4nklw7n6frmqz", 70 + "version": "6.6.12" 71 71 } 72 72 }
+6 -6
pkgs/os-specific/linux/kernel/kernels-org.json
··· 8 8 "hash": "sha256:1dfbbydmayfj9npx3z0g38p574pmcx3qgs49dv0npigl48wd9yvq" 9 9 }, 10 10 "6.1": { 11 - "version": "6.1.73", 12 - "hash": "sha256:11vyblm4nkjncdi3akcyizw7jkyxsqn2mjixc51f7kgiddq4ibbc" 11 + "version": "6.1.74", 12 + "hash": "sha256:08i0pgmmdnrmlha6ncl6if39rqg44c9dqyggf0swxlmfkzbx3yxp" 13 13 }, 14 14 "5.15": { 15 15 "version": "5.15.147", ··· 28 28 "hash": "sha256:1s6srmhd3visqchshg566c7gq5wnxr3m74854kxksqhhfif450ns" 29 29 }, 30 30 "6.6": { 31 - "version": "6.6.12", 32 - "hash": "sha256:01a6czk6xz9syxvkb2yhbn3vypqy2mnjq7ni84x4nklw7n6frmqz" 31 + "version": "6.6.13", 32 + "hash": "sha256:1g60hblf4mywq3rivkqmz2n7a9arinxwh4g4n4x4xb8ysiyrxf48" 33 33 }, 34 34 "6.7": { 35 - "version": "6.7", 36 - "hash": "sha256:0s8hbcsg7fdvspqam8kzcxygjsznr4zfi60nqgc81l3n4m518cgg" 35 + "version": "6.7.1", 36 + "hash": "sha256:1hv8mma3i6zhjix5k2g12jmajqy29c1xjfjkllmj18l6irbgmkqy" 37 37 } 38 38 }
+3 -3
pkgs/os-specific/linux/kernel/linux-rt-6.1.nix
··· 6 6 , ... } @ args: 7 7 8 8 let 9 - version = "6.1.70-rt21"; # updated by ./update-rt.sh 9 + version = "6.1.73-rt22"; # updated by ./update-rt.sh 10 10 branch = lib.versions.majorMinor version; 11 11 kversion = builtins.elemAt (lib.splitString "-" version) 0; 12 12 in buildLinux (args // { ··· 18 18 19 19 src = fetchurl { 20 20 url = "mirror://kernel/linux/kernel/v6.x/linux-${kversion}.tar.xz"; 21 - sha256 = "1vxgardfm2fi4c7zkxpljqicllfqqnp835a9lyb7dh2nchk6a4zd"; 21 + sha256 = "11vyblm4nkjncdi3akcyizw7jkyxsqn2mjixc51f7kgiddq4ibbc"; 22 22 }; 23 23 24 24 kernelPatches = let rt-patch = { 25 25 name = "rt"; 26 26 patch = fetchurl { 27 27 url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; 28 - sha256 = "03lb5s16f7j7s7qvh55mxiv6a6rdnx2j8cyy6c6v4naaq9s82lgn"; 28 + sha256 = "1hl7y2sab21l81nl165b77jhfjhpcc1gvz64fs2yjjp4q2qih4b0"; 29 29 }; 30 30 }; in [ rt-patch ] ++ kernelPatches; 31 31
+7 -1
pkgs/os-specific/linux/systemd/default.nix
··· 88 88 , withAnalyze ? true 89 89 , withApparmor ? true 90 90 , withAudit ? true 91 - , withBootloader ? withEfi && !stdenv.hostPlatform.isMusl # compiles systemd-boot, assumes EFI is available. 91 + # compiles systemd-boot, assumes EFI is available. 92 + , withBootloader ? withEfi 93 + && !stdenv.hostPlatform.isMusl 94 + # "Unknown 64-bit data model" 95 + && !stdenv.hostPlatform.isRiscV32 92 96 , withCompression ? true # adds bzip2, lz4, xz and zstd 93 97 , withCoredump ? true 94 98 , withCryptsetup ? true ··· 108 112 && !stdenv.hostPlatform.isMips64 # see https://github.com/NixOS/nixpkgs/pull/194149#issuecomment-1266642211 109 113 # can't find gnu/stubs-32.h 110 114 && (stdenv.hostPlatform.isPower64 -> stdenv.hostPlatform.isBigEndian) 115 + # https://reviews.llvm.org/D43106#1019077 116 + && (stdenv.hostPlatform.isRiscV32 -> stdenv.cc.isClang) 111 117 # buildPackages.targetPackages.llvmPackages is the same as llvmPackages, 112 118 # but we do it this way to avoid taking llvmPackages as an input, and 113 119 # risking making it too easy to ignore the above comment about llvmPackages.
+2 -2
pkgs/servers/elasticmq-server-bin/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "elasticmq-server"; 5 - version = "1.5.4"; 5 + version = "1.5.5"; 6 6 7 7 src = fetchurl { 8 8 url = "https://s3-eu-west-1.amazonaws.com/softwaremill-public/${finalAttrs.pname}-${finalAttrs.version}.jar"; 9 - sha256 = "sha256-kkRHJuA9ogPzm8XFxmKNsakawcVVVj9b7gWicLZE/mM="; 9 + sha256 = "sha256-LjaabD9Ax0Jy1OJgEX2TWctEfsK7jlzWKAOq6RCVeqQ="; 10 10 }; 11 11 12 12 # don't do anything?
+2 -2
pkgs/servers/http/jetty/11.x.nix
··· 1 1 import ./common.nix { 2 - version = "11.0.18"; 3 - hash = "sha256-HxtO2r6YWo6+MAYUgk7dNSPDqQZoyO9t/8NdI5pPkL4="; 2 + version = "11.0.19"; 3 + hash = "sha256-CJpJSeIuFNiduCpiSoa52vYIncWn5/tMEgMVslJCcy0="; 4 4 }
+2 -2
pkgs/servers/http/jetty/12.x.nix
··· 1 1 import ./common.nix { 2 - version = "12.0.3"; 3 - hash = "sha256-Z/jJKKzoqTPZnoFOMwbpSd/Kd1w+rXloKH+aw6aNrKs="; 2 + version = "12.0.5"; 3 + hash = "sha256-TnKoDgn59t0m5dBuMISQPpQrIFcTsv77V/KXJabpsyA="; 4 4 }
+3 -3
pkgs/servers/monitoring/grafana-agent/default.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "grafana-agent"; 17 - version = "0.39.0"; 17 + version = "0.39.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "grafana"; 21 21 repo = "agent"; 22 22 rev = "v${version}"; 23 - hash = "sha256-mUPWww7RnrCwJKGWXIsX7vnTmxj2h31AzM8a0eKa15g="; 23 + hash = "sha256-GUsLscLbDnHBO+BWiuo/qCxrV+mW5XUlLpqj8iWUxzo="; 24 24 }; 25 25 26 - vendorHash = "sha256-nOuinJXTiTumHlOWcuGTBcrw9ArIdb/R8jIT/5+i0vM="; 26 + vendorHash = "sha256-lC6ESGT0dheATVDjJZxDP8YU4RtJMEfTJSyETDtGzTc="; 27 27 proxyVendor = true; # darwin/linux hash mismatch 28 28 29 29 frontendYarnOfflineCache = fetchYarnDeps {
+2 -1
pkgs/servers/search/meilisearch/default.nix
··· 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 5 , Security 6 + , SystemConfiguration 6 7 , nixosTests 7 8 , nix-update-script 8 9 }: ··· 40 41 buildNoDefaultFeatures = true; 41 42 42 43 buildInputs = lib.optionals stdenv.isDarwin [ 43 - Security 44 + Security SystemConfiguration 44 45 ]; 45 46 46 47 passthru = {
+3 -3
pkgs/shells/nushell/nu_scripts/default.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "nu_scripts"; 9 - version = "unstable-2024-01-05"; 9 + version = "unstable-2024-01-17"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "nushell"; 13 13 repo = pname; 14 - rev = "06327787549c41c93f8079cb034305d666479587"; 15 - hash = "sha256-O7wBMsq1Ds5Re5PakxQoDNnJg0VOdz1yKKanv4Q42SA="; 14 + rev = "e5176370f68fb028ba0b5c83c83dac8d796b9d8e"; 15 + hash = "sha256-aQpyZkVm5/ono7xxtYBTSr4xSdnq/9NJeYTfUyskS8U="; 16 16 }; 17 17 18 18 installPhase = ''
+2 -2
pkgs/tools/backup/gyb/default.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "gyb"; 9 - version = "1.74"; 9 + version = "1.80"; 10 10 format = "other"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "GAM-team"; 14 14 repo = "got-your-back"; 15 15 rev = "refs/tags/v${version}"; 16 - sha256 = "sha256-JUI9BIDg7Z6z5ZtwBMsgTbYXp9w0jd1DKFAa1XjeEtQ="; 16 + sha256 = "sha256-4xElzhf9R6qnzr4oyZktQy/ym2vEjR9MrHnLYxBiAOg="; 17 17 }; 18 18 19 19 propagatedBuildInputs = with python3Packages; [
+2 -2
pkgs/tools/games/pocket-updater-utility/default.nix
··· 12 12 13 13 buildDotnetModule rec { 14 14 pname = "pocket-updater-utility"; 15 - version = "2.43.0"; 15 + version = "2.43.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "mattpannella"; 19 19 repo = "${pname}"; 20 20 rev = "${version}"; 21 - hash = "sha256-mizKR3hS8s1we+jJ1bQQpFzRMjHFv4UAiINUpfnWnwI="; 21 + hash = "sha256-ur7BEsG4MIEcdiRt5BkK4GCa7aVkrh2Djd10KhaWf3U="; 22 22 }; 23 23 24 24 buildInputs = [
+3 -3
pkgs/tools/graphics/textplots/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "textplots"; 5 - version = "0.8.4"; 5 + version = "0.8.5"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - hash = "sha256-DtDxD3b8idYOBcHKkLbOy6NUU0bjWzDySGoW8uOT4xc="; 9 + hash = "sha256-83EAe6O8ETsuGJ5MK6kt68OnJL+r+BAYkFzvzlxHyp4="; 10 10 }; 11 11 12 - cargoHash = "sha256-tXqonC4qawS6eu9dPt/6/TVYCjTroG+9XikmYQHCLdA="; 12 + cargoHash = "sha256-O47b00PGRXTWWxywitS2V15gXahzgjNvFKUvE+VMXaM="; 13 13 14 14 buildFeatures = [ "tool" ]; 15 15
+10 -1
pkgs/tools/misc/diffoscope/default.nix
··· 219 219 # oggvideotools is broken on Darwin, please put it back when it will be fixed? 220 220 ++ lib.optionals stdenv.isLinux [ oggvideotools ] 221 221 # This doesn't work on aarch64-darwin 222 - ++ lib.optionals (stdenv.hostPlatform != "aarch64-darwin") [ gnumeric ] 222 + ++ lib.optionals (stdenv.hostPlatform.system != "aarch64-darwin") [ gnumeric ] 223 223 )); 224 224 225 225 nativeCheckInputs = with python3.pkgs; [ ··· 248 248 "test_non_unicode_filename" 249 249 "test_listing" 250 250 "test_symlink_root" 251 + 252 + # Appears to be a sandbox related issue 253 + "test_trim_stderr_in_command" 254 + # Seems to be a bug caused by having different versions of rdata than 255 + # expected. Will file upstream. 256 + "test_item_rdb" 257 + # Caused by getting an otool command instead of llvm-objdump. Could be Nix 258 + # setup, could be upstream bug. Will file upstream. 259 + "test_libmix_differences" 251 260 ]; 252 261 253 262 disabledTestPaths = [
+2 -2
pkgs/tools/misc/moar/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "moar"; 5 - version = "1.22.2"; 5 + version = "1.23.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "walles"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-fS+HmLnqs3haQ/cv768zSY62CcqONCkTF/GpUsPNX0c="; 11 + hash = "sha256-tnFJKHrK1QlACYsiLlc5EX3du4H+nekEaeV+7wUsx48="; 12 12 }; 13 13 14 14 vendorHash = "sha256-1u/2OlMX2FuZaxWnpU4n5r/4xKe+rK++GoCJiSq/BdE=";
+2 -2
pkgs/tools/networking/swagger-codegen3/default.nix
··· 1 1 { lib, stdenv, fetchurl, jre, makeWrapper, testers, swagger-codegen3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "3.0.51"; 4 + version = "3.0.52"; 5 5 pname = "swagger-codegen"; 6 6 7 7 jarfilename = "${pname}-cli-${version}.jar"; ··· 12 12 13 13 src = fetchurl { 14 14 url = "mirror://maven/io/swagger/codegen/v3/${pname}-cli/${version}/${jarfilename}"; 15 - sha256 = "sha256-gdzxPtr5HGt9PCKPe6Y1GRoorwDmDjfs/P45HubLQks="; 15 + sha256 = "sha256-bBiETNzgySrOSFUB6356jiwDhwQ34QrOf2KdP5lv3Yg="; 16 16 }; 17 17 18 18 dontUnpack = true;
+3 -3
pkgs/tools/security/cdxgen/default.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "cdxgen"; 8 - version = "9.10.2"; 8 + version = "9.11.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AppThreat"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-d4abSPP0dLi5xzq1CYxi1MSKogrQ+YcZjmlUEr5+oBQ="; 14 + sha256 = "sha256-UrwC6T0XJeEETMtwphLWAnN7grWPI/O4aa3IKrWMhOM="; 15 15 }; 16 16 17 - npmDepsHash = "sha256-KLI6wJrP2s2UWkSC5zmFuC2sa2owRgAhnR4UVrI0ThY="; 17 + npmDepsHash = "sha256-RbHauQkggFlIoIgDdC7A4Y/O4viTsDWNB2MPeDi8oZc="; 18 18 19 19 dontNpmBuild = true; 20 20
+3 -3
pkgs/tools/security/hfinger/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "hfinger"; 9 - version = "0.2.1"; 9 + version = "0.2.2"; 10 10 disabled = python3.pythonOlder "3.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "CERT-Polska"; 14 14 repo = pname; 15 - rev = "v${version}"; 16 - sha256 = "sha256-QKnrprDDBq+D8N1brkqgcfK4E+6ssvgPtRaSxkF0C84="; 15 + rev = "refs/tags/v${version}"; 16 + sha256 = "sha256-gxwirAqtY4R3KDHyNmDIknABO+SFuoDua9nm1UyXbxA="; 17 17 }; 18 18 19 19 propagatedBuildInputs = with python3.pkgs; [
+3 -3
pkgs/tools/security/step-cli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "step-cli"; 8 - version = "0.25.1"; 8 + version = "0.25.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "smallstep"; 12 12 repo = "cli"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-Lltlvr/Hvh2W8MiB5WC3RmQcHg6kRPau7Fvvaqm60MQ="; 14 + hash = "sha256-umo0f4cXxnxg3xH1aHeJE2brUT9w+Gp+0Qzq4zIQ8oI="; 15 15 }; 16 16 17 17 ldflags = [ ··· 25 25 rm command/certificate/remote_test.go 26 26 ''; 27 27 28 - vendorHash = "sha256-dhJrDhMnPb985W3YP7+W8GHuMpkkZJcxks27TThj2YE="; 28 + vendorHash = "sha256-R9UJHXs35/yvwlqu1iR3lJN/w8DWMqw48Kc+7JKfD7I="; 29 29 30 30 meta = with lib; { 31 31 description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
+3 -3
pkgs/tools/text/xml/xq/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "xq"; 10 - version = "1.2.3"; 10 + version = "1.2.4"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "sibprogrammer"; 14 14 repo = "xq"; 15 15 rev = "v${version}"; 16 - hash = "sha256-Zg1ARyDXklKBR5WhqRakWT/KcG5796h2MxsBjPCWSjs="; 16 + hash = "sha256-g1d5sS3tgxP2VRogWG/5OXezDsJuQ6e724te+Oj3r24="; 17 17 }; 18 18 19 - vendorHash = "sha256-NNhndc604B0nGnToS7MtQzpn3t3xPl5DlkCafc/EyKE="; 19 + vendorHash = "sha256-Oy/BBE6qCKJQRNDn6UiBr+/Psgi3A9Eaytmbmjt7eq8="; 20 20 21 21 ldflags = [ 22 22 "-s"
+2 -2
pkgs/tools/typesetting/soupault/default.nix
··· 8 8 let 9 9 pname = "soupault"; 10 10 11 - version = "4.7.0"; 11 + version = "4.8.0"; 12 12 in 13 13 ocamlPackages.buildDunePackage { 14 14 inherit pname version; ··· 20 20 owner = "PataphysicalSociety"; 21 21 repo = pname; 22 22 rev = version; 23 - sha256 = "nwXyOwDUbkMnyHPrvCvmToyONdbg5kJm2mt5rWrB6HA="; 23 + hash = "sha256-/QpT0zgrfMgRKjHyLHugaAlICpPkqaQ7f8fFAL0P02Y="; 24 24 }; 25 25 26 26 buildInputs = with ocamlPackages; [
+2 -4
pkgs/top-level/all-packages.nix
··· 2849 2849 withGtk = true; 2850 2850 }; 2851 2851 2852 - stella = callPackage ../applications/emulators/stella { }; 2853 - 2854 2852 tamatool = callPackage ../applications/emulators/tamatool { }; 2855 2853 2856 2854 termtekst = callPackage ../applications/emulators/termtekst { }; ··· 3836 3834 flavours = callPackage ../applications/misc/flavours { }; 3837 3835 3838 3836 flirc = libsForQt5.callPackage ../applications/video/flirc { 3839 - readline = readline63; 3837 + readline = readline70; 3840 3838 }; 3841 3839 3842 3840 flood = callPackage ../applications/networking/p2p/flood { }; ··· 10188 10186 }; 10189 10187 10190 10188 meilisearch = callPackage ../servers/search/meilisearch { 10191 - inherit (darwin.apple_sdk_11_0.frameworks) Security; 10189 + inherit (darwin.apple_sdk_11_0.frameworks) Security SystemConfiguration; 10192 10190 }; 10193 10191 10194 10192 memtester = callPackage ../tools/system/memtester { };