Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
0ceaddfb 2d5c1959

+1861 -1203
+4 -3
nixos/doc/manual/release-notes/rl-2305.section.md
··· 309 309 `services.dnsmasq.extraConfig` will be deprecated when NixOS 22.11 reaches 310 310 end of life. 311 311 312 - - The `dokuwiki` service now takes configuration via the `services.dokuwiki.sites.<name>.settings` attribute set, `extraConfig` is deprecated and will be removed. 313 - The `{aclUse,superUser,disableActions}` attributes have been renamed, `pluginsConfig` now also accepts an attribute set of booleans, passing plain PHP is deprecated. 314 - Same applies to `acl` which now also accepts structured settings. 312 + - The `dokuwiki` service is now configured via `services.dokuwiki.sites.<name>.settings` attribute set; `extraConfig` has been removed. 313 + The `{aclUse,superUser,disableActions}` attributes have been renamed accordingly. `pluginsConfig` now only accepts an attribute set of booleans. 314 + Passing plain PHP is no longer possible. 315 + Same applies to `acl` which now also only accepts structured `settings`. 315 316 316 317 - The `zsh` package changes the way to set environment variables on NixOS systems where `programs.zsh.enable` equals `false`. It now sources `/etc/set-environment` when reading the system-level `zshenv` file. Before, it sourced `/etc/profile` when reading the system-level `zprofile` file. 317 318
+1 -6
nixos/modules/installer/tools/nixos-generate-config.pl
··· 85 85 86 86 87 87 # nixpkgs.system 88 - my ($status, @systemLines) = runCommand("@nixInstantiate@ --impure --eval --expr builtins.currentSystem"); 89 - if ($status != 0 || join("", @systemLines) =~ /error/) { 90 - die "Failed to retrieve current system type from nix.\n"; 91 - } 92 - chomp(my $system = @systemLines[0]); 93 - push @attrs, "nixpkgs.hostPlatform = lib.mkDefault $system;"; 88 + push @attrs, "nixpkgs.hostPlatform = lib.mkDefault \"@system@\";"; 94 89 95 90 96 91 my $cpuinfo = read_file "/proc/cpuinfo";
+1 -1
nixos/modules/installer/tools/tools.nix
··· 34 34 name = "nixos-generate-config"; 35 35 src = ./nixos-generate-config.pl; 36 36 perl = "${pkgs.perl.withPackages (p: [ p.FileSlurp ])}/bin/perl"; 37 - nixInstantiate = "${pkgs.nix}/bin/nix-instantiate"; 37 + system = pkgs.stdenv.hostPlatform.system; 38 38 detectvirt = "${config.systemd.package}/bin/systemd-detect-virt"; 39 39 btrfs = "${pkgs.btrfs-progs}/bin/btrfs"; 40 40 inherit (config.system.nixos-generate-config) configuration desktopConfiguration;
+67 -59
nixos/modules/services/web-apps/dokuwiki.nix
··· 3 3 with lib; 4 4 5 5 let 6 + inherit (lib.options) showOption showFiles; 7 + 6 8 cfg = config.services.dokuwiki; 7 9 eachSite = cfg.sites; 8 10 user = "dokuwiki"; ··· 63 65 conf_gen = c: map (v: "$conf${v}") (mkPhpAttrVals c); 64 66 in writePhpFile "local-${hostName}.php" '' 65 67 ${concatStringsSep "\n" (conf_gen cfg.mergedConfig)} 66 - ${toString cfg.extraConfig} 67 68 ''; 68 69 69 70 dokuwikiPluginsLocalConfig = hostName: cfg: let ··· 90 91 91 92 page = mkOption { 92 93 type = types.str; 93 - description = "Page or namespace to restrict"; 94 + description = lib.mdDoc "Page or namespace to restrict"; 94 95 example = "start"; 95 96 }; 96 97 97 98 actor = mkOption { 98 99 type = types.str; 99 - description = "User or group to restrict"; 100 + description = lib.mdDoc "User or group to restrict"; 100 101 example = "@external"; 101 102 }; 102 103 ··· 112 113 in mkOption { 113 114 type = types.enum ((attrValues available) ++ (attrNames available)); 114 115 apply = x: if isInt x then x else available.${x}; 115 - description = '' 116 + description = lib.mdDoc '' 116 117 Permission level to restrict the actor(s) to. 117 118 See <https://www.dokuwiki.org/acl#background_info> for explanation 118 119 ''; 119 120 example = "read"; 120 121 }; 122 + }; 123 + }; 121 124 122 - }; 125 + # The current implementations of `doRename`, `mkRenamedOptionModule` do not provide the full options path when used with submodules. 126 + # They would only show `settings.useacl' instead of `services.dokuwiki.sites."site1.local".settings.useacl' 127 + # The partial re-implementation of these functions is done to help users in debugging by showing the full path. 128 + mkRenamed = from: to: { config, options, name, ... }: let 129 + pathPrefix = [ "services" "dokuwiki" "sites" name ]; 130 + fromPath = pathPrefix ++ from; 131 + fromOpt = getAttrFromPath from options; 132 + toOp = getAttrsFromPath to config; 133 + toPath = pathPrefix ++ to; 134 + in { 135 + options = setAttrByPath from (mkOption { 136 + visible = false; 137 + description = lib.mdDoc "Alias of {option}${showOption toPath}"; 138 + apply = x: builtins.trace "Obsolete option `${showOption fromPath}' is used. It was renamed to ${showOption toPath}" toOp; 139 + }); 140 + config = mkMerge [ 141 + { 142 + warnings = optional fromOpt.isDefined 143 + "The option `${showOption fromPath}' defined in ${showFiles fromOpt.files} has been renamed to `${showOption toPath}'."; 144 + } 145 + (lib.modules.mkAliasAndWrapDefsWithPriority (setAttrByPath to) fromOpt) 146 + ]; 123 147 }; 124 148 125 - siteOpts = { config, lib, name, ... }: 149 + siteOpts = { options, config, lib, name, ... }: 126 150 { 127 151 imports = [ 128 - # NOTE: These will sadly not print the absolute argument path but only the name. Related to #96006 129 - (mkRenamedOptionModule [ "aclUse" ] [ "settings" "useacl" ] ) 130 - (mkRenamedOptionModule [ "superUser" ] [ "settings" "superuser" ] ) 131 - (mkRenamedOptionModule [ "disableActions" ] [ "settings" "disableactions" ] ) 132 - ({ config, options, name, ...}: { 133 - config.warnings = 134 - (optional (isString config.pluginsConfig) '' 135 - Passing plain strings to services.dokuwiki.sites.${name}.pluginsConfig has been deprecated and will not be continue to be supported in the future. 136 - Please pass structured settings instead. 137 - '') 138 - ++ (optional (isString config.acl) '' 139 - Passing a plain string to services.dokuwiki.sites.${name}.acl has been deprecated and will not continue to be supported in the future. 140 - Please pass structured settings instead. 141 - '') 142 - ++ (optional (config.extraConfig != null) '' 143 - services.dokuwiki.sites.${name}.extraConfig is deprecated and will be removed in the future. 144 - Please pass structured settings to services.dokuwiki.sites.${name}.settings instead. 145 - '') 146 - ; 152 + (mkRenamed [ "aclUse" ] [ "settings" "useacl" ]) 153 + (mkRenamed [ "superUser" ] [ "settings" "superuser" ]) 154 + (mkRenamed [ "disableActions" ] [ "settings" "disableactions" ]) 155 + ({ config, options, ... }: let 156 + showPath = suffix: lib.options.showOption ([ "services" "dokuwiki" "sites" name ] ++ suffix); 157 + replaceExtraConfig = "Please use `${showPath ["settings"]}' to pass structured settings instead."; 158 + ecOpt = options.extraConfig; 159 + ecPath = showPath [ "extraConfig" ]; 160 + in { 161 + options.extraConfig = mkOption { 162 + visible = false; 163 + apply = x: throw "The option ${ecPath} can no longer be used since it's been removed.\n${replaceExtraConfig}"; 164 + }; 165 + config.assertions = [ 166 + { 167 + assertion = !ecOpt.isDefined; 168 + message = "The option definition `${ecPath}' in ${showFiles ecOpt.files} no longer has any effect; please remove it.\n${replaceExtraConfig}"; 169 + } 170 + { 171 + assertion = config.mergedConfig.useacl -> (config.acl != null || config.aclFile != null); 172 + message = "Either ${showPath [ "acl" ]} or ${showPath [ "aclFile" ]} is mandatory if ${showPath [ "settings" "useacl" ]} is true"; 173 + } 174 + { 175 + assertion = config.usersFile != null -> config.mergedConfig.useacl != false; 176 + message = "${showPath [ "settings" "useacl" ]} is required when ${showPath [ "usersFile" ]} is set (Currently defiend as `${config.usersFile}' in ${showFiles options.usersFile.files})."; 177 + } 178 + ]; 147 179 }) 148 180 ]; 149 181 ··· 164 196 }; 165 197 166 198 acl = mkOption { 167 - type = with types; nullOr (oneOf [ lines (listOf (submodule aclOpts)) ]); 199 + type = with types; nullOr (listOf (submodule aclOpts)); 168 200 default = null; 169 201 example = literalExpression '' 170 202 [ ··· 203 235 }; 204 236 205 237 pluginsConfig = mkOption { 206 - type = with types; oneOf [lines (attrsOf bool)]; 238 + type = with types; attrsOf bool; 207 239 default = { 208 240 authad = false; 209 241 authldap = false; ··· 370 402 ''; 371 403 }; 372 404 373 - extraConfig = mkOption { 374 - # This Option is deprecated and only kept until sometime before 23.05 for compatibility reasons 375 - # FIXME (@e1mo): Actually remember removing this before 23.05. 376 - visible = false; 377 - type = types.nullOr types.lines; 378 - default = null; 379 - example = '' 380 - $conf['title'] = 'My Wiki'; 381 - $conf['userewrite'] = 1; 382 - ''; 383 - description = lib.mdDoc '' 384 - DokuWiki configuration. Refer to 385 - <https://www.dokuwiki.org/config> 386 - for details on supported values. 387 - 388 - **Note**: Please pass Structured settings via 389 - `services.dokuwiki.sites.${name}.settings` instead. 390 - ''; 391 - }; 392 - 393 405 # Required for the mkRenamedOptionModule 394 406 # TODO: Remove me once https://github.com/NixOS/nixpkgs/issues/96006 is fixed 395 - # or the aclUse, ... options are removed. 407 + # or we don't have any more notes about the removal of extraConfig, ... 396 408 warnings = mkOption { 397 409 type = types.listOf types.unspecified; 398 410 default = [ ]; 399 411 visible = false; 400 412 internal = true; 401 413 }; 402 - 414 + assertions = mkOption { 415 + type = types.listOf types.unspecified; 416 + default = [ ]; 417 + visible = false; 418 + internal = true; 419 + }; 403 420 }; 404 421 }; 405 422 in ··· 435 452 436 453 warnings = flatten (mapAttrsToList (_: cfg: cfg.warnings) eachSite); 437 454 438 - assertions = flatten (mapAttrsToList (hostName: cfg: 439 - [{ 440 - assertion = cfg.mergedConfig.useacl -> (cfg.acl != null || cfg.aclFile != null); 441 - message = "Either services.dokuwiki.sites.${hostName}.acl or services.dokuwiki.sites.${hostName}.aclFile is mandatory if settings.useacl is true"; 442 - } 443 - { 444 - assertion = cfg.usersFile != null -> cfg.mergedConfig.useacl != false; 445 - message = "services.dokuwiki.sites.${hostName}.settings.useacl must must be true if usersFile is not null"; 446 - } 447 - ]) eachSite); 455 + assertions = flatten (mapAttrsToList (_: cfg: cfg.assertions) eachSite); 448 456 449 457 services.phpfpm.pools = mapAttrs' (hostName: cfg: ( 450 458 nameValuePair "dokuwiki-${hostName}" {
+4 -4
nixos/modules/services/web-apps/lemmy.nix
··· 156 156 }; 157 157 158 158 documentation = [ 159 - "https://join-lemmy.org/docs/en/administration/from_scratch.html" 160 - "https://join-lemmy.org/docs" 159 + "https://join-lemmy.org/docs/en/admins/from_scratch.html" 160 + "https://join-lemmy.org/docs/en/" 161 161 ]; 162 162 163 163 wantedBy = [ "multi-user.target" ]; ··· 185 185 }; 186 186 187 187 documentation = [ 188 - "https://join-lemmy.org/docs/en/administration/from_scratch.html" 189 - "https://join-lemmy.org/docs" 188 + "https://join-lemmy.org/docs/en/admins/from_scratch.html" 189 + "https://join-lemmy.org/docs/en/" 190 190 ]; 191 191 192 192 wantedBy = [ "multi-user.target" ];
+2 -2
pkgs/applications/audio/strawberry/default.nix
··· 42 42 in 43 43 stdenv.mkDerivation rec { 44 44 pname = "strawberry"; 45 - version = "1.0.15"; 45 + version = "1.0.17"; 46 46 47 47 src = fetchFromGitHub { 48 48 owner = "jonaski"; 49 49 repo = pname; 50 50 rev = version; 51 - hash = "sha256-P7M7UIRFr0pABNhb63pV3TqIdTP8Xox4f0BT2ii9rRE="; 51 + hash = "sha256-Z2b3/pIdSmZUO724hkdn78YrVuRiXALbTOUs+KJMjvU="; 52 52 }; 53 53 54 54 # the big strawberry shown in the context menu is *very* much in your face, so use the grey version instead
+858 -509
pkgs/applications/blockchains/lighthouse/Cargo.lock
··· 89 89 ] 90 90 91 91 [[package]] 92 + name = "aead" 93 + version = "0.5.2" 94 + source = "registry+https://github.com/rust-lang/crates.io-index" 95 + checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 96 + dependencies = [ 97 + "crypto-common", 98 + "generic-array", 99 + ] 100 + 101 + [[package]] 92 102 name = "aes" 93 103 version = "0.6.0" 94 104 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 113 123 ] 114 124 115 125 [[package]] 116 - name = "aes-gcm" 117 - version = "0.8.0" 126 + name = "aes" 127 + version = "0.8.2" 118 128 source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da" 129 + checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 120 130 dependencies = [ 121 - "aead 0.3.2", 122 - "aes 0.6.0", 123 - "cipher 0.2.5", 124 - "ctr 0.6.0", 125 - "ghash 0.3.1", 126 - "subtle", 131 + "cfg-if", 132 + "cipher 0.4.4", 133 + "cpufeatures", 127 134 ] 128 135 129 136 [[package]] ··· 137 144 "cipher 0.3.0", 138 145 "ctr 0.8.0", 139 146 "ghash 0.4.4", 147 + "subtle", 148 + ] 149 + 150 + [[package]] 151 + name = "aes-gcm" 152 + version = "0.10.1" 153 + source = "registry+https://github.com/rust-lang/crates.io-index" 154 + checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" 155 + dependencies = [ 156 + "aead 0.5.2", 157 + "aes 0.8.2", 158 + "cipher 0.4.4", 159 + "ctr 0.9.2", 160 + "ghash 0.5.0", 140 161 "subtle", 141 162 ] 142 163 ··· 205 226 206 227 [[package]] 207 228 name = "anyhow" 208 - version = "1.0.69" 229 + version = "1.0.70" 209 230 source = "registry+https://github.com/rust-lang/crates.io-index" 210 - checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" 231 + checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 211 232 212 233 [[package]] 213 234 name = "arbitrary" 214 - version = "1.2.2" 215 - source = "git+https://github.com/michaelsproul/arbitrary?rev=a572fd8743012a4f1ada5ee5968b1b3619c427ba#a572fd8743012a4f1ada5ee5968b1b3619c427ba" 235 + version = "1.3.0" 236 + source = "git+https://github.com/michaelsproul/arbitrary?rev=f002b99989b561ddce62e4cf2887b0f8860ae991#f002b99989b561ddce62e4cf2887b0f8860ae991" 216 237 dependencies = [ 217 238 "derive_arbitrary", 218 239 ] ··· 225 246 226 247 [[package]] 227 248 name = "arrayref" 228 - version = "0.3.6" 249 + version = "0.3.7" 229 250 source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 251 + checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 231 252 232 253 [[package]] 233 254 name = "arrayvec" ··· 248 269 "num-traits", 249 270 "rusticata-macros", 250 271 "thiserror", 251 - "time 0.3.17", 272 + "time 0.3.20", 252 273 ] 253 274 254 275 [[package]] 255 276 name = "asn1-rs" 256 - version = "0.5.1" 277 + version = "0.5.2" 257 278 source = "registry+https://github.com/rust-lang/crates.io-index" 258 - checksum = "cf6690c370453db30743b373a60ba498fc0d6d83b11f4abfd87a84a075db5dd4" 279 + checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" 259 280 dependencies = [ 260 281 "asn1-rs-derive 0.4.0", 261 282 "asn1-rs-impl", ··· 264 285 "num-traits", 265 286 "rusticata-macros", 266 287 "thiserror", 267 - "time 0.3.17", 288 + "time 0.3.20", 268 289 ] 269 290 270 291 [[package]] ··· 275 296 dependencies = [ 276 297 "proc-macro2", 277 298 "quote", 278 - "syn", 299 + "syn 1.0.109", 279 300 "synstructure", 280 301 ] 281 302 ··· 287 308 dependencies = [ 288 309 "proc-macro2", 289 310 "quote", 290 - "syn", 311 + "syn 1.0.109", 291 312 "synstructure", 292 313 ] 293 314 ··· 299 320 dependencies = [ 300 321 "proc-macro2", 301 322 "quote", 302 - "syn", 323 + "syn 1.0.109", 303 324 ] 304 325 305 326 [[package]] ··· 310 331 311 332 [[package]] 312 333 name = "async-io" 313 - version = "1.12.0" 334 + version = "1.13.0" 314 335 source = "registry+https://github.com/rust-lang/crates.io-index" 315 - checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794" 336 + checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 316 337 dependencies = [ 317 338 "async-lock", 318 339 "autocfg 1.1.0", 340 + "cfg-if", 319 341 "concurrent-queue", 320 342 "futures-lite", 321 - "libc", 322 343 "log", 323 344 "parking", 324 345 "polling", 346 + "rustix", 325 347 "slab", 326 - "socket2", 348 + "socket2 0.4.9", 327 349 "waker-fn", 328 - "windows-sys 0.42.0", 329 350 ] 330 351 331 352 [[package]] 332 353 name = "async-lock" 333 - version = "2.6.0" 354 + version = "2.7.0" 334 355 source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685" 356 + checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 336 357 dependencies = [ 337 358 "event-listener", 338 - "futures-lite", 339 359 ] 340 360 341 361 [[package]] 342 362 name = "async-stream" 343 - version = "0.3.3" 363 + version = "0.3.4" 344 364 source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e" 365 + checksum = "ad445822218ce64be7a341abfb0b1ea43b5c23aa83902542a4542e78309d8e5e" 346 366 dependencies = [ 347 367 "async-stream-impl", 348 368 "futures-core", 369 + "pin-project-lite 0.2.9", 349 370 ] 350 371 351 372 [[package]] 352 373 name = "async-stream-impl" 353 - version = "0.3.3" 374 + version = "0.3.4" 354 375 source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" 376 + checksum = "e4655ae1a7b0cdf149156f780c5bf3f1352bc53cbd9e0a361a7ef7b22947e965" 356 377 dependencies = [ 357 378 "proc-macro2", 358 379 "quote", 359 - "syn", 380 + "syn 1.0.109", 360 381 ] 361 382 362 383 [[package]] 363 384 name = "async-trait" 364 - version = "0.1.64" 385 + version = "0.1.68" 365 386 source = "registry+https://github.com/rust-lang/crates.io-index" 366 - checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" 387 + checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 367 388 dependencies = [ 368 389 "proc-macro2", 369 390 "quote", 370 - "syn", 391 + "syn 2.0.13", 371 392 ] 372 393 373 394 [[package]] ··· 431 452 "proc-macro-error", 432 453 "proc-macro2", 433 454 "quote", 434 - "syn", 455 + "syn 1.0.109", 435 456 ] 436 457 437 458 [[package]] ··· 537 558 538 559 [[package]] 539 560 name = "base64ct" 540 - version = "1.5.3" 561 + version = "1.6.0" 541 562 source = "registry+https://github.com/rust-lang/crates.io-index" 542 - checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 563 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 543 564 544 565 [[package]] 545 566 name = "beacon-api-client" 546 567 version = "0.1.0" 547 - source = "git+https://github.com/ralexstokes/beacon-api-client#53690a711e33614d59d4d44fb09762b4699e2a4e" 568 + source = "git+https://github.com/ralexstokes/beacon-api-client#30679e9e25d61731cde54e14cd8a3688a39d8e5b" 548 569 dependencies = [ 549 570 "ethereum-consensus", 550 571 "http", ··· 610 631 "task_executor", 611 632 "tempfile", 612 633 "tokio", 634 + "tokio-stream", 613 635 "tree_hash", 614 636 "types", 615 637 "unused_port", ··· 617 639 618 640 [[package]] 619 641 name = "beacon_node" 620 - version = "3.5.1" 642 + version = "4.1.0" 621 643 dependencies = [ 622 644 "beacon_chain", 623 645 "clap", ··· 728 750 729 751 [[package]] 730 752 name = "block-buffer" 731 - version = "0.10.3" 753 + version = "0.10.4" 732 754 source = "registry+https://github.com/rust-lang/crates.io-index" 733 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 755 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 734 756 dependencies = [ 735 757 "generic-array", 736 758 ] ··· 784 806 ] 785 807 786 808 [[package]] 809 + name = "bollard-stubs" 810 + version = "1.41.0" 811 + source = "registry+https://github.com/rust-lang/crates.io-index" 812 + checksum = "ed2f2e73fffe9455141e170fb9c1feb0ac521ec7e7dcd47a7cab72a658490fb8" 813 + dependencies = [ 814 + "chrono", 815 + "serde", 816 + "serde_with", 817 + ] 818 + 819 + [[package]] 787 820 name = "boot_node" 788 - version = "3.5.1" 821 + version = "4.1.0" 789 822 dependencies = [ 790 823 "beacon_node", 791 824 "clap", ··· 830 863 version = "0.1.0" 831 864 dependencies = [ 832 865 "eth2", 866 + "lighthouse_version", 833 867 "reqwest", 834 868 "sensitive_url", 835 869 "serde", ··· 964 998 965 999 [[package]] 966 1000 name = "chrono" 967 - version = "0.4.23" 1001 + version = "0.4.24" 968 1002 source = "registry+https://github.com/rust-lang/crates.io-index" 969 - checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 1003 + checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 970 1004 dependencies = [ 971 1005 "iana-time-zone", 972 1006 "js-sys", 973 1007 "num-integer", 974 1008 "num-traits", 1009 + "serde", 975 1010 "time 0.1.45", 976 1011 "wasm-bindgen", 977 1012 "winapi", ··· 996 1031 ] 997 1032 998 1033 [[package]] 1034 + name = "cipher" 1035 + version = "0.4.4" 1036 + source = "registry+https://github.com/rust-lang/crates.io-index" 1037 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1038 + dependencies = [ 1039 + "crypto-common", 1040 + "inout", 1041 + ] 1042 + 1043 + [[package]] 999 1044 name = "clang-sys" 1000 - version = "1.4.0" 1045 + version = "1.6.1" 1001 1046 source = "registry+https://github.com/rust-lang/crates.io-index" 1002 - checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 1047 + checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 1003 1048 dependencies = [ 1004 1049 "glob", 1005 1050 "libc", ··· 1072 1117 "state_processing", 1073 1118 "store", 1074 1119 "task_executor", 1075 - "time 0.3.17", 1120 + "time 0.3.20", 1076 1121 "timer", 1077 1122 "tokio", 1078 1123 "types", ··· 1080 1125 1081 1126 [[package]] 1082 1127 name = "cmake" 1083 - version = "0.1.49" 1128 + version = "0.1.50" 1084 1129 source = "registry+https://github.com/rust-lang/crates.io-index" 1085 - checksum = "db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c" 1130 + checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 1086 1131 dependencies = [ 1087 1132 "cc", 1088 1133 ] ··· 1109 1154 version = "0.2.0" 1110 1155 dependencies = [ 1111 1156 "quote", 1112 - "syn", 1157 + "syn 1.0.109", 1113 1158 ] 1114 1159 1115 1160 [[package]] ··· 1133 1178 1134 1179 [[package]] 1135 1180 name = "const-oid" 1136 - version = "0.9.1" 1181 + version = "0.9.2" 1137 1182 source = "registry+https://github.com/rust-lang/crates.io-index" 1138 - checksum = "cec318a675afcb6a1ea1d4340e2d377e56e47c266f28043ceccbf4412ddfdd3b" 1183 + checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913" 1139 1184 1140 1185 [[package]] 1141 1186 name = "convert_case" ··· 1155 1200 1156 1201 [[package]] 1157 1202 name = "core-foundation-sys" 1158 - version = "0.8.3" 1203 + version = "0.8.4" 1159 1204 source = "registry+https://github.com/rust-lang/crates.io-index" 1160 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 1205 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 1161 1206 1162 1207 [[package]] 1163 1208 name = "core2" ··· 1170 1215 1171 1216 [[package]] 1172 1217 name = "cpufeatures" 1173 - version = "0.2.5" 1218 + version = "0.2.6" 1174 1219 source = "registry+https://github.com/rust-lang/crates.io-index" 1175 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 1220 + checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181" 1176 1221 dependencies = [ 1177 1222 "libc", 1178 1223 ] 1179 - 1180 - [[package]] 1181 - name = "cpuid-bool" 1182 - version = "0.2.0" 1183 - source = "registry+https://github.com/rust-lang/crates.io-index" 1184 - checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" 1185 1224 1186 1225 [[package]] 1187 1226 name = "crc" ··· 1245 1284 1246 1285 [[package]] 1247 1286 name = "crossbeam-channel" 1248 - version = "0.5.6" 1287 + version = "0.5.7" 1249 1288 source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 1289 + checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" 1251 1290 dependencies = [ 1252 1291 "cfg-if", 1253 1292 "crossbeam-utils", ··· 1255 1294 1256 1295 [[package]] 1257 1296 name = "crossbeam-deque" 1258 - version = "0.8.2" 1297 + version = "0.8.3" 1259 1298 source = "registry+https://github.com/rust-lang/crates.io-index" 1260 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 1299 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1261 1300 dependencies = [ 1262 1301 "cfg-if", 1263 1302 "crossbeam-epoch", ··· 1266 1305 1267 1306 [[package]] 1268 1307 name = "crossbeam-epoch" 1269 - version = "0.9.13" 1308 + version = "0.9.14" 1270 1309 source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 1310 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 1272 1311 dependencies = [ 1273 1312 "autocfg 1.1.0", 1274 1313 "cfg-if", 1275 1314 "crossbeam-utils", 1276 - "memoffset 0.7.1", 1315 + "memoffset 0.8.0", 1277 1316 "scopeguard", 1278 1317 ] 1279 1318 1280 1319 [[package]] 1281 1320 name = "crossbeam-utils" 1282 - version = "0.8.14" 1321 + version = "0.8.15" 1283 1322 source = "registry+https://github.com/rust-lang/crates.io-index" 1284 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 1323 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 1285 1324 dependencies = [ 1286 1325 "cfg-if", 1287 1326 ] ··· 1311 1350 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1312 1351 dependencies = [ 1313 1352 "generic-array", 1353 + "rand_core 0.6.4", 1314 1354 "typenum", 1315 1355 ] 1316 1356 ··· 1326 1366 1327 1367 [[package]] 1328 1368 name = "crypto-mac" 1329 - version = "0.10.1" 1330 - source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" 1332 - dependencies = [ 1333 - "generic-array", 1334 - "subtle", 1335 - ] 1336 - 1337 - [[package]] 1338 - name = "crypto-mac" 1339 1369 version = "0.11.1" 1340 1370 source = "registry+https://github.com/rust-lang/crates.io-index" 1341 1371 checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" ··· 1346 1376 1347 1377 [[package]] 1348 1378 name = "csv" 1349 - version = "1.2.0" 1379 + version = "1.2.1" 1350 1380 source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "af91f40b7355f82b0a891f50e70399475945bb0b0da4f1700ce60761c9d3e359" 1381 + checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad" 1352 1382 dependencies = [ 1353 1383 "csv-core", 1354 1384 "itoa", ··· 1367 1397 1368 1398 [[package]] 1369 1399 name = "ctr" 1370 - version = "0.6.0" 1400 + version = "0.8.0" 1371 1401 source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 1402 + checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" 1373 1403 dependencies = [ 1374 - "cipher 0.2.5", 1404 + "cipher 0.3.0", 1375 1405 ] 1376 1406 1377 1407 [[package]] 1378 1408 name = "ctr" 1379 - version = "0.8.0" 1409 + version = "0.9.2" 1380 1410 source = "registry+https://github.com/rust-lang/crates.io-index" 1381 - checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" 1411 + checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1382 1412 dependencies = [ 1383 - "cipher 0.3.0", 1413 + "cipher 0.4.4", 1384 1414 ] 1385 1415 1386 1416 [[package]] ··· 1408 1438 1409 1439 [[package]] 1410 1440 name = "curve25519-dalek" 1411 - version = "4.0.0-rc.0" 1441 + version = "4.0.0-rc.2" 1412 1442 source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "8da00a7a9a4eb92a0a0f8e75660926d48f0d0f3c537e455c457bcdaa1e16b1ac" 1443 + checksum = "03d928d978dbec61a1167414f5ec534f24bea0d7a0d24dd9b6233d3d8223e585" 1414 1444 dependencies = [ 1415 1445 "cfg-if", 1416 1446 "fiat-crypto", ··· 1422 1452 1423 1453 [[package]] 1424 1454 name = "cxx" 1425 - version = "1.0.90" 1455 + version = "1.0.94" 1426 1456 source = "registry+https://github.com/rust-lang/crates.io-index" 1427 - checksum = "90d59d9acd2a682b4e40605a242f6670eaa58c5957471cbf85e8aa6a0b97a5e8" 1457 + checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93" 1428 1458 dependencies = [ 1429 1459 "cc", 1430 1460 "cxxbridge-flags", ··· 1434 1464 1435 1465 [[package]] 1436 1466 name = "cxx-build" 1437 - version = "1.0.90" 1467 + version = "1.0.94" 1438 1468 source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - checksum = "ebfa40bda659dd5c864e65f4c9a2b0aff19bea56b017b9b77c73d3766a453a38" 1469 + checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b" 1440 1470 dependencies = [ 1441 1471 "cc", 1442 1472 "codespan-reporting", ··· 1444 1474 "proc-macro2", 1445 1475 "quote", 1446 1476 "scratch", 1447 - "syn", 1477 + "syn 2.0.13", 1448 1478 ] 1449 1479 1450 1480 [[package]] 1451 1481 name = "cxxbridge-flags" 1452 - version = "1.0.90" 1482 + version = "1.0.94" 1453 1483 source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - checksum = "457ce6757c5c70dc6ecdbda6925b958aae7f959bda7d8fb9bde889e34a09dc03" 1484 + checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb" 1455 1485 1456 1486 [[package]] 1457 1487 name = "cxxbridge-macro" 1458 - version = "1.0.90" 1488 + version = "1.0.94" 1459 1489 source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "ebf883b7aacd7b2aeb2a7b338648ee19f57c140d4ee8e52c68979c6b2f7f2263" 1490 + checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" 1461 1491 dependencies = [ 1462 1492 "proc-macro2", 1463 1493 "quote", 1464 - "syn", 1494 + "syn 2.0.13", 1465 1495 ] 1466 1496 1467 1497 [[package]] ··· 1476 1506 1477 1507 [[package]] 1478 1508 name = "darling" 1479 - version = "0.14.3" 1509 + version = "0.14.4" 1480 1510 source = "registry+https://github.com/rust-lang/crates.io-index" 1481 - checksum = "c0808e1bd8671fb44a113a14e13497557533369847788fa2ae912b6ebfce9fa8" 1511 + checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" 1482 1512 dependencies = [ 1483 - "darling_core 0.14.3", 1484 - "darling_macro 0.14.3", 1513 + "darling_core 0.14.4", 1514 + "darling_macro 0.14.4", 1485 1515 ] 1486 1516 1487 1517 [[package]] ··· 1495 1525 "proc-macro2", 1496 1526 "quote", 1497 1527 "strsim 0.10.0", 1498 - "syn", 1528 + "syn 1.0.109", 1499 1529 ] 1500 1530 1501 1531 [[package]] 1502 1532 name = "darling_core" 1503 - version = "0.14.3" 1533 + version = "0.14.4" 1504 1534 source = "registry+https://github.com/rust-lang/crates.io-index" 1505 - checksum = "001d80444f28e193f30c2f293455da62dcf9a6b29918a4253152ae2b1de592cb" 1535 + checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" 1506 1536 dependencies = [ 1507 1537 "fnv", 1508 1538 "ident_case", 1509 1539 "proc-macro2", 1510 1540 "quote", 1511 1541 "strsim 0.10.0", 1512 - "syn", 1542 + "syn 1.0.109", 1513 1543 ] 1514 1544 1515 1545 [[package]] ··· 1520 1550 dependencies = [ 1521 1551 "darling_core 0.13.4", 1522 1552 "quote", 1523 - "syn", 1553 + "syn 1.0.109", 1524 1554 ] 1525 1555 1526 1556 [[package]] 1527 1557 name = "darling_macro" 1528 - version = "0.14.3" 1558 + version = "0.14.4" 1529 1559 source = "registry+https://github.com/rust-lang/crates.io-index" 1530 - checksum = "b36230598a2d5de7ec1c6f51f72d8a99a9208daff41de2084d06e3fd3ea56685" 1560 + checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" 1531 1561 dependencies = [ 1532 - "darling_core 0.14.3", 1562 + "darling_core 0.14.4", 1533 1563 "quote", 1534 - "syn", 1564 + "syn 1.0.109", 1535 1565 ] 1536 1566 1537 1567 [[package]] ··· 1577 1607 checksum = "a5bbed42daaa95e780b60a50546aa345b8413a1e46f9a40a12907d3598f038db" 1578 1608 dependencies = [ 1579 1609 "data-encoding", 1580 - "syn", 1610 + "syn 1.0.109", 1581 1611 ] 1582 1612 1583 1613 [[package]] ··· 1606 1636 1607 1637 [[package]] 1608 1638 name = "delay_map" 1609 - version = "0.1.2" 1639 + version = "0.3.0" 1610 1640 source = "registry+https://github.com/rust-lang/crates.io-index" 1611 - checksum = "9c4d75d3abfe4830dcbf9bcb1b926954e121669f74dd1ca7aa0183b1755d83f6" 1641 + checksum = "e4355c25cbf99edcb6b4a0e906f6bdc6956eda149e84455bea49696429b2f8e8" 1612 1642 dependencies = [ 1613 1643 "futures", 1614 - "tokio-util 0.6.10", 1644 + "tokio-util 0.7.7", 1615 1645 ] 1616 1646 1617 1647 [[package]] ··· 1655 1685 1656 1686 [[package]] 1657 1687 name = "der-parser" 1658 - version = "8.1.0" 1688 + version = "8.2.0" 1659 1689 source = "registry+https://github.com/rust-lang/crates.io-index" 1660 - checksum = "42d4bc9b0db0a0df9ae64634ac5bdefb7afcb534e182275ca0beadbe486701c1" 1690 + checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e" 1661 1691 dependencies = [ 1662 - "asn1-rs 0.5.1", 1692 + "asn1-rs 0.5.2", 1663 1693 "displaydoc", 1664 1694 "nom 7.1.3", 1665 1695 "num-bigint", ··· 1675 1705 dependencies = [ 1676 1706 "proc-macro2", 1677 1707 "quote", 1678 - "syn", 1708 + "syn 1.0.109", 1679 1709 ] 1680 1710 1681 1711 [[package]] 1682 1712 name = "derive_arbitrary" 1683 - version = "1.2.2" 1684 - source = "git+https://github.com/michaelsproul/arbitrary?rev=a572fd8743012a4f1ada5ee5968b1b3619c427ba#a572fd8743012a4f1ada5ee5968b1b3619c427ba" 1713 + version = "1.3.0" 1714 + source = "git+https://github.com/michaelsproul/arbitrary?rev=f002b99989b561ddce62e4cf2887b0f8860ae991#f002b99989b561ddce62e4cf2887b0f8860ae991" 1685 1715 dependencies = [ 1686 - "darling 0.14.3", 1687 1716 "proc-macro2", 1688 1717 "quote", 1689 - "syn", 1718 + "syn 1.0.109", 1690 1719 ] 1691 1720 1692 1721 [[package]] ··· 1704 1733 source = "registry+https://github.com/rust-lang/crates.io-index" 1705 1734 checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4" 1706 1735 dependencies = [ 1707 - "darling 0.14.3", 1736 + "darling 0.14.4", 1708 1737 "proc-macro2", 1709 1738 "quote", 1710 - "syn", 1739 + "syn 1.0.109", 1711 1740 ] 1712 1741 1713 1742 [[package]] ··· 1717 1746 checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68" 1718 1747 dependencies = [ 1719 1748 "derive_builder_core", 1720 - "syn", 1749 + "syn 1.0.109", 1721 1750 ] 1722 1751 1723 1752 [[package]] ··· 1730 1759 "proc-macro2", 1731 1760 "quote", 1732 1761 "rustc_version 0.4.0", 1733 - "syn", 1762 + "syn 1.0.109", 1763 + ] 1764 + 1765 + [[package]] 1766 + name = "diesel" 1767 + version = "2.0.3" 1768 + source = "registry+https://github.com/rust-lang/crates.io-index" 1769 + checksum = "4391a22b19c916e50bec4d6140f29bdda3e3bb187223fe6e3ea0b6e4d1021c04" 1770 + dependencies = [ 1771 + "bitflags", 1772 + "byteorder", 1773 + "diesel_derives", 1774 + "itoa", 1775 + "pq-sys", 1776 + "r2d2", 1777 + ] 1778 + 1779 + [[package]] 1780 + name = "diesel_derives" 1781 + version = "2.0.2" 1782 + source = "registry+https://github.com/rust-lang/crates.io-index" 1783 + checksum = "0ad74fdcf086be3d4fdd142f67937678fe60ed431c3b2f08599e7687269410c4" 1784 + dependencies = [ 1785 + "proc-macro-error", 1786 + "proc-macro2", 1787 + "quote", 1788 + "syn 1.0.109", 1789 + ] 1790 + 1791 + [[package]] 1792 + name = "diesel_migrations" 1793 + version = "2.0.0" 1794 + source = "registry+https://github.com/rust-lang/crates.io-index" 1795 + checksum = "e9ae22beef5e9d6fab9225ddb073c1c6c1a7a6ded5019d5da11d1e5c5adc34e2" 1796 + dependencies = [ 1797 + "diesel", 1798 + "migrations_internals", 1799 + "migrations_macros", 1734 1800 ] 1735 1801 1736 1802 [[package]] ··· 1748 1814 source = "registry+https://github.com/rust-lang/crates.io-index" 1749 1815 checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1750 1816 dependencies = [ 1751 - "block-buffer 0.10.3", 1817 + "block-buffer 0.10.4", 1752 1818 "crypto-common", 1753 1819 "subtle", 1754 1820 ] ··· 1805 1871 1806 1872 [[package]] 1807 1873 name = "discv5" 1808 - version = "0.1.0" 1874 + version = "0.2.2" 1809 1875 source = "registry+https://github.com/rust-lang/crates.io-index" 1810 - checksum = "d767c0e59b3e8d65222d95df723cc2ea1da92bb0f27c563607e6f0bde064f255" 1876 + checksum = "b009a99b85b58900df46435307fc5c4c845af7e182582b1fbf869572fa9fce69" 1811 1877 dependencies = [ 1812 1878 "aes 0.7.5", 1813 1879 "aes-gcm 0.9.4", 1814 1880 "arrayvec", 1815 1881 "delay_map", 1816 - "enr", 1882 + "enr 0.7.0", 1817 1883 "fnv", 1818 1884 "futures", 1819 1885 "hashlink 0.7.0", ··· 1827 1893 "rand 0.8.5", 1828 1894 "rlp", 1829 1895 "smallvec", 1830 - "socket2", 1896 + "socket2 0.4.9", 1831 1897 "tokio", 1832 1898 "tokio-stream", 1833 1899 "tokio-util 0.6.10", ··· 1845 1911 dependencies = [ 1846 1912 "proc-macro2", 1847 1913 "quote", 1848 - "syn", 1914 + "syn 1.0.109", 1849 1915 ] 1850 1916 1851 1917 [[package]] 1852 1918 name = "dtoa" 1853 - version = "1.0.5" 1919 + version = "1.0.6" 1854 1920 source = "registry+https://github.com/rust-lang/crates.io-index" 1855 - checksum = "c00704156a7de8df8da0911424e30c2049957b0a714542a44e05fe693dd85313" 1921 + checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169" 1856 1922 1857 1923 [[package]] 1858 1924 name = "ecdsa" ··· 1966 2032 "base64 0.13.1", 1967 2033 "bs58", 1968 2034 "bytes", 2035 + "hex", 2036 + "k256", 2037 + "log", 2038 + "rand 0.8.5", 2039 + "rlp", 2040 + "serde", 2041 + "sha3 0.10.6", 2042 + "zeroize", 2043 + ] 2044 + 2045 + [[package]] 2046 + name = "enr" 2047 + version = "0.7.0" 2048 + source = "registry+https://github.com/rust-lang/crates.io-index" 2049 + checksum = "492a7e5fc2504d5fdce8e124d3e263b244a68b283cac67a69eda0cd43e0aebad" 2050 + dependencies = [ 2051 + "base64 0.13.1", 2052 + "bs58", 2053 + "bytes", 1969 2054 "ed25519-dalek", 1970 2055 "hex", 1971 2056 "k256", ··· 1986 2071 "heck", 1987 2072 "proc-macro2", 1988 2073 "quote", 1989 - "syn", 2074 + "syn 1.0.109", 1990 2075 ] 1991 2076 1992 2077 [[package]] ··· 2036 2121 2037 2122 [[package]] 2038 2123 name = "errno" 2039 - version = "0.2.8" 2124 + version = "0.3.0" 2040 2125 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 2126 + checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" 2042 2127 dependencies = [ 2043 2128 "errno-dragonfly", 2044 2129 "libc", 2045 - "winapi", 2130 + "windows-sys 0.45.0", 2046 2131 ] 2047 2132 2048 2133 [[package]] ··· 2210 2295 name = "eth2_network_config" 2211 2296 version = "0.2.0" 2212 2297 dependencies = [ 2213 - "enr", 2298 + "discv5", 2214 2299 "eth2_config", 2215 2300 "eth2_ssz", 2216 2301 "serde_yaml", ··· 2248 2333 "eth2_ssz", 2249 2334 "proc-macro2", 2250 2335 "quote", 2251 - "syn", 2336 + "syn 1.0.109", 2252 2337 ] 2253 2338 2254 2339 [[package]] ··· 2361 2446 "async-stream", 2362 2447 "blst", 2363 2448 "bs58", 2364 - "enr", 2449 + "enr 0.6.2", 2365 2450 "hex", 2366 2451 "integer-sqrt", 2367 2452 "multiaddr 0.14.0", 2368 - "multihash", 2453 + "multihash 0.16.3", 2369 2454 "rand 0.8.5", 2370 2455 "serde", 2371 2456 "serde_json", ··· 2597 2682 2598 2683 [[package]] 2599 2684 name = "fiat-crypto" 2600 - version = "0.1.17" 2685 + version = "0.1.20" 2601 2686 source = "registry+https://github.com/rust-lang/crates.io-index" 2602 - checksum = "a214f5bb88731d436478f3ae1f8a277b62124089ba9fb67f4f93fb100ef73c90" 2687 + checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77" 2603 2688 2604 2689 [[package]] 2605 2690 name = "field-offset" 2606 - version = "0.3.4" 2691 + version = "0.3.5" 2607 2692 source = "registry+https://github.com/rust-lang/crates.io-index" 2608 - checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92" 2693 + checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535" 2609 2694 dependencies = [ 2610 - "memoffset 0.6.5", 2611 - "rustc_version 0.3.3", 2695 + "memoffset 0.8.0", 2696 + "rustc_version 0.4.0", 2612 2697 ] 2613 2698 2614 2699 [[package]] ··· 2730 2815 2731 2816 [[package]] 2732 2817 name = "futures" 2733 - version = "0.3.26" 2818 + version = "0.3.28" 2734 2819 source = "registry+https://github.com/rust-lang/crates.io-index" 2735 - checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84" 2820 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 2736 2821 dependencies = [ 2737 2822 "futures-channel", 2738 2823 "futures-core", ··· 2745 2830 2746 2831 [[package]] 2747 2832 name = "futures-channel" 2748 - version = "0.3.26" 2833 + version = "0.3.28" 2749 2834 source = "registry+https://github.com/rust-lang/crates.io-index" 2750 - checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 2835 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 2751 2836 dependencies = [ 2752 2837 "futures-core", 2753 2838 "futures-sink", ··· 2755 2840 2756 2841 [[package]] 2757 2842 name = "futures-core" 2758 - version = "0.3.26" 2843 + version = "0.3.28" 2759 2844 source = "registry+https://github.com/rust-lang/crates.io-index" 2760 - checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 2845 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 2761 2846 2762 2847 [[package]] 2763 2848 name = "futures-executor" 2764 - version = "0.3.26" 2849 + version = "0.3.28" 2765 2850 source = "registry+https://github.com/rust-lang/crates.io-index" 2766 - checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e" 2851 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 2767 2852 dependencies = [ 2768 2853 "futures-core", 2769 2854 "futures-task", ··· 2773 2858 2774 2859 [[package]] 2775 2860 name = "futures-io" 2776 - version = "0.3.26" 2861 + version = "0.3.28" 2777 2862 source = "registry+https://github.com/rust-lang/crates.io-index" 2778 - checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 2863 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 2779 2864 2780 2865 [[package]] 2781 2866 name = "futures-lite" ··· 2794 2879 2795 2880 [[package]] 2796 2881 name = "futures-macro" 2797 - version = "0.3.26" 2882 + version = "0.3.28" 2798 2883 source = "registry+https://github.com/rust-lang/crates.io-index" 2799 - checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" 2884 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 2800 2885 dependencies = [ 2801 2886 "proc-macro2", 2802 2887 "quote", 2803 - "syn", 2888 + "syn 2.0.13", 2804 2889 ] 2805 2890 2806 2891 [[package]] ··· 2816 2901 2817 2902 [[package]] 2818 2903 name = "futures-sink" 2819 - version = "0.3.26" 2904 + version = "0.3.28" 2820 2905 source = "registry+https://github.com/rust-lang/crates.io-index" 2821 - checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 2906 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 2822 2907 2823 2908 [[package]] 2824 2909 name = "futures-task" 2825 - version = "0.3.26" 2910 + version = "0.3.28" 2826 2911 source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 2912 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 2828 2913 2829 2914 [[package]] 2830 2915 name = "futures-timer" ··· 2834 2919 2835 2920 [[package]] 2836 2921 name = "futures-util" 2837 - version = "0.3.26" 2922 + version = "0.3.28" 2838 2923 source = "registry+https://github.com/rust-lang/crates.io-index" 2839 - checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 2924 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 2840 2925 dependencies = [ 2841 2926 "futures-channel", 2842 2927 "futures-core", ··· 2861 2946 2862 2947 [[package]] 2863 2948 name = "generic-array" 2864 - version = "0.14.6" 2949 + version = "0.14.7" 2865 2950 source = "registry+https://github.com/rust-lang/crates.io-index" 2866 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 2951 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2867 2952 dependencies = [ 2868 2953 "typenum", 2869 2954 "version_check", ··· 2918 3003 2919 3004 [[package]] 2920 3005 name = "ghash" 2921 - version = "0.3.1" 3006 + version = "0.4.4" 2922 3007 source = "registry+https://github.com/rust-lang/crates.io-index" 2923 - checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375" 3008 + checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" 2924 3009 dependencies = [ 2925 3010 "opaque-debug", 2926 - "polyval 0.4.5", 3011 + "polyval 0.5.3", 2927 3012 ] 2928 3013 2929 3014 [[package]] 2930 3015 name = "ghash" 2931 - version = "0.4.4" 3016 + version = "0.5.0" 2932 3017 source = "registry+https://github.com/rust-lang/crates.io-index" 2933 - checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" 3018 + checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" 2934 3019 dependencies = [ 2935 3020 "opaque-debug", 2936 - "polyval 0.5.3", 3021 + "polyval 0.6.0", 2937 3022 ] 2938 3023 2939 3024 [[package]] 2940 3025 name = "gimli" 2941 - version = "0.27.1" 3026 + version = "0.27.2" 2942 3027 source = "registry+https://github.com/rust-lang/crates.io-index" 2943 - checksum = "221996f774192f0f718773def8201c4ae31f02616a54ccfc2d358bb0e5cefdec" 3028 + checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 2944 3029 2945 3030 [[package]] 2946 3031 name = "git-version" ··· 2961 3046 "proc-macro-hack", 2962 3047 "proc-macro2", 2963 3048 "quote", 2964 - "syn", 3049 + "syn 1.0.109", 2965 3050 ] 2966 3051 2967 3052 [[package]] ··· 2983 3068 2984 3069 [[package]] 2985 3070 name = "h2" 2986 - version = "0.3.15" 3071 + version = "0.3.16" 2987 3072 source = "registry+https://github.com/rust-lang/crates.io-index" 2988 - checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 3073 + checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 2989 3074 dependencies = [ 2990 3075 "bytes", 2991 3076 "fnv", ··· 3116 3201 ] 3117 3202 3118 3203 [[package]] 3204 + name = "hermit-abi" 3205 + version = "0.3.1" 3206 + source = "registry+https://github.com/rust-lang/crates.io-index" 3207 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 3208 + 3209 + [[package]] 3119 3210 name = "hex" 3120 3211 version = "0.4.3" 3121 3212 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3148 3239 3149 3240 [[package]] 3150 3241 name = "hmac" 3151 - version = "0.10.1" 3152 - source = "registry+https://github.com/rust-lang/crates.io-index" 3153 - checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" 3154 - dependencies = [ 3155 - "crypto-mac 0.10.1", 3156 - "digest 0.9.0", 3157 - ] 3158 - 3159 - [[package]] 3160 - name = "hmac" 3161 3242 version = "0.11.0" 3162 3243 source = "registry+https://github.com/rust-lang/crates.io-index" 3163 3244 checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" ··· 3199 3280 3200 3281 [[package]] 3201 3282 name = "http" 3202 - version = "0.2.8" 3283 + version = "0.2.9" 3203 3284 source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 3285 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 3205 3286 dependencies = [ 3206 3287 "bytes", 3207 3288 "fnv", ··· 3312 3393 3313 3394 [[package]] 3314 3395 name = "hyper" 3315 - version = "0.14.24" 3396 + version = "0.14.25" 3316 3397 source = "registry+https://github.com/rust-lang/crates.io-index" 3317 - checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 3398 + checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" 3318 3399 dependencies = [ 3319 3400 "bytes", 3320 3401 "futures-channel", ··· 3327 3408 "httpdate", 3328 3409 "itoa", 3329 3410 "pin-project-lite 0.2.9", 3330 - "socket2", 3411 + "socket2 0.4.9", 3331 3412 "tokio", 3332 3413 "tower-service", 3333 3414 "tracing", ··· 3362 3443 3363 3444 [[package]] 3364 3445 name = "iana-time-zone" 3365 - version = "0.1.53" 3446 + version = "0.1.54" 3366 3447 source = "registry+https://github.com/rust-lang/crates.io-index" 3367 - checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 3448 + checksum = "0c17cc76786e99f8d2f055c11159e7f0091c42474dcc3189fbab96072e873e6d" 3368 3449 dependencies = [ 3369 3450 "android_system_properties", 3370 3451 "core-foundation-sys", 3371 3452 "iana-time-zone-haiku", 3372 3453 "js-sys", 3373 3454 "wasm-bindgen", 3374 - "winapi", 3455 + "windows 0.46.0", 3375 3456 ] 3376 3457 3377 3458 [[package]] ··· 3444 3525 3445 3526 [[package]] 3446 3527 name = "if-watch" 3447 - version = "3.0.0" 3528 + version = "3.0.1" 3448 3529 source = "registry+https://github.com/rust-lang/crates.io-index" 3449 - checksum = "ba7abdbb86e485125dad06c2691e1e393bf3b08c7b743b43aa162a00fd39062e" 3530 + checksum = "a9465340214b296cd17a0009acdb890d6160010b8adf8f78a00d0d7ab270f79f" 3450 3531 dependencies = [ 3451 3532 "async-io", 3452 3533 "core-foundation", ··· 3458 3539 "rtnetlink", 3459 3540 "system-configuration", 3460 3541 "tokio", 3461 - "windows", 3542 + "windows 0.34.0", 3462 3543 ] 3463 3544 3464 3545 [[package]] ··· 3527 3608 dependencies = [ 3528 3609 "proc-macro2", 3529 3610 "quote", 3530 - "syn", 3611 + "syn 1.0.109", 3531 3612 ] 3532 3613 3533 3614 [[package]] 3534 3615 name = "indexmap" 3535 - version = "1.9.2" 3616 + version = "1.9.3" 3536 3617 source = "registry+https://github.com/rust-lang/crates.io-index" 3537 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 3618 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 3538 3619 dependencies = [ 3539 3620 "autocfg 1.1.0", 3540 3621 "hashbrown 0.12.3", 3541 3622 ] 3542 3623 3543 3624 [[package]] 3625 + name = "inout" 3626 + version = "0.1.3" 3627 + source = "registry+https://github.com/rust-lang/crates.io-index" 3628 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 3629 + dependencies = [ 3630 + "generic-array", 3631 + ] 3632 + 3633 + [[package]] 3544 3634 name = "instant" 3545 3635 version = "0.1.12" 3546 3636 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3591 3681 3592 3682 [[package]] 3593 3683 name = "io-lifetimes" 3594 - version = "1.0.5" 3684 + version = "1.0.9" 3595 3685 source = "registry+https://github.com/rust-lang/crates.io-index" 3596 - checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" 3686 + checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb" 3597 3687 dependencies = [ 3688 + "hermit-abi 0.3.1", 3598 3689 "libc", 3599 3690 "windows-sys 0.45.0", 3600 3691 ] ··· 3605 3696 source = "registry+https://github.com/rust-lang/crates.io-index" 3606 3697 checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be" 3607 3698 dependencies = [ 3608 - "socket2", 3699 + "socket2 0.4.9", 3609 3700 "widestring 0.5.1", 3610 3701 "winapi", 3611 3702 "winreg", ··· 3613 3704 3614 3705 [[package]] 3615 3706 name = "ipnet" 3616 - version = "2.7.1" 3707 + version = "2.7.2" 3617 3708 source = "registry+https://github.com/rust-lang/crates.io-index" 3618 - checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 3709 + checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 3619 3710 3620 3711 [[package]] 3621 3712 name = "itertools" ··· 3628 3719 3629 3720 [[package]] 3630 3721 name = "itoa" 3631 - version = "1.0.5" 3722 + version = "1.0.6" 3632 3723 source = "registry+https://github.com/rust-lang/crates.io-index" 3633 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 3724 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 3634 3725 3635 3726 [[package]] 3636 3727 name = "jemalloc-ctl" ··· 3689 3780 3690 3781 [[package]] 3691 3782 name = "jsonwebtoken" 3692 - version = "8.2.0" 3783 + version = "8.3.0" 3693 3784 source = "registry+https://github.com/rust-lang/crates.io-index" 3694 - checksum = "09f4f04699947111ec1733e71778d763555737579e44b85844cae8e1940a1828" 3785 + checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" 3695 3786 dependencies = [ 3696 - "base64 0.13.1", 3787 + "base64 0.21.0", 3697 3788 "pem", 3698 3789 "ring", 3699 3790 "serde", ··· 3750 3841 3751 3842 [[package]] 3752 3843 name = "lcli" 3753 - version = "3.5.1" 3844 + version = "4.1.0" 3754 3845 dependencies = [ 3755 3846 "account_utils", 3756 3847 "beacon_chain", ··· 3810 3901 3811 3902 [[package]] 3812 3903 name = "libc" 3813 - version = "0.2.139" 3904 + version = "0.2.140" 3814 3905 source = "registry+https://github.com/rust-lang/crates.io-index" 3815 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 3906 + checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 3816 3907 3817 3908 [[package]] 3818 3909 name = "libflate" 3819 - version = "1.2.0" 3910 + version = "1.3.0" 3820 3911 source = "registry+https://github.com/rust-lang/crates.io-index" 3821 - checksum = "05605ab2bce11bcfc0e9c635ff29ef8b2ea83f29be257ee7d730cac3ee373093" 3912 + checksum = "97822bf791bd4d5b403713886a5fbe8bf49520fe78e323b0dc480ca1a03e50b0" 3822 3913 dependencies = [ 3823 3914 "adler32", 3824 3915 "crc32fast", ··· 3827 3918 3828 3919 [[package]] 3829 3920 name = "libflate_lz77" 3830 - version = "1.1.0" 3921 + version = "1.2.0" 3831 3922 source = "registry+https://github.com/rust-lang/crates.io-index" 3832 - checksum = "39a734c0493409afcd49deee13c006a04e3586b9761a03543c6272c9c51f2f5a" 3923 + checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf" 3833 3924 dependencies = [ 3834 3925 "rle-decode-fast", 3835 3926 ] ··· 3873 3964 3874 3965 [[package]] 3875 3966 name = "libp2p" 3876 - version = "0.50.0" 3967 + version = "0.50.1" 3877 3968 source = "registry+https://github.com/rust-lang/crates.io-index" 3878 - checksum = "2e0a0d2f693675f49ded13c5d510c48b78069e23cbd9108d7ccd59f6dc568819" 3969 + checksum = "9c7b0104790be871edcf97db9bd2356604984e623a08d825c3f27852290266b8" 3879 3970 dependencies = [ 3880 3971 "bytes", 3881 3972 "futures", ··· 3921 4012 "libsecp256k1", 3922 4013 "log", 3923 4014 "multiaddr 0.14.0", 3924 - "multihash", 4015 + "multihash 0.16.3", 3925 4016 "multistream-select 0.11.0", 3926 4017 "p256", 3927 4018 "parking_lot 0.12.1", ··· 3955 4046 "libsecp256k1", 3956 4047 "log", 3957 4048 "multiaddr 0.16.0", 3958 - "multihash", 4049 + "multihash 0.16.3", 3959 4050 "multistream-select 0.12.1", 3960 4051 "once_cell", 3961 4052 "p256", ··· 3972 4063 "unsigned-varint 0.7.1", 3973 4064 "void", 3974 4065 "zeroize", 4066 + ] 4067 + 4068 + [[package]] 4069 + name = "libp2p-core" 4070 + version = "0.39.1" 4071 + source = "registry+https://github.com/rust-lang/crates.io-index" 4072 + checksum = "9b7f8b7d65c070a5a1b5f8f0510648189da08f787b8963f8e21219e0710733af" 4073 + dependencies = [ 4074 + "either", 4075 + "fnv", 4076 + "futures", 4077 + "futures-timer", 4078 + "instant", 4079 + "libp2p-identity", 4080 + "log", 4081 + "multiaddr 0.17.1", 4082 + "multihash 0.17.0", 4083 + "multistream-select 0.12.1", 4084 + "once_cell", 4085 + "parking_lot 0.12.1", 4086 + "pin-project", 4087 + "quick-protobuf", 4088 + "rand 0.8.5", 4089 + "rw-stream-sink", 4090 + "smallvec", 4091 + "thiserror", 4092 + "unsigned-varint 0.7.1", 4093 + "void", 3975 4094 ] 3976 4095 3977 4096 [[package]] ··· 4040 4159 ] 4041 4160 4042 4161 [[package]] 4162 + name = "libp2p-identity" 4163 + version = "0.1.1" 4164 + source = "registry+https://github.com/rust-lang/crates.io-index" 4165 + checksum = "8a8ea433ae0cea7e3315354305237b9897afe45278b2118a7a57ca744e70fd27" 4166 + dependencies = [ 4167 + "bs58", 4168 + "ed25519-dalek", 4169 + "log", 4170 + "multiaddr 0.17.1", 4171 + "multihash 0.17.0", 4172 + "prost", 4173 + "quick-protobuf", 4174 + "rand 0.8.5", 4175 + "thiserror", 4176 + "zeroize", 4177 + ] 4178 + 4179 + [[package]] 4043 4180 name = "libp2p-mdns" 4044 4181 version = "0.42.0" 4045 4182 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4053 4190 "log", 4054 4191 "rand 0.8.5", 4055 4192 "smallvec", 4056 - "socket2", 4193 + "socket2 0.4.9", 4057 4194 "tokio", 4058 4195 "trust-dns-proto", 4059 4196 "void", ··· 4181 4318 dependencies = [ 4182 4319 "heck", 4183 4320 "quote", 4184 - "syn", 4321 + "syn 1.0.109", 4185 4322 ] 4186 4323 4187 4324 [[package]] ··· 4196 4333 "libc", 4197 4334 "libp2p-core 0.38.0", 4198 4335 "log", 4199 - "socket2", 4336 + "socket2 0.4.9", 4200 4337 "tokio", 4201 4338 ] 4202 4339 4203 4340 [[package]] 4204 4341 name = "libp2p-tls" 4205 - version = "0.1.0-alpha" 4342 + version = "0.1.0" 4206 4343 source = "registry+https://github.com/rust-lang/crates.io-index" 4207 - checksum = "f7905ce0d040576634e8a3229a7587cc8beab83f79db6023800f1792895defa8" 4344 + checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" 4208 4345 dependencies = [ 4209 4346 "futures", 4210 4347 "futures-rustls", 4211 - "libp2p-core 0.38.0", 4348 + "libp2p-core 0.39.1", 4349 + "libp2p-identity", 4212 4350 "rcgen 0.10.0", 4213 4351 "ring", 4214 4352 "rustls 0.20.8", ··· 4234 4372 "libp2p-core 0.38.0", 4235 4373 "libp2p-noise", 4236 4374 "log", 4237 - "multihash", 4375 + "multihash 0.16.3", 4238 4376 "prost", 4239 4377 "prost-build", 4240 4378 "prost-codec", ··· 4336 4474 source = "registry+https://github.com/rust-lang/crates.io-index" 4337 4475 checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 4338 4476 dependencies = [ 4339 - "cc", 4340 4477 "pkg-config", 4341 4478 "vcpkg", 4342 4479 ] ··· 4354 4491 4355 4492 [[package]] 4356 4493 name = "lighthouse" 4357 - version = "3.5.1" 4494 + version = "4.1.0" 4358 4495 dependencies = [ 4359 4496 "account_manager", 4360 4497 "account_utils", ··· 4478 4615 4479 4616 [[package]] 4480 4617 name = "linux-raw-sys" 4481 - version = "0.1.4" 4618 + version = "0.3.1" 4482 4619 source = "registry+https://github.com/rust-lang/crates.io-index" 4483 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 4620 + checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" 4484 4621 4485 4622 [[package]] 4486 4623 name = "lmdb-rkv" ··· 4666 4803 4667 4804 [[package]] 4668 4805 name = "memoffset" 4669 - version = "0.7.1" 4806 + version = "0.8.0" 4670 4807 source = "registry+https://github.com/rust-lang/crates.io-index" 4671 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 4808 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 4672 4809 dependencies = [ 4673 4810 "autocfg 1.1.0", 4674 4811 ] ··· 4705 4842 "proc-macro2", 4706 4843 "quote", 4707 4844 "smallvec", 4708 - "syn", 4845 + "syn 1.0.109", 4709 4846 ] 4710 4847 4711 4848 [[package]] ··· 4726 4863 ] 4727 4864 4728 4865 [[package]] 4866 + name = "migrations_internals" 4867 + version = "2.0.0" 4868 + source = "registry+https://github.com/rust-lang/crates.io-index" 4869 + checksum = "c493c09323068c01e54c685f7da41a9ccf9219735c3766fbfd6099806ea08fbc" 4870 + dependencies = [ 4871 + "serde", 4872 + "toml", 4873 + ] 4874 + 4875 + [[package]] 4876 + name = "migrations_macros" 4877 + version = "2.0.0" 4878 + source = "registry+https://github.com/rust-lang/crates.io-index" 4879 + checksum = "8a8ff27a350511de30cdabb77147501c36ef02e0451d957abea2f30caffb2b58" 4880 + dependencies = [ 4881 + "migrations_internals", 4882 + "proc-macro2", 4883 + "quote", 4884 + ] 4885 + 4886 + [[package]] 4729 4887 name = "milagro_bls" 4730 4888 version = "1.4.2" 4731 4889 source = "git+https://github.com/sigp/milagro_bls?tag=v1.4.2#16655aa033175a90c10ef02aa144e2835de23aec" ··· 4739 4897 4740 4898 [[package]] 4741 4899 name = "mime" 4742 - version = "0.3.16" 4900 + version = "0.3.17" 4743 4901 source = "registry+https://github.com/rust-lang/crates.io-index" 4744 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 4902 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 4745 4903 4746 4904 [[package]] 4747 4905 name = "mime_guess" ··· 4816 4974 "bs58", 4817 4975 "byteorder", 4818 4976 "data-encoding", 4819 - "multihash", 4977 + "multihash 0.16.3", 4820 4978 "percent-encoding", 4821 4979 "serde", 4822 4980 "static_assertions", ··· 4834 4992 "byteorder", 4835 4993 "data-encoding", 4836 4994 "multibase", 4837 - "multihash", 4995 + "multihash 0.16.3", 4996 + "percent-encoding", 4997 + "serde", 4998 + "static_assertions", 4999 + "unsigned-varint 0.7.1", 5000 + "url", 5001 + ] 5002 + 5003 + [[package]] 5004 + name = "multiaddr" 5005 + version = "0.17.1" 5006 + source = "registry+https://github.com/rust-lang/crates.io-index" 5007 + checksum = "2b36f567c7099511fa8612bbbb52dda2419ce0bdbacf31714e3a5ffdb766d3bd" 5008 + dependencies = [ 5009 + "arrayref", 5010 + "byteorder", 5011 + "data-encoding", 5012 + "log", 5013 + "multibase", 5014 + "multihash 0.17.0", 4838 5015 "percent-encoding", 4839 5016 "serde", 4840 5017 "static_assertions", ··· 4867 5044 ] 4868 5045 4869 5046 [[package]] 5047 + name = "multihash" 5048 + version = "0.17.0" 5049 + source = "registry+https://github.com/rust-lang/crates.io-index" 5050 + checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" 5051 + dependencies = [ 5052 + "core2", 5053 + "digest 0.10.6", 5054 + "multihash-derive", 5055 + "sha2 0.10.6", 5056 + "unsigned-varint 0.7.1", 5057 + ] 5058 + 5059 + [[package]] 4870 5060 name = "multihash-derive" 4871 5061 version = "0.8.1" 4872 5062 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4876 5066 "proc-macro-error", 4877 5067 "proc-macro2", 4878 5068 "quote", 4879 - "syn", 5069 + "syn 1.0.109", 4880 5070 "synstructure", 4881 5071 ] 4882 5072 ··· 5005 5195 5006 5196 [[package]] 5007 5197 name = "netlink-sys" 5008 - version = "0.8.4" 5198 + version = "0.8.5" 5009 5199 source = "registry+https://github.com/rust-lang/crates.io-index" 5010 - checksum = "260e21fbb6f3d253a14df90eb0000a6066780a15dd901a7519ce02d77a94985b" 5200 + checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" 5011 5201 dependencies = [ 5012 5202 "bytes", 5013 5203 "futures", ··· 5258 5448 source = "registry+https://github.com/rust-lang/crates.io-index" 5259 5449 checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" 5260 5450 dependencies = [ 5261 - "asn1-rs 0.5.1", 5451 + "asn1-rs 0.5.2", 5262 5452 ] 5263 5453 5264 5454 [[package]] ··· 5308 5498 "bytes", 5309 5499 "proc-macro2", 5310 5500 "quote", 5311 - "syn", 5501 + "syn 1.0.109", 5312 5502 ] 5313 5503 5314 5504 [[package]] 5315 5505 name = "openssl" 5316 - version = "0.10.45" 5506 + version = "0.10.49" 5317 5507 source = "registry+https://github.com/rust-lang/crates.io-index" 5318 - checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 5508 + checksum = "4d2f106ab837a24e03672c59b1239669a0596406ff657c3c0835b6b7f0f35a33" 5319 5509 dependencies = [ 5320 5510 "bitflags", 5321 5511 "cfg-if", ··· 5328 5518 5329 5519 [[package]] 5330 5520 name = "openssl-macros" 5331 - version = "0.1.0" 5521 + version = "0.1.1" 5332 5522 source = "registry+https://github.com/rust-lang/crates.io-index" 5333 - checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 5523 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 5334 5524 dependencies = [ 5335 5525 "proc-macro2", 5336 5526 "quote", 5337 - "syn", 5527 + "syn 2.0.13", 5338 5528 ] 5339 5529 5340 5530 [[package]] ··· 5345 5535 5346 5536 [[package]] 5347 5537 name = "openssl-src" 5348 - version = "111.25.1+1.1.1t" 5538 + version = "111.25.2+1.1.1t" 5349 5539 source = "registry+https://github.com/rust-lang/crates.io-index" 5350 - checksum = "1ef9a9cc6ea7d9d5e7c4a913dc4b48d0e359eddf01af1dfec96ba7064b4aba10" 5540 + checksum = "320708a054ad9b3bf314688b5db87cf4d6683d64cfc835e2337924ae62bf4431" 5351 5541 dependencies = [ 5352 5542 "cc", 5353 5543 ] 5354 5544 5355 5545 [[package]] 5356 5546 name = "openssl-sys" 5357 - version = "0.9.80" 5547 + version = "0.9.84" 5358 5548 source = "registry+https://github.com/rust-lang/crates.io-index" 5359 - checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 5549 + checksum = "3a20eace9dc2d82904039cb76dcf50fb1a0bba071cfd1629720b5d6f1ddba0fa" 5360 5550 dependencies = [ 5361 - "autocfg 1.1.0", 5362 5551 "cc", 5363 5552 "libc", 5364 5553 "openssl-src", ··· 5465 5654 "proc-macro-crate", 5466 5655 "proc-macro2", 5467 5656 "quote", 5468 - "syn", 5657 + "syn 1.0.109", 5469 5658 ] 5470 5659 5471 5660 [[package]] ··· 5477 5666 "proc-macro-crate", 5478 5667 "proc-macro2", 5479 5668 "quote", 5480 - "syn", 5669 + "syn 1.0.109", 5481 5670 ] 5482 5671 5483 5672 [[package]] ··· 5516 5705 "cfg-if", 5517 5706 "instant", 5518 5707 "libc", 5519 - "redox_syscall", 5708 + "redox_syscall 0.2.16", 5520 5709 "smallvec", 5521 5710 "winapi", 5522 5711 ] ··· 5529 5718 dependencies = [ 5530 5719 "cfg-if", 5531 5720 "libc", 5532 - "redox_syscall", 5721 + "redox_syscall 0.2.16", 5533 5722 "smallvec", 5534 5723 "windows-sys 0.45.0", 5535 5724 ] 5536 5725 5537 5726 [[package]] 5538 5727 name = "paste" 5539 - version = "1.0.11" 5728 + version = "1.0.12" 5540 5729 source = "registry+https://github.com/rust-lang/crates.io-index" 5541 - checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" 5730 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 5542 5731 5543 5732 [[package]] 5544 5733 name = "pbkdf2" ··· 5589 5778 checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 5590 5779 5591 5780 [[package]] 5592 - name = "pest" 5593 - version = "2.5.5" 5594 - source = "registry+https://github.com/rust-lang/crates.io-index" 5595 - checksum = "028accff104c4e513bad663bbcd2ad7cfd5304144404c31ed0a77ac103d00660" 5596 - dependencies = [ 5597 - "thiserror", 5598 - "ucd-trie", 5599 - ] 5600 - 5601 - [[package]] 5602 5781 name = "petgraph" 5603 5782 version = "0.6.3" 5604 5783 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5619 5798 ] 5620 5799 5621 5800 [[package]] 5801 + name = "phf" 5802 + version = "0.11.1" 5803 + source = "registry+https://github.com/rust-lang/crates.io-index" 5804 + checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 5805 + dependencies = [ 5806 + "phf_shared", 5807 + ] 5808 + 5809 + [[package]] 5810 + name = "phf_shared" 5811 + version = "0.11.1" 5812 + source = "registry+https://github.com/rust-lang/crates.io-index" 5813 + checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 5814 + dependencies = [ 5815 + "siphasher", 5816 + ] 5817 + 5818 + [[package]] 5622 5819 name = "pin-project" 5623 5820 version = "1.0.12" 5624 5821 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5635 5832 dependencies = [ 5636 5833 "proc-macro2", 5637 5834 "quote", 5638 - "syn", 5835 + "syn 1.0.109", 5639 5836 ] 5640 5837 5641 5838 [[package]] ··· 5714 5911 5715 5912 [[package]] 5716 5913 name = "polling" 5717 - version = "2.5.2" 5914 + version = "2.6.0" 5718 5915 source = "registry+https://github.com/rust-lang/crates.io-index" 5719 - checksum = "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6" 5916 + checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" 5720 5917 dependencies = [ 5721 5918 "autocfg 1.1.0", 5919 + "bitflags", 5722 5920 "cfg-if", 5921 + "concurrent-queue", 5723 5922 "libc", 5724 5923 "log", 5725 - "wepoll-ffi", 5726 - "windows-sys 0.42.0", 5924 + "pin-project-lite 0.2.9", 5925 + "windows-sys 0.45.0", 5727 5926 ] 5728 5927 5729 5928 [[package]] ··· 5734 5933 dependencies = [ 5735 5934 "cpufeatures", 5736 5935 "opaque-debug", 5737 - "universal-hash", 5936 + "universal-hash 0.4.1", 5738 5937 ] 5739 5938 5740 5939 [[package]] 5741 5940 name = "polyval" 5742 - version = "0.4.5" 5941 + version = "0.5.3" 5743 5942 source = "registry+https://github.com/rust-lang/crates.io-index" 5744 - checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd" 5943 + checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" 5745 5944 dependencies = [ 5746 - "cpuid-bool", 5945 + "cfg-if", 5946 + "cpufeatures", 5747 5947 "opaque-debug", 5748 - "universal-hash", 5948 + "universal-hash 0.4.1", 5749 5949 ] 5750 5950 5751 5951 [[package]] 5752 5952 name = "polyval" 5753 - version = "0.5.3" 5953 + version = "0.6.0" 5754 5954 source = "registry+https://github.com/rust-lang/crates.io-index" 5755 - checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" 5955 + checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6" 5756 5956 dependencies = [ 5757 5957 "cfg-if", 5758 5958 "cpufeatures", 5759 5959 "opaque-debug", 5760 - "universal-hash", 5960 + "universal-hash 0.5.0", 5961 + ] 5962 + 5963 + [[package]] 5964 + name = "postgres-protocol" 5965 + version = "0.6.5" 5966 + source = "registry+https://github.com/rust-lang/crates.io-index" 5967 + checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d" 5968 + dependencies = [ 5969 + "base64 0.21.0", 5970 + "byteorder", 5971 + "bytes", 5972 + "fallible-iterator", 5973 + "hmac 0.12.1", 5974 + "md-5", 5975 + "memchr", 5976 + "rand 0.8.5", 5977 + "sha2 0.10.6", 5978 + "stringprep", 5979 + ] 5980 + 5981 + [[package]] 5982 + name = "postgres-types" 5983 + version = "0.2.5" 5984 + source = "registry+https://github.com/rust-lang/crates.io-index" 5985 + checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6" 5986 + dependencies = [ 5987 + "bytes", 5988 + "fallible-iterator", 5989 + "postgres-protocol", 5761 5990 ] 5762 5991 5763 5992 [[package]] ··· 5767 5996 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 5768 5997 5769 5998 [[package]] 5999 + name = "pq-sys" 6000 + version = "0.4.7" 6001 + source = "registry+https://github.com/rust-lang/crates.io-index" 6002 + checksum = "3b845d6d8ec554f972a2c5298aad68953fd64e7441e846075450b44656a016d1" 6003 + dependencies = [ 6004 + "vcpkg", 6005 + ] 6006 + 6007 + [[package]] 5770 6008 name = "prettyplease" 5771 - version = "0.1.23" 6009 + version = "0.1.25" 5772 6010 source = "registry+https://github.com/rust-lang/crates.io-index" 5773 - checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78" 6011 + checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 5774 6012 dependencies = [ 5775 6013 "proc-macro2", 5776 - "syn", 6014 + "syn 1.0.109", 5777 6015 ] 5778 6016 5779 6017 [[package]] ··· 5822 6060 "proc-macro-error-attr", 5823 6061 "proc-macro2", 5824 6062 "quote", 5825 - "syn", 6063 + "syn 1.0.109", 5826 6064 "version_check", 5827 6065 ] 5828 6066 ··· 5845 6083 5846 6084 [[package]] 5847 6085 name = "proc-macro2" 5848 - version = "1.0.51" 6086 + version = "1.0.55" 5849 6087 source = "registry+https://github.com/rust-lang/crates.io-index" 5850 - checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 6088 + checksum = "1d0dd4be24fcdcfeaa12a432d588dc59bbad6cad3510c67e74a2b6b2fc950564" 5851 6089 dependencies = [ 5852 6090 "unicode-ident", 5853 6091 ] ··· 5899 6137 dependencies = [ 5900 6138 "proc-macro2", 5901 6139 "quote", 5902 - "syn", 6140 + "syn 1.0.109", 5903 6141 ] 5904 6142 5905 6143 [[package]] 5906 6144 name = "prost" 5907 - version = "0.11.6" 6145 + version = "0.11.8" 5908 6146 source = "registry+https://github.com/rust-lang/crates.io-index" 5909 - checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698" 6147 + checksum = "e48e50df39172a3e7eb17e14642445da64996989bc212b583015435d39a58537" 5910 6148 dependencies = [ 5911 6149 "bytes", 5912 6150 "prost-derive", ··· 5914 6152 5915 6153 [[package]] 5916 6154 name = "prost-build" 5917 - version = "0.11.6" 6155 + version = "0.11.8" 5918 6156 source = "registry+https://github.com/rust-lang/crates.io-index" 5919 - checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e" 6157 + checksum = "2c828f93f5ca4826f97fedcbd3f9a536c16b12cff3dbbb4a007f932bbad95b12" 5920 6158 dependencies = [ 5921 6159 "bytes", 5922 6160 "heck", ··· 5929 6167 "prost", 5930 6168 "prost-types", 5931 6169 "regex", 5932 - "syn", 6170 + "syn 1.0.109", 5933 6171 "tempfile", 5934 6172 "which", 5935 6173 ] ··· 5949 6187 5950 6188 [[package]] 5951 6189 name = "prost-derive" 5952 - version = "0.11.6" 6190 + version = "0.11.8" 5953 6191 source = "registry+https://github.com/rust-lang/crates.io-index" 5954 - checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d" 6192 + checksum = "4ea9b0f8cbe5e15a8a042d030bd96668db28ecb567ec37d691971ff5731d2b1b" 5955 6193 dependencies = [ 5956 6194 "anyhow", 5957 6195 "itertools", 5958 6196 "proc-macro2", 5959 6197 "quote", 5960 - "syn", 6198 + "syn 1.0.109", 5961 6199 ] 5962 6200 5963 6201 [[package]] 5964 6202 name = "prost-types" 5965 - version = "0.11.6" 6203 + version = "0.11.8" 5966 6204 source = "registry+https://github.com/rust-lang/crates.io-index" 5967 - checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788" 6205 + checksum = "379119666929a1afd7a043aa6cf96fa67a6dce9af60c88095a4686dbce4c9c88" 5968 6206 dependencies = [ 5969 - "bytes", 5970 6207 "prost", 5971 6208 ] 5972 6209 ··· 6015 6252 checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 6016 6253 6017 6254 [[package]] 6255 + name = "quick-protobuf" 6256 + version = "0.8.1" 6257 + source = "registry+https://github.com/rust-lang/crates.io-index" 6258 + checksum = "9d6da84cc204722a989e01ba2f6e1e276e190f22263d0cb6ce8526fcdb0d2e1f" 6259 + dependencies = [ 6260 + "byteorder", 6261 + ] 6262 + 6263 + [[package]] 6018 6264 name = "quickcheck" 6019 6265 version = "0.9.2" 6020 6266 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6034 6280 dependencies = [ 6035 6281 "proc-macro2", 6036 6282 "quote", 6037 - "syn", 6283 + "syn 1.0.109", 6038 6284 ] 6039 6285 6040 6286 [[package]] ··· 6050 6296 6051 6297 [[package]] 6052 6298 name = "quinn-proto" 6053 - version = "0.9.2" 6299 + version = "0.9.3" 6054 6300 source = "registry+https://github.com/rust-lang/crates.io-index" 6055 - checksum = "72ef4ced82a24bb281af338b9e8f94429b6eca01b4e66d899f40031f074e74c9" 6301 + checksum = "67c10f662eee9c94ddd7135043e544f3c82fa839a1e7b865911331961b53186c" 6056 6302 dependencies = [ 6057 6303 "bytes", 6058 6304 "rand 0.8.5", ··· 6068 6314 6069 6315 [[package]] 6070 6316 name = "quote" 6071 - version = "1.0.23" 6317 + version = "1.0.26" 6072 6318 source = "registry+https://github.com/rust-lang/crates.io-index" 6073 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 6319 + checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 6074 6320 dependencies = [ 6075 6321 "proc-macro2", 6076 6322 ] ··· 6190 6436 6191 6437 [[package]] 6192 6438 name = "rayon" 6193 - version = "1.6.1" 6439 + version = "1.7.0" 6194 6440 source = "registry+https://github.com/rust-lang/crates.io-index" 6195 - checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 6441 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 6196 6442 dependencies = [ 6197 6443 "either", 6198 6444 "rayon-core", ··· 6200 6446 6201 6447 [[package]] 6202 6448 name = "rayon-core" 6203 - version = "1.10.2" 6449 + version = "1.11.0" 6204 6450 source = "registry+https://github.com/rust-lang/crates.io-index" 6205 - checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" 6451 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 6206 6452 dependencies = [ 6207 6453 "crossbeam-channel", 6208 6454 "crossbeam-deque", ··· 6218 6464 dependencies = [ 6219 6465 "pem", 6220 6466 "ring", 6221 - "time 0.3.17", 6467 + "time 0.3.20", 6222 6468 "x509-parser 0.13.2", 6223 6469 "yasna", 6224 6470 ] ··· 6231 6477 dependencies = [ 6232 6478 "pem", 6233 6479 "ring", 6234 - "time 0.3.17", 6480 + "time 0.3.20", 6235 6481 "yasna", 6236 6482 ] 6237 6483 ··· 6245 6491 ] 6246 6492 6247 6493 [[package]] 6494 + name = "redox_syscall" 6495 + version = "0.3.5" 6496 + source = "registry+https://github.com/rust-lang/crates.io-index" 6497 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 6498 + dependencies = [ 6499 + "bitflags", 6500 + ] 6501 + 6502 + [[package]] 6248 6503 name = "redox_users" 6249 6504 version = "0.4.3" 6250 6505 source = "registry+https://github.com/rust-lang/crates.io-index" 6251 6506 checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 6252 6507 dependencies = [ 6253 6508 "getrandom 0.2.8", 6254 - "redox_syscall", 6509 + "redox_syscall 0.2.16", 6255 6510 "thiserror", 6256 6511 ] 6257 6512 6258 6513 [[package]] 6259 6514 name = "regex" 6260 - version = "1.7.1" 6515 + version = "1.7.3" 6261 6516 source = "registry+https://github.com/rust-lang/crates.io-index" 6262 - checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 6517 + checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 6263 6518 dependencies = [ 6264 6519 "aho-corasick", 6265 6520 "memchr", ··· 6277 6532 6278 6533 [[package]] 6279 6534 name = "regex-syntax" 6280 - version = "0.6.28" 6535 + version = "0.6.29" 6281 6536 source = "registry+https://github.com/rust-lang/crates.io-index" 6282 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 6537 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 6283 6538 6284 6539 [[package]] 6285 6540 name = "reqwest" 6286 - version = "0.11.14" 6541 + version = "0.11.16" 6287 6542 source = "registry+https://github.com/rust-lang/crates.io-index" 6288 - checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 6543 + checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" 6289 6544 dependencies = [ 6290 6545 "base64 0.21.0", 6291 6546 "bytes", ··· 6385 6640 dependencies = [ 6386 6641 "proc-macro2", 6387 6642 "quote", 6388 - "syn", 6643 + "syn 1.0.109", 6389 6644 ] 6390 6645 6391 6646 [[package]] ··· 6454 6709 6455 6710 [[package]] 6456 6711 name = "rustc-demangle" 6457 - version = "0.1.21" 6712 + version = "0.1.22" 6458 6713 source = "registry+https://github.com/rust-lang/crates.io-index" 6459 - checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 6714 + checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b" 6460 6715 6461 6716 [[package]] 6462 6717 name = "rustc-hash" ··· 6481 6736 6482 6737 [[package]] 6483 6738 name = "rustc_version" 6484 - version = "0.3.3" 6485 - source = "registry+https://github.com/rust-lang/crates.io-index" 6486 - checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 6487 - dependencies = [ 6488 - "semver 0.11.0", 6489 - ] 6490 - 6491 - [[package]] 6492 - name = "rustc_version" 6493 6739 version = "0.4.0" 6494 6740 source = "registry+https://github.com/rust-lang/crates.io-index" 6495 6741 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 6496 6742 dependencies = [ 6497 - "semver 1.0.16", 6743 + "semver 1.0.17", 6498 6744 ] 6499 6745 6500 6746 [[package]] ··· 6508 6754 6509 6755 [[package]] 6510 6756 name = "rustix" 6511 - version = "0.36.9" 6757 + version = "0.37.6" 6512 6758 source = "registry+https://github.com/rust-lang/crates.io-index" 6513 - checksum = "fd5c6ff11fecd55b40746d1995a02f2eb375bf8c00d192d521ee09f42bef37bc" 6759 + checksum = "d097081ed288dfe45699b72f5b5d648e5f15d64d900c7080273baa20c16a6849" 6514 6760 dependencies = [ 6515 6761 "bitflags", 6516 6762 "errno", ··· 6556 6802 6557 6803 [[package]] 6558 6804 name = "rustversion" 6559 - version = "1.0.11" 6805 + version = "1.0.12" 6560 6806 source = "registry+https://github.com/rust-lang/crates.io-index" 6561 - checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" 6807 + checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 6562 6808 6563 6809 [[package]] 6564 6810 name = "rw-stream-sink" ··· 6573 6819 6574 6820 [[package]] 6575 6821 name = "ryu" 6576 - version = "1.0.12" 6822 + version = "1.0.13" 6577 6823 source = "registry+https://github.com/rust-lang/crates.io-index" 6578 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 6824 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 6579 6825 6580 6826 [[package]] 6581 6827 name = "safe_arith" ··· 6607 6853 6608 6854 [[package]] 6609 6855 name = "scale-info" 6610 - version = "2.3.1" 6856 + version = "2.5.0" 6611 6857 source = "registry+https://github.com/rust-lang/crates.io-index" 6612 - checksum = "001cf62ece89779fd16105b5f515ad0e5cedcd5440d3dd806bb067978e7c3608" 6858 + checksum = "0cfdffd972d76b22f3d7f81c8be34b2296afd3a25e0a547bd9abe340a4dbbe97" 6613 6859 dependencies = [ 6614 6860 "cfg-if", 6615 6861 "derive_more", ··· 6619 6865 6620 6866 [[package]] 6621 6867 name = "scale-info-derive" 6622 - version = "2.3.1" 6868 + version = "2.5.0" 6623 6869 source = "registry+https://github.com/rust-lang/crates.io-index" 6624 - checksum = "303959cf613a6f6efd19ed4b4ad5bf79966a13352716299ad532cfb115f4205c" 6870 + checksum = "61fa974aea2d63dd18a4ec3a49d59af9f34178c73a4f56d2f18205628d00681e" 6625 6871 dependencies = [ 6626 6872 "proc-macro-crate", 6627 6873 "proc-macro2", 6628 6874 "quote", 6629 - "syn", 6875 + "syn 1.0.109", 6630 6876 ] 6631 6877 6632 6878 [[package]] ··· 6640 6886 6641 6887 [[package]] 6642 6888 name = "scheduled-thread-pool" 6643 - version = "0.2.6" 6889 + version = "0.2.7" 6644 6890 source = "registry+https://github.com/rust-lang/crates.io-index" 6645 - checksum = "977a7519bff143a44f842fd07e80ad1329295bd71686457f18e496736f4bf9bf" 6891 + checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19" 6646 6892 dependencies = [ 6647 6893 "parking_lot 0.12.1", 6648 6894 ] ··· 6661 6907 6662 6908 [[package]] 6663 6909 name = "scratch" 6664 - version = "1.0.3" 6910 + version = "1.0.5" 6665 6911 source = "registry+https://github.com/rust-lang/crates.io-index" 6666 - checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" 6912 + checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" 6667 6913 6668 6914 [[package]] 6669 6915 name = "scrypt" ··· 6770 7016 source = "registry+https://github.com/rust-lang/crates.io-index" 6771 7017 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 6772 7018 dependencies = [ 6773 - "semver-parser 0.7.0", 6774 - ] 6775 - 6776 - [[package]] 6777 - name = "semver" 6778 - version = "0.11.0" 6779 - source = "registry+https://github.com/rust-lang/crates.io-index" 6780 - checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 6781 - dependencies = [ 6782 - "semver-parser 0.10.2", 7019 + "semver-parser", 6783 7020 ] 6784 7021 6785 7022 [[package]] 6786 7023 name = "semver" 6787 - version = "1.0.16" 7024 + version = "1.0.17" 6788 7025 source = "registry+https://github.com/rust-lang/crates.io-index" 6789 - checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 7026 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 6790 7027 6791 7028 [[package]] 6792 7029 name = "semver-parser" ··· 6795 7032 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 6796 7033 6797 7034 [[package]] 6798 - name = "semver-parser" 6799 - version = "0.10.2" 6800 - source = "registry+https://github.com/rust-lang/crates.io-index" 6801 - checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 6802 - dependencies = [ 6803 - "pest", 6804 - ] 6805 - 6806 - [[package]] 6807 7035 name = "send_wrapper" 6808 7036 version = "0.6.0" 6809 7037 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6819 7047 6820 7048 [[package]] 6821 7049 name = "serde" 6822 - version = "1.0.152" 7050 + version = "1.0.159" 6823 7051 source = "registry+https://github.com/rust-lang/crates.io-index" 6824 - checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 7052 + checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" 6825 7053 dependencies = [ 6826 7054 "serde_derive", 6827 7055 ] ··· 6848 7076 6849 7077 [[package]] 6850 7078 name = "serde_derive" 6851 - version = "1.0.152" 7079 + version = "1.0.159" 6852 7080 source = "registry+https://github.com/rust-lang/crates.io-index" 6853 - checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 7081 + checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" 6854 7082 dependencies = [ 6855 7083 "proc-macro2", 6856 7084 "quote", 6857 - "syn", 7085 + "syn 2.0.13", 6858 7086 ] 6859 7087 6860 7088 [[package]] 6861 7089 name = "serde_json" 6862 - version = "1.0.93" 7090 + version = "1.0.95" 6863 7091 source = "registry+https://github.com/rust-lang/crates.io-index" 6864 - checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" 7092 + checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" 6865 7093 dependencies = [ 6866 7094 "itoa", 6867 7095 "ryu", ··· 6870 7098 6871 7099 [[package]] 6872 7100 name = "serde_repr" 6873 - version = "0.1.10" 7101 + version = "0.1.12" 6874 7102 source = "registry+https://github.com/rust-lang/crates.io-index" 6875 - checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" 7103 + checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab" 6876 7104 dependencies = [ 6877 7105 "proc-macro2", 6878 7106 "quote", 6879 - "syn", 7107 + "syn 2.0.13", 6880 7108 ] 6881 7109 6882 7110 [[package]] ··· 6910 7138 "darling 0.13.4", 6911 7139 "proc-macro2", 6912 7140 "quote", 6913 - "syn", 7141 + "syn 1.0.109", 6914 7142 ] 6915 7143 6916 7144 [[package]] ··· 7049 7277 "num-bigint", 7050 7278 "num-traits", 7051 7279 "thiserror", 7052 - "time 0.3.17", 7280 + "time 0.3.20", 7053 7281 ] 7054 7282 7055 7283 [[package]] ··· 7071 7299 ] 7072 7300 7073 7301 [[package]] 7302 + name = "siphasher" 7303 + version = "0.3.10" 7304 + source = "registry+https://github.com/rust-lang/crates.io-index" 7305 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 7306 + 7307 + [[package]] 7074 7308 name = "slab" 7075 - version = "0.4.7" 7309 + version = "0.4.8" 7076 7310 source = "registry+https://github.com/rust-lang/crates.io-index" 7077 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 7311 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 7078 7312 dependencies = [ 7079 7313 "autocfg 1.1.0", 7080 7314 ] ··· 7175 7409 "serde", 7176 7410 "serde_json", 7177 7411 "slog", 7178 - "time 0.3.17", 7412 + "time 0.3.20", 7179 7413 ] 7180 7414 7181 7415 [[package]] ··· 7220 7454 "slog", 7221 7455 "term", 7222 7456 "thread_local", 7223 - "time 0.3.17", 7457 + "time 0.3.20", 7224 7458 ] 7225 7459 7226 7460 [[package]] ··· 7271 7505 7272 7506 [[package]] 7273 7507 name = "snow" 7274 - version = "0.9.1" 7508 + version = "0.9.0" 7275 7509 source = "registry+https://github.com/rust-lang/crates.io-index" 7276 - checksum = "12ba5f4d4ff12bdb6a169ed51b7c48c0e0ac4b0b4b31012b2571e97d78d3201d" 7510 + checksum = "774d05a3edae07ce6d68ea6984f3c05e9bba8927e3dd591e3b479e5b03213d0d" 7277 7511 dependencies = [ 7278 7512 "aes-gcm 0.9.4", 7279 7513 "blake2", 7280 7514 "chacha20poly1305", 7281 - "curve25519-dalek 4.0.0-rc.0", 7515 + "curve25519-dalek 4.0.0-rc.2", 7282 7516 "rand_core 0.6.4", 7283 7517 "ring", 7284 7518 "rustc_version 0.4.0", ··· 7288 7522 7289 7523 [[package]] 7290 7524 name = "socket2" 7291 - version = "0.4.7" 7525 + version = "0.4.9" 7292 7526 source = "registry+https://github.com/rust-lang/crates.io-index" 7293 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 7527 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 7294 7528 dependencies = [ 7295 7529 "libc", 7296 7530 "winapi", 7531 + ] 7532 + 7533 + [[package]] 7534 + name = "socket2" 7535 + version = "0.5.1" 7536 + source = "registry+https://github.com/rust-lang/crates.io-index" 7537 + checksum = "bc8d618c6641ae355025c449427f9e96b98abf99a772be3cef6708d15c77147a" 7538 + dependencies = [ 7539 + "libc", 7540 + "windows-sys 0.45.0", 7297 7541 ] 7298 7542 7299 7543 [[package]] ··· 7349 7593 dependencies = [ 7350 7594 "proc-macro2", 7351 7595 "quote", 7352 - "syn", 7596 + "syn 1.0.109", 7353 7597 ] 7354 7598 7355 7599 [[package]] ··· 7423 7667 ] 7424 7668 7425 7669 [[package]] 7670 + name = "stringprep" 7671 + version = "0.1.2" 7672 + source = "registry+https://github.com/rust-lang/crates.io-index" 7673 + checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 7674 + dependencies = [ 7675 + "unicode-bidi", 7676 + "unicode-normalization", 7677 + ] 7678 + 7679 + [[package]] 7426 7680 name = "strsim" 7427 7681 version = "0.8.0" 7428 7682 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 7453 7707 "proc-macro2", 7454 7708 "quote", 7455 7709 "rustversion", 7456 - "syn", 7710 + "syn 1.0.109", 7457 7711 ] 7458 7712 7459 7713 [[package]] ··· 7501 7755 "proc-macro2", 7502 7756 "quote", 7503 7757 "smallvec", 7504 - "syn", 7758 + "syn 1.0.109", 7505 7759 ] 7506 7760 7507 7761 [[package]] ··· 7515 7769 "proc-macro2", 7516 7770 "quote", 7517 7771 "smallvec", 7518 - "syn", 7772 + "syn 1.0.109", 7519 7773 ] 7520 7774 7521 7775 [[package]] ··· 7529 7783 7530 7784 [[package]] 7531 7785 name = "syn" 7532 - version = "1.0.107" 7786 + version = "1.0.109" 7533 7787 source = "registry+https://github.com/rust-lang/crates.io-index" 7534 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 7788 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 7789 + dependencies = [ 7790 + "proc-macro2", 7791 + "quote", 7792 + "unicode-ident", 7793 + ] 7794 + 7795 + [[package]] 7796 + name = "syn" 7797 + version = "2.0.13" 7798 + source = "registry+https://github.com/rust-lang/crates.io-index" 7799 + checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec" 7535 7800 dependencies = [ 7536 7801 "proc-macro2", 7537 7802 "quote", ··· 7552 7817 dependencies = [ 7553 7818 "proc-macro2", 7554 7819 "quote", 7555 - "syn", 7820 + "syn 1.0.109", 7556 7821 "unicode-xid", 7557 7822 ] 7558 7823 ··· 7645 7910 7646 7911 [[package]] 7647 7912 name = "tempfile" 7648 - version = "3.4.0" 7913 + version = "3.5.0" 7649 7914 source = "registry+https://github.com/rust-lang/crates.io-index" 7650 - checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" 7915 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 7651 7916 dependencies = [ 7652 7917 "cfg-if", 7653 7918 "fastrand", 7654 - "redox_syscall", 7919 + "redox_syscall 0.3.5", 7655 7920 "rustix", 7656 - "windows-sys 0.42.0", 7921 + "windows-sys 0.45.0", 7657 7922 ] 7658 7923 7659 7924 [[package]] ··· 7689 7954 version = "0.2.0" 7690 7955 dependencies = [ 7691 7956 "quote", 7692 - "syn", 7957 + "syn 1.0.109", 7958 + ] 7959 + 7960 + [[package]] 7961 + name = "testcontainers" 7962 + version = "0.14.0" 7963 + source = "registry+https://github.com/rust-lang/crates.io-index" 7964 + checksum = "0e2b1567ca8a2b819ea7b28c92be35d9f76fb9edb214321dcc86eb96023d1f87" 7965 + dependencies = [ 7966 + "bollard-stubs", 7967 + "futures", 7968 + "hex", 7969 + "hmac 0.12.1", 7970 + "log", 7971 + "rand 0.8.5", 7972 + "serde", 7973 + "serde_json", 7974 + "sha2 0.10.6", 7693 7975 ] 7694 7976 7695 7977 [[package]] ··· 7703 7985 7704 7986 [[package]] 7705 7987 name = "thiserror" 7706 - version = "1.0.38" 7988 + version = "1.0.40" 7707 7989 source = "registry+https://github.com/rust-lang/crates.io-index" 7708 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 7990 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 7709 7991 dependencies = [ 7710 7992 "thiserror-impl", 7711 7993 ] 7712 7994 7713 7995 [[package]] 7714 7996 name = "thiserror-impl" 7715 - version = "1.0.38" 7997 + version = "1.0.40" 7716 7998 source = "registry+https://github.com/rust-lang/crates.io-index" 7717 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 7999 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 7718 8000 dependencies = [ 7719 8001 "proc-macro2", 7720 8002 "quote", 7721 - "syn", 8003 + "syn 2.0.13", 7722 8004 ] 7723 8005 7724 8006 [[package]] ··· 7753 8035 7754 8036 [[package]] 7755 8037 name = "time" 7756 - version = "0.3.17" 8038 + version = "0.3.20" 7757 8039 source = "registry+https://github.com/rust-lang/crates.io-index" 7758 - checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 8040 + checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 7759 8041 dependencies = [ 7760 8042 "itoa", 7761 8043 "libc", ··· 7773 8055 7774 8056 [[package]] 7775 8057 name = "time-macros" 7776 - version = "0.2.6" 8058 + version = "0.2.8" 7777 8059 source = "registry+https://github.com/rust-lang/crates.io-index" 7778 - checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 8060 + checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 7779 8061 dependencies = [ 7780 8062 "time-core", 7781 8063 ] ··· 7846 8128 7847 8129 [[package]] 7848 8130 name = "tokio" 7849 - version = "1.26.0" 8131 + version = "1.27.0" 7850 8132 source = "registry+https://github.com/rust-lang/crates.io-index" 7851 - checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 8133 + checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" 7852 8134 dependencies = [ 7853 8135 "autocfg 1.1.0", 7854 8136 "bytes", 7855 8137 "libc", 7856 - "memchr", 7857 8138 "mio", 7858 8139 "num_cpus", 7859 8140 "parking_lot 0.12.1", 7860 8141 "pin-project-lite 0.2.9", 7861 8142 "signal-hook-registry", 7862 - "socket2", 8143 + "socket2 0.4.9", 7863 8144 "tokio-macros", 7864 8145 "windows-sys 0.45.0", 7865 8146 ] ··· 7876 8157 7877 8158 [[package]] 7878 8159 name = "tokio-macros" 7879 - version = "1.8.2" 8160 + version = "2.0.0" 7880 8161 source = "registry+https://github.com/rust-lang/crates.io-index" 7881 - checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 8162 + checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" 7882 8163 dependencies = [ 7883 8164 "proc-macro2", 7884 8165 "quote", 7885 - "syn", 8166 + "syn 2.0.13", 7886 8167 ] 7887 8168 7888 8169 [[package]] ··· 7896 8177 ] 7897 8178 7898 8179 [[package]] 8180 + name = "tokio-postgres" 8181 + version = "0.7.8" 8182 + source = "registry+https://github.com/rust-lang/crates.io-index" 8183 + checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1" 8184 + dependencies = [ 8185 + "async-trait", 8186 + "byteorder", 8187 + "bytes", 8188 + "fallible-iterator", 8189 + "futures-channel", 8190 + "futures-util", 8191 + "log", 8192 + "parking_lot 0.12.1", 8193 + "percent-encoding", 8194 + "phf", 8195 + "pin-project-lite 0.2.9", 8196 + "postgres-protocol", 8197 + "postgres-types", 8198 + "socket2 0.5.1", 8199 + "tokio", 8200 + "tokio-util 0.7.7", 8201 + ] 8202 + 8203 + [[package]] 7899 8204 name = "tokio-rustls" 7900 8205 version = "0.22.0" 7901 8206 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 7919 8224 7920 8225 [[package]] 7921 8226 name = "tokio-stream" 7922 - version = "0.1.11" 8227 + version = "0.1.12" 7923 8228 source = "registry+https://github.com/rust-lang/crates.io-index" 7924 - checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce" 8229 + checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313" 7925 8230 dependencies = [ 7926 8231 "futures-core", 7927 8232 "pin-project-lite 0.2.9", ··· 7985 8290 "futures-io", 7986 8291 "futures-sink", 7987 8292 "pin-project-lite 0.2.9", 8293 + "slab", 7988 8294 "tokio", 7989 8295 "tracing", 7990 8296 ] ··· 8066 8372 dependencies = [ 8067 8373 "proc-macro2", 8068 8374 "quote", 8069 - "syn", 8375 + "syn 1.0.109", 8070 8376 ] 8071 8377 8072 8378 [[package]] ··· 8134 8440 checksum = "ebeb235c5847e2f82cfe0f07eb971d1e5f6804b18dac2ae16349cc604380f82f" 8135 8441 dependencies = [ 8136 8442 "quote", 8137 - "syn", 8443 + "syn 1.0.109", 8138 8444 ] 8139 8445 8140 8446 [[package]] ··· 8158 8464 dependencies = [ 8159 8465 "darling 0.13.4", 8160 8466 "quote", 8161 - "syn", 8467 + "syn 1.0.109", 8162 8468 ] 8163 8469 8164 8470 [[package]] ··· 8189 8495 "lazy_static", 8190 8496 "rand 0.8.5", 8191 8497 "smallvec", 8192 - "socket2", 8498 + "socket2 0.4.9", 8193 8499 "thiserror", 8194 8500 "tinyvec", 8195 8501 "tokio", ··· 8349 8655 ] 8350 8656 8351 8657 [[package]] 8352 - name = "ucd-trie" 8353 - version = "0.1.5" 8354 - source = "registry+https://github.com/rust-lang/crates.io-index" 8355 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 8356 - 8357 - [[package]] 8358 8658 name = "uint" 8359 8659 version = "0.9.5" 8360 8660 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8384 8684 8385 8685 [[package]] 8386 8686 name = "unicode-bidi" 8387 - version = "0.3.10" 8687 + version = "0.3.13" 8388 8688 source = "registry+https://github.com/rust-lang/crates.io-index" 8389 - checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 8689 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 8390 8690 8391 8691 [[package]] 8392 8692 name = "unicode-ident" 8393 - version = "1.0.6" 8693 + version = "1.0.8" 8394 8694 source = "registry+https://github.com/rust-lang/crates.io-index" 8395 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 8695 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 8396 8696 8397 8697 [[package]] 8398 8698 name = "unicode-normalization" ··· 8426 8726 ] 8427 8727 8428 8728 [[package]] 8729 + name = "universal-hash" 8730 + version = "0.5.0" 8731 + source = "registry+https://github.com/rust-lang/crates.io-index" 8732 + checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5" 8733 + dependencies = [ 8734 + "crypto-common", 8735 + "subtle", 8736 + ] 8737 + 8738 + [[package]] 8429 8739 name = "unsigned-varint" 8430 8740 version = "0.6.0" 8431 8741 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8454 8764 [[package]] 8455 8765 name = "unused_port" 8456 8766 version = "0.1.0" 8767 + dependencies = [ 8768 + "lazy_static", 8769 + "lru_cache", 8770 + "parking_lot 0.12.1", 8771 + ] 8457 8772 8458 8773 [[package]] 8459 8774 name = "url" ··· 8610 8925 8611 8926 [[package]] 8612 8927 name = "walkdir" 8613 - version = "2.3.2" 8928 + version = "2.3.3" 8614 8929 source = "registry+https://github.com/rust-lang/crates.io-index" 8615 - checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 8930 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 8616 8931 dependencies = [ 8617 8932 "same-file", 8618 - "winapi", 8619 8933 "winapi-util", 8620 8934 ] 8621 8935 ··· 8716 9030 "once_cell", 8717 9031 "proc-macro2", 8718 9032 "quote", 8719 - "syn", 9033 + "syn 1.0.109", 8720 9034 "wasm-bindgen-shared", 8721 9035 ] 8722 9036 ··· 8750 9064 dependencies = [ 8751 9065 "proc-macro2", 8752 9066 "quote", 8753 - "syn", 9067 + "syn 1.0.109", 8754 9068 "wasm-bindgen-backend", 8755 9069 "wasm-bindgen-shared", 8756 9070 ] ··· 8814 9128 ] 8815 9129 8816 9130 [[package]] 9131 + name = "watch" 9132 + version = "0.1.0" 9133 + dependencies = [ 9134 + "axum", 9135 + "beacon_chain", 9136 + "beacon_node", 9137 + "bls", 9138 + "byteorder", 9139 + "clap", 9140 + "diesel", 9141 + "diesel_migrations", 9142 + "env_logger 0.9.3", 9143 + "eth2", 9144 + "hex", 9145 + "http_api", 9146 + "hyper", 9147 + "log", 9148 + "network", 9149 + "r2d2", 9150 + "rand 0.7.3", 9151 + "reqwest", 9152 + "serde", 9153 + "serde_json", 9154 + "serde_yaml", 9155 + "testcontainers", 9156 + "tokio", 9157 + "tokio-postgres", 9158 + "types", 9159 + "unused_port", 9160 + "url", 9161 + ] 9162 + 9163 + [[package]] 8817 9164 name = "web-sys" 8818 9165 version = "0.3.61" 8819 9166 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8880 9227 "eth2_network_config", 8881 9228 "exit-future", 8882 9229 "futures", 9230 + "lazy_static", 9231 + "parking_lot 0.12.1", 8883 9232 "reqwest", 8884 9233 "serde", 8885 9234 "serde_derive", ··· 8950 9299 "sha2 0.10.6", 8951 9300 "stun", 8952 9301 "thiserror", 8953 - "time 0.3.17", 9302 + "time 0.3.20", 8954 9303 "tokio", 8955 9304 "turn", 8956 9305 "url", ··· 8982 9331 8983 9332 [[package]] 8984 9333 name = "webrtc-dtls" 8985 - version = "0.7.0" 9334 + version = "0.7.1" 8986 9335 source = "registry+https://github.com/rust-lang/crates.io-index" 8987 - checksum = "7021987ae0a2ed6c8cd33f68e98e49bb6e74ffe9543310267b48a1bbe3900e5f" 9336 + checksum = "942be5bd85f072c3128396f6e5a9bfb93ca8c1939ded735d177b7bcba9a13d05" 8988 9337 dependencies = [ 8989 9338 "aes 0.6.0", 8990 - "aes-gcm 0.8.0", 9339 + "aes-gcm 0.10.1", 8991 9340 "async-trait", 8992 9341 "bincode", 8993 9342 "block-modes", 8994 9343 "byteorder", 8995 9344 "ccm", 8996 9345 "curve25519-dalek 3.2.0", 8997 - "der-parser 8.1.0", 9346 + "der-parser 8.2.0", 8998 9347 "elliptic-curve", 8999 9348 "hkdf", 9000 - "hmac 0.10.1", 9349 + "hmac 0.12.1", 9001 9350 "log", 9002 9351 "oid-registry 0.6.1", 9003 9352 "p256", ··· 9009 9358 "rustls 0.19.1", 9010 9359 "sec1", 9011 9360 "serde", 9012 - "sha-1 0.9.8", 9013 - "sha2 0.9.9", 9361 + "sha1", 9362 + "sha2 0.10.6", 9014 9363 "signature", 9015 9364 "subtle", 9016 9365 "thiserror", 9017 9366 "tokio", 9018 9367 "webpki 0.21.4", 9019 9368 "webrtc-util", 9020 - "x25519-dalek 2.0.0-pre.1", 9369 + "x25519-dalek 2.0.0-rc.2", 9021 9370 "x509-parser 0.13.2", 9022 9371 ] 9023 9372 ··· 9052 9401 checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" 9053 9402 dependencies = [ 9054 9403 "log", 9055 - "socket2", 9404 + "socket2 0.4.9", 9056 9405 "thiserror", 9057 9406 "tokio", 9058 9407 "webrtc-util", ··· 9137 9486 ] 9138 9487 9139 9488 [[package]] 9140 - name = "wepoll-ffi" 9141 - version = "0.1.2" 9142 - source = "registry+https://github.com/rust-lang/crates.io-index" 9143 - checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" 9144 - dependencies = [ 9145 - "cc", 9146 - ] 9147 - 9148 - [[package]] 9149 9489 name = "which" 9150 9490 version = "4.4.0" 9151 9491 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 9213 9553 ] 9214 9554 9215 9555 [[package]] 9556 + name = "windows" 9557 + version = "0.46.0" 9558 + source = "registry+https://github.com/rust-lang/crates.io-index" 9559 + checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25" 9560 + dependencies = [ 9561 + "windows-targets", 9562 + ] 9563 + 9564 + [[package]] 9216 9565 name = "windows-acl" 9217 9566 version = "0.3.0" 9218 9567 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 9231 9580 checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 9232 9581 dependencies = [ 9233 9582 "windows_aarch64_gnullvm", 9234 - "windows_aarch64_msvc 0.42.1", 9235 - "windows_i686_gnu 0.42.1", 9236 - "windows_i686_msvc 0.42.1", 9237 - "windows_x86_64_gnu 0.42.1", 9583 + "windows_aarch64_msvc 0.42.2", 9584 + "windows_i686_gnu 0.42.2", 9585 + "windows_i686_msvc 0.42.2", 9586 + "windows_x86_64_gnu 0.42.2", 9238 9587 "windows_x86_64_gnullvm", 9239 - "windows_x86_64_msvc 0.42.1", 9588 + "windows_x86_64_msvc 0.42.2", 9240 9589 ] 9241 9590 9242 9591 [[package]] ··· 9250 9599 9251 9600 [[package]] 9252 9601 name = "windows-targets" 9253 - version = "0.42.1" 9602 + version = "0.42.2" 9254 9603 source = "registry+https://github.com/rust-lang/crates.io-index" 9255 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 9604 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 9256 9605 dependencies = [ 9257 9606 "windows_aarch64_gnullvm", 9258 - "windows_aarch64_msvc 0.42.1", 9259 - "windows_i686_gnu 0.42.1", 9260 - "windows_i686_msvc 0.42.1", 9261 - "windows_x86_64_gnu 0.42.1", 9607 + "windows_aarch64_msvc 0.42.2", 9608 + "windows_i686_gnu 0.42.2", 9609 + "windows_i686_msvc 0.42.2", 9610 + "windows_x86_64_gnu 0.42.2", 9262 9611 "windows_x86_64_gnullvm", 9263 - "windows_x86_64_msvc 0.42.1", 9612 + "windows_x86_64_msvc 0.42.2", 9264 9613 ] 9265 9614 9266 9615 [[package]] 9267 9616 name = "windows_aarch64_gnullvm" 9268 - version = "0.42.1" 9617 + version = "0.42.2" 9269 9618 source = "registry+https://github.com/rust-lang/crates.io-index" 9270 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 9619 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 9271 9620 9272 9621 [[package]] 9273 9622 name = "windows_aarch64_msvc" ··· 9277 9626 9278 9627 [[package]] 9279 9628 name = "windows_aarch64_msvc" 9280 - version = "0.42.1" 9629 + version = "0.42.2" 9281 9630 source = "registry+https://github.com/rust-lang/crates.io-index" 9282 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 9631 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 9283 9632 9284 9633 [[package]] 9285 9634 name = "windows_i686_gnu" ··· 9289 9638 9290 9639 [[package]] 9291 9640 name = "windows_i686_gnu" 9292 - version = "0.42.1" 9641 + version = "0.42.2" 9293 9642 source = "registry+https://github.com/rust-lang/crates.io-index" 9294 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 9643 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 9295 9644 9296 9645 [[package]] 9297 9646 name = "windows_i686_msvc" ··· 9301 9650 9302 9651 [[package]] 9303 9652 name = "windows_i686_msvc" 9304 - version = "0.42.1" 9653 + version = "0.42.2" 9305 9654 source = "registry+https://github.com/rust-lang/crates.io-index" 9306 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 9655 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 9307 9656 9308 9657 [[package]] 9309 9658 name = "windows_x86_64_gnu" ··· 9313 9662 9314 9663 [[package]] 9315 9664 name = "windows_x86_64_gnu" 9316 - version = "0.42.1" 9665 + version = "0.42.2" 9317 9666 source = "registry+https://github.com/rust-lang/crates.io-index" 9318 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 9667 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 9319 9668 9320 9669 [[package]] 9321 9670 name = "windows_x86_64_gnullvm" 9322 - version = "0.42.1" 9671 + version = "0.42.2" 9323 9672 source = "registry+https://github.com/rust-lang/crates.io-index" 9324 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 9673 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 9325 9674 9326 9675 [[package]] 9327 9676 name = "windows_x86_64_msvc" ··· 9331 9680 9332 9681 [[package]] 9333 9682 name = "windows_x86_64_msvc" 9334 - version = "0.42.1" 9683 + version = "0.42.2" 9335 9684 source = "registry+https://github.com/rust-lang/crates.io-index" 9336 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 9685 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 9337 9686 9338 9687 [[package]] 9339 9688 name = "winreg" ··· 9391 9740 9392 9741 [[package]] 9393 9742 name = "x25519-dalek" 9394 - version = "2.0.0-pre.1" 9743 + version = "2.0.0-rc.2" 9395 9744 source = "registry+https://github.com/rust-lang/crates.io-index" 9396 - checksum = "e5da623d8af10a62342bcbbb230e33e58a63255a58012f8653c578e54bab48df" 9745 + checksum = "fabd6e16dd08033932fc3265ad4510cc2eab24656058a6dcb107ffe274abcc95" 9397 9746 dependencies = [ 9398 - "curve25519-dalek 3.2.0", 9747 + "curve25519-dalek 4.0.0-rc.2", 9399 9748 "rand_core 0.6.4", 9749 + "serde", 9400 9750 "zeroize", 9401 9751 ] 9402 9752 ··· 9416 9766 "ring", 9417 9767 "rusticata-macros", 9418 9768 "thiserror", 9419 - "time 0.3.17", 9769 + "time 0.3.20", 9420 9770 ] 9421 9771 9422 9772 [[package]] ··· 9425 9775 source = "registry+https://github.com/rust-lang/crates.io-index" 9426 9776 checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8" 9427 9777 dependencies = [ 9428 - "asn1-rs 0.5.1", 9778 + "asn1-rs 0.5.2", 9429 9779 "base64 0.13.1", 9430 9780 "data-encoding", 9431 - "der-parser 8.1.0", 9781 + "der-parser 8.2.0", 9432 9782 "lazy_static", 9433 9783 "nom 7.1.3", 9434 9784 "oid-registry 0.6.1", 9435 9785 "rusticata-macros", 9436 9786 "thiserror", 9437 - "time 0.3.17", 9787 + "time 0.3.20", 9438 9788 ] 9439 9789 9440 9790 [[package]] ··· 9481 9831 source = "registry+https://github.com/rust-lang/crates.io-index" 9482 9832 checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4" 9483 9833 dependencies = [ 9484 - "time 0.3.17", 9834 + "time 0.3.20", 9485 9835 ] 9486 9836 9487 9837 [[package]] 9488 9838 name = "zeroize" 9489 - version = "1.5.7" 9839 + version = "1.6.0" 9490 9840 source = "registry+https://github.com/rust-lang/crates.io-index" 9491 - checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" 9841 + checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 9492 9842 dependencies = [ 9493 9843 "zeroize_derive", 9494 9844 ] 9495 9845 9496 9846 [[package]] 9497 9847 name = "zeroize_derive" 9498 - version = "1.3.3" 9848 + version = "1.4.2" 9499 9849 source = "registry+https://github.com/rust-lang/crates.io-index" 9500 - checksum = "44bf07cb3e50ea2003396695d58bf46bc9887a1f362260446fad6bc4e79bd36c" 9850 + checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 9501 9851 dependencies = [ 9502 9852 "proc-macro2", 9503 9853 "quote", 9504 - "syn", 9505 - "synstructure", 9854 + "syn 2.0.13", 9506 9855 ] 9507 9856 9508 9857 [[package]]
+33 -12
pkgs/applications/blockchains/lighthouse/default.nix
··· 1 1 { clang 2 2 , cmake 3 + , CoreFoundation 3 4 , fetchFromGitHub 4 5 , fetchurl 5 6 , lib 6 7 , lighthouse 7 - , llvmPackages 8 + , nix-update-script 8 9 , nodePackages 9 10 , perl 11 + , pkg-config 12 + , postgresql 10 13 , protobuf 11 14 , rustPlatform 12 15 , Security 13 - , CoreFoundation 16 + , sqlite 14 17 , stdenv 18 + , SystemConfiguration 15 19 , testers 16 20 , unzip 17 - , nix-update-script 18 - , SystemConfiguration 19 21 }: 20 22 21 23 rustPlatform.buildRustPackage rec { 22 24 pname = "lighthouse"; 23 - version = "3.5.1"; 25 + version = "4.1.0"; 24 26 25 27 # lighthouse/common/deposit_contract/build.rs 26 28 depositContractSpecVersion = "0.12.1"; ··· 30 32 owner = "sigp"; 31 33 repo = "lighthouse"; 32 34 rev = "v${version}"; 33 - hash = "sha256-oF32s1nfzEZbaNUi5sQSrotcyOSinULj/qrRQWdMXHg="; 35 + hash = "sha256-QVAFzV9sao8+eegI7bLfm+pPHyvDFhnADS80+nqqgtE="; 34 36 }; 35 37 38 + patches = [ 39 + ./use-system-sqlite.patch 40 + ]; 41 + 42 + postPatch = '' 43 + cp ${./Cargo.lock} Cargo.lock 44 + ''; 45 + 36 46 cargoLock = { 37 47 lockFile = ./Cargo.lock; 38 48 outputHashes = { 39 49 "amcl-0.3.0" = "sha256-Mj4dXTlGVSleFfuTKgVDQ7S3jANMsdtVE5L90WGxA4U="; 40 - "arbitrary-1.2.2" = "sha256-39ZefB5Xok28y8lIdKleILBv4aokY90eMOssxUtU7yA="; 41 - "beacon-api-client-0.1.0" = "sha256-vqTC7bKXgliN7qd5LstNM5O6jRnn4aV/paj88Mua+Bc="; 50 + "arbitrary-1.3.0" = "sha256-BMxcBfxBRf+Kb0Tz55jtFbwokSeD2GPtB+KV8Wbne0g="; 51 + "beacon-api-client-0.1.0" = "sha256-fI8qST6HZrchg7yr/nVtRNrsW3f5ONSX+mGRYW+iiqA="; 42 52 "ethereum-consensus-0.1.1" = "sha256-aBrZ786Me0BWpnncxQc5MT3r+O0yLQhqGKFBiNTdqSA="; 43 53 "libmdbx-0.1.4" = "sha256-NMsR/Wl1JIj+YFPyeMMkrJFfoS07iEAKEQawO89a+/Q="; 44 54 "lmdb-rkv-0.14.0" = "sha256-sxmguwqqcyOlfXOZogVz1OLxfJPo+Q0+UjkROkbbOCk="; ··· 50 60 51 61 buildFeatures = [ "modern" "gnosis" ]; 52 62 53 - nativeBuildInputs = [ rustPlatform.bindgenHook cmake perl protobuf ]; 63 + nativeBuildInputs = [ 64 + rustPlatform.bindgenHook 65 + cmake 66 + perl 67 + pkg-config 68 + protobuf 69 + ]; 54 70 55 - buildInputs = lib.optionals stdenv.isDarwin [ 56 - Security 71 + buildInputs = [ 72 + sqlite 73 + ] ++ lib.optionals stdenv.isDarwin [ 57 74 CoreFoundation 75 + Security 58 76 SystemConfiguration 59 77 ]; 60 78 ··· 79 97 80 98 checkFeatures = [ ]; 81 99 82 - # All of these tests require network access 100 + # All of these tests require network access and/or docker 83 101 cargoTestFlags = [ 84 102 "--workspace" 85 103 "--exclude beacon_node" ··· 88 106 "--exclude lighthouse" 89 107 "--exclude lighthouse_network" 90 108 "--exclude slashing_protection" 109 + "--exclude watch" 91 110 "--exclude web3signer_tests" 92 111 ]; 93 112 ··· 95 114 checkFlags = [ 96 115 "--skip service::tests::tests::test_dht_persistence" 97 116 "--skip time::test::test_reinsertion_updates_timeout" 117 + 98 118 ] ++ lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ 99 119 "--skip subnet_service::tests::sync_committee_service::same_subscription_with_lower_until_epoch" 100 120 "--skip subnet_service::tests::sync_committee_service::subscribe_and_unsubscribe" ··· 102 122 103 123 nativeCheckInputs = [ 104 124 nodePackages.ganache 125 + postgresql 105 126 ]; 106 127 107 128 passthru = {
+26
pkgs/applications/blockchains/lighthouse/use-system-sqlite.patch
··· 1 + diff --git a/consensus/types/Cargo.toml b/consensus/types/Cargo.toml 2 + index 46b88af66..c8c909234 100644 3 + --- a/consensus/types/Cargo.toml 4 + +++ b/consensus/types/Cargo.toml 5 + @@ -37,7 +37,7 @@ cached_tree_hash = { path = "../cached_tree_hash" } 6 + serde_yaml = "0.8.13" 7 + tempfile = "3.1.0" 8 + derivative = "2.1.1" 9 + -rusqlite = { version = "0.28.0", features = ["bundled"], optional = true } 10 + +rusqlite = { version = "0.28.0", optional = true } 11 + # The arbitrary dependency is enabled by default since Capella to avoid complexity introduced by 12 + # `AbstractExecPayload` 13 + arbitrary = { version = "1.0", features = ["derive"] } 14 + diff --git a/validator_client/slashing_protection/Cargo.toml b/validator_client/slashing_protection/Cargo.toml 15 + index 631e54dc4..dec95156b 100644 16 + --- a/validator_client/slashing_protection/Cargo.toml 17 + +++ b/validator_client/slashing_protection/Cargo.toml 18 + @@ -12,7 +12,7 @@ path = "tests/main.rs" 19 + [dependencies] 20 + tempfile = "3.1.0" 21 + types = { path = "../../consensus/types" } 22 + -rusqlite = { version = "0.28.0", features = ["bundled"] } 23 + +rusqlite = { version = "0.28.0" } 24 + r2d2 = "0.8.9" 25 + r2d2_sqlite = "0.21.0" 26 + serde = "1.0.116"
+54 -18
pkgs/applications/editors/vscode/extensions/default.nix
··· 19 19 , alejandra 20 20 , millet 21 21 , shfmt 22 + , autoPatchelfHook 23 + , zlib 24 + , stdenv 22 25 }: 23 26 24 27 let ··· 608 611 mktplcRef = { 609 612 name = "chatgpt-reborn"; 610 613 publisher = "chris-hayes"; 611 - version = "3.11.2"; 612 - sha256 = "sha256-YidcekYTgPYlzfmDHHAxywF+bJE8Da3pg/TCumK4Epo="; 614 + version = "3.16.1"; 615 + sha256 = "sha256-RVPA+O0QOtFArWzcuwXMZSpwB3zrPAzVCbEjOzUNH4I="; 613 616 }; 614 617 }; 615 618 ··· 804 807 mktplcRef = { 805 808 name = "composer-php-vscode"; 806 809 publisher = "devsense"; 807 - version = "1.33.12924"; 808 - sha256 = "sha256-9Uz8B4qQ57gfETitzRAVEq/Ou/s3jOF/p2EyEDo1jP8="; 810 + version = "1.33.13032"; 811 + sha256 = "sha256-4SL7hPcnxN6Bq0Cclaszk2zlYF1xR2w/8zaJo16OT+U="; 809 812 }; 810 813 meta = { 811 814 changelog = "https://marketplace.visualstudio.com/items/DEVSENSE.composer-php-vscode/changelog"; ··· 818 821 }; 819 822 820 823 devsense.phptools-vscode = buildVscodeMarketplaceExtension { 821 - mktplcRef = { 824 + mktplcRef = let 825 + sources = { 826 + "x86_64-linux" = { 827 + arch = "linux-x64"; 828 + sha256 = "sha256-ccMkaXppkgdsN2XtSFaw85xLUCFMDF1z+XidP0KAHCA="; 829 + }; 830 + "x86_64-darwin" = { 831 + arch = "darwin-x64"; 832 + sha256 = "17lsf736jagw2q6dwxvpj2dspiqrlyvmmhv6p6cf81vxijpgmq9d"; 833 + }; 834 + "aarch64-linux" = { 835 + arch = "linux-arm64"; 836 + sha256 = "1cnfzzpikcsp1l1a8amim0fz5r1pkszn231cfl745ggiksbjyhsp"; 837 + }; 838 + "aarch64-darwin" = { 839 + arch = "darwin-arm64"; 840 + sha256 = "0jli6l9qrssnpm5a3m1g7g1dw2i5bv9wxd0gqg6vda7dwfs2f494"; 841 + }; 842 + }; 843 + in { 822 844 name = "phptools-vscode"; 823 845 publisher = "devsense"; 824 - version = "1.33.12924"; 825 - sha256 = "sha256-ImaGkIe+MTO/utfVh3Giu0+jTSN0mmhgg6LvOod1suE="; 826 - }; 846 + version = "1.33.13032"; 847 + } // sources.${stdenv.system}; 848 + 849 + nativeBuildInputs = [ 850 + autoPatchelfHook 851 + ]; 852 + 853 + buildInputs = [ 854 + zlib 855 + stdenv.cc.cc.lib 856 + ]; 857 + 858 + postInstall = '' 859 + chmod +x $out/share/vscode/extensions/devsense.phptools-vscode/out/server/devsense.php.ls 860 + ''; 861 + 827 862 meta = { 828 863 changelog = "https://marketplace.visualstudio.com/items/DEVSENSE.phptools-vscode/changelog"; 829 864 description = "A visual studio code extension for full development integration for the PHP language."; ··· 831 866 homepage = "https://github.com/DEVSENSE/phptools-docs"; 832 867 license = lib.licenses.asl20; 833 868 maintainers = [ lib.maintainers.drupol ]; 869 + platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" "aarch64-linux" ]; 834 870 }; 835 871 }; 836 872 ··· 838 874 mktplcRef = { 839 875 name = "profiler-php-vscode"; 840 876 publisher = "devsense"; 841 - version = "1.33.12924"; 842 - sha256 = "sha256-6+spMS+oypq8KFW5vsoy0Cmn7RD5L1JQnHSyJAvYhTk="; 877 + version = "1.33.13032"; 878 + sha256 = "sha256-P0lzZkCHtLHJI/gwB+wbrZPR3OOia5VxTMCC2ZQULBg="; 843 879 }; 844 880 meta = { 845 881 changelog = "https://marketplace.visualstudio.com/items/DEVSENSE.profiler-php-vscode/changelog"; ··· 1278 1314 mktplcRef = { 1279 1315 name = "chatgpt-vscode"; 1280 1316 publisher = "genieai"; 1281 - version = "0.0.3"; 1282 - sha256 = "sha256-eSRZ9AdXGqGLQw/jt8JCAsTmkvP0N1g5tFP7s1rBtjM="; 1317 + version = "0.0.7"; 1318 + sha256 = "sha256-dWp9OYj9OCsNdZiYbgAWWo/OXMjBSlB7sIupdqnQTiU="; 1283 1319 }; 1284 1320 }; 1285 1321 ··· 1313 1349 mktplcRef = { 1314 1350 name = "github-vscode-theme"; 1315 1351 publisher = "github"; 1316 - version = "6.3.3"; 1317 - sha256 = "sha256-fN9ljeZlbbSNW9qggLEz5HOLZlPhHmTHNi1VsZo7Uxk="; 1352 + version = "6.3.4"; 1353 + sha256 = "sha256-JbI0B7jxt/2pNg/hMjAE5pBBa3LbUdi+GF0iEZUDUDM="; 1318 1354 }; 1319 1355 meta = { 1320 1356 description = "GitHub theme for VS Code"; ··· 1330 1366 mktplcRef = { 1331 1367 name = "vscode-github-actions"; 1332 1368 publisher = "github"; 1333 - version = "0.25.3"; 1334 - sha256 = "sha256-0Ag+xXVt+WBfN+7VmWILYU4RsVs+CBDBpMfUTczDCkI="; 1369 + version = "0.25.6"; 1370 + sha256 = "sha256-HRj/AQI9E6HDkZ2ok/h/+c9HHq1wVXQPAt5mb/Ij+BI="; 1335 1371 }; 1336 1372 meta = { 1337 1373 description = "A Visual Studio Code extension for GitHub Actions workflows and runs for github.com hosted repositories"; ··· 2234 2270 mktplcRef = { 2235 2271 name = "typst-lsp"; 2236 2272 publisher = "nvarner"; 2237 - version = "0.3.0"; 2238 - sha256 = "sha256-ek5zXK4ecXwSPMJ4Ihy2l3PMxCdHwJN7dbwZfQVjNG8="; 2273 + version = "0.4.1"; 2274 + sha256 = "sha256-NZejUb99JDcnqjihLTPkNzVCgpqDkbiwAySbBVZ0esY="; 2239 2275 }; 2240 2276 meta = { 2241 2277 changelog = "https://marketplace.visualstudio.com/items/nvarner.typst-lsp/changelog";
+3 -3
pkgs/applications/emulators/ryujinx/default.nix
··· 29 29 30 30 buildDotnetModule rec { 31 31 pname = "ryujinx"; 32 - version = "1.1.700"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 32 + version = "1.1.733"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "Ryujinx"; 36 36 repo = "Ryujinx"; 37 - rev = "a1efd87c45027a347e91fd22d42f33c3eed89030"; 38 - sha256 = "0ng8ph2sdlcrsy4nlyjhff2n0c76nzkakpnks7qrv6ljr911yck1"; 37 + rev = "9f12e50a546b15533778ed0d8290202af91c10a2"; 38 + sha256 = "1d1hg2sv0h56a56xnarcfp73df3rbw3iax85g258l6w2kxhkc42a"; 39 39 }; 40 40 41 41 dotnet-sdk = dotnetCorePackages.sdk_7_0;
+7 -7
pkgs/applications/emulators/ryujinx/deps.nix
··· 20 20 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 21 21 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 22 22 (fetchNuGet { pname = "DiscordRichPresence"; version = "1.1.3.18"; sha256 = "0p4bhaggjjfd4gl06yiphqgncxgcq2bws4sjkrw0n2ldf3hgrps3"; }) 23 - (fetchNuGet { pname = "DynamicData"; version = "7.13.1"; sha256 = "0hy2ba2nkhgp23glkinhfx3v892fkkf4cr9m41daaahnl2r2l8y1"; }) 23 + (fetchNuGet { pname = "DynamicData"; version = "7.13.5"; sha256 = "088ry176ba314m4hc1vbcxisflqzs7p7vvn8vqzxy3kj1rimgfmf"; }) 24 24 (fetchNuGet { pname = "ExCSS"; version = "4.1.4"; sha256 = "1y50xp6rihkydbf5l73mr3qq2rm6rdfjrzdw9h1dw9my230q5lpd"; }) 25 25 (fetchNuGet { pname = "Fizzler"; version = "1.2.1"; sha256 = "1w5jb1d0figbv68dydbnlcsfmqlc3sv9z1zxp7d79dg2dkarc4qm"; }) 26 26 (fetchNuGet { pname = "FluentAvaloniaUI"; version = "1.4.5"; sha256 = "1j5ivy83f13dgn09qrfkq44ijvh0m9rbdx8760g47di70c4lda7j"; }) ··· 50 50 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.7.0"; sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; }) 51 51 (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; sha256 = "0b9myd7gqbpaw9pkd2bx45jhik9mwj0f1ss57sk2cxmag2lkdws5"; }) 52 52 (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "6.0.0"; sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; }) 53 - (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "6.28.1"; sha256 = "0g5a5w34263psh90mp1403m9bh3pcfw6z29vlzdpllzbifk0licr"; }) 54 - (fetchNuGet { pname = "Microsoft.IdentityModel.JsonWebTokens"; version = "6.28.1"; sha256 = "1smsbv400nk4b6x1y9gsk60rlfjmrdvni26d1jnqsxpm1250zdvf"; }) 55 - (fetchNuGet { pname = "Microsoft.IdentityModel.Logging"; version = "6.28.1"; sha256 = "15bq83wi4h8f1lqinijdqd7vg6n2v77hyza20mjqcp1h3hl2vj43"; }) 56 - (fetchNuGet { pname = "Microsoft.IdentityModel.Tokens"; version = "6.28.1"; sha256 = "0ckpjjdy2rv1z7ivqrkc7z16rcqygxzs0la80g8df68p4xxfa0c5"; }) 53 + (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "6.29.0"; sha256 = "06sdjg78764ycaq3bd32daacd9pjsvkihdzrw8d1cnmk3c42kvq3"; }) 54 + (fetchNuGet { pname = "Microsoft.IdentityModel.JsonWebTokens"; version = "6.29.0"; sha256 = "0iydfzz4vzzpx24q8mgvc3n289s00inc19x6a0w2v378mx4jkfl0"; }) 55 + (fetchNuGet { pname = "Microsoft.IdentityModel.Logging"; version = "6.29.0"; sha256 = "04vj5h638ljz2fylr2idgjbfq5lzbw79m5ixcj1ikl4ydl9jhp9p"; }) 56 + (fetchNuGet { pname = "Microsoft.IdentityModel.Tokens"; version = "6.29.0"; sha256 = "05crx7w79m3jxlbnfc2c8i63m5z6h28y04qv6sc84312rzi2yw8c"; }) 57 57 (fetchNuGet { pname = "Microsoft.IO.RecyclableMemoryStream"; version = "2.3.2"; sha256 = "115bm7dljchr7c02hiv1r3l21r22wpml1j26fyn2amaflaihpq4l"; }) 58 58 (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.5.0"; sha256 = "00gz2i8kx4mlq1ywj3imvf7wc6qzh0bsnynhw06z0mgyha1a21jy"; }) 59 59 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) ··· 177 177 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 178 178 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.0.1"; sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; }) 179 179 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.0.1"; sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; }) 180 - (fetchNuGet { pname = "System.IdentityModel.Tokens.Jwt"; version = "6.28.1"; sha256 = "0pn9bk0n15136z434x7yxikda5ggwjwka2c7k0qkprnkmk3yifcl"; }) 180 + (fetchNuGet { pname = "System.IdentityModel.Tokens.Jwt"; version = "6.29.0"; sha256 = "09bpj7gginq25fiyq3za5i8wm482qbnx6qhm4dxb95jrl3mmb126"; }) 181 181 (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 182 182 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 183 183 (fetchNuGet { pname = "System.IO.Compression"; version = "4.1.0"; sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; }) ··· 189 189 (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; }) 190 190 (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; }) 191 191 (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; }) 192 - (fetchNuGet { pname = "System.Management"; version = "7.0.0"; sha256 = "1x3xwjzkmlcrj6rl6f2y8lkkp1s8xkhwqlpqk9ylpwqz7w3mhis0"; }) 192 + (fetchNuGet { pname = "System.Management"; version = "7.0.1"; sha256 = "02sca1yg3inkqsh1lsjrv5hn10ijp2rsbgh0k5cvnf5k54d422vj"; }) 193 193 (fetchNuGet { pname = "System.Memory"; version = "4.5.3"; sha256 = "0naqahm3wljxb5a911d37mwjqjdxv9l0b49p5dmfyijvni2ppy8a"; }) 194 194 (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; sha256 = "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y"; }) 195 195 (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; sha256 = "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h"; })
+45
pkgs/applications/graphics/figma-agent/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , rustPlatform 4 + , pkg-config 5 + , fontconfig 6 + , freetype 7 + , libclang 8 + }: 9 + let 10 + inherit (rustPlatform) buildRustPackage bindgenHook; 11 + 12 + version = "0.2.7"; 13 + in 14 + buildRustPackage { 15 + pname = "figma-agent"; 16 + inherit version; 17 + 18 + src = fetchFromGitHub { 19 + owner = "neetly"; 20 + repo = "figma-agent-linux"; 21 + rev = version; 22 + sha256 = "sha256-Cq1hWNwJLBY9Bb41WFJxnr9fcygFZ8eNsn5cPXmGTyw="; 23 + }; 24 + 25 + cargoSha256 = "sha256-Gc94Uk/Ikxjnb541flQL7AeblgU/yS6zQ/187ZGRYco="; 26 + 27 + nativeBuildInputs = [ pkg-config ]; 28 + 29 + buildInputs = [ 30 + fontconfig 31 + freetype 32 + bindgenHook 33 + ]; 34 + 35 + LIBCLANG_PATH = "${libclang.lib}/lib"; 36 + 37 + doCheck = true; 38 + 39 + meta = with lib; { 40 + homepage = "https://github.com/neetly/figma-agent-linux"; 41 + description = "Figma Agent for Linux (a.k.a. Font Helper)"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ ercao ]; 44 + }; 45 + }
-1
pkgs/applications/networking/browsers/librewolf/default.nix
··· 29 29 }).override { 30 30 crashreporterSupport = false; 31 31 enableOfficialBranding = false; 32 - pgoSupport = false; # Profiling gets stuck and doesn't terminate. 33 32 }).overrideAttrs (prev: { 34 33 MOZ_REQUIRE_SIGNING = ""; 35 34 })
+3 -3
pkgs/applications/networking/cluster/kubebuilder/default.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "kubebuilder"; 15 - version = "3.9.1"; 15 + version = "3.10.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "kubernetes-sigs"; 19 19 repo = "kubebuilder"; 20 20 rev = "v${version}"; 21 - hash = "sha256-sX+MYMZTRJ3udCtW3yeGBlYpJV35UDQwtcgi7/pXhek="; 21 + hash = "sha256-W1FjmhZWBt/ThkSHHGAR4p1Vxal4WOCutlsHIDZeRZM="; 22 22 }; 23 23 24 - vendorHash = "sha256-wxKEywUs5ezeOlIRT2k3C4G0XaX6h1ORt9/G6+FzVic="; 24 + vendorHash = "sha256-/Kvn3KwSB/mxgBKM+383QHCnVTOt06ZP3gt7FGqA5aM="; 25 25 26 26 subPackages = ["cmd"]; 27 27
+3 -3
pkgs/applications/networking/cluster/pinniped/default.nix
··· 2 2 3 3 buildGoModule rec{ 4 4 pname = "pinniped"; 5 - version = "0.22.0"; 5 + version = "0.23.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vmware-tanzu"; 9 9 repo = "pinniped"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-gi6uFJFP3hdHJqH9y7Q8tUGRJECPHxbajU5BJeBcJzo="; 11 + sha256 = "sha256-noWNklLRYW0l7fGBnsTQk8v5t+mwKheh0egHxL+YxAE="; 12 12 }; 13 13 14 14 subPackages = "cmd/pinniped"; 15 15 16 - vendorHash = "sha256-4N8HtBeGeu22Go63dV0WBdbheXylButu+M9vZL7qOcU="; 16 + vendorHash = "sha256-P28L+IHZ+To08Y4gdv/VldAoVcMnCPlZDxy7xe5OP8o="; 17 17 18 18 ldflags = [ "-s" "-w" ]; 19 19
+2 -2
pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix
··· 2 2 3 3 (if stdenv.isDarwin then darwin.apple_sdk_11_0.clang14Stdenv else stdenv).mkDerivation rec { 4 4 pname = "signalbackup-tools"; 5 - version = "20230424-1"; 5 + version = "20230426"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bepaald"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-G3cAXpHixRVp+FOwyWS+3uuKGp5+7AGLE/1TlghAlFA="; 11 + hash = "sha256-RpPn3QWsCOW1RIucBp5oqR/zwnfIwG+McqAPwo0f5lM="; 12 12 }; 13 13 14 14 postPatch = ''
+2 -2
pkgs/applications/networking/mailreaders/tutanota-desktop/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "tutanota-desktop"; 6 - version = "3.110.0"; 6 + version = "3.112.6"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-${version}/${pname}-${version}-unpacked-linux.tar.gz"; 10 10 name = "tutanota-desktop-${version}.tar.gz"; 11 - sha256 = "sha256-ufrhJfYolx/O0/a5AU1nuUpQy0Md6TVgmdhTAi9Appo="; 11 + sha256 = "sha256-Kqj6XQkwPU7pmR8JY8f7iMqpOYjvWxS5Yir/YTBPXjM="; 12 12 }; 13 13 14 14 nativeBuildInputs = [
+2 -2
pkgs/applications/version-management/git-machete/default.nix
··· 12 12 13 13 buildPythonApplication rec { 14 14 pname = "git-machete"; 15 - version = "3.17.0"; 15 + version = "3.17.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "virtuslab"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - hash = "sha256-F+2xbfMsc6izL0f8EjDfGaJs17xDNQn8/k8mvnLYzcM="; 21 + hash = "sha256-UpByKN2L0g42ProwHNRxPw6ggxyDVTUZfWRF+TpUVKc="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ installShellFiles ];
+2 -2
pkgs/applications/video/openshot-qt/libopenshot.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "libopenshot"; 23 - version = "0.3.0"; 23 + version = "0.3.2"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "OpenShot"; 27 27 repo = "libopenshot"; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-qe866gFhcbd7yCNXDiZ9Aj0TAiWoJ+r7C5BjtWBKSGA="; 29 + sha256 = "sha256-axFGNq+Kg8atlaSlG8EKvxj/FwLfpDR8/e4otmnyosM="; 30 30 }; 31 31 32 32 postPatch = ''
+1 -1
pkgs/data/icons/gnome-icon-theme/default.nix
··· 21 21 22 22 dontDropIconThemeCache = true; 23 23 24 - postInstall = '' 24 + postInstall = lib.optionalString (!stdenv.hostPlatform.isMusl) '' 25 25 # remove a tree of dirs with no files within 26 26 rm -r "$out/share/locale" 27 27 '';
+2 -2
pkgs/data/themes/catppuccin-kde/default.nix
··· 20 20 21 21 stdenvNoCC.mkDerivation rec { 22 22 pname = "kde"; 23 - version = "0.2.2"; 23 + version = "0.2.4"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "catppuccin"; 27 27 repo = pname; 28 28 rev = "v${version}"; 29 - hash = "sha256-P5mLLaQzMhG6aHvAj9SizUFQFLjqNKj1T1kQ4dgiacI="; 29 + hash = "sha256-w77lzeSisx/PPxctMJKIdRJenq0s8HwR8gLmgNh4SH8="; 30 30 }; 31 31 32 32 installPhase = ''
+20 -4
pkgs/development/libraries/directfb/default.nix
··· 23 23 url = "https://github.com/deniskropp/DirectFB/commit/3a236241bbec3f15b012b6f0dbe94353d8094557.patch"; 24 24 sha256 = "0rj3gv0zlb225sqjz04p4yagy4xacf3210aa8vra8i1f0fv0w4kw"; 25 25 }) 26 + 27 + # Fixes for build of `pkgsMusl.directfb`; applied everywhere to prevent patchrot 28 + (fetchpatch { 29 + url = "https://git.alpinelinux.org/aports/plain/community/directfb/0001-directfb-fix-musl-compile.patch?id=f8158258493fc0c3eb5de2302e40f4bc44ecfb09"; 30 + sha256 = "sha256-hmwzbaXu30ZkAqUn1NmvtlJkM6ctddKcO4hxh+1LSS4="; 31 + }) 32 + (fetchpatch { 33 + url = "https://git.alpinelinux.org/aports/plain/community/directfb/0002-Fix-musl-PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP-comp.patch?id=f8158258493fc0c3eb5de2302e40f4bc44ecfb09"; 34 + sha256 = "sha256-j3+mcP6hV9LKuba1GOdcM1cZfmXuJtRgx4vE484jIns="; 35 + }) 26 36 ]; 27 37 28 38 postPatch = '' ··· 31 41 # if switching to cmake then a similar substitution has to be done 32 42 substituteInPlace src/core/Makefile.am \ 33 43 --replace '`date -u "+%Y-%m-%d %H:%M"`' "`date -u \"+%Y-%m-%d %H:%M\" --date="@''${SOURCE_DATE_EPOCH}"`" 44 + '' + lib.optionalString stdenv.hostPlatform.isMusl '' 45 + # Specifically patch out two drivers that have build errors with musl libc, 46 + # while leaving the rest of the default selection enabled 47 + substituteInPlace configure.in \ 48 + --replace checkfor_lirc={yes,no} \ 49 + --replace checkfor_matrox={yes,no} 34 50 ''; 35 51 36 52 nativeBuildInputs = [ autoreconfHook perl pkg-config flux ]; ··· 53 69 "--enable-mmx" 54 70 "--enable-sse" 55 71 "--with-software" 56 - "--with-smooth-scaling" 57 - ] ++ lib.optional enableX11 "--enable-x11"; 72 + ] 73 + ++ lib.optional (!stdenv.hostPlatform.isMusl) "--with-smooth-scaling" 74 + ++ lib.optional enableX11 "--enable-x11" 75 + ; 58 76 59 77 # Disable parallel building as parallel builds fail due to incomplete 60 78 # depends between autogenerated CoreSlave.h and it's include sites: ··· 83 101 license = licenses.lgpl21; 84 102 platforms = platforms.linux; 85 103 maintainers = [ maintainers.bjornfor ]; 86 - broken = stdenv.hostPlatform.isMusl; # Broken at 2022-02-25 87 - # See https://github.com/NixOS/nixpkgs/issues/218274 88 104 }; 89 105 }
-7
pkgs/development/libraries/libcdio/default.nix
··· 23 23 url = "https://savannah.gnu.org/patch/download.php?file_id=52179"; 24 24 sha256 = "1v15gxhpi4bgcr12pb3d9c3hiwj0drvc832vic7sham34lhjmcbb"; 25 25 }) 26 - ] ++ lib.optionals stdenv.hostPlatform.isMusl [ 27 - (fetchpatch { 28 - name = "musl-realpath-test.patch"; 29 - url = "https://git.alpinelinux.org/aports/plain/community/libcdio/disable-broken-test.patch?id=058a8695c12ae13b40c981ee98809352490b6155"; 30 - includes = [ "test/driver/realpath.c" ]; 31 - sha256 = "sha256-6j2bjMed2l+TFZ5emjCcozzF/kkGA8FVifJB8U7QceU="; 32 - }) 33 26 ]; 34 27 35 28 postPatch = ''
+2 -2
pkgs/development/libraries/science/math/osi/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "osi"; 8 - version = "0.108.7"; 8 + version = "0.108.8"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "coin-or"; 12 12 repo = "Osi"; 13 13 rev = "releases/${version}"; 14 - hash = "sha256-MTmt/MgsfEAXor2EZXJX05bQg5oOtMaN7oNxGv2PHJg="; 14 + hash = "sha256-Wyxeyn49QWzGvW6bMwCp39iLkB1eMQUEpIxUgpLcxgA="; 15 15 }; 16 16 17 17 buildInputs =
+2 -7
pkgs/development/python-modules/django-markup/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "django-markup"; 22 - version = "1.6"; 22 + version = "1.7"; 23 23 format = "setuptools"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "bartTC"; 27 27 repo = "django-markup"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-Hh+3KxFE6sSIqRowyZ1Pz6NmBaTbltZaEhSjFrw760Q="; 29 + hash = "sha256-P36DYOcjYAvzhSLe5CwzRaIm/KzrpUh0YZjzcwnSBG8="; 30 30 }; 31 31 32 32 postPatch = '' ··· 59 59 ] ++ passthru.optional-dependencies.all_filter_dependencies; 60 60 61 61 env.DJANGO_SETTINGS_MODULE = "django_markup.tests"; 62 - 63 - disabledTests = [ 64 - # https://github.com/bartTC/django-markup/issues/40 65 - "test_rst_with_pygments" 66 - ]; 67 62 68 63 meta = with lib; { 69 64 description = "Generic Django application to convert text with specific markup to html.";
+2 -2
pkgs/development/python-modules/docformatter/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "docformatter"; 15 - version = "1.6.3"; 15 + version = "1.6.4"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 ··· 22 22 owner = "PyCQA"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-MyrLzEVuNsAZCnRXWDGK7jFAu8woZUSrN6ml1yiadF0="; 25 + hash = "sha256-OQNE6Is1Pl0uoAkFYh4M+c8oNWL/uIh4X0hv8X0Qt/g="; 26 26 }; 27 27 28 28 patches = [
+2 -2
pkgs/development/python-modules/lazy-loader/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "lazy-loader"; 10 - version = "0.1"; 10 + version = "0.2"; 11 11 format = "pyproject"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "scientific-python"; 15 15 repo = "lazy_loader"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-zMmDvAyCaTSMOXgCiLQ4Z/9Ro3k0qJxJPLLoNmK/dmE="; 17 + hash = "sha256-QiRJt2aR2mY1f9ci/p6jOyMeyrHPqRdh43l4Th5PYf8="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "zeroconf"; 18 - version = "0.56.0"; 18 + version = "0.58.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "jstasiak"; 25 25 repo = "python-zeroconf"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-EglL06umgKjbA7mWuOfss7xemp53XJNOs3eJR5VNWxk="; 27 + hash = "sha256-yUf5X124jtUip5hGbZrdbSQzO8WJp9BJ96/QtdMBFvM="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/tools/analysis/jacoco/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "jacoco"; 10 - version = "0.8.9"; 10 + version = "0.8.10"; 11 11 12 12 src = fetchzip { 13 13 url = "https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/${version}/jacoco-${version}.zip"; 14 14 stripRoot = false; 15 - sha256 = "sha256-gxe3HoOAj4u6k7hBDe6r9uPj4xSt1wFNPVzhM9YAEMI="; 15 + sha256 = "sha256-V8I3DXoeUPNxAe7z/ISGa5UQAyLJN7RKXlD0FOw92Oo="; 16 16 }; 17 17 18 18 outputs = [ "out" "doc" ];
+2 -2
pkgs/development/tools/misc/seer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "seer"; 5 - version = "1.15"; 5 + version = "1.17"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "epasveer"; 9 9 repo = "seer"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-TktCUO281Cok47qT60DMAO5uUIg1iDH1RKx+fBPezLs="; 11 + sha256 = "sha256-lM6w+QwIRYP/2JDx4yynJxhVXt8SouOWgsLGXSwolIw="; 12 12 }; 13 13 14 14 preConfigure = ''
+3 -3
pkgs/development/tools/protoc-gen-connect-go/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "protoc-gen-connect-go"; 8 - version = "1.6.0"; 8 + version = "1.7.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "bufbuild"; 12 12 repo = "connect-go"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-fWFSm6jTJZYoqRHER2o+5rcv0B5GwHx6gyK2se7Bi/o="; 14 + hash = "sha256-KtyDnBDG67H4r/3s1ehbJhrzeG1LoU2BatWWgfTkAAs="; 15 15 }; 16 16 17 - vendorHash = "sha256-Bh2JCWTaML/QU/sLBsxLKMzzH++K22BTGusfcVW2GBw="; 17 + vendorHash = "sha256-yCZ16rmqi8DAwIVuEgCw373bQX+cLhSNbpKutF5L2bc="; 18 18 19 19 subPackages = [ 20 20 "cmd/protoc-gen-connect-go"
+6 -4
pkgs/development/tools/rust/cargo-about/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "cargo-about"; 12 - version = "0.5.5"; 12 + version = "0.5.6"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "EmbarkStudios"; 16 16 repo = "cargo-about"; 17 17 rev = version; 18 - sha256 = "sha256-OAKTEU4+m9QMW/EMhCrN5HTMSjnPzEU0ISCeauI76SY="; 18 + sha256 = "sha256-nlumcRcL5HwRJTNqLJ9+UkSg88HuE96Rg8Tgc+ZcK2M="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-BGopHg4giLVie+z7kjlb9rTvLTovFyJ/emCF4j0Va04="; 21 + cargoSha256 = "sha256-Fa1DGXzHDR3EAZyFg0g2aKFynQlC/LL+Tg5LKpOUzmM="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24 ··· 26 26 darwin.apple_sdk.frameworks.Security 27 27 ]; 28 28 29 - ZSTD_SYS_USE_PKG_CONFIG = true; 29 + env = { 30 + ZSTD_SYS_USE_PKG_CONFIG = true; 31 + }; 30 32 31 33 meta = with lib; { 32 34 description = "Cargo plugin to generate list of all licenses for a crate";
+3 -3
pkgs/development/tools/sentry-cli/default.nix
··· 9 9 }: 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "sentry-cli"; 12 - version = "2.16.1"; 12 + version = "2.17.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "getsentry"; 16 16 repo = "sentry-cli"; 17 17 rev = version; 18 - sha256 = "sha256-+b+jTYOgxAu+iLKNW7/dGmrejXuGdBhkQOwiB9uaiNY="; 18 + sha256 = "sha256-k5Zw4M1mDo/AIMROvpGyak2UR9GryubgyLmXF5/0JoM="; 19 19 }; 20 20 doCheck = false; 21 21 ··· 25 25 buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 26 26 nativeBuildInputs = [ pkg-config ]; 27 27 28 - cargoHash = "sha256-CHvVnjhbyy2YuRysA6VzWcKOCfbTw4ckAsEES+g0cxQ="; 28 + cargoHash = "sha256-uPlJTwm+DRY1t/jqkk0cuE7Gz327qJPnpsaTVnVWIlI="; 29 29 30 30 meta = with lib; { 31 31 homepage = "https://docs.sentry.io/cli/";
+6 -11
pkgs/servers/calibre-web/default.nix
··· 21 21 in 22 22 python.pkgs.buildPythonApplication rec { 23 23 pname = "calibre-web"; 24 - version = "0.6.19"; 24 + version = "0.6.20"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "janeczku"; 28 28 repo = "calibre-web"; 29 29 rev = version; 30 - hash = "sha256-mNYLQ+3u6xRaoZ5oH6HdylFfgz1fq1ZB86AWk9vULWQ="; 30 + hash = "sha256-0lArY1aTpO4sgIVDSqClYMGlip92f9hE/L2UouTLK8Q="; 31 31 }; 32 32 33 33 propagatedBuildInputs = with python.pkgs; [ ··· 38 38 flask-login 39 39 flask_principal 40 40 flask-wtf 41 + flask-limiter 41 42 iso-639 42 43 lxml 43 - pypdf3 44 + pypdf 44 45 requests 45 46 sqlalchemy 46 47 tornado ··· 58 59 # and exit. This is gonna be used to configure calibre-web declaratively, as most of its configuration parameters 59 60 # are stored in the DB. 60 61 ./db-migrations.patch 61 - # Handle version 3.0 of flask-babel 62 - (fetchpatch { 63 - url = "https://github.com/janeczku/calibre-web/commit/94a6931d48d347ae6c07e2b5f0301e8cf97cf53d.patch"; 64 - excludes = [ "requirements.txt" ]; 65 - hash = "sha256-0DQ+LbIOOwjBXQh+b1w8dYQ3s+xZ6nFoH5GvgJdBAFI="; 66 - }) 67 62 ]; 68 63 69 64 # calibre-web doesn't follow setuptools directory structure. The following is taken from the script ··· 81 76 --replace "APScheduler>=3.6.3,<3.10.0" "APScheduler>=3.6.3" \ 82 77 --replace "chardet>=3.0.0,<4.1.0" "chardet>=3.0.0,<6" \ 83 78 --replace "Flask>=1.0.2,<2.1.0" "Flask>=1.0.2" \ 84 - --replace "Flask-Babel>=0.11.1,<2.1.0" "Flask-Babel>=0.11.1" \ 79 + --replace "Flask-Babel>=0.11.1,<3.1.0" "Flask-Babel>=0.11.1" \ 85 80 --replace "Flask-Login>=0.3.2,<0.6.2" "Flask-Login>=0.3.2" \ 86 81 --replace "flask-wtf>=0.14.2,<1.1.0" "flask-wtf>=0.14.2" \ 87 82 --replace "lxml>=3.8.0,<4.9.0" "lxml>=3.8.0" \ 88 83 --replace "tornado>=4.1,<6.2" "tornado>=4.1,<7" \ 89 - --replace "PyPDF3>=1.0.0,<1.0.7" "PyPDF3>=1.0.0" \ 84 + --replace "PyPDF>=3.0.0,<3.6.0" "PyPDF>=3.0.0" \ 90 85 --replace "requests>=2.11.1,<2.28.0" "requests" \ 91 86 --replace "unidecode>=0.04.19,<1.4.0" "unidecode>=0.04.19" \ 92 87 --replace "werkzeug<2.1.0" ""
+4 -10
pkgs/servers/code-server/default.nix
··· 34 34 35 35 in stdenv.mkDerivation rec { 36 36 pname = "code-server"; 37 - version = "4.8.3"; 37 + version = "4.12.0"; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "coder"; 41 41 repo = "code-server"; 42 42 rev = "v${version}"; 43 43 fetchSubmodules = true; 44 - sha256 = "1h5ng60wf3gpsydfkv20x30xsw1f5zcvv77l1mzrqz1mhcw93lvz"; 44 + hash = "sha256-PQp5dji2Ynp+LJRWBka41umwe1/IR76C+at/wyOWGcI="; 45 45 }; 46 46 47 47 cloudAgent = buildGoModule rec { ··· 88 88 outputHashAlgo = "sha256"; 89 89 90 90 # to get hash values use nix-build -A code-server.prefetchYarnCache 91 - outputHash = "0jzzbmmgv1nfq975mi9ii9l6c4f1wy10fyy117xgm4s6vxana7qn"; 91 + outputHash = "sha256-4Vr9u3+W/IhbbTc39jyDyDNQODlmdF+M/N8oJn0Z4+w="; 92 92 }; 93 93 94 94 nativeBuildInputs = [ ··· 101 101 ]; 102 102 103 103 patches = [ 104 - # remove download of coder-cloud agent 105 - ./remove-cloud-agent-download.patch 106 104 # remove git calls from vscode build script 107 105 ./build-vscode-nogit.patch 108 106 ]; ··· 128 126 129 127 # set offline mirror to yarn cache we created in previous steps 130 128 yarn --offline config set yarn-offline-mirror "${yarnCache}" 131 - 132 - # link coder-cloud agent from nix store 133 - mkdir -p lib 134 - ln -s "${cloudAgent}/bin/cloud-agent" ./lib/coder-cloud-agent 135 129 136 130 # skip unnecessary electron download 137 131 export ELECTRON_SKIP_BINARY_DOWNLOAD=1 ··· 221 215 yarn build 222 216 223 217 # build vscode 224 - yarn build:vscode 218 + VERSION=${version} yarn build:vscode 225 219 226 220 # create release 227 221 yarn release
-17
pkgs/servers/code-server/remove-cloud-agent-download.patch
··· 1 - --- ./ci/build/npm-postinstall.sh 2 - +++ ./ci/build/npm-postinstall.sh 3 - @@ -102,14 +102,6 @@ 4 - ;; 5 - esac 6 - 7 - - mkdir -p ./lib 8 - - 9 - - if curl -fsSL "https://github.com/coder/cloud-agent/releases/latest/download/cloud-agent-$OS-$ARCH" -o ./lib/coder-cloud-agent; then 10 - - chmod +x ./lib/coder-cloud-agent 11 - - else 12 - - echo "Failed to download cloud agent; --link will not work" 13 - - fi 14 - - 15 - if ! vscode_install; then 16 - echo "You may not have the required dependencies to build the native modules." 17 - echo "Please see https://github.com/coder/code-server/blob/main/docs/npm.md"
+2 -2
pkgs/servers/sql/mysql/8.0.x.nix
··· 6 6 let 7 7 self = stdenv.mkDerivation rec { 8 8 pname = "mysql"; 9 - version = "8.0.32"; 9 + version = "8.0.33"; 10 10 11 11 src = fetchurl { 12 12 url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz"; 13 - sha256 = "sha256-Hw2SojeJgkRxbdWB95k1bgc8LaY8Oy5KAeEDLL7VDig="; 13 + hash = "sha256-liAC9dkG9C9AsnejnS25OTEkjB8H/49DEsKI5jgD3RI="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ bison cmake pkg-config ]
+3 -3
pkgs/servers/traefik/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "traefik"; 5 - version = "2.9.10"; 5 + version = "2.10.0"; 6 6 7 7 # Archive with static assets for webui 8 8 src = fetchzip { 9 9 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 10 - sha256 = "sha256-Mrdlu2SdOiMTkBXeStZaex3bVyw7vfidgOeCmhfB5Tc="; 10 + sha256 = "sha256-KeV7JOIbQoCwmulMzKpse7GA+/p5uPRR8UpMYizuGYU="; 11 11 stripRoot = false; 12 12 }; 13 13 14 - vendorSha256 = "sha256-11OYVeEuo/Fl6qlRLITzi7qmM2M8puHk5Y0X0sgLius="; 14 + vendorSha256 = "sha256-o+xri6vyUbInwmk+hhi6YDRo8ICASMj+ah3nBqQWnO8="; 15 15 16 16 subPackages = [ "cmd/traefik" ]; 17 17
+3 -3
pkgs/tools/admin/auth0-cli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "auth0-cli"; 8 - version = "1.0.0"; 8 + version = "1.0.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "auth0"; 12 12 repo = "auth0-cli"; 13 13 rev = "v${version}"; 14 - hash = "sha256-Zrv9Dj4TqMEgnWYNvBUbrPS6Ab23AkCn66hclPKH224="; 14 + hash = "sha256-mOG7N7+qmAw+D6Bp0QtyS3oualDD/fffDVCuidLJ+Pw="; 15 15 }; 16 16 17 - vendorHash = "sha256-MGMmWCe2LVIpK7O1e90Nvahbnu5sm9vK/4s0lPPpl1g="; 17 + vendorHash = "sha256-8t5qnHaZeZUxdk5DmIfOx86Zk9c9hJuxHjE6upqC638="; 18 18 19 19 ldflags = [ 20 20 "-s" "-w"
+3 -3
pkgs/tools/admin/syft/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "syft"; 5 - version = "0.76.1"; 5 + version = "0.79.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anchore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-PJrGie65XIKJ3HXvBDUFzKgN1EGfjgb+x97eUVwxV8w="; 11 + hash = "sha256-IrNOslrH2EN2q/d4m4bFbaIHvOaAjYgVRTDRMZRKefs="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; ··· 22 22 }; 23 23 # hash mismatch with darwin 24 24 proxyVendor = true; 25 - vendorHash = "sha256-HHYKcsJ1NAGM7/CO+XiCvhfTw4mRZicDqf4/D3Tys+A="; 25 + vendorHash = "sha256-QWKcRu781cRkNSToLQvMQ4ViGYd2klBIlLkB7EyaKmI="; 26 26 27 27 nativeBuildInputs = [ installShellFiles ]; 28 28
+27 -2
pkgs/tools/graphics/zbar/default.nix
··· 24 24 , libintl 25 25 , libiconv 26 26 , Foundation 27 + , bash 28 + , python3 29 + , argp-standalone 27 30 }: 28 31 29 32 stdenv.mkDerivation rec { 30 33 pname = "zbar"; 31 - version = "0.23.90"; 34 + version = "0.23.92"; 32 35 33 36 outputs = [ "out" "lib" "dev" "doc" "man" ]; 34 37 ··· 36 39 owner = "mchehab"; 37 40 repo = "zbar"; 38 41 rev = version; 39 - sha256 = "sha256-FvV7TMc4JbOiRjWLka0IhtpGGqGm5fis7h870OmJw2U="; 42 + sha256 = "sha256-VhVrngAX7pXZp+szqv95R6RGAJojp3svdbaRKigGb0w="; 40 43 }; 41 44 42 45 nativeBuildInputs = [ ··· 66 69 qtx11extras 67 70 ]; 68 71 72 + nativeCheckInputs = [ 73 + bash 74 + python3 75 + ]; 76 + 77 + checkInputs = lib.optionals stdenv.isDarwin [ 78 + argp-standalone 79 + ]; 80 + 81 + # Note: postConfigure instead of postPatch in order to include some 82 + # autoconf-generated files. The template files for the autogen'd scripts are 83 + # not chmod +x, so patchShebangs misses them. 84 + postConfigure = '' 85 + patchShebangs test 86 + ''; 87 + 69 88 # Disable assertions which include -dev QtBase file paths. 70 89 env.NIX_CFLAGS_COMPILE = "-DQT_NO_DEBUG"; 71 90 ··· 82 101 "--without-gtk" 83 102 "--without-qt" 84 103 ]); 104 + 105 + doCheck = true; 106 + 107 + preCheck = lib.optionalString stdenv.isDarwin '' 108 + export NIX_LDFLAGS="$NIX_LDFLAGS -largp" 109 + ''; 85 110 86 111 dontWrapQtApps = true; 87 112 dontWrapGApps = true;
+3 -3
pkgs/tools/misc/ntfy-sh/default.nix
··· 10 10 in 11 11 buildGoModule rec { 12 12 pname = "ntfy-sh"; 13 - version = "2.3.1"; 13 + version = "2.4.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "binwiederhier"; 17 17 repo = "ntfy"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-A3kL/1Q7BFGfzVn4wFrQf9VS+2rOgS4u8o1uEQI2vcw="; 19 + sha256 = "sha256-bwYiIeDpZZpfv/HNtB/3acL0dJfegF/4OqWcEV8YGfY="; 20 20 }; 21 21 22 - vendorSha256 = "sha256-0bmZmBYEHGIP9vd8O5rz0JyuKUu9VHeb8ErZ6VNsfxQ="; 22 + vendorSha256 = "sha256-HHuj3PcIu1wsdcfd04PofoZHjRSgTfWfJcomqH3KXa8="; 23 23 24 24 doCheck = false; 25 25
+474 -459
pkgs/tools/misc/ntfy-sh/node-packages.nix
··· 4 4 5 5 let 6 6 sources = { 7 - "@ampproject/remapping-2.2.0" = { 7 + "@alloc/quick-lru-5.2.0" = { 8 + name = "_at_alloc_slash_quick-lru"; 9 + packageName = "@alloc/quick-lru"; 10 + version = "5.2.0"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz"; 13 + sha512 = "UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="; 14 + }; 15 + }; 16 + "@ampproject/remapping-2.2.1" = { 8 17 name = "_at_ampproject_slash_remapping"; 9 18 packageName = "@ampproject/remapping"; 10 - version = "2.2.0"; 19 + version = "2.2.1"; 11 20 src = fetchurl { 12 - url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"; 13 - sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; 21 + url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"; 22 + sha512 = "lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="; 14 23 }; 15 24 }; 16 25 "@apideck/better-ajv-errors-0.3.6" = { ··· 1264 1273 sha512 = "p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ=="; 1265 1274 }; 1266 1275 }; 1267 - "@emotion/cache-11.10.5" = { 1276 + "@emotion/cache-11.10.7" = { 1268 1277 name = "_at_emotion_slash_cache"; 1269 1278 packageName = "@emotion/cache"; 1270 - version = "11.10.5"; 1279 + version = "11.10.7"; 1271 1280 src = fetchurl { 1272 - url = "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz"; 1273 - sha512 = "dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA=="; 1281 + url = "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.7.tgz"; 1282 + sha512 = "VLl1/2D6LOjH57Y8Vem1RoZ9haWF4jesHDGiHtKozDQuBIkJm2gimVo0I02sWCuzZtVACeixTVB4jeE8qvCBoQ=="; 1274 1283 }; 1275 1284 }; 1276 1285 "@emotion/hash-0.9.0" = { ··· 1399 1408 sha512 = "3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ=="; 1400 1409 }; 1401 1410 }; 1402 - "@eslint/js-8.37.0" = { 1411 + "@eslint/js-8.39.0" = { 1403 1412 name = "_at_eslint_slash_js"; 1404 1413 packageName = "@eslint/js"; 1405 - version = "8.37.0"; 1414 + version = "8.39.0"; 1406 1415 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@eslint/js/-/js-8.37.0.tgz"; 1408 - sha512 = "x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A=="; 1416 + url = "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz"; 1417 + sha512 = "kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng=="; 1409 1418 }; 1410 1419 }; 1411 1420 "@humanwhocodes/config-array-0.11.8" = { ··· 1588 1597 sha512 = "RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ=="; 1589 1598 }; 1590 1599 }; 1591 - "@jridgewell/gen-mapping-0.1.1" = { 1600 + "@jridgewell/gen-mapping-0.3.3" = { 1592 1601 name = "_at_jridgewell_slash_gen-mapping"; 1593 1602 packageName = "@jridgewell/gen-mapping"; 1594 - version = "0.1.1"; 1603 + version = "0.3.3"; 1595 1604 src = fetchurl { 1596 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; 1597 - sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; 1598 - }; 1599 - }; 1600 - "@jridgewell/gen-mapping-0.3.2" = { 1601 - name = "_at_jridgewell_slash_gen-mapping"; 1602 - packageName = "@jridgewell/gen-mapping"; 1603 - version = "0.3.2"; 1604 - src = fetchurl { 1605 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"; 1606 - sha512 = "mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="; 1605 + url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"; 1606 + sha512 = "HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="; 1607 1607 }; 1608 1608 }; 1609 1609 "@jridgewell/resolve-uri-3.1.0" = { ··· 1624 1624 sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; 1625 1625 }; 1626 1626 }; 1627 - "@jridgewell/source-map-0.3.2" = { 1627 + "@jridgewell/source-map-0.3.3" = { 1628 1628 name = "_at_jridgewell_slash_source-map"; 1629 1629 packageName = "@jridgewell/source-map"; 1630 - version = "0.3.2"; 1630 + version = "0.3.3"; 1631 1631 src = fetchurl { 1632 - url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz"; 1633 - sha512 = "m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw=="; 1632 + url = "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz"; 1633 + sha512 = "b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg=="; 1634 1634 }; 1635 1635 }; 1636 1636 "@jridgewell/sourcemap-codec-1.4.14" = { ··· 1642 1642 sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; 1643 1643 }; 1644 1644 }; 1645 - "@jridgewell/trace-mapping-0.3.17" = { 1645 + "@jridgewell/sourcemap-codec-1.4.15" = { 1646 + name = "_at_jridgewell_slash_sourcemap-codec"; 1647 + packageName = "@jridgewell/sourcemap-codec"; 1648 + version = "1.4.15"; 1649 + src = fetchurl { 1650 + url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"; 1651 + sha512 = "eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="; 1652 + }; 1653 + }; 1654 + "@jridgewell/trace-mapping-0.3.18" = { 1646 1655 name = "_at_jridgewell_slash_trace-mapping"; 1647 1656 packageName = "@jridgewell/trace-mapping"; 1648 - version = "0.3.17"; 1657 + version = "0.3.18"; 1649 1658 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"; 1651 - sha512 = "MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="; 1659 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"; 1660 + sha512 = "w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="; 1652 1661 }; 1653 1662 }; 1654 1663 "@leichtgewicht/ip-codec-2.0.4" = { ··· 1660 1669 sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; 1661 1670 }; 1662 1671 }; 1663 - "@mui/base-5.0.0-alpha.123" = { 1672 + "@mui/base-5.0.0-alpha.127" = { 1664 1673 name = "_at_mui_slash_base"; 1665 1674 packageName = "@mui/base"; 1666 - version = "5.0.0-alpha.123"; 1675 + version = "5.0.0-alpha.127"; 1667 1676 src = fetchurl { 1668 - url = "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.123.tgz"; 1669 - sha512 = "pxzcAfET3I6jvWqS4kijiLMn1OmdMw+mGmDa0SqmDZo3bXXdvLhpCCPqCkULG3UykhvFCOcU5HclOX3JCA+Zhg=="; 1677 + url = "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.127.tgz"; 1678 + sha512 = "FoRQd0IOH9MnfyL5yXssyQRnC4vXI+1bwkU1idr+wNkP1ZfxE+JsThHcfl1dy5azLssVUGTtQFD9edQLdbyJog=="; 1670 1679 }; 1671 1680 }; 1672 - "@mui/core-downloads-tracker-5.11.15" = { 1681 + "@mui/core-downloads-tracker-5.12.2" = { 1673 1682 name = "_at_mui_slash_core-downloads-tracker"; 1674 1683 packageName = "@mui/core-downloads-tracker"; 1675 - version = "5.11.15"; 1684 + version = "5.12.2"; 1676 1685 src = fetchurl { 1677 - url = "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.11.15.tgz"; 1678 - sha512 = "Q0e2oBsjHyIWWj1wLzl14btunvBYC0yl+px7zL9R69tF87uenj6q72ieS369BJ6jxYpJwvXfR6/f+TC+ZUsKKg=="; 1686 + url = "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.12.2.tgz"; 1687 + sha512 = "Qn7dy8tql6T0hY6gTFPkpWlnqVVFGu5Z6QzEzUSzzmLZpfAx4kf8sFz0PHiB7gU5yrqcZF9picMx1shpRY/rXw=="; 1679 1688 }; 1680 1689 }; 1681 - "@mui/icons-material-5.11.11" = { 1690 + "@mui/icons-material-5.11.16" = { 1682 1691 name = "_at_mui_slash_icons-material"; 1683 1692 packageName = "@mui/icons-material"; 1684 - version = "5.11.11"; 1693 + version = "5.11.16"; 1685 1694 src = fetchurl { 1686 - url = "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.11.tgz"; 1687 - sha512 = "Eell3ADmQVE8HOpt/LZ3zIma8JSvPh3XgnhwZLT0k5HRqZcd6F/QDHc7xsWtgz09t+UEFvOYJXjtrwKmLdwwpw=="; 1695 + url = "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.16.tgz"; 1696 + sha512 = "oKkx9z9Kwg40NtcIajF9uOXhxiyTZrrm9nmIJ4UjkU2IdHpd4QVLbCc/5hZN/y0C6qzi2Zlxyr9TGddQx2vx2A=="; 1688 1697 }; 1689 1698 }; 1690 - "@mui/material-5.11.15" = { 1699 + "@mui/material-5.12.2" = { 1691 1700 name = "_at_mui_slash_material"; 1692 1701 packageName = "@mui/material"; 1693 - version = "5.11.15"; 1702 + version = "5.12.2"; 1694 1703 src = fetchurl { 1695 - url = "https://registry.npmjs.org/@mui/material/-/material-5.11.15.tgz"; 1696 - sha512 = "E5RbLq9/OvRKmGyeZawdnmFBCvhKkI/Zqgr0xFqW27TGwKLxObq/BreJc6Uu5Sbv8Fjj34vEAbRx6otfOyxn5w=="; 1704 + url = "https://registry.npmjs.org/@mui/material/-/material-5.12.2.tgz"; 1705 + sha512 = "XOVy6fVC0rI2dEwDq/1s4Te2hewTUe6lznzeVnruyATGkdmM06WnHqkZOoLVIWo9hWwAxpcgTDcAIVpFtt1nrw=="; 1697 1706 }; 1698 1707 }; 1699 - "@mui/private-theming-5.11.13" = { 1708 + "@mui/private-theming-5.12.0" = { 1700 1709 name = "_at_mui_slash_private-theming"; 1701 1710 packageName = "@mui/private-theming"; 1702 - version = "5.11.13"; 1711 + version = "5.12.0"; 1703 1712 src = fetchurl { 1704 - url = "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.11.13.tgz"; 1705 - sha512 = "PJnYNKzW5LIx3R+Zsp6WZVPs6w5sEKJ7mgLNnUXuYB1zo5aX71FVLtV7geyPXRcaN2tsoRNK7h444ED0t7cIjA=="; 1713 + url = "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.12.0.tgz"; 1714 + sha512 = "w5dwMen1CUm1puAtubqxY9BIzrBxbOThsg2iWMvRJmWyJAPdf3Z583fPXpqeA2lhTW79uH2jajk5Ka4FuGlTPg=="; 1706 1715 }; 1707 1716 }; 1708 - "@mui/styled-engine-5.11.11" = { 1717 + "@mui/styled-engine-5.12.0" = { 1709 1718 name = "_at_mui_slash_styled-engine"; 1710 1719 packageName = "@mui/styled-engine"; 1711 - version = "5.11.11"; 1720 + version = "5.12.0"; 1712 1721 src = fetchurl { 1713 - url = "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.11.11.tgz"; 1714 - sha512 = "wV0UgW4lN5FkDBXefN8eTYeuE9sjyQdg5h94vtwZCUamGQEzmCOtir4AakgmbWMy0x8OLjdEUESn9wnf5J9MOg=="; 1722 + url = "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.12.0.tgz"; 1723 + sha512 = "frh8L7CRnvD0RDmIqEv6jFeKQUIXqW90BaZ6OrxJ2j4kIsiVLu29Gss4SbBvvrWwwatR72sBmC3w1aG4fjp9mQ=="; 1715 1724 }; 1716 1725 }; 1717 - "@mui/system-5.11.15" = { 1726 + "@mui/system-5.12.1" = { 1718 1727 name = "_at_mui_slash_system"; 1719 1728 packageName = "@mui/system"; 1720 - version = "5.11.15"; 1729 + version = "5.12.1"; 1721 1730 src = fetchurl { 1722 - url = "https://registry.npmjs.org/@mui/system/-/system-5.11.15.tgz"; 1723 - sha512 = "vCatoWCTnAPquoNifHbqMCMnOElEbLosVUeW0FQDyjCq+8yMABD9E6iY0s14O7iq1wD+qqU7rFAuDIVvJ/AzzA=="; 1731 + url = "https://registry.npmjs.org/@mui/system/-/system-5.12.1.tgz"; 1732 + sha512 = "Po+sicdV3bbRYXdU29XZaHPZrW7HUYUqU1qCu77GCCEMbahC756YpeyefdIYuPMUg0OdO3gKIUfDISBrkjJL+w=="; 1724 1733 }; 1725 1734 }; 1726 - "@mui/types-7.2.3" = { 1735 + "@mui/types-7.2.4" = { 1727 1736 name = "_at_mui_slash_types"; 1728 1737 packageName = "@mui/types"; 1729 - version = "7.2.3"; 1738 + version = "7.2.4"; 1730 1739 src = fetchurl { 1731 - url = "https://registry.npmjs.org/@mui/types/-/types-7.2.3.tgz"; 1732 - sha512 = "tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw=="; 1740 + url = "https://registry.npmjs.org/@mui/types/-/types-7.2.4.tgz"; 1741 + sha512 = "LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA=="; 1733 1742 }; 1734 1743 }; 1735 - "@mui/utils-5.11.13" = { 1744 + "@mui/utils-5.12.0" = { 1736 1745 name = "_at_mui_slash_utils"; 1737 1746 packageName = "@mui/utils"; 1738 - version = "5.11.13"; 1747 + version = "5.12.0"; 1739 1748 src = fetchurl { 1740 - url = "https://registry.npmjs.org/@mui/utils/-/utils-5.11.13.tgz"; 1741 - sha512 = "5ltA58MM9euOuUcnvwFJqpLdEugc9XFsRR8Gt4zZNb31XzMfSKJPR4eumulyhsOTK1rWf7K4D63NKFPfX0AxqA=="; 1749 + url = "https://registry.npmjs.org/@mui/utils/-/utils-5.12.0.tgz"; 1750 + sha512 = "RmQwgzF72p7Yr4+AAUO6j1v2uzt6wr7SWXn68KBsnfVpdOHyclCzH2lr/Xu6YOw9su4JRtdAIYfJFXsS6Cjkmw=="; 1742 1751 }; 1743 1752 }; 1744 1753 "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = { ··· 2056 2065 sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; 2057 2066 }; 2058 2067 }; 2059 - "@types/babel__traverse-7.18.3" = { 2068 + "@types/babel__traverse-7.18.5" = { 2060 2069 name = "_at_types_slash_babel__traverse"; 2061 2070 packageName = "@types/babel__traverse"; 2062 - version = "7.18.3"; 2071 + version = "7.18.5"; 2063 2072 src = fetchurl { 2064 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz"; 2065 - sha512 = "1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w=="; 2073 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz"; 2074 + sha512 = "enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q=="; 2066 2075 }; 2067 2076 }; 2068 2077 "@types/body-parser-1.19.2" = { ··· 2128 2137 sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; 2129 2138 }; 2130 2139 }; 2131 - "@types/estree-0.0.51" = { 2140 + "@types/estree-1.0.1" = { 2132 2141 name = "_at_types_slash_estree"; 2133 2142 packageName = "@types/estree"; 2134 - version = "0.0.51"; 2143 + version = "1.0.1"; 2135 2144 src = fetchurl { 2136 - url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz"; 2137 - sha512 = "CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ=="; 2138 - }; 2139 - }; 2140 - "@types/estree-1.0.0" = { 2141 - name = "_at_types_slash_estree"; 2142 - packageName = "@types/estree"; 2143 - version = "1.0.0"; 2144 - src = fetchurl { 2145 - url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz"; 2146 - sha512 = "WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="; 2145 + url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz"; 2146 + sha512 = "LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA=="; 2147 2147 }; 2148 2148 }; 2149 2149 "@types/express-4.17.17" = { ··· 2155 2155 sha512 = "Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q=="; 2156 2156 }; 2157 2157 }; 2158 - "@types/express-serve-static-core-4.17.33" = { 2158 + "@types/express-serve-static-core-4.17.34" = { 2159 2159 name = "_at_types_slash_express-serve-static-core"; 2160 2160 packageName = "@types/express-serve-static-core"; 2161 - version = "4.17.33"; 2161 + version = "4.17.34"; 2162 2162 src = fetchurl { 2163 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz"; 2164 - sha512 = "TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA=="; 2163 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz"; 2164 + sha512 = "fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w=="; 2165 2165 }; 2166 2166 }; 2167 2167 "@types/graceful-fs-4.1.6" = { ··· 2182 2182 sha512 = "oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg=="; 2183 2183 }; 2184 2184 }; 2185 - "@types/http-proxy-1.17.10" = { 2185 + "@types/http-proxy-1.17.11" = { 2186 2186 name = "_at_types_slash_http-proxy"; 2187 2187 packageName = "@types/http-proxy"; 2188 - version = "1.17.10"; 2188 + version = "1.17.11"; 2189 2189 src = fetchurl { 2190 - url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.10.tgz"; 2191 - sha512 = "Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g=="; 2190 + url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz"; 2191 + sha512 = "HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA=="; 2192 2192 }; 2193 2193 }; 2194 2194 "@types/istanbul-lib-coverage-2.0.4" = { ··· 2236 2236 sha512 = "dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="; 2237 2237 }; 2238 2238 }; 2239 - "@types/mime-3.0.1" = { 2239 + "@types/mime-1.3.2" = { 2240 2240 name = "_at_types_slash_mime"; 2241 2241 packageName = "@types/mime"; 2242 - version = "3.0.1"; 2242 + version = "1.3.2"; 2243 2243 src = fetchurl { 2244 - url = "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz"; 2245 - sha512 = "Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="; 2244 + url = "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz"; 2245 + sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 2246 2246 }; 2247 2247 }; 2248 - "@types/node-18.15.11" = { 2248 + "@types/node-18.16.1" = { 2249 2249 name = "_at_types_slash_node"; 2250 2250 packageName = "@types/node"; 2251 - version = "18.15.11"; 2251 + version = "18.16.1"; 2252 2252 src = fetchurl { 2253 - url = "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz"; 2254 - sha512 = "E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q=="; 2253 + url = "https://registry.npmjs.org/@types/node/-/node-18.16.1.tgz"; 2254 + sha512 = "DZxSZWXxFfOlx7k7Rv4LAyiMroaxa3Ly/7OOzZO8cBNho0YzAi4qlbrx8W27JGqG57IgR/6J7r+nOJWw6kcvZA=="; 2255 2255 }; 2256 2256 }; 2257 2257 "@types/parse-json-4.0.0" = { ··· 2308 2308 sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 2309 2309 }; 2310 2310 }; 2311 - "@types/react-18.0.32" = { 2311 + "@types/react-17.0.58" = { 2312 2312 name = "_at_types_slash_react"; 2313 2313 packageName = "@types/react"; 2314 - version = "18.0.32"; 2314 + version = "17.0.58"; 2315 2315 src = fetchurl { 2316 - url = "https://registry.npmjs.org/@types/react/-/react-18.0.32.tgz"; 2317 - sha512 = "gYGXdtPQ9Cj0w2Fwqg5/ak6BcK3Z15YgjSqtyDizWUfx7mQ8drs0NBUzRRsAdoFVTO8kJ8L2TL8Skm7OFPnLUw=="; 2316 + url = "https://registry.npmjs.org/@types/react/-/react-17.0.58.tgz"; 2317 + sha512 = "c1GzVY97P0fGxwGxhYq989j4XwlcHQoto6wQISOC2v6wm3h0PORRWJFHlkRjfGsiG3y1609WdQ+J+tKxvrEd6A=="; 2318 2318 }; 2319 2319 }; 2320 - "@types/react-is-17.0.3" = { 2320 + "@types/react-is-17.0.4" = { 2321 2321 name = "_at_types_slash_react-is"; 2322 2322 packageName = "@types/react-is"; 2323 - version = "17.0.3"; 2323 + version = "17.0.4"; 2324 2324 src = fetchurl { 2325 - url = "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.3.tgz"; 2326 - sha512 = "aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw=="; 2325 + url = "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.4.tgz"; 2326 + sha512 = "FLzd0K9pnaEvKz4D1vYxK9JmgQPiGk1lu23o1kqGsLeT0iPbRSF7b76+S5T9fD8aRa0B8bY7I/3DebEj+1ysBA=="; 2327 2327 }; 2328 2328 }; 2329 2329 "@types/react-transition-group-4.4.5" = { ··· 2369 2369 src = fetchurl { 2370 2370 url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz"; 2371 2371 sha512 = "21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw=="; 2372 + }; 2373 + }; 2374 + "@types/send-0.17.1" = { 2375 + name = "_at_types_slash_send"; 2376 + packageName = "@types/send"; 2377 + version = "0.17.1"; 2378 + src = fetchurl { 2379 + url = "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz"; 2380 + sha512 = "Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q=="; 2372 2381 }; 2373 2382 }; 2374 2383 "@types/serve-index-1.9.1" = { ··· 2452 2461 sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 2453 2462 }; 2454 2463 }; 2455 - "@typescript-eslint/eslint-plugin-5.57.0" = { 2464 + "@typescript-eslint/eslint-plugin-5.59.1" = { 2456 2465 name = "_at_typescript-eslint_slash_eslint-plugin"; 2457 2466 packageName = "@typescript-eslint/eslint-plugin"; 2458 - version = "5.57.0"; 2467 + version = "5.59.1"; 2459 2468 src = fetchurl { 2460 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.57.0.tgz"; 2461 - sha512 = "itag0qpN6q2UMM6Xgk6xoHa0D0/P+M17THnr4SVgqn9Rgam5k/He33MA7/D7QoJcdMxHFyX7U9imaBonAX/6qA=="; 2469 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.1.tgz"; 2470 + sha512 = "AVi0uazY5quFB9hlp2Xv+ogpfpk77xzsgsIEWyVS7uK/c7MZ5tw7ZPbapa0SbfkqE0fsAMkz5UwtgMLVk2BQAg=="; 2462 2471 }; 2463 2472 }; 2464 - "@typescript-eslint/experimental-utils-5.57.0" = { 2473 + "@typescript-eslint/experimental-utils-5.59.1" = { 2465 2474 name = "_at_typescript-eslint_slash_experimental-utils"; 2466 2475 packageName = "@typescript-eslint/experimental-utils"; 2467 - version = "5.57.0"; 2476 + version = "5.59.1"; 2468 2477 src = fetchurl { 2469 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.57.0.tgz"; 2470 - sha512 = "0RnrwGQ7MmgtOSnzB/rSGYr2iXENi6L+CtPzX3g5ovo0HlruLukSEKcc4s+q0IEc+DLTDc7Edan0Y4WSQ/bFhw=="; 2478 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.1.tgz"; 2479 + sha512 = "KVtKcHEizCIRx//LC9tBi6xp94ULKbU5StVHBVWURJQOVa2qw6HP28Hu7LmHrQM3p9I3q5Y2VR4wKllCJ3IWrw=="; 2471 2480 }; 2472 2481 }; 2473 - "@typescript-eslint/parser-5.57.0" = { 2482 + "@typescript-eslint/parser-5.59.1" = { 2474 2483 name = "_at_typescript-eslint_slash_parser"; 2475 2484 packageName = "@typescript-eslint/parser"; 2476 - version = "5.57.0"; 2485 + version = "5.59.1"; 2477 2486 src = fetchurl { 2478 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.57.0.tgz"; 2479 - sha512 = "orrduvpWYkgLCyAdNtR1QIWovcNZlEm6yL8nwH/eTxWLd8gsP+25pdLHYzL2QdkqrieaDwLpytHqycncv0woUQ=="; 2487 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.1.tgz"; 2488 + sha512 = "nzjFAN8WEu6yPRDizIFyzAfgK7nybPodMNFGNH0M9tei2gYnYszRDqVA0xlnRjkl7Hkx2vYrEdb6fP2a21cG1g=="; 2480 2489 }; 2481 2490 }; 2482 - "@typescript-eslint/scope-manager-5.57.0" = { 2491 + "@typescript-eslint/scope-manager-5.59.1" = { 2483 2492 name = "_at_typescript-eslint_slash_scope-manager"; 2484 2493 packageName = "@typescript-eslint/scope-manager"; 2485 - version = "5.57.0"; 2494 + version = "5.59.1"; 2486 2495 src = fetchurl { 2487 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.57.0.tgz"; 2488 - sha512 = "NANBNOQvllPlizl9LatX8+MHi7bx7WGIWYjPHDmQe5Si/0YEYfxSljJpoTyTWFTgRy3X8gLYSE4xQ2U+aCozSw=="; 2496 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.1.tgz"; 2497 + sha512 = "mau0waO5frJctPuAzcxiNWqJR5Z8V0190FTSqRw1Q4Euop6+zTwHAf8YIXNwDOT29tyUDrQ65jSg9aTU/H0omA=="; 2489 2498 }; 2490 2499 }; 2491 - "@typescript-eslint/type-utils-5.57.0" = { 2500 + "@typescript-eslint/type-utils-5.59.1" = { 2492 2501 name = "_at_typescript-eslint_slash_type-utils"; 2493 2502 packageName = "@typescript-eslint/type-utils"; 2494 - version = "5.57.0"; 2503 + version = "5.59.1"; 2495 2504 src = fetchurl { 2496 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.57.0.tgz"; 2497 - sha512 = "kxXoq9zOTbvqzLbdNKy1yFrxLC6GDJFE2Yuo3KqSwTmDOFjUGeWSakgoXT864WcK5/NAJkkONCiKb1ddsqhLXQ=="; 2505 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.1.tgz"; 2506 + sha512 = "ZMWQ+Oh82jWqWzvM3xU+9y5U7MEMVv6GLioM3R5NJk6uvP47kZ7YvlgSHJ7ERD6bOY7Q4uxWm25c76HKEwIjZw=="; 2498 2507 }; 2499 2508 }; 2500 - "@typescript-eslint/types-5.57.0" = { 2509 + "@typescript-eslint/types-5.59.1" = { 2501 2510 name = "_at_typescript-eslint_slash_types"; 2502 2511 packageName = "@typescript-eslint/types"; 2503 - version = "5.57.0"; 2512 + version = "5.59.1"; 2504 2513 src = fetchurl { 2505 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.57.0.tgz"; 2506 - sha512 = "mxsod+aZRSyLT+jiqHw1KK6xrANm19/+VFALVFP5qa/aiJnlP38qpyaTd0fEKhWvQk6YeNZ5LGwI1pDpBRBhtQ=="; 2514 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.1.tgz"; 2515 + sha512 = "dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg=="; 2507 2516 }; 2508 2517 }; 2509 - "@typescript-eslint/typescript-estree-5.57.0" = { 2518 + "@typescript-eslint/typescript-estree-5.59.1" = { 2510 2519 name = "_at_typescript-eslint_slash_typescript-estree"; 2511 2520 packageName = "@typescript-eslint/typescript-estree"; 2512 - version = "5.57.0"; 2521 + version = "5.59.1"; 2513 2522 src = fetchurl { 2514 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.57.0.tgz"; 2515 - sha512 = "LTzQ23TV82KpO8HPnWuxM2V7ieXW8O142I7hQTxWIHDcCEIjtkat6H96PFkYBQqGFLW/G/eVVOB9Z8rcvdY/Vw=="; 2523 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.1.tgz"; 2524 + sha512 = "lYLBBOCsFltFy7XVqzX0Ju+Lh3WPIAWxYpmH/Q7ZoqzbscLiCW00LeYCdsUnnfnj29/s1WovXKh2gwCoinHNGA=="; 2516 2525 }; 2517 2526 }; 2518 - "@typescript-eslint/utils-5.57.0" = { 2527 + "@typescript-eslint/utils-5.59.1" = { 2519 2528 name = "_at_typescript-eslint_slash_utils"; 2520 2529 packageName = "@typescript-eslint/utils"; 2521 - version = "5.57.0"; 2530 + version = "5.59.1"; 2522 2531 src = fetchurl { 2523 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.57.0.tgz"; 2524 - sha512 = "ps/4WohXV7C+LTSgAL5CApxvxbMkl9B9AUZRtnEFonpIxZDIT7wC1xfvuJONMidrkB9scs4zhtRyIwHh4+18kw=="; 2532 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.1.tgz"; 2533 + sha512 = "MkTe7FE+K1/GxZkP5gRj3rCztg45bEhsd8HYjczBuYm+qFHP5vtZmjx3B0yUCDotceQ4sHgTyz60Ycl225njmA=="; 2525 2534 }; 2526 2535 }; 2527 - "@typescript-eslint/visitor-keys-5.57.0" = { 2536 + "@typescript-eslint/visitor-keys-5.59.1" = { 2528 2537 name = "_at_typescript-eslint_slash_visitor-keys"; 2529 2538 packageName = "@typescript-eslint/visitor-keys"; 2530 - version = "5.57.0"; 2539 + version = "5.59.1"; 2531 2540 src = fetchurl { 2532 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.57.0.tgz"; 2533 - sha512 = "ery2g3k0hv5BLiKpPuwYt9KBkAp2ugT6VvyShXdLOkax895EC55sP0Tx5L0fZaQueiK3fBLvHVvEl3jFS5ia+g=="; 2541 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.1.tgz"; 2542 + sha512 = "6waEYwBTCWryx0VJmP7JaM4FpipLsFl9CvYf2foAE8Qh/Y0s+bxWysciwOs0LTBED4JCaNxTZ5rGadB14M6dwA=="; 2534 2543 }; 2535 2544 }; 2536 - "@webassemblyjs/ast-1.11.1" = { 2545 + "@webassemblyjs/ast-1.11.5" = { 2537 2546 name = "_at_webassemblyjs_slash_ast"; 2538 2547 packageName = "@webassemblyjs/ast"; 2539 - version = "1.11.1"; 2548 + version = "1.11.5"; 2540 2549 src = fetchurl { 2541 - url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz"; 2542 - sha512 = "ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="; 2550 + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.5.tgz"; 2551 + sha512 = "LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ=="; 2543 2552 }; 2544 2553 }; 2545 - "@webassemblyjs/floating-point-hex-parser-1.11.1" = { 2554 + "@webassemblyjs/floating-point-hex-parser-1.11.5" = { 2546 2555 name = "_at_webassemblyjs_slash_floating-point-hex-parser"; 2547 2556 packageName = "@webassemblyjs/floating-point-hex-parser"; 2548 - version = "1.11.1"; 2557 + version = "1.11.5"; 2549 2558 src = fetchurl { 2550 - url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz"; 2551 - sha512 = "iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="; 2559 + url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz"; 2560 + sha512 = "1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ=="; 2552 2561 }; 2553 2562 }; 2554 - "@webassemblyjs/helper-api-error-1.11.1" = { 2563 + "@webassemblyjs/helper-api-error-1.11.5" = { 2555 2564 name = "_at_webassemblyjs_slash_helper-api-error"; 2556 2565 packageName = "@webassemblyjs/helper-api-error"; 2557 - version = "1.11.1"; 2566 + version = "1.11.5"; 2558 2567 src = fetchurl { 2559 - url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz"; 2560 - sha512 = "RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="; 2568 + url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz"; 2569 + sha512 = "L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA=="; 2561 2570 }; 2562 2571 }; 2563 - "@webassemblyjs/helper-buffer-1.11.1" = { 2572 + "@webassemblyjs/helper-buffer-1.11.5" = { 2564 2573 name = "_at_webassemblyjs_slash_helper-buffer"; 2565 2574 packageName = "@webassemblyjs/helper-buffer"; 2566 - version = "1.11.1"; 2575 + version = "1.11.5"; 2567 2576 src = fetchurl { 2568 - url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz"; 2569 - sha512 = "gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="; 2577 + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz"; 2578 + sha512 = "fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg=="; 2570 2579 }; 2571 2580 }; 2572 - "@webassemblyjs/helper-numbers-1.11.1" = { 2581 + "@webassemblyjs/helper-numbers-1.11.5" = { 2573 2582 name = "_at_webassemblyjs_slash_helper-numbers"; 2574 2583 packageName = "@webassemblyjs/helper-numbers"; 2575 - version = "1.11.1"; 2584 + version = "1.11.5"; 2576 2585 src = fetchurl { 2577 - url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz"; 2578 - sha512 = "vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ=="; 2586 + url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz"; 2587 + sha512 = "DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA=="; 2579 2588 }; 2580 2589 }; 2581 - "@webassemblyjs/helper-wasm-bytecode-1.11.1" = { 2590 + "@webassemblyjs/helper-wasm-bytecode-1.11.5" = { 2582 2591 name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; 2583 2592 packageName = "@webassemblyjs/helper-wasm-bytecode"; 2584 - version = "1.11.1"; 2593 + version = "1.11.5"; 2585 2594 src = fetchurl { 2586 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz"; 2587 - sha512 = "PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="; 2595 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz"; 2596 + sha512 = "oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA=="; 2588 2597 }; 2589 2598 }; 2590 - "@webassemblyjs/helper-wasm-section-1.11.1" = { 2599 + "@webassemblyjs/helper-wasm-section-1.11.5" = { 2591 2600 name = "_at_webassemblyjs_slash_helper-wasm-section"; 2592 2601 packageName = "@webassemblyjs/helper-wasm-section"; 2593 - version = "1.11.1"; 2602 + version = "1.11.5"; 2594 2603 src = fetchurl { 2595 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz"; 2596 - sha512 = "10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg=="; 2604 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz"; 2605 + sha512 = "uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA=="; 2597 2606 }; 2598 2607 }; 2599 - "@webassemblyjs/ieee754-1.11.1" = { 2608 + "@webassemblyjs/ieee754-1.11.5" = { 2600 2609 name = "_at_webassemblyjs_slash_ieee754"; 2601 2610 packageName = "@webassemblyjs/ieee754"; 2602 - version = "1.11.1"; 2611 + version = "1.11.5"; 2603 2612 src = fetchurl { 2604 - url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz"; 2605 - sha512 = "hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ=="; 2613 + url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz"; 2614 + sha512 = "37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg=="; 2606 2615 }; 2607 2616 }; 2608 - "@webassemblyjs/leb128-1.11.1" = { 2617 + "@webassemblyjs/leb128-1.11.5" = { 2609 2618 name = "_at_webassemblyjs_slash_leb128"; 2610 2619 packageName = "@webassemblyjs/leb128"; 2611 - version = "1.11.1"; 2620 + version = "1.11.5"; 2612 2621 src = fetchurl { 2613 - url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz"; 2614 - sha512 = "BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw=="; 2622 + url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.5.tgz"; 2623 + sha512 = "ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ=="; 2615 2624 }; 2616 2625 }; 2617 - "@webassemblyjs/utf8-1.11.1" = { 2626 + "@webassemblyjs/utf8-1.11.5" = { 2618 2627 name = "_at_webassemblyjs_slash_utf8"; 2619 2628 packageName = "@webassemblyjs/utf8"; 2620 - version = "1.11.1"; 2629 + version = "1.11.5"; 2621 2630 src = fetchurl { 2622 - url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz"; 2623 - sha512 = "9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="; 2631 + url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.5.tgz"; 2632 + sha512 = "WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ=="; 2624 2633 }; 2625 2634 }; 2626 - "@webassemblyjs/wasm-edit-1.11.1" = { 2635 + "@webassemblyjs/wasm-edit-1.11.5" = { 2627 2636 name = "_at_webassemblyjs_slash_wasm-edit"; 2628 2637 packageName = "@webassemblyjs/wasm-edit"; 2629 - version = "1.11.1"; 2638 + version = "1.11.5"; 2630 2639 src = fetchurl { 2631 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz"; 2632 - sha512 = "g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA=="; 2640 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz"; 2641 + sha512 = "C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ=="; 2633 2642 }; 2634 2643 }; 2635 - "@webassemblyjs/wasm-gen-1.11.1" = { 2644 + "@webassemblyjs/wasm-gen-1.11.5" = { 2636 2645 name = "_at_webassemblyjs_slash_wasm-gen"; 2637 2646 packageName = "@webassemblyjs/wasm-gen"; 2638 - version = "1.11.1"; 2647 + version = "1.11.5"; 2639 2648 src = fetchurl { 2640 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz"; 2641 - sha512 = "F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA=="; 2649 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz"; 2650 + sha512 = "14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA=="; 2642 2651 }; 2643 2652 }; 2644 - "@webassemblyjs/wasm-opt-1.11.1" = { 2653 + "@webassemblyjs/wasm-opt-1.11.5" = { 2645 2654 name = "_at_webassemblyjs_slash_wasm-opt"; 2646 2655 packageName = "@webassemblyjs/wasm-opt"; 2647 - version = "1.11.1"; 2656 + version = "1.11.5"; 2648 2657 src = fetchurl { 2649 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz"; 2650 - sha512 = "VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw=="; 2658 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz"; 2659 + sha512 = "tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw=="; 2651 2660 }; 2652 2661 }; 2653 - "@webassemblyjs/wasm-parser-1.11.1" = { 2662 + "@webassemblyjs/wasm-parser-1.11.5" = { 2654 2663 name = "_at_webassemblyjs_slash_wasm-parser"; 2655 2664 packageName = "@webassemblyjs/wasm-parser"; 2656 - version = "1.11.1"; 2665 + version = "1.11.5"; 2657 2666 src = fetchurl { 2658 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz"; 2659 - sha512 = "rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="; 2667 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz"; 2668 + sha512 = "SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew=="; 2660 2669 }; 2661 2670 }; 2662 - "@webassemblyjs/wast-printer-1.11.1" = { 2671 + "@webassemblyjs/wast-printer-1.11.5" = { 2663 2672 name = "_at_webassemblyjs_slash_wast-printer"; 2664 2673 packageName = "@webassemblyjs/wast-printer"; 2665 - version = "1.11.1"; 2674 + version = "1.11.5"; 2666 2675 src = fetchurl { 2667 - url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz"; 2668 - sha512 = "IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="; 2676 + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz"; 2677 + sha512 = "f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA=="; 2669 2678 }; 2670 2679 }; 2671 2680 "@xtuc/ieee754-1.2.0" = { ··· 3091 3100 sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="; 3092 3101 }; 3093 3102 }; 3094 - "axe-core-4.6.3" = { 3103 + "axe-core-4.7.0" = { 3095 3104 name = "axe-core"; 3096 3105 packageName = "axe-core"; 3097 - version = "4.6.3"; 3106 + version = "4.7.0"; 3098 3107 src = fetchurl { 3099 - url = "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz"; 3100 - sha512 = "/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg=="; 3108 + url = "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz"; 3109 + sha512 = "M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ=="; 3101 3110 }; 3102 3111 }; 3103 3112 "axobject-query-3.1.1" = { ··· 3460 3469 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 3461 3470 }; 3462 3471 }; 3463 - "caniuse-lite-1.0.30001473" = { 3472 + "caniuse-lite-1.0.30001481" = { 3464 3473 name = "caniuse-lite"; 3465 3474 packageName = "caniuse-lite"; 3466 - version = "1.0.30001473"; 3475 + version = "1.0.30001481"; 3467 3476 src = fetchurl { 3468 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001473.tgz"; 3469 - sha512 = "ewDad7+D2vlyy+E4UJuVfiBsU69IL+8oVmTuZnH5Q6CIUbxNfI50uVpRHbUPDD6SUaN2o0Lh4DhTrvLG/Tn1yg=="; 3477 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz"; 3478 + sha512 = "KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ=="; 3470 3479 }; 3471 3480 }; 3472 3481 "case-sensitive-paths-webpack-plugin-2.4.0" = { ··· 3658 3667 sha512 = "jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="; 3659 3668 }; 3660 3669 }; 3661 - "colorette-2.0.19" = { 3670 + "colorette-2.0.20" = { 3662 3671 name = "colorette"; 3663 3672 packageName = "colorette"; 3664 - version = "2.0.19"; 3673 + version = "2.0.20"; 3665 3674 src = fetchurl { 3666 - url = "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz"; 3667 - sha512 = "3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ=="; 3675 + url = "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz"; 3676 + sha512 = "IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="; 3668 3677 }; 3669 3678 }; 3670 3679 "combined-stream-1.0.8" = { ··· 3829 3838 sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3830 3839 }; 3831 3840 }; 3832 - "core-js-3.29.1" = { 3841 + "core-js-3.30.1" = { 3833 3842 name = "core-js"; 3834 3843 packageName = "core-js"; 3835 - version = "3.29.1"; 3844 + version = "3.30.1"; 3836 3845 src = fetchurl { 3837 - url = "https://registry.npmjs.org/core-js/-/core-js-3.29.1.tgz"; 3838 - sha512 = "+jwgnhg6cQxKYIIjGtAHq2nwUOolo9eoFZ4sHfUH09BLXBgxnH4gA0zEd+t+BO2cNB8idaBtZFcFTRjQJRJmAw=="; 3846 + url = "https://registry.npmjs.org/core-js/-/core-js-3.30.1.tgz"; 3847 + sha512 = "ZNS5nbiSwDTq4hFosEDqm65izl2CWmLz0hARJMyNQBgkUZMIF51cQiMvIQKA6hvuaeWxQDP3hEedM1JZIgTldQ=="; 3839 3848 }; 3840 3849 }; 3841 - "core-js-compat-3.29.1" = { 3850 + "core-js-compat-3.30.1" = { 3842 3851 name = "core-js-compat"; 3843 3852 packageName = "core-js-compat"; 3844 - version = "3.29.1"; 3853 + version = "3.30.1"; 3845 3854 src = fetchurl { 3846 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.29.1.tgz"; 3847 - sha512 = "QmchCua884D8wWskMX8tW5ydINzd8oSJVx38lx/pVkFGqztxt73GYre3pm/hyYq8bPf+MW5In4I/uRShFDsbrA=="; 3855 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz"; 3856 + sha512 = "d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw=="; 3848 3857 }; 3849 3858 }; 3850 - "core-js-pure-3.29.1" = { 3859 + "core-js-pure-3.30.1" = { 3851 3860 name = "core-js-pure"; 3852 3861 packageName = "core-js-pure"; 3853 - version = "3.29.1"; 3862 + version = "3.30.1"; 3854 3863 src = fetchurl { 3855 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.29.1.tgz"; 3856 - sha512 = "4En6zYVi0i0XlXHVz/bi6l1XDjCqkKRq765NXuX+SnaIatlE96Odt5lMLjdxUiNI1v9OXI5DSLWYPlmTfkTktg=="; 3864 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.1.tgz"; 3865 + sha512 = "nXBEVpmUnNRhz83cHd9JRQC52cTMcuXAmR56+9dSMpRdpeA4I1PX6yjmhd71Eyc/wXNsdBdUDIj1QTIeZpU5Tg=="; 3857 3866 }; 3858 3867 }; 3859 3868 "core-util-is-1.0.3" = { ··· 4027 4036 sha512 = "HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="; 4028 4037 }; 4029 4038 }; 4030 - "cssdb-7.5.3" = { 4039 + "cssdb-7.5.4" = { 4031 4040 name = "cssdb"; 4032 4041 packageName = "cssdb"; 4033 - version = "7.5.3"; 4042 + version = "7.5.4"; 4034 4043 src = fetchurl { 4035 - url = "https://registry.npmjs.org/cssdb/-/cssdb-7.5.3.tgz"; 4036 - sha512 = "NQNRhrEnS6cW+RU/foLphb6xI/MDA70bI3Cy6VxJU8ilxgyTYz1X9zUzFGVTG5nGPylcKAGIt/UNc4deT56lQQ=="; 4044 + url = "https://registry.npmjs.org/cssdb/-/cssdb-7.5.4.tgz"; 4045 + sha512 = "fGD+J6Jlq+aurfE1VDXlLS4Pt0VtNlu2+YgfGOdMxRyl/HQ9bDiHTwSck1Yz8A97Dt/82izSK6Bp/4nVqacOsg=="; 4037 4046 }; 4038 4047 }; 4039 4048 "cssesc-3.0.0" = { ··· 4360 4369 sha512 = "z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg=="; 4361 4370 }; 4362 4371 }; 4363 - "dns-packet-5.5.0" = { 4372 + "dns-packet-5.6.0" = { 4364 4373 name = "dns-packet"; 4365 4374 packageName = "dns-packet"; 4366 - version = "5.5.0"; 4375 + version = "5.6.0"; 4367 4376 src = fetchurl { 4368 - url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.5.0.tgz"; 4369 - sha512 = "USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA=="; 4377 + url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz"; 4378 + sha512 = "rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ=="; 4370 4379 }; 4371 4380 }; 4372 4381 "doctrine-2.1.0" = { ··· 4531 4540 sha512 = "rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ=="; 4532 4541 }; 4533 4542 }; 4534 - "electron-to-chromium-1.4.348" = { 4543 + "electron-to-chromium-1.4.373" = { 4535 4544 name = "electron-to-chromium"; 4536 4545 packageName = "electron-to-chromium"; 4537 - version = "1.4.348"; 4546 + version = "1.4.373"; 4538 4547 src = fetchurl { 4539 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.348.tgz"; 4540 - sha512 = "gM7TdwuG3amns/1rlgxMbeeyNoBFPa+4Uu0c7FeROWh4qWmvSOnvcslKmWy51ggLKZ2n/F/4i2HJ+PVNxH9uCQ=="; 4548 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.373.tgz"; 4549 + sha512 = "whGyixOVSRlyOBQDsRH9xltFaMij2/+DQRdaYahCq0P/fiVnAVGaW7OVsFnEjze/qUo298ez9C46gnALpo6ukg=="; 4541 4550 }; 4542 4551 }; 4543 4552 "emittery-0.10.2" = { ··· 4594 4603 sha512 = "TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="; 4595 4604 }; 4596 4605 }; 4597 - "enhanced-resolve-5.12.0" = { 4606 + "enhanced-resolve-5.13.0" = { 4598 4607 name = "enhanced-resolve"; 4599 4608 packageName = "enhanced-resolve"; 4600 - version = "5.12.0"; 4609 + version = "5.13.0"; 4601 4610 src = fetchurl { 4602 - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz"; 4603 - sha512 = "QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ=="; 4611 + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz"; 4612 + sha512 = "eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg=="; 4604 4613 }; 4605 4614 }; 4606 4615 "entities-2.2.0" = { ··· 4657 4666 sha512 = "sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw=="; 4658 4667 }; 4659 4668 }; 4660 - "es-module-lexer-0.9.3" = { 4669 + "es-module-lexer-1.2.1" = { 4661 4670 name = "es-module-lexer"; 4662 4671 packageName = "es-module-lexer"; 4663 - version = "0.9.3"; 4672 + version = "1.2.1"; 4664 4673 src = fetchurl { 4665 - url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz"; 4666 - sha512 = "1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ=="; 4674 + url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz"; 4675 + sha512 = "9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg=="; 4667 4676 }; 4668 4677 }; 4669 4678 "es-set-tostringtag-2.0.1" = { ··· 4747 4756 sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 4748 4757 }; 4749 4758 }; 4750 - "eslint-8.37.0" = { 4759 + "eslint-8.39.0" = { 4751 4760 name = "eslint"; 4752 4761 packageName = "eslint"; 4753 - version = "8.37.0"; 4762 + version = "8.39.0"; 4754 4763 src = fetchurl { 4755 - url = "https://registry.npmjs.org/eslint/-/eslint-8.37.0.tgz"; 4756 - sha512 = "NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw=="; 4764 + url = "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz"; 4765 + sha512 = "mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og=="; 4757 4766 }; 4758 4767 }; 4759 4768 "eslint-config-react-app-7.0.1" = { ··· 4774 4783 sha512 = "gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA=="; 4775 4784 }; 4776 4785 }; 4777 - "eslint-module-utils-2.7.4" = { 4786 + "eslint-module-utils-2.8.0" = { 4778 4787 name = "eslint-module-utils"; 4779 4788 packageName = "eslint-module-utils"; 4780 - version = "2.7.4"; 4789 + version = "2.8.0"; 4781 4790 src = fetchurl { 4782 - url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz"; 4783 - sha512 = "j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA=="; 4791 + url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz"; 4792 + sha512 = "aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw=="; 4784 4793 }; 4785 4794 }; 4786 4795 "eslint-plugin-flowtype-8.0.3" = { ··· 4837 4846 sha512 = "oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g=="; 4838 4847 }; 4839 4848 }; 4840 - "eslint-plugin-testing-library-5.10.2" = { 4849 + "eslint-plugin-testing-library-5.10.3" = { 4841 4850 name = "eslint-plugin-testing-library"; 4842 4851 packageName = "eslint-plugin-testing-library"; 4843 - version = "5.10.2"; 4852 + version = "5.10.3"; 4844 4853 src = fetchurl { 4845 - url = "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.2.tgz"; 4846 - sha512 = "f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw=="; 4854 + url = "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.3.tgz"; 4855 + sha512 = "0yhsKFsjHLud5PM+f2dWr9K3rqYzMy4cSHs3lcmFYMa1CdSzRvHGgXvsFarBjZ41gU8jhTdMIkg8jHLxGJqLqw=="; 4847 4856 }; 4848 4857 }; 4849 4858 "eslint-scope-5.1.1" = { ··· 4855 4864 sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 4856 4865 }; 4857 4866 }; 4858 - "eslint-scope-7.1.1" = { 4867 + "eslint-scope-7.2.0" = { 4859 4868 name = "eslint-scope"; 4860 4869 packageName = "eslint-scope"; 4861 - version = "7.1.1"; 4870 + version = "7.2.0"; 4862 4871 src = fetchurl { 4863 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz"; 4864 - sha512 = "QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="; 4872 + url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz"; 4873 + sha512 = "DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw=="; 4865 4874 }; 4866 4875 }; 4867 4876 "eslint-visitor-keys-2.1.0" = { ··· 5710 5719 sha512 = "KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg=="; 5711 5720 }; 5712 5721 }; 5713 - "html-webpack-plugin-5.5.0" = { 5722 + "html-webpack-plugin-5.5.1" = { 5714 5723 name = "html-webpack-plugin"; 5715 5724 packageName = "html-webpack-plugin"; 5716 - version = "5.5.0"; 5725 + version = "5.5.1"; 5717 5726 src = fetchurl { 5718 - url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz"; 5719 - sha512 = "sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw=="; 5727 + url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.1.tgz"; 5728 + sha512 = "cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA=="; 5720 5729 }; 5721 5730 }; 5722 5731 "htmlparser2-6.1.0" = { ··· 6061 6070 sha512 = "1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="; 6062 6071 }; 6063 6072 }; 6064 - "is-core-module-2.11.0" = { 6073 + "is-core-module-2.12.0" = { 6065 6074 name = "is-core-module"; 6066 6075 packageName = "is-core-module"; 6067 - version = "2.11.0"; 6076 + version = "2.12.0"; 6068 6077 src = fetchurl { 6069 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"; 6070 - sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; 6078 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz"; 6079 + sha512 = "RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ=="; 6071 6080 }; 6072 6081 }; 6073 6082 "is-date-object-1.0.5" = { ··· 7204 7213 sha512 = "dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="; 7205 7214 }; 7206 7215 }; 7207 - "memfs-3.4.13" = { 7216 + "memfs-3.5.1" = { 7208 7217 name = "memfs"; 7209 7218 packageName = "memfs"; 7210 - version = "3.4.13"; 7219 + version = "3.5.1"; 7211 7220 src = fetchurl { 7212 - url = "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz"; 7213 - sha512 = "omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg=="; 7221 + url = "https://registry.npmjs.org/memfs/-/memfs-3.5.1.tgz"; 7222 + sha512 = "UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA=="; 7214 7223 }; 7215 7224 }; 7216 7225 "merge-descriptors-1.0.1" = { ··· 7537 7546 sha512 = "lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w=="; 7538 7547 }; 7539 7548 }; 7540 - "nwsapi-2.2.2" = { 7549 + "nwsapi-2.2.4" = { 7541 7550 name = "nwsapi"; 7542 7551 packageName = "nwsapi"; 7543 - version = "2.2.2"; 7552 + version = "2.2.4"; 7544 7553 src = fetchurl { 7545 - url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz"; 7546 - sha512 = "90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw=="; 7554 + url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.4.tgz"; 7555 + sha512 = "NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g=="; 7547 7556 }; 7548 7557 }; 7549 7558 "object-assign-4.1.1" = { ··· 7618 7627 sha512 = "VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg=="; 7619 7628 }; 7620 7629 }; 7621 - "object.getownpropertydescriptors-2.1.5" = { 7630 + "object.getownpropertydescriptors-2.1.6" = { 7622 7631 name = "object.getownpropertydescriptors"; 7623 7632 packageName = "object.getownpropertydescriptors"; 7624 - version = "2.1.5"; 7633 + version = "2.1.6"; 7625 7634 src = fetchurl { 7626 - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz"; 7627 - sha512 = "yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw=="; 7635 + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz"; 7636 + sha512 = "lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ=="; 7628 7637 }; 7629 7638 }; 7630 7639 "object.hasown-1.1.2" = { ··· 7978 7987 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 7979 7988 }; 7980 7989 }; 7981 - "postcss-8.4.21" = { 7990 + "postcss-8.4.23" = { 7982 7991 name = "postcss"; 7983 7992 packageName = "postcss"; 7984 - version = "8.4.21"; 7993 + version = "8.4.23"; 7985 7994 src = fetchurl { 7986 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz"; 7987 - sha512 = "tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg=="; 7995 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz"; 7996 + sha512 = "bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA=="; 7988 7997 }; 7989 7998 }; 7990 7999 "postcss-attribute-case-insensitive-5.0.2" = { ··· 8212 8221 sha512 = "9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw=="; 8213 8222 }; 8214 8223 }; 8215 - "postcss-import-14.1.0" = { 8224 + "postcss-import-15.1.0" = { 8216 8225 name = "postcss-import"; 8217 8226 packageName = "postcss-import"; 8218 - version = "14.1.0"; 8227 + version = "15.1.0"; 8219 8228 src = fetchurl { 8220 - url = "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz"; 8221 - sha512 = "flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw=="; 8229 + url = "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz"; 8230 + sha512 = "hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew=="; 8222 8231 }; 8223 8232 }; 8224 8233 "postcss-initial-4.0.1" = { ··· 8248 8257 sha512 = "xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w=="; 8249 8258 }; 8250 8259 }; 8251 - "postcss-load-config-3.1.4" = { 8260 + "postcss-load-config-4.0.1" = { 8252 8261 name = "postcss-load-config"; 8253 8262 packageName = "postcss-load-config"; 8254 - version = "3.1.4"; 8263 + version = "4.0.1"; 8255 8264 src = fetchurl { 8256 - url = "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz"; 8257 - sha512 = "6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg=="; 8265 + url = "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz"; 8266 + sha512 = "vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA=="; 8258 8267 }; 8259 8268 }; 8260 8269 "postcss-loader-6.2.1" = { ··· 8374 8383 sha512 = "RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ=="; 8375 8384 }; 8376 8385 }; 8377 - "postcss-nested-6.0.0" = { 8386 + "postcss-nested-6.0.1" = { 8378 8387 name = "postcss-nested"; 8379 8388 packageName = "postcss-nested"; 8380 - version = "6.0.0"; 8389 + version = "6.0.1"; 8381 8390 src = fetchurl { 8382 - url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz"; 8383 - sha512 = "0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w=="; 8391 + url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz"; 8392 + sha512 = "mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ=="; 8384 8393 }; 8385 8394 }; 8386 8395 "postcss-nesting-10.2.0" = { ··· 8770 8779 sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 8771 8780 }; 8772 8781 }; 8773 - "quick-lru-5.1.1" = { 8774 - name = "quick-lru"; 8775 - packageName = "quick-lru"; 8776 - version = "5.1.1"; 8777 - src = fetchurl { 8778 - url = "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz"; 8779 - sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="; 8780 - }; 8781 - }; 8782 8782 "raf-3.4.1" = { 8783 8783 name = "raf"; 8784 8784 packageName = "raf"; ··· 9040 9040 sha512 = "jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q=="; 9041 9041 }; 9042 9042 }; 9043 - "regexp.prototype.flags-1.4.3" = { 9043 + "regexp.prototype.flags-1.5.0" = { 9044 9044 name = "regexp.prototype.flags"; 9045 9045 packageName = "regexp.prototype.flags"; 9046 - version = "1.4.3"; 9046 + version = "1.5.0"; 9047 9047 src = fetchurl { 9048 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"; 9049 - sha512 = "fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="; 9048 + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz"; 9049 + sha512 = "0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA=="; 9050 9050 }; 9051 9051 }; 9052 9052 "regexpu-core-5.3.2" = { ··· 9112 9112 sha512 = "KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="; 9113 9113 }; 9114 9114 }; 9115 - "resolve-1.22.1" = { 9115 + "resolve-1.22.3" = { 9116 9116 name = "resolve"; 9117 9117 packageName = "resolve"; 9118 - version = "1.22.1"; 9118 + version = "1.22.3"; 9119 9119 src = fetchurl { 9120 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"; 9121 - sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; 9120 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz"; 9121 + sha512 = "P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw=="; 9122 9122 }; 9123 9123 }; 9124 9124 "resolve-2.0.0-next.4" = { ··· 9229 9229 sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 9230 9230 }; 9231 9231 }; 9232 + "safe-array-concat-1.0.0" = { 9233 + name = "safe-array-concat"; 9234 + packageName = "safe-array-concat"; 9235 + version = "1.0.0"; 9236 + src = fetchurl { 9237 + url = "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz"; 9238 + sha512 = "9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ=="; 9239 + }; 9240 + }; 9232 9241 "safe-buffer-5.1.2" = { 9233 9242 name = "safe-buffer"; 9234 9243 packageName = "safe-buffer"; ··· 9328 9337 sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; 9329 9338 }; 9330 9339 }; 9331 - "schema-utils-3.1.1" = { 9340 + "schema-utils-3.1.2" = { 9332 9341 name = "schema-utils"; 9333 9342 packageName = "schema-utils"; 9334 - version = "3.1.1"; 9343 + version = "3.1.2"; 9335 9344 src = fetchurl { 9336 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz"; 9337 - sha512 = "Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw=="; 9345 + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz"; 9346 + sha512 = "pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg=="; 9338 9347 }; 9339 9348 }; 9340 - "schema-utils-4.0.0" = { 9349 + "schema-utils-4.0.1" = { 9341 9350 name = "schema-utils"; 9342 9351 packageName = "schema-utils"; 9343 - version = "4.0.0"; 9352 + version = "4.0.1"; 9344 9353 src = fetchurl { 9345 - url = "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz"; 9346 - sha512 = "1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg=="; 9354 + url = "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz"; 9355 + sha512 = "lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ=="; 9347 9356 }; 9348 9357 }; 9349 9358 "select-hose-2.0.0" = { ··· 9373 9382 sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 9374 9383 }; 9375 9384 }; 9376 - "semver-7.3.8" = { 9385 + "semver-7.5.0" = { 9377 9386 name = "semver"; 9378 9387 packageName = "semver"; 9379 - version = "7.3.8"; 9388 + version = "7.5.0"; 9380 9389 src = fetchurl { 9381 - url = "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"; 9382 - sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; 9390 + url = "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz"; 9391 + sha512 = "+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA=="; 9383 9392 }; 9384 9393 }; 9385 9394 "send-0.18.0" = { ··· 9463 9472 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 9464 9473 }; 9465 9474 }; 9466 - "shell-quote-1.8.0" = { 9475 + "shell-quote-1.8.1" = { 9467 9476 name = "shell-quote"; 9468 9477 packageName = "shell-quote"; 9469 - version = "1.8.0"; 9478 + version = "1.8.1"; 9470 9479 src = fetchurl { 9471 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz"; 9472 - sha512 = "QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ=="; 9480 + url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz"; 9481 + sha512 = "6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA=="; 9473 9482 }; 9474 9483 }; 9475 9484 "side-channel-1.0.4" = { ··· 9904 9913 sha512 = "GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA=="; 9905 9914 }; 9906 9915 }; 9907 - "sucrase-3.31.0" = { 9916 + "sucrase-3.32.0" = { 9908 9917 name = "sucrase"; 9909 9918 packageName = "sucrase"; 9910 - version = "3.31.0"; 9919 + version = "3.32.0"; 9911 9920 src = fetchurl { 9912 - url = "https://registry.npmjs.org/sucrase/-/sucrase-3.31.0.tgz"; 9913 - sha512 = "6QsHnkqyVEzYcaiHsOKkzOtOgdJcb8i54x6AV2hDwyZcY9ZyykGZVw6L/YN98xC0evwTP6utsWWrKRaa8QlfEQ=="; 9921 + url = "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz"; 9922 + sha512 = "ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ=="; 9914 9923 }; 9915 9924 }; 9916 9925 "supports-color-5.5.0" = { ··· 9994 10003 sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; 9995 10004 }; 9996 10005 }; 9997 - "tailwindcss-3.3.1" = { 10006 + "tailwindcss-3.3.2" = { 9998 10007 name = "tailwindcss"; 9999 10008 packageName = "tailwindcss"; 10000 - version = "3.3.1"; 10009 + version = "3.3.2"; 10001 10010 src = fetchurl { 10002 - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.1.tgz"; 10003 - sha512 = "Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g=="; 10011 + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz"; 10012 + sha512 = "9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w=="; 10004 10013 }; 10005 10014 }; 10006 10015 "tapable-1.1.3" = { ··· 10048 10057 sha512 = "un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="; 10049 10058 }; 10050 10059 }; 10051 - "terser-5.16.8" = { 10060 + "terser-5.17.1" = { 10052 10061 name = "terser"; 10053 10062 packageName = "terser"; 10054 - version = "5.16.8"; 10063 + version = "5.17.1"; 10055 10064 src = fetchurl { 10056 - url = "https://registry.npmjs.org/terser/-/terser-5.16.8.tgz"; 10057 - sha512 = "QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA=="; 10065 + url = "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz"; 10066 + sha512 = "hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw=="; 10058 10067 }; 10059 10068 }; 10060 10069 "terser-webpack-plugin-5.3.7" = { ··· 10435 10444 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 10436 10445 }; 10437 10446 }; 10438 - "update-browserslist-db-1.0.10" = { 10447 + "update-browserslist-db-1.0.11" = { 10439 10448 name = "update-browserslist-db"; 10440 10449 packageName = "update-browserslist-db"; 10441 - version = "1.0.10"; 10450 + version = "1.0.11"; 10442 10451 src = fetchurl { 10443 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"; 10444 - sha512 = "OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="; 10452 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz"; 10453 + sha512 = "dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA=="; 10445 10454 }; 10446 10455 }; 10447 10456 "uri-js-4.4.1" = { ··· 10615 10624 sha512 = "qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="; 10616 10625 }; 10617 10626 }; 10618 - "webpack-5.77.0" = { 10627 + "webpack-5.81.0" = { 10619 10628 name = "webpack"; 10620 10629 packageName = "webpack"; 10621 - version = "5.77.0"; 10630 + version = "5.81.0"; 10622 10631 src = fetchurl { 10623 - url = "https://registry.npmjs.org/webpack/-/webpack-5.77.0.tgz"; 10624 - sha512 = "sbGNjBr5Ya5ss91yzjeJTLKyfiwo5C628AFjEa6WSXcZa4E+F57om3Cc8xLb1Jh0b243AWuSYRf3dn7HVeFQ9Q=="; 10632 + url = "https://registry.npmjs.org/webpack/-/webpack-5.81.0.tgz"; 10633 + sha512 = "AAjaJ9S4hYCVODKLQTgG5p5e11hiMawBwV2v8MYLE0C/6UAGLuAF4n1qa9GOwdxnicaP+5k6M5HrLmD4+gIB8Q=="; 10625 10634 }; 10626 10635 }; 10627 10636 "webpack-dev-middleware-5.3.3" = { ··· 10633 10642 sha512 = "hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA=="; 10634 10643 }; 10635 10644 }; 10636 - "webpack-dev-server-4.13.2" = { 10645 + "webpack-dev-server-4.13.3" = { 10637 10646 name = "webpack-dev-server"; 10638 10647 packageName = "webpack-dev-server"; 10639 - version = "4.13.2"; 10648 + version = "4.13.3"; 10640 10649 src = fetchurl { 10641 - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz"; 10642 - sha512 = "5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw=="; 10650 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.3.tgz"; 10651 + sha512 = "KqqzrzMRSRy5ePz10VhjyL27K2dxqwXQLP5rAKwRJBPUahe7Z2bBWzHw37jeb8GCPKxZRO79ZdQUAPesMh/Nug=="; 10643 10652 }; 10644 10653 }; 10645 10654 "webpack-manifest-plugin-4.1.1" = { ··· 11056 11065 sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; 11057 11066 }; 11058 11067 }; 11068 + "yaml-2.2.2" = { 11069 + name = "yaml"; 11070 + packageName = "yaml"; 11071 + version = "2.2.2"; 11072 + src = fetchurl { 11073 + url = "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz"; 11074 + sha512 = "CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA=="; 11075 + }; 11076 + }; 11059 11077 "yargs-16.2.0" = { 11060 11078 name = "yargs"; 11061 11079 packageName = "yargs"; ··· 11090 11108 version = "1.0.0"; 11091 11109 src = ./.; 11092 11110 dependencies = [ 11093 - sources."@ampproject/remapping-2.2.0" 11111 + sources."@alloc/quick-lru-5.2.0" 11112 + sources."@ampproject/remapping-2.2.1" 11094 11113 sources."@apideck/better-ajv-errors-0.3.6" 11095 11114 sources."@babel/code-frame-7.21.4" 11096 11115 sources."@babel/compat-data-7.21.4" ··· 11105 11124 sources."semver-6.3.0" 11106 11125 ]; 11107 11126 }) 11108 - (sources."@babel/generator-7.21.4" // { 11109 - dependencies = [ 11110 - sources."@jridgewell/gen-mapping-0.3.2" 11111 - ]; 11112 - }) 11127 + sources."@babel/generator-7.21.4" 11113 11128 sources."@babel/helper-annotate-as-pure-7.18.6" 11114 11129 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 11115 11130 (sources."@babel/helper-compilation-targets-7.21.4" // { ··· 11259 11274 sources."@csstools/postcss-unset-value-1.0.2" 11260 11275 sources."@csstools/selector-specificity-2.2.0" 11261 11276 sources."@emotion/babel-plugin-11.10.6" 11262 - sources."@emotion/cache-11.10.5" 11277 + sources."@emotion/cache-11.10.7" 11263 11278 sources."@emotion/hash-0.9.0" 11264 11279 sources."@emotion/is-prop-valid-1.2.0" 11265 11280 sources."@emotion/memoize-0.8.0" ··· 11280 11295 sources."js-yaml-4.1.0" 11281 11296 ]; 11282 11297 }) 11283 - sources."@eslint/js-8.37.0" 11298 + sources."@eslint/js-8.39.0" 11284 11299 sources."@humanwhocodes/config-array-0.11.8" 11285 11300 sources."@humanwhocodes/module-importer-1.0.1" 11286 11301 sources."@humanwhocodes/object-schema-1.2.1" ··· 11358 11373 sources."supports-color-7.2.0" 11359 11374 ]; 11360 11375 }) 11361 - sources."@jridgewell/gen-mapping-0.1.1" 11376 + sources."@jridgewell/gen-mapping-0.3.3" 11362 11377 sources."@jridgewell/resolve-uri-3.1.0" 11363 11378 sources."@jridgewell/set-array-1.1.2" 11364 - (sources."@jridgewell/source-map-0.3.2" // { 11379 + sources."@jridgewell/source-map-0.3.3" 11380 + sources."@jridgewell/sourcemap-codec-1.4.15" 11381 + (sources."@jridgewell/trace-mapping-0.3.18" // { 11365 11382 dependencies = [ 11366 - sources."@jridgewell/gen-mapping-0.3.2" 11383 + sources."@jridgewell/sourcemap-codec-1.4.14" 11367 11384 ]; 11368 11385 }) 11369 - sources."@jridgewell/sourcemap-codec-1.4.14" 11370 - sources."@jridgewell/trace-mapping-0.3.17" 11371 11386 sources."@leichtgewicht/ip-codec-2.0.4" 11372 - (sources."@mui/base-5.0.0-alpha.123" // { 11387 + (sources."@mui/base-5.0.0-alpha.127" // { 11373 11388 dependencies = [ 11374 11389 sources."react-is-18.2.0" 11375 11390 ]; 11376 11391 }) 11377 - sources."@mui/core-downloads-tracker-5.11.15" 11378 - sources."@mui/icons-material-5.11.11" 11379 - (sources."@mui/material-5.11.15" // { 11392 + sources."@mui/core-downloads-tracker-5.12.2" 11393 + sources."@mui/icons-material-5.11.16" 11394 + (sources."@mui/material-5.12.2" // { 11380 11395 dependencies = [ 11381 11396 sources."react-is-18.2.0" 11382 11397 ]; 11383 11398 }) 11384 - sources."@mui/private-theming-5.11.13" 11385 - sources."@mui/styled-engine-5.11.11" 11386 - sources."@mui/system-5.11.15" 11387 - sources."@mui/types-7.2.3" 11388 - (sources."@mui/utils-5.11.13" // { 11399 + sources."@mui/private-theming-5.12.0" 11400 + sources."@mui/styled-engine-5.12.0" 11401 + sources."@mui/system-5.12.1" 11402 + sources."@mui/types-7.2.4" 11403 + (sources."@mui/utils-5.12.0" // { 11389 11404 dependencies = [ 11390 11405 sources."react-is-18.2.0" 11391 11406 ]; ··· 11438 11453 sources."@types/babel__core-7.20.0" 11439 11454 sources."@types/babel__generator-7.6.4" 11440 11455 sources."@types/babel__template-7.4.1" 11441 - sources."@types/babel__traverse-7.18.3" 11456 + sources."@types/babel__traverse-7.18.5" 11442 11457 sources."@types/body-parser-1.19.2" 11443 11458 sources."@types/bonjour-3.5.10" 11444 11459 sources."@types/connect-3.4.35" 11445 11460 sources."@types/connect-history-api-fallback-1.3.5" 11446 11461 sources."@types/eslint-8.37.0" 11447 11462 sources."@types/eslint-scope-3.7.4" 11448 - sources."@types/estree-1.0.0" 11463 + sources."@types/estree-1.0.1" 11449 11464 sources."@types/express-4.17.17" 11450 - sources."@types/express-serve-static-core-4.17.33" 11465 + sources."@types/express-serve-static-core-4.17.34" 11451 11466 sources."@types/graceful-fs-4.1.6" 11452 11467 sources."@types/html-minifier-terser-6.1.0" 11453 - sources."@types/http-proxy-1.17.10" 11468 + sources."@types/http-proxy-1.17.11" 11454 11469 sources."@types/istanbul-lib-coverage-2.0.4" 11455 11470 sources."@types/istanbul-lib-report-3.0.0" 11456 11471 sources."@types/istanbul-reports-3.0.1" 11457 11472 sources."@types/json-schema-7.0.11" 11458 11473 sources."@types/json5-0.0.29" 11459 - sources."@types/mime-3.0.1" 11460 - sources."@types/node-18.15.11" 11474 + sources."@types/mime-1.3.2" 11475 + sources."@types/node-18.16.1" 11461 11476 sources."@types/parse-json-4.0.0" 11462 11477 sources."@types/prettier-2.7.2" 11463 11478 sources."@types/prop-types-15.7.5" 11464 11479 sources."@types/q-1.5.5" 11465 11480 sources."@types/qs-6.9.7" 11466 11481 sources."@types/range-parser-1.2.4" 11467 - sources."@types/react-18.0.32" 11468 - sources."@types/react-is-17.0.3" 11482 + sources."@types/react-17.0.58" 11483 + sources."@types/react-is-17.0.4" 11469 11484 sources."@types/react-transition-group-4.4.5" 11470 11485 sources."@types/resolve-1.17.1" 11471 11486 sources."@types/retry-0.12.0" 11472 11487 sources."@types/scheduler-0.16.3" 11473 11488 sources."@types/semver-7.3.13" 11489 + sources."@types/send-0.17.1" 11474 11490 sources."@types/serve-index-1.9.1" 11475 11491 sources."@types/serve-static-1.15.1" 11476 11492 sources."@types/sockjs-0.3.33" ··· 11479 11495 sources."@types/ws-8.5.4" 11480 11496 sources."@types/yargs-16.0.5" 11481 11497 sources."@types/yargs-parser-21.0.0" 11482 - sources."@typescript-eslint/eslint-plugin-5.57.0" 11483 - sources."@typescript-eslint/experimental-utils-5.57.0" 11484 - sources."@typescript-eslint/parser-5.57.0" 11485 - sources."@typescript-eslint/scope-manager-5.57.0" 11486 - sources."@typescript-eslint/type-utils-5.57.0" 11487 - sources."@typescript-eslint/types-5.57.0" 11488 - sources."@typescript-eslint/typescript-estree-5.57.0" 11489 - (sources."@typescript-eslint/utils-5.57.0" // { 11498 + sources."@typescript-eslint/eslint-plugin-5.59.1" 11499 + sources."@typescript-eslint/experimental-utils-5.59.1" 11500 + sources."@typescript-eslint/parser-5.59.1" 11501 + sources."@typescript-eslint/scope-manager-5.59.1" 11502 + sources."@typescript-eslint/type-utils-5.59.1" 11503 + sources."@typescript-eslint/types-5.59.1" 11504 + sources."@typescript-eslint/typescript-estree-5.59.1" 11505 + (sources."@typescript-eslint/utils-5.59.1" // { 11490 11506 dependencies = [ 11491 11507 sources."eslint-scope-5.1.1" 11492 11508 sources."estraverse-4.3.0" 11493 11509 ]; 11494 11510 }) 11495 - sources."@typescript-eslint/visitor-keys-5.57.0" 11496 - sources."@webassemblyjs/ast-1.11.1" 11497 - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 11498 - sources."@webassemblyjs/helper-api-error-1.11.1" 11499 - sources."@webassemblyjs/helper-buffer-1.11.1" 11500 - sources."@webassemblyjs/helper-numbers-1.11.1" 11501 - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" 11502 - sources."@webassemblyjs/helper-wasm-section-1.11.1" 11503 - sources."@webassemblyjs/ieee754-1.11.1" 11504 - sources."@webassemblyjs/leb128-1.11.1" 11505 - sources."@webassemblyjs/utf8-1.11.1" 11506 - sources."@webassemblyjs/wasm-edit-1.11.1" 11507 - sources."@webassemblyjs/wasm-gen-1.11.1" 11508 - sources."@webassemblyjs/wasm-opt-1.11.1" 11509 - sources."@webassemblyjs/wasm-parser-1.11.1" 11510 - sources."@webassemblyjs/wast-printer-1.11.1" 11511 + sources."@typescript-eslint/visitor-keys-5.59.1" 11512 + sources."@webassemblyjs/ast-1.11.5" 11513 + sources."@webassemblyjs/floating-point-hex-parser-1.11.5" 11514 + sources."@webassemblyjs/helper-api-error-1.11.5" 11515 + sources."@webassemblyjs/helper-buffer-1.11.5" 11516 + sources."@webassemblyjs/helper-numbers-1.11.5" 11517 + sources."@webassemblyjs/helper-wasm-bytecode-1.11.5" 11518 + sources."@webassemblyjs/helper-wasm-section-1.11.5" 11519 + sources."@webassemblyjs/ieee754-1.11.5" 11520 + sources."@webassemblyjs/leb128-1.11.5" 11521 + sources."@webassemblyjs/utf8-1.11.5" 11522 + sources."@webassemblyjs/wasm-edit-1.11.5" 11523 + sources."@webassemblyjs/wasm-gen-1.11.5" 11524 + sources."@webassemblyjs/wasm-opt-1.11.5" 11525 + sources."@webassemblyjs/wasm-parser-1.11.5" 11526 + sources."@webassemblyjs/wast-printer-1.11.5" 11511 11527 sources."@xtuc/ieee754-1.2.0" 11512 11528 sources."@xtuc/long-4.2.2" 11513 11529 sources."abab-2.0.6" ··· 11560 11576 sources."at-least-node-1.0.0" 11561 11577 sources."autoprefixer-10.4.14" 11562 11578 sources."available-typed-arrays-1.0.5" 11563 - sources."axe-core-4.6.3" 11579 + sources."axe-core-4.7.0" 11564 11580 sources."axobject-query-3.1.1" 11565 11581 (sources."babel-jest-27.5.1" // { 11566 11582 dependencies = [ ··· 11625 11641 sources."camelcase-6.3.0" 11626 11642 sources."camelcase-css-2.0.1" 11627 11643 sources."caniuse-api-3.0.0" 11628 - sources."caniuse-lite-1.0.30001473" 11644 + sources."caniuse-lite-1.0.30001481" 11629 11645 sources."case-sensitive-paths-webpack-plugin-2.4.0" 11630 11646 (sources."chalk-2.4.2" // { 11631 11647 dependencies = [ ··· 11655 11671 sources."color-convert-1.9.3" 11656 11672 sources."color-name-1.1.3" 11657 11673 sources."colord-2.9.3" 11658 - sources."colorette-2.0.19" 11674 + sources."colorette-2.0.20" 11659 11675 sources."combined-stream-1.0.8" 11660 11676 sources."commander-7.2.0" 11661 11677 sources."common-path-prefix-3.0.0" ··· 11677 11693 sources."convert-source-map-1.9.0" 11678 11694 sources."cookie-0.5.0" 11679 11695 sources."cookie-signature-1.0.6" 11680 - sources."core-js-3.29.1" 11681 - sources."core-js-compat-3.29.1" 11682 - sources."core-js-pure-3.29.1" 11696 + sources."core-js-3.30.1" 11697 + sources."core-js-compat-3.30.1" 11698 + sources."core-js-pure-3.30.1" 11683 11699 sources."core-util-is-1.0.3" 11684 11700 sources."cosmiconfig-7.1.0" 11685 11701 sources."cross-fetch-3.1.5" ··· 11694 11710 sources."ajv-8.12.0" 11695 11711 sources."ajv-keywords-5.1.0" 11696 11712 sources."json-schema-traverse-1.0.0" 11697 - sources."schema-utils-4.0.0" 11713 + sources."schema-utils-4.0.1" 11698 11714 sources."source-map-0.6.1" 11699 11715 ]; 11700 11716 }) ··· 11707 11723 ]; 11708 11724 }) 11709 11725 sources."css-what-3.4.2" 11710 - sources."cssdb-7.5.3" 11726 + sources."cssdb-7.5.4" 11711 11727 sources."cssesc-3.0.0" 11712 11728 sources."cssnano-5.1.15" 11713 11729 sources."cssnano-preset-default-5.2.14" ··· 11761 11777 sources."dir-glob-3.0.1" 11762 11778 sources."dlv-1.1.3" 11763 11779 sources."dns-equal-1.0.0" 11764 - sources."dns-packet-5.5.0" 11780 + sources."dns-packet-5.6.0" 11765 11781 sources."doctrine-3.0.0" 11766 11782 sources."dom-converter-0.2.0" 11767 11783 sources."dom-helpers-5.2.1" ··· 11792 11808 sources."duplexer-0.1.2" 11793 11809 sources."ee-first-1.1.1" 11794 11810 sources."ejs-3.1.9" 11795 - sources."electron-to-chromium-1.4.348" 11811 + sources."electron-to-chromium-1.4.373" 11796 11812 sources."emittery-0.8.1" 11797 11813 sources."emoji-regex-9.2.2" 11798 11814 sources."emojis-list-3.0.0" 11799 11815 sources."encodeurl-1.0.2" 11800 - sources."enhanced-resolve-5.12.0" 11816 + sources."enhanced-resolve-5.13.0" 11801 11817 sources."entities-2.2.0" 11802 11818 sources."error-ex-1.3.2" 11803 11819 sources."error-stack-parser-2.1.4" 11804 11820 sources."es-abstract-1.21.2" 11805 11821 sources."es-array-method-boxes-properly-1.0.0" 11806 11822 sources."es-get-iterator-1.1.3" 11807 - sources."es-module-lexer-0.9.3" 11823 + sources."es-module-lexer-1.2.1" 11808 11824 sources."es-set-tostringtag-2.0.1" 11809 11825 sources."es-shim-unscopables-1.0.0" 11810 11826 sources."es-to-primitive-1.2.1" ··· 11820 11836 sources."type-check-0.3.2" 11821 11837 ]; 11822 11838 }) 11823 - (sources."eslint-8.37.0" // { 11839 + (sources."eslint-8.39.0" // { 11824 11840 dependencies = [ 11825 11841 sources."ansi-styles-4.3.0" 11826 11842 sources."argparse-2.0.1" ··· 11839 11855 sources."debug-3.2.7" 11840 11856 ]; 11841 11857 }) 11842 - (sources."eslint-module-utils-2.7.4" // { 11858 + (sources."eslint-module-utils-2.8.0" // { 11843 11859 dependencies = [ 11844 11860 sources."debug-3.2.7" 11845 11861 ]; ··· 11866 11882 ]; 11867 11883 }) 11868 11884 sources."eslint-plugin-react-hooks-4.6.0" 11869 - sources."eslint-plugin-testing-library-5.10.2" 11870 - sources."eslint-scope-7.1.1" 11885 + sources."eslint-plugin-testing-library-5.10.3" 11886 + sources."eslint-scope-7.2.0" 11871 11887 sources."eslint-visitor-keys-3.4.0" 11872 11888 (sources."eslint-webpack-plugin-3.2.0" // { 11873 11889 dependencies = [ ··· 11876 11892 sources."has-flag-4.0.0" 11877 11893 sources."jest-worker-28.1.3" 11878 11894 sources."json-schema-traverse-1.0.0" 11879 - sources."schema-utils-4.0.0" 11895 + sources."schema-utils-4.0.1" 11880 11896 sources."supports-color-8.1.1" 11881 11897 ]; 11882 11898 }) ··· 12010 12026 ]; 12011 12027 }) 12012 12028 sources."html-parse-stringify-3.0.1" 12013 - sources."html-webpack-plugin-5.5.0" 12029 + sources."html-webpack-plugin-5.5.1" 12014 12030 (sources."htmlparser2-6.1.0" // { 12015 12031 dependencies = [ 12016 12032 sources."dom-serializer-1.4.1" ··· 12051 12067 sources."is-binary-path-2.1.0" 12052 12068 sources."is-boolean-object-1.1.2" 12053 12069 sources."is-callable-1.2.7" 12054 - sources."is-core-module-2.11.0" 12070 + sources."is-core-module-2.12.0" 12055 12071 sources."is-date-object-1.0.5" 12056 12072 sources."is-docker-2.2.1" 12057 12073 sources."is-extglob-2.1.1" ··· 12380 12396 sources."makeerror-1.0.12" 12381 12397 sources."mdn-data-2.0.4" 12382 12398 sources."media-typer-0.3.0" 12383 - sources."memfs-3.4.13" 12399 + sources."memfs-3.5.1" 12384 12400 sources."merge-descriptors-1.0.1" 12385 12401 sources."merge-stream-2.0.0" 12386 12402 sources."merge2-1.4.1" ··· 12395 12411 sources."ajv-8.12.0" 12396 12412 sources."ajv-keywords-5.1.0" 12397 12413 sources."json-schema-traverse-1.0.0" 12398 - sources."schema-utils-4.0.0" 12414 + sources."schema-utils-4.0.1" 12399 12415 ]; 12400 12416 }) 12401 12417 sources."minimalistic-assert-1.0.1" ··· 12424 12440 sources."normalize-url-6.1.0" 12425 12441 sources."npm-run-path-4.0.1" 12426 12442 sources."nth-check-1.0.2" 12427 - sources."nwsapi-2.2.2" 12443 + sources."nwsapi-2.2.4" 12428 12444 sources."object-assign-4.1.1" 12429 12445 sources."object-hash-3.0.0" 12430 12446 sources."object-inspect-1.12.3" ··· 12433 12449 sources."object.assign-4.1.4" 12434 12450 sources."object.entries-1.1.6" 12435 12451 sources."object.fromentries-2.0.6" 12436 - sources."object.getownpropertydescriptors-2.1.5" 12452 + sources."object.getownpropertydescriptors-2.1.6" 12437 12453 sources."object.hasown-1.1.2" 12438 12454 sources."object.values-1.1.6" 12439 12455 sources."obuf-1.1.2" ··· 12489 12505 sources."path-exists-3.0.0" 12490 12506 ]; 12491 12507 }) 12492 - sources."postcss-8.4.21" 12508 + sources."postcss-8.4.23" 12493 12509 sources."postcss-attribute-case-insensitive-5.0.2" 12494 12510 sources."postcss-browser-comments-4.0.0" 12495 12511 sources."postcss-calc-8.2.4" ··· 12515 12531 sources."postcss-font-variant-5.0.0" 12516 12532 sources."postcss-gap-properties-3.0.5" 12517 12533 sources."postcss-image-set-function-4.0.7" 12518 - sources."postcss-import-14.1.0" 12534 + sources."postcss-import-15.1.0" 12519 12535 sources."postcss-initial-4.0.1" 12520 12536 sources."postcss-js-4.0.1" 12521 12537 sources."postcss-lab-function-4.2.1" 12522 - sources."postcss-load-config-3.1.4" 12538 + (sources."postcss-load-config-4.0.1" // { 12539 + dependencies = [ 12540 + sources."yaml-2.2.2" 12541 + ]; 12542 + }) 12523 12543 sources."postcss-loader-6.2.1" 12524 12544 sources."postcss-logical-5.0.4" 12525 12545 sources."postcss-media-minmax-5.0.0" ··· 12533 12553 sources."postcss-modules-local-by-default-4.0.0" 12534 12554 sources."postcss-modules-scope-3.0.0" 12535 12555 sources."postcss-modules-values-4.0.0" 12536 - sources."postcss-nested-6.0.0" 12556 + sources."postcss-nested-6.0.1" 12537 12557 sources."postcss-nesting-10.2.0" 12538 12558 sources."postcss-normalize-10.0.1" 12539 12559 sources."postcss-normalize-charset-5.1.0" ··· 12597 12617 sources."qs-6.11.0" 12598 12618 sources."querystringify-2.2.0" 12599 12619 sources."queue-microtask-1.2.3" 12600 - sources."quick-lru-5.1.1" 12601 12620 sources."raf-3.4.1" 12602 12621 sources."randombytes-2.1.0" 12603 12622 sources."range-parser-1.2.1" ··· 12638 12657 sources."regenerator-runtime-0.13.11" 12639 12658 sources."regenerator-transform-0.15.1" 12640 12659 sources."regex-parser-2.2.11" 12641 - sources."regexp.prototype.flags-1.4.3" 12660 + sources."regexp.prototype.flags-1.5.0" 12642 12661 sources."regexpu-core-5.3.2" 12643 12662 (sources."regjsparser-0.9.1" // { 12644 12663 dependencies = [ ··· 12659 12678 sources."require-directory-2.1.1" 12660 12679 sources."require-from-string-2.0.2" 12661 12680 sources."requires-port-1.0.0" 12662 - sources."resolve-1.22.1" 12681 + sources."resolve-1.22.3" 12663 12682 (sources."resolve-cwd-3.0.0" // { 12664 12683 dependencies = [ 12665 12684 sources."resolve-from-5.0.0" ··· 12687 12706 ]; 12688 12707 }) 12689 12708 sources."run-parallel-1.2.0" 12709 + sources."safe-array-concat-1.0.0" 12690 12710 sources."safe-buffer-5.2.1" 12691 12711 sources."safe-regex-test-1.0.0" 12692 12712 sources."safer-buffer-2.1.2" ··· 12695 12715 sources."sax-1.2.4" 12696 12716 sources."saxes-5.0.1" 12697 12717 sources."scheduler-0.23.0" 12698 - sources."schema-utils-3.1.1" 12718 + sources."schema-utils-3.1.2" 12699 12719 sources."select-hose-2.0.0" 12700 12720 sources."selfsigned-2.1.1" 12701 - (sources."semver-7.3.8" // { 12721 + (sources."semver-7.5.0" // { 12702 12722 dependencies = [ 12703 12723 sources."lru-cache-6.0.0" 12704 12724 sources."yallist-4.0.0" ··· 12730 12750 sources."setprototypeof-1.2.0" 12731 12751 sources."shebang-command-2.0.0" 12732 12752 sources."shebang-regex-3.0.0" 12733 - sources."shell-quote-1.8.0" 12753 + sources."shell-quote-1.8.1" 12734 12754 sources."side-channel-1.0.4" 12735 12755 sources."signal-exit-3.0.7" 12736 12756 sources."sisteransi-1.0.5" ··· 12794 12814 sources."style-loader-3.3.2" 12795 12815 sources."stylehacks-5.1.1" 12796 12816 sources."stylis-4.1.3" 12797 - (sources."sucrase-3.31.0" // { 12817 + (sources."sucrase-3.32.0" // { 12798 12818 dependencies = [ 12799 12819 sources."commander-4.1.1" 12800 12820 sources."glob-7.1.6" ··· 12811 12831 sources."svg-parser-2.0.4" 12812 12832 sources."svgo-1.3.2" 12813 12833 sources."symbol-tree-3.2.4" 12814 - (sources."tailwindcss-3.3.1" // { 12815 - dependencies = [ 12816 - sources."color-name-1.1.4" 12817 - ]; 12818 - }) 12834 + sources."tailwindcss-3.3.2" 12819 12835 sources."tapable-2.2.1" 12820 12836 sources."temp-dir-2.0.0" 12821 12837 (sources."tempy-0.6.0" // { ··· 12824 12840 ]; 12825 12841 }) 12826 12842 sources."terminal-link-2.1.1" 12827 - (sources."terser-5.16.8" // { 12843 + (sources."terser-5.17.1" // { 12828 12844 dependencies = [ 12829 12845 sources."commander-2.20.3" 12830 12846 ]; ··· 12872 12888 sources."unpipe-1.0.0" 12873 12889 sources."unquote-1.1.1" 12874 12890 sources."upath-1.2.0" 12875 - sources."update-browserslist-db-1.0.10" 12891 + sources."update-browserslist-db-1.0.11" 12876 12892 sources."uri-js-4.4.1" 12877 12893 sources."url-parse-1.5.10" 12878 12894 sources."util-deprecate-1.0.2" ··· 12893 12909 sources."watchpack-2.4.0" 12894 12910 sources."wbuf-1.7.3" 12895 12911 sources."webidl-conversions-3.0.1" 12896 - (sources."webpack-5.77.0" // { 12912 + (sources."webpack-5.81.0" // { 12897 12913 dependencies = [ 12898 - sources."@types/estree-0.0.51" 12899 12914 sources."eslint-scope-5.1.1" 12900 12915 sources."estraverse-4.3.0" 12901 12916 ]; ··· 12905 12920 sources."ajv-8.12.0" 12906 12921 sources."ajv-keywords-5.1.0" 12907 12922 sources."json-schema-traverse-1.0.0" 12908 - sources."schema-utils-4.0.0" 12923 + sources."schema-utils-4.0.1" 12909 12924 ]; 12910 12925 }) 12911 - (sources."webpack-dev-server-4.13.2" // { 12926 + (sources."webpack-dev-server-4.13.3" // { 12912 12927 dependencies = [ 12913 12928 sources."ajv-8.12.0" 12914 12929 sources."ajv-keywords-5.1.0" 12915 12930 sources."json-schema-traverse-1.0.0" 12916 - sources."schema-utils-4.0.0" 12931 + sources."schema-utils-4.0.1" 12917 12932 sources."ws-8.13.0" 12918 12933 ]; 12919 12934 })
+19 -1
pkgs/tools/misc/screen/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, ncurses, libxcrypt, utmp, pam ? null }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , fetchpatch 5 + , autoreconfHook 6 + , ncurses 7 + , libxcrypt 8 + , utmp 9 + , pam ? null 10 + }: 2 11 3 12 stdenv.mkDerivation rec { 4 13 pname = "screen"; ··· 8 17 url = "mirror://gnu/screen/${pname}-${version}.tar.gz"; 9 18 sha256 = "1x1hqy4h47i7hk85f779lkwkm7gkq8h8mxwd0znkh5adpf0m4czr"; 10 19 }; 20 + 21 + patches = [ 22 + (fetchpatch { 23 + name = "CVE-2023-24626.patch"; 24 + url = "https://git.savannah.gnu.org/cgit/screen.git/patch/?id=e9ad41bfedb4537a6f0de20f00b27c7739f168f7"; 25 + stripLen = 1; 26 + sha256 = "sha256-NV6Uh4h9AK7kQMHqbxeuhjFEvwQH7OWdu7h8pZCGFog="; 27 + }) 28 + ]; 11 29 12 30 configureFlags= [ 13 31 "--enable-telnet"
+3 -3
pkgs/tools/networking/godns/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "godns"; 9 - version = "2.9.6"; 9 + version = "2.9.7"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "TimothyYe"; 13 13 repo = "godns"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-PrjkZxMgj2+jttkXVkn1JoLKGfBOMMbTLimngUDEuX8="; 15 + hash = "sha256-In0v3WLxUofVaJ78HNDYWKJCjxk9q1GhDg6X2aGg91I="; 16 16 }; 17 17 18 - vendorHash = "sha256-y2DRQ4nryUCrGUHmEuJSrYDjJ3X4sAcyWOp6ZKcoSSo="; 18 + vendorHash = "sha256-iAU62/0MjzxwuMvIobhIZEqDJUpRqwEabnazH7jBRTE="; 19 19 20 20 # Some tests require internet access, broken in sandbox 21 21 doCheck = false;
+24
pkgs/tools/networking/wireguard-vanity-address/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, Security }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "wireguard-vanity-address"; 5 + version = "0.4.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "warner"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-SjzcVIQ9HwhP6Y/uCwXGSdZgrYcUQ9kE/Bow8pyOKNo="; 12 + }; 13 + 14 + buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 15 + 16 + cargoHash = "sha256-0bkyopkssqH0vfaWkFC3dV2o7Q3EuDEOM8JvRB9ekLU="; 17 + 18 + meta = with lib; { 19 + description = "Find Wireguard VPN keypairs with a specific readable string"; 20 + homepage = "https://github.com/warner/wireguard-vanity-address"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ bcc32 ]; 23 + }; 24 + }
+40
pkgs/tools/nix/nix-melt/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , installShellFiles 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "nix-melt"; 9 + version = "0.1.2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "nix-community"; 13 + repo = "nix-melt"; 14 + rev = "v${version}"; 15 + hash = "sha256-5V9sPbBb9t4B6yiLrYF+hx6YokGDH6+UsVQBhgqxMbY="; 16 + }; 17 + 18 + cargoHash = "sha256-yBoaLqynvYC9ebC0zjd2FmSSd53xzn4ralihtCFubAw="; 19 + 20 + nativeBuildInputs = [ 21 + installShellFiles 22 + ]; 23 + 24 + env = { 25 + GEN_ARTIFACTS = "artifacts"; 26 + }; 27 + 28 + postInstall = '' 29 + installManPage artifacts/nix-melt.1 30 + installShellCompletion artifacts/nix-melt.{bash,fish} --zsh artifacts/_nix-melt 31 + ''; 32 + 33 + meta = with lib; { 34 + description = "A ranger-like flake.lock viewer"; 35 + homepage = "https://github.com/nix-community/nix-melt"; 36 + changelog = "https://github.com/nix-community/nix-melt/blob/${src.rev}/CHANGELOG.md"; 37 + license = licenses.mpl20; 38 + maintainers = with maintainers; [ figsoda ]; 39 + }; 40 + }
+2 -2
pkgs/tools/security/buttercup-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "buttercup-desktop"; 5 - version = "2.18.2"; 5 + version = "2.19.0"; 6 6 src = fetchurl { 7 7 url = "https://github.com/buttercup/buttercup-desktop/releases/download/v${version}/Buttercup-linux-x86_64.AppImage"; 8 - sha256 = "sha256-1WLhT94FNZ7be58uov/0vtvB7ET/WNY/tPSIuaW5zfc="; 8 + sha256 = "sha256-0CoSgZvRYIGD8Jgk8FNZ7EesOpK5ccHe0LIbZnYyYJ0="; 9 9 }; 10 10 appimageContents = appimageTools.extractType2 { inherit pname src version; }; 11 11
+40
pkgs/tools/security/smbmap/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , python3 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "smbmap"; 8 + version = "unstable-2023-03-29"; 9 + format = "setuptools"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "ShawnDEvans"; 13 + repo = "smbmap"; 14 + rev = "ce60773320e11b2ecd1ce1b5ab2a62d43d4a4423"; 15 + hash = "sha256-4DdiICH3B7x8Wr5CcqiuhCHPv6W/5bT5MGdXkyE0OKA="; 16 + }; 17 + 18 + propagatedBuildInputs = with python3.pkgs; [ 19 + impacket 20 + pyasn1 21 + pycrypto 22 + configparser 23 + termcolor 24 + ]; 25 + 26 + # Project has no tests 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ 30 + "smbmap" 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "SMB enumeration tool"; 35 + homepage = "https://github.com/ShawnDEvans/smbmap"; 36 + changelog = "https://github.com/ShawnDEvans/smbmap/releases/tag/v${version}"; 37 + license = licenses.gpl3Only; 38 + maintainers = with maintainers; [ fab ]; 39 + }; 40 + }
+2 -2
pkgs/tools/text/languagetool/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "LanguageTool"; 5 - version = "5.9"; 5 + version = "6.1"; 6 6 7 7 src = fetchzip { 8 8 url = "https://www.languagetool.org/download/${pname}-${version}.zip"; 9 - sha256 = "sha256-x4xGgYeMi7KbD2WGHOd/ixmZ+5EY5g6CLd7/CBYldNQ="; 9 + sha256 = "sha256-4icKkcTKwaD3C8doxwdhsro+YIB6MCUj6POjRhg2YJM="; 10 10 }; 11 11 nativeBuildInputs = [ makeWrapper ]; 12 12 buildInputs = [ jre ];
+10
pkgs/top-level/all-packages.nix
··· 543 543 544 544 expressvpn = callPackage ../applications/networking/expressvpn { }; 545 545 546 + figma-agent = callPackage ../applications/graphics/figma-agent { }; 547 + 546 548 figma-linux = callPackage ../applications/graphics/figma-linux { }; 547 549 548 550 firefly-desktop = callPackage ../applications/misc/firefly-desktop { }; ··· 1637 1639 simple-dlna-browser = callPackage ../tools/networking/simple-dlna-browser { }; 1638 1640 1639 1641 sorted-grep = callPackage ../tools/text/sorted-grep { }; 1642 + 1643 + smbmap = callPackage ../tools/security/smbmap { }; 1640 1644 1641 1645 smbscan = callPackage ../tools/security/smbscan { }; 1642 1646 ··· 13493 13497 wire = callPackage ../development/tools/wire { }; 13494 13498 13495 13499 wireguard-tools = callPackage ../tools/networking/wireguard-tools { }; 13500 + 13501 + wireguard-vanity-address = callPackage ../tools/networking/wireguard-vanity-address { 13502 + inherit (darwin.apple_sdk.frameworks) Security; 13503 + }; 13496 13504 13497 13505 wireproxy = callPackage ../tools/networking/wireproxy { }; 13498 13506 ··· 38860 38868 nix-index = callPackage ../tools/package-management/nix-index/wrapper.nix { }; 38861 38869 38862 38870 nix-linter = haskell.lib.compose.justStaticExecutables (haskellPackages.nix-linter); 38871 + 38872 + nix-melt = callPackage ../tools/nix/nix-melt { }; 38863 38873 38864 38874 nixos-option = callPackage ../tools/nix/nixos-option { nix = nixVersions.nix_2_3; }; 38865 38875
+28
pkgs/top-level/perl-packages.nix
··· 1623 1623 1624 1624 BioExtAlign = callPackage ../development/perl-modules/Bio-Ext-Align { }; 1625 1625 1626 + BioDBHTS = buildPerlModule { 1627 + pname = "Bio-DB-HTS"; 1628 + version = "3.01"; 1629 + src = fetchurl { 1630 + url = "mirror://cpan/authors/id/A/AV/AVULLO/Bio-DB-HTS-3.01.tar.gz"; 1631 + sha256 = "12a6bc1f579513cac8b9167cce4e363655cc8eba26b7d9fe1170dfe95e044f42"; 1632 + }; 1633 + 1634 + buildInputs = [ pkgs.htslib pkgs.zlib ]; 1635 + 1636 + propagatedBuildInputs = [ BioPerl ]; 1637 + htslibStore = toString pkgs.htslib; 1638 + 1639 + postPatch = '' 1640 + # -Wl,-rpath not recognized : replaced by -rpath= 1641 + sed -i 's/Wl,-rpath,/rpath=/' Build.PL 1642 + ''; 1643 + 1644 + preBuild = '' 1645 + export HTSLIB_DIR=${pkgs.htslib} 1646 + ''; 1647 + 1648 + meta = { 1649 + description = "Perl interface to HTS library for DNA sequencing"; 1650 + license = lib.licenses.asl20; 1651 + }; 1652 + }; 1653 + 1626 1654 BioPerl = buildPerlPackage { 1627 1655 pname = "BioPerl"; 1628 1656 version = "1.7.8";