lol

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