Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 07e4594b 41c7b4dd

+3211 -1714
+8 -3
doc/stdenv/stdenv.chapter.md
··· 119 119 ``` 120 120 121 121 Then, run more phases up until the failure is reached. 122 - For example, if the failure is in the build phase, the following phases would be required: 122 + If the failure is in the build or check phase, the following phases would be required: 123 123 124 124 ```bash 125 - phases="${preConfigurePhases[*]:-} configurePhase ${preBuildPhases[*]:-} buildPhase" genericBuild 125 + phases="${preConfigurePhases[*]:-} configurePhase ${preBuildPhases[*]:-} buildPhase checkPhase" genericBuild 126 + ``` 127 + 128 + Use this command to run all install phases: 129 + ```bash 130 + phases="${preInstallPhases[*]:-} installPhase ${preFixupPhases[*]:-} fixupPhase installCheckPhase" genericBuild 126 131 ``` 127 132 128 - Re-run a single phase as many times as necessary to examine the failure like so: 133 + Single phase can be re-run as many times as necessary to examine the failure like so: 129 134 130 135 ```bash 131 136 phases="buildPhase" genericBuild
+1 -1
lib/fileset/default.nix
··· 312 312 lib.fileset.fromSource: The source origin of the argument is of type ${typeOf path}, but it should be a path instead.'' 313 313 else if ! pathExists path then 314 314 throw '' 315 - lib.fileset.fromSource: The source origin (${toString path}) of the argument does not exist.'' 315 + lib.fileset.fromSource: The source origin (${toString path}) of the argument is a path that does not exist.'' 316 316 else if isFiltered then 317 317 _fromSourceFilter path source.filter 318 318 else
+4 -4
lib/fileset/internal.nix
··· 381 381 382 382 # Turn a fileset into a source filter function suitable for `builtins.path` 383 383 # Only directories recursively containing at least one files are recursed into 384 - # Type: Path -> fileset -> (String -> String -> Bool) 384 + # Type: fileset -> (String -> String -> Bool) 385 385 _toSourceFilter = fileset: 386 386 let 387 387 # Simplify the tree, necessary to make sure all empty directories are null ··· 753 753 754 754 resultingTree = 755 755 _differenceTree 756 - positive._internalBase 757 - positive._internalTree 758 - negativeTreeWithPositiveBase; 756 + positive._internalBase 757 + positive._internalTree 758 + negativeTreeWithPositiveBase; 759 759 in 760 760 # If the first file set is empty, we can never have any files in the result 761 761 if positive._internalIsEmptyWithoutBase then
+6 -1
lib/fileset/tests.sh
··· 1064 1064 ## lib.fileset.fromSource 1065 1065 1066 1066 # Check error messages 1067 - expectFailure 'fromSource null' 'lib.fileset.fromSource: The source origin of the argument is of type null, but it should be a path instead.' 1068 1067 1068 + # String-like values are not supported 1069 1069 expectFailure 'fromSource (lib.cleanSource "")' 'lib.fileset.fromSource: The source origin of the argument is a string-like value \(""\), but it should be a path instead. 1070 1070 \s*Sources created from paths in strings cannot be turned into file sets, use `lib.sources` or derivations instead.' 1071 1071 1072 + # Wrong type 1073 + expectFailure 'fromSource null' 'lib.fileset.fromSource: The source origin of the argument is of type null, but it should be a path instead.' 1072 1074 expectFailure 'fromSource (lib.cleanSource null)' 'lib.fileset.fromSource: The source origin of the argument is of type null, but it should be a path instead.' 1075 + 1076 + # fromSource on non-existent paths gives an error 1077 + expectFailure 'fromSource ./a' 'lib.fileset.fromSource: The source origin \('"$work"'/a\) of the argument is a path that does not exist.' 1073 1078 1074 1079 # fromSource on a path works and is the same as coercing that path 1075 1080 mkdir a
+7
maintainers/maintainer-list.nix
··· 16279 16279 githubId = 75371; 16280 16280 name = "Stig Palmquist"; 16281 16281 }; 16282 + sg-qwt = { 16283 + email = "hello@edgerunners.eu.org"; 16284 + matrix = "@dhl:edgerunners.eu.org"; 16285 + github = "sg-qwt"; 16286 + name = "sg-qwt"; 16287 + githubId = 115715554; 16288 + }; 16282 16289 sgraf = { 16283 16290 email = "sgraf1337@gmail.com"; 16284 16291 github = "sgraf812";
+1
nixos/modules/module-list.nix
··· 799 799 ./services/monitoring/munin.nix 800 800 ./services/monitoring/nagios.nix 801 801 ./services/monitoring/netdata.nix 802 + ./services/monitoring/ocsinventory-agent.nix 802 803 ./services/monitoring/opentelemetry-collector.nix 803 804 ./services/monitoring/osquery.nix 804 805 ./services/monitoring/parsedmarc.nix
+6 -3
nixos/modules/services/misc/amazon-ssm-agent.nix
··· 33 33 }; 34 34 35 35 config = mkIf cfg.enable { 36 + # See https://github.com/aws/amazon-ssm-agent/blob/mainline/packaging/linux/amazon-ssm-agent.service 36 37 systemd.services.amazon-ssm-agent = { 37 38 inherit (cfg.package.meta) description; 38 - after = [ "network.target" ]; 39 + after = [ "network-online.target" ]; 39 40 wantedBy = [ "multi-user.target" ]; 40 41 41 42 path = [ fake-lsb-release pkgs.coreutils ]; 43 + 42 44 serviceConfig = { 43 45 ExecStart = "${cfg.package}/bin/amazon-ssm-agent"; 44 46 KillMode = "process"; 45 47 # We want this restating pretty frequently. It could be our only means 46 48 # of accessing the instance. 47 49 Restart = "always"; 48 - RestartSec = "1min"; 50 + RestartPreventExitStatus = 194; 51 + RestartSec = "90"; 49 52 }; 50 53 }; 51 54 ··· 70 73 group = "ssm-user"; 71 74 }; 72 75 73 - environment.etc."amazon/ssm/seelog.xml".source = "${cfg.package}/seelog.xml.template"; 76 + environment.etc."amazon/ssm/seelog.xml".source = "${cfg.package}/etc/amazon/ssm/seelog.xml.template"; 74 77 75 78 environment.etc."amazon/ssm/amazon-ssm-agent.json".source = "${cfg.package}/etc/amazon/ssm/amazon-ssm-agent.json.template"; 76 79
+33
nixos/modules/services/monitoring/ocsinventory-agent.md
··· 1 + # OCS Inventory Agent {#module-services-ocsinventory-agent} 2 + 3 + [OCS Inventory NG](https://ocsinventory-ng.org/) or Open Computers and Software inventory 4 + is an application designed to help IT administrator to keep track of the hardware and software 5 + configurations of computers that are installed on their network. 6 + 7 + OCS Inventory collects information about the hardware and software of networked machines 8 + through the **OCS Inventory Agent** program. 9 + 10 + This NixOS module enables you to install and configure this agent so that it sends information from your computer to the OCS Inventory server. 11 + 12 + For more technical information about OCS Inventory Agent, refer to [the Wiki documentation](https://wiki.ocsinventory-ng.org/03.Basic-documentation/Setting-up-the-UNIX-agent-manually-on-client-computers/). 13 + 14 + 15 + ## Basic Usage {#module-services-ocsinventory-agent-basic-usage} 16 + 17 + A minimal configuration looks like this: 18 + 19 + ```nix 20 + { 21 + services.ocsinventory-agent = { 22 + enable = true; 23 + settings = { 24 + server = "https://ocsinventory.localhost:8080/ocsinventory"; 25 + tag = "01234567890123"; 26 + }; 27 + }; 28 + } 29 + ``` 30 + 31 + This configuration will periodically run the ocsinventory-agent SystemD service. 32 + 33 + The OCS Inventory Agent will inventory the computer and then sends the results to the specified OCS Inventory Server.
+134
nixos/modules/services/monitoring/ocsinventory-agent.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + let 4 + cfg = config.services.ocsinventory-agent; 5 + 6 + settingsFormat = pkgs.formats.keyValue { 7 + mkKeyValue = lib.generators.mkKeyValueDefault { } "="; 8 + }; 9 + 10 + in 11 + { 12 + meta = { 13 + doc = ./ocsinventory-agent.md; 14 + maintainers = with lib.maintainers; [ anthonyroussel ]; 15 + }; 16 + 17 + options = { 18 + services.ocsinventory-agent = { 19 + enable = lib.mkEnableOption (lib.mdDoc "OCS Inventory Agent"); 20 + 21 + package = lib.mkPackageOptionMD pkgs "ocsinventory-agent" { }; 22 + 23 + settings = lib.mkOption { 24 + type = lib.types.submodule { 25 + freeformType = settingsFormat.type.nestedTypes.elemType; 26 + 27 + options = { 28 + server = lib.mkOption { 29 + type = lib.types.nullOr lib.types.str; 30 + example = "https://ocsinventory.localhost:8080/ocsinventory"; 31 + default = null; 32 + description = lib.mdDoc '' 33 + The URI of the OCS Inventory server where to send the inventory file. 34 + 35 + This option is ignored if {option}`services.ocsinventory-agent.settings.local` is set. 36 + ''; 37 + }; 38 + 39 + local = lib.mkOption { 40 + type = lib.types.nullOr lib.types.path; 41 + example = "/var/lib/ocsinventory-agent/reports"; 42 + default = null; 43 + description = lib.mdDoc '' 44 + If specified, the OCS Inventory Agent will run in offline mode 45 + and the resulting inventory file will be stored in the specified path. 46 + ''; 47 + }; 48 + 49 + ca = lib.mkOption { 50 + type = lib.types.path; 51 + default = "/etc/ssl/certs/ca-certificates.crt"; 52 + description = lib.mdDoc '' 53 + Path to CA certificates file in PEM format, for server 54 + SSL certificate validation. 55 + ''; 56 + }; 57 + 58 + tag = lib.mkOption { 59 + type = lib.types.nullOr lib.types.str; 60 + default = null; 61 + example = "01234567890123"; 62 + description = lib.mdDoc "Tag for the generated inventory."; 63 + }; 64 + 65 + debug = lib.mkEnableOption (lib.mdDoc "debug mode"); 66 + }; 67 + }; 68 + default = { }; 69 + example = { 70 + ca = "/etc/ssl/certs/ca-certificates.crt"; 71 + debug = true; 72 + server = "https://ocsinventory.localhost:8080/ocsinventory"; 73 + tag = "01234567890123"; 74 + }; 75 + description = lib.mdDoc '' 76 + Configuration for /etc/ocsinventory-agent/ocsinventory-agent.cfg. 77 + 78 + Refer to 79 + {manpage}`ocsinventory-agent(1)` for available options. 80 + ''; 81 + }; 82 + 83 + interval = lib.mkOption { 84 + type = lib.types.str; 85 + default = "daily"; 86 + example = "06:00"; 87 + description = lib.mdDoc '' 88 + How often we run the ocsinventory-agent service. Runs by default every daily. 89 + 90 + The format is described in 91 + {manpage}`systemd.time(7)`. 92 + ''; 93 + }; 94 + }; 95 + }; 96 + 97 + config = 98 + let 99 + configFile = settingsFormat.generate "ocsinventory-agent.cfg" cfg.settings; 100 + 101 + in lib.mkIf cfg.enable { 102 + # Path of the configuration file is hard-coded and cannot be changed 103 + # https://github.com/OCSInventory-NG/UnixAgent/blob/v2.10.0/lib/Ocsinventory/Agent/Config.pm#L78 104 + # 105 + environment.etc."ocsinventory-agent/ocsinventory-agent.cfg".source = configFile; 106 + 107 + systemd.services.ocsinventory-agent = { 108 + description = "OCS Inventory Agent service"; 109 + wantedBy = [ "multi-user.target" ]; 110 + after = [ "network.target" ]; 111 + 112 + reloadTriggers = [ configFile ]; 113 + 114 + serviceConfig = { 115 + ExecStart = lib.getExe cfg.package; 116 + ConfigurationDirectory = "ocsinventory-agent"; 117 + StateDirectory = "ocsinventory-agent"; 118 + }; 119 + }; 120 + 121 + systemd.timers.ocsinventory-agent = { 122 + description = "Launch OCS Inventory Agent regularly"; 123 + wantedBy = [ "timers.target" ]; 124 + 125 + timerConfig = { 126 + OnCalendar = cfg.interval; 127 + AccuracySec = "1h"; 128 + RandomizedDelaySec = 240; 129 + Persistent = true; 130 + Unit = "ocsinventory-agent.service"; 131 + }; 132 + }; 133 + }; 134 + }
+1 -1
nixos/modules/services/networking/squid.nix
··· 176 176 serviceConfig = { 177 177 PIDFile="/run/squid.pid"; 178 178 ExecStart = "${cfg.package}/bin/squid --foreground -YCs -f ${squidConfig}"; 179 - ExecReload="kill -HUP $MAINPID"; 179 + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 180 180 KillMode="mixed"; 181 181 NotifyAccess="all"; 182 182 };
+3 -1
nixos/modules/services/web-servers/caddy/default.nix
··· 376 376 ReadWriteDirectories = cfg.dataDir; 377 377 StateDirectory = mkIf (cfg.dataDir == "/var/lib/caddy") [ "caddy" ]; 378 378 LogsDirectory = mkIf (cfg.logDir == "/var/log/caddy") [ "caddy" ]; 379 - Restart = "on-abnormal"; 379 + Restart = "on-failure"; 380 + RestartPreventExitStatus = 1; 381 + RestartSecs = "5s"; 380 382 381 383 # TODO: attempt to upstream these options 382 384 NoNewPrivileges = true;
+2
nixos/tests/all-tests.nix
··· 117 117 allTerminfo = handleTest ./all-terminfo.nix {}; 118 118 alps = handleTest ./alps.nix {}; 119 119 amazon-init-shell = handleTest ./amazon-init-shell.nix {}; 120 + amazon-ssm-agent = handleTest ./amazon-ssm-agent.nix {}; 120 121 amd-sev = runTest ./amd-sev.nix; 121 122 anbox = runTest ./anbox.nix; 122 123 anuko-time-tracker = handleTest ./anuko-time-tracker.nix {}; ··· 616 617 openstack-image-userdata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).userdata or {}; 617 618 opentabletdriver = handleTest ./opentabletdriver.nix {}; 618 619 opentelemetry-collector = handleTest ./opentelemetry-collector.nix {}; 620 + ocsinventory-agent = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./ocsinventory-agent.nix {}; 619 621 owncast = handleTest ./owncast.nix {}; 620 622 outline = handleTest ./outline.nix {}; 621 623 image-contents = handleTest ./image-contents.nix {};
+17
nixos/tests/amazon-ssm-agent.nix
··· 1 + import ./make-test-python.nix ({ lib, pkgs, ... }: { 2 + name = "amazon-ssm-agent"; 3 + meta.maintainers = [ lib.maintainers.anthonyroussel ]; 4 + 5 + nodes.machine = { config, pkgs, ... }: { 6 + services.amazon-ssm-agent.enable = true; 7 + }; 8 + 9 + testScript = '' 10 + start_all() 11 + 12 + machine.wait_for_file("/etc/amazon/ssm/seelog.xml") 13 + machine.wait_for_file("/etc/amazon/ssm/amazon-ssm-agent.json") 14 + 15 + machine.wait_for_unit("amazon-ssm-agent.service") 16 + ''; 17 + })
+33
nixos/tests/ocsinventory-agent.nix
··· 1 + import ./make-test-python.nix ({ pkgs, ...} : { 2 + name = "ocsinventory-agent"; 3 + 4 + nodes.machine = { pkgs, ... }: { 5 + services.ocsinventory-agent = { 6 + enable = true; 7 + settings = { 8 + debug = true; 9 + local = "/var/lib/ocsinventory-agent/reports"; 10 + tag = "MY_INVENTORY_TAG"; 11 + }; 12 + }; 13 + }; 14 + 15 + testScript = '' 16 + path = "/var/lib/ocsinventory-agent/reports" 17 + 18 + # Run the agent to generate the inventory file in offline mode 19 + start_all() 20 + machine.succeed("mkdir -p {}".format(path)) 21 + machine.wait_for_unit("ocsinventory-agent.service") 22 + machine.wait_until_succeeds("journalctl -u ocsinventory-agent.service | grep 'Inventory saved in'") 23 + 24 + # Fetch the path to the generated inventory file 25 + report_file = machine.succeed("find {}/*.ocs -type f | head -n1".format(path)) 26 + 27 + with subtest("Check the tag value"): 28 + tag = machine.succeed( 29 + "${pkgs.libxml2}/bin/xmllint --xpath 'string(/REQUEST/CONTENT/ACCOUNTINFO/KEYVALUE)' {}".format(report_file) 30 + ).rstrip() 31 + assert tag == "MY_INVENTORY_TAG", f"tag is not valid, was '{tag}'" 32 + ''; 33 + })
+11 -28
pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, faust2jack, faust2lv2, helmholtz, mrpeach, puredata-with-plugins }: 1 + { lib, stdenv, fetchFromGitHub, faust2jack, faust2lv2, helmholtz, mrpeach, puredata-with-plugins, jack-example-tools }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "VoiceOfFaust"; 4 - version = "1.1.4"; 4 + version = "1.1.5"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "magnetophon"; 8 8 repo = "VoiceOfFaust"; 9 - rev = "V${version}"; 10 - sha256 = "0la9b806qwrlsxgbir7n1db8v3w24wmd6k43p6qpr1fjjpkhrrgw"; 9 + rev = version; 10 + sha256 = "sha256-vB8+ymvNuuovFXwOJ3BTIj5mGzCGa1+yhYs4nWMYIxU="; 11 11 }; 12 12 13 13 plugins = [ helmholtz mrpeach ]; ··· 16 16 17 17 buildInputs = [ faust2jack faust2lv2 ]; 18 18 19 - runtimeInputs = [ pitchTracker ]; 19 + enableParallelBuilding = true; 20 20 21 21 dontWrapQtApps = true; 22 22 23 + makeFlags = [ 24 + "PREFIX=$(out)" 25 + ]; 26 + 23 27 patchPhase = '' 24 28 sed -i "s@pd -nodac@${pitchTracker}/bin/pd -nodac@g" launchers/synthWrapper 25 - sed -i "s@../PureData/OscSendVoc.pd@$out/PureData/OscSendVoc.pd@g" launchers/pitchTracker 26 - ''; 27 - 28 - buildPhase = '' 29 - sh install.sh 30 - # so it doesn;t end up in /bin/ : 31 - rm -f install.sh 32 - ''; 33 - 34 - installPhase = '' 35 - mkdir -p $out/bin 36 - 37 - for f in $(find . -executable -type f); do 38 - cp $f $out/bin/ 39 - done 40 - 41 - cp launchers/* $out/bin/ 42 - mkdir $out/PureData/ 43 - # cp PureData/OscSendVoc.pd $out/PureData/OscSendVoc.pd 44 - cp PureData/* $out/PureData/ 45 - 46 - mkdir -p $out/lib/lv2 47 - cp -r *.lv2/ $out/lib/lv2 29 + sed -i "s@jack_connect@${jack-example-tools}/bin/jack_connect@g" launchers/synthWrapper 30 + sed -i "s@../PureData/OscSendVoc.pd@$out/bin/PureData/OscSendVoc.pd@g" launchers/pitchTracker 48 31 ''; 49 32 50 33 meta = {
+3 -3
pkgs/applications/blockchains/go-ethereum/default.nix
··· 9 9 10 10 in buildGoModule rec { 11 11 pname = "go-ethereum"; 12 - version = "1.13.4"; 12 + version = "1.13.5"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "ethereum"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-RQlWWHoij3gtFwjJeEGsmd5YJNTGX0I84nOAQyWBx/M="; 18 + sha256 = "sha256-UbRsY9fSUYAwPcLfGGDHeqvSsLKUKR+2a93jH5xA9uQ="; 19 19 }; 20 20 21 - vendorHash = "sha256-YmUgKO3JtVOE/YACqL/QBiyR1jT/jPCH+Gb0xYwkJEc="; 21 + vendorHash = "sha256-dOvpOCMxxmcAaticSLVlro1L4crAVJWyvgx/JZZ7buE="; 22 22 23 23 doCheck = false; 24 24
+6 -6
pkgs/applications/editors/android-studio/default.nix
··· 10 10 inherit tiling_wm; 11 11 }; 12 12 stableVersion = { 13 - version = "2022.3.1.19"; # "Android Studio Giraffe (2022.3.1)" 14 - sha256Hash = "sha256-JQYl3KsYPgxo6/Eu+KUir3NpUn128e/HBPk8BbAv+p4="; 13 + version = "2022.3.1.20"; # "Android Studio Giraffe (2022.3.1) Patch 2" 14 + sha256Hash = "sha256-IkxOt6DI4cBPUOztEBNJV0DHGruJjVdJ0skxcue+rdg="; 15 15 }; 16 16 betaVersion = { 17 - version = "2023.1.1.17"; # "Android Studio Hedgehog (2023.3.1)" 18 - sha256Hash = "sha256-0sN+B1RxxlbgxXrEs8gft4qjvIYtazJS6DllHZ2h768="; 17 + version = "2023.1.1.25"; # "Android Studio Hedgehog | 2023.1.1 RC 3" 18 + sha256Hash = "sha256-jOqTAHYAk8j9+Ir01TLBsp20u7/iBKV8T/joZLITDs4="; 19 19 }; 20 20 latestVersion = { 21 - version = "2023.2.1.1"; # Android Studio Iguana (2023.2.1) Canary 1 22 - sha256Hash = "sha256-7ub9GkJd9J37nG2drXOuU7r4w/gI+m9nlWANqIk2ddk="; 21 + version = "2023.2.1.14"; # "Android Studio Iguana | 2023.2.1 Canary 14" 22 + sha256Hash = "sha256-8szERftch1JWJ66BclJBq5DZcH1Xf1cyVj08WknLoS8="; 23 23 }; 24 24 in { 25 25 # Attributes are named by their corresponding release channels
+103 -85
pkgs/applications/editors/emacs/elisp-packages/elpa-devel-generated.nix
··· 654 654 elpaBuild { 655 655 pname = "bufferlo"; 656 656 ename = "bufferlo"; 657 - version = "0.2.0.20231106.215852"; 657 + version = "0.3.0.20231111.144610"; 658 658 src = fetchurl { 659 - url = "https://elpa.gnu.org/devel/bufferlo-0.2.0.20231106.215852.tar"; 660 - sha256 = "17qjjifdl3y8p4ldzami9b3ns9mzzqdacvkzsryv5885hzas67zz"; 659 + url = "https://elpa.gnu.org/devel/bufferlo-0.3.0.20231111.144610.tar"; 660 + sha256 = "02vsgmfn7z4772dgfy9laraqrslzz7nqdaibzpj5qx2k0gxrh0nb"; 661 661 }; 662 662 packageRequires = [ emacs ]; 663 663 meta = { ··· 920 920 license = lib.licenses.free; 921 921 }; 922 922 }) {}; 923 - company = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 923 + company = callPackage ({ elpaBuild 924 + , emacs 925 + , fetchurl 926 + , lib }: 924 927 elpaBuild { 925 928 pname = "company"; 926 929 ename = "company"; 927 - version = "0.10.2.0.20231110.5234"; 930 + version = "0.10.2.0.20231115.182802"; 928 931 src = fetchurl { 929 - url = "https://elpa.gnu.org/devel/company-0.10.2.0.20231110.5234.tar"; 930 - sha256 = "18533dlk7k77if51kjhwlf2yb872ixjf1cffg197bnfy29sdrm11"; 932 + url = "https://elpa.gnu.org/devel/company-0.10.2.0.20231115.182802.tar"; 933 + sha256 = "0l18qi7m8anawl466xd7r3i3cjvhqprhwzclpw92x7hzgnjv73nl"; 931 934 }; 932 935 packageRequires = [ emacs ]; 933 936 meta = { ··· 1000 1003 elpaBuild { 1001 1004 pname = "compat"; 1002 1005 ename = "compat"; 1003 - version = "29.1.4.3.0.20231107.184238"; 1006 + version = "29.1.4.4.0.20231113.72021"; 1004 1007 src = fetchurl { 1005 - url = "https://elpa.gnu.org/devel/compat-29.1.4.3.0.20231107.184238.tar"; 1006 - sha256 = "1mcfx5my48zr14syzmpidgr1kjji2v63sqmx3zh7spxxd274yviq"; 1008 + url = "https://elpa.gnu.org/devel/compat-29.1.4.4.0.20231113.72021.tar"; 1009 + sha256 = "0w6dy2356k1k0g4kbr81wv431fb9by03nc7rdgwnsyq4cs3dd46s"; 1007 1010 }; 1008 1011 packageRequires = [ emacs seq ]; 1009 1012 meta = { ··· 1015 1018 elpaBuild { 1016 1019 pname = "consult"; 1017 1020 ename = "consult"; 1018 - version = "0.35.0.20231107.212252"; 1021 + version = "0.35.0.20231115.174657"; 1019 1022 src = fetchurl { 1020 - url = "https://elpa.gnu.org/devel/consult-0.35.0.20231107.212252.tar"; 1021 - sha256 = "1p9l79sxxa06cxky5z08mccf34hbbp742iza57riknf0zmrglkpc"; 1023 + url = "https://elpa.gnu.org/devel/consult-0.35.0.20231115.174657.tar"; 1024 + sha256 = "0j8kj3d2svqns4z2pp18rc6x9blfz0w41r73934wdjxw2fri9wbd"; 1022 1025 }; 1023 1026 packageRequires = [ compat emacs ]; 1024 1027 meta = { ··· 1067 1070 elpaBuild { 1068 1071 pname = "corfu"; 1069 1072 ename = "corfu"; 1070 - version = "0.38.0.20231108.174629"; 1073 + version = "0.38.0.20231112.81933"; 1071 1074 src = fetchurl { 1072 - url = "https://elpa.gnu.org/devel/corfu-0.38.0.20231108.174629.tar"; 1073 - sha256 = "1ynkyw7mkl8y66kxwy51gwdj60b4nadk9qbwsjljbfdnc80y6ws5"; 1075 + url = "https://elpa.gnu.org/devel/corfu-0.38.0.20231112.81933.tar"; 1076 + sha256 = "1zmd13qbdknw03l65fir3a4niq5lbacj28j5kqknka87f3lz4pd2"; 1074 1077 }; 1075 1078 packageRequires = [ compat emacs ]; 1076 1079 meta = { ··· 1332 1335 elpaBuild { 1333 1336 pname = "denote"; 1334 1337 ename = "denote"; 1335 - version = "2.0.0.0.20231107.64253"; 1338 + version = "2.1.0.0.20231115.111152"; 1336 1339 src = fetchurl { 1337 - url = "https://elpa.gnu.org/devel/denote-2.0.0.0.20231107.64253.tar"; 1338 - sha256 = "143pgnsfi3mf42n1yrwjr79b32k0081i19zdkwg97xhvfbqhiddw"; 1340 + url = "https://elpa.gnu.org/devel/denote-2.1.0.0.20231115.111152.tar"; 1341 + sha256 = "0mp57k3z1gyc21lj010yi9nb3qpqd6yirysf9ljcy9h5bxnqafmh"; 1339 1342 }; 1340 1343 packageRequires = [ emacs ]; 1341 1344 meta = { ··· 1491 1494 elpaBuild { 1492 1495 pname = "dired-duplicates"; 1493 1496 ename = "dired-duplicates"; 1494 - version = "0.2.0.20231109.135341"; 1497 + version = "0.3.0.20231114.215046"; 1495 1498 src = fetchurl { 1496 - url = "https://elpa.gnu.org/devel/dired-duplicates-0.2.0.20231109.135341.tar"; 1497 - sha256 = "07ridbcy3n0v3dax7kj3d7nk2k0w57dnapd4kki4xhkm4fklx6w6"; 1499 + url = "https://elpa.gnu.org/devel/dired-duplicates-0.3.0.20231114.215046.tar"; 1500 + sha256 = "0rla938sj1zig7qcdxybl7qm4x1b0ndpf9xf9ikj0vfdghyg7z2s"; 1498 1501 }; 1499 1502 packageRequires = [ emacs ]; 1500 1503 meta = { ··· 1634 1637 license = lib.licenses.free; 1635 1638 }; 1636 1639 }) {}; 1640 + drepl = callPackage ({ comint-mime, elpaBuild, emacs, fetchurl, lib }: 1641 + elpaBuild { 1642 + pname = "drepl"; 1643 + ename = "drepl"; 1644 + version = "0.1.0.20231112.180047"; 1645 + src = fetchurl { 1646 + url = "https://elpa.gnu.org/devel/drepl-0.1.0.20231112.180047.tar"; 1647 + sha256 = "09s55hfy11y7v1d2l6nggz8b27mrsvqabb5xwpipnnynkmif2q2q"; 1648 + }; 1649 + packageRequires = [ comint-mime emacs ]; 1650 + meta = { 1651 + homepage = "https://elpa.gnu.org/packages/drepl.html"; 1652 + license = lib.licenses.free; 1653 + }; 1654 + }) {}; 1637 1655 dts-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 1638 1656 elpaBuild { 1639 1657 pname = "dts-mode"; ··· 1800 1818 elpaBuild { 1801 1819 pname = "eglot"; 1802 1820 ename = "eglot"; 1803 - version = "1.15.0.20231107.90944"; 1821 + version = "1.15.0.20231115.41203"; 1804 1822 src = fetchurl { 1805 - url = "https://elpa.gnu.org/devel/eglot-1.15.0.20231107.90944.tar"; 1806 - sha256 = "135a3zyzjpv2n0c988b9g9mh93y7p1dp9nvmchm4i26mdmzn6jbz"; 1823 + url = "https://elpa.gnu.org/devel/eglot-1.15.0.20231115.41203.tar"; 1824 + sha256 = "0xybf9czzkdpv94qsbmq725scmjjkm4gwn74ffa8r99a0i1w2nki"; 1807 1825 }; 1808 1826 packageRequires = [ 1809 1827 eldoc ··· 1911 1929 elpaBuild { 1912 1930 pname = "embark"; 1913 1931 ename = "embark"; 1914 - version = "0.23.0.20231104.193345"; 1932 + version = "0.23.0.20231112.53804"; 1915 1933 src = fetchurl { 1916 - url = "https://elpa.gnu.org/devel/embark-0.23.0.20231104.193345.tar"; 1917 - sha256 = "10qny8wp74np12sczz08gfrxspvapwvz2zkdig76wcrpd4kdpjk4"; 1934 + url = "https://elpa.gnu.org/devel/embark-0.23.0.20231112.53804.tar"; 1935 + sha256 = "056kgr14msd6fhzwpdazzaxzmn65wm6qp59z22l5ykpr8awl4jxi"; 1918 1936 }; 1919 1937 packageRequires = [ compat emacs ]; 1920 1938 meta = { ··· 1931 1949 elpaBuild { 1932 1950 pname = "embark-consult"; 1933 1951 ename = "embark-consult"; 1934 - version = "0.8.0.20231104.193345"; 1952 + version = "0.8.0.20231112.53804"; 1935 1953 src = fetchurl { 1936 - url = "https://elpa.gnu.org/devel/embark-consult-0.8.0.20231104.193345.tar"; 1937 - sha256 = "15syrabv26yq69g2lz2dqs8w4drw1v3whr0h2vzmc1p0pv9jpks2"; 1954 + url = "https://elpa.gnu.org/devel/embark-consult-0.8.0.20231112.53804.tar"; 1955 + sha256 = "1fxk8hfid2ii912can7b1gp8fzkq31y1cfi53n9mw6p0nj26c1fh"; 1938 1956 }; 1939 1957 packageRequires = [ consult emacs embark ]; 1940 1958 meta = { ··· 1956 1974 elpaBuild { 1957 1975 pname = "ement"; 1958 1976 ename = "ement"; 1959 - version = "0.14pre0.20231029.40923"; 1977 + version = "0.14pre0.20231111.212243"; 1960 1978 src = fetchurl { 1961 - url = "https://elpa.gnu.org/devel/ement-0.14pre0.20231029.40923.tar"; 1962 - sha256 = "06r0s8dxlxr63a1zgdk0qxzd6x27r6mlymi6hxp8923yvwqddkdf"; 1979 + url = "https://elpa.gnu.org/devel/ement-0.14pre0.20231111.212243.tar"; 1980 + sha256 = "13xd7m5pigfvqnrxqr40dg9139djb0m9l3p7scvi0fi05247kf5l"; 1963 1981 }; 1964 1982 packageRequires = [ 1965 1983 emacs ··· 1985 2003 elpaBuild { 1986 2004 pname = "emms"; 1987 2005 ename = "emms"; 1988 - version = "16.0.20231106.173540"; 2006 + version = "16.0.20231110.185602"; 1989 2007 src = fetchurl { 1990 - url = "https://elpa.gnu.org/devel/emms-16.0.20231106.173540.tar"; 1991 - sha256 = "08l7nzz596jwqr4wcjcvsihdhai4faqihavrshvja2nhrdxxm79x"; 2008 + url = "https://elpa.gnu.org/devel/emms-16.0.20231110.185602.tar"; 2009 + sha256 = "114dsyncfcgrxjypf475n5kabcmm08szq4sa2grqv5gcm9l63qwr"; 1992 2010 }; 1993 2011 packageRequires = [ cl-lib nadvice seq ]; 1994 2012 meta = { ··· 2054 2072 elpaBuild { 2055 2073 pname = "erc"; 2056 2074 ename = "erc"; 2057 - version = "5.6snapshot0.20231104.154155"; 2075 + version = "5.6snapshot0.20231112.203749"; 2058 2076 src = fetchurl { 2059 - url = "https://elpa.gnu.org/devel/erc-5.6snapshot0.20231104.154155.tar"; 2060 - sha256 = "0z22cw6hgn4lsc1bp4ci75v03mvlra1nyfj8g7xkfdv75nbv2yga"; 2077 + url = "https://elpa.gnu.org/devel/erc-5.6snapshot0.20231112.203749.tar"; 2078 + sha256 = "1zag35hnzc72gbjr00ljfz803z8rmz8qhyxxvcxaia769vhmh5j8"; 2061 2079 }; 2062 2080 packageRequires = [ compat emacs ]; 2063 2081 meta = { ··· 2633 2651 elpaBuild { 2634 2652 pname = "gpr-mode"; 2635 2653 ename = "gpr-mode"; 2636 - version = "1.0.4.0.20231015.114428"; 2654 + version = "1.0.5.0.20231115.90848"; 2637 2655 src = fetchurl { 2638 - url = "https://elpa.gnu.org/devel/gpr-mode-1.0.4.0.20231015.114428.tar"; 2639 - sha256 = "1y3571ymlrgiq5jxbwlyw43pmfxgq776pajb9hlvyz9l3w195c8g"; 2656 + url = "https://elpa.gnu.org/devel/gpr-mode-1.0.5.0.20231115.90848.tar"; 2657 + sha256 = "1z7v8kwamh217k0lfwcdycj4wnq4dj9lrryppqhjdqb7cj02bmdz"; 2640 2658 }; 2641 2659 packageRequires = [ emacs gnat-compiler wisi ]; 2642 2660 meta = { ··· 2683 2701 elpaBuild { 2684 2702 pname = "greader"; 2685 2703 ename = "greader"; 2686 - version = "0.6.0.0.20231104.45848"; 2704 + version = "0.6.0.0.20231113.71128"; 2687 2705 src = fetchurl { 2688 - url = "https://elpa.gnu.org/devel/greader-0.6.0.0.20231104.45848.tar"; 2689 - sha256 = "1ppvgi17agzrsjfd9jaa5zszvqcm1n4rfy7z82da4rl5mbgnml9p"; 2706 + url = "https://elpa.gnu.org/devel/greader-0.6.0.0.20231113.71128.tar"; 2707 + sha256 = "19aj5bp72ic2j9fv4lygnpj01bl89ifcw4s75lqasff60mlv0320"; 2690 2708 }; 2691 2709 packageRequires = [ emacs ]; 2692 2710 meta = { ··· 3113 3131 elpaBuild { 3114 3132 pname = "jinx"; 3115 3133 ename = "jinx"; 3116 - version = "0.9.0.20231104.142700"; 3134 + version = "0.9.0.20231111.85046"; 3117 3135 src = fetchurl { 3118 - url = "https://elpa.gnu.org/devel/jinx-0.9.0.20231104.142700.tar"; 3119 - sha256 = "16qq42qmklyls2fc482x2pv1l14x3kn78l41imvg8jrv3z64j89p"; 3136 + url = "https://elpa.gnu.org/devel/jinx-0.9.0.20231111.85046.tar"; 3137 + sha256 = "1dp2sclzrr5918n2zjzyxhxcf3sd393a3a4xr4c8wdi2wdpmn1vs"; 3120 3138 }; 3121 3139 packageRequires = [ compat emacs ]; 3122 3140 meta = { ··· 3720 3738 elpaBuild { 3721 3739 pname = "modus-themes"; 3722 3740 ename = "modus-themes"; 3723 - version = "4.3.0.0.20231031.71656"; 3741 + version = "4.3.0.0.20231115.130235"; 3724 3742 src = fetchurl { 3725 - url = "https://elpa.gnu.org/devel/modus-themes-4.3.0.0.20231031.71656.tar"; 3726 - sha256 = "04hjhg596qfkrnll0wrg4f50ilns28jpf2ws7021wivr370xajki"; 3743 + url = "https://elpa.gnu.org/devel/modus-themes-4.3.0.0.20231115.130235.tar"; 3744 + sha256 = "025iqd3c9kwrv1hwdr1szp1cl23bkf1vahad6nhx00x351rxv0r0"; 3727 3745 }; 3728 3746 packageRequires = [ emacs ]; 3729 3747 meta = { ··· 4139 4157 elpaBuild { 4140 4158 pname = "orderless"; 4141 4159 ename = "orderless"; 4142 - version = "1.0.0.20231107.210315"; 4160 + version = "1.0.0.20231110.144817"; 4143 4161 src = fetchurl { 4144 - url = "https://elpa.gnu.org/devel/orderless-1.0.0.20231107.210315.tar"; 4145 - sha256 = "0j5fkmw4qy40ab2c6d0mf6637s8q95gi3sp7w477d6ymck5i2ck8"; 4162 + url = "https://elpa.gnu.org/devel/orderless-1.0.0.20231110.144817.tar"; 4163 + sha256 = "0cfspqc7livr0m3s021gp2cl74qnv1pvyxba83af0088nb9z0aqz"; 4146 4164 }; 4147 4165 packageRequires = [ emacs ]; 4148 4166 meta = { ··· 4154 4172 elpaBuild { 4155 4173 pname = "org"; 4156 4174 ename = "org"; 4157 - version = "9.7pre0.20231108.95550"; 4175 + version = "9.7pre0.20231115.92033"; 4158 4176 src = fetchurl { 4159 - url = "https://elpa.gnu.org/devel/org-9.7pre0.20231108.95550.tar"; 4160 - sha256 = "01dk4sq5wfiwj9g5bfriqqkfrgdfy3c7kixd7y4cf9k6pbjl4sfp"; 4177 + url = "https://elpa.gnu.org/devel/org-9.7pre0.20231115.92033.tar"; 4178 + sha256 = "18sbwnw57xp9ss78f3xva3jysdvzk0lcppr2g4qgb696fkglp6w1"; 4161 4179 }; 4162 4180 packageRequires = [ emacs ]; 4163 4181 meta = { ··· 4773 4791 elpaBuild { 4774 4792 pname = "pulsar"; 4775 4793 ename = "pulsar"; 4776 - version = "1.0.1.0.20231101.62313"; 4794 + version = "1.0.1.0.20231115.55251"; 4777 4795 src = fetchurl { 4778 - url = "https://elpa.gnu.org/devel/pulsar-1.0.1.0.20231101.62313.tar"; 4779 - sha256 = "10k57sd29hkbja85sn5yf7wm0g5wyk216ykdjl4vr03891ic03dg"; 4796 + url = "https://elpa.gnu.org/devel/pulsar-1.0.1.0.20231115.55251.tar"; 4797 + sha256 = "15pvf6f0g423w3vi86l8djxvzzrvziml7rlqp314xskp8kz7w6g6"; 4780 4798 }; 4781 4799 packageRequires = [ emacs ]; 4782 4800 meta = { ··· 4940 4958 elpaBuild { 4941 4959 pname = "realgud"; 4942 4960 ename = "realgud"; 4943 - version = "1.5.1.0.20231020.222710"; 4961 + version = "1.5.1.0.20231113.141045"; 4944 4962 src = fetchurl { 4945 - url = "https://elpa.gnu.org/devel/realgud-1.5.1.0.20231020.222710.tar"; 4946 - sha256 = "0lmq7x7x8cm6y8vp2gin1h6h7chkflj5fyzls4b61rh15yg8m1h0"; 4963 + url = "https://elpa.gnu.org/devel/realgud-1.5.1.0.20231113.141045.tar"; 4964 + sha256 = "1lidmlrsg0jax0mmsxgpjk70x4i4vhiv5ira744rj7m3w0mwgmrw"; 4947 4965 }; 4948 4966 packageRequires = [ emacs load-relative loc-changes test-simple ]; 4949 4967 meta = { ··· 5621 5639 elpaBuild { 5622 5640 pname = "spacious-padding"; 5623 5641 ename = "spacious-padding"; 5624 - version = "0.1.0.0.20230606.175440"; 5642 + version = "0.1.0.0.20231115.114712"; 5625 5643 src = fetchurl { 5626 - url = "https://elpa.gnu.org/devel/spacious-padding-0.1.0.0.20230606.175440.tar"; 5627 - sha256 = "01541k8j5g920vnj3ds6ancqyi36n6ak00g4rq5vc6ia1ybxiijh"; 5644 + url = "https://elpa.gnu.org/devel/spacious-padding-0.1.0.0.20231115.114712.tar"; 5645 + sha256 = "1why1wwbpasmag8czsgb65f8gkqjcg5hckgmk9106ml834krhhx5"; 5628 5646 }; 5629 5647 packageRequires = [ emacs ]; 5630 5648 meta = { ··· 5719 5737 elpaBuild { 5720 5738 pname = "srht"; 5721 5739 ename = "srht"; 5722 - version = "0.3.0.20231103.213748"; 5740 + version = "0.3.0.20231114.102408"; 5723 5741 src = fetchurl { 5724 - url = "https://elpa.gnu.org/devel/srht-0.3.0.20231103.213748.tar"; 5725 - sha256 = "1nr6faizww1nzv5lpdikbqxkc6i1hswg2qa50cybl05ycqq9b10a"; 5742 + url = "https://elpa.gnu.org/devel/srht-0.3.0.20231114.102408.tar"; 5743 + sha256 = "0s5xa8vqb6wzxmv3vx8cc8lkpnnkfzdjljra7lz105m3v2adz1a0"; 5726 5744 }; 5727 5745 packageRequires = [ emacs plz ]; 5728 5746 meta = { ··· 6042 6060 elpaBuild { 6043 6061 pname = "tempel"; 6044 6062 ename = "tempel"; 6045 - version = "0.8.0.20231106.72513"; 6063 + version = "0.8.0.20231111.112832"; 6046 6064 src = fetchurl { 6047 - url = "https://elpa.gnu.org/devel/tempel-0.8.0.20231106.72513.tar"; 6048 - sha256 = "1pbw7wrhz5h1xykbc1ihhpzqc0kki6k637wagx8yfz95n606808d"; 6065 + url = "https://elpa.gnu.org/devel/tempel-0.8.0.20231111.112832.tar"; 6066 + sha256 = "1gd4dvill1vvdncibjfv7vl1rxlkhcq2nfppczyp2sr565fgcb0c"; 6049 6067 }; 6050 6068 packageRequires = [ compat emacs ]; 6051 6069 meta = { ··· 6230 6248 elpaBuild { 6231 6249 pname = "transient"; 6232 6250 ename = "transient"; 6233 - version = "0.4.3.0.20231027.212124"; 6251 + version = "0.4.3.0.20231112.92348"; 6234 6252 src = fetchurl { 6235 - url = "https://elpa.gnu.org/devel/transient-0.4.3.0.20231027.212124.tar"; 6236 - sha256 = "0rzc5ks0b9nlnvggj7hn9648y5siw9qjpg8n3swlmkb68m3b2c05"; 6253 + url = "https://elpa.gnu.org/devel/transient-0.4.3.0.20231112.92348.tar"; 6254 + sha256 = "01yvwx8psllys34fry1vp2h7w3jll8kcrglsri8p2d3bps45pn14"; 6237 6255 }; 6238 6256 packageRequires = [ compat emacs seq ]; 6239 6257 meta = { ··· 6408 6426 elpaBuild { 6409 6427 pname = "urgrep"; 6410 6428 ename = "urgrep"; 6411 - version = "0.3.0snapshot0.20231101.193012"; 6429 + version = "0.3.0snapshot0.20231110.152111"; 6412 6430 src = fetchurl { 6413 - url = "https://elpa.gnu.org/devel/urgrep-0.3.0snapshot0.20231101.193012.tar"; 6414 - sha256 = "12hmms0yr0vybayvzkbqbp5j428lsnirzwg93f1l8m05xxs3xm9w"; 6431 + url = "https://elpa.gnu.org/devel/urgrep-0.3.0snapshot0.20231110.152111.tar"; 6432 + sha256 = "15vbi4vjqr9kz1q1525snl5pz35mgbzrjkysl7gm4zpj6s6qcbar"; 6415 6433 }; 6416 6434 packageRequires = [ compat emacs project ]; 6417 6435 meta = { ··· 6643 6661 elpaBuild { 6644 6662 pname = "vertico"; 6645 6663 ename = "vertico"; 6646 - version = "1.4.0.20231108.202420"; 6664 + version = "1.4.0.20231115.164627"; 6647 6665 src = fetchurl { 6648 - url = "https://elpa.gnu.org/devel/vertico-1.4.0.20231108.202420.tar"; 6649 - sha256 = "1c34pq5l7ckjlyimpa528d8a7q5pakz3li5bc4ka86mwf861kd7v"; 6666 + url = "https://elpa.gnu.org/devel/vertico-1.4.0.20231115.164627.tar"; 6667 + sha256 = "1rb2lvk2h7qxddws53n0qp5mg71b6gy94rdqy6nz77f1p3rrxqwf"; 6650 6668 }; 6651 6669 packageRequires = [ compat emacs ]; 6652 6670 meta = { ··· 6663 6681 elpaBuild { 6664 6682 pname = "vertico-posframe"; 6665 6683 ename = "vertico-posframe"; 6666 - version = "0.7.3.0.20230818.15224"; 6684 + version = "0.7.3.0.20231115.51213"; 6667 6685 src = fetchurl { 6668 - url = "https://elpa.gnu.org/devel/vertico-posframe-0.7.3.0.20230818.15224.tar"; 6669 - sha256 = "0q23yw8dy9abawqlcpwjrk668kvxyffv972j0s6579z37i643gv6"; 6686 + url = "https://elpa.gnu.org/devel/vertico-posframe-0.7.3.0.20231115.51213.tar"; 6687 + sha256 = "1ymjcby120181rfl353kdx1i4jpg5vb6vrag5775bknr3ijjqax9"; 6670 6688 }; 6671 6689 packageRequires = [ emacs posframe vertico ]; 6672 6690 meta = {
+33 -18
pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix
··· 569 569 elpaBuild { 570 570 pname = "bufferlo"; 571 571 ename = "bufferlo"; 572 - version = "0.2"; 572 + version = "0.3"; 573 573 src = fetchurl { 574 - url = "https://elpa.gnu.org/packages/bufferlo-0.2.tar"; 575 - sha256 = "1dvpzxlnzs037wz9xhiwiz2qrc7r2i05z6p6p0sy8i4kb6scc6gy"; 574 + url = "https://elpa.gnu.org/packages/bufferlo-0.3.tar"; 575 + sha256 = "16fj1wiqymyys0wjnbmmfwpvqxnm3mlqfrg7nrsryfgpv2mv9z17"; 576 576 }; 577 577 packageRequires = [ emacs ]; 578 578 meta = { ··· 877 877 elpaBuild { 878 878 pname = "compat"; 879 879 ename = "compat"; 880 - version = "29.1.4.3"; 880 + version = "29.1.4.4"; 881 881 src = fetchurl { 882 - url = "https://elpa.gnu.org/packages/compat-29.1.4.3.tar"; 883 - sha256 = "08lg6jph1hqkamf1fhm5ajwy4klh2a2260llr1z7wlbbq52032k5"; 882 + url = "https://elpa.gnu.org/packages/compat-29.1.4.4.tar"; 883 + sha256 = "0710g552b1nznnfx2774gmg6yizs27s0bakqm95nsjrp6kgznbfr"; 884 884 }; 885 885 packageRequires = [ emacs seq ]; 886 886 meta = { ··· 1177 1177 elpaBuild { 1178 1178 pname = "denote"; 1179 1179 ename = "denote"; 1180 - version = "2.0.0"; 1180 + version = "2.1.0"; 1181 1181 src = fetchurl { 1182 - url = "https://elpa.gnu.org/packages/denote-2.0.0.tar"; 1183 - sha256 = "1wrfbirkzf9szss1rgpmgdr0gy2dvhnbzlnyhw3sp2jvw5sb1xz9"; 1182 + url = "https://elpa.gnu.org/packages/denote-2.1.0.tar"; 1183 + sha256 = "1igp9h327b9x3fxrp34bz0x5slk659r3asjdia3jm8amajm4bw6s"; 1184 1184 }; 1185 1185 packageRequires = [ emacs ]; 1186 1186 meta = { ··· 1318 1318 elpaBuild { 1319 1319 pname = "dired-duplicates"; 1320 1320 ename = "dired-duplicates"; 1321 - version = "0.2"; 1321 + version = "0.3"; 1322 1322 src = fetchurl { 1323 - url = "https://elpa.gnu.org/packages/dired-duplicates-0.2.tar"; 1324 - sha256 = "1n5n961f1mrvcqfrz56734qj1ynajdjblyf4y60pw9m3fn03db4s"; 1323 + url = "https://elpa.gnu.org/packages/dired-duplicates-0.3.tar"; 1324 + sha256 = "1b9drjkbs9anqil274jrn031agpkir9mhs96l2ylm13n8imx9msl"; 1325 1325 }; 1326 1326 packageRequires = [ emacs ]; 1327 1327 meta = { ··· 1449 1449 license = lib.licenses.free; 1450 1450 }; 1451 1451 }) {}; 1452 + drepl = callPackage ({ comint-mime, elpaBuild, emacs, fetchurl, lib }: 1453 + elpaBuild { 1454 + pname = "drepl"; 1455 + ename = "drepl"; 1456 + version = "0.1"; 1457 + src = fetchurl { 1458 + url = "https://elpa.gnu.org/packages/drepl-0.1.tar"; 1459 + sha256 = "0lx94kcxgp8s13w7hz9857r9baqfswvj7vc9frjq4crc4ps7fi7r"; 1460 + }; 1461 + packageRequires = [ comint-mime emacs ]; 1462 + meta = { 1463 + homepage = "https://elpa.gnu.org/packages/drepl.html"; 1464 + license = lib.licenses.free; 1465 + }; 1466 + }) {}; 1452 1467 dts-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 1453 1468 elpaBuild { 1454 1469 pname = "dts-mode"; ··· 2357 2372 elpaBuild { 2358 2373 pname = "gpr-mode"; 2359 2374 ename = "gpr-mode"; 2360 - version = "1.0.4"; 2375 + version = "1.0.5"; 2361 2376 src = fetchurl { 2362 - url = "https://elpa.gnu.org/packages/gpr-mode-1.0.4.tar"; 2363 - sha256 = "1c97m28i6lym07kb05jgssjxj6p9v3v56qrn48xwv55sriqrha4l"; 2377 + url = "https://elpa.gnu.org/packages/gpr-mode-1.0.5.tar"; 2378 + sha256 = "1ksafa4nfd4n1kdxpjk6i59l5rxfdmcqjkkpmmc8w402xka0vwn4"; 2364 2379 }; 2365 2380 packageRequires = [ emacs gnat-compiler wisi ]; 2366 2381 meta = { ··· 3753 3768 elpaBuild { 3754 3769 pname = "org"; 3755 3770 ename = "org"; 3756 - version = "9.6.11"; 3771 + version = "9.6.12"; 3757 3772 src = fetchurl { 3758 - url = "https://elpa.gnu.org/packages/org-9.6.11.tar"; 3759 - sha256 = "18hp5jx90wn9xsg8frql3r1kmn2q9qph6plcssj64fp34wcwxsd8"; 3773 + url = "https://elpa.gnu.org/packages/org-9.6.12.tar"; 3774 + sha256 = "0qkq7vx3kga18001clsac4rbg9bw5cp9k5qnixw7s39xajd4bcv3"; 3760 3775 }; 3761 3776 packageRequires = [ emacs ]; 3762 3777 meta = {
+21 -21
pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix
··· 361 361 elpaBuild { 362 362 pname = "cider"; 363 363 ename = "cider"; 364 - version = "1.11.0"; 364 + version = "1.11.1"; 365 365 src = fetchurl { 366 - url = "https://elpa.nongnu.org/nongnu/cider-1.11.0.tar"; 367 - sha256 = "010sl2l9vx3k095bkgvi7w1zvb68jh7lj4plmjn98lmzmbhq7q27"; 366 + url = "https://elpa.nongnu.org/nongnu/cider-1.11.1.tar"; 367 + sha256 = "1zp24p67w9wcc26s0b95idvzy1ndk35a8rabj3ckg1sgddgzh0p6"; 368 368 }; 369 369 packageRequires = [ 370 370 clojure-mode ··· 1534 1534 elpaBuild { 1535 1535 pname = "haskell-mode"; 1536 1536 ename = "haskell-mode"; 1537 - version = "17.4"; 1537 + version = "17.5"; 1538 1538 src = fetchurl { 1539 - url = "https://elpa.nongnu.org/nongnu/haskell-mode-17.4.tar"; 1540 - sha256 = "0xf8smasbb53ddg4vxckpg5w48dnm16v2k5vimfqr73cig49z87f"; 1539 + url = "https://elpa.nongnu.org/nongnu/haskell-mode-17.5.tar"; 1540 + sha256 = "0ld9wjak3fzwi9w2552fzq1562h7g19q69pigp16rj30smp5gkj7"; 1541 1541 }; 1542 1542 packageRequires = [ emacs ]; 1543 1543 meta = { ··· 2375 2375 elpaBuild { 2376 2376 pname = "package-lint"; 2377 2377 ename = "package-lint"; 2378 - version = "0.20"; 2378 + version = "0.21"; 2379 2379 src = fetchurl { 2380 - url = "https://elpa.nongnu.org/nongnu/package-lint-0.20.tar"; 2381 - sha256 = "13ff9g2lzcddi8n6bcmb7g93kxc8v9h3g9k8qcn42bl7jjy12iqf"; 2380 + url = "https://elpa.nongnu.org/nongnu/package-lint-0.21.tar"; 2381 + sha256 = "01yli62vcnh763pf1bp0f649hhrbl8y7ad89q7b98xgcciqgzm93"; 2382 2382 }; 2383 2383 packageRequires = [ cl-lib compat emacs let-alist ]; 2384 2384 meta = { ··· 2608 2608 elpaBuild { 2609 2609 pname = "racket-mode"; 2610 2610 ename = "racket-mode"; 2611 - version = "1.0.20231109.110741"; 2611 + version = "1.0.20231115.104415"; 2612 2612 src = fetchurl { 2613 - url = "https://elpa.nongnu.org/nongnu/racket-mode-1.0.20231109.110741.tar"; 2614 - sha256 = "19d1bs0ajc28wa49f1mphdwrpfywib5cvv3mxip6az9x6faand7g"; 2613 + url = "https://elpa.nongnu.org/nongnu/racket-mode-1.0.20231115.104415.tar"; 2614 + sha256 = "01ihh66c20c2dv6apswgww8wxwn1ldqhpk70mfbgjipc9a7ykwws"; 2615 2615 }; 2616 2616 packageRequires = [ emacs ]; 2617 2617 meta = { ··· 2987 2987 elpaBuild { 2988 2988 pname = "subed"; 2989 2989 ename = "subed"; 2990 - version = "1.2.6"; 2990 + version = "1.2.7"; 2991 2991 src = fetchurl { 2992 - url = "https://elpa.nongnu.org/nongnu/subed-1.2.6.tar"; 2993 - sha256 = "005nzmv5i24wxwhs1l76fpk06rpf8bw19fccrqkiph5k77lg42gr"; 2992 + url = "https://elpa.nongnu.org/nongnu/subed-1.2.7.tar"; 2993 + sha256 = "1rvc17pvig3ihc74d7i25kl3lnigp0h8lh634x0676hdx38h91ib"; 2994 2994 }; 2995 2995 packageRequires = [ emacs ]; 2996 2996 meta = { ··· 3002 3002 elpaBuild { 3003 3003 pname = "sweeprolog"; 3004 3004 ename = "sweeprolog"; 3005 - version = "0.26.2"; 3005 + version = "0.27.0"; 3006 3006 src = fetchurl { 3007 - url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.26.2.tar"; 3008 - sha256 = "14rcg6rs4dd4a0pr4makkg1flwxfrxyg5xrs5sa034bzxj6zqal5"; 3007 + url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.27.0.tar"; 3008 + sha256 = "1r0qspi9qdnsa4gm9bmxzsjyalqi14jhjx96jqw725pmhvjy9933"; 3009 3009 }; 3010 3010 packageRequires = [ compat emacs ]; 3011 3011 meta = { ··· 3471 3471 elpaBuild { 3472 3472 pname = "xah-fly-keys"; 3473 3473 ename = "xah-fly-keys"; 3474 - version = "24.15.20231105091131"; 3474 + version = "24.18.20231115084756"; 3475 3475 src = fetchurl { 3476 - url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-24.15.20231105091131.tar"; 3477 - sha256 = "13wvf6zn87xpglpycxmjmq6mfvpr21bsihsshx06my38832kw128"; 3476 + url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-24.18.20231115084756.tar"; 3477 + sha256 = "1vj8l4g4hpdvs1yvgkcy79vbf2ibhwxfgcrg1mj26qj3f9naf25s"; 3478 3478 }; 3479 3479 packageRequires = [ emacs ]; 3480 3480 meta = {
+493 -441
pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json
··· 3811 3811 }, 3812 3812 { 3813 3813 "ename": "apheleia", 3814 - "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 3815 - "sha256": "17aknfx1ii97lsqm4228rxawa6klnxpi948pl5bzwls9fx91g31v", 3814 + "commit": "b2cbf8111f532b35eb1c818d8c1f8297f3241000", 3815 + "sha256": "0sahfd897g34b59r80kl697yfcfx9s62v8b1p66iv3ivfl9wvswd", 3816 3816 "fetcher": "github", 3817 3817 "repo": "radian-software/apheleia", 3818 3818 "unstable": { 3819 3819 "version": [ 3820 - 20231105, 3821 - 2008 3820 + 20231112, 3821 + 32 3822 3822 ], 3823 - "commit": "54a192c3454e82be9d5ad910d80796b27d58035f", 3824 - "sha256": "0wac6qhv89c6x2scbdxhxdrjhqm3jmm7fzzvirxibyd94fxjzzd3" 3823 + "commit": "ddea9bea708ce029cea6126b5be8e9f8979c58b3", 3824 + "sha256": "05lg9qych2x31cw8clfngrhzqgs858kcawnk07pyp45563pm0zjl" 3825 3825 }, 3826 3826 "stable": { 3827 3827 "version": [ ··· 4576 4576 "repo": "meedstrom/asyncloop", 4577 4577 "unstable": { 4578 4578 "version": [ 4579 - 20231110, 4580 - 1334 4579 + 20231115, 4580 + 2156 4581 + ], 4582 + "deps": [ 4583 + "named-timer" 4581 4584 ], 4582 - "commit": "10e38a1b603ee0dfee69c25e7f10a4b1b66f3a8d", 4583 - "sha256": "0155yg9i3q6zda061zvsq42nbwyvq7dkfzfw7aa89jp4jyq9c2nx" 4585 + "commit": "e988dac99390b2cfb889c8610c7f8f1f15708ecc", 4586 + "sha256": "0zlaypbr9v02ivvcjqizg52wvapzhgbc0kb1amx270pwzfzhp3zq" 4584 4587 }, 4585 4588 "stable": { 4586 4589 "version": [ 4587 4590 0, 4588 4591 4, 4589 - 1 4592 + 5 4593 + ], 4594 + "deps": [ 4595 + "named-timer" 4590 4596 ], 4591 - "commit": "10e38a1b603ee0dfee69c25e7f10a4b1b66f3a8d", 4592 - "sha256": "0155yg9i3q6zda061zvsq42nbwyvq7dkfzfw7aa89jp4jyq9c2nx" 4597 + "commit": "e988dac99390b2cfb889c8610c7f8f1f15708ecc", 4598 + "sha256": "0zlaypbr9v02ivvcjqizg52wvapzhgbc0kb1amx270pwzfzhp3zq" 4593 4599 } 4594 4600 }, 4595 4601 { ··· 6196 6202 "repo": "nverno/awk-ts-mode", 6197 6203 "unstable": { 6198 6204 "version": [ 6199 - 20231022, 6200 - 1757 6205 + 20231115, 6206 + 1037 6201 6207 ], 6202 - "commit": "a32d83a2c8714c5f2fdb8cc8cb6733a2eb1a4e87", 6203 - "sha256": "1k3nyp4h9iqz6cx90g469jf2j7kvr4q8mqn2i0han2a406izk9n5" 6208 + "commit": "7b3f26d24be4732e001ae3a0e0db35111e68c38f", 6209 + "sha256": "00zgkg3biy3lkaj9jsmn7b4nmnlyj0bqsjfc4qabm2mk0yar0is6" 6204 6210 } 6205 6211 }, 6206 6212 { ··· 9248 9254 "url": "https://git.madhouse-project.org/algernon/brutalist-theme.el.git", 9249 9255 "unstable": { 9250 9256 "version": [ 9251 - 20231110, 9252 - 943 9257 + 20231112, 9258 + 1455 9253 9259 ], 9254 - "commit": "0238406db380b733708e4ad7e5a75aeafe6a2640", 9255 - "sha256": "1rrjhkhsgfgzcbwgn6hlzh3n87205jj9yk3qpaflqhw83axms5jh" 9260 + "commit": "dbe094221fd727b8d3a4bffa84fc754df83c0450", 9261 + "sha256": "1m9z3sswm79rawivgz4fw51cp20qznsa9911dci3b2xpnnhpz89i" 9256 9262 } 9257 9263 }, 9258 9264 { ··· 11662 11668 "repo": "worr/cfn-mode", 11663 11669 "unstable": { 11664 11670 "version": [ 11665 - 20231109, 11666 - 1008 11671 + 20231112, 11672 + 904 11667 11673 ], 11668 11674 "deps": [ 11669 11675 "f", 11670 11676 "s", 11671 11677 "yaml-mode" 11672 11678 ], 11673 - "commit": "ac122af751ba9903599c6eb9c3e9e12a375e19d0", 11674 - "sha256": "1712a7dhiw6a2bj4qq916dx2gk3124g7shxnizyy3nsvc6q08cdi" 11679 + "commit": "2640b72b7eed0b5f702377d3e0d723c23dda792f", 11680 + "sha256": "1g31lyzl3fx3bqgd1yrjrpb7a8zbl3sr8jqsssn5f6yp4lm4bqzb" 11675 11681 }, 11676 11682 "stable": { 11677 11683 "version": [ ··· 11800 11806 "repo": "positron-solutions/champagne", 11801 11807 "unstable": { 11802 11808 "version": [ 11803 - 20230511, 11804 - 1540 11809 + 20231111, 11810 + 358 11805 11811 ], 11806 11812 "deps": [ 11807 11813 "posframe" 11808 11814 ], 11809 - "commit": "069452fa162d6aefc693c8d0546a84d967218289", 11810 - "sha256": "1qby7d95rl1vrkvq5y1i2bmy1bijv9pxm4whfwnhz9fkb3s88r9f" 11815 + "commit": "a99e1584207bc03a0cb776f715bd47de1d651010", 11816 + "sha256": "09ms3yx7h2ynqyf9mdjp90asahncq7k1mvnbkvj1g9f1l59zk6ns" 11811 11817 }, 11812 11818 "stable": { 11813 11819 "version": [ ··· 11932 11938 "repo": "xenodium/chatgpt-shell", 11933 11939 "unstable": { 11934 11940 "version": [ 11935 - 20231108, 11936 - 1115 11941 + 20231113, 11942 + 356 11937 11943 ], 11938 11944 "deps": [ 11939 11945 "shell-maker" 11940 11946 ], 11941 - "commit": "a05e30073f42eb6c10dfe0741ff86d3c22e914b4", 11942 - "sha256": "07j4pvb7li43c6ldakzfyj88s20f0dnfzn0ilpvf76i5q66hpqcr" 11947 + "commit": "50984ba1e833be89c41b9779e8dca5d04cb16a29", 11948 + "sha256": "1fvcd3gyipxq9x3yfl5q6i3yx2fq5vwqf6wx4c200awqc1crs89l" 11943 11949 } 11944 11950 }, 11945 11951 { ··· 12571 12577 "repo": "clojure-emacs/cider", 12572 12578 "unstable": { 12573 12579 "version": [ 12574 - 20231108, 12575 - 2054 12580 + 20231114, 12581 + 1140 12576 12582 ], 12577 12583 "deps": [ 12578 12584 "clojure-mode", ··· 12583 12589 "spinner", 12584 12590 "transient" 12585 12591 ], 12586 - "commit": "bf9dceca17e912605e2d8327c44ed241e2a556e2", 12587 - "sha256": "1wca624gdnrqlkadlqafj0xibma8xgsh9qqpzynr6b8q2vmff98j" 12592 + "commit": "5261886ad7c0a8828d022812c7c1c6b503ddd6ba", 12593 + "sha256": "1m9bva5wi4mna80qrr401pvghxk54nh773544c5i11fanisyq9sc" 12588 12594 }, 12589 12595 "stable": { 12590 12596 "version": [ 12591 12597 1, 12592 12598 11, 12593 - 0 12599 + 1 12594 12600 ], 12595 12601 "deps": [ 12596 12602 "clojure-mode", ··· 12601 12607 "spinner", 12602 12608 "transient" 12603 12609 ], 12604 - "commit": "6e5294624959736c486f7a466bd5e78ce6183ab9", 12605 - "sha256": "0zr3p8isidfh9w44cjq50wk13balbswyyn2ycs368afkraqbry5w" 12610 + "commit": "9c605cd4938c0055c2766c55606f19ecbf664e8e", 12611 + "sha256": "15s8nvzgz4ymayg0k3nia9h7kcrn5c8m4clspgz2pzz3ywh10cfw" 12606 12612 } 12607 12613 }, 12608 12614 { ··· 12883 12889 "repo": "emacs-citar/citar", 12884 12890 "unstable": { 12885 12891 "version": [ 12886 - 20231019, 12887 - 2047 12892 + 20231112, 12893 + 1605 12888 12894 ], 12889 12895 "deps": [ 12890 12896 "citeproc", 12891 12897 "org", 12892 12898 "parsebib" 12893 12899 ], 12894 - "commit": "e21bf22b29d8ca40649517bb7dc503765f240282", 12895 - "sha256": "07q94iplkx29lggrs5xfzj42rxfcn2cnbr90jgifk29jshcz30pv" 12900 + "commit": "8115bed9d4ce0b7a0765de6fbe6b4efdad23b89e", 12901 + "sha256": "1mmlax5z437d96wn3v2gjck3cmx8k8r370rrymiisgjar8sj8bg9" 12896 12902 }, 12897 12903 "stable": { 12898 12904 "version": [ ··· 13524 13530 "repo": "clojure-emacs/clj-refactor.el", 13525 13531 "unstable": { 13526 13532 "version": [ 13527 - 20231009, 13528 - 1104 13533 + 20231116, 13534 + 525 13529 13535 ], 13530 13536 "deps": [ 13531 13537 "cider", ··· 13538 13544 "seq", 13539 13545 "yasnippet" 13540 13546 ], 13541 - "commit": "b476345c580ae7cbc6b356ba0157db782684c47f", 13542 - "sha256": "100ngpgvff0xvw1h5krvh40sa3ympl241imwskcv62yk29m9z411" 13547 + "commit": "05e90bd9a0f24027011aab1bf041c16a24797e0c", 13548 + "sha256": "0y91034nkvx9sz69k5wfynf0cj4rcwnav33n8bq72cknvv67zll8" 13543 13549 }, 13544 13550 "stable": { 13545 13551 "version": [ ··· 14221 14227 "url": "https://gitlab.kitware.com/cmake/cmake.git", 14222 14228 "unstable": { 14223 14229 "version": [ 14224 - 20231006, 14225 - 1308 14230 + 20231115, 14231 + 1355 14226 14232 ], 14227 - "commit": "9532e1cf5b238ee5da2ea0b2fbb0194eaa5aaf03", 14228 - "sha256": "0nc3g5cv49mzn3g4zakprc8z2iqwa19x8lyzic1691857n0im5k3" 14233 + "commit": "9cfff766eb26ab8b29aa509e42d6b367dd00c7b7", 14234 + "sha256": "0z1f9hrrmgrpcigavadkzdz31m2fl2mm099gwqn550awwaqdp7y3" 14229 14235 }, 14230 14236 "stable": { 14231 14237 "version": [ 14232 14238 3, 14233 14239 27, 14234 - 7 14240 + 8 14235 14241 ], 14236 - "commit": "9532e1cf5b238ee5da2ea0b2fbb0194eaa5aaf03", 14237 - "sha256": "0nc3g5cv49mzn3g4zakprc8z2iqwa19x8lyzic1691857n0im5k3" 14242 + "commit": "9cfff766eb26ab8b29aa509e42d6b367dd00c7b7", 14243 + "sha256": "0z1f9hrrmgrpcigavadkzdz31m2fl2mm099gwqn550awwaqdp7y3" 14238 14244 } 14239 14245 }, 14240 14246 { ··· 15266 15272 "repo": "company-mode/company-mode", 15267 15273 "unstable": { 15268 15274 "version": [ 15269 - 20231110, 15270 - 52 15275 + 20231115, 15276 + 2254 15271 15277 ], 15272 - "commit": "07d1c41f83d5ad5f6263e726283a05ad12cd37a5", 15273 - "sha256": "0f2hnypzdggfw8dxyysf05n51za86qs1z6b8syrdnkyxcm41j793" 15278 + "commit": "e22230561ef559b032b4a2d79bef686d494b8ea6", 15279 + "sha256": "02lhq2iaxyarvq0h194ivzvw8fncvv0a1hp9dxhd47jr83k0wj84" 15274 15280 }, 15275 15281 "stable": { 15276 15282 "version": [ ··· 17620 17626 "repo": "minad/consult", 17621 17627 "unstable": { 17622 17628 "version": [ 17623 - 20231110, 17624 - 926 17629 + 20231115, 17630 + 1746 17625 17631 ], 17626 17632 "deps": [ 17627 17633 "compat" 17628 17634 ], 17629 - "commit": "f36be0c05b9bea10cc7b477a7c82a196cee7c58a", 17630 - "sha256": "0n604z8xviwc58944d33zxq20xyn3i01rvh28av1mx4hvlgjd1zp" 17635 + "commit": "d7a0415c4ff3a84b696e5ddbc2ef15d0d45c405d", 17636 + "sha256": "15lvjb0hv3vb7xylavi2xsqdxq3b2ryi0zd866h5a3njhkk1sv76" 17631 17637 }, 17632 17638 "stable": { 17633 17639 "version": [ ··· 17890 17896 "repo": "tomoya/consult-ghq", 17891 17897 "unstable": { 17892 17898 "version": [ 17893 - 20210606, 17894 - 2047 17899 + 20231111, 17900 + 1303 17895 17901 ], 17896 17902 "deps": [ 17897 - "affe", 17898 17903 "consult" 17899 17904 ], 17900 - "commit": "c8619d66bd8f8728e43ed15096078b89eb4d2083", 17901 - "sha256": "1zrxigf7bnx6l9lv2xvnn3ba6c9dndijw1vlnli56cv215i0r4f6" 17905 + "commit": "65a99980fb313d473376542cb87464a8a44ff25e", 17906 + "sha256": "1zvbz7xpgsg8y9ak8cvqhj415ym0i5sxv6b2cigvsb8j6kmp9cch" 17902 17907 }, 17903 17908 "stable": { 17904 17909 "version": [ 17905 17910 0, 17906 17911 0, 17907 - 4 17912 + 5 17908 17913 ], 17909 17914 "deps": [ 17910 - "affe", 17911 17915 "consult" 17912 17916 ], 17913 - "commit": "c8619d66bd8f8728e43ed15096078b89eb4d2083", 17914 - "sha256": "1zrxigf7bnx6l9lv2xvnn3ba6c9dndijw1vlnli56cv215i0r4f6" 17917 + "commit": "65a99980fb313d473376542cb87464a8a44ff25e", 17918 + "sha256": "1zvbz7xpgsg8y9ak8cvqhj415ym0i5sxv6b2cigvsb8j6kmp9cch" 17915 17919 } 17916 17920 }, 17917 17921 { ··· 18406 18410 "repo": "sshaw/copy-as-format", 18407 18411 "unstable": { 18408 18412 "version": [ 18409 - 20231104, 18410 - 1933 18413 + 20231112, 18414 + 1710 18411 18415 ], 18412 18416 "deps": [ 18413 18417 "cl-lib" 18414 18418 ], 18415 - "commit": "d4a88544d3e89385cc401f2026e8d46ca02e7ca4", 18416 - "sha256": "09c5ic11iikldqhdfrym57ry167dxln5bv75vv459xzf0nw9iqaw" 18419 + "commit": "b9f6f725ca9701c5a02bfb479573fdfcce2e1e30", 18420 + "sha256": "120b465p79bss4njqm320yfg4fydhpsx7rlczvgnn1vrxw78kisz" 18417 18421 }, 18418 18422 "stable": { 18419 18423 "version": [ 18420 18424 0, 18421 18425 0, 18422 - 8 18426 + 9 18423 18427 ], 18424 18428 "deps": [ 18425 18429 "cl-lib" 18426 18430 ], 18427 - "commit": "d2376c64334fe3de65d89d6d138a2187f9bf802f", 18428 - "sha256": "0i158bkra7zgq75j08knq2camvlhbs2v8zrsxiyp0mc4q949xysd" 18431 + "commit": "b9f6f725ca9701c5a02bfb479573fdfcce2e1e30", 18432 + "sha256": "120b465p79bss4njqm320yfg4fydhpsx7rlczvgnn1vrxw78kisz" 18429 18433 } 18430 18434 }, 18431 18435 { ··· 18548 18552 "repo": "minad/corfu", 18549 18553 "unstable": { 18550 18554 "version": [ 18551 - 20231108, 18552 - 1746 18555 + 20231112, 18556 + 819 18553 18557 ], 18554 18558 "deps": [ 18555 18559 "compat" 18556 18560 ], 18557 - "commit": "42efcfd28f6286110cc2ba0d90ffd67a81e0667b", 18558 - "sha256": "0ns0xli4l53vxmw8bshnqqi0zm85nld6p2vw30psfpgaz70j2zqy" 18561 + "commit": "41e35c23a3512df658cdea95b246977923af56f5", 18562 + "sha256": "1gpzlrq631839jds991pzplqnz92yifsmvxbylh4rswpzcmrn46g" 18559 18563 }, 18560 18564 "stable": { 18561 18565 "version": [ ··· 20907 20911 "repo": "xenodium/chatgpt-shell", 20908 20912 "unstable": { 20909 20913 "version": [ 20910 - 20231109, 20911 - 913 20914 + 20231112, 20915 + 449 20912 20916 ], 20913 20917 "deps": [ 20914 20918 "shell-maker" 20915 20919 ], 20916 - "commit": "ad7caa8bde9d9e3e4f09458e6542ae1318949b2b", 20917 - "sha256": "1hd4df6ykifkkrl4ywczmiv0np2ai0q2xs7wabh24wi6cs3nzapw" 20920 + "commit": "bca784daa620767b5e57a5020289cb547c40f8b3", 20921 + "sha256": "1gzzfsw0bdyqbq6fgfsl0vwy0z639618sq74kdvk0hnssrbx1f01" 20918 20922 } 20919 20923 }, 20920 20924 { ··· 21021 21025 "repo": "emacs-lsp/dap-mode", 21022 21026 "unstable": { 21023 21027 "version": [ 21024 - 20231110, 21025 - 659 21028 + 20231113, 21029 + 706 21026 21030 ], 21027 21031 "deps": [ 21028 21032 "bui", ··· 21035 21039 "posframe", 21036 21040 "s" 21037 21041 ], 21038 - "commit": "f6706fa917aecdd1ebf71ee217724622cc6a97e4", 21039 - "sha256": "0jjnhl5hrpvdd4qb3jz6pdjgrp9qjxbm5dbgdhi6bkl2jhxy93fv" 21042 + "commit": "755845ae053bbfdd3f7b3dca13efa4be480370b5", 21043 + "sha256": "0rj0y85gkn50cly77dmy8g1z16czi1vg6qc9sh75x1vl7s1wr615" 21040 21044 }, 21041 21045 "stable": { 21042 21046 "version": [ ··· 23438 23442 "repo": "hjudt/dired-duplicates", 23439 23443 "unstable": { 23440 23444 "version": [ 23441 - 20231109, 23442 - 1353 23445 + 20231114, 23446 + 2150 23443 23447 ], 23444 - "commit": "349eebbd8b3fc10fa2a4551426769d20744e2eb2", 23445 - "sha256": "0zpv0112xphvci5rdw04qai9pdjf2ig6jf4kianwjzlgcrma5zar" 23448 + "commit": "e07552323b26ce68956f8b03aa66af145bae4d86", 23449 + "sha256": "1psa217zsl91qkvlrkysw7ycv9rc6vk8462rf6lfjmvb9bf5hpqm" 23446 23450 } 23447 23451 }, 23448 23452 { ··· 26401 26405 "repo": "xenodium/dwim-shell-command", 26402 26406 "unstable": { 26403 26407 "version": [ 26404 - 20231109, 26405 - 856 26408 + 20231113, 26409 + 759 26406 26410 ], 26407 - "commit": "642a907fdec8b765e777d0c9656388694a15dae9", 26408 - "sha256": "15fsn7dp6jngyl8457rcrsq243r93plamn4wdlidgm3kb05lyaqk" 26411 + "commit": "e4a139fe181ed1b576302fb36f3761fbf9914580", 26412 + "sha256": "03rincnyz895d0g49gifbjn8b7gr5b37c8fbpk7anrrp29gfr6n1" 26409 26413 } 26410 26414 }, 26411 26415 { ··· 26869 26873 "repo": "emacs-eask/eask", 26870 26874 "unstable": { 26871 26875 "version": [ 26872 - 20231103, 26873 - 840 26876 + 20231113, 26877 + 908 26874 26878 ], 26875 26879 "deps": [ 26876 26880 "dash" 26877 26881 ], 26878 - "commit": "2f8ad56c8d9b3e6226b6641de1f8b61571225950", 26879 - "sha256": "01dbyplh6gwkk85amrx916h1lxjdbnvps7wqai3ny9wfixh7w0q8" 26882 + "commit": "98c53882a6b6703c62d7a59e0dcdf5e29ca2ca95", 26883 + "sha256": "17isgyg85fdhhhzn9jh6d0cba19ag7zwkppc1n34i2knm91411hm" 26880 26884 }, 26881 26885 "stable": { 26882 26886 "version": [ 26883 26887 0, 26884 26888 8, 26885 - 3 26889 + 6 26886 26890 ], 26887 26891 "deps": [ 26888 26892 "dash" 26889 26893 ], 26890 - "commit": "be79e9fd4ba705308ed26a801c1072c0fd46a58c", 26891 - "sha256": "14wxlmmm6pylj6zw18q76p82bmlvd4sqgfwmd57fs7gjdv0qgqis" 26894 + "commit": "224798a5660717fd4325f13d66ba275a4d2031dc", 26895 + "sha256": "0ixm0dkzdxn35il16ff2r2xjqw7sbfqirkf3w664lrdwa56wzm1b" 26892 26896 } 26893 26897 }, 26894 26898 { ··· 27181 27185 "repo": "flexibeast/ebuku", 27182 27186 "unstable": { 27183 27187 "version": [ 27184 - 20221122, 27185 - 427 27188 + 20231113, 27189 + 748 27186 27190 ], 27187 - "commit": "0c6cf404a49bd68800221446df186fffa0139325", 27188 - "sha256": "09fkzmcvzdbdjaa167wiybj0kir7y12pcq2varjywshvq2l7niz4" 27191 + "commit": "c854d128cba8576fe9693c19109b5deafb573e99", 27192 + "sha256": "0zfgns9q8bqiwjckfqcywzv00j3984r5kni5xp5rz3wxx8pgqvkv" 27189 27193 } 27190 27194 }, 27191 27195 { ··· 28210 28214 "url": "https://forge.tedomum.net/hjuvi/eide.git", 28211 28215 "unstable": { 28212 28216 "version": [ 28213 - 20230525, 28214 - 651 28217 + 20231112, 28218 + 2210 28215 28219 ], 28216 - "commit": "8cabc6d77b41bf0c9982ab56530c088d980bc353", 28217 - "sha256": "02hbvs6dqjcjiws3672frgbnr62l2biqjqs0npkhz6b50h99gzzr" 28220 + "commit": "1979bec36dba95168c9e6c68bd7d9248502de68e", 28221 + "sha256": "0dizx7clclwlgg858kbhg6ds4aj4949anwk0hf72dn08dxadwk81" 28218 28222 }, 28219 28223 "stable": { 28220 28224 "version": [ ··· 28347 28351 "repo": "ahyatt/ekg", 28348 28352 "unstable": { 28349 28353 "version": [ 28350 - 20231007, 28351 - 340 28354 + 20231111, 28355 + 513 28352 28356 ], 28353 28357 "deps": [ 28354 28358 "llm", 28355 28359 "triples" 28356 28360 ], 28357 - "commit": "bd7bb3bde2508455471a848d7013e169a81f1de0", 28358 - "sha256": "00sj500009y45jf1apdvdl8p5l163vxjk07bryzp4bbk2q6qsfyp" 28361 + "commit": "adbe9bfb6faf603fcd4958d4b4d6473829d4e7f2", 28362 + "sha256": "10c33xmzay4lm3hi84gsy5vq3sff8ys0r0nn6f1k3kjvwfpyjcr8" 28359 28363 }, 28360 28364 "stable": { 28361 28365 "version": [ 28362 28366 0, 28363 28367 4, 28364 - 1 28368 + 2 28365 28369 ], 28366 28370 "deps": [ 28367 28371 "llm", 28368 28372 "triples" 28369 28373 ], 28370 - "commit": "74d43f53cf9b11c40cf97de26d871a39c2ec596f", 28371 - "sha256": "0gj7ka0whp7wv1izfzgrsrkcizzpvmpjc0v1kzc1hqm8wsd9l4sq" 28374 + "commit": "adbe9bfb6faf603fcd4958d4b4d6473829d4e7f2", 28375 + "sha256": "10c33xmzay4lm3hi84gsy5vq3sff8ys0r0nn6f1k3kjvwfpyjcr8" 28372 28376 } 28373 28377 }, 28374 28378 { ··· 28889 28893 "repo": "emacs-eldev/eldev", 28890 28894 "unstable": { 28891 28895 "version": [ 28892 - 20231107, 28893 - 2029 28896 + 20231115, 28897 + 1824 28894 28898 ], 28895 - "commit": "ce5f3e14d7c5ab21dfb3e50235bfe495808b705a", 28896 - "sha256": "01ax4nzdby25szjmy63fmxjd8hf0a6hkkj555xylldq9bx5ax899" 28899 + "commit": "2aefc4d2820d922073917c7f87ea83c80c930ca6", 28900 + "sha256": "0z98cwzfj71xnq5wk5hgvdf2ar150cr6xs8mxwdi2204mqzzdsnd" 28897 28901 }, 28898 28902 "stable": { 28899 28903 "version": [ 28900 28904 1, 28901 - 7 28905 + 8 28902 28906 ], 28903 - "commit": "9ae24a8b62643d6e194d0754611dc014304c1183", 28904 - "sha256": "1q30r6di3r8dxxfbxfyii7kfvjj83c16bxx8ixadki3ix6imd6l5" 28907 + "commit": "c207e9537255d9167f9c578b2effc864f7e87743", 28908 + "sha256": "1jzknbdcvq4dp36f7p5abksd524lrlnmh6wycf0h3513wqnrprf8" 28905 28909 } 28906 28910 }, 28907 28911 { ··· 28912 28916 "repo": "casouri/eldoc-box", 28913 28917 "unstable": { 28914 28918 "version": [ 28915 - 20231008, 28916 - 2250 28919 + 20231115, 28920 + 519 28917 28921 ], 28918 - "commit": "06c905bb4ac6bb35035d65ef5de0de9ce6dff763", 28919 - "sha256": "0fzdzks18lyx19kigydbdi2lg260p3wiq0v6sf4xb13ypsx6pyfv" 28922 + "commit": "c36f31074b09930e8425963f39d5508da6d2c32d", 28923 + "sha256": "0vglh3sp9x6z537jngh5jh9j3szbfadryzlwhmrlq7asiinnjq01" 28920 28924 }, 28921 28925 "stable": { 28922 28926 "version": [ ··· 29325 29329 "repo": "rnadler/elfeed-curate", 29326 29330 "unstable": { 29327 29331 "version": [ 29328 - 20231001, 29329 - 1926 29332 + 20231110, 29333 + 1646 29330 29334 ], 29331 29335 "deps": [ 29332 29336 "elfeed" 29333 29337 ], 29334 - "commit": "1f687356d5c5c0a661e22c16ef8c8062cf3d375b", 29335 - "sha256": "0xx1fd8gkr2clwijqggskqgwhy17hcqnhw2y0mzwkfnxpimpsyy2" 29338 + "commit": "8d3628c81fc7dd9fefb9c5beca9fe4eab3575238", 29339 + "sha256": "16577gvlxs3dw8i02jgghlnnvq5r8b9d0b833j0d1fy67wj4dj1h" 29336 29340 }, 29337 29341 "stable": { 29338 29342 "version": [ 29339 29343 0, 29340 - 1, 29344 + 2, 29341 29345 0 29342 29346 ], 29343 29347 "deps": [ 29344 29348 "elfeed" 29345 29349 ], 29346 - "commit": "1f687356d5c5c0a661e22c16ef8c8062cf3d375b", 29347 - "sha256": "0xx1fd8gkr2clwijqggskqgwhy17hcqnhw2y0mzwkfnxpimpsyy2" 29350 + "commit": "8d3628c81fc7dd9fefb9c5beca9fe4eab3575238", 29351 + "sha256": "16577gvlxs3dw8i02jgghlnnvq5r8b9d0b833j0d1fy67wj4dj1h" 29348 29352 } 29349 29353 }, 29350 29354 { ··· 29681 29685 "repo": "ideasman42/emacs-elisp-autofmt", 29682 29686 "unstable": { 29683 29687 "version": [ 29684 - 20231026, 29685 - 2028 29688 + 20231112, 29689 + 552 29686 29690 ], 29687 - "commit": "d5d6010a1bc1b1f5a2422474f701d4573a95aa5b", 29688 - "sha256": "055k3za0c5jpa5lgqic9749zsf7vrfzfhcinhhpkrw95amyhpy76" 29691 + "commit": "ac9f2cc1482a7ef4b84d87bd990208030bfc5f57", 29692 + "sha256": "1nr5x9mq24w5dib39zyb95c7ksdp3k7scgsb1r5ldywjss4z44da" 29689 29693 } 29690 29694 }, 29691 29695 { ··· 29947 29951 "repo": "wkirschbaum/elixir-ts-mode", 29948 29952 "unstable": { 29949 29953 "version": [ 29950 - 20231025, 29951 - 640 29954 + 20231115, 29955 + 1851 29952 29956 ], 29953 29957 "deps": [ 29954 29958 "heex-ts-mode" 29955 29959 ], 29956 - "commit": "cb536ff3e70b70004687bbf583757f6929ce0238", 29957 - "sha256": "1x55zig1jj8qiarhv6hzmam96jzafwlnsanjq3jqnl5rybr8nsxy" 29960 + "commit": "d56d5915d4540a4f55f495e27407637d0359c774", 29961 + "sha256": "02jys0wnp2s601mgqa6fi3jamjy1dprima1q594wdjf82av2n8sv" 29958 29962 } 29959 29963 }, 29960 29964 { ··· 31110 31114 "repo": "oantolin/embark", 31111 31115 "unstable": { 31112 31116 "version": [ 31113 - 20231105, 31114 - 133 31117 + 20231112, 31118 + 1138 31115 31119 ], 31116 31120 "deps": [ 31117 31121 "compat" 31118 31122 ], 31119 - "commit": "8c57c361d686d352f22bd570fee4976f6ab42bcc", 31120 - "sha256": "0cnv6lzbrl8pa8p4v3llm1alas5p1zs32nndsi626l2aqbjyfx8z" 31123 + "commit": "3f08fc8ede9dddad3752223e01643058594781b2", 31124 + "sha256": "1a08mpfq79mc1n4g9d07wjf7cm0bgi9a3gxkfdsyw52sy82fdr1b" 31121 31125 }, 31122 31126 "stable": { 31123 31127 "version": [ ··· 31315 31319 "url": "https://git.savannah.gnu.org/git/emms.git", 31316 31320 "unstable": { 31317 31321 "version": [ 31318 - 20231106, 31319 - 2235 31322 + 20231110, 31323 + 2356 31320 31324 ], 31321 31325 "deps": [ 31322 31326 "cl-lib", 31323 31327 "nadvice", 31324 31328 "seq" 31325 31329 ], 31326 - "commit": "f3701eea3d0159ea9a2b44c5cce3886be73ff3df", 31327 - "sha256": "0dblq6d938hxw0y4920653qqp8m6p1g91qgg311idc5azzy3hdp0" 31330 + "commit": "e4bba7abbcebdc76d9b709846867d50f8bc98513", 31331 + "sha256": "05c63pq3wjmg3ahndsnk67mvv6hv38p5wfd2v7awbngf3la9rrcv" 31328 31332 }, 31329 31333 "stable": { 31330 31334 "version": [ ··· 36173 36177 "repo": "meain/evil-textobj-tree-sitter", 36174 36178 "unstable": { 36175 36179 "version": [ 36176 - 20231026, 36177 - 1357 36180 + 20231115, 36181 + 1445 36178 36182 ], 36179 - "commit": "b98c1c6d0b08317c9094bb222739ee037afbe7cd", 36180 - "sha256": "05y2sy9kbxk81pg6s45n9d1pymfm7zd0bz5zp6b240hyqc5qx8m8" 36183 + "commit": "9a9edd42a2dca9dfd0bc6026d47f689fa117b90f", 36184 + "sha256": "0j2zrhdffr3i9bwnaam5n908xmaq9z230sx6flid94cp9pvsxmxb" 36181 36185 } 36182 36186 }, 36183 36187 { ··· 37936 37940 "repo": "martianh/fedi.el", 37937 37941 "unstable": { 37938 37942 "version": [ 37939 - 20231016, 37940 - 1415 37943 + 20231112, 37944 + 911 37945 + ], 37946 + "deps": [ 37947 + "markdown-mode" 37941 37948 ], 37942 - "commit": "a9f5c41f14dcde42bd384274de9b45c2d39f1dc2", 37943 - "sha256": "00gacr1rf40r8zgy7gkd7maq905mx6g4mcnczjc2jlxh4iwp6gw1" 37949 + "commit": "e606fd40de36ad2131d027dec4f254e59a120dd5", 37950 + "sha256": "1chzzpk19z0siylh3z9sc05pjhibj9ld37iakc2v082dhd3f3sxk" 37944 37951 } 37945 37952 }, 37946 37953 { ··· 39153 39160 "repo": "crmsnbleyd/flexoki-emacs-theme", 39154 39161 "unstable": { 39155 39162 "version": [ 39156 - 20231026, 39157 - 905 39163 + 20231114, 39164 + 1714 39158 39165 ], 39159 - "commit": "149d00ee4cd17ab465db004910b67456db142802", 39160 - "sha256": "056hzf4r8bzzmmhlrgh6f0pppsr3spbrpiwb2kpkdbg1fwi9bjkf" 39166 + "commit": "5305cc3deaf361f57c67c57d10ade2bd448603e9", 39167 + "sha256": "1pg8mp3nghpmif2f94blrbv50xb9xp7pibnyfm0kpgh5gnciz3ab" 39161 39168 } 39162 39169 }, 39163 39170 { ··· 43265 43272 "repo": "emacs-php/phpstan.el", 43266 43273 "unstable": { 43267 43274 "version": [ 43268 - 20230417, 43269 - 1142 43275 + 20231114, 43276 + 1120 43270 43277 ], 43271 43278 "deps": [ 43272 43279 "phpstan" 43273 43280 ], 43274 - "commit": "2dc25cb2f3d83484ea0eb063c9ffca8148828a2b", 43275 - "sha256": "0drsp230nxs336zzfy8gjr7r3p7m8w9rp4ih1zjwarzl1svpp7yp" 43281 + "commit": "495e22f98e3075d0d9a14ebec87771eaf967b996", 43282 + "sha256": "1khbknia1vhif6a26mcvx1d1mawvkxb84m16ghhp5vfna6g3sk64" 43276 43283 }, 43277 43284 "stable": { 43278 43285 "version": [ ··· 45926 45933 "repo": "emacs-geiser/geiser", 45927 45934 "unstable": { 45928 45935 "version": [ 45929 - 20231001, 45930 - 1932 45936 + 20231111, 45937 + 1149 45931 45938 ], 45932 45939 "deps": [ 45933 45940 "project" 45934 45941 ], 45935 - "commit": "58bd510da5d09d9de52f4a6e60882b35445ca17a", 45936 - "sha256": "0n4346dc6kd0czj666lpmfq6ir6mrw0i45nkwpym6fhpg9cdynhy" 45942 + "commit": "49d12a14482ce9a193c049a5ccdd2fed90b0bdbe", 45943 + "sha256": "05kk8pa8dgm2bv9k2rfxi0m1kdpzz40csn7jgl5a38w1l1yjcffl" 45937 45944 }, 45938 45945 "stable": { 45939 45946 "version": [ ··· 46271 46278 ], 46272 46279 "commit": "2a7d07d0ce4c5b8750f3ff1182ad94ee616734c8", 46273 46280 "sha256": "0jp16la1v4l8mdnxsia9w11a33s5jxs9rdgwp2snxq3h40wyv0is" 46281 + } 46282 + }, 46283 + { 46284 + "ename": "gemtext-mode", 46285 + "commit": "5f16cf1dd7fd792ed631d2925edc6203fe0d231d", 46286 + "sha256": "1hbcsah3z1h95z93srdf5rkjq3icb6gcmq5r8sv6z8k026xy56sb", 46287 + "fetcher": "sourcehut", 46288 + "repo": "arjca/gemtext-mode.el", 46289 + "unstable": { 46290 + "version": [ 46291 + 20231029, 46292 + 2010 46293 + ], 46294 + "commit": "431b3b1d7c4310ef09ba16adbc870bc0af2c0e9b", 46295 + "sha256": "1zizjq3cx5y7mdgapm2kzc4bs13fcg55nay996350ha986isa834" 46274 46296 } 46275 46297 }, 46276 46298 { ··· 50204 50226 "repo": "stuhlmueller/gpt.el", 50205 50227 "unstable": { 50206 50228 "version": [ 50207 - 20231108, 50208 - 150 50229 + 20231112, 50230 + 2012 50209 50231 ], 50210 - "commit": "fb0ab4b1e95a6ba97c09ff072fc91ac7c7f22afa", 50211 - "sha256": "0vqxf5zfsaa1ddqp80fhyyfpgpi5my1dzxpsd9zzbf7cma383r00" 50232 + "commit": "c1091d25db420320de4b121baba99d7ac2e23932", 50233 + "sha256": "0b9fcj7zkqxj5928038gnk93shi7k4mpikqir80lypbnnbn96l5f" 50212 50234 } 50213 50235 }, 50214 50236 { ··· 50275 50297 "repo": "karthink/gptel", 50276 50298 "unstable": { 50277 50299 "version": [ 50278 - 20231108, 50279 - 2129 50300 + 20231113, 50301 + 211 50280 50302 ], 50281 50303 "deps": [ 50282 50304 "transient" 50283 50305 ], 50284 - "commit": "0109d0d1c067aee8fc3228f1f34d766043258cc3", 50285 - "sha256": "15lwqgydkzqc4zp9dfyiqlphm14pr5f588gwi8pxw36dmpgik927" 50306 + "commit": "17a58d38e7299f254d02c29bbcc9211146394758", 50307 + "sha256": "1cy1kkbg477dnf8lz137h7bc7hvm3apvxdq3ycqifwwhfks4cyk4" 50286 50308 }, 50287 50309 "stable": { 50288 50310 "version": [ ··· 52081 52103 "repo": "haskell/haskell-mode", 52082 52104 "unstable": { 52083 52105 "version": [ 52084 - 20231026, 52085 - 1602 52106 + 20231115, 52107 + 1812 52086 52108 ], 52087 - "commit": "ef3fe51f7c207db3c55b9a3a720b3af665d2e606", 52088 - "sha256": "15d4wkpv35bbzskiwia0jzl9m5pvs5pl70qs6np6yz7hwq4c524r" 52109 + "commit": "8d0f44bfe2a9ab6b0969c9bafb75089f315ff5ae", 52110 + "sha256": "0ndi986rxq9gz61ss2vazadn7rn0niv1gnpk9nfq9sw3m336glsf" 52089 52111 }, 52090 52112 "stable": { 52091 52113 "version": [ 52092 52114 17, 52093 - 4 52115 + 5 52094 52116 ], 52095 - "commit": "79af559b6d750aff32a916a81cc4fb63ecfd588d", 52096 - "sha256": "03j94fgw1bljbjqmikbn9mnrfifxf7g9zrb727zmnnrjwyi0wd4n" 52117 + "commit": "8d0f44bfe2a9ab6b0969c9bafb75089f315ff5ae", 52118 + "sha256": "0ndi986rxq9gz61ss2vazadn7rn0niv1gnpk9nfq9sw3m336glsf" 52097 52119 } 52098 52120 }, 52099 52121 { ··· 52408 52430 "repo": "emacs-helm/helm", 52409 52431 "unstable": { 52410 52432 "version": [ 52411 - 20231108, 52412 - 1729 52433 + 20231114, 52434 + 1504 52413 52435 ], 52414 52436 "deps": [ 52415 52437 "helm-core", 52416 52438 "popup", 52417 52439 "wfnames" 52418 52440 ], 52419 - "commit": "2534c228ef6699cb2588349c44627835fc444278", 52420 - "sha256": "1iq9cpf4nywfiw1f3ki5jcxpb2mlyqm6pgqfa6alfkkpvgrap9l3" 52441 + "commit": "74887ba26071fba4c66ac3b4dc11d7d632832394", 52442 + "sha256": "1gyd03dln19cjwgrh3m72qik77hdc2waiv61knzk30pq3dds965j" 52421 52443 }, 52422 52444 "stable": { 52423 52445 "version": [ ··· 53269 53291 "repo": "Sodel-the-Vociferous/helm-company", 53270 53292 "unstable": { 53271 53293 "version": [ 53272 - 20231108, 53273 - 612 53294 + 20231113, 53295 + 701 53274 53296 ], 53275 53297 "deps": [ 53276 53298 "company", 53277 53299 "helm" 53278 53300 ], 53279 - "commit": "a653ff05023a21dfa087d196d6ca27e382eb28b2", 53280 - "sha256": "0zg878i48kmgw9lj772c3kx5v13k9k2afz98j65jx2bjbcm9f338" 53301 + "commit": "4622b82353220ee6cc33468f710fa5b6b253b7f1", 53302 + "sha256": "0lschnr15c39bnfvm2zdp7f3qvyzrdk8gzzwcb1g2d9jy3mkcq05" 53281 53303 }, 53282 53304 "stable": { 53283 53305 "version": [ 53284 53306 0, 53285 53307 2, 53286 - 7 53308 + 8 53287 53309 ], 53288 53310 "deps": [ 53289 53311 "company", 53290 53312 "helm" 53291 53313 ], 53292 - "commit": "a653ff05023a21dfa087d196d6ca27e382eb28b2", 53293 - "sha256": "0zg878i48kmgw9lj772c3kx5v13k9k2afz98j65jx2bjbcm9f338" 53314 + "commit": "4622b82353220ee6cc33468f710fa5b6b253b7f1", 53315 + "sha256": "0lschnr15c39bnfvm2zdp7f3qvyzrdk8gzzwcb1g2d9jy3mkcq05" 53294 53316 } 53295 53317 }, 53296 53318 { ··· 57944 57966 "repo": "mihaimaruseac/hindent", 57945 57967 "unstable": { 57946 57968 "version": [ 57947 - 20230517, 57948 - 1404 57969 + 20231112, 57970 + 1536 57949 57971 ], 57950 57972 "deps": [ 57951 57973 "cl-lib" 57952 57974 ], 57953 - "commit": "e36786e7a54b0ebfd662bc6ddedea656d08a4033", 57954 - "sha256": "1hl42vi28v075csilja906v52vg9hz43540x6fd59ddrv61zj6w5" 57975 + "commit": "a83adf2edc9503c0ee836beb7745bdfd4ba1ea50", 57976 + "sha256": "0yzsxnfzwhrqpjnrn6pxrvyy4pkay3dg5qic5lanl1j24hspfmjf" 57955 57977 }, 57956 57978 "stable": { 57957 57979 "version": [ 57958 57980 6, 57959 57981 1, 57960 - 0 57982 + 1 57961 57983 ], 57962 57984 "deps": [ 57963 57985 "cl-lib" 57964 57986 ], 57965 - "commit": "e36786e7a54b0ebfd662bc6ddedea656d08a4033", 57966 - "sha256": "1hl42vi28v075csilja906v52vg9hz43540x6fd59ddrv61zj6w5" 57987 + "commit": "a83adf2edc9503c0ee836beb7745bdfd4ba1ea50", 57988 + "sha256": "0yzsxnfzwhrqpjnrn6pxrvyy4pkay3dg5qic5lanl1j24hspfmjf" 57967 57989 } 57968 57990 }, 57969 57991 { ··· 59309 59331 "repo": "ushin/hyperdrive.el", 59310 59332 "unstable": { 59311 59333 "version": [ 59312 - 20231108, 59313 - 2105 59334 + 20231112, 59335 + 920 59314 59336 ], 59315 59337 "deps": [ 59316 59338 "compat", ··· 59320 59342 "taxy-magit-section", 59321 59343 "transient" 59322 59344 ], 59323 - "commit": "0bb8c90827781241b7c04904e7a348133e084453", 59324 - "sha256": "1y8c8dpzj4fvym2sk3ci0sdrkm70w9anyvgpb6q2sa5b25hwgm7f" 59345 + "commit": "8aff760d4a8d3a172a6694e1816f309bac1eac95", 59346 + "sha256": "0zml0m0y5k1bs6d627f0la9ax9ag74rmxpxzwky5v8r8zqclynfa" 59325 59347 }, 59326 59348 "stable": { 59327 59349 "version": [ ··· 60423 60445 "repo": "KarimAziev/igist", 60424 60446 "unstable": { 60425 60447 "version": [ 60426 - 20231110, 60427 - 851 60448 + 20231114, 60449 + 928 60428 60450 ], 60429 60451 "deps": [ 60430 60452 "ghub", 60431 60453 "transient" 60432 60454 ], 60433 - "commit": "92e3c429c0da07025624cceb5796ac41edf753e2", 60434 - "sha256": "10hw58zln8x8kjyzmfl1vfqj5mqascix9c7rdq884f8ypfynx7p1" 60455 + "commit": "7a72a4ea40668a7c4f0f8d60990a5ac298429936", 60456 + "sha256": "0v02cjjabm1f14bvhqp559xfv14my9ibjyx2gh3kzb67lhsrlcsr" 60435 60457 }, 60436 60458 "stable": { 60437 60459 "version": [ ··· 63689 63711 } 63690 63712 }, 63691 63713 { 63714 + "ename": "jack-ts-mode", 63715 + "commit": "d01c726fc20b97e6127603f7bc347a5cf5e21cf8", 63716 + "sha256": "12lih23ci6jl6hqg9lv3cfdadvg60k1j6hgxk8w1x04677ri73nw", 63717 + "fetcher": "github", 63718 + "repo": "nverno/jack-ts-mode", 63719 + "unstable": { 63720 + "version": [ 63721 + 20231110, 63722 + 1615 63723 + ], 63724 + "commit": "f57f211d96608a90142619a925caeb8808e7c632", 63725 + "sha256": "0zvd2xxv5wsljbvpzp7i121hgj7mnlgjd5wjblmf2hhx49al5n01" 63726 + } 63727 + }, 63728 + { 63692 63729 "ename": "jade-mode", 63693 63730 "commit": "877b5a3e612e1b1d6d51e60c66b0b79f231abdb2", 63694 63731 "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", ··· 64412 64449 "repo": "minad/jinx", 64413 64450 "unstable": { 64414 64451 "version": [ 64415 - 20231104, 64416 - 1427 64452 + 20231111, 64453 + 850 64417 64454 ], 64418 64455 "deps": [ 64419 64456 "compat" 64420 64457 ], 64421 - "commit": "6f6108896744d1da4887b08e4fe4fff403ac10ac", 64422 - "sha256": "0jf9p75r13p28n1kv9w85kk9n3nfp4d8p34y76n3rqhh3sib2asg" 64458 + "commit": "25279e36701ad0bea1331ccfa009c07fda2f85d0", 64459 + "sha256": "0z05znl1cb26j67h7g0wlfazn9sr7p5j59mwdayy3l9157ic6b4i" 64423 64460 }, 64424 64461 "stable": { 64425 64462 "version": [ ··· 64561 64598 "repo": "SebastianMeisel/journalctl-mode", 64562 64599 "unstable": { 64563 64600 "version": [ 64564 - 20231110, 64565 - 1253 64601 + 20231113, 64602 + 809 64566 64603 ], 64567 - "commit": "cb3185081cc8eba06de30936efa227639fb8a60c", 64568 - "sha256": "0805nvz7kssjm3gahm9g8s25by44dm16anz69087jqfkdwxly023" 64604 + "commit": "d9ecbd2f1ca15c90a05f11441886ab2e66b9a51f", 64605 + "sha256": "1mpqr8ls3xd8iirnjsk2rg3ibr13n853dj3y0hr6baddka1hydfx" 64569 64606 }, 64570 64607 "stable": { 64571 64608 "version": [ 64572 - 0, 64573 - 8 64609 + 1, 64610 + 1 64574 64611 ], 64575 - "commit": "457e38af67427e92d6217abbb362ca9673b33ed5", 64576 - "sha256": "1lnjgpbvs3b7h1m1lnd4g3965pjn1sw4vyjd3f4106s10llmkd8x" 64612 + "commit": "aef9162171118ef8e6ab411b26b763c9c6ea9e2f", 64613 + "sha256": "13xa05a798qbpxgkidvf42xxvi582n7sblwvv9kx0b0glclzkpb1" 64577 64614 } 64578 64615 }, 64579 64616 { ··· 64669 64706 "repo": "nverno/jq-ts-mode", 64670 64707 "unstable": { 64671 64708 "version": [ 64672 - 20231025, 64673 - 2319 64709 + 20231111, 64710 + 208 64674 64711 ], 64675 - "commit": "b1abef71843dd99349133a75245804aee503c05d", 64676 - "sha256": "0xjmpk33rhqlw5f9qjhmyc057l8rbrrzhz460zsljx2wm11cvp6d" 64712 + "commit": "0201e351ed0074a72c0987282079c775f3c8fe52", 64713 + "sha256": "157f300w61dq9s11f71p4z0nykg8h1f64rnpy3199y6sfjhhglyl" 64677 64714 } 64678 64715 }, 64679 64716 { ··· 65522 65559 "repo": "gcv/julia-snail", 65523 65560 "unstable": { 65524 65561 "version": [ 65525 - 20231026, 65526 - 2200 65562 + 20231113, 65563 + 2330 65527 65564 ], 65528 65565 "deps": [ 65529 65566 "dash", ··· 65532 65569 "s", 65533 65570 "spinner" 65534 65571 ], 65535 - "commit": "97ca00411e16a2c1815090ca5aa05b3a36776a75", 65536 - "sha256": "168x8g2m30ci2msjfk09bbczpa33h4ax57b23hcwy5czk9511w70" 65572 + "commit": "16cf8ffafe5ea0925beb97e37a64eab58b2ad95d", 65573 + "sha256": "1231rkk629dqi15011bjslwvspvlgnx74xm2q9j1y37ql4zxjx2n" 65537 65574 }, 65538 65575 "stable": { 65539 65576 "version": [ ··· 66118 66155 "repo": "Meritamen/kanagawa-theme", 66119 66156 "unstable": { 66120 66157 "version": [ 66121 - 20231023, 66122 - 114 66158 + 20231112, 66159 + 414 66123 66160 ], 66124 66161 "deps": [ 66125 66162 "autothemer" 66126 66163 ], 66127 - "commit": "08debfc56e052ed69c7ecc3b08c687bb5af4a33c", 66128 - "sha256": "1mf4w05zhmhdrknfnpfrcvc3126i3vqcsyjwp0n83km1d8wcd1sx" 66164 + "commit": "692cc627ccdd0595de3bbc67e313a0363002e444", 66165 + "sha256": "0abckxxifh5aw55wk7ykfxi6cm4rd6ya0m8pql9591lyxfi5whxw" 66129 66166 } 66130 66167 }, 66131 66168 { ··· 67406 67443 "repo": "bricka/emacs-kotlin-ts-mode", 67407 67444 "unstable": { 67408 67445 "version": [ 67409 - 20231110, 67410 - 1334 67446 + 20231114, 67447 + 1243 67411 67448 ], 67412 - "commit": "b9ccc4896c8af8e8b60a26eb16fffe8a185551d0", 67413 - "sha256": "1dy1j72i8ymxlvhrbh3k94l90p3vwfn8bimbrlw100aqz41nz2jd" 67449 + "commit": "9688741a59a5ffd71850660dd320b0309a2ba119", 67450 + "sha256": "1gxj3fys3py0ldz31f8frmj12f9jyyqj9g8valsy2c87qvg70ag3" 67414 67451 } 67415 67452 }, 67416 67453 { ··· 67543 67580 "repo": "abrochard/kubel", 67544 67581 "unstable": { 67545 67582 "version": [ 67546 - 20231013, 67547 - 1753 67583 + 20231114, 67584 + 1528 67548 67585 ], 67549 67586 "deps": [ 67550 67587 "dash", ··· 67552 67589 "transient", 67553 67590 "yaml-mode" 67554 67591 ], 67555 - "commit": "b882de32b6f6a6ee371eb7a7a308f3936031e681", 67556 - "sha256": "1ddavmfyyd2rxffvb3cbv28dxrjsa58jbywzgplnx6zyv05frx44" 67592 + "commit": "4e3d362b2df2307f7b13140810a3142b835bc9ff", 67593 + "sha256": "0lq0c5dd63d19ziw16cfhhzk4z3vjqal1vqjflvdrd2xhdzjk0xn" 67557 67594 }, 67558 67595 "stable": { 67559 67596 "version": [ ··· 67835 67872 "repo": "isamert/lab.el", 67836 67873 "unstable": { 67837 67874 "version": [ 67838 - 20231106, 67839 - 1250 67875 + 20231112, 67876 + 2208 67840 67877 ], 67841 67878 "deps": [ 67842 67879 "f", ··· 67844 67881 "request", 67845 67882 "s" 67846 67883 ], 67847 - "commit": "c79bf975ad799e11ead0e2f2ca909222044b35cd", 67848 - "sha256": "1n9xnpz6yv7rczl0cjk7qd5962swcf19022hpaf46kva2sw43333" 67884 + "commit": "9f0f738c46712f5365d9d75c37ce6d1f8b6e9ba7", 67885 + "sha256": "0k54x2znxwq3ji8cvxc37h9fnr0krpyyx954f106fa7gylp86kz4" 67849 67886 } 67850 67887 }, 67851 67888 { ··· 71687 71724 "repo": "emacs-lsp/lsp-mode", 71688 71725 "unstable": { 71689 71726 "version": [ 71690 - 20231110, 71691 - 716 71727 + 20231115, 71728 + 1221 71692 71729 ], 71693 71730 "deps": [ 71694 71731 "dash", ··· 71699 71736 "markdown-mode", 71700 71737 "spinner" 71701 71738 ], 71702 - "commit": "3c1c583b549d81ab8e23ddd58b0a7f065e6b6f2a", 71703 - "sha256": "0di1hg5hxm6ybqz063yjj6b9rpjaxgqgia6k753hyp9p95c0619y" 71739 + "commit": "91dbd0240afb5223b2ddfca8326d1c2fb3e8cf7f", 71740 + "sha256": "1anibzm7w9arzqpfm6p01v0522j022g2mwa01w0p1idwg6jjiivf" 71704 71741 }, 71705 71742 "stable": { 71706 71743 "version": [ ··· 72638 72675 "repo": "magit/magit", 72639 72676 "unstable": { 72640 72677 "version": [ 72641 - 20231109, 72642 - 935 72678 + 20231112, 72679 + 914 72643 72680 ], 72644 72681 "deps": [ 72645 72682 "compat", ··· 72650 72687 "transient", 72651 72688 "with-editor" 72652 72689 ], 72653 - "commit": "02630b51896929011a420d9382779c98ecaef687", 72654 - "sha256": "06cnhwzxjpqb29km9nxjynapxiajaa87s7q32c4igq4yjp3jy0h0" 72690 + "commit": "f4ff817cb2a48f0f7887050c3be469c03a059567", 72691 + "sha256": "0y0sfxky27yx0wsxfbqydigm2x4596dyf1x1psn66gfgjm9yjcff" 72655 72692 }, 72656 72693 "stable": { 72657 72694 "version": [ ··· 74058 74095 } 74059 74096 }, 74060 74097 { 74098 + "ename": "mark-yank", 74099 + "commit": "d186dbd15e567113418449cf1830f7a5fc342580", 74100 + "sha256": "1vbqvw55bzvfaf9nxy3bvp8gzg0hxag7srnjyxpy2a1jwy5crq6i", 74101 + "fetcher": "github", 74102 + "repo": "mkleehammer/mark-yank", 74103 + "unstable": { 74104 + "version": [ 74105 + 20231105, 74106 + 2027 74107 + ], 74108 + "commit": "7207aabe9edd0872ec6d506a58b942b43926c122", 74109 + "sha256": "0r94mm6x9n53ck2gqbrmi0gdahf1xyhp09jpnnv3m1klhi4hwbzg" 74110 + } 74111 + }, 74112 + { 74061 74113 "ename": "markdown-changelog", 74062 74114 "commit": "1ca43b6cf089d7c75b1fb483d8356a3ca7fec5bd", 74063 74115 "sha256": "0cnp6yfhsixl9nl7l6aa9vrnz71ylf6z25hmk7f6w64f7nxsdmr8", ··· 74800 74852 "repo": "knu/mc-extras.el", 74801 74853 "unstable": { 74802 74854 "version": [ 74803 - 20181109, 74804 - 1735 74855 + 20231113, 74856 + 1359 74805 74857 ], 74806 74858 "deps": [ 74807 74859 "multiple-cursors" 74808 74860 ], 74809 - "commit": "053abc52181b8718559d7361a587bbb795faf164", 74810 - "sha256": "16y48qrd20m20vypvys5jp4v4gc1qrqlkm75s1pk1r68i9zrw481" 74861 + "commit": "abd98a7c92e71d38494a6bf20853f3ff20e1f013", 74862 + "sha256": "0zv8cxhyqkxc3gyyzd18zygjy0xd3fk1x3v5h24yr998wg0fb050" 74811 74863 }, 74812 74864 "stable": { 74813 74865 "version": [ ··· 75188 75240 "repo": "ocaml/merlin", 75189 75241 "unstable": { 75190 75242 "version": [ 75191 - 20231108, 75192 - 1124 75243 + 20231115, 75244 + 1306 75193 75245 ], 75194 - "commit": "f46ebad2216460cf58293b913bb76c5e9bdc968c", 75195 - "sha256": "1wirkcwi21s8z3210h9fwqbman2fg2366b05vgmgasphirsjdsw0" 75246 + "commit": "53eaad5df01bbdabc9e655dbadebc302d0475f31", 75247 + "sha256": "1a2snly1iraxmyal8f61jj0zhcywmyzq6gglf1fqmmcx3xpv8xra" 75196 75248 }, 75197 75249 "stable": { 75198 75250 "version": [ ··· 75931 75983 "repo": "liuyinz/mini-echo.el", 75932 75984 "unstable": { 75933 75985 "version": [ 75934 - 20231107, 75935 - 1317 75986 + 20231115, 75987 + 13 75936 75988 ], 75937 - "commit": "9d89e352b73ff2222d62b43b8944206582723fef", 75938 - "sha256": "14gr1fc1bdwwzll1yq2sc5yaadvb4360lqypvq805bnnhdjqb6hb" 75989 + "commit": "5dfd1608d384be3176c4f06fef908933e2fd4a02", 75990 + "sha256": "0pknwad9mm0szb4a0ar7wrc8lnwn45vf3vfq0wbflh6071mdnmkv" 75939 75991 }, 75940 75992 "stable": { 75941 75993 "version": [ 75942 75994 0, 75943 75995 5, 75944 - 3 75996 + 4 75945 75997 ], 75946 - "commit": "89061feace09249a93e8bdaf2474cc953eee604b", 75947 - "sha256": "143i9ih18mh26mdq9d9pxnb468n9zmz2xxs49hgzkpyhc5hdcdy9" 75998 + "commit": "58b7c6129f941d4eb6cb5c04525970f8e409623a", 75999 + "sha256": "146nlsflzfbsdkwni15vhassq7kgf4xjn7vlwn05v1sny2wpscg2" 75948 76000 } 75949 76001 }, 75950 76002 { ··· 76919 76971 "repo": "protesilaos/modus-themes", 76920 76972 "unstable": { 76921 76973 "version": [ 76922 - 20231031, 76923 - 716 76974 + 20231115, 76975 + 1302 76924 76976 ], 76925 - "commit": "ff70fd4136df589945d06de6926286d70243345b", 76926 - "sha256": "16qr26ihf50w536r6646csd2vxl6xgyyzywn095cxs8mq2qp7jzq" 76977 + "commit": "bdb18b2ee27344e44e2a17c78524205d02d5174c", 76978 + "sha256": "08m6mzh87q05dx7xvfnyqpj0jsg59g626qq8y5nrnmscf7pf0rkz" 76927 76979 }, 76928 76980 "stable": { 76929 76981 "version": [ ··· 79714 79766 "repo": "babashka/neil", 79715 79767 "unstable": { 79716 79768 "version": [ 79717 - 20231002, 79718 - 1014 79769 + 20231113, 79770 + 1036 79719 79771 ], 79720 - "commit": "f597921dcbf4774d799be62d8fbbce7171b12c3f", 79721 - "sha256": "143lbva2bh723qgk6mjnbawbx9sr3x3pnpgp42hvnr072gcpl9nd" 79772 + "commit": "076fb8339e4ea935c1a530a740b6eb6257c55962", 79773 + "sha256": "1vz50fkf1nw1md8p239pisvpba9q1y3ygvs6yfb37jvrxh6a1k4r" 79722 79774 }, 79723 79775 "stable": { 79724 79776 "version": [ 79725 79777 0, 79726 79778 2, 79727 - 62 79779 + 63 79728 79780 ], 79729 - "commit": "f597921dcbf4774d799be62d8fbbce7171b12c3f", 79730 - "sha256": "143lbva2bh723qgk6mjnbawbx9sr3x3pnpgp42hvnr072gcpl9nd" 79781 + "commit": "076fb8339e4ea935c1a530a740b6eb6257c55962", 79782 + "sha256": "1vz50fkf1nw1md8p239pisvpba9q1y3ygvs6yfb37jvrxh6a1k4r" 79731 79783 } 79732 79784 }, 79733 79785 { ··· 79815 79867 "repo": "rainstormstudio/nerd-icons.el", 79816 79868 "unstable": { 79817 79869 "version": [ 79818 - 20231105, 79819 - 653 79870 + 20231115, 79871 + 1110 79820 79872 ], 79821 - "commit": "a506b43dc241ee07c28ce815068277084afbf09c", 79822 - "sha256": "0jahmqvi0hb8jsraj21d1n6wdp827yak2f4bs9ljpmggqvxp40pl" 79873 + "commit": "cfda588dc1e865a8a121b9071f3720fd4937492b", 79874 + "sha256": "0cnhcyh7s50k60hx572zz2cq83qjjp72qs6ad9gc6abhzzrzr6bj" 79823 79875 }, 79824 79876 "stable": { 79825 79877 "version": [ ··· 80880 80932 "repo": "emacscollective/no-littering", 80881 80933 "unstable": { 80882 80934 "version": [ 80883 - 20231024, 80884 - 854 80935 + 20231115, 80936 + 2126 80885 80937 ], 80886 80938 "deps": [ 80887 80939 "compat" 80888 80940 ], 80889 - "commit": "1fb3271e991fb941e8cc480beff74000e3a08a3a", 80890 - "sha256": "0ahlri3hlkrlmm6bh094ays6qrw9yd02rghq0hgin006817r8pqz" 80941 + "commit": "722c44210a5f2697f449bd6cb2cdcff638b8c0bd", 80942 + "sha256": "109z231gz4afg4z0dzyccsx69znvzwy3z4c5z48441brssvna6nj" 80891 80943 }, 80892 80944 "stable": { 80893 80945 "version": [ ··· 82233 82285 "repo": "xenodium/chatgpt-shell", 82234 82286 "unstable": { 82235 82287 "version": [ 82236 - 20231109, 82237 - 914 82288 + 20231111, 82289 + 2324 82238 82290 ], 82239 82291 "deps": [ 82240 82292 "chatgpt-shell" 82241 82293 ], 82242 - "commit": "58bb4d8eb9218be4925201a39596387d160f4593", 82243 - "sha256": "1mqwc2wkz2ax4pzi76vqq59v4qjwp221sw4nw91nr6zbk5ws1780" 82294 + "commit": "03f8edabb95c6ffc64050d79fdb3091532711b59", 82295 + "sha256": "0h94zdx1nn98pg3mdlj6zvlswmj6i1yldnm1hb9pj2hccsdfj3bj" 82244 82296 } 82245 82297 }, 82246 82298 { ··· 83602 83654 "repo": "ideasman42/emacs-theme-oblivion", 83603 83655 "unstable": { 83604 83656 "version": [ 83605 - 20230415, 83606 - 551 83657 + 20231111, 83658 + 1100 83607 83659 ], 83608 - "commit": "f0b180eeb5ed19bacbce9d6a39e3123f4751f54b", 83609 - "sha256": "03xr38xdsjxlcfbw2637wwiwadymhb60pc9ik0zzk69d2ks097k2" 83660 + "commit": "f8e3e1cb02f83624624a4e42070059d91f2e8d5c", 83661 + "sha256": "0mb5mmw1110a4czg459c4dl6xj99vzp5vgkhp7kkdgakck0pz17z" 83610 83662 } 83611 83663 }, 83612 83664 { ··· 84674 84726 "repo": "knu/operate-on-number.el", 84675 84727 "unstable": { 84676 84728 "version": [ 84677 - 20150707, 84678 - 623 84729 + 20231114, 84730 + 1921 84679 84731 ], 84680 - "commit": "ceb3be565a29326c1098244fac0c50606723a56e", 84681 - "sha256": "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9" 84732 + "commit": "0ddebae1885c1b54eae1d79e66204d6d83c5065b", 84733 + "sha256": "0y3a8qp9b6cgx61xs665l6g6xqc208jqvhv9vqyl517v6gwcpq0b" 84682 84734 }, 84683 84735 "stable": { 84684 84736 "version": [ 84685 84737 1, 84686 - 1, 84738 + 3, 84687 84739 0 84688 84740 ], 84689 - "commit": "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6", 84690 - "sha256": "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb" 84741 + "commit": "0ddebae1885c1b54eae1d79e66204d6d83c5065b", 84742 + "sha256": "0y3a8qp9b6cgx61xs665l6g6xqc208jqvhv9vqyl517v6gwcpq0b" 84691 84743 } 84692 84744 }, 84693 84745 { ··· 89172 89224 "repo": "ichernyshovvv/org-timeblock", 89173 89225 "unstable": { 89174 89226 "version": [ 89175 - 20231109, 89176 - 843 89227 + 20231112, 89228 + 1748 89177 89229 ], 89178 89230 "deps": [ 89179 89231 "compat", ··· 89182 89234 "persist", 89183 89235 "svg" 89184 89236 ], 89185 - "commit": "7ac198c48646f864f18aef1c7e55c15ab8d8b679", 89186 - "sha256": "0m6gzjzv4criydhsz2s3q1kqc3bs11zg5svgjaksb7piks9368ds" 89237 + "commit": "72a72bad4644f7b6045403e93e99d7a362b03b9c", 89238 + "sha256": "045vrp9d8d6wnmi82vi337w5w7i3cs0jprwiyhkf033bwvvdywwb" 89187 89239 }, 89188 89240 "stable": { 89189 89241 "version": [ ··· 92185 92237 "repo": "purcell/package-lint", 92186 92238 "unstable": { 92187 92239 "version": [ 92188 - 20231110, 92189 - 1025 92240 + 20231113, 92241 + 1518 92190 92242 ], 92191 92243 "deps": [ 92192 92244 "cl-lib", 92193 92245 "compat", 92194 92246 "let-alist" 92195 92247 ], 92196 - "commit": "c541e67dbb7f93b888edac908e9b25813ee7e6f7", 92197 - "sha256": "0y3qq1hn43xkmv3x807ja088s75hs06lj8fgxa7a16ifaaa0958c" 92248 + "commit": "dd81a5b9224cc6e6dc4bbb6b4a2928df89c01317", 92249 + "sha256": "1y0h8rrmvi3j5maig6i69kxxr1igb96075vpzbycaqln3xn11g36" 92198 92250 }, 92199 92251 "stable": { 92200 92252 "version": [ 92201 92253 0, 92202 - 20 92254 + 21 92203 92255 ], 92204 92256 "deps": [ 92205 92257 "cl-lib", 92206 92258 "compat", 92207 92259 "let-alist" 92208 92260 ], 92209 - "commit": "5eba825d657b490c320b2ea2c302b1fa0c999610", 92210 - "sha256": "1v12l8mbsrgkq5rmgzypkiabhfrd5cq6nrnmsairnpw8rrz4w739" 92261 + "commit": "dd81a5b9224cc6e6dc4bbb6b4a2928df89c01317", 92262 + "sha256": "1y0h8rrmvi3j5maig6i69kxxr1igb96075vpzbycaqln3xn11g36" 92211 92263 } 92212 92264 }, 92213 92265 { ··· 92218 92270 "repo": "purcell/package-lint", 92219 92271 "unstable": { 92220 92272 "version": [ 92221 - 20231103, 92222 - 1810 92273 + 20231113, 92274 + 1518 92223 92275 ], 92224 92276 "deps": [ 92225 92277 "package-lint" 92226 92278 ], 92227 - "commit": "5eba825d657b490c320b2ea2c302b1fa0c999610", 92228 - "sha256": "1v12l8mbsrgkq5rmgzypkiabhfrd5cq6nrnmsairnpw8rrz4w739" 92279 + "commit": "dd81a5b9224cc6e6dc4bbb6b4a2928df89c01317", 92280 + "sha256": "1y0h8rrmvi3j5maig6i69kxxr1igb96075vpzbycaqln3xn11g36" 92229 92281 }, 92230 92282 "stable": { 92231 92283 "version": [ 92232 92284 0, 92233 - 20 92285 + 21 92234 92286 ], 92235 92287 "deps": [ 92236 92288 "package-lint" 92237 92289 ], 92238 - "commit": "5eba825d657b490c320b2ea2c302b1fa0c999610", 92239 - "sha256": "1v12l8mbsrgkq5rmgzypkiabhfrd5cq6nrnmsairnpw8rrz4w739" 92290 + "commit": "dd81a5b9224cc6e6dc4bbb6b4a2928df89c01317", 92291 + "sha256": "1y0h8rrmvi3j5maig6i69kxxr1igb96075vpzbycaqln3xn11g36" 92240 92292 } 92241 92293 }, 92242 92294 { ··· 96894 96946 "repo": "aki2o/emacs-pophint", 96895 96947 "unstable": { 96896 96948 "version": [ 96897 - 20200420, 96898 - 1429 96949 + 20231112, 96950 + 658 96899 96951 ], 96900 96952 "deps": [ 96901 96953 "log4e", 96902 96954 "yaxception" 96903 96955 ], 96904 - "commit": "5e13da4578ae7ba00e6f7bae31eb546d713cc19d", 96905 - "sha256": "01bwfswzzrjxrjaqysaqnav7h3swwyigxw7nj0cgrm3w8cp1y2a8" 96956 + "commit": "e17fb22d34f904b4473f6bad0d445e3ca1521669", 96957 + "sha256": "1k18qc7s75bfv5z3mrs5snsjh16kcz1r5kxrw7p5rbfk002bgqw7" 96906 96958 }, 96907 96959 "stable": { 96908 96960 "version": [ 96909 96961 1, 96910 96962 3, 96911 - 0 96963 + 1 96912 96964 ], 96913 96965 "deps": [ 96914 96966 "log4e", 96915 96967 "yaxception" 96916 96968 ], 96917 - "commit": "5e13da4578ae7ba00e6f7bae31eb546d713cc19d", 96918 - "sha256": "01bwfswzzrjxrjaqysaqnav7h3swwyigxw7nj0cgrm3w8cp1y2a8" 96969 + "commit": "e17fb22d34f904b4473f6bad0d445e3ca1521669", 96970 + "sha256": "1k18qc7s75bfv5z3mrs5snsjh16kcz1r5kxrw7p5rbfk002bgqw7" 96919 96971 } 96920 96972 }, 96921 96973 { ··· 99003 99055 "repo": "protocolbuffers/protobuf", 99004 99056 "unstable": { 99005 99057 "version": [ 99006 - 20231101, 99007 - 2003 99058 + 20230506, 99059 + 330 99008 99060 ], 99009 - "commit": "6b5d8db01fe47478e8d400f550e797e6230d464e", 99010 - "sha256": "1pzkb3kdr374cxs7vw8lxpkl6ncg4mkjdqyzhnijri6m250sjwip" 99061 + "commit": "0d3b0c61f4f44c3d8770b89edffe481aaf56f4f1", 99062 + "sha256": "06xl81cm55g0dcpfh8b8za8mrs5cgjv656z23q5q0ph3war6ifbn" 99011 99063 }, 99012 99064 "stable": { 99013 99065 "version": [ 99014 99066 25, 99015 - 0 99067 + 1 99016 99068 ], 99017 - "commit": "6b5d8db01fe47478e8d400f550e797e6230d464e", 99018 - "sha256": "1pzkb3kdr374cxs7vw8lxpkl6ncg4mkjdqyzhnijri6m250sjwip" 99069 + "commit": "7f94235e552599141950d7a4a3eaf93bc87d1b22", 99070 + "sha256": "0apvjl43f751iy3472cc17wqmnmzlcgn9sw2wxsmddaz9km7kbn3" 99019 99071 } 99020 99072 }, 99021 99073 { ··· 99501 99553 "repo": "AmaiKinono/puni", 99502 99554 "unstable": { 99503 99555 "version": [ 99504 - 20230910, 99505 - 1438 99556 + 20231111, 99557 + 1538 99506 99558 ], 99507 - "commit": "67fd542d9b633d729bdc46fca50a8d0bb6ec6ffb", 99508 - "sha256": "06r3i7j090pqgxx40ssix34zbjyzl8mpilwakamw6jlzcdhl4lg9" 99559 + "commit": "518a5362870b6ef01d2d4a158bd38c7280687256", 99560 + "sha256": "1m7gvizfmvf1f6s4x72fszja90zq7sslmywgihzs7585107wy8s3" 99509 99561 } 99510 99562 }, 99511 99563 { ··· 101274 101326 "repo": "greghendershott/racket-mode", 101275 101327 "unstable": { 101276 101328 "version": [ 101277 - 20231110, 101278 - 1508 101329 + 20231115, 101330 + 1544 101279 101331 ], 101280 - "commit": "24d59b1546d963c2b92f67a8efde951db90182da", 101281 - "sha256": "10s29phk21scdgyyl8ya7l23xr07gm5li7kyni25hh91q6fkldaa" 101332 + "commit": "296de3c15580805f2d84dd30e01eb9b12f18bc3f", 101333 + "sha256": "1w6pxgmm7s769g7falshpvnb0klql3pz3h9461rvgmvxmrraas93" 101282 101334 } 101283 101335 }, 101284 101336 { ··· 102037 102089 "repo": "realgud/realgud", 102038 102090 "unstable": { 102039 102091 "version": [ 102040 - 20231021, 102041 - 227 102092 + 20231113, 102093 + 1910 102042 102094 ], 102043 102095 "deps": [ 102044 102096 "load-relative", 102045 102097 "loc-changes", 102046 102098 "test-simple" 102047 102099 ], 102048 - "commit": "445340ebc5819eeedd73695c9182349349c90b6a", 102049 - "sha256": "1x493djnj5012c7jr29gmzy6sdw7s6xh855dgslr16aqimkz7zg8" 102100 + "commit": "365063ea8ce8ec6a852cb388088d84147421c3c2", 102101 + "sha256": "1ankjwwsbkv5i9x9dbv0lzbs5qrqb486ds2qymdb0w4kg2g3d11z" 102050 102102 }, 102051 102103 "stable": { 102052 102104 "version": [ ··· 102693 102745 "repo": "emacs-pe/redis.el", 102694 102746 "unstable": { 102695 102747 "version": [ 102696 - 20220429, 102697 - 1758 102748 + 20231111, 102749 + 1733 102698 102750 ], 102699 102751 "deps": [ 102700 102752 "cl-lib" 102701 102753 ], 102702 - "commit": "a6ad30d6a43b7be083c13f8725b45571d623001a", 102703 - "sha256": "048jvvxb6cskhs95n2ngl4cfgf8hbqidvbi1xsyb0gyzvvqbrhj1" 102754 + "commit": "84382456beae70677aed2f9558a0b446f8ccc17a", 102755 + "sha256": "0zrjfikpnj6pxaj348wnknv9dnzhzqwsi8b26dbsln5zcwl131jz" 102704 102756 } 102705 102757 }, 102706 102758 { ··· 107611 107663 "repo": "xenodium/chatgpt-shell", 107612 107664 "unstable": { 107613 107665 "version": [ 107614 - 20230709, 107615 - 2036 107666 + 20231112, 107667 + 442 107616 107668 ], 107617 - "commit": "1ec51235295f4685f6cc1a7601255fdcabffc1b3", 107618 - "sha256": "1yijz5hx5pidl29kfzf7skdvmvkl8vj7xnlha5p1r2v9l54n5asq" 107669 + "commit": "b9f193703f34a5ec923b0fdd34f38b3579d04140", 107670 + "sha256": "18sw8whar1r3y4jcml2yjf8symm8a6dvmw9ld80cacwyia3d20fn" 107619 107671 } 107620 107672 }, 107621 107673 { ··· 109321 109373 "repo": "slime/slime", 109322 109374 "unstable": { 109323 109375 "version": [ 109324 - 20231004, 109325 - 1552 109376 + 20231112, 109377 + 2019 109326 109378 ], 109327 109379 "deps": [ 109328 109380 "cl-lib", 109329 109381 "macrostep" 109330 109382 ], 109331 - "commit": "0cc2e736112a0bc2a048ef6efd11dd67e3fbf7ad", 109332 - "sha256": "14yqa8m44d5qll1fidh0d4g9hmpri8ywxfvgq43bzy00lshnprzg" 109383 + "commit": "735258a26bb97e85d25f39e4bef83c1f80c12f5d", 109384 + "sha256": "1dxy14dp6z4907vdj5mahj6fxv211rxvldyiq29k494bmapixhxw" 109333 109385 }, 109334 109386 "stable": { 109335 109387 "version": [ ··· 111699 111751 "repo": "condy0919/spdx.el", 111700 111752 "unstable": { 111701 111753 "version": [ 111702 - 20231110, 111703 - 101 111754 + 20231111, 111755 + 59 111704 111756 ], 111705 - "commit": "db107d1e9a716ffe531a0f73e7044bb8046d34c4", 111706 - "sha256": "13iyxz88ckzydhmy4wgfrfwp8dcj0dgb1rxwr5zcpqxrl1aifpjp" 111757 + "commit": "18d7cfd411d79d8bc81027a023c72bae96d77059", 111758 + "sha256": "0kj1amrxa1ldc4ss0lx1y2jl4iskg68zm20yldw059gwlg61p13q" 111707 111759 } 111708 111760 }, 111709 111761 { ··· 112450 112502 "repo": "srfi-explorations/emacs-srfi", 112451 112503 "unstable": { 112452 112504 "version": [ 112453 - 20231030, 112454 - 539 112505 + 20231115, 112506 + 1901 112455 112507 ], 112456 - "commit": "eafeda97eb8942e5e2f1fe6ebf7472de9ce405dd", 112457 - "sha256": "1myrv3awf8v1haas63fhy7s81jkbbfv6zlbsb2nl8j723d5vm8jn" 112508 + "commit": "97fa0664ee4852b18201a3fcac265ac8c52a4a4b", 112509 + "sha256": "154r3xrif4nzdqsfyb6skw0ddbi15j1crnqrqv6yclf4s14icz1m" 112458 112510 }, 112459 112511 "stable": { 112460 112512 "version": [ ··· 112991 113043 "repo": "motform/stimmung-themes", 112992 113044 "unstable": { 112993 113045 "version": [ 112994 - 20230925, 112995 - 1808 113046 + 20231113, 113047 + 756 112996 113048 ], 112997 - "commit": "6d0f9b34eba1abde6ee72e10c2b4dfdd18712065", 112998 - "sha256": "0p0pgfwd987ylsm8lhdkammqy6afx2bb582fb3lrjhj27dn572f1" 113049 + "commit": "22f449a30d6d36a42c59c1d31e3538aafff19e90", 113050 + "sha256": "11pj8fh65wz02q9mhyd4yqpis5n3k2wc919l19ygl4kh5h60ailg" 112999 113051 } 113000 113052 }, 113001 113053 { ··· 114498 114550 "repo": "liushihao456/symbols-outline.el", 114499 114551 "unstable": { 114500 114552 "version": [ 114501 - 20231110, 114502 - 633 114553 + 20231111, 114554 + 809 114503 114555 ], 114504 - "commit": "970961c63c5949599f684d7b663608e4fe5de635", 114505 - "sha256": "02p98bwwwxd7qsxb967y5glgggwh27vh7sc606zy1hyhsx8nkigi" 114556 + "commit": "48cc227507c3d079a2ceaf6939406ab158b534eb", 114557 + "sha256": "06m2dgfm61iprikv2j0nz63x84l15mzrs0qxn0j3p6flr7aq21n8" 114506 114558 } 114507 114559 }, 114508 114560 { ··· 115569 115621 "repo": "zevlg/telega.el", 115570 115622 "unstable": { 115571 115623 "version": [ 115572 - 20231108, 115573 - 717 115624 + 20231116, 115625 + 1 115574 115626 ], 115575 115627 "deps": [ 115576 115628 "rainbow-identifiers", 115577 115629 "visual-fill-column" 115578 115630 ], 115579 - "commit": "3e7bc49ccd579b2e68d00620424b9c10e38f56e5", 115580 - "sha256": "1bq1if84piww0mb9ciji7l2n2ac57c01kb6vldc96imhpri2fnny" 115631 + "commit": "08441b4daedbb2688edb2dd3cac0aa71cca675f7", 115632 + "sha256": "1fish0g8dvd6m0lgzy2k92g5dk52swynyyqhv6pyj2wjmwb7cx6f" 115581 115633 }, 115582 115634 "stable": { 115583 115635 "version": [ ··· 116871 116923 "repo": "facebook/fbthrift", 116872 116924 "unstable": { 116873 116925 "version": [ 116874 - 20231106, 116875 - 1400 116926 + 20231110, 116927 + 2354 116876 116928 ], 116877 - "commit": "19890bdbf8ace9df6364162f1d7284b8ecb9df4e", 116878 - "sha256": "177n2kxyk8dzrf0bsf28p7crjbmawbvrvq3f8jc9rz8yn8cc9mfp" 116929 + "commit": "ebc7d0f77dd49abe280000409954f7672eedd36d", 116930 + "sha256": "1a3a12z9dvqqmjcd9bc6y5xgwj0s8vn3mpk528381jg86lf4wrv2" 116879 116931 }, 116880 116932 "stable": { 116881 116933 "version": [ 116882 116934 2023, 116883 116935 11, 116884 - 6, 116936 + 13, 116885 116937 0 116886 116938 ], 116887 - "commit": "19890bdbf8ace9df6364162f1d7284b8ecb9df4e", 116888 - "sha256": "177n2kxyk8dzrf0bsf28p7crjbmawbvrvq3f8jc9rz8yn8cc9mfp" 116939 + "commit": "ebc7d0f77dd49abe280000409954f7672eedd36d", 116940 + "sha256": "1a3a12z9dvqqmjcd9bc6y5xgwj0s8vn3mpk528381jg86lf4wrv2" 116889 116941 } 116890 116942 }, 116891 116943 { ··· 117532 117584 "repo": "vifon/tmsu.el", 117533 117585 "unstable": { 117534 117586 "version": [ 117535 - 20230807, 117536 - 2218 117587 + 20231114, 117588 + 1615 117537 117589 ], 117538 - "commit": "8207b4140fd1b3eff2ec4b9818e67148139cb72f", 117539 - "sha256": "02ipyb19s961k05kmbika302rfipzcgpvm0g1q3pxn7arxs9s3kl" 117590 + "commit": "f809e49e8a53fdfd05dd5c345b52588014668de9", 117591 + "sha256": "19f47gd1l9wdqxyrmxa7jwffh59s3dz922b4aybh73q9x5db7lbf" 117540 117592 } 117541 117593 }, 117542 117594 { ··· 118247 118299 "repo": "magit/transient", 118248 118300 "unstable": { 118249 118301 "version": [ 118250 - 20231103, 118251 - 2312 118302 + 20231112, 118303 + 923 118252 118304 ], 118253 118305 "deps": [ 118254 118306 "compat", 118255 118307 "seq" 118256 118308 ], 118257 - "commit": "b4a29636365d12a8079c3908ff8ffce5f84b85d3", 118258 - "sha256": "1ckdjqlp063gprmy74b0ghl9zhwblkahifbqailww1wcbv40fmsz" 118309 + "commit": "3cd1de1695084df089cc90cff89b32dfd6ca5a0a", 118310 + "sha256": "0j7cww8ip51nqn3qyw027ki7bcg4m7lmh6xxv8ahxsh6mb0iqcdv" 118259 118311 }, 118260 118312 "stable": { 118261 118313 "version": [ ··· 118722 118774 "repo": "emacs-tree-sitter/tree-sitter-langs", 118723 118775 "unstable": { 118724 118776 "version": [ 118725 - 20231105, 118726 - 656 118777 + 20231115, 118778 + 1119 118727 118779 ], 118728 118780 "deps": [ 118729 118781 "tree-sitter" 118730 118782 ], 118731 - "commit": "32c664eadb3c23f2327dc78fe4bec97578ad9ed6", 118732 - "sha256": "0j1fjfqkqb0xw1k87zj80zgb0qwm5m7v2hrpj2f8azpzdbcdcbhq" 118783 + "commit": "3a3ad0527d5f8c7768678878eb5cfe399bedf703", 118784 + "sha256": "0hbkb2b5i3dgax7jsjds4h6zyyzxyk5r5hcgpzlna61vqjwvvd8l" 118733 118785 }, 118734 118786 "stable": { 118735 118787 "version": [ 118736 118788 0, 118737 118789 12, 118738 - 77 118790 + 79 118739 118791 ], 118740 118792 "deps": [ 118741 118793 "tree-sitter" 118742 118794 ], 118743 - "commit": "32c664eadb3c23f2327dc78fe4bec97578ad9ed6", 118744 - "sha256": "0j1fjfqkqb0xw1k87zj80zgb0qwm5m7v2hrpj2f8azpzdbcdcbhq" 118795 + "commit": "3a3ad0527d5f8c7768678878eb5cfe399bedf703", 118796 + "sha256": "0hbkb2b5i3dgax7jsjds4h6zyyzxyk5r5hcgpzlna61vqjwvvd8l" 118745 118797 } 118746 118798 }, 118747 118799 { ··· 119156 119208 "repo": "renzmann/treesit-auto", 119157 119209 "unstable": { 119158 119210 "version": [ 119159 - 20231110, 119160 - 50 119211 + 20231111, 119212 + 250 119161 119213 ], 119162 - "commit": "090a74deeff29530dbc0837ec3151dac8aa497e7", 119163 - "sha256": "0gswbpdnbyjp9jb6mgxsws11dp7nxi02w3f4bqc6d2z4zc7fd16d" 119214 + "commit": "e3beb757ce42de47b063023d08ebdf49613b56bd", 119215 + "sha256": "1r7bag4iyvsi8lqnwyacsk1fwclwkazwr9yz1a0kjcw7fqj9ysmd" 119164 119216 }, 119165 119217 "stable": { 119166 119218 "version": [ 119167 119219 0, 119168 119220 6, 119169 - 6 119221 + 9 119170 119222 ], 119171 - "commit": "f0cf4cf93f2877a07c61fb4d10d3fe51be4da3a8", 119172 - "sha256": "08kgx6a23a7g941bl6zxmkclwbiqsspx3z2vlpnzjwpqda1b3nxc" 119223 + "commit": "e3beb757ce42de47b063023d08ebdf49613b56bd", 119224 + "sha256": "1r7bag4iyvsi8lqnwyacsk1fwclwkazwr9yz1a0kjcw7fqj9ysmd" 119173 119225 } 119174 119226 }, 119175 119227 { ··· 121095 121147 "repo": "ursalang/ursa-ts-mode", 121096 121148 "unstable": { 121097 121149 "version": [ 121098 - 20231019, 121099 - 2145 121150 + 20231113, 121151 + 2331 121100 121152 ], 121101 - "commit": "e5cb898e831976d9ac0e5b73e676a7976a77e693", 121102 - "sha256": "1m6c446irknfd1n01wcm1r6zq3hqk8rgna5lykd0rysjabg5xqzc" 121153 + "commit": "b4afa0c2f2a06fca4fcba8772989e4ca09bab7b9", 121154 + "sha256": "1x9vlwwbrdghp02bpqgjni77wsnhcm0w8c0ph9v87xr21mpkwclk" 121103 121155 }, 121104 121156 "stable": { 121105 121157 "version": [ 121106 121158 1, 121107 121159 3, 121108 - 3 121160 + 4 121109 121161 ], 121110 - "commit": "e5cb898e831976d9ac0e5b73e676a7976a77e693", 121111 - "sha256": "1m6c446irknfd1n01wcm1r6zq3hqk8rgna5lykd0rysjabg5xqzc" 121162 + "commit": "b4afa0c2f2a06fca4fcba8772989e4ca09bab7b9", 121163 + "sha256": "1x9vlwwbrdghp02bpqgjni77wsnhcm0w8c0ph9v87xr21mpkwclk" 121112 121164 } 121113 121165 }, 121114 121166 { ··· 122174 122226 "repo": "federicotdn/verb", 122175 122227 "unstable": { 122176 122228 "version": [ 122177 - 20230825, 122178 - 2151 122229 + 20231114, 122230 + 2309 122179 122231 ], 122180 - "commit": "e1e551f6340d58e7782f2c1df7b397229a1c4fe3", 122181 - "sha256": "0d22h72mnngi55v1ksa22gwxbyw8flwi6x8wx1c5hfvl59ww8nsl" 122232 + "commit": "1edcf0c3758c70acb9393fda7dfbc5957bb0fbeb", 122233 + "sha256": "1wjrfzmalkgk9778kc4maz7khq1dli0x27ifyhgi8zvgy899pykc" 122182 122234 }, 122183 122235 "stable": { 122184 122236 "version": [ ··· 122388 122440 "repo": "minad/vertico", 122389 122441 "unstable": { 122390 122442 "version": [ 122391 - 20231110, 122392 - 927 122443 + 20231112, 122444 + 816 122393 122445 ], 122394 122446 "deps": [ 122395 122447 "compat" 122396 122448 ], 122397 - "commit": "0492a686375cec2fab961ecd09f0eecf233810a7", 122398 - "sha256": "0fxr95780afcqw9fcc1r4yb3d5d02imqjv762iyqv7iszm61hacs" 122449 + "commit": "49a1eb5f3653a3155bff6ff631b336989de61b18", 122450 + "sha256": "0fick90jrpgpxsim3n953vbffj572jgxk0cnqlkan5v6pp2px5y6" 122399 122451 }, 122400 122452 "stable": { 122401 122453 "version": [ ··· 123353 123405 "repo": "d12frosted/vulpea", 123354 123406 "unstable": { 123355 123407 "version": [ 123356 - 20231031, 123357 - 802 123408 + 20231113, 123409 + 717 123358 123410 ], 123359 123411 "deps": [ 123360 123412 "dash", ··· 123362 123414 "org-roam", 123363 123415 "s" 123364 123416 ], 123365 - "commit": "f4f220896aaaeee41b2341b74c1b9a554cf9c015", 123366 - "sha256": "03yhrrwnm5wgwy2k72cj9bgsmsbm0ylrlnr2dh5rzaaiwxq1kxvn" 123417 + "commit": "e1ea8480daf3e480effdd7ba3799126295a4a59a", 123418 + "sha256": "1xv394dx122np58p281nqgrfnp6zjwqbvmqnpjsn6vxl59rqq1c6" 123367 123419 }, 123368 123420 "stable": { 123369 123421 "version": [ ··· 125041 125093 "repo": "habamax/wildcharm-theme", 125042 125094 "unstable": { 125043 125095 "version": [ 125044 - 20231103, 125045 - 700 125096 + 20231114, 125097 + 2224 125046 125098 ], 125047 - "commit": "ab0ed9cc5b4a285cddef52b193c26a979e1dcd08", 125048 - "sha256": "152hilpbjmbf8yvyr9w4m4j2q0zczzsw4mc9vkwixk8m6a0x4i9q" 125099 + "commit": "7ccee2953001b76f251a087e941f227c1f63bfec", 125100 + "sha256": "1gb3sjh25xh8d938xlprajcylxdycxfijwnnizhb1c80lr5lnprw" 125049 125101 }, 125050 125102 "stable": { 125051 125103 "version": [ ··· 125064 125116 "repo": "habamax/wildcharm-theme", 125065 125117 "unstable": { 125066 125118 "version": [ 125067 - 20231103, 125068 - 700 125119 + 20231114, 125120 + 2224 125069 125121 ], 125070 - "commit": "ab0ed9cc5b4a285cddef52b193c26a979e1dcd08", 125071 - "sha256": "152hilpbjmbf8yvyr9w4m4j2q0zczzsw4mc9vkwixk8m6a0x4i9q" 125122 + "commit": "7ccee2953001b76f251a087e941f227c1f63bfec", 125123 + "sha256": "1gb3sjh25xh8d938xlprajcylxdycxfijwnnizhb1c80lr5lnprw" 125072 125124 }, 125073 125125 "stable": { 125074 125126 "version": [
+2 -3
pkgs/applications/editors/quartus-prime/default.nix
··· 28 28 xorg.libICE 29 29 xorg.libSM 30 30 zlib 31 + libudev0-shim 31 32 # qsys requirements 32 33 xorg.libXtst 33 34 xorg.libXi ··· 53 54 xorg.libX11 54 55 xorg.libXext 55 56 xorg.libXrender 56 - libudev0-shim 57 57 libxcrypt-legacy 58 58 ]; 59 59 ··· 95 95 # LD_PRELOAD fixes issues in the licensing system that cause memory corruption and crashes when 96 96 # starting most operations in many containerized environments, including WSL2, Docker, and LXC 97 97 # (a similiar fix involving LD_PRELOADing tcmalloc did not solve the issue in my situation) 98 - # we use the name so that quartus can load the 64 bit verson and modelsim can load the 32 bit version 99 98 # https://community.intel.com/t5/Intel-FPGA-Software-Installation/Running-Quartus-Prime-Standard-on-WSL-crashes-in-libudev-so/m-p/1189032 100 99 # 101 100 # But, as can be seen in the above resource, LD_PRELOADing libudev breaks ··· 103 102 # `(vlog-2163) Macro `<protected> is undefined.`), so only use LD_PRELOAD 104 103 # for non-ModelSim wrappers. 105 104 if [ "$NIXPKGS_IS_MODELSIM_WRAPPER" != 1 ]; then 106 - export LD_PRELOAD=''${LD_PRELOAD:+$LD_PRELOAD:}libudev.so.0 105 + export LD_PRELOAD=''${LD_PRELOAD:+$LD_PRELOAD:}/usr/lib/libudev.so.0 107 106 fi 108 107 ''; 109 108
+21 -28
pkgs/applications/editors/vscode/extensions/default.nix
··· 20 20 , millet 21 21 , shfmt 22 22 , typst-lsp 23 + , typst-preview 23 24 , autoPatchelfHook 24 25 , zlib 25 26 , stdenv ··· 2297 2298 }; 2298 2299 }; 2299 2300 2301 + # Keep pkgs/tools/typesetting/typst-preview/default.nix in sync with this 2302 + # extension 2300 2303 mgt19937.typst-preview = buildVscodeMarketplaceExtension { 2301 - mktplcRef = 2302 - let 2303 - sources = { 2304 - "x86_64-linux" = { 2305 - arch = "linux-x64"; 2306 - sha256 = "sha256-O8sFv23tlhJS6N8LRKkHcTJTupZejCLDRdVVCdDlWbA="; 2307 - }; 2308 - "x86_64-darwin" = { 2309 - arch = "darwin-x64"; 2310 - sha256 = "1npzjch67agswh3nm14dbbsx777daq2rdw1yny10jf3858z2qynr"; 2311 - }; 2312 - "aarch64-linux" = { 2313 - arch = "linux-arm64"; 2314 - sha256 = "1vv1jfgnyjbmshh4w6rf496d9dpdsk3f0049ii4d9vi23igk4xpk"; 2315 - }; 2316 - "aarch64-darwin" = { 2317 - arch = "darwin-arm64"; 2318 - sha256 = "0dfchzqm61kddq20zvp1pcpk1625b9wgj32ymc08piq06pbadk29"; 2319 - }; 2320 - }; 2321 - in 2322 - { 2304 + mktplcRef = { 2323 2305 name = "typst-preview"; 2324 2306 publisher = "mgt19937"; 2325 - version = "0.6.1"; 2326 - } // sources.${stdenv.system}; 2307 + version = "0.9.1"; 2308 + sha256 = "sha256-GHD/i+QOnItGEYG0bl/pVl+a4Dvn7SHhICJ14VfqMjE="; 2309 + }; 2327 2310 2328 - nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ]; 2311 + buildInputs = [ 2312 + typst-preview 2313 + ]; 2329 2314 2330 - buildInputs = lib.optionals stdenv.isLinux [ stdenv.cc.cc.lib ]; 2315 + nativeBuildInputs = [ jq moreutils ]; 2316 + 2317 + postInstall = '' 2318 + cd "$out/$installPrefix" 2319 + jq '.contributes.configuration.properties."typst-preview.executable".default = "${lib.getExe typst-preview}"' package.json | sponge package.json 2320 + ''; 2331 2321 2332 2322 meta = { 2333 2323 description = "Typst Preview is an extension for previewing your Typst files in vscode instantly"; ··· 2745 2735 }; 2746 2736 }; 2747 2737 2748 - 2749 2738 nvarner.typst-lsp = buildVscodeMarketplaceExtension { 2750 2739 mktplcRef = { 2751 2740 name = "typst-lsp"; ··· 2758 2747 2759 2748 nativeBuildInputs = [ jq moreutils ]; 2760 2749 2750 + buildInputs = [ 2751 + typst-lsp 2752 + ]; 2753 + 2761 2754 postInstall = '' 2762 2755 cd "$out/$installPrefix" 2763 - jq '.contributes.configuration.properties."typst-lsp.serverPath".default = "${typst-lsp}/bin/typst-lsp"' package.json | sponge package.json 2756 + jq '.contributes.configuration.properties."typst-lsp.serverPath".default = "${lib.getExe typst-lsp}"' package.json | sponge package.json 2764 2757 ''; 2765 2758 2766 2759 meta = {
+2 -2
pkgs/applications/misc/clipqr/default.nix
··· 17 17 18 18 buildGoModule rec { 19 19 pname = "clipqr"; 20 - version = "1.0.1"; 20 + version = "1.1.0"; 21 21 22 22 src = fetchFromGitLab { 23 23 owner = "imatt-foss"; 24 24 repo = "clipqr"; 25 25 rev = "v${version}"; 26 - hash = "sha256-RIzOkJx1eSik+3N6rSh+3LY2VZmbzNYyV5wpLQHFU2A="; 26 + hash = "sha256-OQ45GV+bViIejGC03lAuvw/y8v1itA+6pFC4H/qL744="; 27 27 }; 28 28 29 29 vendorHash = null;
+5
pkgs/applications/networking/browsers/firefox/common.nix
··· 7 7 , application ? "browser" 8 8 , applicationName ? "Mozilla Firefox" 9 9 , branding ? null 10 + , requireSigning ? true 11 + , allowAddonSideload ? false 10 12 , src 11 13 , unpackPhase ? null 12 14 , extraPatches ? [] ··· 367 369 configureFlagsArray+=("--with-mozilla-api-keyfile=$TMPDIR/mls-api-key") 368 370 '' + lib.optionalString (enableOfficialBranding && !stdenv.is32bit) '' 369 371 export MOZILLA_OFFICIAL=1 372 + '' + lib.optionalString (!requireSigning) '' 373 + export MOZ_REQUIRE_SIGNING= 370 374 '' + lib.optionalString stdenv.hostPlatform.isMusl '' 371 375 # linking firefox hits the vm.max_map_count kernel limit with the default musl allocator 372 376 # TODO: Default vm.max_map_count has been increased, retest without this ··· 408 412 # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 409 413 ++ lib.optional (ltoSupport && (buildStdenv.isAarch32 || buildStdenv.isi686 || buildStdenv.isx86_64)) "--disable-elf-hack" 410 414 ++ lib.optional (!drmSupport) "--disable-eme" 415 + ++ lib.optional (allowAddonSideload) "--allow-addon-sideload" 411 416 ++ [ 412 417 (enableFeature alsaSupport "alsa") 413 418 (enableFeature crashreporterSupport "crashreporter")
+3 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 56 56 }; 57 57 }; 58 58 59 - firefox-devedition = (buildMozillaMach rec { 59 + firefox-devedition = buildMozillaMach rec { 60 60 pname = "firefox-devedition"; 61 61 version = "120.0b9"; 62 62 applicationName = "Mozilla Firefox Developer Edition"; 63 + requireSigning = false; 63 64 branding = "browser/branding/aurora"; 64 65 src = fetchurl { 65 66 url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz"; ··· 84 85 versionSuffix = "b[0-9]*"; 85 86 baseUrl = "https://archive.mozilla.org/pub/devedition/releases/"; 86 87 }; 87 - }).overrideAttrs (prev: { 88 - env.MOZ_REQUIRE_SIGNING = ""; 89 - }); 88 + }; 90 89 91 90 firefox-esr-115 = buildMozillaMach rec { 92 91 pname = "firefox-esr-115";
+3 -6
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 115 115 116 116 nameArray = builtins.map(a: a.name) (lib.optionals usesNixExtensions nixExtensions); 117 117 118 - requiresSigning = browser ? MOZ_REQUIRE_SIGNING 119 - -> toString browser.MOZ_REQUIRE_SIGNING != ""; 120 - 121 118 # Check that every extension has a unqiue .name attribute 122 119 # and an extid attribute 123 120 extensions = if nameArray != (lib.unique nameArray) then 124 121 throw "Firefox addon name needs to be unique" 125 - else if requiresSigning && !lib.hasSuffix "esr" browser.name then 126 - throw "Nix addons are only supported without signature enforcement (eg. Firefox ESR)" 122 + else if browser.requireSigning || !browser.allowAddonSideload then 123 + throw "Nix addons are only supported with signature enforcement disabled and addon sideloading enabled (eg. LibreWolf)" 127 124 else builtins.map (a: 128 125 if ! (builtins.hasAttr "extid" a) then 129 - throw "nixExtensions has an invalid entry. Missing extid attribute. Please use fetchfirefoxaddon" 126 + throw "nixExtensions has an invalid entry. Missing extid attribute. Please use fetchFirefoxAddon" 130 127 else 131 128 a 132 129 ) (lib.optionals usesNixExtensions nixExtensions);
+4 -4
pkgs/applications/networking/browsers/librewolf/default.nix
··· 3 3 let 4 4 librewolf-src = callPackage ./librewolf.nix { }; 5 5 in 6 - ((buildMozillaMach rec { 6 + (buildMozillaMach rec { 7 7 pname = "librewolf"; 8 8 applicationName = "LibreWolf"; 9 9 binaryName = "librewolf"; 10 10 version = librewolf-src.packageVersion; 11 11 src = librewolf-src.firefox; 12 + requireSigning = false; 13 + allowAddonSideload = true; 12 14 inherit (librewolf-src) extraConfigureFlags extraPatches extraPostPatch extraPassthru; 13 15 14 16 meta = { ··· 30 32 }).override { 31 33 crashreporterSupport = false; 32 34 enableOfficialBranding = false; 33 - }).overrideAttrs (prev: { 34 - MOZ_REQUIRE_SIGNING = ""; 35 - }) 35 + }
+3 -3
pkgs/applications/networking/cluster/argocd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argocd"; 5 - version = "2.8.5"; 5 + version = "2.9.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "argoproj"; 9 9 repo = "argo-cd"; 10 10 rev = "v${version}"; 11 - hash = "sha256-oYREaXUm60AkWO/2X6Cu55F+gCaPYpYqRigJW0ocDL0="; 11 + hash = "sha256-5oSuExdkP+69AJD5U74yLD4e+5pvbFOY6T9mcKnJ5Jw="; 12 12 }; 13 13 14 14 proxyVendor = true; # darwin/linux hash mismatch 15 - vendorHash = "sha256-KzH4GmOeurcEMIDN3B8QSMZY1Fk+tNqy0SYzCXiRVlo="; 15 + vendorHash = "sha256-/MmcWusqgEe8KEJcEBOqOkv1lJb06R3TKYFk4wvdWHk="; 16 16 17 17 # Set target as ./cmd per cli-local 18 18 # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
+3 -3
pkgs/applications/networking/cluster/terragrunt/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "terragrunt"; 8 - version = "0.53.2"; 8 + version = "0.53.4"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "gruntwork-io"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-nolZ660rU7WisQdufswrH5vqAedKlA3Y0AQMul/+sTo="; 14 + hash = "sha256-UPbiqo0HvBEIAimugNa7WwqwPsLk8C2gS0KqfgFMGQU="; 15 15 }; 16 16 17 - vendorHash = "sha256-1+ebqMqtil2/KrFjRIfCx60aWu8ByIFV1my8RiUrSNo="; 17 + vendorHash = "sha256-h1rDXxvPhQfGUpxOmnksy3l8kMq93nxOQ9adJFyZnOY="; 18 18 19 19 doCheck = false; 20 20
+3 -1
pkgs/applications/networking/p2p/transmission/4.nix
··· 35 35 , enableCli ? true 36 36 , installLib ? false 37 37 , apparmorRulesFromClosure 38 + , extraAppArmorPaths ? [] 38 39 }: 39 40 40 41 stdenv.mkDerivation (finalAttrs: { ··· 134 135 r @{PROC}/@{pid}/mounts, 135 136 rwk /tmp/tr_session_id_*, 136 137 137 - r $out/share/transmission/web/**, 138 + r $out/share/transmission/public_html/**, 139 + ${lib.strings.concatMapStrings (x: "r ${x},\n") extraAppArmorPaths} 138 140 139 141 include <local/bin.transmission-daemon> 140 142 }
+53
pkgs/applications/radio/qlog/default.nix
··· 1 + { fetchFromGitHub 2 + , qtbase 3 + , stdenv 4 + , lib 5 + , wrapQtAppsHook 6 + , qmake 7 + , qtcharts 8 + , qtwebengine 9 + , qtserialport 10 + , qtwebchannel 11 + , hamlib 12 + , qtkeychain 13 + , pkg-config 14 + }: 15 + 16 + stdenv.mkDerivation rec { 17 + pname = "qlog"; 18 + version = "0.29.2"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "foldynl"; 22 + repo = "QLog"; 23 + rev = "v${version}"; 24 + hash = "sha256-g7WgFQPMOaD+3YllZqpykslmPYT/jNVK7/1xaPdbti4="; 25 + fetchSubmodules = true; 26 + }; 27 + 28 + env.NIX_LDFLAGS = "-lhamlib"; 29 + 30 + buildInputs = [ 31 + qtbase 32 + qtcharts 33 + qtwebengine 34 + qtserialport 35 + qtwebchannel 36 + hamlib 37 + qtkeychain 38 + ]; 39 + 40 + nativeBuildInputs = [ 41 + wrapQtAppsHook 42 + qmake 43 + pkg-config 44 + ]; 45 + 46 + meta = with lib; { 47 + description = "Amateur radio logbook software"; 48 + license = with licenses; [ gpl3Only ]; 49 + homepage = "https://github.com/foldynl/QLog"; 50 + maintainers = with maintainers; [ mkg20001 ]; 51 + platforms = with platforms; unix; 52 + }; 53 + }
+3 -2
pkgs/applications/version-management/fossil/default.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "fossil"; 20 - version = "2.22"; 20 + version = "2.23"; 21 21 22 22 src = fetchurl { 23 23 url = "https://www.fossil-scm.org/home/tarball/version-${finalAttrs.version}/fossil-${finalAttrs.version}.tar.gz"; 24 - hash = "sha256-gdgj/29dF1s4TfqE7roNBS2nOjfNZs1yt4bnFnEhDWs="; 24 + hash = "sha256-dfgI6BNRAYqXFnRtnvGh/huxkEcz6LQYZDiB04GYhZM="; 25 25 }; 26 26 27 27 # required for build time tool `./tools/translate.c` ··· 66 66 license = licenses.bsd2; 67 67 maintainers = with maintainers; [ maggesi viric ]; 68 68 platforms = platforms.all; 69 + mainProgram = "fossil"; 69 70 }; 70 71 })
+11 -9
pkgs/applications/video/subtitleedit/default.nix
··· 1 1 { lib 2 2 , stdenv 3 + , fetchzip 4 + , makeDesktopItem 5 + , nix-update-script 6 + 3 7 , copyDesktopItems 4 - , makeDesktopItem 8 + , icoutils 5 9 , makeWrapper 6 - , fetchzip 10 + 7 11 , ffmpeg 8 12 , gtk2 9 13 , hunspell 10 - , icoutils 11 14 , mono 12 15 , mpv 13 16 , tesseract4 14 - , nix-update-script 15 17 }: 16 18 17 19 stdenv.mkDerivation rec { 18 20 pname = "subtitleedit"; 19 - version = "4.0.1"; 21 + version = "4.0.2"; 20 22 21 23 src = fetchzip { 22 24 url = "https://github.com/SubtitleEdit/subtitleedit/releases/download/${version}/SE${lib.replaceStrings [ "." ] [ "" ] version}.zip"; 23 - hash = "sha256-Z7NVn4F19Hx55YWPNmbpWZ8yQulXd50bcy2A/8pCqJ4="; 25 + hash = "sha256-kcs2h6HeWniJhGDNsy+EBauXbiDIlLCOJkVOCIzLBzM="; 24 26 stripRoot = false; 25 27 }; 26 28 ··· 80 82 81 83 meta = with lib; { 82 84 description = "A subtitle editor"; 83 - homepage = "https://nikse.dk/subtitleedit"; 84 - license = licenses.gpl3Plus; 85 85 longDescription = '' 86 86 With Subtitle Edit you can easily adjust a subtitle if it is out of sync with 87 87 the video in several different ways. You can also use it for making 88 88 new subtitles from scratch (using the time-line /waveform/spectrogram) 89 89 or for translating subtitles. 90 90 ''; 91 - maintainers = with maintainers; [ paveloom ]; 91 + homepage = "https://nikse.dk/subtitleedit"; 92 + license = licenses.gpl3Plus; 92 93 platforms = platforms.all; 93 94 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 95 + maintainers = with maintainers; [ paveloom ]; 94 96 }; 95 97 }
+24 -11
pkgs/build-support/docker/default.nix
··· 914 914 (cd old_out; eval "$extraCommands" ) 915 915 916 916 mkdir $out 917 - ${optionalString enableFakechroot ''proot -r $PWD/old_out ${bind-paths} --pwd=/ ''}fakeroot bash -c ' 918 - source $stdenv/setup 919 - ${optionalString (!enableFakechroot) ''cd old_out''} 920 - eval "$fakeRootCommands" 921 - tar \ 922 - --sort name \ 923 - --numeric-owner --mtime "@$SOURCE_DATE_EPOCH" \ 924 - --hard-dereference \ 925 - -cf $out/layer.tar . 926 - ' 927 - 917 + ${if enableFakechroot then '' 918 + proot -r $PWD/old_out ${bind-paths} --pwd=/ --root-id bash -c ' 919 + source $stdenv/setup 920 + eval "$fakeRootCommands" 921 + tar \ 922 + --sort name \ 923 + --exclude=./proc \ 924 + --exclude=./sys \ 925 + --numeric-owner --mtime "@$SOURCE_DATE_EPOCH" \ 926 + --hard-dereference \ 927 + -cf $out/layer.tar . 928 + ' 929 + '' else '' 930 + fakeroot bash -c ' 931 + source $stdenv/setup 932 + cd old_out 933 + eval "$fakeRootCommands" 934 + tar \ 935 + --sort name \ 936 + --numeric-owner --mtime "@$SOURCE_DATE_EPOCH" \ 937 + --hard-dereference \ 938 + -cf $out/layer.tar . 939 + ' 940 + ''} 928 941 sha256sum $out/layer.tar \ 929 942 | cut -f 1 -d ' ' \ 930 943 > $out/checksum
+47
pkgs/by-name/ad/adafruit-nrfutil/package.nix
··· 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3Packages.buildPythonApplication rec { 7 + pname = "adafruit-nrfutil"; 8 + version = "0.5.3.post17"; 9 + pyproject = true; 10 + 11 + src = fetchFromGitHub { 12 + owner = "adafruit"; 13 + repo = "Adafruit_nRF52_nrfutil"; 14 + rev = "refs/tags/${version}"; 15 + hash = "sha256-mHHKOQE9AGBX8RAyaPOy+JS3fTs98+AFdq9qsVy7go4="; 16 + }; 17 + 18 + nativeBuildInputs = with python3Packages; [ 19 + setuptools 20 + ]; 21 + 22 + propagatedBuildInputs = with python3Packages; [ 23 + click 24 + ecdsa 25 + pyserial 26 + ]; 27 + 28 + nativeCheckInputs = with python3Packages; [ 29 + behave 30 + nose 31 + ]; 32 + 33 + preCheck = '' 34 + mkdir test-reports 35 + ''; 36 + 37 + pythonImportsCheck = [ 38 + "nordicsemi" 39 + ]; 40 + 41 + meta = with lib; { 42 + homepage = "https://github.com/adafruit/Adafruit_nRF52_nrfutil"; 43 + description = "Modified version of Nordic's nrfutil 0.5.x for use with the Adafruit Feather nRF52"; 44 + license = licenses.bsd3; 45 + maintainers = with maintainers; [ stargate01 ]; 46 + }; 47 + }
+8 -4
pkgs/by-name/am/amazon-ssm-agent/package.nix
··· 11 11 , dmidecode 12 12 , bashInteractive 13 13 , nix-update-script 14 + , nixosTests 14 15 , testers 15 16 , amazon-ssm-agent 16 17 , overrideEtc ? true ··· 147 148 ''; 148 149 149 150 passthru = { 151 + tests = { 152 + inherit (nixosTests) amazon-ssm-agent; 153 + version = testers.testVersion { 154 + package = amazon-ssm-agent; 155 + command = "amazon-ssm-agent --version"; 156 + }; 157 + }; 150 158 updateScript = nix-update-script { }; 151 - tests.version = testers.testVersion { 152 - package = amazon-ssm-agent; 153 - command = "amazon-ssm-agent --version"; 154 - }; 155 159 }; 156 160 157 161 __darwinAllowLocalNetworking = true;
+44
pkgs/by-name/cl/cljfmt/package.nix
··· 1 + { lib 2 + , buildGraalvmNativeImage 3 + , fetchurl 4 + , nix-update-script 5 + , testers 6 + , cljfmt 7 + }: 8 + 9 + buildGraalvmNativeImage rec { 10 + pname = "cljfmt"; 11 + version = "0.11.2"; 12 + 13 + src = fetchurl { 14 + url = "https://github.com/weavejester/${pname}/releases/download/${version}/${pname}-${version}-standalone.jar"; 15 + sha256 = "sha256-vEldQ7qV375mHMn3OUdn0FaPd+f/v9g+C+PuzbSTWtk="; 16 + }; 17 + 18 + extraNativeImageBuildArgs = [ 19 + "-H:+ReportExceptionStackTraces" 20 + "-H:Log=registerResource:" 21 + "--initialize-at-build-time" 22 + "--diagnostics-mode" 23 + "--report-unsupported-elements-at-runtime" 24 + "--no-fallback" 25 + ]; 26 + 27 + passthru.updateScript = nix-update-script { }; 28 + 29 + passthru.tests.version = testers.testVersion { 30 + inherit version; 31 + package = cljfmt; 32 + command = "cljfmt --version"; 33 + }; 34 + 35 + meta = with lib; { 36 + mainProgram = "cljfmt"; 37 + description = "A tool for formatting Clojure code"; 38 + homepage = "https://github.com/weavejester/cljfmt"; 39 + sourceProvenance = with sourceTypes; [ binaryBytecode ]; 40 + license = licenses.epl10; 41 + changelog = "https://github.com/weavejester/cljfmt/blob/${version}/CHANGELOG.md"; 42 + maintainers = with maintainers; [ sg-qwt ]; 43 + }; 44 + }
+9 -5
pkgs/by-name/oc/ocsinventory-agent/package.nix
··· 15 15 , pciutils 16 16 , usbutils 17 17 , util-linux 18 + , nixosTests 18 19 , testers 19 20 , ocsinventory-agent 20 21 , nix-update-script ··· 75 76 ''; 76 77 77 78 passthru = { 78 - tests.version = testers.testVersion { 79 - package = ocsinventory-agent; 80 - command = "ocsinventory-agent --version"; 81 - # upstream has not updated version in lib/Ocsinventory/Agent/Config.pm 82 - version = "2.10.0"; 79 + tests = { 80 + inherit (nixosTests) ocsinventory-agent; 81 + version = testers.testVersion { 82 + package = ocsinventory-agent; 83 + command = "ocsinventory-agent --version"; 84 + # upstream has not updated version in lib/Ocsinventory/Agent/Config.pm 85 + version = "2.10.0"; 86 + }; 83 87 }; 84 88 updateScript = nix-update-script { }; 85 89 };
+94
pkgs/by-name/ty/typst-preview/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , mkYarnPackage 5 + , fetchYarnDeps 6 + , pkg-config 7 + , libgit2 8 + , openssl 9 + , zlib 10 + , stdenv 11 + , darwin 12 + }: 13 + 14 + let 15 + # Keep the vscode "mgt19937.typst-preview" extension in sync when updating 16 + # this package at pkgs/applications/editors/vscode/extensions/default.nix 17 + version = "0.9.1"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "Enter-tainer"; 21 + repo = "typst-preview"; 22 + rev = "v${version}"; 23 + hash = "sha256-VmUcnmTe5Ngcje0SSpOY13HUIfdxBMg8KwvZ1wupCqc="; 24 + }; 25 + 26 + frontendSrc = "${src}/addons/frontend"; 27 + 28 + frontend = mkYarnPackage { 29 + inherit version; 30 + pname = "typst-preview-frontend"; 31 + src = frontendSrc; 32 + packageJSON = ./package.json; 33 + 34 + offlineCache = fetchYarnDeps { 35 + yarnLock = "${frontendSrc}/yarn.lock"; 36 + hash = "sha256-7a7/UOfau84nLIAKj6Tn9rTUmeBJ7rYDFAdr55ZDLgA="; 37 + }; 38 + 39 + buildPhase = '' 40 + runHook preBuild 41 + yarn --offline build 42 + runHook postBuild 43 + ''; 44 + 45 + installPhase = '' 46 + runHook preInstall 47 + cp -R deps/typst-preview-frontend/dist $out 48 + runHook postInstall 49 + ''; 50 + 51 + doDist = false; 52 + }; 53 + in 54 + rustPlatform.buildRustPackage { 55 + pname = "typst-preview"; 56 + inherit version src; 57 + 58 + cargoLock = { 59 + lockFile = ./Cargo.lock; 60 + outputHashes = { 61 + "hayagriva-0.4.0" = "sha256-377lXL3+TO8U91OopMYEI0NrWWwzy6+O7B65bLhP+X4="; 62 + "typst-0.9.0" = "sha256-+rnsUSGi3QZlbC4i8racsM4U6+l8oA9YjjUOtQAIWOk="; 63 + "typst-ts-compiler-0.4.0-rc9" = "sha256-NVmbAodDRJBJlGGDRjaEcTHGoCeN4hNjIynIDKqvNbM="; 64 + }; 65 + }; 66 + 67 + nativeBuildInputs = [ 68 + pkg-config 69 + ]; 70 + 71 + buildInputs = [ 72 + libgit2 73 + openssl 74 + zlib 75 + ] ++ lib.optionals stdenv.isDarwin [ 76 + darwin.apple_sdk.frameworks.CoreFoundation 77 + darwin.apple_sdk.frameworks.CoreServices 78 + darwin.apple_sdk.frameworks.Security 79 + darwin.apple_sdk.frameworks.SystemConfiguration 80 + ]; 81 + 82 + prePatch = '' 83 + mkdir -p addons/vscode/out/frontend 84 + cp -R ${frontend}/* addons/vscode/out/frontend/ 85 + ''; 86 + 87 + meta = { 88 + description = "Typst preview extension for VSCode"; 89 + homepage = "https://github.com/Enter-tainer/typst-preview/"; 90 + license = lib.licenses.mit; 91 + maintainers = with lib.maintainers; [ berberman ]; 92 + mainProgram = "typst-preview"; 93 + }; 94 + }
-62
pkgs/development/python-modules/adafruit-nrfutil/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , fetchpatch 5 - , pythonOlder 6 - , pyserial 7 - , click 8 - , ecdsa 9 - , behave 10 - , nose 11 - }: 12 - 13 - buildPythonPackage rec { 14 - pname = "adafruit-nrfutil"; 15 - version = "1"; 16 - format = "setuptools"; 17 - 18 - disabled = pythonOlder "3.7"; 19 - 20 - src = fetchFromGitHub { 21 - owner = "adafruit"; 22 - repo = "Adafruit_nRF52_nrfutil"; 23 - rev = "refs/tags/appveyor-test-release-${version}"; 24 - hash = "sha256-wsspDg8XwEtJwJye6Z3TXaIN1TcfI7gYDah3L/xiiLo="; 25 - }; 26 - 27 - patches = [ 28 - # Pull a patch which fixes the tests, but is not yet released in a new version: 29 - # https://github.com/adafruit/Adafruit_nRF52_nrfutil/pull/38 30 - (fetchpatch { 31 - name = "fix-tests.patch"; 32 - url = "https://github.com/adafruit/Adafruit_nRF52_nrfutil/commit/e5fbcc8ee5958041db38c04139ba686bf7d1b845.patch"; 33 - hash = "sha256-0tbJldGtYcDdUzA3wZRv0lenXVn6dqV016U9nMpQ6/w="; 34 - }) 35 - ]; 36 - 37 - propagatedBuildInputs = [ 38 - pyserial 39 - click 40 - ecdsa 41 - ]; 42 - 43 - nativeCheckInputs = [ 44 - behave 45 - nose 46 - ]; 47 - 48 - preCheck = '' 49 - mkdir test-reports 50 - ''; 51 - 52 - pythonImportsCheck = [ 53 - "nordicsemi" 54 - ]; 55 - 56 - meta = with lib; { 57 - homepage = "https://github.com/adafruit/Adafruit_nRF52_nrfutil"; 58 - description = "Modified version of Nordic's nrfutil 0.5.x for use with the Adafruit Feather nRF52"; 59 - license = licenses.bsd3; 60 - maintainers = with maintainers; [ stargate01 ]; 61 - }; 62 - }
+2 -2
pkgs/development/python-modules/awkward-cpp/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "awkward-cpp"; 14 - version = "25"; 14 + version = "26"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-Fhq6XUt5CYz/l+Lf9WcCnt9rs3byMQIQs7hFexr2tjM="; 21 + hash = "sha256-o3wI+JEmtjfUczRUob8/KLGNn3lH0h3GuhIDfYg7HGY="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+8 -3
pkgs/development/python-modules/nettigo-air-monitor/default.nix
··· 9 9 , pytest-error-for-skips 10 10 , pytestCheckHook 11 11 , pythonOlder 12 + , setuptools 12 13 }: 13 14 14 15 buildPythonPackage rec { 15 16 pname = "nettigo-air-monitor"; 16 17 version = "2.2.1"; 17 - format = "setuptools"; 18 + pyproject = true; 18 19 19 - disabled = pythonOlder "3.8"; 20 + disabled = pythonOlder "3.10"; 20 21 21 22 src = fetchFromGitHub { 22 23 owner = "bieniu"; 23 - repo = pname; 24 + repo = "nettigo-air-monitor"; 24 25 rev = "refs/tags/${version}"; 25 26 hash = "sha256-24O9Yl0+boxDtyPW4tBTsk2iDGGXf8ofkDHu8B+GxhE="; 26 27 }; 28 + 29 + nativeBuildInputs = [ 30 + setuptools 31 + ]; 27 32 28 33 propagatedBuildInputs = [ 29 34 aiohttp
+3 -3
pkgs/development/python-modules/pvextractor/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "pvextractor"; 20 - version = "0.3"; 20 + version = "0.4"; 21 21 22 22 disabled = pythonOlder "3.5"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "radio-astro-tools"; 26 26 repo = pname; 27 - rev = "v${version}"; 28 - sha256 = "sha256-HYus2Gk3hzKq+3lJLOJQ+EE6LeO+DrvqLK3NpqrUYeI="; 27 + rev = "refs/tags/v${version}"; 28 + sha256 = "sha256-TjwoTtoGWU6C6HdFuS+gJj69PUnfchPHs7UjFqwftVQ="; 29 29 }; 30 30 31 31 buildInputs = [ pyqt-builder ];
+3 -3
pkgs/development/python-modules/umap-learn/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "umap-learn"; 19 - version = "0.5.4"; 19 + version = "0.5.5"; 20 20 format = "setuptools"; 21 21 22 22 disabled = pythonOlder "3.7"; ··· 24 24 src = fetchFromGitHub { 25 25 owner = "lmcinnes"; 26 26 repo = "umap"; 27 - rev = version; 28 - hash = "sha256-cvAq9b7xDowLIfIAzV+X08SUEL0QOisr/wBXMYeQ/8A="; 27 + rev = "refs/tags/release-${version}"; 28 + hash = "sha256-bXAQjq7xBYn34tIZF96Sr5jDUii3s4FGkNx65rGKXkY="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/weasel/default.nix
··· 26 26 27 27 buildPythonPackage rec { 28 28 pname = "weasel"; 29 - version = "0.3.3"; 29 + version = "0.3.4"; 30 30 pyproject = true; 31 31 32 32 disabled = pythonOlder "3.6"; ··· 35 35 owner = "explosion"; 36 36 repo = "weasel"; 37 37 rev = "refs/tags/v${version}"; 38 - hash = "sha256-I8Omrez1wfAbCmr9hivqKN2fNgnFQRGm8OP7lb7YClk="; 38 + hash = "sha256-6Ck8R10/YW2Nc6acNk2bzgyqSg+OPqwyJjhUgXP/umw="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+3 -3
pkgs/development/tools/database/dbmate/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "dbmate"; 8 - version = "2.7.0"; 8 + version = "2.8.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "amacneil"; 12 12 repo = "dbmate"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-gT+1ptQUZNobUG2etknCuyV2xxct5F6+P2J6/6yQkTk="; 14 + hash = "sha256-6NeReekizEBRfsiRBshBD5WrGJpDdNpvvC7jslpsQoI="; 15 15 }; 16 16 17 - vendorHash = "sha256-2HY5eqiVRKvP1YrlNtbEj7QvDfoMV6DF+WgQOwo9VuQ="; 17 + vendorHash = "sha256-r3IuE5qdN3B9IZyRjLokaRZ99Ziypbfg4H/uiMzSB+w="; 18 18 19 19 doCheck = false; 20 20
+5
pkgs/development/tools/language-servers/lua-language-server/default.nix
··· 43 43 -e '/cxx_/s,$cc,clang++,' 44 44 ''; 45 45 46 + # Work around https://github.com/NixOS/nixpkgs/issues/166205. 47 + env = lib.optionalAttrs stdenv.cc.isClang { 48 + NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}"; 49 + }; 50 + 46 51 ninjaFlags = [ 47 52 "-fcompile/ninja/${if stdenv.isDarwin then "macos" else "linux"}.ninja" 48 53 ];
+3 -3
pkgs/development/tools/turso-cli/default.nix
··· 8 8 }: 9 9 buildGo121Module rec { 10 10 pname = "turso-cli"; 11 - version = "0.87.2"; 11 + version = "0.87.4"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "tursodatabase"; 15 15 repo = "turso-cli"; 16 16 rev = "v${version}"; 17 - hash = "sha256-EZSVKmOIzwokCKreLnZj4DWEhjjXo3TFhieGVR7w7NM="; 17 + hash = "sha256-e5HuDWMmikTlWC2ezZ5zxxKYFlgz9jrpHtNfIwSiiok="; 18 18 }; 19 19 20 - vendorHash = "sha256-3IV0MgDe71lqLQ6tB2NM2kYokXGWvR+hh4lvxw5QWjA="; 20 + vendorHash = "sha256-EcWhpx93n+FzkXDOHwAxhn13qR4n9jLFeaKoe49x1x4="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
+2 -2
pkgs/servers/jackett/default.nix
··· 9 9 10 10 buildDotnetModule rec { 11 11 pname = "jackett"; 12 - version = "0.21.1096"; 12 + version = "0.21.1234"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = pname; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - hash = "sha512-j9PQa54Gv6kdCHZ9/WPnKYkxD4N0eu0KtMPpATSYVDo0mP9pXdQxSoCrKdmW2gOveuo5Z/wPW4BB4r3gvFxcOg=="; 18 + hash = "sha512-kI5HxBCx9moxnw90tqRLJ/muULEUOqIGcfWlFmgFwuOsOIoLc3arY1HDjRzeBDLYuz8BiG99lXUeAa5eHB3+Wg=="; 19 19 }; 20 20 21 21 projectFile = "src/Jackett.Server/Jackett.Server.csproj";
+1899 -848
pkgs/servers/windmill/Cargo.lock
··· 34 34 checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 35 35 dependencies = [ 36 36 "cfg-if", 37 - "cipher", 37 + "cipher 0.3.0", 38 38 "cpufeatures", 39 39 "opaque-debug", 40 + ] 41 + 42 + [[package]] 43 + name = "aes" 44 + version = "0.8.3" 45 + source = "registry+https://github.com/rust-lang/crates.io-index" 46 + checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 47 + dependencies = [ 48 + "cfg-if", 49 + "cipher 0.4.4", 50 + "cpufeatures", 40 51 ] 41 52 42 53 [[package]] 43 54 name = "ahash" 44 - version = "0.7.6" 55 + version = "0.7.7" 45 56 source = "registry+https://github.com/rust-lang/crates.io-index" 46 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 57 + checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" 47 58 dependencies = [ 48 - "getrandom 0.2.10", 59 + "getrandom 0.2.11", 49 60 "once_cell", 50 61 "version_check", 51 62 ] 52 63 53 64 [[package]] 54 65 name = "ahash" 55 - version = "0.8.3" 66 + version = "0.8.6" 56 67 source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 68 + checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 58 69 dependencies = [ 59 70 "cfg-if", 60 - "getrandom 0.2.10", 71 + "getrandom 0.2.11", 61 72 "once_cell", 62 73 "version_check", 74 + "zerocopy", 63 75 ] 64 76 65 77 [[package]] ··· 162 174 checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 163 175 164 176 [[package]] 177 + name = "archiver-rs" 178 + version = "0.5.1" 179 + source = "git+https://github.com/gz/archiver-rs.git?branch=patch-1#a73cef92c2a5b8f48c2a4a9e889952072e03b4b7" 180 + dependencies = [ 181 + "bzip2", 182 + "flate2", 183 + "tar", 184 + "thiserror", 185 + "xz2", 186 + "zip", 187 + ] 188 + 189 + [[package]] 165 190 name = "argon2" 166 191 version = "0.5.2" 167 192 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 170 195 "base64ct", 171 196 "blake2", 172 197 "cpufeatures", 173 - "password-hash", 198 + "password-hash 0.5.0", 174 199 ] 175 200 176 201 [[package]] ··· 186 211 checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 187 212 188 213 [[package]] 189 - name = "ascii-canvas" 190 - version = "3.0.0" 191 - source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" 193 - dependencies = [ 194 - "term", 195 - ] 196 - 197 - [[package]] 198 214 name = "ast_node" 199 215 version = "0.9.5" 200 216 source = "registry+https://github.com/rust-lang/crates.io-index" 201 217 checksum = "c09c69dffe06d222d072c878c3afe86eee2179806f20503faec97250268b4c24" 202 218 dependencies = [ 203 - "pmutil", 219 + "pmutil 0.6.1", 204 220 "proc-macro2", 205 221 "quote", 206 222 "swc_macros_common", 207 - "syn 2.0.38", 223 + "syn 2.0.39", 208 224 ] 209 225 210 226 [[package]] ··· 214 230 checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 215 231 dependencies = [ 216 232 "concurrent-queue", 217 - "event-listener", 233 + "event-listener 2.5.3", 234 + "futures-core", 235 + ] 236 + 237 + [[package]] 238 + name = "async-channel" 239 + version = "2.1.0" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "d37875bd9915b7d67c2f117ea2c30a0989874d0b2cb694fe25403c85763c0c9e" 242 + dependencies = [ 243 + "concurrent-queue", 244 + "event-listener 3.1.0", 245 + "event-listener-strategy", 218 246 "futures-core", 247 + "pin-project-lite", 219 248 ] 220 249 221 250 [[package]] ··· 231 260 "pin-project-lite", 232 261 "tokio", 233 262 "xz2", 234 - "zstd", 235 - "zstd-safe", 263 + "zstd 0.11.2+zstd.1.5.2", 264 + "zstd-safe 5.0.2+zstd.1.5.2", 236 265 ] 237 266 238 267 [[package]] 239 268 name = "async-compression" 240 - version = "0.4.4" 269 + version = "0.4.5" 241 270 source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2" 271 + checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" 243 272 dependencies = [ 244 273 "brotli", 245 274 "flate2", ··· 255 284 source = "registry+https://github.com/rust-lang/crates.io-index" 256 285 checksum = "4b0c4a4f319e45986f347ee47fef8bf5e81c9abc3f6f58dc2391439f30df65f0" 257 286 dependencies = [ 258 - "async-lock", 287 + "async-lock 2.8.0", 259 288 "async-task", 260 289 "concurrent-queue", 261 290 "fastrand 2.0.1", 262 - "futures-lite", 291 + "futures-lite 1.13.0", 263 292 "slab", 264 293 ] 265 294 ··· 269 298 source = "registry+https://github.com/rust-lang/crates.io-index" 270 299 checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 271 300 dependencies = [ 272 - "async-channel", 301 + "async-channel 1.9.0", 273 302 "async-executor", 274 303 "async-io", 275 - "async-lock", 304 + "async-lock 2.8.0", 276 305 "blocking", 277 - "futures-lite", 306 + "futures-lite 1.13.0", 278 307 "once_cell", 279 308 ] 280 309 ··· 284 313 source = "registry+https://github.com/rust-lang/crates.io-index" 285 314 checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 286 315 dependencies = [ 287 - "async-lock", 316 + "async-lock 2.8.0", 288 317 "autocfg", 289 318 "cfg-if", 290 319 "concurrent-queue", 291 - "futures-lite", 320 + "futures-lite 1.13.0", 292 321 "log", 293 322 "parking", 294 323 "polling", 295 - "rustix 0.37.26", 324 + "rustix 0.37.27", 296 325 "slab", 297 326 "socket2 0.4.10", 298 327 "waker-fn", ··· 304 333 source = "registry+https://github.com/rust-lang/crates.io-index" 305 334 checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 306 335 dependencies = [ 307 - "event-listener", 336 + "event-listener 2.5.3", 337 + ] 338 + 339 + [[package]] 340 + name = "async-lock" 341 + version = "3.1.0" 342 + source = "registry+https://github.com/rust-lang/crates.io-index" 343 + checksum = "deb2ab2aa8a746e221ab826c73f48bc6ba41be6763f0855cb249eb6d154cf1d7" 344 + dependencies = [ 345 + "event-listener 3.1.0", 346 + "event-listener-strategy", 347 + "pin-project-lite", 308 348 ] 309 349 310 350 [[package]] ··· 313 353 source = "registry+https://github.com/rust-lang/crates.io-index" 314 354 checksum = "beec3f8fb8f710b7be84ccd1716e17f38f2868168355cab5f2f168ae988e767e" 315 355 dependencies = [ 316 - "base64 0.21.4", 356 + "base64 0.21.5", 317 357 "bytes", 318 358 "http", 319 359 "rand 0.8.5", ··· 334 374 dependencies = [ 335 375 "proc-macro2", 336 376 "quote", 337 - "syn 2.0.38", 377 + "syn 2.0.39", 338 378 ] 339 379 340 380 [[package]] ··· 343 383 source = "registry+https://github.com/rust-lang/crates.io-index" 344 384 checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 345 385 dependencies = [ 346 - "async-channel", 386 + "async-channel 1.9.0", 347 387 "async-global-executor", 348 388 "async-io", 349 - "async-lock", 389 + "async-lock 2.8.0", 350 390 "crossbeam-utils", 351 391 "futures-channel", 352 392 "futures-core", 353 393 "futures-io", 354 - "futures-lite", 394 + "futures-lite 1.13.0", 355 395 "gloo-timers", 356 396 "kv-log-macro", 357 397 "log", ··· 365 405 366 406 [[package]] 367 407 name = "async-stripe" 368 - version = "0.14.1" 408 + version = "0.25.2" 369 409 source = "registry+https://github.com/rust-lang/crates.io-index" 370 - checksum = "71b85eb331f5c2b6ae4ff00aabd20a8a21de88b9890c58579616bf760570b207" 410 + checksum = "e1b39347f478f57a40cbaf82cbaebb4a350acc757cda30fc7ff88707a11d1d81" 371 411 dependencies = [ 372 412 "chrono", 413 + "futures-util", 373 414 "hex", 374 415 "hmac", 375 416 "http-types", ··· 377 418 "hyper-tls", 378 419 "serde", 379 420 "serde_json", 380 - "serde_qs 0.9.2", 421 + "serde_path_to_error", 422 + "serde_qs 0.10.1", 381 423 "sha2 0.10.8", 382 424 "smart-default", 383 425 "smol_str", ··· 400 442 dependencies = [ 401 443 "proc-macro2", 402 444 "quote", 403 - "syn 2.0.38", 445 + "syn 2.0.39", 404 446 ] 405 447 406 448 [[package]] ··· 419 461 ] 420 462 421 463 [[package]] 464 + name = "asynchronous-codec" 465 + version = "0.6.2" 466 + source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" 468 + dependencies = [ 469 + "bytes", 470 + "futures-sink", 471 + "futures-util", 472 + "memchr", 473 + "pin-project-lite", 474 + ] 475 + 476 + [[package]] 477 + name = "atoi" 478 + version = "1.0.0" 479 + source = "registry+https://github.com/rust-lang/crates.io-index" 480 + checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e" 481 + dependencies = [ 482 + "num-traits", 483 + ] 484 + 485 + [[package]] 422 486 name = "atoi" 423 487 version = "2.0.0" 424 488 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 440 504 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 441 505 442 506 [[package]] 507 + name = "aws-config" 508 + version = "0.57.2" 509 + source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "f2bf00cb9416daab4ce4927c54ebe63c08b9caf4d7b9314b6d7a4a2c5a1afb09" 511 + dependencies = [ 512 + "aws-credential-types", 513 + "aws-http", 514 + "aws-runtime", 515 + "aws-sdk-sso", 516 + "aws-sdk-ssooidc", 517 + "aws-sdk-sts", 518 + "aws-smithy-async", 519 + "aws-smithy-http", 520 + "aws-smithy-json", 521 + "aws-smithy-runtime", 522 + "aws-smithy-runtime-api", 523 + "aws-smithy-types", 524 + "aws-types", 525 + "bytes", 526 + "fastrand 2.0.1", 527 + "hex", 528 + "http", 529 + "hyper", 530 + "ring 0.17.5", 531 + "time", 532 + "tokio", 533 + "tracing", 534 + "zeroize", 535 + ] 536 + 537 + [[package]] 538 + name = "aws-credential-types" 539 + version = "0.57.2" 540 + source = "registry+https://github.com/rust-lang/crates.io-index" 541 + checksum = "cb9073c88dbf12f68ce7d0e149f989627a1d1ae3d2b680459f04ccc29d1cbd0f" 542 + dependencies = [ 543 + "aws-smithy-async", 544 + "aws-smithy-runtime-api", 545 + "aws-smithy-types", 546 + "zeroize", 547 + ] 548 + 549 + [[package]] 550 + name = "aws-http" 551 + version = "0.57.2" 552 + source = "registry+https://github.com/rust-lang/crates.io-index" 553 + checksum = "24067106d09620cf02d088166cdaedeaca7146d4d499c41b37accecbea11b246" 554 + dependencies = [ 555 + "aws-smithy-http", 556 + "aws-smithy-runtime-api", 557 + "aws-smithy-types", 558 + "aws-types", 559 + "bytes", 560 + "http", 561 + "http-body", 562 + "pin-project-lite", 563 + "tracing", 564 + ] 565 + 566 + [[package]] 567 + name = "aws-runtime" 568 + version = "0.57.2" 569 + source = "registry+https://github.com/rust-lang/crates.io-index" 570 + checksum = "fc6ee0152c06d073602236a4e94a8c52a327d310c1ecd596570ce795af8777ff" 571 + dependencies = [ 572 + "aws-credential-types", 573 + "aws-http", 574 + "aws-sigv4", 575 + "aws-smithy-async", 576 + "aws-smithy-eventstream", 577 + "aws-smithy-http", 578 + "aws-smithy-runtime-api", 579 + "aws-smithy-types", 580 + "aws-types", 581 + "fastrand 2.0.1", 582 + "http", 583 + "percent-encoding", 584 + "tracing", 585 + "uuid 1.5.0", 586 + ] 587 + 588 + [[package]] 589 + name = "aws-sdk-s3" 590 + version = "0.36.0" 591 + source = "registry+https://github.com/rust-lang/crates.io-index" 592 + checksum = "cf188e8af89adb0b41ae2f21b6c666c618959e40242e79aaa43fafa9c0c90a8a" 593 + dependencies = [ 594 + "aws-credential-types", 595 + "aws-http", 596 + "aws-runtime", 597 + "aws-sigv4", 598 + "aws-smithy-async", 599 + "aws-smithy-checksums", 600 + "aws-smithy-eventstream", 601 + "aws-smithy-http", 602 + "aws-smithy-json", 603 + "aws-smithy-runtime", 604 + "aws-smithy-runtime-api", 605 + "aws-smithy-types", 606 + "aws-smithy-xml", 607 + "aws-types", 608 + "bytes", 609 + "http", 610 + "http-body", 611 + "once_cell", 612 + "percent-encoding", 613 + "regex", 614 + "tracing", 615 + "url", 616 + ] 617 + 618 + [[package]] 619 + name = "aws-sdk-sso" 620 + version = "0.36.0" 621 + source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "2eb8158015232b4596ccef74a205600398e152d704b40b7ec9f486092474d7fa" 623 + dependencies = [ 624 + "aws-credential-types", 625 + "aws-http", 626 + "aws-runtime", 627 + "aws-smithy-async", 628 + "aws-smithy-http", 629 + "aws-smithy-json", 630 + "aws-smithy-runtime", 631 + "aws-smithy-runtime-api", 632 + "aws-smithy-types", 633 + "aws-types", 634 + "bytes", 635 + "http", 636 + "regex", 637 + "tracing", 638 + ] 639 + 640 + [[package]] 641 + name = "aws-sdk-ssooidc" 642 + version = "0.36.0" 643 + source = "registry+https://github.com/rust-lang/crates.io-index" 644 + checksum = "36a1493e1c57f173e53621935bfb5b6217376168dbdb4cd459aebcf645924a48" 645 + dependencies = [ 646 + "aws-credential-types", 647 + "aws-http", 648 + "aws-runtime", 649 + "aws-smithy-async", 650 + "aws-smithy-http", 651 + "aws-smithy-json", 652 + "aws-smithy-runtime", 653 + "aws-smithy-runtime-api", 654 + "aws-smithy-types", 655 + "aws-types", 656 + "bytes", 657 + "http", 658 + "regex", 659 + "tracing", 660 + ] 661 + 662 + [[package]] 663 + name = "aws-sdk-sts" 664 + version = "0.36.0" 665 + source = "registry+https://github.com/rust-lang/crates.io-index" 666 + checksum = "e032b77f5cd1dd3669d777a38ac08cbf8ec68e29460d4ef5d3e50cffa74ec75a" 667 + dependencies = [ 668 + "aws-credential-types", 669 + "aws-http", 670 + "aws-runtime", 671 + "aws-smithy-async", 672 + "aws-smithy-http", 673 + "aws-smithy-json", 674 + "aws-smithy-query", 675 + "aws-smithy-runtime", 676 + "aws-smithy-runtime-api", 677 + "aws-smithy-types", 678 + "aws-smithy-xml", 679 + "aws-types", 680 + "http", 681 + "regex", 682 + "tracing", 683 + ] 684 + 685 + [[package]] 686 + name = "aws-sigv4" 687 + version = "0.57.2" 688 + source = "registry+https://github.com/rust-lang/crates.io-index" 689 + checksum = "64f81a6abc4daab06b53cabf27c54189928893283093e37164ca53aa47488a5b" 690 + dependencies = [ 691 + "aws-credential-types", 692 + "aws-smithy-eventstream", 693 + "aws-smithy-http", 694 + "aws-smithy-runtime-api", 695 + "bytes", 696 + "form_urlencoded", 697 + "hex", 698 + "hmac", 699 + "http", 700 + "num-bigint", 701 + "once_cell", 702 + "p256", 703 + "percent-encoding", 704 + "regex", 705 + "ring 0.17.5", 706 + "sha2 0.10.8", 707 + "time", 708 + "tracing", 709 + "zeroize", 710 + ] 711 + 712 + [[package]] 713 + name = "aws-smithy-async" 714 + version = "0.57.2" 715 + source = "registry+https://github.com/rust-lang/crates.io-index" 716 + checksum = "dbe53fccd3b10414b9cae63767a15a2789b34e6c6727b6e32b33e8c7998a3e80" 717 + dependencies = [ 718 + "futures-util", 719 + "pin-project-lite", 720 + "tokio", 721 + ] 722 + 723 + [[package]] 724 + name = "aws-smithy-checksums" 725 + version = "0.57.2" 726 + source = "registry+https://github.com/rust-lang/crates.io-index" 727 + checksum = "9fb5701fbfb40600cc0fa547f318552dfd4e632b2099bd75d95fb0faae70675d" 728 + dependencies = [ 729 + "aws-smithy-http", 730 + "aws-smithy-types", 731 + "bytes", 732 + "crc32c", 733 + "crc32fast", 734 + "hex", 735 + "http", 736 + "http-body", 737 + "md-5 0.10.6", 738 + "pin-project-lite", 739 + "sha1", 740 + "sha2 0.10.8", 741 + "tracing", 742 + ] 743 + 744 + [[package]] 745 + name = "aws-smithy-eventstream" 746 + version = "0.57.2" 747 + source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "6b33fa99f928a5815b94ee07e1377901bcf51aa749034a2c802dc38f9dcfacf5" 749 + dependencies = [ 750 + "aws-smithy-types", 751 + "bytes", 752 + "crc32fast", 753 + ] 754 + 755 + [[package]] 756 + name = "aws-smithy-http" 757 + version = "0.57.2" 758 + source = "registry+https://github.com/rust-lang/crates.io-index" 759 + checksum = "f7972373213d1d6e619c0edc9dda2d6634154e4ed75c5e0b2bf065cd5ec9f0d1" 760 + dependencies = [ 761 + "aws-smithy-eventstream", 762 + "aws-smithy-runtime-api", 763 + "aws-smithy-types", 764 + "bytes", 765 + "bytes-utils", 766 + "futures-core", 767 + "http", 768 + "http-body", 769 + "once_cell", 770 + "percent-encoding", 771 + "pin-project-lite", 772 + "pin-utils", 773 + "tracing", 774 + ] 775 + 776 + [[package]] 777 + name = "aws-smithy-json" 778 + version = "0.57.2" 779 + source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "b6d64d5af16dd585de9ff6c606423c1aaad47c6baa38de41c2beb32ef21c6645" 781 + dependencies = [ 782 + "aws-smithy-types", 783 + ] 784 + 785 + [[package]] 786 + name = "aws-smithy-query" 787 + version = "0.57.2" 788 + source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "7527bf5335154ba1b285479c50b630e44e93d1b4a759eaceb8d0bf9fbc82caa5" 790 + dependencies = [ 791 + "aws-smithy-types", 792 + "urlencoding", 793 + ] 794 + 795 + [[package]] 796 + name = "aws-smithy-runtime" 797 + version = "0.57.2" 798 + source = "registry+https://github.com/rust-lang/crates.io-index" 799 + checksum = "839b363adf3b2bdab2742a1f540fec23039ea8bc9ec0f9f61df48470cfe5527b" 800 + dependencies = [ 801 + "aws-smithy-async", 802 + "aws-smithy-http", 803 + "aws-smithy-runtime-api", 804 + "aws-smithy-types", 805 + "bytes", 806 + "fastrand 2.0.1", 807 + "http", 808 + "http-body", 809 + "hyper", 810 + "hyper-rustls", 811 + "once_cell", 812 + "pin-project-lite", 813 + "pin-utils", 814 + "rustls 0.21.9", 815 + "tokio", 816 + "tracing", 817 + ] 818 + 819 + [[package]] 820 + name = "aws-smithy-runtime-api" 821 + version = "0.57.2" 822 + source = "registry+https://github.com/rust-lang/crates.io-index" 823 + checksum = "f24ecc446e62c3924539e7c18dec8038dba4fdf8718d5c2de62f9d2fecca8ba9" 824 + dependencies = [ 825 + "aws-smithy-async", 826 + "aws-smithy-types", 827 + "bytes", 828 + "http", 829 + "pin-project-lite", 830 + "tokio", 831 + "tracing", 832 + "zeroize", 833 + ] 834 + 835 + [[package]] 836 + name = "aws-smithy-types" 837 + version = "0.57.2" 838 + source = "registry+https://github.com/rust-lang/crates.io-index" 839 + checksum = "051de910296522a21178a2ea402ea59027eef4b63f1cef04a0be2bb5e25dea03" 840 + dependencies = [ 841 + "base64-simd", 842 + "bytes", 843 + "bytes-utils", 844 + "futures-core", 845 + "http", 846 + "http-body", 847 + "itoa", 848 + "num-integer", 849 + "pin-project-lite", 850 + "pin-utils", 851 + "ryu", 852 + "serde", 853 + "time", 854 + "tokio", 855 + "tokio-util", 856 + ] 857 + 858 + [[package]] 859 + name = "aws-smithy-xml" 860 + version = "0.57.2" 861 + source = "registry+https://github.com/rust-lang/crates.io-index" 862 + checksum = "cb1e3ac22c652662096c8e37a6f9af80c6f3520cab5610b2fe76c725bce18eac" 863 + dependencies = [ 864 + "xmlparser", 865 + ] 866 + 867 + [[package]] 868 + name = "aws-types" 869 + version = "0.57.2" 870 + source = "registry+https://github.com/rust-lang/crates.io-index" 871 + checksum = "048bbf1c24cdf4eb1efcdc243388a93a90ebf63979e25fc1c7b8cbd9cb6beb38" 872 + dependencies = [ 873 + "aws-credential-types", 874 + "aws-smithy-async", 875 + "aws-smithy-runtime-api", 876 + "aws-smithy-types", 877 + "http", 878 + "rustc_version 0.4.0", 879 + "tracing", 880 + ] 881 + 882 + [[package]] 443 883 name = "axum" 444 884 version = "0.6.20" 445 885 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 505 945 ] 506 946 507 947 [[package]] 948 + name = "base16ct" 949 + version = "0.1.1" 950 + source = "registry+https://github.com/rust-lang/crates.io-index" 951 + checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 952 + 953 + [[package]] 508 954 name = "base64" 509 955 version = "0.13.1" 510 956 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 518 964 519 965 [[package]] 520 966 name = "base64" 521 - version = "0.21.4" 967 + version = "0.21.5" 522 968 source = "registry+https://github.com/rust-lang/crates.io-index" 523 - checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 969 + checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 524 970 525 971 [[package]] 526 972 name = "base64-simd" ··· 547 993 "async-trait", 548 994 "futures-channel", 549 995 "futures-util", 550 - "parking_lot", 996 + "parking_lot 0.12.1", 551 997 "tokio", 552 998 ] 553 999 ··· 612 1058 "regex", 613 1059 "rustc-hash", 614 1060 "shlex", 615 - "syn 2.0.38", 1061 + "syn 2.0.39", 616 1062 "which", 617 1063 ] 618 1064 619 1065 [[package]] 620 1066 name = "bindgen" 621 - version = "0.68.1" 1067 + version = "0.69.1" 622 1068 source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" 1069 + checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2" 624 1070 dependencies = [ 625 1071 "bitflags 2.4.1", 626 1072 "cexpr", ··· 633 1079 "regex", 634 1080 "rustc-hash", 635 1081 "shlex", 636 - "syn 2.0.38", 1082 + "syn 2.0.39", 637 1083 ] 638 - 639 - [[package]] 640 - name = "bit-set" 641 - version = "0.5.3" 642 - source = "registry+https://github.com/rust-lang/crates.io-index" 643 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 644 - dependencies = [ 645 - "bit-vec", 646 - ] 647 - 648 - [[package]] 649 - name = "bit-vec" 650 - version = "0.6.3" 651 - source = "registry+https://github.com/rust-lang/crates.io-index" 652 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 653 1084 654 1085 [[package]] 655 1086 name = "bitflags" ··· 713 1144 checksum = "2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e" 714 1145 dependencies = [ 715 1146 "block-padding", 716 - "cipher", 1147 + "cipher 0.3.0", 717 1148 ] 718 1149 719 1150 [[package]] ··· 724 1155 725 1156 [[package]] 726 1157 name = "blocking" 727 - version = "1.4.1" 1158 + version = "1.5.1" 728 1159 source = "registry+https://github.com/rust-lang/crates.io-index" 729 - checksum = "8c36a4d0d48574b3dd360b4b7d95cc651d2b6557b6402848a27d4b228a473e2a" 1160 + checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 730 1161 dependencies = [ 731 - "async-channel", 732 - "async-lock", 1162 + "async-channel 2.1.0", 1163 + "async-lock 3.1.0", 733 1164 "async-task", 734 1165 "fastrand 2.0.1", 735 1166 "futures-io", 736 - "futures-lite", 1167 + "futures-lite 2.0.1", 737 1168 "piper", 738 1169 "tracing", 739 1170 ] 740 1171 741 1172 [[package]] 742 1173 name = "borsh" 743 - version = "0.10.3" 1174 + version = "1.2.0" 744 1175 source = "registry+https://github.com/rust-lang/crates.io-index" 745 - checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b" 1176 + checksum = "bf617fabf5cdbdc92f774bfe5062d870f228b80056d41180797abf48bed4056e" 746 1177 dependencies = [ 747 1178 "borsh-derive", 748 - "hashbrown 0.13.2", 1179 + "cfg_aliases", 749 1180 ] 750 1181 751 1182 [[package]] 752 1183 name = "borsh-derive" 753 - version = "0.10.3" 1184 + version = "1.2.0" 754 1185 source = "registry+https://github.com/rust-lang/crates.io-index" 755 - checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7" 1186 + checksum = "f404657a7ea7b5249e36808dff544bc88a28f26e0ac40009f674b7a009d14be3" 756 1187 dependencies = [ 757 - "borsh-derive-internal", 758 - "borsh-schema-derive-internal", 759 - "proc-macro-crate 0.1.5", 760 - "proc-macro2", 761 - "syn 1.0.109", 762 - ] 763 - 764 - [[package]] 765 - name = "borsh-derive-internal" 766 - version = "0.10.3" 767 - source = "registry+https://github.com/rust-lang/crates.io-index" 768 - checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb" 769 - dependencies = [ 1188 + "once_cell", 1189 + "proc-macro-crate 2.0.0", 770 1190 "proc-macro2", 771 1191 "quote", 772 - "syn 1.0.109", 773 - ] 774 - 775 - [[package]] 776 - name = "borsh-schema-derive-internal" 777 - version = "0.10.3" 778 - source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd" 780 - dependencies = [ 781 - "proc-macro2", 782 - "quote", 783 - "syn 1.0.109", 1192 + "syn 2.0.39", 1193 + "syn_derive", 784 1194 ] 785 1195 786 1196 [[package]] ··· 796 1206 797 1207 [[package]] 798 1208 name = "brotli-decompressor" 799 - version = "2.5.0" 1209 + version = "2.5.1" 800 1210 source = "registry+https://github.com/rust-lang/crates.io-index" 801 - checksum = "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" 1211 + checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 802 1212 dependencies = [ 803 1213 "alloc-no-stdlib", 804 1214 "alloc-stdlib", 805 1215 ] 806 1216 807 1217 [[package]] 808 - name = "bstr" 809 - version = "0.2.17" 1218 + name = "btoi" 1219 + version = "0.4.3" 810 1220 source = "registry+https://github.com/rust-lang/crates.io-index" 811 - checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 1221 + checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad" 812 1222 dependencies = [ 813 - "lazy_static", 814 - "memchr", 815 - "regex-automata 0.1.10", 1223 + "num-traits", 816 1224 ] 817 1225 818 1226 [[package]] ··· 858 1266 version = "1.14.0" 859 1267 source = "registry+https://github.com/rust-lang/crates.io-index" 860 1268 checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 1269 + dependencies = [ 1270 + "bytemuck_derive", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "bytemuck_derive" 1275 + version = "1.5.0" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 1278 + dependencies = [ 1279 + "proc-macro2", 1280 + "quote", 1281 + "syn 2.0.39", 1282 + ] 861 1283 862 1284 [[package]] 863 1285 name = "byteorder" ··· 872 1294 checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 873 1295 874 1296 [[package]] 1297 + name = "bytes-utils" 1298 + version = "0.1.4" 1299 + source = "registry+https://github.com/rust-lang/crates.io-index" 1300 + checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" 1301 + dependencies = [ 1302 + "bytes", 1303 + "either", 1304 + ] 1305 + 1306 + [[package]] 875 1307 name = "bzip2" 876 1308 version = "0.4.4" 877 1309 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 894 1326 895 1327 [[package]] 896 1328 name = "candle-core" 897 - version = "0.3.0" 1329 + version = "0.3.1" 898 1330 source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "d648a16c5e5a9ffa4a6630e13d32b6d7c106f6885fd6d8453e1d8b405c390322" 1331 + checksum = "d60d9b91c73bc662dc45aff607f5ffe79724b7cf7d7c8dc12a72b25921683b67" 900 1332 dependencies = [ 901 1333 "byteorder", 902 - "candle-gemm", 1334 + "gemm", 903 1335 "half", 904 1336 "memmap2", 905 1337 "num-traits", ··· 914 1346 ] 915 1347 916 1348 [[package]] 917 - name = "candle-gemm" 918 - version = "0.16.0" 919 - source = "registry+https://github.com/rust-lang/crates.io-index" 920 - checksum = "ef9b07a4b0ba1a304b44432006580980ddff9748c201261c279437e7b11bba68" 921 - dependencies = [ 922 - "candle-gemm-c32", 923 - "candle-gemm-c64", 924 - "candle-gemm-common", 925 - "candle-gemm-f16", 926 - "candle-gemm-f32", 927 - "candle-gemm-f64", 928 - "dyn-stack", 929 - "lazy_static", 930 - "num-complex", 931 - "num-traits", 932 - "paste", 933 - "raw-cpuid", 934 - "rayon", 935 - "seq-macro", 936 - ] 937 - 938 - [[package]] 939 - name = "candle-gemm-c32" 940 - version = "0.16.0" 941 - source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "f595241dad99811de285e029889f57c29dd98e33de7a8a6b881867b1488d7d4a" 943 - dependencies = [ 944 - "candle-gemm-common", 945 - "dyn-stack", 946 - "lazy_static", 947 - "num-complex", 948 - "num-traits", 949 - "paste", 950 - "raw-cpuid", 951 - "rayon", 952 - "seq-macro", 953 - ] 954 - 955 - [[package]] 956 - name = "candle-gemm-c64" 957 - version = "0.16.0" 958 - source = "registry+https://github.com/rust-lang/crates.io-index" 959 - checksum = "648f22fd8f5a4f330e29d791845b514966421308a6a2b5fedb949ee07e54c77f" 960 - dependencies = [ 961 - "candle-gemm-common", 962 - "dyn-stack", 963 - "lazy_static", 964 - "num-complex", 965 - "num-traits", 966 - "paste", 967 - "raw-cpuid", 968 - "rayon", 969 - "seq-macro", 970 - ] 971 - 972 - [[package]] 973 - name = "candle-gemm-common" 974 - version = "0.16.0" 975 - source = "registry+https://github.com/rust-lang/crates.io-index" 976 - checksum = "e03c01b4ca3b9d71e4eb89e42946a08f8b0d2f1b861f7fa2ea0966233f1e0b08" 977 - dependencies = [ 978 - "dyn-stack", 979 - "lazy_static", 980 - "num-complex", 981 - "num-traits", 982 - "paste", 983 - "raw-cpuid", 984 - "rayon", 985 - "seq-macro", 986 - ] 987 - 988 - [[package]] 989 - name = "candle-gemm-f16" 990 - version = "0.16.0" 991 - source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "97f8af2a482131713d28a337abff6debf26c529afa1837caf2ba190909b2107c" 993 - dependencies = [ 994 - "candle-gemm-common", 995 - "candle-gemm-f32", 996 - "dyn-stack", 997 - "half", 998 - "lazy_static", 999 - "num-complex", 1000 - "num-traits", 1001 - "paste", 1002 - "raw-cpuid", 1003 - "rayon", 1004 - "seq-macro", 1005 - ] 1006 - 1007 - [[package]] 1008 - name = "candle-gemm-f32" 1009 - version = "0.16.0" 1010 - source = "registry+https://github.com/rust-lang/crates.io-index" 1011 - checksum = "938927961e2f0c0a6064fcf3524ea3f7f455fe5708419532a6fea9aea1ab45ae" 1012 - dependencies = [ 1013 - "candle-gemm-common", 1014 - "dyn-stack", 1015 - "lazy_static", 1016 - "num-complex", 1017 - "num-traits", 1018 - "paste", 1019 - "raw-cpuid", 1020 - "rayon", 1021 - "seq-macro", 1022 - ] 1023 - 1024 - [[package]] 1025 - name = "candle-gemm-f64" 1026 - version = "0.16.0" 1027 - source = "registry+https://github.com/rust-lang/crates.io-index" 1028 - checksum = "d192d7126e59b81ef4cf13cd9f194e6dbdc09171f65d0074d059dc009ac06775" 1029 - dependencies = [ 1030 - "candle-gemm-common", 1031 - "dyn-stack", 1032 - "lazy_static", 1033 - "num-complex", 1034 - "num-traits", 1035 - "paste", 1036 - "raw-cpuid", 1037 - "rayon", 1038 - "seq-macro", 1039 - ] 1040 - 1041 - [[package]] 1042 1349 name = "candle-nn" 1043 - version = "0.3.0" 1350 + version = "0.3.1" 1044 1351 source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - checksum = "00e438605fbbd1235dbfc5b10beda5ebe4bb0a19969b864a85b922c97ac9f686" 1352 + checksum = "4eb6e13e7076439309786482d4d4c1b4e1f2b102ca93513372d5419ffcf5df25" 1046 1353 dependencies = [ 1047 1354 "candle-core", 1048 1355 "half", ··· 1055 1362 1056 1363 [[package]] 1057 1364 name = "candle-transformers" 1058 - version = "0.3.0" 1365 + version = "0.3.1" 1059 1366 source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "196742c5676b9af54c782304609f3e480c871e5588451d9806b2df8fc11e324c" 1367 + checksum = "0169336de9dc62dd84e19af1408e53ef8ad07eef8fc103cfebf5b6c3e3f23c2c" 1061 1368 dependencies = [ 1369 + "byteorder", 1062 1370 "candle-core", 1063 1371 "candle-nn", 1064 1372 "num-traits", ··· 1066 1374 "rayon", 1067 1375 "serde", 1068 1376 "serde_json", 1377 + "serde_plain", 1069 1378 "tracing", 1070 1379 "wav", 1071 1380 ] ··· 1106 1415 version = "1.0.0" 1107 1416 source = "registry+https://github.com/rust-lang/crates.io-index" 1108 1417 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1418 + 1419 + [[package]] 1420 + name = "cfg_aliases" 1421 + version = "0.1.1" 1422 + source = "registry+https://github.com/rust-lang/crates.io-index" 1423 + checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 1109 1424 1110 1425 [[package]] 1111 1426 name = "chrono" ··· 1124 1439 1125 1440 [[package]] 1126 1441 name = "chrono-tz" 1127 - version = "0.8.3" 1442 + version = "0.8.4" 1128 1443 source = "registry+https://github.com/rust-lang/crates.io-index" 1129 - checksum = "f1369bc6b9e9a7dfdae2055f6ec151fe9c554a9d23d357c0237cee2e25eaabb7" 1444 + checksum = "e23185c0e21df6ed832a12e2bda87c7d1def6842881fb634a8511ced741b0d76" 1130 1445 dependencies = [ 1131 1446 "chrono", 1132 1447 "chrono-tz-build", ··· 1135 1450 1136 1451 [[package]] 1137 1452 name = "chrono-tz-build" 1138 - version = "0.2.0" 1453 + version = "0.2.1" 1139 1454 source = "registry+https://github.com/rust-lang/crates.io-index" 1140 - checksum = "e2f5ebdc942f57ed96d560a6d1a459bae5851102a25d5bf89dc04ae453e31ecf" 1455 + checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f" 1141 1456 dependencies = [ 1142 1457 "parse-zoneinfo", 1143 1458 "phf 0.11.2", 1144 - "phf_codegen 0.11.2", 1459 + "phf_codegen", 1145 1460 ] 1146 1461 1147 1462 [[package]] ··· 1154 1469 ] 1155 1470 1156 1471 [[package]] 1472 + name = "cipher" 1473 + version = "0.4.4" 1474 + source = "registry+https://github.com/rust-lang/crates.io-index" 1475 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1476 + dependencies = [ 1477 + "crypto-common", 1478 + "inout", 1479 + ] 1480 + 1481 + [[package]] 1157 1482 name = "clang-sys" 1158 1483 version = "1.6.1" 1159 1484 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1166 1491 1167 1492 [[package]] 1168 1493 name = "clap" 1169 - version = "4.4.6" 1494 + version = "4.4.8" 1170 1495 source = "registry+https://github.com/rust-lang/crates.io-index" 1171 - checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" 1496 + checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" 1172 1497 dependencies = [ 1173 1498 "clap_builder", 1174 1499 "clap_derive", ··· 1176 1501 1177 1502 [[package]] 1178 1503 name = "clap_builder" 1179 - version = "4.4.6" 1504 + version = "4.4.8" 1180 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1181 - checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" 1506 + checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" 1182 1507 dependencies = [ 1183 1508 "anstream", 1184 1509 "anstyle", ··· 1188 1513 1189 1514 [[package]] 1190 1515 name = "clap_derive" 1191 - version = "4.4.2" 1516 + version = "4.4.7" 1192 1517 source = "registry+https://github.com/rust-lang/crates.io-index" 1193 - checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" 1518 + checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 1194 1519 dependencies = [ 1195 1520 "heck", 1196 1521 "proc-macro2", 1197 1522 "quote", 1198 - "syn 2.0.38", 1523 + "syn 2.0.39", 1199 1524 ] 1200 1525 1201 1526 [[package]] 1202 1527 name = "clap_lex" 1203 - version = "0.5.1" 1528 + version = "0.6.0" 1204 1529 source = "registry+https://github.com/rust-lang/crates.io-index" 1205 - checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" 1530 + checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 1206 1531 1207 1532 [[package]] 1208 1533 name = "cmake" ··· 1243 1568 ] 1244 1569 1245 1570 [[package]] 1571 + name = "connection-string" 1572 + version = "0.2.0" 1573 + source = "registry+https://github.com/rust-lang/crates.io-index" 1574 + checksum = "510ca239cf13b7f8d16a2b48f263de7b4f8c566f0af58d901031473c76afb1e3" 1575 + 1576 + [[package]] 1246 1577 name = "console" 1247 1578 version = "0.15.7" 1248 1579 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1293 1624 ] 1294 1625 1295 1626 [[package]] 1627 + name = "constant_time_eq" 1628 + version = "0.1.5" 1629 + source = "registry+https://github.com/rust-lang/crates.io-index" 1630 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 1631 + 1632 + [[package]] 1296 1633 name = "convert_case" 1297 1634 version = "0.4.0" 1298 1635 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1336 1673 1337 1674 [[package]] 1338 1675 name = "cpufeatures" 1339 - version = "0.2.10" 1676 + version = "0.2.11" 1340 1677 source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "3fbc60abd742b35f2492f808e1abbb83d45f72db402e14c55057edc9c7b1e9e4" 1678 + checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 1342 1679 dependencies = [ 1343 1680 "libc", 1344 1681 ] ··· 1363 1700 1364 1701 [[package]] 1365 1702 name = "crc-catalog" 1366 - version = "2.2.0" 1703 + version = "2.4.0" 1367 1704 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" 1705 + checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1706 + 1707 + [[package]] 1708 + name = "crc32c" 1709 + version = "0.6.4" 1710 + source = "registry+https://github.com/rust-lang/crates.io-index" 1711 + checksum = "d8f48d60e5b4d2c53d5c2b1d8a58c849a70ae5e5509b08a48d047e3b65714a74" 1712 + dependencies = [ 1713 + "rustc_version 0.4.0", 1714 + ] 1369 1715 1370 1716 [[package]] 1371 1717 name = "crc32fast" ··· 1461 1807 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1462 1808 1463 1809 [[package]] 1810 + name = "crypto-bigint" 1811 + version = "0.4.9" 1812 + source = "registry+https://github.com/rust-lang/crates.io-index" 1813 + checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 1814 + dependencies = [ 1815 + "generic-array", 1816 + "rand_core 0.6.4", 1817 + "subtle", 1818 + "zeroize", 1819 + ] 1820 + 1821 + [[package]] 1464 1822 name = "crypto-common" 1465 1823 version = "0.1.6" 1466 1824 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1515 1873 "proc-macro2", 1516 1874 "quote", 1517 1875 "strsim", 1518 - "syn 2.0.38", 1876 + "syn 2.0.39", 1519 1877 ] 1520 1878 1521 1879 [[package]] ··· 1537 1895 dependencies = [ 1538 1896 "darling_core 0.20.3", 1539 1897 "quote", 1540 - "syn 2.0.38", 1898 + "syn 2.0.39", 1541 1899 ] 1542 1900 1543 1901 [[package]] ··· 1550 1908 "hashbrown 0.14.2", 1551 1909 "lock_api", 1552 1910 "once_cell", 1553 - "parking_lot_core", 1911 + "parking_lot_core 0.9.9", 1554 1912 ] 1555 1913 1556 1914 [[package]] ··· 1595 1953 dependencies = [ 1596 1954 "deno-proc-macro-rules-macros", 1597 1955 "proc-macro2", 1598 - "syn 2.0.38", 1956 + "syn 2.0.39", 1599 1957 ] 1600 1958 1601 1959 [[package]] ··· 1607 1965 "once_cell", 1608 1966 "proc-macro2", 1609 1967 "quote", 1610 - "syn 2.0.38", 1968 + "syn 2.0.39", 1611 1969 ] 1612 1970 1613 1971 [[package]] ··· 1669 2027 "libc", 1670 2028 "log", 1671 2029 "once_cell", 1672 - "parking_lot", 2030 + "parking_lot 0.12.1", 1673 2031 "pin-project", 1674 2032 "serde", 1675 2033 "serde_json", ··· 1719 2077 "deno-proc-macro-rules", 1720 2078 "lazy-regex", 1721 2079 "once_cell", 1722 - "pmutil", 2080 + "pmutil 0.6.1", 1723 2081 "proc-macro-crate 1.3.1", 1724 2082 "proc-macro2", 1725 2083 "quote", ··· 1727 2085 "strum", 1728 2086 "strum_macros", 1729 2087 "syn 1.0.109", 1730 - "syn 2.0.38", 2088 + "syn 2.0.39", 1731 2089 "thiserror", 1732 2090 ] 1733 2091 ··· 1739 2097 dependencies = [ 1740 2098 "deno_core", 1741 2099 "once_cell", 1742 - "rustls", 2100 + "rustls 0.21.9", 1743 2101 "rustls-native-certs", 1744 2102 "rustls-pemfile", 1745 2103 "serde", ··· 1867 2225 checksum = "ac41dd49fb554432020d52c875fc290e110113f864c6b1b525cd62c7e7747a5d" 1868 2226 dependencies = [ 1869 2227 "byteorder", 1870 - "cipher", 2228 + "cipher 0.3.0", 1871 2229 "opaque-debug", 1872 2230 ] 1873 - 1874 - [[package]] 1875 - name = "diff" 1876 - version = "0.1.13" 1877 - source = "registry+https://github.com/rust-lang/crates.io-index" 1878 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 1879 2231 1880 2232 [[package]] 1881 2233 name = "digest" ··· 1900 2252 1901 2253 [[package]] 1902 2254 name = "dirs" 2255 + version = "4.0.0" 2256 + source = "registry+https://github.com/rust-lang/crates.io-index" 2257 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 2258 + dependencies = [ 2259 + "dirs-sys 0.3.7", 2260 + ] 2261 + 2262 + [[package]] 2263 + name = "dirs" 1903 2264 version = "5.0.1" 1904 2265 source = "registry+https://github.com/rust-lang/crates.io-index" 1905 2266 checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1906 2267 dependencies = [ 1907 - "dirs-sys", 2268 + "dirs-sys 0.4.1", 1908 2269 ] 1909 2270 1910 2271 [[package]] ··· 1915 2276 dependencies = [ 1916 2277 "cfg-if", 1917 2278 "dirs-sys-next", 2279 + ] 2280 + 2281 + [[package]] 2282 + name = "dirs-sys" 2283 + version = "0.3.7" 2284 + source = "registry+https://github.com/rust-lang/crates.io-index" 2285 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 2286 + dependencies = [ 2287 + "libc", 2288 + "redox_users", 2289 + "winapi", 1918 2290 ] 1919 2291 1920 2292 [[package]] ··· 1970 2342 1971 2343 [[package]] 1972 2344 name = "dyn-clone" 1973 - version = "1.0.14" 2345 + version = "1.0.16" 1974 2346 source = "registry+https://github.com/rust-lang/crates.io-index" 1975 - checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" 2347 + checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d" 1976 2348 1977 2349 [[package]] 1978 2350 name = "dyn-iter" ··· 1982 2354 1983 2355 [[package]] 1984 2356 name = "dyn-stack" 1985 - version = "0.9.1" 2357 + version = "0.10.0" 1986 2358 source = "registry+https://github.com/rust-lang/crates.io-index" 1987 - checksum = "7fe7f8d7bcc523381d3c437b82cf74805de3931de0da69309ae0fe1bdf7a256e" 2359 + checksum = "56e53799688f5632f364f8fb387488dd05db9fe45db7011be066fc20e7027f8b" 1988 2360 dependencies = [ 1989 2361 "bytemuck", 1990 2362 "reborrow", 1991 2363 ] 1992 2364 1993 2365 [[package]] 2366 + name = "ecdsa" 2367 + version = "0.14.8" 2368 + source = "registry+https://github.com/rust-lang/crates.io-index" 2369 + checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 2370 + dependencies = [ 2371 + "der 0.6.1", 2372 + "elliptic-curve", 2373 + "rfc6979", 2374 + "signature 1.6.4", 2375 + ] 2376 + 2377 + [[package]] 1994 2378 name = "either" 1995 2379 version = "1.9.0" 1996 2380 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2000 2384 ] 2001 2385 2002 2386 [[package]] 2003 - name = "ena" 2004 - version = "0.14.2" 2387 + name = "elliptic-curve" 2388 + version = "0.12.3" 2005 2389 source = "registry+https://github.com/rust-lang/crates.io-index" 2006 - checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" 2390 + checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 2391 + dependencies = [ 2392 + "base16ct", 2393 + "crypto-bigint", 2394 + "der 0.6.1", 2395 + "digest 0.10.7", 2396 + "ff", 2397 + "generic-array", 2398 + "group", 2399 + "pkcs8 0.9.0", 2400 + "rand_core 0.6.4", 2401 + "sec1", 2402 + "subtle", 2403 + "zeroize", 2404 + ] 2405 + 2406 + [[package]] 2407 + name = "embed-doc-image" 2408 + version = "0.1.4" 2409 + source = "registry+https://github.com/rust-lang/crates.io-index" 2410 + checksum = "af36f591236d9d822425cb6896595658fa558fcebf5ee8accac1d4b92c47166e" 2007 2411 dependencies = [ 2008 - "log", 2412 + "base64 0.13.1", 2413 + "proc-macro2", 2414 + "quote", 2415 + "syn 1.0.109", 2009 2416 ] 2010 2417 2011 2418 [[package]] ··· 2015 2422 checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 2016 2423 2017 2424 [[package]] 2425 + name = "encoding" 2426 + version = "0.2.33" 2427 + source = "registry+https://github.com/rust-lang/crates.io-index" 2428 + checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" 2429 + dependencies = [ 2430 + "encoding-index-japanese", 2431 + "encoding-index-korean", 2432 + "encoding-index-simpchinese", 2433 + "encoding-index-singlebyte", 2434 + "encoding-index-tradchinese", 2435 + ] 2436 + 2437 + [[package]] 2438 + name = "encoding-index-japanese" 2439 + version = "1.20141219.5" 2440 + source = "registry+https://github.com/rust-lang/crates.io-index" 2441 + checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" 2442 + dependencies = [ 2443 + "encoding_index_tests", 2444 + ] 2445 + 2446 + [[package]] 2447 + name = "encoding-index-korean" 2448 + version = "1.20141219.5" 2449 + source = "registry+https://github.com/rust-lang/crates.io-index" 2450 + checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" 2451 + dependencies = [ 2452 + "encoding_index_tests", 2453 + ] 2454 + 2455 + [[package]] 2456 + name = "encoding-index-simpchinese" 2457 + version = "1.20141219.5" 2458 + source = "registry+https://github.com/rust-lang/crates.io-index" 2459 + checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" 2460 + dependencies = [ 2461 + "encoding_index_tests", 2462 + ] 2463 + 2464 + [[package]] 2465 + name = "encoding-index-singlebyte" 2466 + version = "1.20141219.5" 2467 + source = "registry+https://github.com/rust-lang/crates.io-index" 2468 + checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" 2469 + dependencies = [ 2470 + "encoding_index_tests", 2471 + ] 2472 + 2473 + [[package]] 2474 + name = "encoding-index-tradchinese" 2475 + version = "1.20141219.5" 2476 + source = "registry+https://github.com/rust-lang/crates.io-index" 2477 + checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" 2478 + dependencies = [ 2479 + "encoding_index_tests", 2480 + ] 2481 + 2482 + [[package]] 2483 + name = "encoding_index_tests" 2484 + version = "0.1.4" 2485 + source = "registry+https://github.com/rust-lang/crates.io-index" 2486 + checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" 2487 + 2488 + [[package]] 2018 2489 name = "encoding_rs" 2019 2490 version = "0.8.31" 2020 2491 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2024 2495 ] 2025 2496 2026 2497 [[package]] 2498 + name = "enumflags2" 2499 + version = "0.7.8" 2500 + source = "registry+https://github.com/rust-lang/crates.io-index" 2501 + checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 2502 + dependencies = [ 2503 + "enumflags2_derive", 2504 + ] 2505 + 2506 + [[package]] 2507 + name = "enumflags2_derive" 2508 + version = "0.7.8" 2509 + source = "registry+https://github.com/rust-lang/crates.io-index" 2510 + checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 2511 + dependencies = [ 2512 + "proc-macro2", 2513 + "quote", 2514 + "syn 2.0.39", 2515 + ] 2516 + 2517 + [[package]] 2027 2518 name = "equivalent" 2028 2519 version = "1.0.1" 2029 2520 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2031 2522 2032 2523 [[package]] 2033 2524 name = "errno" 2034 - version = "0.3.5" 2525 + version = "0.3.7" 2035 2526 source = "registry+https://github.com/rust-lang/crates.io-index" 2036 - checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 2527 + checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8" 2037 2528 dependencies = [ 2038 2529 "libc", 2039 2530 "windows-sys 0.48.0", ··· 2066 2557 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 2067 2558 2068 2559 [[package]] 2560 + name = "event-listener" 2561 + version = "3.1.0" 2562 + source = "registry+https://github.com/rust-lang/crates.io-index" 2563 + checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 2564 + dependencies = [ 2565 + "concurrent-queue", 2566 + "parking", 2567 + "pin-project-lite", 2568 + ] 2569 + 2570 + [[package]] 2571 + name = "event-listener-strategy" 2572 + version = "0.3.0" 2573 + source = "registry+https://github.com/rust-lang/crates.io-index" 2574 + checksum = "d96b852f1345da36d551b9473fa1e2b1eb5c5195585c6c018118bc92a8d91160" 2575 + dependencies = [ 2576 + "event-listener 3.1.0", 2577 + "pin-project-lite", 2578 + ] 2579 + 2580 + [[package]] 2069 2581 name = "fallible-iterator" 2070 2582 version = "0.2.0" 2071 2583 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2087 2599 checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 2088 2600 2089 2601 [[package]] 2602 + name = "ff" 2603 + version = "0.12.1" 2604 + source = "registry+https://github.com/rust-lang/crates.io-index" 2605 + checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 2606 + dependencies = [ 2607 + "rand_core 0.6.4", 2608 + "subtle", 2609 + ] 2610 + 2611 + [[package]] 2090 2612 name = "filetime" 2091 2613 version = "0.2.22" 2092 2614 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2105 2627 checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" 2106 2628 2107 2629 [[package]] 2108 - name = "fixedbitset" 2109 - version = "0.4.2" 2110 - source = "registry+https://github.com/rust-lang/crates.io-index" 2111 - checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 2112 - 2113 - [[package]] 2114 2630 name = "flate2" 2115 2631 version = "1.0.28" 2116 2632 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2169 2685 source = "registry+https://github.com/rust-lang/crates.io-index" 2170 2686 checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f" 2171 2687 dependencies = [ 2172 - "pmutil", 2688 + "pmutil 0.6.1", 2173 2689 "proc-macro2", 2174 2690 "swc_macros_common", 2175 - "syn 2.0.38", 2691 + "syn 2.0.39", 2176 2692 ] 2177 2693 2178 2694 [[package]] ··· 2200 2716 dependencies = [ 2201 2717 "frunk_proc_macro_helpers", 2202 2718 "quote", 2203 - "syn 2.0.38", 2719 + "syn 2.0.39", 2204 2720 ] 2205 2721 2206 2722 [[package]] ··· 2212 2728 "frunk_core", 2213 2729 "proc-macro2", 2214 2730 "quote", 2215 - "syn 2.0.38", 2731 + "syn 2.0.39", 2216 2732 ] 2217 2733 2218 2734 [[package]] ··· 2224 2740 "frunk_core", 2225 2741 "frunk_proc_macro_helpers", 2226 2742 "quote", 2227 - "syn 2.0.38", 2743 + "syn 2.0.39", 2228 2744 ] 2229 2745 2230 2746 [[package]] ··· 2245 2761 2246 2762 [[package]] 2247 2763 name = "futures" 2248 - version = "0.3.28" 2764 + version = "0.3.29" 2249 2765 source = "registry+https://github.com/rust-lang/crates.io-index" 2250 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 2766 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 2251 2767 dependencies = [ 2252 2768 "futures-channel", 2253 2769 "futures-core", ··· 2260 2776 2261 2777 [[package]] 2262 2778 name = "futures-channel" 2263 - version = "0.3.28" 2779 + version = "0.3.29" 2264 2780 source = "registry+https://github.com/rust-lang/crates.io-index" 2265 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 2781 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 2266 2782 dependencies = [ 2267 2783 "futures-core", 2268 2784 "futures-sink", ··· 2270 2786 2271 2787 [[package]] 2272 2788 name = "futures-core" 2273 - version = "0.3.28" 2789 + version = "0.3.29" 2274 2790 source = "registry+https://github.com/rust-lang/crates.io-index" 2275 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 2791 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 2276 2792 2277 2793 [[package]] 2278 2794 name = "futures-executor" 2279 - version = "0.3.28" 2795 + version = "0.3.29" 2280 2796 source = "registry+https://github.com/rust-lang/crates.io-index" 2281 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 2797 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 2282 2798 dependencies = [ 2283 2799 "futures-core", 2284 2800 "futures-task", ··· 2287 2803 2288 2804 [[package]] 2289 2805 name = "futures-intrusive" 2806 + version = "0.4.2" 2807 + source = "registry+https://github.com/rust-lang/crates.io-index" 2808 + checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5" 2809 + dependencies = [ 2810 + "futures-core", 2811 + "lock_api", 2812 + "parking_lot 0.11.2", 2813 + ] 2814 + 2815 + [[package]] 2816 + name = "futures-intrusive" 2290 2817 version = "0.5.0" 2291 2818 source = "registry+https://github.com/rust-lang/crates.io-index" 2292 2819 checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 2293 2820 dependencies = [ 2294 2821 "futures-core", 2295 2822 "lock_api", 2296 - "parking_lot", 2823 + "parking_lot 0.12.1", 2297 2824 ] 2298 2825 2299 2826 [[package]] 2300 2827 name = "futures-io" 2301 - version = "0.3.28" 2828 + version = "0.3.29" 2302 2829 source = "registry+https://github.com/rust-lang/crates.io-index" 2303 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 2830 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 2304 2831 2305 2832 [[package]] 2306 2833 name = "futures-lite" ··· 2318 2845 ] 2319 2846 2320 2847 [[package]] 2848 + name = "futures-lite" 2849 + version = "2.0.1" 2850 + source = "registry+https://github.com/rust-lang/crates.io-index" 2851 + checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" 2852 + dependencies = [ 2853 + "futures-core", 2854 + "pin-project-lite", 2855 + ] 2856 + 2857 + [[package]] 2321 2858 name = "futures-macro" 2322 - version = "0.3.28" 2859 + version = "0.3.29" 2323 2860 source = "registry+https://github.com/rust-lang/crates.io-index" 2324 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 2861 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 2325 2862 dependencies = [ 2326 2863 "proc-macro2", 2327 2864 "quote", 2328 - "syn 2.0.38", 2865 + "syn 2.0.39", 2329 2866 ] 2330 2867 2331 2868 [[package]] 2332 2869 name = "futures-sink" 2333 - version = "0.3.28" 2870 + version = "0.3.29" 2334 2871 source = "registry+https://github.com/rust-lang/crates.io-index" 2335 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2872 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 2336 2873 2337 2874 [[package]] 2338 2875 name = "futures-task" 2339 - version = "0.3.28" 2876 + version = "0.3.29" 2340 2877 source = "registry+https://github.com/rust-lang/crates.io-index" 2341 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2878 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 2342 2879 2343 2880 [[package]] 2344 2881 name = "futures-util" 2345 - version = "0.3.28" 2882 + version = "0.3.29" 2346 2883 source = "registry+https://github.com/rust-lang/crates.io-index" 2347 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2884 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 2348 2885 dependencies = [ 2349 2886 "futures-channel", 2350 2887 "futures-core", ··· 2365 2902 checksum = "7d3b20d3058763d26d88e6e7a49998841e5296735b00dbfb064ff7cb142933dd" 2366 2903 dependencies = [ 2367 2904 "async-trait", 2368 - "base64 0.21.4", 2905 + "base64 0.21.5", 2369 2906 "dirs-next", 2370 2907 "hyper", 2371 2908 "hyper-rustls", 2372 2909 "ring 0.16.20", 2373 - "rustls", 2910 + "rustls 0.21.9", 2374 2911 "rustls-pemfile", 2375 2912 "serde", 2376 2913 "serde_json", ··· 2384 2921 ] 2385 2922 2386 2923 [[package]] 2924 + name = "gemm" 2925 + version = "0.16.15" 2926 + source = "registry+https://github.com/rust-lang/crates.io-index" 2927 + checksum = "5b3afa707040531a7527477fd63a81ea4f6f3d26037a2f96776e57fb843b258e" 2928 + dependencies = [ 2929 + "dyn-stack", 2930 + "gemm-c32", 2931 + "gemm-c64", 2932 + "gemm-common", 2933 + "gemm-f16", 2934 + "gemm-f32", 2935 + "gemm-f64", 2936 + "num-complex", 2937 + "num-traits", 2938 + "paste", 2939 + "raw-cpuid", 2940 + "seq-macro", 2941 + ] 2942 + 2943 + [[package]] 2944 + name = "gemm-c32" 2945 + version = "0.16.15" 2946 + source = "registry+https://github.com/rust-lang/crates.io-index" 2947 + checksum = "1cc3973a4c30c73f26a099113953d0c772bb17ee2e07976c0a06b8fe1f38a57d" 2948 + dependencies = [ 2949 + "dyn-stack", 2950 + "gemm-common", 2951 + "num-complex", 2952 + "num-traits", 2953 + "paste", 2954 + "raw-cpuid", 2955 + "seq-macro", 2956 + ] 2957 + 2958 + [[package]] 2959 + name = "gemm-c64" 2960 + version = "0.16.15" 2961 + source = "registry+https://github.com/rust-lang/crates.io-index" 2962 + checksum = "30362894b93dada374442cb2edf4512ddf19513c9bec88e06a445bcb6b22e64f" 2963 + dependencies = [ 2964 + "dyn-stack", 2965 + "gemm-common", 2966 + "num-complex", 2967 + "num-traits", 2968 + "paste", 2969 + "raw-cpuid", 2970 + "seq-macro", 2971 + ] 2972 + 2973 + [[package]] 2974 + name = "gemm-common" 2975 + version = "0.16.15" 2976 + source = "registry+https://github.com/rust-lang/crates.io-index" 2977 + checksum = "988499faa80566b046b4fee2c5f15af55b5a20c1fe8486b112ebb34efa045ad6" 2978 + dependencies = [ 2979 + "bytemuck", 2980 + "dyn-stack", 2981 + "half", 2982 + "num-complex", 2983 + "num-traits", 2984 + "once_cell", 2985 + "paste", 2986 + "pulp", 2987 + "raw-cpuid", 2988 + "rayon", 2989 + "seq-macro", 2990 + ] 2991 + 2992 + [[package]] 2993 + name = "gemm-f16" 2994 + version = "0.16.15" 2995 + source = "registry+https://github.com/rust-lang/crates.io-index" 2996 + checksum = "d6cf2854a12371684c38d9a865063a27661812a3ff5803454c5742e8f5a388ce" 2997 + dependencies = [ 2998 + "dyn-stack", 2999 + "gemm-common", 3000 + "gemm-f32", 3001 + "half", 3002 + "num-complex", 3003 + "num-traits", 3004 + "paste", 3005 + "raw-cpuid", 3006 + "rayon", 3007 + "seq-macro", 3008 + ] 3009 + 3010 + [[package]] 3011 + name = "gemm-f32" 3012 + version = "0.16.15" 3013 + source = "registry+https://github.com/rust-lang/crates.io-index" 3014 + checksum = "0bc84003cf6d950a7c7ca714ad6db281b6cef5c7d462f5cd9ad90ea2409c7227" 3015 + dependencies = [ 3016 + "dyn-stack", 3017 + "gemm-common", 3018 + "num-complex", 3019 + "num-traits", 3020 + "paste", 3021 + "raw-cpuid", 3022 + "seq-macro", 3023 + ] 3024 + 3025 + [[package]] 3026 + name = "gemm-f64" 3027 + version = "0.16.15" 3028 + source = "registry+https://github.com/rust-lang/crates.io-index" 3029 + checksum = "35187ef101a71eed0ecd26fb4a6255b4192a12f1c5335f3a795698f2d9b6cf33" 3030 + dependencies = [ 3031 + "dyn-stack", 3032 + "gemm-common", 3033 + "num-complex", 3034 + "num-traits", 3035 + "paste", 3036 + "raw-cpuid", 3037 + "seq-macro", 3038 + ] 3039 + 3040 + [[package]] 2387 3041 name = "generic-array" 2388 3042 version = "0.14.7" 2389 3043 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2425 3079 2426 3080 [[package]] 2427 3081 name = "getrandom" 2428 - version = "0.2.10" 3082 + version = "0.2.11" 2429 3083 source = "registry+https://github.com/rust-lang/crates.io-index" 2430 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 3084 + checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2431 3085 dependencies = [ 2432 3086 "cfg-if", 2433 3087 "js-sys", ··· 2444 3098 2445 3099 [[package]] 2446 3100 name = "git-version" 2447 - version = "0.3.5" 3101 + version = "0.3.8" 2448 3102 source = "registry+https://github.com/rust-lang/crates.io-index" 2449 - checksum = "f6b0decc02f4636b9ccad390dcbe77b722a77efedfa393caf8379a51d5c61899" 3103 + checksum = "13ad01ffa8221f7fe8b936d6ffb2a3e7ad428885a04fad51866a5f33eafda57c" 2450 3104 dependencies = [ 2451 3105 "git-version-macro", 2452 - "proc-macro-hack", 2453 3106 ] 2454 3107 2455 3108 [[package]] 2456 3109 name = "git-version-macro" 2457 - version = "0.3.5" 3110 + version = "0.3.8" 2458 3111 source = "registry+https://github.com/rust-lang/crates.io-index" 2459 - checksum = "fe69f1cbdb6e28af2bac214e943b99ce8a0a06b447d15d3e61161b0423139f3f" 3112 + checksum = "84488ccbdb24ad6f56dc1863b4a8154a7856cd3c6c7610401634fab3cb588dae" 2460 3113 dependencies = [ 2461 - "proc-macro-hack", 2462 3114 "proc-macro2", 2463 3115 "quote", 2464 - "syn 1.0.109", 3116 + "syn 2.0.39", 2465 3117 ] 2466 3118 2467 3119 [[package]] ··· 2508 3160 ] 2509 3161 2510 3162 [[package]] 3163 + name = "group" 3164 + version = "0.12.1" 3165 + source = "registry+https://github.com/rust-lang/crates.io-index" 3166 + checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 3167 + dependencies = [ 3168 + "ff", 3169 + "rand_core 0.6.4", 3170 + "subtle", 3171 + ] 3172 + 3173 + [[package]] 2511 3174 name = "h2" 2512 - version = "0.3.21" 3175 + version = "0.3.22" 2513 3176 source = "registry+https://github.com/rust-lang/crates.io-index" 2514 - checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 3177 + checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 2515 3178 dependencies = [ 2516 3179 "bytes", 2517 3180 "fnv", ··· 2519 3182 "futures-sink", 2520 3183 "futures-util", 2521 3184 "http", 2522 - "indexmap 1.9.3", 3185 + "indexmap 2.1.0", 2523 3186 "slab", 2524 3187 "tokio", 2525 3188 "tokio-util", ··· 2532 3195 source = "registry+https://github.com/rust-lang/crates.io-index" 2533 3196 checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 2534 3197 dependencies = [ 3198 + "bytemuck", 2535 3199 "cfg-if", 2536 3200 "crunchy", 2537 3201 "num-traits", ··· 2545 3209 source = "registry+https://github.com/rust-lang/crates.io-index" 2546 3210 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2547 3211 dependencies = [ 2548 - "ahash 0.7.6", 3212 + "ahash 0.7.7", 2549 3213 ] 2550 3214 2551 3215 [[package]] ··· 2554 3218 source = "registry+https://github.com/rust-lang/crates.io-index" 2555 3219 checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2556 3220 dependencies = [ 2557 - "ahash 0.8.3", 3221 + "ahash 0.8.6", 2558 3222 ] 2559 3223 2560 3224 [[package]] ··· 2563 3227 source = "registry+https://github.com/rust-lang/crates.io-index" 2564 3228 checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 2565 3229 dependencies = [ 2566 - "ahash 0.8.3", 3230 + "ahash 0.8.6", 2567 3231 "allocator-api2", 2568 3232 ] 2569 3233 ··· 2582 3246 source = "registry+https://github.com/rust-lang/crates.io-index" 2583 3247 checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" 2584 3248 dependencies = [ 2585 - "base64 0.21.4", 3249 + "base64 0.21.5", 2586 3250 "bytes", 2587 3251 "headers-core", 2588 3252 "http", ··· 2627 3291 source = "registry+https://github.com/rust-lang/crates.io-index" 2628 3292 checksum = "2b780635574b3d92f036890d8373433d6f9fc7abb320ee42a5c25897fc8ed732" 2629 3293 dependencies = [ 2630 - "dirs", 3294 + "dirs 5.0.1", 2631 3295 "indicatif", 2632 3296 "log", 2633 3297 "native-tls", ··· 2667 3331 2668 3332 [[package]] 2669 3333 name = "http" 2670 - version = "0.2.9" 3334 + version = "0.2.11" 2671 3335 source = "registry+https://github.com/rust-lang/crates.io-index" 2672 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 3336 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 2673 3337 dependencies = [ 2674 3338 "bytes", 2675 3339 "fnv", ··· 2700 3364 checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 2701 3365 dependencies = [ 2702 3366 "anyhow", 2703 - "async-channel", 3367 + "async-channel 1.9.0", 2704 3368 "base64 0.13.1", 2705 - "futures-lite", 3369 + "futures-lite 1.13.0", 2706 3370 "http", 2707 3371 "infer", 2708 3372 "pin-project-lite", ··· 2752 3416 2753 3417 [[package]] 2754 3418 name = "hyper-rustls" 2755 - version = "0.24.1" 3419 + version = "0.24.2" 2756 3420 source = "registry+https://github.com/rust-lang/crates.io-index" 2757 - checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 3421 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2758 3422 dependencies = [ 2759 3423 "futures-util", 2760 3424 "http", 2761 3425 "hyper", 2762 - "rustls", 3426 + "log", 3427 + "rustls 0.21.9", 2763 3428 "rustls-native-certs", 2764 3429 "tokio", 2765 - "tokio-rustls", 3430 + "tokio-rustls 0.24.1", 2766 3431 ] 2767 3432 2768 3433 [[package]] ··· 2836 3501 2837 3502 [[package]] 2838 3503 name = "indexmap" 2839 - version = "2.0.2" 3504 + version = "2.1.0" 2840 3505 source = "registry+https://github.com/rust-lang/crates.io-index" 2841 - checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 3506 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2842 3507 dependencies = [ 2843 3508 "equivalent", 2844 3509 "hashbrown 0.14.2", ··· 2862 3527 version = "0.2.3" 2863 3528 source = "registry+https://github.com/rust-lang/crates.io-index" 2864 3529 checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 3530 + 3531 + [[package]] 3532 + name = "inout" 3533 + version = "0.1.3" 3534 + source = "registry+https://github.com/rust-lang/crates.io-index" 3535 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 3536 + dependencies = [ 3537 + "generic-array", 3538 + ] 2865 3539 2866 3540 [[package]] 2867 3541 name = "instant" ··· 2885 3559 2886 3560 [[package]] 2887 3561 name = "ipnet" 2888 - version = "2.8.0" 3562 + version = "2.9.0" 2889 3563 source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 3564 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 2891 3565 2892 3566 [[package]] 2893 3567 name = "is-macro" 2894 - version = "0.3.0" 3568 + version = "0.2.2" 2895 3569 source = "registry+https://github.com/rust-lang/crates.io-index" 2896 - checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e" 3570 + checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20" 2897 3571 dependencies = [ 2898 3572 "Inflector", 2899 - "pmutil", 3573 + "pmutil 0.5.3", 2900 3574 "proc-macro2", 2901 3575 "quote", 2902 - "syn 2.0.38", 3576 + "syn 1.0.109", 2903 3577 ] 2904 3578 2905 3579 [[package]] 2906 - name = "is-terminal" 2907 - version = "0.4.9" 3580 + name = "is-macro" 3581 + version = "0.3.0" 2908 3582 source = "registry+https://github.com/rust-lang/crates.io-index" 2909 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 3583 + checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e" 2910 3584 dependencies = [ 2911 - "hermit-abi", 2912 - "rustix 0.38.20", 2913 - "windows-sys 0.48.0", 3585 + "Inflector", 3586 + "pmutil 0.6.1", 3587 + "proc-macro2", 3588 + "quote", 3589 + "syn 2.0.39", 2914 3590 ] 2915 3591 2916 3592 [[package]] ··· 2932 3608 ] 2933 3609 2934 3610 [[package]] 3611 + name = "itertools" 3612 + version = "0.12.0" 3613 + source = "registry+https://github.com/rust-lang/crates.io-index" 3614 + checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" 3615 + dependencies = [ 3616 + "either", 3617 + ] 3618 + 3619 + [[package]] 2935 3620 name = "itoa" 2936 3621 version = "1.0.9" 2937 3622 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2948 3633 2949 3634 [[package]] 2950 3635 name = "js-sys" 2951 - version = "0.3.64" 3636 + version = "0.3.65" 2952 3637 source = "registry+https://github.com/rust-lang/crates.io-index" 2953 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 3638 + checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 2954 3639 dependencies = [ 2955 3640 "wasm-bindgen", 2956 3641 ] ··· 2961 3646 source = "registry+https://github.com/rust-lang/crates.io-index" 2962 3647 checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" 2963 3648 dependencies = [ 2964 - "base64 0.21.4", 3649 + "base64 0.21.5", 2965 3650 "pem 1.1.1", 2966 3651 "ring 0.16.20", 2967 3652 "serde", ··· 2970 3655 ] 2971 3656 2972 3657 [[package]] 3658 + name = "keyed_priority_queue" 3659 + version = "0.4.2" 3660 + source = "registry+https://github.com/rust-lang/crates.io-index" 3661 + checksum = "4ee7893dab2e44ae5f9d0173f26ff4aa327c10b01b06a72b52dd9405b628640d" 3662 + dependencies = [ 3663 + "indexmap 2.1.0", 3664 + ] 3665 + 3666 + [[package]] 2973 3667 name = "konst" 2974 3668 version = "0.2.19" 2975 3669 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2994 3688 ] 2995 3689 2996 3690 [[package]] 2997 - name = "lalrpop" 2998 - version = "0.19.12" 2999 - source = "registry+https://github.com/rust-lang/crates.io-index" 3000 - checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" 3001 - dependencies = [ 3002 - "ascii-canvas", 3003 - "bit-set", 3004 - "diff", 3005 - "ena", 3006 - "is-terminal", 3007 - "itertools 0.10.5", 3008 - "lalrpop-util", 3009 - "petgraph", 3010 - "regex", 3011 - "regex-syntax 0.6.29", 3012 - "string_cache", 3013 - "term", 3014 - "tiny-keccak", 3015 - "unicode-xid", 3016 - ] 3017 - 3018 - [[package]] 3019 3691 name = "lalrpop-util" 3020 - version = "0.19.12" 3692 + version = "0.20.0" 3021 3693 source = "registry+https://github.com/rust-lang/crates.io-index" 3022 - checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed" 3023 - dependencies = [ 3024 - "regex", 3025 - ] 3694 + checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" 3026 3695 3027 3696 [[package]] 3028 3697 name = "lazy-regex" ··· 3063 3732 checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 3064 3733 3065 3734 [[package]] 3066 - name = "lexical" 3067 - version = "6.1.1" 3068 - source = "registry+https://github.com/rust-lang/crates.io-index" 3069 - checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6" 3070 - dependencies = [ 3071 - "lexical-core", 3072 - ] 3073 - 3074 - [[package]] 3075 - name = "lexical-core" 3076 - version = "0.8.5" 3077 - source = "registry+https://github.com/rust-lang/crates.io-index" 3078 - checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46" 3079 - dependencies = [ 3080 - "lexical-parse-float", 3081 - "lexical-parse-integer", 3082 - "lexical-util", 3083 - "lexical-write-float", 3084 - "lexical-write-integer", 3085 - ] 3086 - 3087 - [[package]] 3088 - name = "lexical-parse-float" 3089 - version = "0.8.5" 3090 - source = "registry+https://github.com/rust-lang/crates.io-index" 3091 - checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f" 3092 - dependencies = [ 3093 - "lexical-parse-integer", 3094 - "lexical-util", 3095 - "static_assertions", 3096 - ] 3097 - 3098 - [[package]] 3099 - name = "lexical-parse-integer" 3100 - version = "0.8.6" 3101 - source = "registry+https://github.com/rust-lang/crates.io-index" 3102 - checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9" 3103 - dependencies = [ 3104 - "lexical-util", 3105 - "static_assertions", 3106 - ] 3107 - 3108 - [[package]] 3109 - name = "lexical-util" 3110 - version = "0.8.5" 3111 - source = "registry+https://github.com/rust-lang/crates.io-index" 3112 - checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc" 3113 - dependencies = [ 3114 - "static_assertions", 3115 - ] 3116 - 3117 - [[package]] 3118 - name = "lexical-write-float" 3119 - version = "0.8.5" 3120 - source = "registry+https://github.com/rust-lang/crates.io-index" 3121 - checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862" 3122 - dependencies = [ 3123 - "lexical-util", 3124 - "lexical-write-integer", 3125 - "static_assertions", 3126 - ] 3127 - 3128 - [[package]] 3129 - name = "lexical-write-integer" 3130 - version = "0.8.5" 3131 - source = "registry+https://github.com/rust-lang/crates.io-index" 3132 - checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446" 3133 - dependencies = [ 3134 - "lexical-util", 3135 - "static_assertions", 3136 - ] 3137 - 3138 - [[package]] 3139 3735 name = "libc" 3140 - version = "0.2.149" 3736 + version = "0.2.150" 3141 3737 source = "registry+https://github.com/rust-lang/crates.io-index" 3142 - checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 3738 + checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 3143 3739 3144 3740 [[package]] 3145 3741 name = "libgit2-sys" ··· 3170 3766 checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 3171 3767 3172 3768 [[package]] 3769 + name = "libredox" 3770 + version = "0.0.1" 3771 + source = "registry+https://github.com/rust-lang/crates.io-index" 3772 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 3773 + dependencies = [ 3774 + "bitflags 2.4.1", 3775 + "libc", 3776 + "redox_syscall 0.4.1", 3777 + ] 3778 + 3779 + [[package]] 3173 3780 name = "libsqlite3-sys" 3174 3781 version = "0.26.0" 3175 3782 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3221 3828 3222 3829 [[package]] 3223 3830 name = "linux-raw-sys" 3224 - version = "0.4.10" 3831 + version = "0.4.11" 3225 3832 source = "registry+https://github.com/rust-lang/crates.io-index" 3226 - checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 3833 + checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 3227 3834 3228 3835 [[package]] 3229 3836 name = "lock_api" ··· 3245 3852 ] 3246 3853 3247 3854 [[package]] 3248 - name = "lru" 3249 - version = "0.10.1" 3855 + name = "loki-api" 3856 + version = "0.1.1" 3250 3857 source = "registry+https://github.com/rust-lang/crates.io-index" 3251 - checksum = "718e8fae447df0c7e1ba7f5189829e63fd536945c8988d61444c19039f16b670" 3858 + checksum = "f56d36f573486ba7f462b62cbae597fef7d5d93665e7047956b457531b8a1ced" 3252 3859 dependencies = [ 3253 - "hashbrown 0.13.2", 3860 + "prost", 3861 + "prost-types", 3254 3862 ] 3255 3863 3256 3864 [[package]] 3257 - name = "lz4_flex" 3258 - version = "0.9.5" 3865 + name = "lru" 3866 + version = "0.12.0" 3259 3867 source = "registry+https://github.com/rust-lang/crates.io-index" 3260 - checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3" 3868 + checksum = "1efa59af2ddfad1854ae27d75009d538d0998b4b2fd47083e743ac1a10e46c60" 3261 3869 dependencies = [ 3262 - "twox-hash", 3870 + "hashbrown 0.14.2", 3263 3871 ] 3264 3872 3265 3873 [[package]] ··· 3291 3899 3292 3900 [[package]] 3293 3901 name = "magic-crypt" 3294 - version = "3.1.12" 3902 + version = "3.1.13" 3295 3903 source = "registry+https://github.com/rust-lang/crates.io-index" 3296 - checksum = "0196bd5c76f5f51d7d6563545f86262fef4c82d75466ba6f6d359c40a523318d" 3904 + checksum = "6c42f95f9d296f2dcb50665f507ed5a68a171453142663ce44d77a4eb217b053" 3297 3905 dependencies = [ 3298 - "aes", 3299 - "base64 0.13.1", 3906 + "aes 0.7.5", 3907 + "base64 0.21.5", 3300 3908 "block-modes", 3301 3909 "crc-any", 3302 3910 "des", ··· 3324 3932 "base64 0.20.0", 3325 3933 "gethostname", 3326 3934 "mail-builder", 3327 - "rustls", 3935 + "rustls 0.21.9", 3328 3936 "smtp-proto", 3329 3937 "tokio", 3330 - "tokio-rustls", 3938 + "tokio-rustls 0.24.1", 3331 3939 "webpki-roots 0.25.2", 3332 3940 ] 3333 3941 3334 3942 [[package]] 3943 + name = "malachite" 3944 + version = "0.4.4" 3945 + source = "registry+https://github.com/rust-lang/crates.io-index" 3946 + checksum = "220cb36c52aa6eff45559df497abe0e2a4c1209f92279a746a399f622d7b95c7" 3947 + dependencies = [ 3948 + "malachite-base", 3949 + "malachite-nz", 3950 + "malachite-q", 3951 + ] 3952 + 3953 + [[package]] 3954 + name = "malachite-base" 3955 + version = "0.4.4" 3956 + source = "registry+https://github.com/rust-lang/crates.io-index" 3957 + checksum = "6538136c5daf04126d6be4899f7fe4879b7f8de896dd1b4210fe6de5b94f2555" 3958 + dependencies = [ 3959 + "itertools 0.11.0", 3960 + "ryu", 3961 + ] 3962 + 3963 + [[package]] 3964 + name = "malachite-bigint" 3965 + version = "0.1.1" 3966 + source = "registry+https://github.com/rust-lang/crates.io-index" 3967 + checksum = "76c3eca3b5df299486144c8423c45c24bdf9e82e2452c8a1eeda547c4d8b5d41" 3968 + dependencies = [ 3969 + "derive_more", 3970 + "malachite", 3971 + "num-integer", 3972 + "num-traits", 3973 + "paste", 3974 + ] 3975 + 3976 + [[package]] 3977 + name = "malachite-nz" 3978 + version = "0.4.4" 3979 + source = "registry+https://github.com/rust-lang/crates.io-index" 3980 + checksum = "5f0b05577b7a3f09433106460b10304f97fc572f0baabf6640e6cb1e23f5fc52" 3981 + dependencies = [ 3982 + "embed-doc-image", 3983 + "itertools 0.11.0", 3984 + "malachite-base", 3985 + ] 3986 + 3987 + [[package]] 3988 + name = "malachite-q" 3989 + version = "0.4.4" 3990 + source = "registry+https://github.com/rust-lang/crates.io-index" 3991 + checksum = "a1cfdb4016292e6acd832eaee261175f3af8bbee62afeefe4420ebce4c440cb5" 3992 + dependencies = [ 3993 + "itertools 0.11.0", 3994 + "malachite-base", 3995 + "malachite-nz", 3996 + ] 3997 + 3998 + [[package]] 3335 3999 name = "matchers" 3336 4000 version = "0.1.0" 3337 4001 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3431 4095 3432 4096 [[package]] 3433 4097 name = "mio" 3434 - version = "0.8.8" 4098 + version = "0.8.9" 3435 4099 source = "registry+https://github.com/rust-lang/crates.io-index" 3436 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 4100 + checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 3437 4101 dependencies = [ 3438 4102 "libc", 3439 4103 "log", ··· 3443 4107 3444 4108 [[package]] 3445 4109 name = "monostate" 3446 - version = "0.1.9" 4110 + version = "0.1.10" 3447 4111 source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "15f370ae88093ec6b11a710dec51321a61d420fafd1bad6e30d01bd9c920e8ee" 4112 + checksum = "e404e13820ea0df0eda93aa294e0c80de76a0daa6bec590d376fbec6d7810394" 3449 4113 dependencies = [ 3450 4114 "monostate-impl", 3451 4115 "serde", ··· 3453 4117 3454 4118 [[package]] 3455 4119 name = "monostate-impl" 3456 - version = "0.1.9" 4120 + version = "0.1.10" 3457 4121 source = "registry+https://github.com/rust-lang/crates.io-index" 3458 - checksum = "371717c0a5543d6a800cac822eac735aa7d2d2fbb41002e9856a4089532dbdce" 4122 + checksum = "531c82a934da419bed3da09bd87d6e98c72f8d4aa755427b3b009c2b8b8c433c" 3459 4123 dependencies = [ 3460 4124 "proc-macro2", 3461 4125 "quote", 3462 - "syn 2.0.38", 4126 + "syn 2.0.39", 3463 4127 ] 3464 4128 3465 4129 [[package]] ··· 3475 4139 "proc-macro-error", 3476 4140 "proc-macro2", 3477 4141 "quote", 3478 - "syn 2.0.38", 4142 + "syn 2.0.39", 3479 4143 "termcolor", 3480 4144 "thiserror", 3481 4145 ] 3482 4146 3483 4147 [[package]] 3484 4148 name = "mysql_async" 3485 - version = "0.32.2" 4149 + version = "0.33.0" 3486 4150 source = "registry+https://github.com/rust-lang/crates.io-index" 3487 - checksum = "f5272f59b5b1f93d65f7f826c1f025d6e410e89fb50a67e05aa20b35a55a8c0a" 4151 + checksum = "6750b17ce50f8f112ef1a8394121090d47c596b56a6a17569ca680a9626e2ef2" 3488 4152 dependencies = [ 3489 4153 "bytes", 3490 4154 "crossbeam", ··· 3492 4156 "futures-core", 3493 4157 "futures-sink", 3494 4158 "futures-util", 4159 + "keyed_priority_queue", 3495 4160 "lazy_static", 3496 4161 "lru", 3497 4162 "mio", 3498 4163 "mysql_common", 3499 4164 "native-tls", 3500 4165 "once_cell", 3501 - "pem 2.0.1", 4166 + "pem 3.0.2", 3502 4167 "percent-encoding", 3503 4168 "pin-project", 3504 - "priority-queue", 4169 + "rand 0.8.5", 3505 4170 "serde", 3506 4171 "serde_json", 3507 4172 "socket2 0.5.5", ··· 3515 4180 3516 4181 [[package]] 3517 4182 name = "mysql_common" 3518 - version = "0.30.6" 4183 + version = "0.31.0" 3519 4184 source = "registry+https://github.com/rust-lang/crates.io-index" 3520 - checksum = "57349d5a326b437989b6ee4dc8f2f34b0cc131202748414712a8e7d98952fc8c" 4185 + checksum = "06f19e4cfa0ab5a76b627cec2d81331c49b034988eaf302c3bafeada684eadef" 3521 4186 dependencies = [ 3522 - "base64 0.21.4", 3523 - "bigdecimal 0.3.1", 3524 - "bindgen 0.68.1", 4187 + "base64 0.21.5", 4188 + "bigdecimal 0.4.2", 4189 + "bindgen 0.69.1", 3525 4190 "bitflags 2.4.1", 3526 4191 "bitvec", 4192 + "btoi", 3527 4193 "byteorder", 3528 4194 "bytes", 3529 4195 "cc", ··· 3532 4198 "flate2", 3533 4199 "frunk", 3534 4200 "lazy_static", 3535 - "lexical", 3536 4201 "mysql-common-derive", 3537 4202 "num-bigint", 3538 4203 "num-traits", ··· 3549 4214 "thiserror", 3550 4215 "time", 3551 4216 "uuid 1.5.0", 4217 + "zstd 0.12.4", 3552 4218 ] 3553 4219 3554 4220 [[package]] ··· 3642 4308 source = "registry+https://github.com/rust-lang/crates.io-index" 3643 4309 checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 3644 4310 dependencies = [ 4311 + "bytemuck", 3645 4312 "num-traits", 3646 - "serde", 3647 4313 ] 3648 4314 3649 4315 [[package]] ··· 3749 4415 3750 4416 [[package]] 3751 4417 name = "openssl" 3752 - version = "0.10.57" 4418 + version = "0.10.59" 3753 4419 source = "registry+https://github.com/rust-lang/crates.io-index" 3754 - checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 4420 + checksum = "7a257ad03cd8fb16ad4172fedf8094451e1af1c4b70097636ef2eac9a5f0cc33" 3755 4421 dependencies = [ 3756 4422 "bitflags 2.4.1", 3757 4423 "cfg-if", ··· 3770 4436 dependencies = [ 3771 4437 "proc-macro2", 3772 4438 "quote", 3773 - "syn 2.0.38", 4439 + "syn 2.0.39", 3774 4440 ] 3775 4441 3776 4442 [[package]] ··· 3781 4447 3782 4448 [[package]] 3783 4449 name = "openssl-sys" 3784 - version = "0.9.93" 4450 + version = "0.9.95" 3785 4451 source = "registry+https://github.com/rust-lang/crates.io-index" 3786 - checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 4452 + checksum = "40a4130519a360279579c2053038317e40eff64d13fd3f004f9e1b72b8a6aaf9" 3787 4453 dependencies = [ 3788 4454 "cc", 3789 4455 "libc", ··· 3810 4476 checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3811 4477 3812 4478 [[package]] 4479 + name = "p256" 4480 + version = "0.11.1" 4481 + source = "registry+https://github.com/rust-lang/crates.io-index" 4482 + checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 4483 + dependencies = [ 4484 + "ecdsa", 4485 + "elliptic-curve", 4486 + "sha2 0.10.8", 4487 + ] 4488 + 4489 + [[package]] 3813 4490 name = "parking" 3814 4491 version = "2.2.0" 3815 4492 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3817 4494 3818 4495 [[package]] 3819 4496 name = "parking_lot" 4497 + version = "0.11.2" 4498 + source = "registry+https://github.com/rust-lang/crates.io-index" 4499 + checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 4500 + dependencies = [ 4501 + "instant", 4502 + "lock_api", 4503 + "parking_lot_core 0.8.6", 4504 + ] 4505 + 4506 + [[package]] 4507 + name = "parking_lot" 3820 4508 version = "0.12.1" 3821 4509 source = "registry+https://github.com/rust-lang/crates.io-index" 3822 4510 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3823 4511 dependencies = [ 3824 4512 "lock_api", 3825 - "parking_lot_core", 4513 + "parking_lot_core 0.9.9", 4514 + ] 4515 + 4516 + [[package]] 4517 + name = "parking_lot_core" 4518 + version = "0.8.6" 4519 + source = "registry+https://github.com/rust-lang/crates.io-index" 4520 + checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 4521 + dependencies = [ 4522 + "cfg-if", 4523 + "instant", 4524 + "libc", 4525 + "redox_syscall 0.2.16", 4526 + "smallvec", 4527 + "winapi", 3826 4528 ] 3827 4529 3828 4530 [[package]] ··· 3849 4551 3850 4552 [[package]] 3851 4553 name = "password-hash" 4554 + version = "0.4.2" 4555 + source = "registry+https://github.com/rust-lang/crates.io-index" 4556 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 4557 + dependencies = [ 4558 + "base64ct", 4559 + "rand_core 0.6.4", 4560 + "subtle", 4561 + ] 4562 + 4563 + [[package]] 4564 + name = "password-hash" 3852 4565 version = "0.5.0" 3853 4566 source = "registry+https://github.com/rust-lang/crates.io-index" 3854 4567 checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" ··· 3871 4584 checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 3872 4585 3873 4586 [[package]] 4587 + name = "pbkdf2" 4588 + version = "0.11.0" 4589 + source = "registry+https://github.com/rust-lang/crates.io-index" 4590 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 4591 + dependencies = [ 4592 + "digest 0.10.7", 4593 + "hmac", 4594 + "password-hash 0.4.2", 4595 + "sha2 0.10.8", 4596 + ] 4597 + 4598 + [[package]] 3874 4599 name = "peeking_take_while" 3875 4600 version = "0.1.2" 3876 4601 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3887 4612 3888 4613 [[package]] 3889 4614 name = "pem" 3890 - version = "2.0.1" 3891 - source = "registry+https://github.com/rust-lang/crates.io-index" 3892 - checksum = "6b13fe415cdf3c8e44518e18a7c95a13431d9bdf6d15367d82b23c377fdd441a" 3893 - dependencies = [ 3894 - "base64 0.21.4", 3895 - "serde", 3896 - ] 3897 - 3898 - [[package]] 3899 - name = "pem" 3900 4615 version = "3.0.2" 3901 4616 source = "registry+https://github.com/rust-lang/crates.io-index" 3902 4617 checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923" 3903 4618 dependencies = [ 3904 - "base64 0.21.4", 4619 + "base64 0.21.5", 3905 4620 "serde", 3906 4621 ] 3907 4622 ··· 3930 4645 checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 3931 4646 3932 4647 [[package]] 3933 - name = "pest" 3934 - version = "2.7.4" 3935 - source = "registry+https://github.com/rust-lang/crates.io-index" 3936 - checksum = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4" 4648 + name = "pg-embed" 4649 + version = "0.7.2" 4650 + source = "git+https://github.com/faokunega/pg-embed#72db5e053f0afac6eee51d3baa2fd5c90803e02d" 3937 4651 dependencies = [ 3938 - "memchr", 4652 + "archiver-rs", 4653 + "async-trait", 4654 + "bytes", 4655 + "dirs 5.0.1", 4656 + "futures", 4657 + "lazy_static", 4658 + "log", 4659 + "reqwest", 4660 + "sqlx 0.6.3", 3939 4661 "thiserror", 3940 - "ucd-trie", 3941 - ] 3942 - 3943 - [[package]] 3944 - name = "petgraph" 3945 - version = "0.6.4" 3946 - source = "registry+https://github.com/rust-lang/crates.io-index" 3947 - checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 3948 - dependencies = [ 3949 - "fixedbitset", 3950 - "indexmap 2.0.2", 4662 + "tokio", 4663 + "zip", 3951 4664 ] 3952 4665 3953 4666 [[package]] ··· 3969 4682 dependencies = [ 3970 4683 "phf_macros 0.11.2", 3971 4684 "phf_shared 0.11.2", 3972 - ] 3973 - 3974 - [[package]] 3975 - name = "phf_codegen" 3976 - version = "0.10.0" 3977 - source = "registry+https://github.com/rust-lang/crates.io-index" 3978 - checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 3979 - dependencies = [ 3980 - "phf_generator 0.10.0", 3981 - "phf_shared 0.10.0", 3982 4685 ] 3983 4686 3984 4687 [[package]] ··· 4035 4738 "phf_shared 0.11.2", 4036 4739 "proc-macro2", 4037 4740 "quote", 4038 - "syn 2.0.38", 4741 + "syn 2.0.39", 4039 4742 ] 4040 4743 4041 4744 [[package]] ··· 4073 4776 dependencies = [ 4074 4777 "proc-macro2", 4075 4778 "quote", 4076 - "syn 2.0.38", 4779 + "syn 2.0.39", 4077 4780 ] 4078 4781 4079 4782 [[package]] ··· 4150 4853 4151 4854 [[package]] 4152 4855 name = "pmutil" 4856 + version = "0.5.3" 4857 + source = "registry+https://github.com/rust-lang/crates.io-index" 4858 + checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004" 4859 + dependencies = [ 4860 + "proc-macro2", 4861 + "quote", 4862 + "syn 1.0.109", 4863 + ] 4864 + 4865 + [[package]] 4866 + name = "pmutil" 4153 4867 version = "0.6.1" 4154 4868 source = "registry+https://github.com/rust-lang/crates.io-index" 4155 4869 checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6" 4156 4870 dependencies = [ 4157 4871 "proc-macro2", 4158 4872 "quote", 4159 - "syn 2.0.38", 4873 + "syn 2.0.39", 4160 4874 ] 4161 4875 4162 4876 [[package]] ··· 4177 4891 4178 4892 [[package]] 4179 4893 name = "portable-atomic" 4180 - version = "1.4.3" 4894 + version = "1.5.1" 4181 4895 source = "registry+https://github.com/rust-lang/crates.io-index" 4182 - checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" 4896 + checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b" 4183 4897 4184 4898 [[package]] 4185 4899 name = "postgres" ··· 4214 4928 source = "registry+https://github.com/rust-lang/crates.io-index" 4215 4929 checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520" 4216 4930 dependencies = [ 4217 - "base64 0.21.4", 4931 + "base64 0.21.5", 4218 4932 "byteorder", 4219 4933 "bytes", 4220 4934 "fallible-iterator", ··· 4261 4975 checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 4262 4976 4263 4977 [[package]] 4978 + name = "pretty-hex" 4979 + version = "0.3.0" 4980 + source = "registry+https://github.com/rust-lang/crates.io-index" 4981 + checksum = "c6fa0831dd7cc608c38a5e323422a0077678fa5744aa2be4ad91c4ece8eec8d5" 4982 + 4983 + [[package]] 4264 4984 name = "prettyplease" 4265 4985 version = "0.1.25" 4266 4986 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4277 4997 checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" 4278 4998 dependencies = [ 4279 4999 "proc-macro2", 4280 - "syn 2.0.38", 4281 - ] 4282 - 4283 - [[package]] 4284 - name = "priority-queue" 4285 - version = "1.3.2" 4286 - source = "registry+https://github.com/rust-lang/crates.io-index" 4287 - checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" 4288 - dependencies = [ 4289 - "autocfg", 4290 - "indexmap 1.9.3", 5000 + "syn 2.0.39", 4291 5001 ] 4292 5002 4293 5003 [[package]] 4294 5004 name = "proc-macro-crate" 4295 - version = "0.1.5" 5005 + version = "1.3.1" 4296 5006 source = "registry+https://github.com/rust-lang/crates.io-index" 4297 - checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" 5007 + checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 4298 5008 dependencies = [ 4299 - "toml 0.5.11", 5009 + "once_cell", 5010 + "toml_edit 0.19.15", 4300 5011 ] 4301 5012 4302 5013 [[package]] 4303 5014 name = "proc-macro-crate" 4304 - version = "1.3.1" 5015 + version = "2.0.0" 4305 5016 source = "registry+https://github.com/rust-lang/crates.io-index" 4306 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 5017 + checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 4307 5018 dependencies = [ 4308 - "once_cell", 4309 - "toml_edit", 5019 + "toml_edit 0.20.7", 4310 5020 ] 4311 5021 4312 5022 [[package]] ··· 4397 5107 "schemars", 4398 5108 "serde", 4399 5109 "serde_json", 4400 - "syn 2.0.38", 5110 + "syn 2.0.39", 4401 5111 "thiserror", 4402 5112 "typify", 4403 5113 "unicode-ident", ··· 4417 5127 "serde_json", 4418 5128 "serde_tokenstream", 4419 5129 "serde_yaml", 4420 - "syn 2.0.38", 5130 + "syn 2.0.39", 4421 5131 ] 4422 5132 4423 5133 [[package]] ··· 4436 5146 "fnv", 4437 5147 "lazy_static", 4438 5148 "memchr", 4439 - "parking_lot", 5149 + "parking_lot 0.12.1", 4440 5150 "thiserror", 4441 5151 ] 4442 5152 4443 5153 [[package]] 5154 + name = "prost" 5155 + version = "0.11.9" 5156 + source = "registry+https://github.com/rust-lang/crates.io-index" 5157 + checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 5158 + dependencies = [ 5159 + "bytes", 5160 + "prost-derive", 5161 + ] 5162 + 5163 + [[package]] 5164 + name = "prost-derive" 5165 + version = "0.11.9" 5166 + source = "registry+https://github.com/rust-lang/crates.io-index" 5167 + checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 5168 + dependencies = [ 5169 + "anyhow", 5170 + "itertools 0.10.5", 5171 + "proc-macro2", 5172 + "quote", 5173 + "syn 1.0.109", 5174 + ] 5175 + 5176 + [[package]] 5177 + name = "prost-types" 5178 + version = "0.11.9" 5179 + source = "registry+https://github.com/rust-lang/crates.io-index" 5180 + checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 5181 + dependencies = [ 5182 + "prost", 5183 + ] 5184 + 5185 + [[package]] 4444 5186 name = "psm" 4445 5187 version = "0.1.21" 4446 5188 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4470 5212 ] 4471 5213 4472 5214 [[package]] 5215 + name = "pulp" 5216 + version = "0.18.4" 5217 + source = "registry+https://github.com/rust-lang/crates.io-index" 5218 + checksum = "7057c1435edb390ebfc51743abad043377f1f698ce8e649a9b52a4b378be5e4d" 5219 + dependencies = [ 5220 + "bytemuck", 5221 + "libm", 5222 + "num-complex", 5223 + "reborrow", 5224 + ] 5225 + 5226 + [[package]] 4473 5227 name = "quick-xml" 4474 5228 version = "0.28.2" 4475 5229 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4485 5239 source = "registry+https://github.com/rust-lang/crates.io-index" 4486 5240 checksum = "f69f8d22fa3f34f3083d9a4375c038732c7a7e964de1beb81c544da92dfc40b8" 4487 5241 dependencies = [ 4488 - "ahash 0.8.3", 5242 + "ahash 0.8.6", 4489 5243 "equivalent", 4490 5244 "hashbrown 0.14.2", 4491 - "parking_lot", 5245 + "parking_lot 0.12.1", 4492 5246 ] 4493 5247 4494 5248 [[package]] ··· 4571 5325 source = "registry+https://github.com/rust-lang/crates.io-index" 4572 5326 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4573 5327 dependencies = [ 4574 - "getrandom 0.2.10", 5328 + "getrandom 0.2.11", 4575 5329 ] 4576 5330 4577 5331 [[package]] ··· 4690 5444 4691 5445 [[package]] 4692 5446 name = "redox_users" 4693 - version = "0.4.3" 5447 + version = "0.4.4" 4694 5448 source = "registry+https://github.com/rust-lang/crates.io-index" 4695 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 5449 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 4696 5450 dependencies = [ 4697 - "getrandom 0.2.10", 4698 - "redox_syscall 0.2.16", 5451 + "getrandom 0.2.11", 5452 + "libredox", 4699 5453 "thiserror", 4700 5454 ] 4701 5455 ··· 4774 5528 source = "registry+https://github.com/rust-lang/crates.io-index" 4775 5529 checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 4776 5530 dependencies = [ 4777 - "async-compression 0.4.4", 4778 - "base64 0.21.4", 5531 + "async-compression 0.4.5", 5532 + "base64 0.21.5", 4779 5533 "bytes", 4780 5534 "encoding_rs", 4781 5535 "futures-core", ··· 4794 5548 "once_cell", 4795 5549 "percent-encoding", 4796 5550 "pin-project-lite", 4797 - "rustls", 5551 + "rustls 0.21.9", 4798 5552 "rustls-pemfile", 4799 5553 "serde", 4800 5554 "serde_json", ··· 4802 5556 "system-configuration", 4803 5557 "tokio", 4804 5558 "tokio-native-tls", 4805 - "tokio-rustls", 5559 + "tokio-rustls 0.24.1", 4806 5560 "tokio-socks", 4807 5561 "tokio-util", 4808 5562 "tower-service", ··· 4816 5570 ] 4817 5571 4818 5572 [[package]] 5573 + name = "rfc6979" 5574 + version = "0.3.1" 5575 + source = "registry+https://github.com/rust-lang/crates.io-index" 5576 + checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 5577 + dependencies = [ 5578 + "crypto-bigint", 5579 + "hmac", 5580 + "zeroize", 5581 + ] 5582 + 5583 + [[package]] 4819 5584 name = "riff" 4820 5585 version = "1.0.1" 4821 5586 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4843 5608 checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 4844 5609 dependencies = [ 4845 5610 "cc", 4846 - "getrandom 0.2.10", 5611 + "getrandom 0.2.11", 4847 5612 "libc", 4848 5613 "spin 0.9.8", 4849 5614 "untrusted 0.9.0", ··· 4901 5666 4902 5667 [[package]] 4903 5668 name = "rsa" 4904 - version = "0.9.2" 5669 + version = "0.9.3" 4905 5670 source = "registry+https://github.com/rust-lang/crates.io-index" 4906 - checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" 5671 + checksum = "86ef35bf3e7fe15a53c4ab08a998e42271eab13eb0db224126bc7bc4c4bad96d" 4907 5672 dependencies = [ 4908 - "byteorder", 4909 5673 "const-oid", 4910 5674 "digest 0.10.7", 4911 5675 "num-bigint-dig", 4912 5676 "num-integer", 4913 - "num-iter", 4914 5677 "num-traits", 4915 5678 "pkcs1 0.7.5", 4916 5679 "pkcs8 0.10.2", 4917 5680 "rand_core 0.6.4", 4918 - "signature 2.1.0", 5681 + "signature 2.2.0", 4919 5682 "spki 0.7.2", 4920 5683 "subtle", 4921 5684 "zeroize", ··· 4956 5719 "proc-macro2", 4957 5720 "quote", 4958 5721 "rust-embed-utils", 4959 - "syn 2.0.38", 5722 + "syn 2.0.39", 4960 5723 "walkdir", 4961 5724 ] 4962 5725 ··· 4972 5735 4973 5736 [[package]] 4974 5737 name = "rust_decimal" 4975 - version = "1.32.0" 5738 + version = "1.33.1" 4976 5739 source = "registry+https://github.com/rust-lang/crates.io-index" 4977 - checksum = "a4c4216490d5a413bc6d10fa4742bd7d4955941d062c0ef873141d6b0e7b30fd" 5740 + checksum = "06676aec5ccb8fc1da723cc8c0f9a46549f21ebb8753d3915c6c41db1e7f1dc4" 4978 5741 dependencies = [ 4979 5742 "arrayvec", 4980 5743 "borsh", ··· 5019 5782 5020 5783 [[package]] 5021 5784 name = "rustfmt-wrapper" 5022 - version = "0.2.0" 5785 + version = "0.2.1" 5023 5786 source = "registry+https://github.com/rust-lang/crates.io-index" 5024 - checksum = "ed729e3bee08ec2befd593c27e90ca9fdd25efdc83c94c3b82eaef16e4f7406e" 5787 + checksum = "f1adc9dfed5cc999077978cc7163b9282c5751c8d39827c4ea8c8c220ca5a440" 5025 5788 dependencies = [ 5026 5789 "serde", 5027 5790 "tempfile", 5028 5791 "thiserror", 5029 - "toml 0.5.11", 5792 + "toml 0.8.8", 5030 5793 "toolchain_find", 5031 5794 ] 5032 5795 5033 5796 [[package]] 5034 5797 name = "rustix" 5035 - version = "0.37.26" 5798 + version = "0.37.27" 5036 5799 source = "registry+https://github.com/rust-lang/crates.io-index" 5037 - checksum = "84f3f8f960ed3b5a59055428714943298bf3fa2d4a1d53135084e0544829d995" 5800 + checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 5038 5801 dependencies = [ 5039 5802 "bitflags 1.3.2", 5040 5803 "errno", ··· 5046 5809 5047 5810 [[package]] 5048 5811 name = "rustix" 5049 - version = "0.38.20" 5812 + version = "0.38.24" 5050 5813 source = "registry+https://github.com/rust-lang/crates.io-index" 5051 - checksum = "67ce50cb2e16c2903e30d1cbccfd8387a74b9d4c938b6a4c5ec6cc7556f7a8a0" 5814 + checksum = "9ad981d6c340a49cdc40a1028d9c6084ec7e9fa33fcb839cab656a267071e234" 5052 5815 dependencies = [ 5053 5816 "bitflags 2.4.1", 5054 5817 "errno", 5055 5818 "libc", 5056 - "linux-raw-sys 0.4.10", 5819 + "linux-raw-sys 0.4.11", 5057 5820 "windows-sys 0.48.0", 5058 5821 ] 5059 5822 5060 5823 [[package]] 5061 5824 name = "rustls" 5062 - version = "0.21.7" 5825 + version = "0.20.9" 5063 5826 source = "registry+https://github.com/rust-lang/crates.io-index" 5064 - checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" 5827 + checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" 5065 5828 dependencies = [ 5066 5829 "log", 5067 5830 "ring 0.16.20", 5831 + "sct", 5832 + "webpki", 5833 + ] 5834 + 5835 + [[package]] 5836 + name = "rustls" 5837 + version = "0.21.9" 5838 + source = "registry+https://github.com/rust-lang/crates.io-index" 5839 + checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" 5840 + dependencies = [ 5841 + "log", 5842 + "ring 0.17.5", 5068 5843 "rustls-webpki", 5069 5844 "sct", 5070 5845 ] ··· 5083 5858 5084 5859 [[package]] 5085 5860 name = "rustls-pemfile" 5086 - version = "1.0.3" 5861 + version = "1.0.4" 5087 5862 source = "registry+https://github.com/rust-lang/crates.io-index" 5088 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 5863 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 5089 5864 dependencies = [ 5090 - "base64 0.21.4", 5865 + "base64 0.21.5", 5091 5866 ] 5092 5867 5093 5868 [[package]] 5094 5869 name = "rustls-webpki" 5095 - version = "0.101.6" 5870 + version = "0.101.7" 5096 5871 source = "registry+https://github.com/rust-lang/crates.io-index" 5097 - checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe" 5872 + checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 5098 5873 dependencies = [ 5099 - "ring 0.16.20", 5100 - "untrusted 0.7.1", 5874 + "ring 0.17.5", 5875 + "untrusted 0.9.0", 5101 5876 ] 5102 5877 5103 5878 [[package]] 5104 5879 name = "rustpython-ast" 5105 - version = "0.2.0" 5880 + version = "0.3.0" 5106 5881 source = "registry+https://github.com/rust-lang/crates.io-index" 5107 - checksum = "f7b83af38212db64ecfc76b6d53a1c6de89733236e39c69d4bc8ab565ae167b2" 5882 + checksum = "fcf9438da3660e6b88bd659fdc0cd13bcff4b85c584026a48b800c75bf0f8d00" 5108 5883 dependencies = [ 5109 - "num-bigint", 5110 - "rustpython-compiler-core", 5111 - ] 5112 - 5113 - [[package]] 5114 - name = "rustpython-compiler-core" 5115 - version = "0.2.0" 5116 - source = "registry+https://github.com/rust-lang/crates.io-index" 5117 - checksum = "81870eb757460989d43ce41e069f1a01d0292b33011b23b0455d0a6394e4c77a" 5118 - dependencies = [ 5119 - "bincode", 5120 - "bitflags 1.3.2", 5121 - "bstr", 5122 - "itertools 0.10.5", 5123 - "lz4_flex", 5124 - "num-bigint", 5125 - "num-complex", 5126 - "serde", 5884 + "is-macro 0.2.2", 5885 + "malachite-bigint", 5886 + "rustpython-parser-core", 5127 5887 "static_assertions", 5128 - "thiserror", 5129 5888 ] 5130 5889 5131 5890 [[package]] 5132 5891 name = "rustpython-parser" 5133 - version = "0.2.0" 5892 + version = "0.3.0" 5134 5893 source = "registry+https://github.com/rust-lang/crates.io-index" 5135 - checksum = "db7348e148144ba85bc1284d97004062137306554fd00e7eb500d91720de5e78" 5894 + checksum = "9db993974ff12f33c5be8a801741463691502f85ead5c503277937c4077bd92a" 5136 5895 dependencies = [ 5137 - "ahash 0.7.6", 5138 5896 "anyhow", 5897 + "is-macro 0.2.2", 5139 5898 "itertools 0.10.5", 5140 - "lalrpop", 5141 5899 "lalrpop-util", 5142 5900 "log", 5143 - "num-bigint", 5901 + "malachite-bigint", 5144 5902 "num-traits", 5145 - "phf 0.10.1", 5146 - "phf_codegen 0.10.0", 5903 + "phf 0.11.2", 5904 + "phf_codegen", 5147 5905 "rustc-hash", 5148 5906 "rustpython-ast", 5149 - "rustpython-compiler-core", 5150 - "thiserror", 5907 + "rustpython-parser-core", 5151 5908 "tiny-keccak", 5152 5909 "unic-emoji-char", 5153 5910 "unic-ucd-ident", ··· 5155 5912 ] 5156 5913 5157 5914 [[package]] 5915 + name = "rustpython-parser-core" 5916 + version = "0.3.0" 5917 + source = "registry+https://github.com/rust-lang/crates.io-index" 5918 + checksum = "5e9d560c6dd4dc774d4bbad48c770e074c178c4ed5f6fd0521fcdb639af21bdd" 5919 + dependencies = [ 5920 + "is-macro 0.2.2", 5921 + "memchr", 5922 + "rustpython-parser-vendored", 5923 + ] 5924 + 5925 + [[package]] 5926 + name = "rustpython-parser-vendored" 5927 + version = "0.3.0" 5928 + source = "registry+https://github.com/rust-lang/crates.io-index" 5929 + checksum = "17ae3062d7fe5fe38073f3a1c7145ed9a04e15f6e4a596d642c7db2d5cd2b51b" 5930 + dependencies = [ 5931 + "memchr", 5932 + "once_cell", 5933 + ] 5934 + 5935 + [[package]] 5158 5936 name = "rustversion" 5159 5937 version = "1.0.14" 5160 5938 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5182 5960 source = "registry+https://github.com/rust-lang/crates.io-index" 5183 5961 checksum = "7af1a6bbd2d98a207abf060c0734b0b9eb8a2a679008bf7bb5296c8876e27958" 5184 5962 dependencies = [ 5185 - "base64 0.21.4", 5963 + "base64 0.21.5", 5186 5964 "bindgen 0.65.1", 5187 5965 "chrono", 5188 5966 "data-encoding", ··· 5229 6007 5230 6008 [[package]] 5231 6009 name = "schemars" 5232 - version = "0.8.15" 6010 + version = "0.8.16" 5233 6011 source = "registry+https://github.com/rust-lang/crates.io-index" 5234 - checksum = "1f7b0ce13155372a76ee2e1c5ffba1fe61ede73fbea5630d61eee6fac4929c0c" 6012 + checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29" 5235 6013 dependencies = [ 5236 6014 "chrono", 5237 6015 "dyn-clone", ··· 5243 6021 5244 6022 [[package]] 5245 6023 name = "schemars_derive" 5246 - version = "0.8.15" 6024 + version = "0.8.16" 5247 6025 source = "registry+https://github.com/rust-lang/crates.io-index" 5248 - checksum = "e85e2a16b12bdb763244c69ab79363d71db2b4b918a2def53f80b02e0574b13c" 6026 + checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967" 5249 6027 dependencies = [ 5250 6028 "proc-macro2", 5251 6029 "quote", ··· 5267 6045 5268 6046 [[package]] 5269 6047 name = "sct" 5270 - version = "0.7.0" 6048 + version = "0.7.1" 5271 6049 source = "registry+https://github.com/rust-lang/crates.io-index" 5272 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 6050 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 5273 6051 dependencies = [ 5274 - "ring 0.16.20", 5275 - "untrusted 0.7.1", 6052 + "ring 0.17.5", 6053 + "untrusted 0.9.0", 5276 6054 ] 5277 6055 5278 6056 [[package]] ··· 5280 6058 version = "4.1.0" 5281 6059 source = "registry+https://github.com/rust-lang/crates.io-index" 5282 6060 checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 6061 + 6062 + [[package]] 6063 + name = "sec1" 6064 + version = "0.3.0" 6065 + source = "registry+https://github.com/rust-lang/crates.io-index" 6066 + checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 6067 + dependencies = [ 6068 + "base16ct", 6069 + "der 0.6.1", 6070 + "generic-array", 6071 + "pkcs8 0.9.0", 6072 + "subtle", 6073 + "zeroize", 6074 + ] 5283 6075 5284 6076 [[package]] 5285 6077 name = "security-framework" ··· 5310 6102 source = "registry+https://github.com/rust-lang/crates.io-index" 5311 6103 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 5312 6104 dependencies = [ 5313 - "semver-parser 0.7.0", 5314 - ] 5315 - 5316 - [[package]] 5317 - name = "semver" 5318 - version = "0.11.0" 5319 - source = "registry+https://github.com/rust-lang/crates.io-index" 5320 - checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 5321 - dependencies = [ 5322 - "semver-parser 0.10.2", 6105 + "semver-parser", 5323 6106 ] 5324 6107 5325 6108 [[package]] ··· 5338 6121 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 5339 6122 5340 6123 [[package]] 5341 - name = "semver-parser" 5342 - version = "0.10.2" 5343 - source = "registry+https://github.com/rust-lang/crates.io-index" 5344 - checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 5345 - dependencies = [ 5346 - "pest", 5347 - ] 5348 - 5349 - [[package]] 5350 6124 name = "seq-macro" 5351 6125 version = "0.3.5" 5352 6126 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5354 6128 5355 6129 [[package]] 5356 6130 name = "serde" 5357 - version = "1.0.189" 6131 + version = "1.0.192" 5358 6132 source = "registry+https://github.com/rust-lang/crates.io-index" 5359 - checksum = "8e422a44e74ad4001bdc8eede9a4570ab52f71190e9c076d14369f38b9200537" 6133 + checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" 5360 6134 dependencies = [ 5361 6135 "serde_derive", 5362 6136 ] ··· 5394 6168 5395 6169 [[package]] 5396 6170 name = "serde_derive" 5397 - version = "1.0.189" 6171 + version = "1.0.192" 5398 6172 source = "registry+https://github.com/rust-lang/crates.io-index" 5399 - checksum = "1e48d1f918009ce3145511378cf68d613e3b3d9137d67272562080d68a2b32d5" 6173 + checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" 5400 6174 dependencies = [ 5401 6175 "proc-macro2", 5402 6176 "quote", 5403 - "syn 2.0.38", 6177 + "syn 2.0.39", 5404 6178 ] 5405 6179 5406 6180 [[package]] ··· 5416 6190 5417 6191 [[package]] 5418 6192 name = "serde_json" 5419 - version = "1.0.107" 6193 + version = "1.0.108" 5420 6194 source = "registry+https://github.com/rust-lang/crates.io-index" 5421 - checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 6195 + checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 5422 6196 dependencies = [ 5423 - "indexmap 2.0.2", 6197 + "indexmap 2.1.0", 5424 6198 "itoa", 5425 6199 "ryu", 5426 6200 "serde", ··· 5437 6211 ] 5438 6212 5439 6213 [[package]] 6214 + name = "serde_plain" 6215 + version = "1.0.2" 6216 + source = "registry+https://github.com/rust-lang/crates.io-index" 6217 + checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 6218 + dependencies = [ 6219 + "serde", 6220 + ] 6221 + 6222 + [[package]] 5440 6223 name = "serde_qs" 5441 6224 version = "0.8.5" 5442 6225 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5449 6232 5450 6233 [[package]] 5451 6234 name = "serde_qs" 5452 - version = "0.9.2" 6235 + version = "0.10.1" 5453 6236 source = "registry+https://github.com/rust-lang/crates.io-index" 5454 - checksum = "6af4cee6cd4b23b45e6709150d1e9af5c748131de7e3316a7c2b3008051ed725" 6237 + checksum = "8cac3f1e2ca2fe333923a1ae72caca910b98ed0630bb35ef6f8c8517d6e81afa" 5455 6238 dependencies = [ 5456 6239 "percent-encoding", 5457 6240 "serde", ··· 5460 6243 5461 6244 [[package]] 5462 6245 name = "serde_spanned" 5463 - version = "0.6.3" 6246 + version = "0.6.4" 5464 6247 source = "registry+https://github.com/rust-lang/crates.io-index" 5465 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 6248 + checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 5466 6249 dependencies = [ 5467 6250 "serde", 5468 6251 ] ··· 5476 6259 "proc-macro2", 5477 6260 "quote", 5478 6261 "serde", 5479 - "syn 2.0.38", 6262 + "syn 2.0.39", 5480 6263 ] 5481 6264 5482 6265 [[package]] ··· 5509 6292 5510 6293 [[package]] 5511 6294 name = "serde_yaml" 5512 - version = "0.9.25" 6295 + version = "0.9.27" 5513 6296 source = "registry+https://github.com/rust-lang/crates.io-index" 5514 - checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" 6297 + checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c" 5515 6298 dependencies = [ 5516 - "indexmap 2.0.2", 6299 + "indexmap 2.1.0", 5517 6300 "itoa", 5518 6301 "ryu", 5519 6302 "serde", ··· 5608 6391 5609 6392 [[package]] 5610 6393 name = "signature" 5611 - version = "2.1.0" 6394 + version = "2.2.0" 5612 6395 source = "registry+https://github.com/rust-lang/crates.io-index" 5613 - checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" 6396 + checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 5614 6397 dependencies = [ 5615 6398 "digest 0.10.7", 5616 6399 "rand_core 0.6.4", ··· 5651 6434 5652 6435 [[package]] 5653 6436 name = "smallvec" 5654 - version = "1.11.1" 6437 + version = "1.11.2" 5655 6438 source = "registry+https://github.com/rust-lang/crates.io-index" 5656 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 6439 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 5657 6440 5658 6441 [[package]] 5659 6442 name = "smart-default" ··· 5693 6476 checksum = "d4b756ac662e92a0e5b360349bea5f0b0784d4be4541eff2972049dfdfd7f862" 5694 6477 5695 6478 [[package]] 6479 + name = "snap" 6480 + version = "1.1.0" 6481 + source = "registry+https://github.com/rust-lang/crates.io-index" 6482 + checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831" 6483 + 6484 + [[package]] 5696 6485 name = "socket2" 5697 6486 version = "0.4.10" 5698 6487 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5798 6587 5799 6588 [[package]] 5800 6589 name = "sqlx" 6590 + version = "0.6.3" 6591 + source = "registry+https://github.com/rust-lang/crates.io-index" 6592 + checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188" 6593 + dependencies = [ 6594 + "sqlx-core 0.6.3", 6595 + "sqlx-macros 0.6.3", 6596 + ] 6597 + 6598 + [[package]] 6599 + name = "sqlx" 5801 6600 version = "0.7.2" 5802 6601 source = "registry+https://github.com/rust-lang/crates.io-index" 5803 6602 checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33" 5804 6603 dependencies = [ 5805 - "sqlx-core", 5806 - "sqlx-macros", 6604 + "sqlx-core 0.7.2", 6605 + "sqlx-macros 0.7.2", 5807 6606 "sqlx-mysql", 5808 6607 "sqlx-postgres", 5809 6608 "sqlx-sqlite", ··· 5811 6610 5812 6611 [[package]] 5813 6612 name = "sqlx-core" 6613 + version = "0.6.3" 6614 + source = "registry+https://github.com/rust-lang/crates.io-index" 6615 + checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029" 6616 + dependencies = [ 6617 + "ahash 0.7.7", 6618 + "atoi 1.0.0", 6619 + "base64 0.13.1", 6620 + "bitflags 1.3.2", 6621 + "byteorder", 6622 + "bytes", 6623 + "crc", 6624 + "crossbeam-queue", 6625 + "dirs 4.0.0", 6626 + "dotenvy", 6627 + "either", 6628 + "event-listener 2.5.3", 6629 + "futures-channel", 6630 + "futures-core", 6631 + "futures-intrusive 0.4.2", 6632 + "futures-util", 6633 + "hashlink", 6634 + "hex", 6635 + "hkdf", 6636 + "hmac", 6637 + "indexmap 1.9.3", 6638 + "itoa", 6639 + "libc", 6640 + "log", 6641 + "md-5 0.10.6", 6642 + "memchr", 6643 + "once_cell", 6644 + "paste", 6645 + "percent-encoding", 6646 + "rand 0.8.5", 6647 + "rustls 0.20.9", 6648 + "rustls-pemfile", 6649 + "serde", 6650 + "serde_json", 6651 + "sha1", 6652 + "sha2 0.10.8", 6653 + "smallvec", 6654 + "sqlformat", 6655 + "sqlx-rt", 6656 + "stringprep", 6657 + "thiserror", 6658 + "tokio-stream", 6659 + "url", 6660 + "webpki-roots 0.22.6", 6661 + "whoami", 6662 + ] 6663 + 6664 + [[package]] 6665 + name = "sqlx-core" 5814 6666 version = "0.7.2" 5815 6667 source = "registry+https://github.com/rust-lang/crates.io-index" 5816 6668 checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d" 5817 6669 dependencies = [ 5818 - "ahash 0.8.3", 5819 - "atoi", 6670 + "ahash 0.8.6", 6671 + "atoi 2.0.0", 5820 6672 "bigdecimal 0.3.1", 5821 6673 "byteorder", 5822 6674 "bytes", ··· 5825 6677 "crossbeam-queue", 5826 6678 "dotenvy", 5827 6679 "either", 5828 - "event-listener", 6680 + "event-listener 2.5.3", 5829 6681 "futures-channel", 5830 6682 "futures-core", 5831 - "futures-intrusive", 6683 + "futures-intrusive 0.5.0", 5832 6684 "futures-io", 5833 6685 "futures-util", 5834 6686 "hashlink", 5835 6687 "hex", 5836 - "indexmap 2.0.2", 6688 + "indexmap 2.1.0", 5837 6689 "log", 5838 6690 "memchr", 5839 6691 "once_cell", 5840 6692 "paste", 5841 6693 "percent-encoding", 5842 - "rustls", 6694 + "rustls 0.21.9", 5843 6695 "rustls-pemfile", 5844 6696 "serde", 5845 6697 "serde_json", ··· 5857 6709 5858 6710 [[package]] 5859 6711 name = "sqlx-macros" 6712 + version = "0.6.3" 6713 + source = "registry+https://github.com/rust-lang/crates.io-index" 6714 + checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9" 6715 + dependencies = [ 6716 + "dotenvy", 6717 + "either", 6718 + "heck", 6719 + "once_cell", 6720 + "proc-macro2", 6721 + "quote", 6722 + "sha2 0.10.8", 6723 + "sqlx-core 0.6.3", 6724 + "sqlx-rt", 6725 + "syn 1.0.109", 6726 + "url", 6727 + ] 6728 + 6729 + [[package]] 6730 + name = "sqlx-macros" 5860 6731 version = "0.7.2" 5861 6732 source = "registry+https://github.com/rust-lang/crates.io-index" 5862 6733 checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec" 5863 6734 dependencies = [ 5864 6735 "proc-macro2", 5865 6736 "quote", 5866 - "sqlx-core", 6737 + "sqlx-core 0.7.2", 5867 6738 "sqlx-macros-core", 5868 6739 "syn 1.0.109", 5869 6740 ] ··· 5884 6755 "serde", 5885 6756 "serde_json", 5886 6757 "sha2 0.10.8", 5887 - "sqlx-core", 6758 + "sqlx-core 0.7.2", 5888 6759 "sqlx-mysql", 5889 6760 "sqlx-postgres", 5890 6761 "sqlx-sqlite", ··· 5900 6771 source = "registry+https://github.com/rust-lang/crates.io-index" 5901 6772 checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db" 5902 6773 dependencies = [ 5903 - "atoi", 5904 - "base64 0.21.4", 6774 + "atoi 2.0.0", 6775 + "base64 0.21.5", 5905 6776 "bigdecimal 0.3.1", 5906 6777 "bitflags 2.4.1", 5907 6778 "byteorder", ··· 5926 6797 "once_cell", 5927 6798 "percent-encoding", 5928 6799 "rand 0.8.5", 5929 - "rsa 0.9.2", 6800 + "rsa 0.9.3", 5930 6801 "serde", 5931 6802 "sha1", 5932 6803 "sha2 0.10.8", 5933 6804 "smallvec", 5934 - "sqlx-core", 6805 + "sqlx-core 0.7.2", 5935 6806 "stringprep", 5936 6807 "thiserror", 5937 6808 "tracing", ··· 5945 6816 source = "registry+https://github.com/rust-lang/crates.io-index" 5946 6817 checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624" 5947 6818 dependencies = [ 5948 - "atoi", 5949 - "base64 0.21.4", 6819 + "atoi 2.0.0", 6820 + "base64 0.21.5", 5950 6821 "bigdecimal 0.3.1", 5951 6822 "bitflags 2.4.1", 5952 6823 "byteorder", ··· 5974 6845 "sha1", 5975 6846 "sha2 0.10.8", 5976 6847 "smallvec", 5977 - "sqlx-core", 6848 + "sqlx-core 0.7.2", 5978 6849 "stringprep", 5979 6850 "thiserror", 5980 6851 "tracing", ··· 5983 6854 ] 5984 6855 5985 6856 [[package]] 6857 + name = "sqlx-rt" 6858 + version = "0.6.3" 6859 + source = "registry+https://github.com/rust-lang/crates.io-index" 6860 + checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024" 6861 + dependencies = [ 6862 + "once_cell", 6863 + "tokio", 6864 + "tokio-rustls 0.23.4", 6865 + ] 6866 + 6867 + [[package]] 5986 6868 name = "sqlx-sqlite" 5987 6869 version = "0.7.2" 5988 6870 source = "registry+https://github.com/rust-lang/crates.io-index" 5989 6871 checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f" 5990 6872 dependencies = [ 5991 - "atoi", 6873 + "atoi 2.0.0", 5992 6874 "chrono", 5993 6875 "flume", 5994 6876 "futures-channel", 5995 6877 "futures-core", 5996 6878 "futures-executor", 5997 - "futures-intrusive", 6879 + "futures-intrusive 0.5.0", 5998 6880 "futures-util", 5999 6881 "libsqlite3-sys", 6000 6882 "log", 6001 6883 "percent-encoding", 6002 6884 "serde", 6003 - "sqlx-core", 6885 + "sqlx-core 0.7.2", 6004 6886 "tracing", 6005 6887 "url", 6006 6888 "uuid 1.5.0", ··· 6039 6921 dependencies = [ 6040 6922 "new_debug_unreachable", 6041 6923 "once_cell", 6042 - "parking_lot", 6924 + "parking_lot 0.12.1", 6043 6925 "phf_shared 0.10.0", 6044 6926 "precomputed-hash", 6045 6927 "serde", ··· 6063 6945 source = "registry+https://github.com/rust-lang/crates.io-index" 6064 6946 checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252" 6065 6947 dependencies = [ 6066 - "pmutil", 6948 + "pmutil 0.6.1", 6067 6949 "proc-macro2", 6068 6950 "quote", 6069 6951 "swc_macros_common", 6070 - "syn 2.0.38", 6952 + "syn 2.0.39", 6071 6953 ] 6072 6954 6073 6955 [[package]] ··· 6106 6988 "proc-macro2", 6107 6989 "quote", 6108 6990 "rustversion", 6109 - "syn 2.0.38", 6991 + "syn 2.0.39", 6110 6992 ] 6111 6993 6112 6994 [[package]] ··· 6184 7066 source = "registry+https://github.com/rust-lang/crates.io-index" 6185 7067 checksum = "e5b5aaca9a0082be4515f0fbbecc191bf5829cd25b5b9c0a2810f6a2bb0d6829" 6186 7068 dependencies = [ 6187 - "pmutil", 7069 + "pmutil 0.6.1", 6188 7070 "proc-macro2", 6189 7071 "quote", 6190 7072 "swc_macros_common", 6191 - "syn 2.0.38", 7073 + "syn 2.0.39", 6192 7074 ] 6193 7075 6194 7076 [[package]] ··· 6198 7080 checksum = "b7191c8c57af059b75a2aadc927a2608c3962d19e4d09ce8f9c3f03739ddf833" 6199 7081 dependencies = [ 6200 7082 "bitflags 2.4.1", 6201 - "is-macro", 7083 + "is-macro 0.3.0", 6202 7084 "num-bigint", 6203 7085 "scoped-tls", 6204 7086 "serde", ··· 6233 7115 source = "registry+https://github.com/rust-lang/crates.io-index" 6234 7116 checksum = "dcdff076dccca6cc6a0e0b2a2c8acfb066014382bc6df98ec99e755484814384" 6235 7117 dependencies = [ 6236 - "pmutil", 7118 + "pmutil 0.6.1", 6237 7119 "proc-macro2", 6238 7120 "quote", 6239 7121 "swc_macros_common", 6240 - "syn 2.0.38", 7122 + "syn 2.0.39", 6241 7123 ] 6242 7124 6243 7125 [[package]] ··· 6316 7198 source = "registry+https://github.com/rust-lang/crates.io-index" 6317 7199 checksum = "f59c4b6ed5d78d3ad9fc7c6f8ab4f85bba99573d31d9a2c0a712077a6b45efd2" 6318 7200 dependencies = [ 6319 - "pmutil", 7201 + "pmutil 0.6.1", 6320 7202 "proc-macro2", 6321 7203 "quote", 6322 7204 "swc_macros_common", 6323 - "syn 2.0.38", 7205 + "syn 2.0.39", 6324 7206 ] 6325 7207 6326 7208 [[package]] ··· 6421 7303 source = "registry+https://github.com/rust-lang/crates.io-index" 6422 7304 checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8" 6423 7305 dependencies = [ 6424 - "pmutil", 7306 + "pmutil 0.6.1", 6425 7307 "proc-macro2", 6426 7308 "quote", 6427 - "syn 2.0.38", 7309 + "syn 2.0.39", 6428 7310 ] 6429 7311 6430 7312 [[package]] ··· 6433 7315 source = "registry+https://github.com/rust-lang/crates.io-index" 6434 7316 checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832" 6435 7317 dependencies = [ 6436 - "pmutil", 7318 + "pmutil 0.6.1", 6437 7319 "proc-macro2", 6438 7320 "quote", 6439 - "syn 2.0.38", 7321 + "syn 2.0.39", 6440 7322 ] 6441 7323 6442 7324 [[package]] ··· 6456 7338 checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99" 6457 7339 dependencies = [ 6458 7340 "Inflector", 6459 - "pmutil", 7341 + "pmutil 0.6.1", 6460 7342 "proc-macro2", 6461 7343 "quote", 6462 7344 "swc_macros_common", 6463 - "syn 2.0.38", 7345 + "syn 2.0.39", 6464 7346 ] 6465 7347 6466 7348 [[package]] ··· 6476 7358 6477 7359 [[package]] 6478 7360 name = "syn" 6479 - version = "2.0.38" 7361 + version = "2.0.39" 6480 7362 source = "registry+https://github.com/rust-lang/crates.io-index" 6481 - checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 7363 + checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 6482 7364 dependencies = [ 6483 7365 "proc-macro2", 6484 7366 "quote", ··· 6486 7368 ] 6487 7369 6488 7370 [[package]] 7371 + name = "syn_derive" 7372 + version = "0.1.8" 7373 + source = "registry+https://github.com/rust-lang/crates.io-index" 7374 + checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" 7375 + dependencies = [ 7376 + "proc-macro-error", 7377 + "proc-macro2", 7378 + "quote", 7379 + "syn 2.0.39", 7380 + ] 7381 + 7382 + [[package]] 6489 7383 name = "sync_wrapper" 6490 7384 version = "0.1.2" 6491 7385 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6499 7393 dependencies = [ 6500 7394 "proc-macro2", 6501 7395 "quote", 6502 - "syn 2.0.38", 7396 + "syn 2.0.39", 6503 7397 "unicode-xid", 6504 7398 ] 6505 7399 ··· 6531 7425 checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 6532 7426 6533 7427 [[package]] 6534 - name = "tempfile" 6535 - version = "3.8.0" 7428 + name = "tar" 7429 + version = "0.4.40" 6536 7430 source = "registry+https://github.com/rust-lang/crates.io-index" 6537 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 7431 + checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 6538 7432 dependencies = [ 6539 - "cfg-if", 6540 - "fastrand 2.0.1", 6541 - "redox_syscall 0.3.5", 6542 - "rustix 0.38.20", 6543 - "windows-sys 0.48.0", 7433 + "filetime", 7434 + "libc", 7435 + "xattr", 6544 7436 ] 6545 7437 6546 7438 [[package]] 6547 - name = "term" 6548 - version = "0.7.0" 7439 + name = "tempfile" 7440 + version = "3.8.1" 6549 7441 source = "registry+https://github.com/rust-lang/crates.io-index" 6550 - checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 7442 + checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 6551 7443 dependencies = [ 6552 - "dirs-next", 6553 - "rustversion", 6554 - "winapi", 7444 + "cfg-if", 7445 + "fastrand 2.0.1", 7446 + "redox_syscall 0.4.1", 7447 + "rustix 0.38.24", 7448 + "windows-sys 0.48.0", 6555 7449 ] 6556 7450 6557 7451 [[package]] 6558 7452 name = "termcolor" 6559 - version = "1.3.0" 7453 + version = "1.4.0" 6560 7454 source = "registry+https://github.com/rust-lang/crates.io-index" 6561 - checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 7455 + checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 6562 7456 dependencies = [ 6563 7457 "winapi-util", 6564 7458 ] ··· 6589 7483 dependencies = [ 6590 7484 "proc-macro2", 6591 7485 "quote", 6592 - "syn 2.0.38", 7486 + "syn 2.0.39", 6593 7487 ] 6594 7488 6595 7489 [[package]] ··· 6603 7497 ] 6604 7498 6605 7499 [[package]] 7500 + name = "tiberius" 7501 + version = "0.12.2" 7502 + source = "registry+https://github.com/rust-lang/crates.io-index" 7503 + checksum = "dc6e2bf3e4b5be181a2a2ceff4b9b12e2684010d436a6958bd564fbc8094d44d" 7504 + dependencies = [ 7505 + "async-trait", 7506 + "asynchronous-codec", 7507 + "byteorder", 7508 + "bytes", 7509 + "chrono", 7510 + "connection-string", 7511 + "encoding", 7512 + "enumflags2", 7513 + "futures-util", 7514 + "num-traits", 7515 + "once_cell", 7516 + "pin-project-lite", 7517 + "pretty-hex", 7518 + "rustls-native-certs", 7519 + "rustls-pemfile", 7520 + "thiserror", 7521 + "tokio-rustls 0.23.4", 7522 + "tokio-util", 7523 + "tracing", 7524 + "uuid 1.5.0", 7525 + ] 7526 + 7527 + [[package]] 6606 7528 name = "tiger" 6607 7529 version = "0.1.0" 6608 7530 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6669 7591 [[package]] 6670 7592 name = "tinyvector" 6671 7593 version = "0.1.0" 6672 - source = "git+https://github.com/windmill-labs/tinyvector#20823b94c20f2b9093f318badd24026cf54dcc85" 7594 + source = "git+https://github.com/windmill-labs/tinyvector?rev=20823b94c20f2b9093f318badd24026cf54dcc85#20823b94c20f2b9093f318badd24026cf54dcc85" 6673 7595 dependencies = [ 6674 7596 "anyhow", 6675 7597 "bincode", ··· 6691 7613 "clap", 6692 7614 "derive_builder", 6693 7615 "esaxx-rs", 6694 - "getrandom 0.2.10", 7616 + "getrandom 0.2.11", 6695 7617 "indicatif", 6696 7618 "itertools 0.11.0", 6697 7619 "lazy_static", ··· 6725 7647 "libc", 6726 7648 "mio", 6727 7649 "num_cpus", 6728 - "parking_lot", 7650 + "parking_lot 0.12.1", 6729 7651 "pin-project-lite", 6730 7652 "signal-hook-registry", 6731 7653 "socket2 0.5.5", ··· 6742 7664 dependencies = [ 6743 7665 "proc-macro2", 6744 7666 "quote", 6745 - "syn 2.0.38", 7667 + "syn 2.0.39", 6746 7668 ] 6747 7669 6748 7670 [[package]] ··· 6779 7701 "futures-channel", 6780 7702 "futures-util", 6781 7703 "log", 6782 - "parking_lot", 7704 + "parking_lot 0.12.1", 6783 7705 "percent-encoding", 6784 7706 "phf 0.11.2", 6785 7707 "pin-project-lite", ··· 6794 7716 6795 7717 [[package]] 6796 7718 name = "tokio-rustls" 7719 + version = "0.23.4" 7720 + source = "registry+https://github.com/rust-lang/crates.io-index" 7721 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 7722 + dependencies = [ 7723 + "rustls 0.20.9", 7724 + "tokio", 7725 + "webpki", 7726 + ] 7727 + 7728 + [[package]] 7729 + name = "tokio-rustls" 6797 7730 version = "0.24.1" 6798 7731 source = "registry+https://github.com/rust-lang/crates.io-index" 6799 7732 checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 6800 7733 dependencies = [ 6801 - "rustls", 7734 + "rustls 0.21.9", 6802 7735 "tokio", 6803 7736 ] 6804 7737 ··· 6842 7775 6843 7776 [[package]] 6844 7777 name = "tokio-util" 6845 - version = "0.7.9" 7778 + version = "0.7.10" 6846 7779 source = "registry+https://github.com/rust-lang/crates.io-index" 6847 - checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" 7780 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 6848 7781 dependencies = [ 6849 7782 "bytes", 6850 7783 "futures-core", 7784 + "futures-io", 6851 7785 "futures-sink", 6852 7786 "pin-project-lite", 6853 7787 "tokio", ··· 6856 7790 6857 7791 [[package]] 6858 7792 name = "toml" 6859 - version = "0.5.11" 7793 + version = "0.7.8" 6860 7794 source = "registry+https://github.com/rust-lang/crates.io-index" 6861 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 7795 + checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 6862 7796 dependencies = [ 6863 7797 "serde", 7798 + "serde_spanned", 7799 + "toml_datetime", 7800 + "toml_edit 0.19.15", 6864 7801 ] 6865 7802 6866 7803 [[package]] 6867 7804 name = "toml" 6868 - version = "0.7.8" 7805 + version = "0.8.8" 6869 7806 source = "registry+https://github.com/rust-lang/crates.io-index" 6870 - checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 7807 + checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 6871 7808 dependencies = [ 6872 7809 "serde", 6873 7810 "serde_spanned", 6874 7811 "toml_datetime", 6875 - "toml_edit", 7812 + "toml_edit 0.21.0", 6876 7813 ] 6877 7814 6878 7815 [[package]] 6879 7816 name = "toml_datetime" 6880 - version = "0.6.3" 7817 + version = "0.6.5" 6881 7818 source = "registry+https://github.com/rust-lang/crates.io-index" 6882 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 7819 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 6883 7820 dependencies = [ 6884 7821 "serde", 6885 7822 ] ··· 6890 7827 source = "registry+https://github.com/rust-lang/crates.io-index" 6891 7828 checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 6892 7829 dependencies = [ 6893 - "indexmap 2.0.2", 7830 + "indexmap 2.1.0", 7831 + "serde", 7832 + "serde_spanned", 7833 + "toml_datetime", 7834 + "winnow", 7835 + ] 7836 + 7837 + [[package]] 7838 + name = "toml_edit" 7839 + version = "0.20.7" 7840 + source = "registry+https://github.com/rust-lang/crates.io-index" 7841 + checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 7842 + dependencies = [ 7843 + "indexmap 2.1.0", 7844 + "toml_datetime", 7845 + "winnow", 7846 + ] 7847 + 7848 + [[package]] 7849 + name = "toml_edit" 7850 + version = "0.21.0" 7851 + source = "registry+https://github.com/rust-lang/crates.io-index" 7852 + checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 7853 + dependencies = [ 7854 + "indexmap 2.1.0", 6894 7855 "serde", 6895 7856 "serde_spanned", 6896 7857 "toml_datetime", ··· 6899 7860 6900 7861 [[package]] 6901 7862 name = "toolchain_find" 6902 - version = "0.2.0" 7863 + version = "0.4.0" 6903 7864 source = "registry+https://github.com/rust-lang/crates.io-index" 6904 - checksum = "5e85654a10e7a07a47c6f19d93818f3f343e22927f2fa280c84f7c8042743413" 7865 + checksum = "ebc8c9a7f0a2966e1acdaf0461023d0b01471eeead645370cf4c3f5cff153f2a" 6905 7866 dependencies = [ 6906 7867 "home", 6907 - "lazy_static", 7868 + "once_cell", 6908 7869 "regex", 6909 - "semver 0.11.0", 7870 + "semver 1.0.20", 6910 7871 "walkdir", 6911 7872 ] 6912 7873 ··· 6937 7898 "cookie", 6938 7899 "futures-util", 6939 7900 "http", 6940 - "parking_lot", 7901 + "parking_lot 0.12.1", 6941 7902 "pin-project-lite", 6942 7903 "tower-layer", 6943 7904 "tower-service", ··· 6994 7955 dependencies = [ 6995 7956 "proc-macro2", 6996 7957 "quote", 6997 - "syn 2.0.38", 7958 + "syn 2.0.39", 6998 7959 ] 6999 7960 7000 7961 [[package]] ··· 7030 7991 7031 7992 [[package]] 7032 7993 name = "tracing-log" 7033 - version = "0.1.3" 7994 + version = "0.1.4" 7034 7995 source = "registry+https://github.com/rust-lang/crates.io-index" 7035 - checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 7996 + checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" 7036 7997 dependencies = [ 7037 - "lazy_static", 7038 7998 "log", 7999 + "once_cell", 7039 8000 "tracing-core", 7040 8001 ] 7041 8002 7042 8003 [[package]] 8004 + name = "tracing-log" 8005 + version = "0.2.0" 8006 + source = "registry+https://github.com/rust-lang/crates.io-index" 8007 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 8008 + dependencies = [ 8009 + "log", 8010 + "once_cell", 8011 + "tracing-core", 8012 + ] 8013 + 8014 + [[package]] 8015 + name = "tracing-loki" 8016 + version = "0.2.4" 8017 + source = "registry+https://github.com/rust-lang/crates.io-index" 8018 + checksum = "49bbc87d08020d7c2a9f4bb0b7d10da5381d3867f8ae57fcc54621b34567e963" 8019 + dependencies = [ 8020 + "loki-api", 8021 + "reqwest", 8022 + "serde", 8023 + "serde_json", 8024 + "snap", 8025 + "tokio", 8026 + "tokio-stream", 8027 + "tracing", 8028 + "tracing-core", 8029 + "tracing-log 0.1.4", 8030 + "tracing-serde", 8031 + "tracing-subscriber", 8032 + "url", 8033 + ] 8034 + 8035 + [[package]] 7043 8036 name = "tracing-serde" 7044 8037 version = "0.1.3" 7045 8038 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 7051 8044 7052 8045 [[package]] 7053 8046 name = "tracing-subscriber" 7054 - version = "0.3.17" 8047 + version = "0.3.18" 7055 8048 source = "registry+https://github.com/rust-lang/crates.io-index" 7056 - checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 8049 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 7057 8050 dependencies = [ 7058 8051 "matchers", 7059 8052 "nu-ansi-term", ··· 7066 8059 "thread_local", 7067 8060 "tracing", 7068 8061 "tracing-core", 7069 - "tracing-log", 8062 + "tracing-log 0.2.0", 7070 8063 "tracing-serde", 7071 8064 ] 7072 8065 ··· 7132 8125 "regress", 7133 8126 "schemars", 7134 8127 "serde_json", 7135 - "syn 2.0.38", 8128 + "syn 2.0.39", 7136 8129 "thiserror", 7137 8130 "unicode-ident", 7138 8131 ] ··· 7149 8142 "serde", 7150 8143 "serde_json", 7151 8144 "serde_tokenstream", 7152 - "syn 2.0.38", 8145 + "syn 2.0.39", 7153 8146 "typify-impl", 7154 8147 ] 7155 8148 7156 8149 [[package]] 7157 - name = "ucd-trie" 7158 - version = "0.1.6" 7159 - source = "registry+https://github.com/rust-lang/crates.io-index" 7160 - checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 7161 - 7162 - [[package]] 7163 8150 name = "ulid" 7164 8151 version = "1.1.0" 7165 8152 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 7304 8291 7305 8292 [[package]] 7306 8293 name = "unicode_names2" 7307 - version = "0.5.1" 8294 + version = "0.6.0" 7308 8295 source = "registry+https://github.com/rust-lang/crates.io-index" 7309 - checksum = "029df4cc8238cefc911704ff8fa210853a0f3bce2694d8f51181dd41ee0f3301" 8296 + checksum = "446c96c6dd42604779487f0a981060717156648c1706aa1f464677f03c6cc059" 7310 8297 7311 8298 [[package]] 7312 8299 name = "unsafe-libyaml" ··· 7332 8319 source = "registry+https://github.com/rust-lang/crates.io-index" 7333 8320 checksum = "f5ccd538d4a604753ebc2f17cd9946e89b77bf87f6a8e2309667c6f2e87855e3" 7334 8321 dependencies = [ 7335 - "base64 0.21.4", 8322 + "base64 0.21.5", 7336 8323 "flate2", 7337 8324 "log", 7338 8325 "native-tls", 7339 8326 "once_cell", 7340 - "rustls", 8327 + "rustls 0.21.9", 7341 8328 "rustls-webpki", 7342 8329 "serde", 7343 8330 "serde_json", ··· 7388 8375 source = "registry+https://github.com/rust-lang/crates.io-index" 7389 8376 checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 7390 8377 dependencies = [ 7391 - "getrandom 0.2.10", 8378 + "getrandom 0.2.11", 7392 8379 ] 7393 8380 7394 8381 [[package]] ··· 7397 8384 source = "registry+https://github.com/rust-lang/crates.io-index" 7398 8385 checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 7399 8386 dependencies = [ 7400 - "getrandom 0.2.10", 8387 + "getrandom 0.2.11", 7401 8388 "serde", 7402 8389 ] 7403 8390 ··· 7482 8469 7483 8470 [[package]] 7484 8471 name = "wasm-bindgen" 7485 - version = "0.2.87" 8472 + version = "0.2.88" 7486 8473 source = "registry+https://github.com/rust-lang/crates.io-index" 7487 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 8474 + checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 7488 8475 dependencies = [ 7489 8476 "cfg-if", 7490 8477 "wasm-bindgen-macro", ··· 7492 8479 7493 8480 [[package]] 7494 8481 name = "wasm-bindgen-backend" 7495 - version = "0.2.87" 8482 + version = "0.2.88" 7496 8483 source = "registry+https://github.com/rust-lang/crates.io-index" 7497 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 8484 + checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 7498 8485 dependencies = [ 7499 8486 "bumpalo", 7500 8487 "log", 7501 8488 "once_cell", 7502 8489 "proc-macro2", 7503 8490 "quote", 7504 - "syn 2.0.38", 8491 + "syn 2.0.39", 7505 8492 "wasm-bindgen-shared", 7506 8493 ] 7507 8494 7508 8495 [[package]] 7509 8496 name = "wasm-bindgen-futures" 7510 - version = "0.4.37" 8497 + version = "0.4.38" 7511 8498 source = "registry+https://github.com/rust-lang/crates.io-index" 7512 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 8499 + checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" 7513 8500 dependencies = [ 7514 8501 "cfg-if", 7515 8502 "js-sys", ··· 7519 8506 7520 8507 [[package]] 7521 8508 name = "wasm-bindgen-macro" 7522 - version = "0.2.87" 8509 + version = "0.2.88" 7523 8510 source = "registry+https://github.com/rust-lang/crates.io-index" 7524 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 8511 + checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 7525 8512 dependencies = [ 7526 8513 "quote", 7527 8514 "wasm-bindgen-macro-support", ··· 7529 8516 7530 8517 [[package]] 7531 8518 name = "wasm-bindgen-macro-support" 7532 - version = "0.2.87" 8519 + version = "0.2.88" 7533 8520 source = "registry+https://github.com/rust-lang/crates.io-index" 7534 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 8521 + checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 7535 8522 dependencies = [ 7536 8523 "proc-macro2", 7537 8524 "quote", 7538 - "syn 2.0.38", 8525 + "syn 2.0.39", 7539 8526 "wasm-bindgen-backend", 7540 8527 "wasm-bindgen-shared", 7541 8528 ] 7542 8529 7543 8530 [[package]] 7544 8531 name = "wasm-bindgen-shared" 7545 - version = "0.2.87" 8532 + version = "0.2.88" 7546 8533 source = "registry+https://github.com/rust-lang/crates.io-index" 7547 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 8534 + checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 7548 8535 7549 8536 [[package]] 7550 8537 name = "wasm-bindgen-test" 7551 - version = "0.3.37" 8538 + version = "0.3.38" 7552 8539 source = "registry+https://github.com/rust-lang/crates.io-index" 7553 - checksum = "6e6e302a7ea94f83a6d09e78e7dc7d9ca7b186bc2829c24a22d0753efd680671" 8540 + checksum = "c6433b7c56db97397842c46b67e11873eda263170afeb3a2dc74a7cb370fee0d" 7554 8541 dependencies = [ 7555 8542 "console_error_panic_hook", 7556 8543 "js-sys", ··· 7562 8549 7563 8550 [[package]] 7564 8551 name = "wasm-bindgen-test-macro" 7565 - version = "0.3.37" 8552 + version = "0.3.38" 7566 8553 source = "registry+https://github.com/rust-lang/crates.io-index" 7567 - checksum = "ecb993dd8c836930ed130e020e77d9b2e65dd0fbab1b67c790b0f5d80b11a575" 8554 + checksum = "493fcbab756bb764fa37e6bee8cec2dd709eb4273d06d0c282a5e74275ded735" 7568 8555 dependencies = [ 7569 8556 "proc-macro2", 7570 8557 "quote", 8558 + "syn 2.0.39", 7571 8559 ] 7572 8560 7573 8561 [[package]] ··· 7594 8582 7595 8583 [[package]] 7596 8584 name = "web-sys" 7597 - version = "0.3.64" 8585 + version = "0.3.65" 7598 8586 source = "registry+https://github.com/rust-lang/crates.io-index" 7599 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 8587 + checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 7600 8588 dependencies = [ 7601 8589 "js-sys", 7602 8590 "wasm-bindgen", ··· 7645 8633 "either", 7646 8634 "home", 7647 8635 "once_cell", 7648 - "rustix 0.38.20", 8636 + "rustix 0.38.24", 7649 8637 ] 7650 8638 7651 8639 [[package]] ··· 7691 8679 7692 8680 [[package]] 7693 8681 name = "windmill" 7694 - version = "1.188.1" 8682 + version = "1.210.1" 7695 8683 dependencies = [ 7696 8684 "anyhow", 7697 8685 "axum", 7698 - "base64 0.21.4", 8686 + "base64 0.21.5", 7699 8687 "chrono", 7700 8688 "dotenv", 7701 8689 "futures", ··· 7703 8691 "git-version", 7704 8692 "lazy_static", 7705 8693 "once_cell", 8694 + "pg-embed", 7706 8695 "prometheus", 7707 8696 "rand 0.8.5", 7708 8697 "reqwest", ··· 7710 8699 "serde", 7711 8700 "serde_json", 7712 8701 "sha2 0.10.8", 7713 - "sqlx", 8702 + "sqlx 0.7.2", 7714 8703 "tokio", 7715 8704 "tokio-metrics", 7716 8705 "tracing", ··· 7725 8714 7726 8715 [[package]] 7727 8716 name = "windmill-api" 7728 - version = "1.188.1" 8717 + version = "1.210.1" 7729 8718 dependencies = [ 7730 8719 "anyhow", 7731 8720 "argon2", ··· 7733 8722 "async-recursion", 7734 8723 "async-stripe", 7735 8724 "async_zip", 8725 + "aws-config", 8726 + "aws-sdk-s3", 7736 8727 "axum", 7737 - "base64 0.21.4", 8728 + "base64 0.21.5", 7738 8729 "bytes", 7739 8730 "candle-core", 7740 8731 "candle-nn", ··· 7749 8740 "hf-hub", 7750 8741 "hmac", 7751 8742 "hyper", 7752 - "itertools 0.11.0", 8743 + "itertools 0.12.0", 7753 8744 "lazy_static", 7754 8745 "magic-crypt", 7755 8746 "mail-send", ··· 7768 8759 "serde_urlencoded", 7769 8760 "sha2 0.10.8", 7770 8761 "sql-builder", 7771 - "sqlx", 8762 + "sqlx 0.7.2", 7772 8763 "tempfile", 7773 8764 "time", 7774 8765 "tinyvector", ··· 7792 8783 7793 8784 [[package]] 7794 8785 name = "windmill-api-client" 7795 - version = "1.188.1" 8786 + version = "1.210.1" 7796 8787 dependencies = [ 7797 - "base64 0.21.4", 8788 + "base64 0.21.5", 7798 8789 "chrono", 7799 8790 "openapiv3", 7800 8791 "prettyplease 0.1.25", ··· 7810 8801 7811 8802 [[package]] 7812 8803 name = "windmill-audit" 7813 - version = "1.188.1" 8804 + version = "1.210.1" 7814 8805 dependencies = [ 7815 8806 "chrono", 7816 8807 "serde", 7817 8808 "serde_json", 7818 8809 "sql-builder", 7819 - "sqlx", 8810 + "sqlx 0.7.2", 7820 8811 "tracing", 7821 8812 "windmill-common", 7822 8813 ] 7823 8814 7824 8815 [[package]] 7825 8816 name = "windmill-common" 7826 - version = "1.188.1" 8817 + version = "1.210.1" 7827 8818 dependencies = [ 7828 8819 "anyhow", 7829 8820 "axum", 7830 8821 "chrono", 8822 + "cron", 8823 + "git-version", 7831 8824 "hex", 7832 8825 "hmac", 7833 8826 "hyper", 7834 - "itertools 0.11.0", 8827 + "itertools 0.12.0", 7835 8828 "lazy_static", 7836 8829 "prometheus", 7837 8830 "rand 0.8.5", ··· 7840 8833 "serde", 7841 8834 "serde_json", 7842 8835 "sha2 0.10.8", 7843 - "sqlx", 8836 + "sqlx 0.7.2", 7844 8837 "thiserror", 7845 8838 "tokio", 7846 8839 "tracing", 7847 8840 "tracing-flame", 8841 + "tracing-loki", 7848 8842 "tracing-subscriber", 7849 8843 "uuid 1.5.0", 7850 8844 ] 7851 8845 7852 8846 [[package]] 7853 8847 name = "windmill-parser" 7854 - version = "1.188.1" 8848 + version = "1.210.1" 7855 8849 dependencies = [ 7856 8850 "serde", 7857 8851 "serde_json", ··· 7859 8853 7860 8854 [[package]] 7861 8855 name = "windmill-parser-bash" 7862 - version = "1.188.1" 8856 + version = "1.210.1" 7863 8857 dependencies = [ 7864 8858 "anyhow", 7865 8859 "lazy_static", ··· 7870 8864 7871 8865 [[package]] 7872 8866 name = "windmill-parser-go" 7873 - version = "1.188.1" 8867 + version = "1.210.1" 7874 8868 dependencies = [ 7875 8869 "anyhow", 7876 8870 "gosyn", 7877 - "itertools 0.11.0", 8871 + "itertools 0.12.0", 7878 8872 "lazy_static", 7879 8873 "regex", 7880 8874 "windmill-parser", ··· 7882 8876 7883 8877 [[package]] 7884 8878 name = "windmill-parser-graphql" 7885 - version = "1.188.1" 8879 + version = "1.210.1" 7886 8880 dependencies = [ 7887 8881 "anyhow", 7888 8882 "lazy_static", ··· 7893 8887 7894 8888 [[package]] 7895 8889 name = "windmill-parser-py" 7896 - version = "1.188.1" 8890 + version = "1.210.1" 7897 8891 dependencies = [ 7898 8892 "anyhow", 7899 - "itertools 0.11.0", 8893 + "itertools 0.12.0", 7900 8894 "rustpython-parser", 7901 8895 "serde_json", 7902 8896 "windmill-parser", ··· 7904 8898 7905 8899 [[package]] 7906 8900 name = "windmill-parser-py-imports" 7907 - version = "1.188.1" 8901 + version = "1.210.1" 7908 8902 dependencies = [ 7909 8903 "anyhow", 7910 8904 "async-recursion", 7911 - "itertools 0.11.0", 8905 + "itertools 0.12.0", 7912 8906 "lazy_static", 7913 8907 "phf 0.11.2", 7914 8908 "regex", 7915 8909 "rustpython-parser", 7916 8910 "serde_json", 7917 - "sqlx", 8911 + "sqlx 0.7.2", 7918 8912 "windmill-common", 7919 8913 "windmill-parser", 7920 8914 ] 7921 8915 7922 8916 [[package]] 7923 8917 name = "windmill-parser-sql" 7924 - version = "1.188.1" 8918 + version = "1.210.1" 7925 8919 dependencies = [ 7926 8920 "anyhow", 7927 8921 "lazy_static", ··· 7932 8926 7933 8927 [[package]] 7934 8928 name = "windmill-parser-ts" 7935 - version = "1.188.1" 8929 + version = "1.210.1" 7936 8930 dependencies = [ 7937 8931 "anyhow", 7938 8932 "convert_case 0.6.0", ··· 7949 8943 7950 8944 [[package]] 7951 8945 name = "windmill-parser-wasm" 7952 - version = "1.188.1" 8946 + version = "1.210.1" 7953 8947 dependencies = [ 7954 8948 "anyhow", 7955 - "getrandom 0.2.10", 8949 + "getrandom 0.2.11", 7956 8950 "serde_json", 7957 8951 "wasm-bindgen", 7958 8952 "wasm-bindgen-test", ··· 7967 8961 7968 8962 [[package]] 7969 8963 name = "windmill-queue" 7970 - version = "1.188.1" 8964 + version = "1.210.1" 7971 8965 dependencies = [ 7972 8966 "anyhow", 7973 8967 "async-recursion", ··· 7979 8973 "futures-core", 7980 8974 "hex", 7981 8975 "hmac", 7982 - "itertools 0.11.0", 8976 + "itertools 0.12.0", 7983 8977 "lazy_static", 7984 8978 "prometheus", 7985 8979 "reqwest", ··· 7987 8981 "serde", 7988 8982 "serde_json", 7989 8983 "sql-builder", 7990 - "sqlx", 8984 + "sqlx 0.7.2", 7991 8985 "tokio", 7992 8986 "tracing", 7993 8987 "ulid", ··· 7998 8992 7999 8993 [[package]] 8000 8994 name = "windmill-worker" 8001 - version = "1.188.1" 8995 + version = "1.210.1" 8002 8996 dependencies = [ 8003 8997 "anyhow", 8004 8998 "async-recursion", 8005 - "base64 0.21.4", 8999 + "base64 0.21.5", 8006 9000 "bytes", 8007 9001 "chrono", 8008 9002 "const_format", ··· 8018 9012 "futures", 8019 9013 "gcp_auth", 8020 9014 "git-version", 8021 - "itertools 0.11.0", 9015 + "hex", 9016 + "itertools 0.12.0", 8022 9017 "jsonwebtoken", 8023 9018 "lazy_static", 8024 9019 "mysql_async", ··· 8036 9031 "serde", 8037 9032 "serde_json", 8038 9033 "sha2 0.10.8", 8039 - "sqlx", 9034 + "sqlx 0.7.2", 9035 + "tiberius", 8040 9036 "tokio", 8041 9037 "tokio-postgres", 9038 + "tokio-util", 8042 9039 "tracing", 8043 9040 "urlencoding", 8044 9041 "uuid 1.5.0", ··· 8198 9195 8199 9196 [[package]] 8200 9197 name = "winnow" 8201 - version = "0.5.17" 9198 + version = "0.5.19" 8202 9199 source = "registry+https://github.com/rust-lang/crates.io-index" 8203 - checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" 9200 + checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b" 8204 9201 dependencies = [ 8205 9202 "memchr", 8206 9203 ] ··· 8234 9231 ] 8235 9232 8236 9233 [[package]] 9234 + name = "xmlparser" 9235 + version = "0.13.6" 9236 + source = "registry+https://github.com/rust-lang/crates.io-index" 9237 + checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 9238 + 9239 + [[package]] 8237 9240 name = "xz2" 8238 9241 version = "0.1.7" 8239 9242 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8244 9247 8245 9248 [[package]] 8246 9249 name = "yoke" 8247 - version = "0.7.2" 9250 + version = "0.7.3" 8248 9251 source = "registry+https://github.com/rust-lang/crates.io-index" 8249 - checksum = "61e38c508604d6bbbd292dadb3c02559aa7fff6b654a078a36217cad871636e4" 9252 + checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4" 8250 9253 dependencies = [ 8251 9254 "serde", 8252 9255 "stable_deref_trait", ··· 8256 9259 8257 9260 [[package]] 8258 9261 name = "yoke-derive" 8259 - version = "0.7.2" 9262 + version = "0.7.3" 8260 9263 source = "registry+https://github.com/rust-lang/crates.io-index" 8261 - checksum = "d5e19fb6ed40002bab5403ffa37e53e0e56f914a4450c8765f533018db1db35f" 9264 + checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8" 8262 9265 dependencies = [ 8263 9266 "proc-macro2", 8264 9267 "quote", 8265 - "syn 2.0.38", 9268 + "syn 2.0.39", 8266 9269 "synstructure", 8267 9270 ] 8268 9271 8269 9272 [[package]] 9273 + name = "zerocopy" 9274 + version = "0.7.26" 9275 + source = "registry+https://github.com/rust-lang/crates.io-index" 9276 + checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0" 9277 + dependencies = [ 9278 + "zerocopy-derive", 9279 + ] 9280 + 9281 + [[package]] 9282 + name = "zerocopy-derive" 9283 + version = "0.7.26" 9284 + source = "registry+https://github.com/rust-lang/crates.io-index" 9285 + checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f" 9286 + dependencies = [ 9287 + "proc-macro2", 9288 + "quote", 9289 + "syn 2.0.39", 9290 + ] 9291 + 9292 + [[package]] 8270 9293 name = "zerofrom" 8271 9294 version = "0.1.3" 8272 9295 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8283 9306 dependencies = [ 8284 9307 "proc-macro2", 8285 9308 "quote", 8286 - "syn 2.0.38", 9309 + "syn 2.0.39", 8287 9310 "synstructure", 8288 9311 ] 8289 9312 8290 9313 [[package]] 8291 9314 name = "zeroize" 8292 - version = "1.6.0" 9315 + version = "1.7.0" 8293 9316 source = "registry+https://github.com/rust-lang/crates.io-index" 8294 - checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 9317 + checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 8295 9318 8296 9319 [[package]] 8297 9320 name = "zip" ··· 8299 9322 source = "registry+https://github.com/rust-lang/crates.io-index" 8300 9323 checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 8301 9324 dependencies = [ 9325 + "aes 0.8.3", 8302 9326 "byteorder", 9327 + "bzip2", 9328 + "constant_time_eq", 8303 9329 "crc32fast", 8304 9330 "crossbeam-utils", 9331 + "flate2", 9332 + "hmac", 9333 + "pbkdf2", 9334 + "sha1", 9335 + "time", 9336 + "zstd 0.11.2+zstd.1.5.2", 8305 9337 ] 8306 9338 8307 9339 [[package]] ··· 8310 9342 source = "registry+https://github.com/rust-lang/crates.io-index" 8311 9343 checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 8312 9344 dependencies = [ 8313 - "zstd-safe", 9345 + "zstd-safe 5.0.2+zstd.1.5.2", 9346 + ] 9347 + 9348 + [[package]] 9349 + name = "zstd" 9350 + version = "0.12.4" 9351 + source = "registry+https://github.com/rust-lang/crates.io-index" 9352 + checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" 9353 + dependencies = [ 9354 + "zstd-safe 6.0.6", 8314 9355 ] 8315 9356 8316 9357 [[package]] ··· 8318 9359 version = "5.0.2+zstd.1.5.2" 8319 9360 source = "registry+https://github.com/rust-lang/crates.io-index" 8320 9361 checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 9362 + dependencies = [ 9363 + "libc", 9364 + "zstd-sys", 9365 + ] 9366 + 9367 + [[package]] 9368 + name = "zstd-safe" 9369 + version = "6.0.6" 9370 + source = "registry+https://github.com/rust-lang/crates.io-index" 9371 + checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" 8321 9372 dependencies = [ 8322 9373 "libc", 8323 9374 "zstd-sys",
+9 -4
pkgs/servers/windmill/default.nix
··· 14 14 , openssl 15 15 , pango 16 16 , pixman 17 + , giflib 17 18 , pkg-config 18 19 , python3 19 20 , rustfmt ··· 23 24 24 25 let 25 26 pname = "windmill"; 26 - version = "1.188.1"; 27 + version = "1.210.1"; 27 28 28 29 fullSrc = fetchFromGitHub { 29 30 owner = "windmill-labs"; 30 31 repo = "windmill"; 31 32 rev = "v${version}"; 32 - hash = "sha256-IiCIiP5KYRw10aPlR40RPW0ynXq5itf0LLtpDtxCNE4="; 33 + hash = "sha256-ss3EsIqfuctPOEdI5IQtyFFcDzIqnFm6UUG1vA+OlkQ="; 33 34 }; 34 35 35 36 pythonEnv = python3.withPackages (ps: [ ps.pip-tools ]); ··· 42 43 43 44 sourceRoot = "${fullSrc.name}/frontend"; 44 45 45 - npmDepsHash = "sha256-TgAv3iUD0kP2mOvMVOW4yYCDCsf2Cr8IfXK+V+f35uw"; 46 + npmDepsHash = "sha256-l9MRaa6TaBg9vFoVuIGZNC9jLS29TlWeSniIBRNDRgU="; 46 47 47 48 # without these you get a 48 49 # FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory ··· 52 53 npm run generate-backend-client 53 54 ''; 54 55 55 - buildInputs = [ pixman cairo pango ]; 56 + buildInputs = [ pixman cairo pango giflib ]; 56 57 nativeBuildInputs = [ python3 pkg-config ]; 57 58 58 59 installPhase = '' ··· 93 94 outputHashes = { 94 95 "progenitor-0.3.0" = "sha256-F6XRZFVIN6/HfcM8yI/PyNke45FL7jbcznIiqj22eIQ="; 95 96 "tinyvector-0.1.0" = "sha256-NYGhofU4rh+2IAM+zwe04YQdXY8Aa4gTmn2V2HtzRfI="; 97 + "archiver-rs-0.5.1" = "sha256-ZIik0mMABmhdx/ullgbOrKH5GAtqcOKq5A6vB7aBSjk="; 98 + "pg-embed-0.7.2" = "sha256-R/SrlzNK7aAOyXVTQ/WPkiQb6FyMg9tpsmPTsiossDY="; 96 99 }; 97 100 }; 98 101 ··· 118 121 openssl 119 122 rustfmt 120 123 lld 124 + stdenv.cc.cc.lib 121 125 ]; 122 126 123 127 nativeBuildInputs = [ ··· 146 150 147 151 wrapProgram "$out/bin/windmill" \ 148 152 --prefix PATH : ${lib.makeBinPath [go pythonEnv deno nsjail bash]} \ 153 + --prefix LD_LIBRARY_PATH : "${stdenv.cc.cc.lib}/lib" \ 149 154 --set PYTHON_PATH "${pythonEnv}/bin/python3" \ 150 155 --set GO_PATH "${go}/bin/go" \ 151 156 --set DENO_PATH "${deno}/bin/deno" \
+1 -1
pkgs/tools/typesetting/typst-preview/Cargo.lock pkgs/by-name/ty/typst-preview/Cargo.lock
··· 3390 3390 3391 3391 [[package]] 3392 3392 name = "typst-preview" 3393 - version = "0.9.0" 3393 + version = "0.9.1" 3394 3394 dependencies = [ 3395 3395 "anyhow", 3396 3396 "chrono",
-73
pkgs/tools/typesetting/typst-preview/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, fetchYarnDeps, mkYarnPackage, darwin 2 - , stdenv }: 3 - 4 - let 5 - name = "typst-preview"; 6 - version = "0.9.0"; 7 - src = fetchFromGitHub { 8 - owner = "Enter-tainer"; 9 - repo = name; 10 - rev = "v${version}"; 11 - hash = "sha256-r/zDvfMvfvZqa3Xkzk70tIEyhc5LDwqc2A5MUuK2xC0="; 12 - }; 13 - frontendSrc = "${src}/addons/frontend"; 14 - frontend = mkYarnPackage rec { 15 - inherit version; 16 - pname = "${name}-frontend"; 17 - src = frontendSrc; 18 - packageJSON = ./package.json; 19 - 20 - offlineCache = fetchYarnDeps { 21 - yarnLock = "${frontendSrc}/yarn.lock"; 22 - hash = "sha256-7a7/UOfau84nLIAKj6Tn9rTUmeBJ7rYDFAdr55ZDLgA="; 23 - }; 24 - 25 - buildPhase = '' 26 - runHook preBuild 27 - yarn --offline build 28 - runHook postBuild 29 - ''; 30 - 31 - installPhase = '' 32 - runHook preInstall 33 - cp -R deps/${pname}/dist $out 34 - runHook postInstall 35 - ''; 36 - doDist = false; 37 - }; 38 - 39 - in rustPlatform.buildRustPackage rec { 40 - 41 - pname = name; 42 - inherit version src; 43 - 44 - buildInputs = lib.optionals stdenv.isDarwin 45 - (with darwin.apple_sdk.frameworks; [ 46 - Security 47 - SystemConfiguration 48 - CoreServices 49 - ]); 50 - 51 - cargoLock = { 52 - lockFile = ./Cargo.lock; 53 - outputHashes = { 54 - "hayagriva-0.4.0" = "sha256-377lXL3+TO8U91OopMYEI0NrWWwzy6+O7B65bLhP+X4="; 55 - "typst-0.9.0" = "sha256-+rnsUSGi3QZlbC4i8racsM4U6+l8oA9YjjUOtQAIWOk="; 56 - "typst-ts-compiler-0.4.0-rc9" = 57 - "sha256-NVmbAodDRJBJlGGDRjaEcTHGoCeN4hNjIynIDKqvNbM="; 58 - }; 59 - }; 60 - 61 - prePatch = '' 62 - mkdir -p addons/vscode/out/frontend 63 - cp -R ${frontend}/* addons/vscode/out/frontend/ 64 - ''; 65 - 66 - meta = with lib; { 67 - description = "Preview your Typst files in vscode"; 68 - homepage = "https://github.com/Enter-tainer/typse-preview"; 69 - license = licenses.mit; 70 - maintainers = with maintainers; [ berberman ]; 71 - mainProgram = "typst-preview"; 72 - }; 73 - }
pkgs/tools/typesetting/typst-preview/package.json pkgs/by-name/ty/typst-preview/package.json
+2 -2
pkgs/top-level/all-packages.nix
··· 12496 12496 12497 12497 qlcplus = libsForQt5.callPackage ../applications/misc/qlcplus { }; 12498 12498 12499 + qlog = qt6Packages.callPackage ../applications/radio/qlog { }; 12500 + 12499 12501 qnial = callPackage ../development/interpreters/qnial { }; 12500 12502 12501 12503 quickbms = pkgsi686Linux.callPackage ../tools/archivers/quickbms { }; ··· 14237 14239 typstfmt = callPackage ../tools/typesetting/typstfmt { }; 14238 14240 14239 14241 typst-live = callPackage ../tools/typesetting/typst-live { }; 14240 - 14241 - typst-preview = callPackage ../tools/typesetting/typst-preview { }; 14242 14242 14243 14243 tz = callPackage ../tools/misc/tz { }; 14244 14244
+1
pkgs/top-level/python-aliases.nix
··· 35 35 mapAliases ({ 36 36 abodepy = jaraco-abode; # added 2023-02-01 37 37 acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19 38 + adafruit-nrfutil = throw "adafruit-nrfutil has been promoted to a top-level attribute."; # Added 2023-11-19 38 39 aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30 39 40 aionotify = throw "aionotify has been removed because is unmaintained and incompatible with python3.11."; # Added 2023-10-27 40 41 aiosenseme = throw "aiosenseme has been removed, because it does no longer work with the latest firmware and has become unmaintained"; # Added 2023-07-05
-2
pkgs/top-level/python-packages.nix
··· 54 54 55 55 adafruit-io = callPackage ../development/python-modules/adafruit-io { }; 56 56 57 - adafruit-nrfutil = callPackage ../development/python-modules/adafruit-nrfutil { }; 58 - 59 57 adafruit-platformdetect = callPackage ../development/python-modules/adafruit-platformdetect { }; 60 58 61 59 adafruit-pureio = callPackage ../development/python-modules/adafruit-pureio { };