Merge master into staging-next

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

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