lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
24182c89 39ea98a3

+3667 -3622
+8
maintainers/maintainer-list.nix
··· 1401 1401 githubId = 37193992; 1402 1402 name = "Arthur Teisseire"; 1403 1403 }; 1404 + arti5an = { 1405 + email = "artis4n@outlook.com"; 1406 + github = "arti5an"; 1407 + githubId = 14922630; 1408 + name = "Richard Smith"; 1409 + }; 1404 1410 artturin = { 1405 1411 email = "artturin@artturin.com"; 1406 1412 matrix = "@artturin:matrix.org"; ··· 15645 15651 spalf = { 15646 15652 email = "tom@tombarrett.xyz"; 15647 15653 name = "tom barrett"; 15654 + github = "70m6"; 15655 + githubId = 105207964; 15648 15656 }; 15649 15657 spease = { 15650 15658 email = "peasteven@gmail.com";
+4 -4
nixos/doc/manual/installation/installing.chapter.md
··· 249 249 which will be used by the boot partition. 250 250 251 251 ```ShellSession 252 - # parted /dev/sda -- mkpart primary 512MB -8GB 252 + # parted /dev/sda -- mkpart root ext4 512MB -8GB 253 253 ``` 254 254 255 255 3. Next, add a *swap* partition. The size required will vary according 256 256 to needs, here a 8GB one is created. 257 257 258 258 ```ShellSession 259 - # parted /dev/sda -- mkpart primary linux-swap -8GB 100% 259 + # parted /dev/sda -- mkpart swap linux-swap -8GB 100% 260 260 ``` 261 261 262 262 ::: {.note} ··· 550 550 ### Example partition schemes for NixOS on `/dev/sda` (UEFI) 551 551 ```ShellSession 552 552 # parted /dev/sda -- mklabel gpt 553 - # parted /dev/sda -- mkpart primary 512MB -8GB 554 - # parted /dev/sda -- mkpart primary linux-swap -8GB 100% 553 + # parted /dev/sda -- mkpart root ext4 512MB -8GB 554 + # parted /dev/sda -- mkpart swap linux-swap -8GB 100% 555 555 # parted /dev/sda -- mkpart ESP fat32 1MB 512MB 556 556 # parted /dev/sda -- set 3 esp on 557 557 ```
+1 -1
nixos/modules/services/monitoring/osquery.nix
··· 21 21 osqueryi = pkgs.runCommand "osqueryi" { nativeBuildInputs = [ pkgs.makeWrapper ]; } '' 22 22 mkdir -p $out/bin 23 23 makeWrapper ${pkgs.osquery}/bin/osqueryi $out/bin/osqueryi \ 24 - --add-flags "--flagfile ${flagfile}" 24 + --add-flags "--flagfile ${flagfile} --disable-database" 25 25 ''; 26 26 in 27 27 {
+56 -9
nixos/modules/services/networking/mosquitto.nix
··· 42 42 }; 43 43 44 44 passwordFile = mkOption { 45 - type = uniq (nullOr types.path); 45 + type = uniq (nullOr path); 46 46 example = "/path/to/file"; 47 47 default = null; 48 48 description = lib.mdDoc '' 49 49 Specifies the path to a file containing the 50 50 clear text password for the MQTT user. 51 + The file is securely passed to mosquitto by 52 + leveraging systemd credentials. No special 53 + permissions need to be set on this file. 51 54 ''; 52 55 }; 53 56 ··· 64 67 }; 65 68 66 69 hashedPasswordFile = mkOption { 67 - type = uniq (nullOr types.path); 70 + type = uniq (nullOr path); 68 71 example = "/path/to/file"; 69 72 default = null; 70 73 description = mdDoc '' ··· 73 76 To generate hashed password install the `mosquitto` 74 77 package and use `mosquitto_passwd`, then remove the 75 78 `username:` prefix from the generated file. 79 + The file is securely passed to mosquitto by 80 + leveraging systemd credentials. No special 81 + permissions need to be set on this file. 76 82 ''; 77 83 }; 78 84 ··· 102 108 message = "Cannot set more than one password option for user ${n} in ${prefix}"; 103 109 }) users; 104 110 105 - makePasswordFile = users: path: 111 + listenerScope = index: "listener-${toString index}"; 112 + userScope = prefix: index: "${prefix}-user-${toString index}"; 113 + credentialID = prefix: credential: "${prefix}-${credential}"; 114 + 115 + toScopedUsers = listenerScope: users: pipe users [ 116 + attrNames 117 + (imap0 (index: user: nameValuePair user 118 + (users.${user} // { scope = userScope listenerScope index; }) 119 + )) 120 + listToAttrs 121 + ]; 122 + 123 + userCredentials = user: credentials: pipe credentials [ 124 + (filter (credential: user.${credential} != null)) 125 + (map (credential: "${credentialID user.scope credential}:${user.${credential}}")) 126 + ]; 127 + usersCredentials = listenerScope: users: credentials: pipe users [ 128 + (toScopedUsers listenerScope) 129 + (mapAttrsToList (_: user: userCredentials user credentials)) 130 + concatLists 131 + ]; 132 + systemdCredentials = listeners: listenerCredentials: pipe listeners [ 133 + (imap0 (index: listener: listenerCredentials (listenerScope index) listener)) 134 + concatLists 135 + ]; 136 + 137 + makePasswordFile = listenerScope: users: path: 106 138 let 107 - makeLines = store: file: 139 + makeLines = store: file: let 140 + scopedUsers = toScopedUsers listenerScope users; 141 + in 108 142 mapAttrsToList 109 - (n: u: "addLine ${escapeShellArg n} ${escapeShellArg u.${store}}") 110 - (filterAttrs (_: u: u.${store} != null) users) 143 + (name: user: ''addLine ${escapeShellArg name} "''$(systemd-creds cat ${credentialID user.scope store})"'') 144 + (filterAttrs (_: user: user.${store} != null) scopedUsers) 111 145 ++ mapAttrsToList 112 - (n: u: "addFile ${escapeShellArg n} ${escapeShellArg "${u.${file}}"}") 113 - (filterAttrs (_: u: u.${file} != null) users); 146 + (name: user: ''addFile ${escapeShellArg name} "''${CREDENTIALS_DIRECTORY}/${credentialID user.scope file}"'') 147 + (filterAttrs (_: user: user.${file} != null) scopedUsers); 114 148 plainLines = makeLines "password" "passwordFile"; 115 149 hashedLines = makeLines "hashedPassword" "hashedPasswordFile"; 116 150 in ··· 581 615 ExecStart = "${cfg.package}/bin/mosquitto -c ${configFile}"; 582 616 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 583 617 618 + # Credentials 619 + SetCredential = let 620 + listenerCredentials = listenerScope: listener: 621 + usersCredentials listenerScope listener.users [ "password" "hashedPassword" ]; 622 + in 623 + systemdCredentials cfg.listeners listenerCredentials; 624 + 625 + LoadCredential = let 626 + listenerCredentials = listenerScope: listener: 627 + usersCredentials listenerScope listener.users [ "passwordFile" "hashedPasswordFile" ]; 628 + in 629 + systemdCredentials cfg.listeners listenerCredentials; 630 + 584 631 # Hardening 585 632 CapabilityBoundingSet = ""; 586 633 DevicePolicy = "closed"; ··· 653 700 concatStringsSep 654 701 "\n" 655 702 (imap0 656 - (idx: listener: makePasswordFile listener.users "${cfg.dataDir}/passwd-${toString idx}") 703 + (idx: listener: makePasswordFile (listenerScope idx) listener.users "${cfg.dataDir}/passwd-${toString idx}") 657 704 cfg.listeners); 658 705 }; 659 706
+2
nixos/modules/services/networking/networkmanager.nix
··· 461 461 "d /var/lib/NetworkManager-fortisslvpn 0700 root root -" 462 462 463 463 "d /var/lib/misc 0755 root root -" # for dnsmasq.leases 464 + # ppp isn't able to mkdir that directory at runtime 465 + "d /run/pppd/lock 0700 root root -" 464 466 ]; 465 467 466 468 systemd.services.NetworkManager = {
+11 -1
nixos/modules/virtualisation/docker.nix
··· 158 158 Docker package to be used in the module. 159 159 ''; 160 160 }; 161 + 162 + extraPackages = mkOption { 163 + type = types.listOf types.package; 164 + default = [ ]; 165 + example = literalExpression "with pkgs; [ criu ]"; 166 + description = lib.mdDoc '' 167 + Extra packages to add to PATH for the docker daemon process. 168 + ''; 169 + }; 161 170 }; 162 171 163 172 ###### implementation ··· 194 203 }; 195 204 196 205 path = [ pkgs.kmod ] ++ optional (cfg.storageDriver == "zfs") pkgs.zfs 197 - ++ optional cfg.enableNvidia pkgs.nvidia-docker; 206 + ++ optional cfg.enableNvidia pkgs.nvidia-docker 207 + ++ cfg.extraPackages; 198 208 }; 199 209 200 210 systemd.sockets.docker = {
+2 -2
pkgs/applications/editors/netbeans/default.nix
··· 3 3 }: 4 4 5 5 let 6 - version = "16"; 6 + version = "18"; 7 7 desktopItem = makeDesktopItem { 8 8 name = "netbeans"; 9 9 exec = "netbeans"; ··· 19 19 inherit version; 20 20 src = fetchurl { 21 21 url = "mirror://apache/netbeans/netbeans/${version}/netbeans-${version}-bin.zip"; 22 - hash = "sha512-k+Zj6TKW0tOSYvM6V1okF4Qz62gZMETC6XG98W23Vtz3+vdiaddd8BC2DBg7p9Z1CofRq8sbwtpeTJM3FaXv0g=="; 22 + hash = "sha256-CTWOW1vd200oZZYqDRT4wqr4v5I3AAgEcqA/qi9Ief8="; 23 23 }; 24 24 25 25 buildCommand = ''
+3 -3
pkgs/applications/emulators/ryujinx/default.nix
··· 28 28 29 29 buildDotnetModule rec { 30 30 pname = "ryujinx"; 31 - version = "1.1.960"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 31 + version = "1.1.968"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "Ryujinx"; 35 35 repo = "Ryujinx"; 36 - rev = "ac2444f908bee5b5c1a13fe64e997315cea4b23c"; 37 - sha256 = "0nv55x775lzbqa724ba2bpbkk6r7jbrgxgbir5bhyj0yz5ckl4v5"; 36 + rev = "487261592eb9e9c31cacd08860f8894027bb1a07"; 37 + sha256 = "002qgnh7xb9i9yqm4a3m9m7sbx1iz7ng8k5nnanlq897djs3hy0g"; 38 38 }; 39 39 40 40 dotnet-sdk = dotnetCorePackages.sdk_7_0;
+1 -1
pkgs/applications/emulators/ryujinx/deps.nix
··· 133 133 (fetchNuGet { pname = "Ryujinx.Graphics.Vulkan.Dependencies.MoltenVK"; version = "1.2.0"; sha256 = "1qkas5b6k022r57acpc4h981ddmzz9rwjbgbxbphrjd8h7lz1l5x"; }) 134 134 (fetchNuGet { pname = "Ryujinx.GtkSharp"; version = "3.24.24.59-ryujinx"; sha256 = "0dri508x5kca2wk0mpgwg6fxj4n5n3kplapwdmlcpfcbwbmrrnyr"; }) 135 135 (fetchNuGet { pname = "Ryujinx.PangoSharp"; version = "3.24.24.59-ryujinx"; sha256 = "1bdxm5k54zs0h6n2dh20j5jlyn0yml9r8qr828ql0k8zl7yhlq40"; }) 136 - (fetchNuGet { pname = "Ryujinx.SDL2-CS"; version = "2.26.3-build25"; sha256 = "190gqalpkhw1zb3pvb92dxrciyn1giznl125vxxx9gsy8a6cipka"; }) 136 + (fetchNuGet { pname = "Ryujinx.SDL2-CS"; version = "2.28.1-build28"; sha256 = "0kn7f6cgvb2rsybiif6g7xkw1srmfr306zpv029lvi264dv6aj6l"; }) 137 137 (fetchNuGet { pname = "shaderc.net"; version = "0.1.0"; sha256 = "0f35s9h0vj9f1rx9bssj66hibc3j9bzrb4wgb5q2jwkf5xncxbpq"; }) 138 138 (fetchNuGet { pname = "SharpZipLib"; version = "1.4.2"; sha256 = "0ijrzz2szxjmv2cipk7rpmg14dfaigdkg7xabjvb38ih56m9a27y"; }) 139 139 (fetchNuGet { pname = "ShimSkiaSharp"; version = "0.5.18"; sha256 = "1i97f2zbsm8vhcbcfj6g4ml6g261gijdh7s3rmvwvxgfha6qyvkg"; })
+2
pkgs/applications/graphics/hello-wayland/default.nix
··· 14 14 sha256 = "NMQE2zU858b6OZhdS2oZnGvLK+eb7yU0nFaMAcpNw04="; 15 15 }; 16 16 17 + separateDebugInfo = true; 18 + 17 19 depsBuildBuild = [ pkg-config ]; 18 20 nativeBuildInputs = [ imagemagick pkg-config wayland-scanner ]; 19 21 buildInputs = [ wayland wayland-protocols ];
+3 -3
pkgs/applications/networking/avalanchego/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "avalanchego"; 11 - version = "1.10.4"; 11 + version = "1.10.5"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ava-labs"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-aeO1rjKYoO6KF+oe0FKIa8D3j6G01uyC79OvUg9Qpfk="; 17 + hash = "sha256-mGie45sIvl8BjBB4JJF/U/OJ7naT6iWjo3l50qZvyaY="; 18 18 }; 19 19 20 - vendorHash = "sha256-Rh3S7Qy89ctsKlFz0lNNs8pZ5lHG5yB//DQzffD6eL8="; 20 + vendorHash = "sha256-/pNXCRHtoaJvgYsSMyYB05IKH4wG7hTlEHjuoOuifQ0="; 21 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 22 proxyVendor = true; 23 23
+3 -3
pkgs/applications/networking/cluster/weave-gitops/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "weave-gitops"; 5 - version = "0.26.0"; 5 + version = "0.27.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-sHk9ULh/792BEjPRcaeY3umx3pcLb41urrrouunm9nw="; 11 + sha256 = "sha256-q19oKawv7hLHMaPAIIdGLl+4N+HiXuIow8f3k9bTt3A="; 12 12 }; 13 13 14 14 ldflags = [ "-s" "-w" "-X github.com/weaveworks/weave-gitops/cmd/gitops/version.Version=${version}" ]; 15 15 16 - vendorSha256 = "sha256-Q9LjKgaFUx4txJlPcrG/YIbHV4hh5oWHVXIBDDgKYRg="; 16 + vendorHash = "sha256-EV8MDHiQBmp/mEB+ug/yALPhcqytp0W8V6IPP+nt9DA="; 17 17 18 18 subPackages = [ "cmd/gitops" ]; 19 19
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "flexget"; 9 - version = "3.7.10"; 9 + version = "3.7.11"; 10 10 format = "pyproject"; 11 11 12 12 # Fetch from GitHub in order to use `requirements.in` ··· 14 14 owner = "Flexget"; 15 15 repo = "Flexget"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-5wf1oQzriawhthAfHMMtZbUMvGNviBPzmnLKahRkmXQ="; 17 + hash = "sha256-rrxY5liF4IzuaZ3kjJ2zEUzK1p7jGbS/T/bM1HQGzbA="; 18 18 }; 19 19 20 20 postPatch = ''
+6 -6
pkgs/applications/networking/instant-messengers/slack/default.nix
··· 45 45 46 46 pname = "slack"; 47 47 48 - x86_64-darwin-version = "4.32.122"; 49 - x86_64-darwin-sha256 = "sha256-aKvMtuo3cNJsw42RNezmETsLAtl6G2yqYGOGp2Pt32U=3"; 48 + x86_64-darwin-version = "4.33.73"; 49 + x86_64-darwin-sha256 = "0y8plkl3pm8250xpavc91kn5b9gcdwr7bqzd3i79n48395lx11ka"; 50 50 51 - x86_64-linux-version = "4.32.122"; 52 - x86_64-linux-sha256 = "sha256-ViJHG7s7xqnatNOss5mfa7GqqlHbBrLGHBzTqqo7W/w="; 51 + x86_64-linux-version = "4.33.73"; 52 + x86_64-linux-sha256 = "007i8sjnm1ikjxvgw6nisj4nmv99bwk0r4sfpvc2j4w4wk68sx3m"; 53 53 54 - aarch64-darwin-version = "4.32.122"; 55 - aarch64-darwin-sha256 = "sha256-j3PbH/5cKN5+vUiLvXaxyPYilt6GX6FsGo+1hlJKrls="; 54 + aarch64-darwin-version = "4.33.73"; 55 + aarch64-darwin-sha256 = "15s3ss15yawb04dyzn82xmk1gs70sg2i3agsj2aw0xdx73yjl34p"; 56 56 57 57 version = { 58 58 x86_64-darwin = x86_64-darwin-version;
+6 -6
pkgs/applications/networking/instant-messengers/zoom-us/default.nix
··· 48 48 # and often with different versions. We write them on three lines 49 49 # like this (rather than using {}) so that the updater script can 50 50 # find where to edit them. 51 - versions.aarch64-darwin = "5.15.3.20121"; 52 - versions.x86_64-darwin = "5.15.3.20121"; 53 - versions.x86_64-linux = "5.15.3.4839"; 51 + versions.aarch64-darwin = "5.15.5.20753"; 52 + versions.x86_64-darwin = "5.15.5.20753"; 53 + versions.x86_64-linux = "5.15.5.5603"; 54 54 55 55 srcs = { 56 56 aarch64-darwin = fetchurl { 57 57 url = "https://zoom.us/client/${versions.aarch64-darwin}/zoomusInstallerFull.pkg?archType=arm64"; 58 58 name = "zoomusInstallerFull.pkg"; 59 - hash = "sha256-FEgLtKhjODZGuwzOWUK//TilXM3Gvka7B5E48eyrBuw="; 59 + hash = "sha256-yDdmr0lHmhsJpTpvw4Qr4ZUk7SfEZw/53bVL3yV+a/Q="; 60 60 }; 61 61 x86_64-darwin = fetchurl { 62 62 url = "https://zoom.us/client/${versions.x86_64-darwin}/zoomusInstallerFull.pkg"; 63 - hash = "sha256-q4//skfKwAuPqPxJedVACbSQQiTKmc8J24t7mCY6c/w="; 63 + hash = "sha256-qZ5jiNL7I6IHwm1bZ8rgjVwwFJKPeAViQvx+qatGPug="; 64 64 }; 65 65 x86_64-linux = fetchurl { 66 66 url = "https://zoom.us/client/${versions.x86_64-linux}/zoom_x86_64.pkg.tar.xz"; 67 - hash = "sha256-4r1jayWHg+5Oerksj7DSc5xV15l7miA0a+CgPDUkpa0="; 67 + hash = "sha256-JIS+jxBiW/ek47iz+yCcmoCZ8+UBzEXMC1Yd7Px0ofg="; 68 68 }; 69 69 }; 70 70
+39
pkgs/applications/networking/localproxy/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , openssl 6 + , protobuf3_19 7 + , catch2 8 + , boost181 9 + , icu 10 + }: 11 + let 12 + boost = boost181.override { enableStatic = true; }; 13 + in 14 + stdenv.mkDerivation (finalAttrs: { 15 + pname = "localproxy"; 16 + version = "3.1.0"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "aws-samples"; 20 + repo = "aws-iot-securetunneling-localproxy"; 21 + rev = "v${finalAttrs.version}"; 22 + hash = "sha256-ec72bvBkRBj4qlTNfzNPeQt02OfOPA8y2PoejHpP9cY="; 23 + }; 24 + 25 + nativeBuildInputs = [ cmake ]; 26 + 27 + buildInputs = [ openssl protobuf3_19 catch2 boost icu ]; 28 + 29 + # causes redefinition of _FORTIFY_SOURCE 30 + hardeningDisable = [ "fortify3" ]; 31 + 32 + meta = with lib; { 33 + description = "AWS IoT Secure Tunneling Local Proxy Reference Implementation C++"; 34 + homepage = "https://github.com/aws-samples/aws-iot-securetunneling-localproxy"; 35 + license = licenses.asl20; 36 + maintainers = with maintainers; [spalf]; 37 + platforms = platforms.unix; 38 + }; 39 + })
+12 -13
pkgs/applications/networking/newsreaders/pan/default.nix
··· 1 1 { spellChecking ? true 2 2 , lib 3 3 , stdenv 4 - , fetchurl 4 + , fetchFromGitLab 5 + , autoreconfHook 5 6 , pkg-config 6 7 , gtk3 7 8 , gtkspell3 8 - , gmime2 9 + , gmime3 9 10 , gettext 10 11 , intltool 11 12 , itstool ··· 21 22 22 23 stdenv.mkDerivation rec { 23 24 pname = "pan"; 24 - version = "0.146"; 25 + version = "0.154"; 25 26 26 - src = fetchurl { 27 - url = "https://pan.rebelbase.com/download/releases/${version}/source/pan-${version}.tar.bz2"; 28 - sha256 = "17agd27sn4a7nahvkpg0w39kv74njgdrrygs74bbvpaj8rk2hb55"; 27 + src = fetchFromGitLab { 28 + domain = "gitlab.gnome.org"; 29 + owner = "GNOME"; 30 + repo = pname; 31 + rev = "v${version}"; 32 + hash = "sha256-o+JFUraSoQ0HDmldHvTX+X7rl2L4n4lJmI4UFZrsfkQ="; 29 33 }; 30 34 31 - patches = [ 32 - # Take <glib.h>, <gmime.h>, "gtk-compat.h" out of extern "C" 33 - ./move-out-of-extern-c.diff 34 - ]; 35 - 36 - nativeBuildInputs = [ pkg-config gettext intltool itstool libxml2 makeWrapper ]; 35 + nativeBuildInputs = [ autoreconfHook pkg-config gettext intltool itstool libxml2 makeWrapper ]; 37 36 38 - buildInputs = [ gtk3 gmime2 libnotify gnutls ] 37 + buildInputs = [ gtk3 gmime3 libnotify gnutls ] 39 38 ++ lib.optional spellChecking gtkspell3 40 39 ++ lib.optionals gnomeSupport [ libsecret gcr ]; 41 40
-1113
pkgs/applications/networking/newsreaders/pan/move-out-of-extern-c.diff
··· 1 - diff --git a/pan/data-impl/article-filter.cc b/pan/data-impl/article-filter.cc 2 - index b06d0c2..f424738 100644 3 - --- a/pan/data-impl/article-filter.cc 4 - +++ b/pan/data-impl/article-filter.cc 5 - @@ -25,10 +25,7 @@ 6 - #include <gmime/gmime.h> 7 - 8 - //#include <glib/gprintf.h> 9 - -extern "C" 10 - -{ 11 - - #include <glib.h> 12 - -} 13 - +#include <glib.h> 14 - 15 - #include "article-filter.h" 16 - 17 - diff --git a/pan/data-impl/data-impl.cc b/pan/data-impl/data-impl.cc 18 - index 88012cc..4465966 100644 19 - --- a/pan/data-impl/data-impl.cc 20 - +++ b/pan/data-impl/data-impl.cc 21 - @@ -22,10 +22,8 @@ 22 - **************/ 23 - 24 - #include <config.h> 25 - -extern "C" { 26 - - #include <glib/gi18n.h> 27 - - #include <glib.h> // for g_build_filename 28 - -} 29 - +#include <glib/gi18n.h> 30 - +#include <glib.h> // for g_build_filename 31 - #include <pan/general/debug.h> 32 - #include <pan/general/file-util.h> 33 - #include <pan/general/log.h> 34 - diff --git a/pan/data-impl/data-io.cc b/pan/data-impl/data-io.cc 35 - index bea1a90..d938634 100644 36 - --- a/pan/data-impl/data-io.cc 37 - +++ b/pan/data-impl/data-io.cc 38 - @@ -27,9 +27,9 @@ extern "C" { 39 - #include <sys/types.h> // for chmod 40 - #include <sys/stat.h> // for chmod 41 - #include <unistd.h> 42 - - #include <glib.h> 43 - - #include <glib/gi18n.h> 44 - } 45 - +#include <glib.h> 46 - +#include <glib/gi18n.h> 47 - #include <pan/general/debug.h> 48 - #include <pan/general/file-util.h> 49 - #include <pan/general/line-reader.h> 50 - diff --git a/pan/data-impl/groups.cc b/pan/data-impl/groups.cc 51 - index 244feb9..da0183a 100644 52 - --- a/pan/data-impl/groups.cc 53 - +++ b/pan/data-impl/groups.cc 54 - @@ -29,9 +29,9 @@ 55 - #include <vector> 56 - 57 - #include <glib.h> 58 - +#include <glib/gi18n.h> 59 - extern "C" { 60 - #include <unistd.h> 61 - - #include <glib/gi18n.h> 62 - } 63 - 64 - #include <pan/general/debug.h> 65 - diff --git a/pan/data-impl/headers.cc b/pan/data-impl/headers.cc 66 - index f8c4466..16d5672 100644 67 - --- a/pan/data-impl/headers.cc 68 - +++ b/pan/data-impl/headers.cc 69 - @@ -25,10 +25,10 @@ 70 - #include <string> 71 - #include <cmath> 72 - #include <glib.h> 73 - +#include <glib/gi18n.h> 74 - extern "C" { 75 - #include <sys/types.h> // for chmod 76 - #include <sys/stat.h> // for chmod 77 - - #include <glib/gi18n.h> 78 - } 79 - #include <pan/general/debug.h> 80 - #include <pan/general/log.h> 81 - diff --git a/pan/data-impl/profiles.cc b/pan/data-impl/profiles.cc 82 - index e999fda..a6e6bb5 100644 83 - --- a/pan/data-impl/profiles.cc 84 - +++ b/pan/data-impl/profiles.cc 85 - @@ -26,9 +26,9 @@ 86 - extern "C" { 87 - #include <sys/types.h> // for chmod 88 - #include <sys/stat.h> // for chmod 89 - - #include <glib.h> 90 - - #include <glib/gi18n.h> 91 - } 92 - +#include <glib.h> 93 - +#include <glib/gi18n.h> 94 - #include <pan/general/debug.h> 95 - #include <pan/general/string-view.h> 96 - #include <pan/general/file-util.h> 97 - diff --git a/pan/data-impl/server.cc b/pan/data-impl/server.cc 98 - index 9ea55d4..b23782f 100644 99 - --- a/pan/data-impl/server.cc 100 - +++ b/pan/data-impl/server.cc 101 - @@ -25,10 +25,8 @@ 102 - #include <map> 103 - #include <set> 104 - #include <vector> 105 - -extern "C" { 106 - - #include <glib.h> // for GMarkup 107 - - #include <glib/gi18n.h> 108 - -} 109 - +#include <glib.h> // for GMarkup 110 - +#include <glib/gi18n.h> 111 - #include <pan/general/debug.h> 112 - #include <pan/general/file-util.h> 113 - #include <pan/general/log.h> 114 - diff --git a/pan/data-impl/xover.cc b/pan/data-impl/xover.cc 115 - index ff8644f..a199556 100644 116 - --- a/pan/data-impl/xover.cc 117 - +++ b/pan/data-impl/xover.cc 118 - @@ -20,10 +20,8 @@ 119 - #include <config.h> 120 - #include <cmath> 121 - #include <fstream> 122 - -extern "C" { 123 - - #include <glib/gi18n.h> 124 - - #include <gmime/gmime.h> 125 - -} 126 - +#include <glib/gi18n.h> 127 - +#include <gmime/gmime.h> 128 - #include <pan/general/debug.h> 129 - #include <pan/general/log.h> 130 - #include <pan/general/macros.h> 131 - diff --git a/pan/data/article-cache.cc b/pan/data/article-cache.cc 132 - index 1855153..30fa0f9 100644 133 - --- a/pan/data/article-cache.cc 134 - +++ b/pan/data/article-cache.cc 135 - @@ -26,11 +26,10 @@ extern "C" 136 - #include <sys/stat.h> 137 - #include <unistd.h> 138 - #include <dirent.h> 139 - - 140 - - #include <glib.h> 141 - - #include <glib/gi18n.h> 142 - - #include <gmime/gmime.h> 143 - } 144 - +#include <glib.h> 145 - +#include <gmime/gmime.h> 146 - +#include <glib/gi18n.h> 147 - 148 - #include <pan/general/debug.h> 149 - #include <pan/general/file-util.h> 150 - diff --git a/pan/data/article-cache.h b/pan/data/article-cache.h 151 - index 2ac722b..1304bfe 100644 152 - --- a/pan/data/article-cache.h 153 - +++ b/pan/data/article-cache.h 154 - @@ -22,9 +22,7 @@ 155 - 156 - #include <map> 157 - #include <vector> 158 - -extern "C" { 159 - - #include <glib.h> // for guint64 160 - -} 161 - +#include <glib.h> // for guint64 162 - #include <pan/general/string-view.h> 163 - #include <pan/general/quark.h> 164 - 165 - diff --git a/pan/data/cert-store.cc b/pan/data/cert-store.cc 166 - index 340fc8b..f6cd46e 100644 167 - --- a/pan/data/cert-store.cc 168 - +++ b/pan/data/cert-store.cc 169 - @@ -34,10 +34,8 @@ 170 - #include <iostream> 171 - #include <string> 172 - 173 - -extern "C" { 174 - #include <glib/gi18n.h> 175 - #include <glib.h> 176 - -} 177 - 178 - #include <pan/general/debug.h> 179 - #include <pan/general/e-util.h> 180 - diff --git a/pan/data/encode-cache.cc b/pan/data/encode-cache.cc 181 - index 3a82ea9..61c67a2 100644 182 - --- a/pan/data/encode-cache.cc 183 - +++ b/pan/data/encode-cache.cc 184 - @@ -28,11 +28,10 @@ extern "C" 185 - #include <sys/stat.h> 186 - #include <unistd.h> 187 - #include <dirent.h> 188 - - 189 - - #include <glib.h> 190 - - #include <glib/gi18n.h> 191 - - #include <gmime/gmime.h> 192 - } 193 - +#include <gmime/gmime.h> 194 - +#include <glib.h> 195 - +#include <glib/gi18n.h> 196 - 197 - #include <pan/general/debug.h> 198 - #include <pan/general/file-util.h> 199 - diff --git a/pan/data/encode-cache.h b/pan/data/encode-cache.h 200 - index 8bbd530..1affc0c 100644 201 - --- a/pan/data/encode-cache.h 202 - +++ b/pan/data/encode-cache.h 203 - @@ -22,9 +22,7 @@ 204 - 205 - #include <map> 206 - #include <vector> 207 - -extern "C" { 208 - - #include <glib.h> // for guint64 209 - -} 210 - +#include <glib.h> // for guint64 211 - #include <pan/general/string-view.h> 212 - #include <pan/general/quark.h> 213 - 214 - diff --git a/pan/general/e-util.cc b/pan/general/e-util.cc 215 - index af5ccd0..62879ee 100644 216 - --- a/pan/general/e-util.cc 217 - +++ b/pan/general/e-util.cc 218 - @@ -26,9 +26,9 @@ 219 - #include <ctime> 220 - extern "C" { 221 - #include <ctype.h> 222 - - #include <glib.h> 223 - - #include <glib/gi18n.h> 224 - } 225 - +#include <glib.h> 226 - +#include <glib/gi18n.h> 227 - #include "debug.h" 228 - #include "e-util.h" 229 - 230 - diff --git a/pan/general/file-util.cc b/pan/general/file-util.cc 231 - index 02e9ed1..9efa269 100644 232 - --- a/pan/general/file-util.cc 233 - +++ b/pan/general/file-util.cc 234 - @@ -27,12 +27,12 @@ extern "C" 235 - #include <unistd.h> 236 - #include <sys/stat.h> 237 - #include <sys/types.h> 238 - - #include <glib.h> 239 - - #include <glib/gi18n.h> 240 - #ifndef G_OS_WIN32 241 - #include <pwd.h> 242 - #endif 243 - } 244 - +#include <glib.h> 245 - +#include <glib/gi18n.h> 246 - 247 - #include "debug.h" 248 - #include "log.h" 249 - diff --git a/pan/general/file-util.h b/pan/general/file-util.h 250 - index c125c8d..8c67639 100644 251 - --- a/pan/general/file-util.h 252 - +++ b/pan/general/file-util.h 253 - @@ -25,9 +25,9 @@ 254 - extern "C" { 255 - #include <stddef.h> 256 - #include <stdio.h> 257 - - #include <glib.h> 258 - - #include <glib/gstdio.h> 259 - } 260 - +#include <glib.h> 261 - +#include <glib/gstdio.h> 262 - #include <pan/general/string-view.h> 263 - 264 - #define g_freopen freopen 265 - diff --git a/pan/general/line-reader.cc b/pan/general/line-reader.cc 266 - index afb9be8..6b80fc4 100644 267 - --- a/pan/general/line-reader.cc 268 - +++ b/pan/general/line-reader.cc 269 - @@ -1,9 +1,7 @@ 270 - #include <config.h> 271 - #include <cstdio> 272 - #include <cstdlib> 273 - -extern "C"{ 274 - - #include <glib/gi18n.h> 275 - -} 276 - +#include <glib/gi18n.h> 277 - #include <cerrno> 278 - #include "file-util.h" 279 - #include "line-reader.h" 280 - diff --git a/pan/general/macros.h b/pan/general/macros.h 281 - index 6dcf908..b16230f 100644 282 - --- a/pan/general/macros.h 283 - +++ b/pan/general/macros.h 284 - @@ -63,9 +63,6 @@ 285 - *** g_assert 286 - **/ 287 - 288 - -extern "C" 289 - -{ 290 - - #include <glib.h> 291 - -} 292 - +#include <glib.h> 293 - 294 - #endif 295 - diff --git a/pan/general/text-match.cc b/pan/general/text-match.cc 296 - index fcacbe2..d390de0 100644 297 - --- a/pan/general/text-match.cc 298 - +++ b/pan/general/text-match.cc 299 - @@ -20,9 +20,9 @@ 300 - #include <config.h> 301 - extern "C" { 302 - #include <ctype.h> 303 - - #include <glib.h> 304 - - #include <glib/gi18n.h> 305 - } 306 - +#include <glib.h> 307 - +#include <glib/gi18n.h> 308 - #include "debug.h" 309 - #include "log.h" 310 - #include "text-match.h" 311 - diff --git a/pan/general/utf8-utils.cc b/pan/general/utf8-utils.cc 312 - index be79a13..fea6100 100644 313 - --- a/pan/general/utf8-utils.cc 314 - +++ b/pan/general/utf8-utils.cc 315 - @@ -21,9 +21,7 @@ 316 - #include <string> 317 - #include <vector> 318 - #include <string.h> 319 - -extern "C" { 320 - #include <glib/gi18n.h> 321 - -} 322 - #include <locale.h> 323 - #include <gmime/gmime.h> 324 - #include <pan/general/debug.h> 325 - diff --git a/pan/gui/actions.cc b/pan/gui/actions.cc 326 - index 520c08b..5ec397c 100644 327 - --- a/pan/gui/actions.cc 328 - +++ b/pan/gui/actions.cc 329 - @@ -18,11 +18,9 @@ 330 - */ 331 - 332 - #include <config.h> 333 - -extern "C" { 334 - - #include <glib/gi18n.h> 335 - - #include "gtk-compat.h" 336 - -} 337 - +#include "gtk-compat.h" 338 - 339 - +#include <glib/gi18n.h> 340 - #include <pan/general/macros.h> 341 - #include <pan/general/debug.h> 342 - #include <pan/data-impl/data-impl.h> 343 - diff --git a/pan/gui/body-pane.cc b/pan/gui/body-pane.cc 344 - index 53e9124..e9841e2 100644 345 - --- a/pan/gui/body-pane.cc 346 - +++ b/pan/gui/body-pane.cc 347 - @@ -22,11 +22,9 @@ 348 - #include <cmath> 349 - #include <iostream> 350 - #include <sstream> 351 - -extern "C" { 352 - - #include <glib/gi18n.h> 353 - - #include "gtk-compat.h" 354 - - #include <gmime/gmime.h> 355 - -} 356 - +#include "gtk-compat.h" 357 - +#include <gmime/gmime.h> 358 - +#include <glib/gi18n.h> 359 - #include <gdk-pixbuf/gdk-pixbuf.h> 360 - #include <pan/general/debug.h> 361 - #include <pan/general/log.h> 362 - diff --git a/pan/gui/dl-headers-ui.cc b/pan/gui/dl-headers-ui.cc 363 - index 5841651..e9f4b2d 100644 364 - --- a/pan/gui/dl-headers-ui.cc 365 - +++ b/pan/gui/dl-headers-ui.cc 366 - @@ -18,11 +18,9 @@ 367 - */ 368 - 369 - #include <config.h> 370 - -extern "C" { 371 - - #include <glib.h> 372 - - #include <glib/gi18n.h> 373 - - #include "gtk-compat.h" 374 - -} 375 - +#include <glib.h> 376 - +#include <glib/gi18n.h> 377 - +#include "gtk-compat.h" 378 - #include <pan/general/macros.h> 379 - #include <pan/tasks/queue.h> 380 - #include <pan/tasks/task-xover.h> 381 - diff --git a/pan/gui/group-pane.cc b/pan/gui/group-pane.cc 382 - index 28ad581..3ff103e 100644 383 - --- a/pan/gui/group-pane.cc 384 - +++ b/pan/gui/group-pane.cc 385 - @@ -20,10 +20,8 @@ 386 - #include <config.h> 387 - #include <cassert> 388 - #include <deque> 389 - -extern "C" { 390 - - #include <glib/gi18n.h> 391 - - #include "gtk-compat.h" 392 - -} 393 - +#include "gtk-compat.h" 394 - +#include <glib/gi18n.h> 395 - #include <pan/general/debug.h> 396 - //#include <pan/general/gdk-threads.h> 397 - #include <pan/general/log.h> 398 - diff --git a/pan/gui/group-prefs-dialog.cc b/pan/gui/group-prefs-dialog.cc 399 - index 677b07a..0d7df8b 100644 400 - --- a/pan/gui/group-prefs-dialog.cc 401 - +++ b/pan/gui/group-prefs-dialog.cc 402 - @@ -18,14 +18,14 @@ 403 - */ 404 - 405 - #include <config.h> 406 - -extern "C" { 407 - - #include <glib/gi18n.h> 408 - - #include <glib.h> 409 - - #include "gtk-compat.h" 410 - +#include <glib/gi18n.h> 411 - +#include <glib.h> 412 - #ifdef HAVE_GTKSPELL 413 - +extern "C" { 414 - #include <enchant/enchant.h> 415 - -#endif 416 - } 417 - +#endif 418 - +#include "gtk-compat.h" 419 - #include <pan/general/debug.h> 420 - #include <pan/general/macros.h> 421 - #include <pan/data/data.h> 422 - diff --git a/pan/gui/group-prefs.cc b/pan/gui/group-prefs.cc 423 - index 3e9851b..b06a949 100644 424 - --- a/pan/gui/group-prefs.cc 425 - +++ b/pan/gui/group-prefs.cc 426 - @@ -21,8 +21,8 @@ extern "C" { 427 - #include <config.h> 428 - #include <sys/types.h> // chmod 429 - #include <sys/stat.h> // chmod 430 - - #include <glib.h> 431 - } 432 - +#include <glib.h> 433 - #include <iostream> 434 - #include <fstream> 435 - #include <pan/general/file-util.h> 436 - diff --git a/pan/gui/gui.cc b/pan/gui/gui.cc 437 - index f79aa1e..9f8787e 100644 438 - --- a/pan/gui/gui.cc 439 - +++ b/pan/gui/gui.cc 440 - @@ -25,9 +25,9 @@ 441 - extern "C" { 442 - #include <sys/types.h> // for chmod 443 - #include <sys/stat.h> // for chmod 444 - - #include <glib/gi18n.h> 445 - #include <dirent.h> 446 - } 447 - +#include <glib/gi18n.h> 448 - #include <pan/general/debug.h> 449 - #include <pan/general/e-util.h> 450 - #include <pan/general/file-util.h> 451 - diff --git a/pan/gui/header-pane.cc b/pan/gui/header-pane.cc 452 - index dc65a77..a4a9952 100644 453 - --- a/pan/gui/header-pane.cc 454 - +++ b/pan/gui/header-pane.cc 455 - @@ -19,10 +19,9 @@ 456 - 457 - extern "C" { 458 - #include <config.h> 459 - - #include <glib/gi18n.h> 460 - - #include "gtk-compat.h" 461 - - #include "gtk-compat.h" 462 - } 463 - +#include "gtk-compat.h" 464 - +#include <glib/gi18n.h> 465 - #include <cctype> 466 - #include <cmath> 467 - #include <algorithm> 468 - diff --git a/pan/gui/log-ui.cc b/pan/gui/log-ui.cc 469 - index 7b11493..b204298 100644 470 - --- a/pan/gui/log-ui.cc 471 - +++ b/pan/gui/log-ui.cc 472 - @@ -21,10 +21,8 @@ 473 - #include <ostream> 474 - #include <fstream> 475 - #include <iostream> 476 - -extern "C" { 477 - - #include <glib/gi18n.h> 478 - - #include "gtk-compat.h" 479 - -} 480 - +#include "gtk-compat.h" 481 - +#include <glib/gi18n.h> 482 - #include <pan/general/log.h> 483 - #include <pan/general/macros.h> 484 - #include <pan/general/string-view.h> 485 - diff --git a/pan/gui/pan-file-entry.cc b/pan/gui/pan-file-entry.cc 486 - index 705fc91..c67acf8 100644 487 - --- a/pan/gui/pan-file-entry.cc 488 - +++ b/pan/gui/pan-file-entry.cc 489 - @@ -19,10 +19,8 @@ 490 - 491 - #include <config.h> 492 - #include <string> 493 - -extern "C" { 494 - - #include <glib/gi18n.h> 495 - - #include "gtk-compat.h" 496 - -} 497 - +#include "gtk-compat.h" 498 - +#include <glib/gi18n.h> 499 - #include <pan/general/file-util.h> 500 - #include "pad.h" 501 - #include "pan-file-entry.h" 502 - diff --git a/pan/gui/pan.cc b/pan/gui/pan.cc 503 - index fb3a696..46c1a5d 100644 504 - --- a/pan/gui/pan.cc 505 - +++ b/pan/gui/pan.cc 506 - @@ -24,9 +24,6 @@ 507 - #include <signal.h> 508 - 509 - extern "C" { 510 - - #include <glib/gi18n.h> 511 - - #include "gtk-compat.h" 512 - - #include <gmime/gmime.h> 513 - #include <gio/gio.h> 514 - #include <sys/types.h> 515 - #include <sys/stat.h> 516 - @@ -34,6 +31,9 @@ extern "C" { 517 - #include <uulib/crc32.h> 518 - } 519 - 520 - +#include "gtk-compat.h" 521 - +#include <glib/gi18n.h> 522 - +#include <gmime/gmime.h> 523 - #ifdef G_OS_WIN32 524 - #undef _WIN32_WINNT 525 - #define _WIN32_WINNT 0x0501 526 - diff --git a/pan/gui/post-ui.cc b/pan/gui/post-ui.cc 527 - index 8769ec5..92c757d 100644 528 - --- a/pan/gui/post-ui.cc 529 - +++ b/pan/gui/post-ui.cc 530 - @@ -23,14 +23,14 @@ 531 - #include <sstream> 532 - #include <unistd.h> 533 - extern "C" { 534 - - #include <gmime/gmime.h> 535 - - #include <glib/gi18n.h> 536 - - #include "gtk-compat.h" 537 - #include <sys/time.h> 538 - #ifdef HAVE_GTKSPELL 539 - #include <gtkspell/gtkspell.h> 540 - #endif 541 - } 542 - +#include "gtk-compat.h" 543 - +#include <gmime/gmime.h> 544 - +#include <glib/gi18n.h> 545 - #include <pan/data/data.h> 546 - #include <pan/general/debug.h> 547 - #include <pan/general/file-util.h> 548 - diff --git a/pan/gui/prefs-file.cc b/pan/gui/prefs-file.cc 549 - index bde7ef3..64c540f 100644 550 - --- a/pan/gui/prefs-file.cc 551 - +++ b/pan/gui/prefs-file.cc 552 - @@ -24,8 +24,8 @@ 553 - extern "C" { 554 - #include <sys/types.h> // for chmod 555 - #include <sys/stat.h> // for chmod 556 - - #include <glib.h> 557 - } 558 - +#include <glib.h> 559 - #include <pan/general/file-util.h> 560 - #include "prefs-file.h" 561 - 562 - diff --git a/pan/gui/prefs-ui.cc b/pan/gui/prefs-ui.cc 563 - index f7dc0f0..aac9ec1 100644 564 - --- a/pan/gui/prefs-ui.cc 565 - +++ b/pan/gui/prefs-ui.cc 566 - @@ -18,10 +18,8 @@ 567 - */ 568 - 569 - #include <config.h> 570 - -extern "C" { 571 - - #include <glib/gi18n.h> 572 - - #include "gtk-compat.h" 573 - -} 574 - +#include "gtk-compat.h" 575 - +#include <glib/gi18n.h> 576 - #include <pan/general/debug.h> 577 - #include <pan/general/macros.h> 578 - #include <pan/general/file-util.h> 579 - diff --git a/pan/gui/prefs.cc b/pan/gui/prefs.cc 580 - index fdbd908..64dd8da 100644 581 - --- a/pan/gui/prefs.cc 582 - +++ b/pan/gui/prefs.cc 583 - @@ -23,10 +23,8 @@ 584 - #include <iostream> 585 - #include <sstream> 586 - #include <string> 587 - -extern "C" { 588 - - #include <glib.h> 589 - - #include <glib/gi18n.h> 590 - -} 591 - +#include <glib.h> 592 - +#include <glib/gi18n.h> 593 - #include <pan/general/debug.h> 594 - #include <pan/general/log.h> 595 - #include <pan/general/macros.h> 596 - diff --git a/pan/gui/profiles-dialog.cc b/pan/gui/profiles-dialog.cc 597 - index 26ff029..cf8bd44 100644 598 - --- a/pan/gui/profiles-dialog.cc 599 - +++ b/pan/gui/profiles-dialog.cc 600 - @@ -23,10 +23,8 @@ 601 - 602 - #include <config.h> 603 - #include <iostream> 604 - -extern "C" { 605 - - #include <glib/gi18n.h> 606 - - #include "gtk-compat.h" 607 - -} 608 - +#include "gtk-compat.h" 609 - +#include <glib/gi18n.h> 610 - #include <pan/general/debug.h> 611 - #include <pan/general/macros.h> 612 - #include <pan/usenet-utils/gnksa.h> 613 - diff --git a/pan/gui/progress-view.cc b/pan/gui/progress-view.cc 614 - index 241ad1c..43ef4f2 100644 615 - --- a/pan/gui/progress-view.cc 616 - +++ b/pan/gui/progress-view.cc 617 - @@ -18,9 +18,7 @@ 618 - */ 619 - 620 - #include <config.h> 621 - -extern "C" { 622 - - #include "gtk-compat.h" 623 - -} 624 - +#include "gtk-compat.h" 625 - #include <pan/general/string-view.h> 626 - #include <pan/usenet-utils/mime-utils.h> 627 - #include "progress-view.h" 628 - diff --git a/pan/gui/save-attach-ui.cc b/pan/gui/save-attach-ui.cc 629 - index 0b08b6f..0e86a1b 100644 630 - --- a/pan/gui/save-attach-ui.cc 631 - +++ b/pan/gui/save-attach-ui.cc 632 - @@ -18,10 +18,8 @@ 633 - */ 634 - 635 - #include <config.h> 636 - -extern "C" { 637 - - #include <glib/gi18n.h> 638 - - #include "gtk-compat.h" 639 - -} 640 - +#include "gtk-compat.h" 641 - +#include <glib/gi18n.h> 642 - #include <pan/general/debug.h> 643 - #include <pan/general/macros.h> 644 - #include <pan/icons/pan-pixbufs.h> 645 - diff --git a/pan/gui/save-ui.cc b/pan/gui/save-ui.cc 646 - index 0f034e5..1df0cfb 100644 647 - --- a/pan/gui/save-ui.cc 648 - +++ b/pan/gui/save-ui.cc 649 - @@ -18,10 +18,8 @@ 650 - */ 651 - 652 - #include <config.h> 653 - -extern "C" { 654 - - #include <glib/gi18n.h> 655 - - #include "gtk-compat.h" 656 - -} 657 - +#include "gtk-compat.h" 658 - +#include <glib/gi18n.h> 659 - #include <pan/general/debug.h> 660 - #include <pan/general/macros.h> 661 - #include <pan/icons/pan-pixbufs.h> 662 - diff --git a/pan/gui/score-add-ui.cc b/pan/gui/score-add-ui.cc 663 - index e72bdb5..3b81167 100644 664 - --- a/pan/gui/score-add-ui.cc 665 - +++ b/pan/gui/score-add-ui.cc 666 - @@ -20,9 +20,7 @@ 667 - #include <config.h> 668 - #include <cassert> 669 - #include <climits> 670 - -extern "C" { 671 - - #include <glib/gi18n.h> 672 - -} 673 - +#include <glib/gi18n.h> 674 - #include <pan/general/debug.h> 675 - #include <pan/general/text-match.h> 676 - #include "hig.h" 677 - diff --git a/pan/gui/score-view-ui.cc b/pan/gui/score-view-ui.cc 678 - index d6c81c1..1327426 100644 679 - --- a/pan/gui/score-view-ui.cc 680 - +++ b/pan/gui/score-view-ui.cc 681 - @@ -18,10 +18,8 @@ 682 - */ 683 - 684 - #include <config.h> 685 - -extern "C" { 686 - - #include <glib/gi18n.h> 687 - - #include "gtk-compat.h" 688 - -} 689 - +#include "gtk-compat.h" 690 - +#include <glib/gi18n.h> 691 - #include <pan/general/debug.h> 692 - #include "pad.h" 693 - #include "score-add-ui.h" 694 - diff --git a/pan/gui/server-ui.cc b/pan/gui/server-ui.cc 695 - index b42bc18..268114b 100644 696 - --- a/pan/gui/server-ui.cc 697 - +++ b/pan/gui/server-ui.cc 698 - @@ -21,11 +21,9 @@ 699 - #include <cstdlib> 700 - #include <cstring> 701 - #include <climits> 702 - -extern "C" { 703 - - #include <glib.h> 704 - - #include <glib/gi18n.h> 705 - - #include "gtk-compat.h" 706 - -} 707 - +#include <glib.h> 708 - +#include <glib/gi18n.h> 709 - +#include "gtk-compat.h" 710 - 711 - #include <pan/icons/pan-pixbufs.h> 712 - #include <pan/general/file-util.h> 713 - diff --git a/pan/gui/task-pane.cc b/pan/gui/task-pane.cc 714 - index 4f77922..18a8f74 100644 715 - --- a/pan/gui/task-pane.cc 716 - +++ b/pan/gui/task-pane.cc 717 - @@ -18,11 +18,9 @@ 718 - */ 719 - 720 - #include <config.h> 721 - -extern "C" { 722 - - #include <glib.h> 723 - - #include <glib/gi18n.h> 724 - - #include "gtk-compat.h" 725 - -} 726 - +#include <glib.h> 727 - +#include <glib/gi18n.h> 728 - +#include "gtk-compat.h" 729 - #include <pan/general/e-util.h> 730 - #include <pan/general/debug.h> 731 - #include <pan/general/file-util.h> 732 - diff --git a/pan/gui/url.cc b/pan/gui/url.cc 733 - index e1173ae..94ffb52 100644 734 - --- a/pan/gui/url.cc 735 - +++ b/pan/gui/url.cc 736 - @@ -20,10 +20,8 @@ 737 - #include <config.h> 738 - #include <iostream> 739 - #include <string> 740 - -extern "C" { 741 - - #include <glib.h> 742 - - #include <glib/gi18n.h> 743 - -}; 744 - +#include <glib.h> 745 - +#include <glib/gi18n.h> 746 - #include <pan/general/log.h> 747 - #include "url.h" 748 - 749 - diff --git a/pan/tasks/decoder.cc b/pan/tasks/decoder.cc 750 - index b4c21ae..f8cb6db 100644 751 - --- a/pan/tasks/decoder.cc 752 - +++ b/pan/tasks/decoder.cc 753 - @@ -28,8 +28,8 @@ 754 - extern "C" { 755 - # define PROTOTYPES 756 - # include <uulib/uudeview.h> 757 - -# include <glib/gi18n.h> 758 - }; 759 - +#include <glib/gi18n.h> 760 - #include <pan/general/worker-pool.h> 761 - #include <pan/general/debug.h> 762 - #include <pan/general/file-util.h> 763 - diff --git a/pan/tasks/encoder.cc b/pan/tasks/encoder.cc 764 - index 7960b84..5989059 100644 765 - --- a/pan/tasks/encoder.cc 766 - +++ b/pan/tasks/encoder.cc 767 - @@ -31,10 +31,10 @@ 768 - extern "C" { 769 - #define PROTOTYPES 770 - #include <uulib/uudeview.h> 771 - -#include <glib/gi18n.h> 772 - #include <sys/time.h> 773 - }; 774 - 775 - +#include <glib/gi18n.h> 776 - #include <pan/general/worker-pool.h> 777 - #include <pan/general/debug.h> 778 - #include <pan/general/file-util.h> 779 - diff --git a/pan/tasks/nntp.cc b/pan/tasks/nntp.cc 780 - index ceb1574..71c5cf1 100644 781 - --- a/pan/tasks/nntp.cc 782 - +++ b/pan/tasks/nntp.cc 783 - @@ -22,10 +22,8 @@ 784 - #include <cstdarg> 785 - #include <cstdlib> // abort, atoi, strtoul 786 - #include <cstdio> // snprintf 787 - -extern "C" { 788 - - #include <glib.h> 789 - - #include <glib/gi18n.h> 790 - -} 791 - +#include <glib.h> 792 - +#include <glib/gi18n.h> 793 - #include <pan/general/debug.h> 794 - #include <pan/general/log.h> 795 - #include <pan/general/messages.h> 796 - diff --git a/pan/tasks/nzb.cc b/pan/tasks/nzb.cc 797 - index af890e5..14df6f6 100644 798 - --- a/pan/tasks/nzb.cc 799 - +++ b/pan/tasks/nzb.cc 800 - @@ -24,9 +24,7 @@ 801 - #include <sstream> 802 - #include <string> 803 - #include <map> 804 - -extern "C" { 805 - - #include <glib.h> 806 - -} 807 - +#include <glib.h> 808 - #include <pan/general/debug.h> 809 - #include <pan/general/file-util.h> 810 - #include <pan/general/log.h> 811 - diff --git a/pan/tasks/socket-impl-gio.cc b/pan/tasks/socket-impl-gio.cc 812 - index d3339dd..7dc2ec1 100644 813 - --- a/pan/tasks/socket-impl-gio.cc 814 - +++ b/pan/tasks/socket-impl-gio.cc 815 - @@ -31,9 +31,9 @@ 816 - 817 - extern "C" { 818 - #include <unistd.h> 819 - - #include <glib/gi18n.h> 820 - } 821 - 822 - +#include <glib/gi18n.h> 823 - #include <pan/general/file-util.h> 824 - #include <pan/general/log.h> 825 - #include <pan/general/macros.h> 826 - diff --git a/pan/tasks/socket-impl-main.cc b/pan/tasks/socket-impl-main.cc 827 - index c33edfd..688183c 100644 828 - --- a/pan/tasks/socket-impl-main.cc 829 - +++ b/pan/tasks/socket-impl-main.cc 830 - @@ -30,10 +30,7 @@ 831 - //#include <glib/giochannel.h> 832 - //#include <glib/gstring.h> 833 - 834 - -extern "C" 835 - -{ 836 - - #include <glib.h> 837 - -} 838 - +#include <glib.h> 839 - 840 - #include <pan/tasks/socket.h> 841 - 842 - diff --git a/pan/tasks/socket-impl-openssl.cc b/pan/tasks/socket-impl-openssl.cc 843 - index b58e074..5b1b0b0 100644 844 - --- a/pan/tasks/socket-impl-openssl.cc 845 - +++ b/pan/tasks/socket-impl-openssl.cc 846 - @@ -34,13 +34,14 @@ 847 - 848 - extern "C" { 849 - #include <unistd.h> 850 - - #include <glib/gi18n.h> 851 - #include <errno.h> 852 - #include <fcntl.h> 853 - #include <sys/time.h> 854 - #include <sys/types.h> 855 - } 856 - 857 - +#include <glib/gi18n.h> 858 - + 859 - #include <pan/usenet-utils/ssl-utils.h> 860 - #include <pan/general/file-util.h> 861 - #include <pan/general/log.h> 862 - diff --git a/pan/tasks/socket-impl-openssl.h b/pan/tasks/socket-impl-openssl.h 863 - index e48cbae..eea41d4 100644 864 - --- a/pan/tasks/socket-impl-openssl.h 865 - +++ b/pan/tasks/socket-impl-openssl.h 866 - @@ -27,10 +27,7 @@ 867 - #include <string> 868 - //#include <glib/giochannel.h> 869 - //#include <glib/gstring.h> 870 - -extern "C" 871 - -{ 872 - - #include <glib.h> 873 - -} 874 - +#include <glib.h> 875 - 876 - #include <pan/general/debug.h> 877 - #include <pan/general/quark.h> 878 - diff --git a/pan/tasks/socket.cc b/pan/tasks/socket.cc 879 - index 78d53fb..2c7a28d 100644 880 - --- a/pan/tasks/socket.cc 881 - +++ b/pan/tasks/socket.cc 882 - @@ -21,9 +21,7 @@ 883 - #include <cstdarg> 884 - #include <ctime> 885 - #include <cmath> 886 - -extern "C" { 887 - - #include <glib.h> 888 - -} 889 - +#include <glib.h> 890 - #include <pan/general/debug.h> 891 - #include <pan/general/string-view.h> 892 - #include "socket.h" 893 - diff --git a/pan/tasks/task-article.cc b/pan/tasks/task-article.cc 894 - index 9c96b7d..1dc17ba 100644 895 - --- a/pan/tasks/task-article.cc 896 - +++ b/pan/tasks/task-article.cc 897 - @@ -24,10 +24,7 @@ 898 - #include <config.h> 899 - #include <algorithm> 900 - #include <cassert> 901 - -extern "C" 902 - -{ 903 - - #include <glib/gi18n.h> 904 - -} 905 - +#include <glib/gi18n.h> 906 - #include <pan/general/debug.h> 907 - #include <pan/general/file-util.h> 908 - #include <pan/general/utf8-utils.h> 909 - diff --git a/pan/tasks/task-groups.cc b/pan/tasks/task-groups.cc 910 - index b8618d6..9b72369 100644 911 - --- a/pan/tasks/task-groups.cc 912 - +++ b/pan/tasks/task-groups.cc 913 - @@ -20,9 +20,9 @@ 914 - #include <config.h> 915 - #include <cassert> 916 - extern "C" { 917 - - #include <glib/gi18n.h> 918 - #include <stdlib.h> 919 - } 920 - +#include <glib/gi18n.h> 921 - #include <pan/general/debug.h> 922 - #include <pan/general/macros.h> 923 - #include <pan/general/messages.h> 924 - diff --git a/pan/tasks/task-post.cc b/pan/tasks/task-post.cc 925 - index bb80fb9..4ab9c2f 100644 926 - --- a/pan/tasks/task-post.cc 927 - +++ b/pan/tasks/task-post.cc 928 - @@ -18,9 +18,7 @@ 929 - */ 930 - 931 - #include <config.h> 932 - -extern "C" { 933 - - #include <glib/gi18n.h> 934 - -} 935 - +#include <glib/gi18n.h> 936 - #include "task-post.h" 937 - #include <pan/general/debug.h> 938 - #include <pan/general/log.h> 939 - diff --git a/pan/tasks/task-upload.h b/pan/tasks/task-upload.h 940 - index 7bd4fe0..e5377c6 100644 941 - --- a/pan/tasks/task-upload.h 942 - +++ b/pan/tasks/task-upload.h 943 - @@ -37,10 +37,10 @@ 944 - extern "C" { 945 - #define PROTOTYPES 946 - #include <uulib/uudeview.h> 947 - - #include <gmime/gmime.h> 948 - - #include <glib/gi18n.h> 949 - }; 950 - 951 - +#include <gmime/gmime.h> 952 - +#include <glib/gi18n.h> 953 - #include <set> 954 - 955 - namespace pan 956 - diff --git a/pan/tasks/task-xover.cc b/pan/tasks/task-xover.cc 957 - index c3c8260..64b41a4 100644 958 - --- a/pan/tasks/task-xover.cc 959 - +++ b/pan/tasks/task-xover.cc 960 - @@ -26,10 +26,10 @@ extern "C" 961 - #define PROTOTYPES 962 - #include <stdio.h> 963 - #include <uulib/uudeview.h> 964 - -#include <glib/gi18n.h> 965 - -#include <gmime/gmime-utils.h> 966 - } 967 - 968 - +#include <gmime/gmime-utils.h> 969 - +#include <glib/gi18n.h> 970 - #include <fstream> 971 - #include <iostream> 972 - #include <pan/general/debug.h> 973 - diff --git a/pan/tasks/task-xoverinfo.cc b/pan/tasks/task-xoverinfo.cc 974 - index c598bf8..9a9e488 100644 975 - --- a/pan/tasks/task-xoverinfo.cc 976 - +++ b/pan/tasks/task-xoverinfo.cc 977 - @@ -24,10 +24,10 @@ extern "C" { 978 - #define PROTOTYPES 979 - #include <stdio.h> 980 - #include <uulib/uudeview.h> 981 - - #include <glib/gi18n.h> 982 - - #include <gmime/gmime-utils.h> 983 - #include <zlib.h> 984 - } 985 - +#include <glib/gi18n.h> 986 - +#include <gmime/gmime-utils.h> 987 - #include <fstream> 988 - #include <iostream> 989 - #include <pan/general/debug.h> 990 - diff --git a/pan/usenet-utils/filter-info.cc b/pan/usenet-utils/filter-info.cc 991 - index f464428..6b1a5c9 100644 992 - --- a/pan/usenet-utils/filter-info.cc 993 - +++ b/pan/usenet-utils/filter-info.cc 994 - @@ -18,10 +18,8 @@ 995 - */ 996 - 997 - #include <config.h> 998 - -extern "C" { 999 - - #include <glib.h> 1000 - - #include <glib/gi18n.h> 1001 - -} 1002 - +#include <glib.h> 1003 - +#include <glib/gi18n.h> 1004 - #include <pan/general/macros.h> 1005 - #include "filter-info.h" 1006 - 1007 - diff --git a/pan/usenet-utils/gnksa.cc b/pan/usenet-utils/gnksa.cc 1008 - index db1f2c4..fb888d5 100644 1009 - --- a/pan/usenet-utils/gnksa.cc 1010 - +++ b/pan/usenet-utils/gnksa.cc 1011 - @@ -37,10 +37,10 @@ extern "C" 1012 - { 1013 - #include <ctype.h> 1014 - #include <unistd.h> 1015 - - #include <glib/gi18n.h> 1016 - #include <sys/time.h> 1017 - } 1018 - 1019 - +#include <glib/gi18n.h> 1020 - #include <pan/general/debug.h> 1021 - #include <pan/general/macros.h> 1022 - #include <pan/general/log.h> 1023 - diff --git a/pan/usenet-utils/gpg.cc b/pan/usenet-utils/gpg.cc 1024 - index 4df4525..8755777 100644 1025 - --- a/pan/usenet-utils/gpg.cc 1026 - +++ b/pan/usenet-utils/gpg.cc 1027 - @@ -28,9 +28,9 @@ extern "C" { 1028 - #include <stdlib.h> 1029 - #include <unistd.h> 1030 - #include <string.h> 1031 - - #include <glib/gi18n.h> 1032 - - #include <gmime/gmime.h> 1033 - } 1034 - +#include <glib/gi18n.h> 1035 - +#include <gmime/gmime.h> 1036 - 1037 - #ifdef HAVE_GMIME_CRYPTO 1038 - 1039 - diff --git a/pan/usenet-utils/message-check.cc b/pan/usenet-utils/message-check.cc 1040 - index a511556..461ce86 100644 1041 - --- a/pan/usenet-utils/message-check.cc 1042 - +++ b/pan/usenet-utils/message-check.cc 1043 - @@ -21,9 +21,7 @@ 1044 - #include <ctype.h> 1045 - #include <string.h> 1046 - #include <glib.h> 1047 - -extern "C" { 1048 - #include <glib/gi18n.h> 1049 - -} 1050 - #include <pan/general/debug.h> 1051 - #include <pan/general/macros.h> 1052 - #include <pan/general/string-view.h> 1053 - diff --git a/pan/usenet-utils/rules-info.cc b/pan/usenet-utils/rules-info.cc 1054 - index 1c03adc..91e78be 100644 1055 - --- a/pan/usenet-utils/rules-info.cc 1056 - +++ b/pan/usenet-utils/rules-info.cc 1057 - @@ -22,10 +22,8 @@ 1058 - 1059 - 1060 - #include <config.h> 1061 - -extern "C" { 1062 - - #include <glib.h> 1063 - - #include <glib/gi18n.h> 1064 - -} 1065 - +#include <glib.h> 1066 - +#include <glib/gi18n.h> 1067 - #include <pan/general/macros.h> 1068 - #include "rules-info.h" 1069 - 1070 - diff --git a/pan/usenet-utils/scorefile.cc b/pan/usenet-utils/scorefile.cc 1071 - index 8b56a2a..4b151f0 100644 1072 - --- a/pan/usenet-utils/scorefile.cc 1073 - +++ b/pan/usenet-utils/scorefile.cc 1074 - @@ -23,9 +23,7 @@ 1075 - #include <iostream> 1076 - #include <sstream> 1077 - #include <string> 1078 - -extern "C" { 1079 - - #include <glib/gi18n.h> 1080 - -} 1081 - +#include <glib/gi18n.h> 1082 - #include <pan/general/debug.h> 1083 - #include <pan/general/log.h> 1084 - #include <pan/general/macros.h> 1085 - diff --git a/pan/usenet-utils/ssl-utils.h b/pan/usenet-utils/ssl-utils.h 1086 - index 2286250..0beb32f 100644 1087 - --- a/pan/usenet-utils/ssl-utils.h 1088 - +++ b/pan/usenet-utils/ssl-utils.h 1089 - @@ -43,9 +43,7 @@ 1090 - #include <map> 1091 - #include <sstream> 1092 - #include <iostream> 1093 - -extern "C" { 1094 - - #include <glib/gi18n.h> 1095 - -} 1096 - +#include <glib/gi18n.h> 1097 - 1098 - namespace pan 1099 - { 1100 - diff --git a/pan/usenet-utils/text-massager.cc b/pan/usenet-utils/text-massager.cc 1101 - index 4fcd8d5..15a818b 100644 1102 - --- a/pan/usenet-utils/text-massager.cc 1103 - +++ b/pan/usenet-utils/text-massager.cc 1104 - @@ -22,9 +22,7 @@ 1105 - #include <map> 1106 - #include <cstring> 1107 - #include <glib.h> 1108 - -extern "C" { 1109 - #include <glib/gi18n.h> 1110 - -} 1111 - #include "text-massager.h" 1112 - #include <pan/general/log.h> 1113 - #include <pan/general/e-util.h>
+4 -3
pkgs/applications/office/libreoffice/default.nix
··· 226 226 # in the binary causing the closure size to blow up because of many unnecessary 227 227 # dependencies to dev outputs. This behavior was patched away in nixpkgs 228 228 # (see above), make sure these don't leak again by accident. 229 - disallowedRequisites = lib.concatMap 230 - (x: lib.optional (x?dev) x.dev) 231 - buildInputs; 229 + disallowedRequisites = lib.optionals (!kdeIntegration) 230 + (lib.concatMap 231 + (x: lib.optional (x?dev) x.dev) 232 + buildInputs); 232 233 233 234 ### QT/KDE 234 235 #
+1
pkgs/applications/version-management/dvc/default.nix
··· 26 26 ]; 27 27 28 28 postPatch = '' 29 + substituteInPlace dvc/analytics.py --replace 'enabled = not os.getenv(DVC_NO_ANALYTICS)' 'enabled = False' 29 30 substituteInPlace dvc/daemon.py \ 30 31 --subst-var-by dvc "$out/bin/dcv" 31 32 '';
+2 -2
pkgs/applications/version-management/glab/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "glab"; 5 - version = "1.30.0"; 5 + version = "1.31.0"; 6 6 7 7 src = fetchFromGitLab { 8 8 owner = "gitlab-org"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - hash = "sha256-mNwjyKde9xlaGVwK7oIbPGPipxKTvLwf6uMZVjL+joc="; 11 + hash = "sha256-K7yGRuIfYEqs4ziystxLMK+dYUZoyGlBJAmx2qmY08Q="; 12 12 }; 13 13 14 14 vendorHash = "sha256-WfzN70HHLatBuV+GW2VC+5laR3rBfDOqPydyxMSmL3s=";
+2 -2
pkgs/applications/video/vokoscreen-ng/default.nix
··· 22 22 23 23 mkDerivation rec { 24 24 pname = "vokoscreen-ng"; 25 - version = "3.6.0"; 25 + version = "3.7.0"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "vkohaupt"; 29 29 repo = "vokoscreenNG"; 30 30 rev = version; 31 - sha256 = "sha256-Du/Dq7AUH5CeEKYr0kxcqguAyRVI5Ame41nU3FGvG+U="; 31 + sha256 = "sha256-epz/KoXo84zzCD1dzclRWgeQSqrgwEtaIGvrTPuN9hw="; 32 32 }; 33 33 34 34 qmakeFlags = [ "src/vokoscreenNG.pro" ];
+31
pkgs/data/icons/banana-cursor/default.nix
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + }: 6 + stdenvNoCC.mkDerivation rec { 7 + pname = "banana-cursor"; 8 + version = "1.0.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "ful1e5"; 12 + repo = "banana-cursor"; 13 + rev = "v${version}"; 14 + sha256 = "sha256-PI7381xf/GctQTnfcE0W3M3z2kqbX4VexMf17C61hT8="; 15 + }; 16 + 17 + dontBuild = true; 18 + 19 + installPhase = '' 20 + mkdir -p $out/share/icons 21 + mv themes/Banana $out/share/icons 22 + ''; 23 + 24 + meta = with lib; { 25 + homepage = "https://github.com/ful1e5/banana-cursor"; 26 + description = "The banana cursor theme"; 27 + license = licenses.gpl3; 28 + platforms = platforms.linux; 29 + maintainers = with maintainers; [ yrd ]; 30 + }; 31 + }
+1
pkgs/development/compilers/jsonnet/default.nix
··· 18 18 cmakeFlags = [ 19 19 "-DUSE_SYSTEM_GTEST=ON" 20 20 "-DBUILD_STATIC_LIBS=${if stdenv.hostPlatform.isStatic then "ON" else "OFF"}" 21 + ] ++ lib.optionals (!stdenv.isDarwin) [ 21 22 "-DBUILD_SHARED_BINARIES=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}" 22 23 ]; 23 24
+2 -2
pkgs/development/interpreters/janet/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "janet"; 5 - version = "1.28.0"; 5 + version = "1.29.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "janet-lang"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-QfW17BDP+xa+Qy9FuIioe8UY6BBGsvbSyyz6GFODg5g="; 11 + sha256 = "sha256-waBOPrcZ1mNsvb2PrivYUmbUKv1mxD/rMFOCZXslyKA="; 12 12 }; 13 13 14 14 postPatch = ''
+2 -2
pkgs/development/libraries/armadillo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "armadillo"; 5 - version = "12.4.1"; 5 + version = "12.6.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 9 - hash = "sha256-gSdjXSffuZb6tJXeb/nOhL2bXgTePAA3/CrG3pbc85c="; 9 + hash = "sha256-tBAqOEeRrxbZ5fuzBvEf41ar+8oKfXynq7yaipRmECo="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/avro-c/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "avro-c"; 5 - version = "1.11.1"; 5 + version = "1.11.2"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz"; 9 - sha256 = "sha256-EliMTjED5/RKHgWrWD8d0Era9qEKov1z4cz1kEVTX5I="; 9 + sha256 = "sha256-nx+ZqXsmcS0tQ/5+ck8Z19vdXO81R4uuRqGSDfIEV/U="; 10 10 }; 11 11 12 12 postPatch = ''
+20 -16
pkgs/development/lisp-modules/packages.nix
··· 296 296 297 297 nclasses = build-asdf-system { 298 298 pname = "nclasses"; 299 - version = "0.5.0"; 299 + version = "0.6.0"; 300 300 src = pkgs.fetchFromGitHub { 301 301 owner = "atlas-engineer"; 302 302 repo = "nclasses"; 303 - rev = "0.5.0"; 304 - sha256 = "sha256-UcavZ0fCA2hkVU/CqUZfyCqJ8gXKPpXTCP0WLUIF1Ss="; 303 + rev = "0.6.0"; 304 + sha256 = "sha256-JupP+TIxavUoyOPnp57FqpEjWfgKspdFoSRnV2rk5U4="; 305 305 }; 306 306 lispLibs = [ self.nasdf super.moptilities ]; 307 307 }; ··· 330 330 331 331 nhooks = build-asdf-system { 332 332 pname = "nhooks"; 333 - version = "20230214-git"; 334 - src = pkgs.fetchzip { 335 - url = "http://beta.quicklisp.org/archive/nhooks/2023-02-14/nhooks-20230214-git.tgz"; 336 - sha256 = "0rapn9v942yd2snlskvlr1g22hmyhlsrclahxjsgn4pbvqc5gwyw"; 333 + version = "1.2.1"; 334 + src = pkgs.fetchFromGitHub { 335 + owner = "atlas-engineer"; 336 + repo = "nhooks"; 337 + rev = "1.2.1"; 338 + hash = "sha256-D61QHxHTceIu5mCGKf3hy53niQMfs0idEYQK1ZYn1YM="; 337 339 }; 338 340 lispLibs = with self; [ bordeaux-threads closer-mop serapeum ]; 339 341 }; ··· 368 370 369 371 nyxt-gtk = build-asdf-system { 370 372 pname = "nyxt"; 371 - version = "3.4.0"; 373 + version = "3.5.0"; 372 374 373 375 lispLibs = (with super; [ 374 376 alexandria ··· 437 439 src = pkgs.fetchFromGitHub { 438 440 owner = "atlas-engineer"; 439 441 repo = "nyxt"; 440 - rev = "3.4.0"; 441 - sha256 = "sha256-o+GAMHKi+9q+EGY6SEZrxKCEO4IxdOiB4oPpJPGYO0w="; 442 + rev = "3.5.0"; 443 + sha256 = "sha256-/x3S4qAvvHxUxDcs6MAuZvAtqLTQdwlH7r4zFlKIjY4="; 442 444 }; 443 445 444 446 nativeBuildInputs = [ pkgs.makeWrapper ]; ··· 451 453 pkgs.gnome.adwaita-icon-theme 452 454 ]; 453 455 454 - # This is needed since asdf:make tries to write in the directory of the .asd file of the system it's compiling 455 - postConfigure = '' 456 - export CL_SOURCE_REGISTRY=$CL_SOURCE_REGISTRY:$(pwd)// 457 - ''; 456 + # This patch removes the :build-operation component from the nyxt/gi-gtk-application system. 457 + # This is done because if asdf:operate is used and the operation matches the system's :build-operation 458 + # then output translations are ignored, causing the result of the operation to be placed where 459 + # the .asd is located, which in this case is the nix store. 460 + # see: https://gitlab.common-lisp.net/asdf/asdf/-/blob/master/doc/asdf.texinfo#L2582 461 + patches = [ ./patches/nyxt-remove-build-operation.patch ]; 458 462 459 463 buildScript = pkgs.writeText "build-nyxt.lisp" '' 460 464 (load "${super.alexandria.asdfFasl}/asdf.${super.alexandria.faslExt}") 461 - ;; There's a weird error while copy/pasting in Nyxt that manifests with sb-ext:save-lisp-and-die, so we use asdf:make instead 462 - (asdf:make :nyxt/gi-gtk-application) 465 + ;; There's a weird error while copy/pasting in Nyxt that manifests with sb-ext:save-lisp-and-die, so we use asdf:operare :program-op instead 466 + (asdf:operate :program-op :nyxt/gi-gtk-application) 463 467 ''; 464 468 465 469 # TODO(kasper): use wrapGAppsHook
+12
pkgs/development/lisp-modules/patches/nyxt-remove-build-operation.patch
··· 1 + diff --git a/nyxt.asd b/nyxt.asd 2 + index ea2630ce..fdf837e4 100644 3 + --- a/nyxt.asd 4 + +++ b/nyxt.asd 5 + @@ -480,7 +480,6 @@ The renderer is configured from NYXT_RENDERER or `*nyxt-renderer*'.")) 6 + :defsystem-depends-on ("nasdf") 7 + :class :nasdf-system 8 + :depends-on (nyxt/gi-gtk) 9 + - :build-operation "program-op" 10 + :build-pathname "nyxt" 11 + :entry-point "nyxt:entry-point") 12 +
+2 -2
pkgs/development/ocaml-modules/mm/default.nix
··· 4 4 5 5 buildDunePackage rec { 6 6 pname = "mm"; 7 - version = "0.8.3"; 7 + version = "0.8.4"; 8 8 9 9 duneVersion = "3"; 10 10 ··· 14 14 owner = "savonet"; 15 15 repo = "ocaml-mm"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-pL1e7U5EtbI8bVum7mMHUD8QFMV4jc3YFjhTOvR43kg="; 17 + sha256 = "sha256-RM+vsWf2RK5dY84KcqeR/OHwO42EDycrYgfOUFpUE44="; 18 18 }; 19 19 20 20 buildInputs = [ dune-configurator ];
+2 -2
pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-containerservice"; 14 - version = "24.0.0"; 14 + version = "25.0.0"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 19 19 src = fetchPypi { 20 20 inherit pname version; 21 21 extension = "zip"; 22 - hash = "sha256-sUp3LDVsc1DmVf4HdaXGSDeEvmAE2weSHHTxL/BwRk8="; 22 + hash = "sha256-je7O92bklsbIlfsTUF2TXUqztAZxn8ep4ezCUHeLuhE="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-bigtable/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "google-cloud-bigtable"; 18 - version = "2.19.0"; 18 + version = "2.20.0"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.7"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-EebMccj9DmrPj+/GCECLkqplq3bSmRkNqlI3gYq0qzo="; 25 + hash = "sha256-PUeEqed0crzfHLAHDDu4GgktMaNt11nuovfMIkz5iwk="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/playwright/default.nix
··· 16 16 buildPythonPackage rec { 17 17 pname = "playwright"; 18 18 # run ./pkgs/development/python-modules/playwright/update.sh to update 19 - version = "1.34.0"; 19 + version = "1.36.0"; 20 20 format = "setuptools"; 21 21 disabled = pythonOlder "3.7"; 22 22 ··· 24 24 owner = "microsoft"; 25 25 repo = "playwright-python"; 26 26 rev = "v${version}"; 27 - hash = "sha256-GIxMVuSSJsRDsHDOPnJsDsTcghGYtIFpRS5u7HJd+zY="; 27 + hash = "sha256-/umpMkD+WEpBmw2cRb71PtOMd1sRNfwmURKdaRy4Qsc="; 28 28 }; 29 29 30 30 patches = [
+2 -2
pkgs/development/tools/build-managers/apache-maven/default.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation (finalAttrs: { 12 12 pname = "apache-maven"; 13 - version = "3.9.2"; 13 + version = "3.9.3"; 14 14 15 15 src = fetchurl { 16 16 url = "mirror://apache/maven/maven-3/${finalAttrs.version}/binaries/${finalAttrs.pname}-${finalAttrs.version}-bin.tar.gz"; 17 - hash = "sha256-gJ7zIgxtF5GVwGwyTLmm002Oy6Vmxc/Y64MWe8A0EX0="; 17 + hash = "sha256-4eE6wMQvO2TZAMV//GUuzvaCuCVdfTVO+7tPYlGdpPE="; 18 18 }; 19 19 20 20 sourceRoot = ".";
+3 -3
pkgs/development/tools/database/litefs/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "litefs"; 8 - version = "0.4.0"; 8 + version = "0.5.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "superfly"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-CmWtQzoY/xY/LZL2swhYtDzPvpVOvKlhUH3plDEHrGI="; 14 + sha256 = "sha256-95q10NQer/KPfBVpabupvm3wuhacnqNG3lXc1pzV3Js="; 15 15 }; 16 16 17 - vendorHash = "sha256-1I18ITgFPpUv0mPrt1biJmQV9qd9HB23zJmnDp5WzkA="; 17 + vendorHash = "sha256-4e1tAAXM2EYuqe1AbN1wng/bq1BP7MSOV6woeKjc3x4="; 18 18 19 19 subPackages = [ "cmd/litefs" ]; 20 20
+2 -2
pkgs/development/tools/esbuild/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "esbuild"; 5 - version = "0.18.16"; 5 + version = "0.18.17"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "evanw"; 9 9 repo = "esbuild"; 10 10 rev = "v${version}"; 11 - hash = "sha256-Oilz8X2tR90EfYq089NgqApoFtqNxDFs0zyxnOyS/9I="; 11 + hash = "sha256-OnAOomKVUIBTEgHywDSSx+ggqUl/vn/R0JdjOb3lUho="; 12 12 }; 13 13 14 14 vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
+3 -3
pkgs/development/tools/language-servers/ansible-language-server/default.nix
··· 6 6 7 7 buildNpmPackage rec { 8 8 pname = "ansible-language-server"; 9 - version = "1.2.0"; 9 + version = "1.2.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ansible"; 13 13 repo = pname; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-5QzwDsWjuq/gMWFQEkl4sqvsqfxTOZhaFBMhjiiOZSY="; 15 + hash = "sha256-e6cOWoryOxWnl8q62rlGmSgwLVnoxLMwNFoGlUZw2bQ="; 16 16 }; 17 17 18 - npmDepsHash = "sha256-bzffCAGn0aYVoG8IDaXd5I3x3AnGl5urX7BaBKf0tVI="; 18 + npmDepsHash = "sha256-Lzwj0/2fxa44DJBsgDPa43AbRxggqh881X/DFnlNLig="; 19 19 npmBuildScript = "compile"; 20 20 21 21 # We remove/ignore the prepare and prepack scripts because they run the
+2 -2
pkgs/development/tools/ocaml/dune/3.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "dune"; 9 - version = "3.9.1"; 9 + version = "3.9.2"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz"; 13 - hash = "sha256-8MPOSfNsczuK7nJhHxB88G3mvEI75yYqqxuz8DwFqHg="; 13 + hash = "sha256-TzrL1F09zbu9qJE3L0PwVpQra5btl37FKBupqHUTSt8="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ ocaml findlib ];
+3 -3
pkgs/development/tools/okteto/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "okteto"; 5 - version = "2.16.5"; 5 + version = "2.18.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okteto"; 9 9 repo = "okteto"; 10 10 rev = version; 11 - hash = "sha256-K3GkdcUNaBTo5sMfLONQ2o7SYUNMJ45WA5FQQ3+0+RY="; 11 + hash = "sha256-u0Ue5padTT2hPEta0ysm7W2oR1/FMFyTZd9yuciCehU="; 12 12 }; 13 13 14 - vendorHash = "sha256-aNXKRP7WFzscDPjZmDTbgKItNEQrRpsq+XiOuggx85w="; 14 + vendorHash = "sha256-ruDXfDwVmMLFsIF+YV4CryEPSeU2cEul9FfRiApII9g="; 15 15 16 16 postPatch = '' 17 17 # Disable some tests that need file system & network access.
+2 -2
pkgs/development/web/insomnia/default.nix
··· 16 16 ]; 17 17 in stdenv.mkDerivation rec { 18 18 pname = "insomnia"; 19 - version = "2023.2.2"; 19 + version = "2023.4.0"; 20 20 21 21 src = fetchurl { 22 22 url = 23 23 "https://github.com/Kong/insomnia/releases/download/core%40${version}/Insomnia.Core-${version}.deb"; 24 - sha256 = "sha256-XM7OLr5ety95jjlVqNuQp3rD9laoe1uC1HNP66HJe5M="; 24 + sha256 = "sha256-7tkd0HaJeDdCvX1t1XCHrrQ23xFrcMsy1nhJJEp6klk="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+5
pkgs/games/steam/steam.nix
··· 41 41 42 42 meta = with lib; { 43 43 description = "A digital distribution platform"; 44 + longDescription = '' 45 + Steam is a video game digital distribution service and storefront from Valve. 46 + 47 + To install on NixOS, please use the option `programs.steam.enable = true`. 48 + ''; 44 49 homepage = "https://store.steampowered.com/"; 45 50 license = licenses.unfreeRedistributable; 46 51 maintainers = with maintainers; [ jagajaga jonringer ];
+2 -2
pkgs/servers/monitoring/icinga2/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "icinga2${nameSuffix}"; 12 - version = "2.13.7"; 12 + version = "2.14.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "icinga"; 16 16 repo = "icinga2"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-YLNzXdR54DA9araC7pxZmopAZB90j9sx4gb3hOVsu0I="; 18 + sha256 = "sha256-MrNfkbbmID27Ht2sDSklrPvRvCmewOuOOBIFnHJz1zE="; 19 19 }; 20 20 21 21 patches = [
+3 -3
pkgs/servers/plex/raw.nix
··· 12 12 # server, and the FHS userenv and corresponding NixOS module should 13 13 # automatically pick up the changes. 14 14 stdenv.mkDerivation rec { 15 - version = "1.32.5.7328-2632c9d3a"; 15 + version = "1.32.5.7349-8f4248874"; 16 16 pname = "plexmediaserver"; 17 17 18 18 # Fetch the source 19 19 src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl { 20 20 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb"; 21 - sha256 = "sha256-Xyk73UW3LQqLpvtwvzpixKlrCJyOcDuq9oQkOd/jsLc="; 21 + sha256 = "18j98za5498v02asyyz2sakbl4inyxd6jsa4bjz8zm2jb1knk236"; 22 22 } else fetchurl { 23 23 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb"; 24 - sha256 = "sha256-p2BynQfAW9FDrdy+KxcnJADwwli7jm2FXGzKjTQPfOE="; 24 + sha256 = "0gm9i752fbplw1l0xlrhzpif5fjiwx471hv55bwbs3ywz3hp0jnb"; 25 25 }; 26 26 27 27 outputs = [ "out" "basedb" ];
+2 -2
pkgs/servers/redpanda/default.nix
··· 7 7 , stdenv 8 8 }: 9 9 let 10 - version = "23.1.10"; 10 + version = "23.1.13"; 11 11 src = fetchFromGitHub { 12 12 owner = "redpanda-data"; 13 13 repo = "redpanda"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-OlRuJeLvnQeseIsOREt5Frz4zzVmGKQMYIZI4LsDn2U="; 15 + sha256 = "sha256-32/mj1/PeeTrtN9COh/hTL4zFcpLnsS0R2uTGpyMUNk="; 16 16 }; 17 17 server = callPackage ./server.nix { inherit src version; }; 18 18 in
+2 -2
pkgs/shells/fish/plugins/fzf-fish.nix
··· 5 5 in 6 6 buildFishPlugin rec { 7 7 pname = "fzf.fish"; 8 - version = "9.8"; 8 + version = "9.9"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "PatrickF1"; 12 12 repo = "fzf.fish"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-xWaMd5POCDeeFTsGtHbIvsPelIp+GZPC1X1CseCo3BA="; 14 + sha256 = "sha256-Aqr6+DcOS3U1R8o9Mlbxszo5/Dy9viU4KbmRGXo95R8="; 15 15 }; 16 16 17 17 nativeCheckInputs = [ fzf fd unixtools.script procps ];
+2 -2
pkgs/shells/murex/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "murex"; 8 - version = "4.4.6110"; 8 + version = "4.4.9100"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "lmorg"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-/0g0LWzw3GbjAIFgNMNzwL8cJNMD1Jwoaaz8lE6ePgU="; 14 + sha256 = "sha256-3YXRjwDEJC4rZdvrgj8Hp8oD+4NN5LOUJmM/9bjwfQw="; 15 15 }; 16 16 17 17 vendorHash = "sha256-eQfffqNxt6es/3/H59FC5mLn1IU3oMpY/quzgNOgOaU=";
+3 -3
pkgs/shells/nushell/default.nix
··· 22 22 }: 23 23 24 24 let 25 - version = "0.82.0"; 25 + version = "0.83.0"; 26 26 in 27 27 28 28 rustPlatform.buildRustPackage { ··· 33 33 owner = "nushell"; 34 34 repo = "nushell"; 35 35 rev = version; 36 - hash = "sha256-D/R+/60Lo2rLUA/313CTJQookqSNtbD7LnVf0vBC9Qc="; 36 + hash = "sha256-+/y4gtcrn6pM+LrzRQuHPACszZpYHCXMLbPlaIi4SAY="; 37 37 }; 38 38 39 - cargoHash = "sha256-LTnBJDA2RkAP3ZCpl5enUc0PLS63EVXQyIopUwBd8OQ="; 39 + cargoHash = "sha256-amDSzsDeG4ABlFLlytcfJV0xA9Rl7Udb/nWEz64pWi0="; 40 40 41 41 nativeBuildInputs = [ pkg-config ] 42 42 ++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
+6 -3
pkgs/shells/nushell/nu_scripts/default.nix
··· 1 1 { lib 2 2 , stdenvNoCC 3 3 , fetchFromGitHub 4 + , unstableGitUpdater 4 5 }: 5 6 6 7 stdenvNoCC.mkDerivation rec { 7 8 pname = "nu_scripts"; 8 - version = "unstable-2023-04-26"; 9 + version = "unstable-2023-07-24"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "nushell"; 12 13 repo = pname; 13 - rev = "724f89c330dc5b93a2fde29f732cbd5b8d73785c"; 14 - hash = "sha256-aCLFbxVE8/hWsPNPLt2Qn8CaBkYJJLSDgpl6LYvFVYc="; 14 + rev = "e6adf4e0ae04f946fcc93a77e0992e2e00467e26"; 15 + hash = "sha256-6hQEBotZyNuBL0vAzqS1C9LLMk2RMv5ZwFCcSI3aSU8="; 15 16 }; 16 17 17 18 installPhase = '' ··· 22 23 23 24 runHook postInstall 24 25 ''; 26 + 27 + passthru.updateScript = unstableGitUpdater { }; 25 28 26 29 meta = { 27 30 description = "A place to share Nushell scripts with each other";
+2 -2
pkgs/tools/backup/partclone/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "partclone"; 7 - version = "0.3.23"; 7 + version = "0.3.24"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "Thomas-Tsai"; 11 11 repo = "partclone"; 12 12 rev = version; 13 - sha256 = "sha256-na9k26+GDdASZ37n0QtFuRDMtq338QOlXTf0X4raOJI="; 13 + sha256 = "sha256-EY5SL8/KITEoOWq2owxQjnemYNsjYqJLLlRVFdYPoVA="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ autoreconfHook pkg-config ];
+32
pkgs/tools/filesystems/mount-zip/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, fuse, boost, gcc, icu, libzip, pandoc 2 + , pkg-config }: 3 + 4 + stdenv.mkDerivation (finalAttrs: { 5 + pname = "mount-zip"; 6 + version = "1.0.8"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "google"; 10 + repo = "mount-zip"; 11 + rev = "v${finalAttrs.version}"; 12 + hash = "sha256-+slN5eedSddYKgiNLq4KZ5BXwvGQw9859sVfkcIBYeo="; 13 + }; 14 + 15 + nativeBuildInputs = [ boost gcc icu pandoc pkg-config ]; 16 + buildInputs = [ fuse libzip ]; 17 + 18 + makeFlags = [ "prefix=$(out)" ]; 19 + 20 + meta = with lib; { 21 + description = "FUSE file system for ZIP archives"; 22 + homepage = "https://github.com/google/mount-zip"; 23 + longDescription = '' 24 + mount-zip is a tool allowing to open, explore and extract ZIP archives. 25 + 26 + This project is a fork of fuse-zip. 27 + ''; 28 + license = licenses.gpl3; 29 + maintainers = with maintainers; [ arti5an ]; 30 + platforms = platforms.linux; 31 + }; 32 + })
-1
pkgs/tools/games/ps3-disc-dumper/default.nix
··· 1 1 { lib 2 2 , buildDotnetModule 3 - , dotnetCorePackages 4 3 , fetchFromGitHub 5 4 , zlib 6 5 , openssl
+1 -1
pkgs/tools/games/slipstream/default.nix
··· 1 - { lib, fetchFromGitHub, stdenv, makeWrapper, buildMaven, maven, jdk }: 1 + { lib, fetchFromGitHub, makeWrapper, maven, jdk }: 2 2 let 3 3 mavenWithJdk = maven.override { inherit jdk; }; 4 4 in
-1
pkgs/tools/games/steamtinkerlaunch/default.nix
··· 3 3 , git 4 4 , gnugrep 5 5 , fetchFromGitHub 6 - , installShellFiles 7 6 , lib 8 7 , makeWrapper 9 8 , stdenv
+1 -1
pkgs/tools/graphics/asymptote/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, fetchpatch 1 + { lib, stdenv, fetchFromGitHub 2 2 , autoreconfHook, bison, glm, flex, wrapQtAppsHook, cmake 3 3 , freeglut, ghostscriptX, imagemagick, fftw 4 4 , boehmgc, libGLU, libGL, mesa, ncurses, readline, gsl, libsigsegv
+1 -1
pkgs/tools/graphics/didder/default.nix
··· 1 - { lib, stdenv, buildGoModule, fetchFromGitHub, pandoc }: 1 + { lib, buildGoModule, fetchFromGitHub, pandoc }: 2 2 3 3 buildGoModule rec { 4 4 pname = "didder";
-1
pkgs/tools/graphics/glmark2/default.nix
··· 8 8 , wayland-scanner 9 9 , libjpeg 10 10 , libpng 11 - , xorg 12 11 , libX11 13 12 , libGL 14 13 , libdrm
-1
pkgs/tools/graphics/graphviz/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitLab 4 - , fetchpatch 5 4 , autoreconfHook 6 5 , pkg-config 7 6 , cairo
-1
pkgs/tools/graphics/realesrgan-ncnn-vulkan/default.nix
··· 3 3 , fetchzip 4 4 , fetchFromGitHub 5 5 , cmake 6 - , spirv-headers 7 6 , vulkan-headers 8 7 , vulkan-loader 9 8 , glslang
+1 -2
pkgs/tools/graphics/svg2pdf/default.nix
··· 1 1 { lib 2 - , stdenv 2 + , rustPlatform 3 3 , fetchCrate 4 - , rustPlatform 5 4 }: 6 5 7 6 rustPlatform.buildRustPackage rec {
-2
pkgs/tools/graphics/wkhtmltopdf-bin/default.nix
··· 4 4 , freetype 5 5 , zlib 6 6 , openssl 7 - , dpkg 8 7 , fetchurl 9 8 , gcc-unwrapped 10 9 , libjpeg8 11 10 , libpng 12 11 , fontconfig 13 12 , stdenv 14 - , wkhtmltopdf 15 13 , xar 16 14 , xorg 17 15 }:
+2 -2
pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix
··· 1 - { lib, clangStdenv, fetchFromGitHub, fetchurl, fetchpatch, fetchgit 1 + { lib, clangStdenv, fetchFromGitHub, fetchurl, fetchpatch 2 2 , python3Packages, ninja, pkg-config, protobuf, zinnia, qt5, fcitx5 3 3 , jsoncpp, gtest, which, gtk2, unzip, abseil-cpp, breakpad, nixosTests }: 4 4 let ··· 24 24 sha256 = "ExS0Cg3rs0I9IOVbZHLt8UEfk8/LmY9oAHPVVlYuTPw="; 25 25 }; 26 26 27 - in clangStdenv.mkDerivation rec { 27 + in clangStdenv.mkDerivation { 28 28 pname = "fcitx5-mozc"; 29 29 version = "2.26.4220.102"; 30 30
-1
pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix
··· 5 5 , xorg 6 6 , pkg-config 7 7 , wrapGAppsHook 8 - , ibus 9 8 , gtk3 10 9 , go 11 10 }:
+1 -1
pkgs/tools/inputmethods/ibus-engines/ibus-libthai/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, pkg-config, ibus, gtk3, libthai }: 1 + { lib, stdenv, fetchurl, pkg-config, ibus, gtk3, libthai }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ibus-libthai";
-1
pkgs/tools/inputmethods/input-remapper/default.nix
··· 1 1 { lib 2 - , python3 3 2 , pkgconfig 4 3 , wrapGAppsHook 5 4 , gettext
+1 -3
pkgs/tools/inputmethods/keyd/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 - , cmake 5 - , pkg-config 6 4 , systemd 7 5 , runtimeShell 8 6 , python3 ··· 43 41 }; 44 42 45 43 in 46 - stdenv.mkDerivation rec { 44 + stdenv.mkDerivation { 47 45 pname = "keyd"; 48 46 inherit version src; 49 47
-1
pkgs/tools/inputmethods/m17n-lib/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 - , fetchpatch 5 4 , m17n_db 6 5 , autoreconfHook 7 6 , pkg-config
+1 -1
pkgs/tools/inputmethods/skk/skk-dicts/default.nix
··· 1 - { lib, stdenv, fetchurl, buildPackages, iconv, skktools }: 1 + { lib, stdenv, fetchurl, iconv, skktools }: 2 2 3 3 let 4 4 # kana to kanji
+3 -3
pkgs/tools/misc/grex/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "grex"; 9 - version = "1.4.1"; 9 + version = "1.4.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pemistahl"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-of6mZ0SeiFXuXmvk64WoUNv6CLoj05K2kQpDQLMLwuY="; 15 + sha256 = "sha256-kbrBnpoVeXSgmIqElpfAnoSutYwsnFaxFJpRsJPUE8k="; 16 16 }; 17 17 18 - cargoSha256 = "sha256-BS9K/1CyNYFwC/zQXEWZcSCjQyWgLgcVNbuyez2q/Ak="; 18 + cargoSha256 = "sha256-WO8h5JUEiCpfsROQoRZj7I6em6REcJ2PfmoGN1zKRPg="; 19 19 20 20 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 21 21
+3 -3
pkgs/tools/misc/hexyl/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "hexyl"; 5 - version = "0.13.0"; 5 + version = "0.13.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sharkdp"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-c3CMtPLo5NfKfr2meccFuDpf0ffZ3uBw995TEB5FSTs="; 11 + hash = "sha256-+jmMy5Hi4EfMh/rBzBs5b+f48OZcR/Tw7IU1uTbwiCo="; 12 12 }; 13 13 14 - cargoHash = "sha256-2pIASIJ83lFfC7do/02MxY/OOMJG7McS6O8uRMy9kVs="; 14 + cargoHash = "sha256-TjJ0645TRlNzduQgxYLZWz+rLFfRv12GuwXBcmNr/h8="; 15 15 16 16 meta = with lib; { 17 17 description = "A command-line hex viewer";
+2 -2
pkgs/tools/misc/sharedown/default.nix
··· 17 17 18 18 stdenvNoCC.mkDerivation rec { 19 19 pname = "Sharedown"; 20 - version = "5.2.2"; 20 + version = "5.3.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "kylon"; 24 24 repo = pname; 25 25 rev = version; 26 - sha256 = "sha256-kdntnzGpu1NUP6rrBaH7ASwE7XT18vHcgf39bp5A4ds="; 26 + sha256 = "sha256-llQt3m/qu7v5uQIfA1yxl2JZiFafk6sPgcvrIpQy/DI="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+1133 -369
pkgs/tools/misc/sharedown/yarn.lock
··· 8 8 integrity sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ== 9 9 10 10 "@babel/code-frame@^7.0.0": 11 - version "7.18.6" 12 - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 13 - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 11 + version "7.22.5" 12 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" 13 + integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== 14 14 dependencies: 15 - "@babel/highlight" "^7.18.6" 15 + "@babel/highlight" "^7.22.5" 16 16 17 - "@babel/helper-validator-identifier@^7.18.6": 18 - version "7.19.1" 19 - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 20 - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 17 + "@babel/helper-validator-identifier@^7.22.5": 18 + version "7.22.5" 19 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" 20 + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== 21 21 22 - "@babel/highlight@^7.18.6": 23 - version "7.18.6" 24 - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 25 - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 22 + "@babel/highlight@^7.22.5": 23 + version "7.22.5" 24 + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" 25 + integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== 26 26 dependencies: 27 - "@babel/helper-validator-identifier" "^7.18.6" 27 + "@babel/helper-validator-identifier" "^7.22.5" 28 28 chalk "^2.0.0" 29 29 js-tokens "^4.0.0" 30 30 ··· 35 35 dependencies: 36 36 ajv "^6.12.0" 37 37 ajv-keywords "^3.4.1" 38 + 39 + "@electron/asar@^3.2.1": 40 + version "3.2.4" 41 + resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.4.tgz#7e8635a3c4f6d8b3f8ae6efaf5ecb9fbf3bd9864" 42 + integrity sha512-lykfY3TJRRWFeTxccEKdf1I6BLl2Plw81H0bbp4Fc5iEc67foDCa5pjJQULVgo0wF+Dli75f3xVcdb/67FFZ/g== 43 + dependencies: 44 + chromium-pickle-js "^0.2.0" 45 + commander "^5.0.0" 46 + glob "^7.1.6" 47 + minimatch "^3.0.4" 38 48 39 49 "@electron/get@^2.0.0": 40 50 version "2.0.2" ··· 51 61 optionalDependencies: 52 62 global-agent "^3.0.0" 53 63 54 - "@electron/universal@1.2.1": 55 - version "1.2.1" 56 - resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-1.2.1.tgz#3c2c4ff37063a4e9ab1e6ff57db0bc619bc82339" 57 - integrity sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ== 64 + "@electron/notarize@^1.2.3": 65 + version "1.2.4" 66 + resolved "https://registry.yarnpkg.com/@electron/notarize/-/notarize-1.2.4.tgz#a7d38773f4cad40df111a5edc64037e5d768ea1e" 67 + integrity sha512-W5GQhJEosFNafewnS28d3bpQ37/s91CDWqxVchHfmv2dQSTWpOzNlUVQwYzC1ay5bChRV/A9BTL68yj0Pa+TSg== 58 68 dependencies: 69 + debug "^4.1.1" 70 + fs-extra "^9.0.1" 71 + 72 + "@electron/osx-sign@^1.0.4": 73 + version "1.0.4" 74 + resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.0.4.tgz#8e91442846471636ca0469426a82b253b9170151" 75 + integrity sha512-xfhdEcIOfAZg7scZ9RQPya1G1lWo8/zMCwUXAulq0SfY7ONIW+b9qGyKdMyuMctNYwllrIS+vmxfijSfjeh97g== 76 + dependencies: 77 + compare-version "^0.1.2" 78 + debug "^4.3.4" 79 + fs-extra "^10.0.0" 80 + isbinaryfile "^4.0.8" 81 + minimist "^1.2.6" 82 + plist "^3.0.5" 83 + 84 + "@electron/rebuild@^3.2.13": 85 + version "3.2.13" 86 + resolved "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-3.2.13.tgz#98fbb98981b1a86162546a2ab91b2355569cca4c" 87 + integrity sha512-DH9Ol4JCnHDYVOD0fKWq+Qqbn/0WU1O6QR0mIpMXEVU4YFM4PlaqNC9K36mGShNBxxGFotZCMDrB1wl/iHM12g== 88 + dependencies: 89 + "@malept/cross-spawn-promise" "^2.0.0" 90 + chalk "^4.0.0" 91 + debug "^4.1.1" 92 + detect-libc "^2.0.1" 93 + fs-extra "^10.0.0" 94 + got "^11.7.0" 95 + node-abi "^3.0.0" 96 + node-api-version "^0.1.4" 97 + node-gyp "^9.0.0" 98 + ora "^5.1.0" 99 + semver "^7.3.5" 100 + tar "^6.0.5" 101 + yargs "^17.0.1" 102 + 103 + "@electron/universal@1.3.4": 104 + version "1.3.4" 105 + resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-1.3.4.tgz#bccd94b635d7c85eeed5eabba457eb4ed2be2777" 106 + integrity sha512-BdhBgm2ZBnYyYRLRgOjM5VHkyFItsbggJ0MHycOjKWdFGYwK97ZFXH54dTvUWEfha81vfvwr5On6XBjt99uDcg== 107 + dependencies: 108 + "@electron/asar" "^3.2.1" 59 109 "@malept/cross-spawn-promise" "^1.1.0" 60 - asar "^3.1.0" 61 110 debug "^4.3.1" 62 - dir-compare "^2.4.0" 111 + dir-compare "^3.0.0" 63 112 fs-extra "^9.0.1" 64 113 minimatch "^3.0.4" 65 114 plist "^3.0.4" 66 115 67 - "@fortawesome/fontawesome-free@6.2.1": 68 - version "6.2.1" 69 - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.2.1.tgz#344baf6ff9eaad7a73cff067d8c56bfc11ae5304" 70 - integrity sha512-viouXhegu/TjkvYQoiRZK3aax69dGXxgEjpvZW81wIJdxm5Fnvp3VVIP4VHKqX4SvFw6qpmkILkD4RJWAdrt7A== 116 + "@fortawesome/fontawesome-free@6.4.0": 117 + version "6.4.0" 118 + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.4.0.tgz#1ee0c174e472c84b23cb46c995154dc383e3b4fe" 119 + integrity sha512-0NyytTlPJwB/BF5LtRV8rrABDbe3TdTXqNB3PdZ+UUUZAEIrdOJdmABqKjt4AXwIoJNaRVVZEXxpNrqvE1GAYQ== 120 + 121 + "@isaacs/cliui@^8.0.2": 122 + version "8.0.2" 123 + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" 124 + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== 125 + dependencies: 126 + string-width "^5.1.2" 127 + string-width-cjs "npm:string-width@^4.2.0" 128 + strip-ansi "^7.0.1" 129 + strip-ansi-cjs "npm:strip-ansi@^6.0.1" 130 + wrap-ansi "^8.1.0" 131 + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" 71 132 72 133 "@malept/cross-spawn-promise@^1.1.0": 73 134 version "1.1.1" ··· 76 137 dependencies: 77 138 cross-spawn "^7.0.1" 78 139 140 + "@malept/cross-spawn-promise@^2.0.0": 141 + version "2.0.0" 142 + resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz#d0772de1aa680a0bfb9ba2f32b4c828c7857cb9d" 143 + integrity sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg== 144 + dependencies: 145 + cross-spawn "^7.0.1" 146 + 79 147 "@malept/flatpak-bundler@^0.4.0": 80 148 version "0.4.0" 81 149 resolved "https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz#e8a32c30a95d20c2b1bb635cc580981a06389858" ··· 86 154 lodash "^4.17.15" 87 155 tmp-promise "^3.0.2" 88 156 157 + "@npmcli/fs@^3.1.0": 158 + version "3.1.0" 159 + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e" 160 + integrity sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w== 161 + dependencies: 162 + semver "^7.3.5" 163 + 164 + "@pkgjs/parseargs@^0.11.0": 165 + version "0.11.0" 166 + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" 167 + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== 168 + 169 + "@puppeteer/browsers@1.4.1": 170 + version "1.4.1" 171 + resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-1.4.1.tgz#9c8ba163c3ef77ae3fc9708ad1f5787263f7290e" 172 + integrity sha512-H43VosMzywHCcYcgv0GXXopvwnV21Ud9g2aXbPlQUJj1Xcz9V0wBwHeFz6saFhx/3VKisZfI1GEKEOhQCau7Vw== 173 + dependencies: 174 + debug "4.3.4" 175 + extract-zip "2.0.1" 176 + progress "2.0.3" 177 + proxy-agent "6.2.1" 178 + tar-fs "2.1.1" 179 + unbzip2-stream "1.4.3" 180 + yargs "17.7.1" 181 + 89 182 "@sindresorhus/is@^4.0.0": 90 183 version "4.6.0" 91 184 resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" ··· 114 207 "@types/responselike" "^1.0.0" 115 208 116 209 "@types/debug@^4.1.6": 117 - version "4.1.7" 118 - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82" 119 - integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg== 210 + version "4.1.8" 211 + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz#cef723a5d0a90990313faec2d1e22aee5eecb317" 212 + integrity sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ== 120 213 dependencies: 121 214 "@types/ms" "*" 122 215 123 - "@types/fs-extra@^9.0.11": 216 + "@types/fs-extra@9.0.13", "@types/fs-extra@^9.0.11": 124 217 version "9.0.13" 125 218 resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45" 126 219 integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA== 127 220 dependencies: 128 221 "@types/node" "*" 129 222 130 - "@types/glob@^7.1.1": 131 - version "7.2.0" 132 - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" 133 - integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== 134 - dependencies: 135 - "@types/minimatch" "*" 136 - "@types/node" "*" 137 - 138 223 "@types/http-cache-semantics@*": 139 224 version "4.0.1" 140 225 resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" ··· 147 232 dependencies: 148 233 "@types/node" "*" 149 234 150 - "@types/minimatch@*": 151 - version "5.1.2" 152 - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" 153 - integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== 154 - 155 235 "@types/ms@*": 156 236 version "0.7.31" 157 237 resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" 158 238 integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== 159 239 160 240 "@types/node@*": 161 - version "18.11.19" 162 - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.19.tgz#35e26df9ec441ab99d73e99e9aca82935eea216d" 163 - integrity sha512-YUgMWAQBWLObABqrvx8qKO1enAvBUdjZOAWQ5grBAkp5LQv45jBvYKZ3oFS9iKRCQyFjqw6iuEa1vmFqtxYLZw== 241 + version "20.4.4" 242 + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.4.tgz#c79c7cc22c9d0e97a7944954c9e663bcbd92b0cb" 243 + integrity sha512-CukZhumInROvLq3+b5gLev+vgpsIqC2D0deQr/yS1WnxvmYLlJXZpaQrQiseMY+6xusl79E04UjWoqyr+t1/Ew== 164 244 165 - "@types/node@^16.11.26": 166 - version "16.18.12" 167 - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.12.tgz#e3bfea80e31523fde4292a6118f19ffa24fd6f65" 168 - integrity sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw== 245 + "@types/node@^18.11.18": 246 + version "18.17.0" 247 + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.17.0.tgz#35d44267a33dd46b49ee0f73d31b05fd7407e290" 248 + integrity sha512-GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg== 169 249 170 250 "@types/plist@^3.0.1": 171 251 version "3.0.2" ··· 187 267 resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.6.tgz#3e600c62d210c5826460858f84bcbb65805460bb" 188 268 integrity sha512-NNm+gdePAX1VGvPcGZCDKQZKYSiAWigKhKaz5KF94hG6f2s8de9Ow5+7AbXoeKxL8gavZfk4UquSAygOF2duEQ== 189 269 190 - "@types/yargs-parser@*": 191 - version "21.0.0" 192 - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" 193 - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 194 - 195 - "@types/yargs@^17.0.1": 196 - version "17.0.22" 197 - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.22.tgz#7dd37697691b5f17d020f3c63e7a45971ff71e9a" 198 - integrity sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g== 199 - dependencies: 200 - "@types/yargs-parser" "*" 201 - 202 270 "@types/yauzl@^2.9.1": 203 271 version "2.10.0" 204 272 resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" ··· 206 274 dependencies: 207 275 "@types/node" "*" 208 276 209 - agent-base@6: 277 + "@xmldom/xmldom@^0.8.8": 278 + version "0.8.10" 279 + resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" 280 + integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== 281 + 282 + abbrev@^1.0.0: 283 + version "1.1.1" 284 + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 285 + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 286 + 287 + acorn-walk@^8.2.0: 288 + version "8.2.0" 289 + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" 290 + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== 291 + 292 + acorn@^8.7.0: 293 + version "8.10.0" 294 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" 295 + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== 296 + 297 + agent-base@6, agent-base@^6.0.2: 210 298 version "6.0.2" 211 299 resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 212 300 integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 213 301 dependencies: 214 302 debug "4" 215 303 304 + agent-base@^7.0.1, agent-base@^7.0.2, agent-base@^7.1.0: 305 + version "7.1.0" 306 + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.0.tgz#536802b76bc0b34aa50195eb2442276d613e3434" 307 + integrity sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg== 308 + dependencies: 309 + debug "^4.3.4" 310 + 311 + agentkeepalive@^4.2.1: 312 + version "4.3.0" 313 + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" 314 + integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== 315 + dependencies: 316 + debug "^4.1.0" 317 + depd "^2.0.0" 318 + humanize-ms "^1.2.1" 319 + 320 + aggregate-error@^3.0.0: 321 + version "3.1.0" 322 + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 323 + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== 324 + dependencies: 325 + clean-stack "^2.0.0" 326 + indent-string "^4.0.0" 327 + 216 328 ajv-keywords@^3.4.1: 217 329 version "3.5.2" 218 330 resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" ··· 233 345 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 234 346 integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 235 347 348 + ansi-regex@^6.0.1: 349 + version "6.0.1" 350 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" 351 + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== 352 + 236 353 ansi-styles@^3.2.1: 237 354 version "3.2.1" 238 355 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" ··· 247 364 dependencies: 248 365 color-convert "^2.0.1" 249 366 367 + ansi-styles@^6.1.0: 368 + version "6.2.1" 369 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" 370 + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== 371 + 250 372 app-builder-bin@4.0.0: 251 373 version "4.0.0" 252 374 resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-4.0.0.tgz#1df8e654bd1395e4a319d82545c98667d7eed2f0" 253 375 integrity sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA== 254 376 255 - app-builder-lib@23.6.0: 256 - version "23.6.0" 257 - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-23.6.0.tgz#03cade02838c077db99d86212d61c5fc1d6da1a8" 258 - integrity sha512-dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA== 377 + app-builder-lib@24.4.0: 378 + version "24.4.0" 379 + resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-24.4.0.tgz#1606f94e99366eea9e7507228961b8396e40d546" 380 + integrity sha512-EcdqtWvg1LAApKCfyRBukcVkmsa94s2e1VKHjZLpvA9/D14QEt8rHhffYeaA+cH/pVeoNVn2ob735KnfJKEEow== 259 381 dependencies: 260 382 "7zip-bin" "~5.1.1" 261 383 "@develar/schema-utils" "~2.6.5" 262 - "@electron/universal" "1.2.1" 384 + "@electron/notarize" "^1.2.3" 385 + "@electron/osx-sign" "^1.0.4" 386 + "@electron/rebuild" "^3.2.13" 387 + "@electron/universal" "1.3.4" 263 388 "@malept/flatpak-bundler" "^0.4.0" 389 + "@types/fs-extra" "9.0.13" 264 390 async-exit-hook "^2.0.1" 265 391 bluebird-lst "^1.0.9" 266 - builder-util "23.6.0" 267 - builder-util-runtime "9.1.1" 392 + builder-util "24.4.0" 393 + builder-util-runtime "9.2.1" 268 394 chromium-pickle-js "^0.2.0" 269 395 debug "^4.3.4" 270 - ejs "^3.1.7" 271 - electron-osx-sign "^0.6.0" 272 - electron-publish "23.6.0" 396 + ejs "^3.1.8" 397 + electron-publish "24.4.0" 273 398 form-data "^4.0.0" 274 399 fs-extra "^10.1.0" 275 400 hosted-git-info "^4.1.0" 276 401 is-ci "^3.0.0" 277 - isbinaryfile "^4.0.10" 402 + isbinaryfile "^5.0.0" 278 403 js-yaml "^4.1.0" 279 404 lazy-val "^1.0.5" 280 - minimatch "^3.1.2" 281 - read-config-file "6.2.0" 405 + minimatch "^5.1.1" 406 + read-config-file "6.3.2" 282 407 sanitize-filename "^1.6.3" 283 - semver "^7.3.7" 284 - tar "^6.1.11" 408 + semver "^7.3.8" 409 + tar "^6.1.12" 285 410 temp-file "^3.4.0" 286 411 412 + "aproba@^1.0.3 || ^2.0.0": 413 + version "2.0.0" 414 + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" 415 + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== 416 + 287 417 arch@^2.1.1: 288 418 version "2.2.0" 289 419 resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" 290 420 integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== 291 421 422 + are-we-there-yet@^3.0.0: 423 + version "3.0.1" 424 + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" 425 + integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== 426 + dependencies: 427 + delegates "^1.0.0" 428 + readable-stream "^3.6.0" 429 + 292 430 argparse@^2.0.1: 293 431 version "2.0.1" 294 432 resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 295 433 integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 296 434 297 - asar@^3.1.0: 298 - version "3.2.0" 299 - resolved "https://registry.yarnpkg.com/asar/-/asar-3.2.0.tgz#e6edb5edd6f627ebef04db62f771c61bea9c1221" 300 - integrity sha512-COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg== 301 - dependencies: 302 - chromium-pickle-js "^0.2.0" 303 - commander "^5.0.0" 304 - glob "^7.1.6" 305 - minimatch "^3.0.4" 306 - optionalDependencies: 307 - "@types/glob" "^7.1.1" 308 - 309 435 assert-plus@^1.0.0: 310 436 version "1.0.0" 311 437 resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 312 438 integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== 313 439 440 + ast-types@^0.13.4: 441 + version "0.13.4" 442 + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" 443 + integrity sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w== 444 + dependencies: 445 + tslib "^2.0.1" 446 + 314 447 astral-regex@^2.0.0: 315 448 version "2.0.0" 316 449 resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" ··· 336 469 resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 337 470 integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 338 471 339 - axios@^1.2.1: 340 - version "1.3.2" 341 - resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.2.tgz#7ac517f0fa3ec46e0e636223fd973713a09c72b3" 342 - integrity sha512-1M3O703bYqYuPhbHeya5bnhpYVsDDRyQSabNja04mZtboLNSuZ4YrltestrLXfHgmzua4TpUqRiVKbiQuo2epw== 472 + axios@^1.4.0: 473 + version "1.4.0" 474 + resolved "https://registry.yarnpkg.com/axios/-/axios-1.4.0.tgz#38a7bf1224cd308de271146038b551d725f0be1f" 475 + integrity sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA== 343 476 dependencies: 344 477 follow-redirects "^1.15.0" 345 478 form-data "^4.0.0" ··· 355 488 resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 356 489 integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 357 490 358 - bl@^4.0.3: 491 + basic-ftp@^5.0.2: 492 + version "5.0.3" 493 + resolved "https://registry.yarnpkg.com/basic-ftp/-/basic-ftp-5.0.3.tgz#b14c0fe8111ce001ec913686434fe0c2fb461228" 494 + integrity sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g== 495 + 496 + bl@^4.0.3, bl@^4.1.0: 359 497 version "4.1.0" 360 498 resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" 361 499 integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== ··· 371 509 dependencies: 372 510 bluebird "^3.5.5" 373 511 374 - bluebird@^3.5.0, bluebird@^3.5.5: 512 + bluebird@^3.5.5: 375 513 version "3.7.2" 376 514 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 377 515 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== ··· 381 519 resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" 382 520 integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== 383 521 384 - bootstrap@5.2.3: 385 - version "5.2.3" 386 - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.3.tgz#54739f4414de121b9785c5da3c87b37ff008322b" 387 - integrity sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ== 522 + bootstrap@5.3.0: 523 + version "5.3.0" 524 + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.0.tgz#0718a7cc29040ee8dbf1bd652b896f3436a87c29" 525 + integrity sha512-UnBV3E3v4STVNQdms6jSGO2CvOkjUMdDAVR2V5N4uCMdaIkaQjbcEAMqRimDHIs4uqBYzDAKCQwCB+97tJgHQw== 388 526 389 527 brace-expansion@^1.1.7: 390 528 version "1.1.11" ··· 401 539 dependencies: 402 540 balanced-match "^1.0.0" 403 541 404 - buffer-alloc-unsafe@^1.1.0: 405 - version "1.1.0" 406 - resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 407 - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== 408 - 409 - buffer-alloc@^1.2.0: 410 - version "1.2.0" 411 - resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 412 - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== 413 - dependencies: 414 - buffer-alloc-unsafe "^1.1.0" 415 - buffer-fill "^1.0.0" 416 - 417 542 buffer-crc32@~0.2.3: 418 543 version "0.2.13" 419 544 resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 420 545 integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== 421 546 422 - buffer-equal@1.0.0: 423 - version "1.0.0" 424 - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 425 - integrity sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ== 426 - 427 - buffer-fill@^1.0.0: 428 - version "1.0.0" 429 - resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 430 - integrity sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ== 547 + buffer-equal@^1.0.0: 548 + version "1.0.1" 549 + resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.1.tgz#2f7651be5b1b3f057fcd6e7ee16cf34767077d90" 550 + integrity sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg== 431 551 432 552 buffer-from@^1.0.0: 433 553 version "1.1.2" ··· 442 562 base64-js "^1.3.1" 443 563 ieee754 "^1.1.13" 444 564 445 - builder-util-runtime@9.1.1: 446 - version "9.1.1" 447 - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz#2da7b34e78a64ad14ccd070d6eed4662d893bd60" 448 - integrity sha512-azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw== 565 + builder-util-runtime@9.2.1: 566 + version "9.2.1" 567 + resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.2.1.tgz#3184dcdf7ed6c47afb8df733813224ced4f624fd" 568 + integrity sha512-2rLv/uQD2x+dJ0J3xtsmI12AlRyk7p45TEbE/6o/fbb633e/S3pPgm+ct+JHsoY7r39dKHnGEFk/AASRFdnXmA== 449 569 dependencies: 450 570 debug "^4.3.4" 451 571 sax "^1.2.4" 452 572 453 - builder-util@23.6.0: 454 - version "23.6.0" 455 - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-23.6.0.tgz#1880ec6da7da3fd6fa19b8bd71df7f39e8d17dd9" 456 - integrity sha512-QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ== 573 + builder-util@24.4.0: 574 + version "24.4.0" 575 + resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-24.4.0.tgz#dbb201a118fd573180e6a1070cf4c0be6de80cd7" 576 + integrity sha512-tONb/GIK1MKa1BcOPHE1naId3o5nj6gdka5kP7yUJh2DOfF+jMq3laiu+UOZH6A7ZtkMtnGNMYFKFTIv408n/A== 457 577 dependencies: 458 578 "7zip-bin" "~5.1.1" 459 579 "@types/debug" "^4.1.6" 460 - "@types/fs-extra" "^9.0.11" 461 580 app-builder-bin "4.0.0" 462 581 bluebird-lst "^1.0.9" 463 - builder-util-runtime "9.1.1" 464 - chalk "^4.1.1" 582 + builder-util-runtime "9.2.1" 583 + chalk "^4.1.2" 465 584 cross-spawn "^7.0.3" 466 585 debug "^4.3.4" 467 - fs-extra "^10.0.0" 586 + fs-extra "^10.1.0" 468 587 http-proxy-agent "^5.0.0" 469 - https-proxy-agent "^5.0.0" 588 + https-proxy-agent "^5.0.1" 470 589 is-ci "^3.0.0" 471 590 js-yaml "^4.1.0" 472 591 source-map-support "^0.5.19" 473 592 stat-mode "^1.0.0" 474 593 temp-file "^3.4.0" 475 594 595 + cacache@^17.0.0: 596 + version "17.1.3" 597 + resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.3.tgz#c6ac23bec56516a7c0c52020fd48b4909d7c7044" 598 + integrity sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg== 599 + dependencies: 600 + "@npmcli/fs" "^3.1.0" 601 + fs-minipass "^3.0.0" 602 + glob "^10.2.2" 603 + lru-cache "^7.7.1" 604 + minipass "^5.0.0" 605 + minipass-collect "^1.0.2" 606 + minipass-flush "^1.0.5" 607 + minipass-pipeline "^1.2.4" 608 + p-map "^4.0.0" 609 + ssri "^10.0.0" 610 + tar "^6.1.11" 611 + unique-filename "^3.0.0" 612 + 476 613 cacheable-lookup@^5.0.3: 477 614 version "5.0.4" 478 615 resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" 479 616 integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== 480 617 481 618 cacheable-request@^7.0.2: 482 - version "7.0.2" 483 - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27" 484 - integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew== 619 + version "7.0.4" 620 + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" 621 + integrity sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== 485 622 dependencies: 486 623 clone-response "^1.0.2" 487 624 get-stream "^5.1.0" ··· 505 642 escape-string-regexp "^1.0.5" 506 643 supports-color "^5.3.0" 507 644 508 - chalk@^4.0.2, chalk@^4.1.1: 645 + chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: 509 646 version "4.1.2" 510 647 resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 511 648 integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== ··· 523 660 resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 524 661 integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 525 662 663 + chromium-bidi@0.4.11: 664 + version "0.4.11" 665 + resolved "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-0.4.11.tgz#d3eafb0a99f417406a734b889dacd777be5e227c" 666 + integrity sha512-p03ajLhlQ5gebw3cmbDBFmBc2wnJM5dnXS8Phu6mblGn/KQd76yOVL5VwE0VAisa7oazNfKGTaXlIZ8Q5Bb9OA== 667 + dependencies: 668 + mitt "3.0.0" 669 + 526 670 chromium-pickle-js@^0.2.0: 527 671 version "0.2.0" 528 672 resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" 529 673 integrity sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw== 530 674 531 675 ci-info@^3.2.0: 532 - version "3.7.1" 533 - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.7.1.tgz#708a6cdae38915d597afdf3b145f2f8e1ff55f3f" 534 - integrity sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w== 676 + version "3.8.0" 677 + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" 678 + integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== 679 + 680 + clean-stack@^2.0.0: 681 + version "2.2.0" 682 + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 683 + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 684 + 685 + cli-cursor@^3.1.0: 686 + version "3.1.0" 687 + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 688 + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 689 + dependencies: 690 + restore-cursor "^3.1.0" 691 + 692 + cli-spinners@^2.5.0: 693 + version "2.9.0" 694 + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" 695 + integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== 535 696 536 697 cli-truncate@^2.1.0: 537 698 version "2.1.0" ··· 566 727 dependencies: 567 728 mimic-response "^1.0.0" 568 729 730 + clone@^1.0.2: 731 + version "1.0.4" 732 + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 733 + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== 734 + 569 735 color-convert@^1.9.0: 570 736 version "1.9.3" 571 737 resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" ··· 590 756 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 591 757 integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 592 758 593 - colors@1.0.3: 594 - version "1.0.3" 595 - resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 596 - integrity sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== 759 + color-support@^1.1.3: 760 + version "1.1.3" 761 + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 762 + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== 597 763 598 764 combined-stream@^1.0.8: 599 765 version "1.0.8" ··· 601 767 integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 602 768 dependencies: 603 769 delayed-stream "~1.0.0" 604 - 605 - commander@2.9.0: 606 - version "2.9.0" 607 - resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 608 - integrity sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A== 609 - dependencies: 610 - graceful-readlink ">= 1.0.0" 611 770 612 771 commander@^5.0.0: 613 772 version "5.1.0" ··· 624 783 resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 625 784 integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 626 785 786 + config-file-ts@^0.2.4: 787 + version "0.2.4" 788 + resolved "https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.4.tgz#6c0741fbe118a7cf786c65f139030f0448a2cc99" 789 + integrity sha512-cKSW0BfrSaAUnxpgvpXPLaaW/umg4bqg4k3GO1JqlRfpx+d5W0GDXznCMkWotJQek5Mmz1MJVChQnz3IVaeMZQ== 790 + dependencies: 791 + glob "^7.1.6" 792 + typescript "^4.0.2" 793 + 794 + console-control-strings@^1.1.0: 795 + version "1.1.0" 796 + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 797 + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== 798 + 627 799 core-util-is@1.0.2: 628 800 version "1.0.2" 629 801 resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 630 802 integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== 631 803 632 - cosmiconfig@8.0.0: 633 - version "8.0.0" 634 - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97" 635 - integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ== 804 + cosmiconfig@8.1.3: 805 + version "8.1.3" 806 + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" 807 + integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== 636 808 dependencies: 637 809 import-fresh "^3.2.1" 638 810 js-yaml "^4.1.0" ··· 646 818 dependencies: 647 819 buffer "^5.1.0" 648 820 649 - cross-fetch@3.1.5: 650 - version "3.1.5" 651 - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" 652 - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== 821 + cross-fetch@3.1.6: 822 + version "3.1.6" 823 + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.6.tgz#bae05aa31a4da760969756318feeee6e70f15d6c" 824 + integrity sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g== 653 825 dependencies: 654 - node-fetch "2.6.7" 826 + node-fetch "^2.6.11" 655 827 656 828 cross-spawn@^6.0.0: 657 829 version "6.0.5" ··· 664 836 shebang-command "^1.2.0" 665 837 which "^1.2.9" 666 838 667 - cross-spawn@^7.0.1, cross-spawn@^7.0.3: 839 + cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.3: 668 840 version "7.0.3" 669 841 resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 670 842 integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== ··· 673 845 shebang-command "^2.0.0" 674 846 which "^2.0.1" 675 847 676 - debug@4, debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: 848 + data-uri-to-buffer@^5.0.1: 849 + version "5.0.1" 850 + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-5.0.1.tgz#db89a9e279c2ffe74f50637a59a32fb23b3e4d7c" 851 + integrity sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg== 852 + 853 + debug@4, debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3, debug@^4.3.4: 677 854 version "4.3.4" 678 855 resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 679 856 integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 680 857 dependencies: 681 858 ms "2.1.2" 682 - 683 - debug@^2.6.8: 684 - version "2.6.9" 685 - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 686 - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 687 - dependencies: 688 - ms "2.0.0" 689 859 690 860 decompress-response@^6.0.0: 691 861 version "6.0.0" ··· 699 869 resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 700 870 integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 701 871 872 + deep-is@~0.1.3: 873 + version "0.1.4" 874 + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 875 + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 876 + 877 + defaults@^1.0.3: 878 + version "1.0.4" 879 + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" 880 + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== 881 + dependencies: 882 + clone "^1.0.2" 883 + 702 884 defer-to-connect@^2.0.0: 703 885 version "2.0.1" 704 886 resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" 705 887 integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== 706 888 707 889 define-properties@^1.1.3: 708 - version "1.1.4" 709 - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 710 - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 890 + version "1.2.0" 891 + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" 892 + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== 711 893 dependencies: 712 894 has-property-descriptors "^1.0.0" 713 895 object-keys "^1.1.1" 714 896 897 + degenerator@^4.0.4: 898 + version "4.0.4" 899 + resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-4.0.4.tgz#dbeeb602c64ce543c1f17e2c681d1d0cc9d4a0ac" 900 + integrity sha512-MTZdZsuNxSBL92rsjx3VFWe57OpRlikyLbcx2B5Dmdv6oScqpMrvpY7zHLMymrUxo3U5+suPUMsNgW/+SZB1lg== 901 + dependencies: 902 + ast-types "^0.13.4" 903 + escodegen "^1.14.3" 904 + esprima "^4.0.1" 905 + vm2 "^3.9.19" 906 + 715 907 delayed-stream@~1.0.0: 716 908 version "1.0.0" 717 909 resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 718 910 integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 719 911 720 - detect-libc@^2.0.0: 721 - version "2.0.1" 722 - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" 723 - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== 912 + delegates@^1.0.0: 913 + version "1.0.0" 914 + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 915 + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== 916 + 917 + depd@^2.0.0: 918 + version "2.0.0" 919 + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 920 + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== 921 + 922 + detect-libc@^2.0.0, detect-libc@^2.0.1: 923 + version "2.0.2" 924 + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d" 925 + integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== 724 926 725 927 detect-node@^2.0.4: 726 928 version "2.1.0" 727 929 resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" 728 930 integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== 729 931 730 - devtools-protocol@0.0.1068969: 731 - version "0.0.1068969" 732 - resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1068969.tgz#8b9a4bc48aed1453bed08d62b07481f9abf4d6d8" 733 - integrity sha512-ATFTrPbY1dKYhPPvpjtwWKSK2mIwGmRwX54UASn9THEuIZCe2n9k3vVuMmt6jWeL+e5QaaguEv/pMyR+JQB7VQ== 932 + devtools-protocol@0.0.1120988: 933 + version "0.0.1120988" 934 + resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1120988.tgz#8fe49088919ae3b8df7235774633763f1f925066" 935 + integrity sha512-39fCpE3Z78IaIPChJsP6Lhmkbf4dWXOmzLk/KFTdRkNk/0JymRIfUynDVRndV9HoDz8PyalK1UH21ST/ivwW5Q== 734 936 735 - dir-compare@^2.4.0: 736 - version "2.4.0" 737 - resolved "https://registry.yarnpkg.com/dir-compare/-/dir-compare-2.4.0.tgz#785c41dc5f645b34343a4eafc50b79bac7f11631" 738 - integrity sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA== 937 + dir-compare@^3.0.0: 938 + version "3.3.0" 939 + resolved "https://registry.yarnpkg.com/dir-compare/-/dir-compare-3.3.0.tgz#2c749f973b5c4b5d087f11edaae730db31788416" 940 + integrity sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg== 739 941 dependencies: 740 - buffer-equal "1.0.0" 741 - colors "1.0.3" 742 - commander "2.9.0" 743 - minimatch "3.0.4" 942 + buffer-equal "^1.0.0" 943 + minimatch "^3.0.4" 744 944 745 - dmg-builder@23.6.0: 746 - version "23.6.0" 747 - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-23.6.0.tgz#d39d3871bce996f16c07d2cafe922d6ecbb2a948" 748 - integrity sha512-jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA== 945 + dmg-builder@24.4.0: 946 + version "24.4.0" 947 + resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-24.4.0.tgz#46c80f119465f6a7275766c72b4f3d514cc8013d" 948 + integrity sha512-p5z9Cx539GSBYb+b09Z+hMhuBTh/BrI71VRg4rgF6f2xtIRK/YlTGVS/O08k5OojoyhZcpS7JXxDVSmQoWgiiQ== 749 949 dependencies: 750 - app-builder-lib "23.6.0" 751 - builder-util "23.6.0" 752 - builder-util-runtime "9.1.1" 753 - fs-extra "^10.0.0" 950 + app-builder-lib "24.4.0" 951 + builder-util "24.4.0" 952 + builder-util-runtime "9.2.1" 953 + fs-extra "^10.1.0" 754 954 iconv-lite "^0.6.2" 755 955 js-yaml "^4.1.0" 756 956 optionalDependencies: ··· 780 980 resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-9.0.2.tgz#dacc20160935a37dea6364aa1bef819fb9b6ab05" 781 981 integrity sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg== 782 982 783 - ejs@^3.1.7: 784 - version "3.1.8" 785 - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b" 786 - integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ== 983 + eastasianwidth@^0.2.0: 984 + version "0.2.0" 985 + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" 986 + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== 987 + 988 + ejs@^3.1.8: 989 + version "3.1.9" 990 + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" 991 + integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== 787 992 dependencies: 788 993 jake "^10.8.5" 789 994 790 - electron-builder@^23.6.0: 791 - version "23.6.0" 792 - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.6.0.tgz#c79050cbdce90ed96c5feb67c34e9e0a21b5331b" 793 - integrity sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw== 995 + electron-builder@^24.4.0: 996 + version "24.4.0" 997 + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-24.4.0.tgz#8846efa45bac8f6b9afc181abf71a4e12530f045" 998 + integrity sha512-D5INxodxaUIJgEX6p/fqBd8wQNS8XRAToNIJ9SQC+taNS5D73ZsjLuXiRraFGCB0cVk9KeKhEkdEOH5AaVya4g== 794 999 dependencies: 795 - "@types/yargs" "^17.0.1" 796 - app-builder-lib "23.6.0" 797 - builder-util "23.6.0" 798 - builder-util-runtime "9.1.1" 799 - chalk "^4.1.1" 800 - dmg-builder "23.6.0" 801 - fs-extra "^10.0.0" 1000 + app-builder-lib "24.4.0" 1001 + builder-util "24.4.0" 1002 + builder-util-runtime "9.2.1" 1003 + chalk "^4.1.2" 1004 + dmg-builder "24.4.0" 1005 + fs-extra "^10.1.0" 802 1006 is-ci "^3.0.0" 803 1007 lazy-val "^1.0.5" 804 - read-config-file "6.2.0" 805 - simple-update-notifier "^1.0.7" 806 - yargs "^17.5.1" 1008 + read-config-file "6.3.2" 1009 + simple-update-notifier "^1.1.0" 1010 + yargs "^17.6.2" 807 1011 808 - electron-osx-sign@^0.6.0: 809 - version "0.6.0" 810 - resolved "https://registry.yarnpkg.com/electron-osx-sign/-/electron-osx-sign-0.6.0.tgz#9b69c191d471d9458ef5b1e4fdd52baa059f1bb8" 811 - integrity sha512-+hiIEb2Xxk6eDKJ2FFlpofCnemCbjbT5jz+BKGpVBrRNT3kWTGs4DfNX6IzGwgi33hUcXF+kFs9JW+r6Wc1LRg== 812 - dependencies: 813 - bluebird "^3.5.0" 814 - compare-version "^0.1.2" 815 - debug "^2.6.8" 816 - isbinaryfile "^3.0.2" 817 - minimist "^1.2.0" 818 - plist "^3.0.1" 819 - 820 - electron-publish@23.6.0: 821 - version "23.6.0" 822 - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-23.6.0.tgz#ac9b469e0b07752eb89357dd660e5fb10b3d1ce9" 823 - integrity sha512-jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg== 1012 + electron-publish@24.4.0: 1013 + version "24.4.0" 1014 + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-24.4.0.tgz#a58f49ecd727620f65372881788ebb1a9b853284" 1015 + integrity sha512-U3mnVSxIfNrLW7ZnwiedFhcLf6ExPFXgAsx89WpfQFsV4gFAt/LG+H74p0m9NSvsLXiZuF82yXoxi7Ou8GHq4Q== 824 1016 dependencies: 825 1017 "@types/fs-extra" "^9.0.11" 826 - builder-util "23.6.0" 827 - builder-util-runtime "9.1.1" 828 - chalk "^4.1.1" 829 - fs-extra "^10.0.0" 1018 + builder-util "24.4.0" 1019 + builder-util-runtime "9.2.1" 1020 + chalk "^4.1.2" 1021 + fs-extra "^10.1.0" 830 1022 lazy-val "^1.0.5" 831 1023 mime "^2.5.2" 832 1024 833 - electron@^22.0.0: 834 - version "22.2.0" 835 - resolved "https://registry.yarnpkg.com/electron/-/electron-22.2.0.tgz#1aa321415d8b8021a4b0807641f0ad56028feaf5" 836 - integrity sha512-puRZSF2vWJ4pz3oetL5Td8LcuivTWz3MoAk/gjImHSN1B/2VJNEQlw1jGdkte+ppid2craOswE2lmCOZ7SwF1g== 1025 + electron@^25.1.0: 1026 + version "25.3.1" 1027 + resolved "https://registry.yarnpkg.com/electron/-/electron-25.3.1.tgz#898cbb5e54d17ad0014123a10f5febc17638c6a9" 1028 + integrity sha512-t0QXXqgf0/P0OJ9LU3qpcBMK+wL0FRwTQfooBaaG08v5hywPzc1yplfb3l4tS1xC0Ttw8IBaKLBeEoRgxBRHjg== 837 1029 dependencies: 838 1030 "@electron/get" "^2.0.0" 839 - "@types/node" "^16.11.26" 1031 + "@types/node" "^18.11.18" 840 1032 extract-zip "^2.0.1" 841 1033 842 1034 emoji-regex@^8.0.0: ··· 844 1036 resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 845 1037 integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 846 1038 1039 + emoji-regex@^9.2.2: 1040 + version "9.2.2" 1041 + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 1042 + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 1043 + 1044 + encoding@^0.1.13: 1045 + version "0.1.13" 1046 + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" 1047 + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== 1048 + dependencies: 1049 + iconv-lite "^0.6.2" 1050 + 847 1051 end-of-stream@^1.1.0, end-of-stream@^1.4.1: 848 1052 version "1.4.4" 849 1053 resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" ··· 856 1060 resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" 857 1061 integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== 858 1062 1063 + err-code@^2.0.2: 1064 + version "2.0.3" 1065 + resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" 1066 + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== 1067 + 859 1068 error-ex@^1.3.1: 860 1069 version "1.3.2" 861 1070 resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" ··· 883 1092 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 884 1093 integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 885 1094 1095 + escodegen@^1.14.3: 1096 + version "1.14.3" 1097 + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" 1098 + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== 1099 + dependencies: 1100 + esprima "^4.0.1" 1101 + estraverse "^4.2.0" 1102 + esutils "^2.0.2" 1103 + optionator "^0.8.1" 1104 + optionalDependencies: 1105 + source-map "~0.6.1" 1106 + 1107 + esprima@^4.0.1: 1108 + version "4.0.1" 1109 + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1110 + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1111 + 1112 + estraverse@^4.2.0: 1113 + version "4.3.0" 1114 + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1115 + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1116 + 1117 + esutils@^2.0.2: 1118 + version "2.0.3" 1119 + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1120 + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1121 + 886 1122 execa@^1.0.0: 887 1123 version "1.0.0" 888 1124 resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" ··· 900 1136 version "2.0.3" 901 1137 resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 902 1138 integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 1139 + 1140 + exponential-backoff@^3.1.1: 1141 + version "3.1.1" 1142 + resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" 1143 + integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== 903 1144 904 1145 extract-zip@2.0.1, extract-zip@^2.0.1: 905 1146 version "2.0.1" ··· 927 1168 resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 928 1169 integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 929 1170 1171 + fast-levenshtein@~2.0.6: 1172 + version "2.0.6" 1173 + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1174 + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1175 + 930 1176 fd-slicer@~1.1.0: 931 1177 version "1.1.0" 932 1178 resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" ··· 939 1185 resolved "https://registry.yarnpkg.com/fessonia/-/fessonia-2.2.2.tgz#c8f9da5701d2e63efc9fd5793368929ddfaaf776" 940 1186 integrity sha512-FvlDFdwHBIxWl2K9XynAIR38NB8xn4vPPZDNK5nIQBnGwZ0xv5FxDXsz+pzYZrUqoEQPQBJemNrYhueD2de7qw== 941 1187 942 - filelist@^1.0.1: 1188 + filelist@^1.0.4: 943 1189 version "1.0.4" 944 1190 resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" 945 1191 integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== ··· 951 1197 resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" 952 1198 integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== 953 1199 1200 + foreground-child@^3.1.0: 1201 + version "3.1.1" 1202 + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" 1203 + integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== 1204 + dependencies: 1205 + cross-spawn "^7.0.0" 1206 + signal-exit "^4.0.1" 1207 + 954 1208 form-data@^4.0.0: 955 1209 version "4.0.0" 956 1210 resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" ··· 1000 1254 dependencies: 1001 1255 minipass "^3.0.0" 1002 1256 1257 + fs-minipass@^3.0.0: 1258 + version "3.0.2" 1259 + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.2.tgz#5b383858efa8c1eb8c33b39e994f7e8555b8b3a3" 1260 + integrity sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g== 1261 + dependencies: 1262 + minipass "^5.0.0" 1263 + 1003 1264 fs.realpath@^1.0.0: 1004 1265 version "1.0.0" 1005 1266 resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" ··· 1010 1271 resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1011 1272 integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1012 1273 1274 + gauge@^4.0.3: 1275 + version "4.0.4" 1276 + resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" 1277 + integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== 1278 + dependencies: 1279 + aproba "^1.0.3 || ^2.0.0" 1280 + color-support "^1.1.3" 1281 + console-control-strings "^1.1.0" 1282 + has-unicode "^2.0.1" 1283 + signal-exit "^3.0.7" 1284 + string-width "^4.2.3" 1285 + strip-ansi "^6.0.1" 1286 + wide-align "^1.1.5" 1287 + 1013 1288 get-caller-file@^2.0.5: 1014 1289 version "2.0.5" 1015 1290 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1016 1291 integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1017 1292 1018 1293 get-intrinsic@^1.1.1: 1019 - version "1.2.0" 1020 - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" 1021 - integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== 1294 + version "1.2.1" 1295 + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" 1296 + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== 1022 1297 dependencies: 1023 1298 function-bind "^1.1.1" 1024 1299 has "^1.0.3" 1300 + has-proto "^1.0.1" 1025 1301 has-symbols "^1.0.3" 1026 1302 1027 1303 get-stream@^4.0.0: ··· 1038 1314 dependencies: 1039 1315 pump "^3.0.0" 1040 1316 1317 + get-uri@^6.0.1: 1318 + version "6.0.1" 1319 + resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-6.0.1.tgz#cff2ba8d456c3513a04b70c45de4dbcca5b1527c" 1320 + integrity sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q== 1321 + dependencies: 1322 + basic-ftp "^5.0.2" 1323 + data-uri-to-buffer "^5.0.1" 1324 + debug "^4.3.4" 1325 + fs-extra "^8.1.0" 1326 + 1041 1327 github-from-package@0.0.0: 1042 1328 version "0.0.0" 1043 1329 resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 1044 1330 integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== 1045 1331 1046 - glob@^7.1.3, glob@^7.1.6: 1332 + glob@^10.2.2: 1333 + version "10.3.3" 1334 + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.3.tgz#8360a4ffdd6ed90df84aa8d52f21f452e86a123b" 1335 + integrity sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw== 1336 + dependencies: 1337 + foreground-child "^3.1.0" 1338 + jackspeak "^2.0.3" 1339 + minimatch "^9.0.1" 1340 + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" 1341 + path-scurry "^1.10.1" 1342 + 1343 + glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: 1047 1344 version "7.2.3" 1048 1345 resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1049 1346 integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== ··· 1074 1371 dependencies: 1075 1372 define-properties "^1.1.3" 1076 1373 1077 - got@^11.8.5: 1374 + got@^11.7.0, got@^11.8.5: 1078 1375 version "11.8.6" 1079 1376 resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" 1080 1377 integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== ··· 1091 1388 p-cancelable "^2.0.0" 1092 1389 responselike "^2.0.0" 1093 1390 1094 - graceful-fs@^4.1.6, graceful-fs@^4.2.0: 1095 - version "4.2.10" 1096 - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1097 - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1098 - 1099 - "graceful-readlink@>= 1.0.0": 1100 - version "1.0.1" 1101 - resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1102 - integrity sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w== 1391 + graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.6: 1392 + version "4.2.11" 1393 + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" 1394 + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== 1103 1395 1104 1396 has-flag@^3.0.0: 1105 1397 version "3.0.0" ··· 1118 1410 dependencies: 1119 1411 get-intrinsic "^1.1.1" 1120 1412 1413 + has-proto@^1.0.1: 1414 + version "1.0.1" 1415 + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1416 + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1417 + 1121 1418 has-symbols@^1.0.3: 1122 1419 version "1.0.3" 1123 1420 resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1124 1421 integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1422 + 1423 + has-unicode@^2.0.1: 1424 + version "2.0.1" 1425 + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1426 + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== 1125 1427 1126 1428 has@^1.0.3: 1127 1429 version "1.0.3" ··· 1137 1439 dependencies: 1138 1440 lru-cache "^6.0.0" 1139 1441 1140 - http-cache-semantics@^4.0.0: 1442 + http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.1: 1141 1443 version "4.1.1" 1142 1444 resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" 1143 1445 integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== ··· 1151 1453 agent-base "6" 1152 1454 debug "4" 1153 1455 1456 + http-proxy-agent@^7.0.0: 1457 + version "7.0.0" 1458 + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz#e9096c5afd071a3fce56e6252bb321583c124673" 1459 + integrity sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ== 1460 + dependencies: 1461 + agent-base "^7.1.0" 1462 + debug "^4.3.4" 1463 + 1154 1464 http2-wrapper@^1.0.0-beta.5.2: 1155 1465 version "1.0.3" 1156 1466 resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" ··· 1159 1469 quick-lru "^5.1.1" 1160 1470 resolve-alpn "^1.0.0" 1161 1471 1162 - https-proxy-agent@5.0.1, https-proxy-agent@^5.0.0: 1472 + https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: 1163 1473 version "5.0.1" 1164 1474 resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" 1165 1475 integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== ··· 1167 1477 agent-base "6" 1168 1478 debug "4" 1169 1479 1480 + https-proxy-agent@^7.0.0: 1481 + version "7.0.1" 1482 + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.1.tgz#0277e28f13a07d45c663633841e20a40aaafe0ab" 1483 + integrity sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ== 1484 + dependencies: 1485 + agent-base "^7.0.2" 1486 + debug "4" 1487 + 1488 + humanize-ms@^1.2.1: 1489 + version "1.2.1" 1490 + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" 1491 + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== 1492 + dependencies: 1493 + ms "^2.0.0" 1494 + 1170 1495 iconv-corefoundation@^1.1.7: 1171 1496 version "1.1.7" 1172 1497 resolved "https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz#31065e6ab2c9272154c8b0821151e2c88f1b002a" ··· 1194 1519 dependencies: 1195 1520 parent-module "^1.0.0" 1196 1521 resolve-from "^4.0.0" 1522 + 1523 + imurmurhash@^0.1.4: 1524 + version "0.1.4" 1525 + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1526 + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1527 + 1528 + indent-string@^4.0.0: 1529 + version "4.0.0" 1530 + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1531 + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1197 1532 1198 1533 inflight@^1.0.4: 1199 1534 version "1.0.6" ··· 1213 1548 resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1214 1549 integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1215 1550 1551 + ip@^1.1.8: 1552 + version "1.1.8" 1553 + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" 1554 + integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== 1555 + 1556 + ip@^2.0.0: 1557 + version "2.0.0" 1558 + resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" 1559 + integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== 1560 + 1216 1561 is-arrayish@^0.2.1: 1217 1562 version "0.2.1" 1218 1563 resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" ··· 1235 1580 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1236 1581 integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1237 1582 1583 + is-interactive@^1.0.0: 1584 + version "1.0.0" 1585 + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" 1586 + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== 1587 + 1588 + is-lambda@^1.0.1: 1589 + version "1.0.1" 1590 + resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" 1591 + integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== 1592 + 1238 1593 is-stream@^1.1.0: 1239 1594 version "1.1.0" 1240 1595 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1241 1596 integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== 1242 1597 1598 + is-unicode-supported@^0.1.0: 1599 + version "0.1.0" 1600 + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" 1601 + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== 1602 + 1243 1603 is-wsl@^2.1.1: 1244 1604 version "2.2.0" 1245 1605 resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" ··· 1247 1607 dependencies: 1248 1608 is-docker "^2.0.0" 1249 1609 1250 - isbinaryfile@^3.0.2: 1251 - version "3.0.3" 1252 - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.3.tgz#5d6def3edebf6e8ca8cae9c30183a804b5f8be80" 1253 - integrity sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw== 1254 - dependencies: 1255 - buffer-alloc "^1.2.0" 1256 - 1257 - isbinaryfile@^4.0.10: 1610 + isbinaryfile@^4.0.8: 1258 1611 version "4.0.10" 1259 1612 resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" 1260 1613 integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== 1261 1614 1615 + isbinaryfile@^5.0.0: 1616 + version "5.0.0" 1617 + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.0.tgz#034b7e54989dab8986598cbcea41f66663c65234" 1618 + integrity sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg== 1619 + 1262 1620 isexe@^2.0.0: 1263 1621 version "2.0.0" 1264 1622 resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" ··· 1269 1627 resolved "https://registry.yarnpkg.com/iso8601-duration/-/iso8601-duration-2.1.1.tgz#88d9e481525b50e57840bc93fb8a1727a7d849d2" 1270 1628 integrity sha512-VGGpW30/R57FpG1J7RqqKBAaK7lIiudlZkQ5tRoO9hNlKYQNnhs60DQpXlPFBmp6I+kJ61PHkI3f/T7cR4wfbw== 1271 1629 1630 + jackspeak@^2.0.3: 1631 + version "2.2.1" 1632 + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.1.tgz#655e8cf025d872c9c03d3eb63e8f0c024fef16a6" 1633 + integrity sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw== 1634 + dependencies: 1635 + "@isaacs/cliui" "^8.0.2" 1636 + optionalDependencies: 1637 + "@pkgjs/parseargs" "^0.11.0" 1638 + 1272 1639 jake@^10.8.5: 1273 - version "10.8.5" 1274 - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" 1275 - integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== 1640 + version "10.8.7" 1641 + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f" 1642 + integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== 1276 1643 dependencies: 1277 1644 async "^3.2.3" 1278 1645 chalk "^4.0.2" 1279 - filelist "^1.0.1" 1280 - minimatch "^3.0.4" 1646 + filelist "^1.0.4" 1647 + minimatch "^3.1.2" 1281 1648 1282 1649 js-tokens@^4.0.0: 1283 1650 version "4.0.0" ··· 1341 1708 prebuild-install "^7.0.1" 1342 1709 1343 1710 keyv@^4.0.0: 1344 - version "4.5.2" 1345 - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56" 1346 - integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g== 1711 + version "4.5.3" 1712 + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz#00873d2b046df737963157bd04f294ca818c9c25" 1713 + integrity sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug== 1347 1714 dependencies: 1348 1715 json-buffer "3.0.1" 1349 1716 ··· 1352 1719 resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d" 1353 1720 integrity sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q== 1354 1721 1722 + levn@~0.3.0: 1723 + version "0.3.0" 1724 + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1725 + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== 1726 + dependencies: 1727 + prelude-ls "~1.1.2" 1728 + type-check "~0.3.2" 1729 + 1355 1730 lines-and-columns@^1.1.6: 1356 1731 version "1.2.4" 1357 1732 resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" ··· 1362 1737 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1363 1738 integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1364 1739 1740 + log-symbols@^4.1.0: 1741 + version "4.1.0" 1742 + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" 1743 + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== 1744 + dependencies: 1745 + chalk "^4.1.0" 1746 + is-unicode-supported "^0.1.0" 1747 + 1365 1748 lowercase-keys@^2.0.0: 1366 1749 version "2.0.0" 1367 1750 resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" ··· 1374 1757 dependencies: 1375 1758 yallist "^4.0.0" 1376 1759 1760 + lru-cache@^7.14.1, lru-cache@^7.7.1: 1761 + version "7.18.3" 1762 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" 1763 + integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== 1764 + 1765 + "lru-cache@^9.1.1 || ^10.0.0": 1766 + version "10.0.0" 1767 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz#b9e2a6a72a129d81ab317202d93c7691df727e61" 1768 + integrity sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw== 1769 + 1770 + make-fetch-happen@^11.0.3: 1771 + version "11.1.1" 1772 + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f" 1773 + integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== 1774 + dependencies: 1775 + agentkeepalive "^4.2.1" 1776 + cacache "^17.0.0" 1777 + http-cache-semantics "^4.1.1" 1778 + http-proxy-agent "^5.0.0" 1779 + https-proxy-agent "^5.0.0" 1780 + is-lambda "^1.0.1" 1781 + lru-cache "^7.7.1" 1782 + minipass "^5.0.0" 1783 + minipass-fetch "^3.0.0" 1784 + minipass-flush "^1.0.5" 1785 + minipass-pipeline "^1.2.4" 1786 + negotiator "^0.6.3" 1787 + promise-retry "^2.0.1" 1788 + socks-proxy-agent "^7.0.0" 1789 + ssri "^10.0.0" 1790 + 1377 1791 matcher@^3.0.0: 1378 1792 version "3.0.0" 1379 1793 resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" ··· 1398 1812 resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" 1399 1813 integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== 1400 1814 1815 + mimic-fn@^2.1.0: 1816 + version "2.1.0" 1817 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1818 + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1819 + 1401 1820 mimic-response@^1.0.0: 1402 1821 version "1.0.1" 1403 1822 resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" ··· 1408 1827 resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" 1409 1828 integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== 1410 1829 1411 - minimatch@3.0.4: 1412 - version "3.0.4" 1413 - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1414 - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1415 - dependencies: 1416 - brace-expansion "^1.1.7" 1417 - 1418 1830 minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 1419 1831 version "3.1.2" 1420 1832 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" ··· 1422 1834 dependencies: 1423 1835 brace-expansion "^1.1.7" 1424 1836 1425 - minimatch@^5.0.1: 1837 + minimatch@^5.0.1, minimatch@^5.1.1: 1426 1838 version "5.1.6" 1427 1839 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" 1428 1840 integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== 1429 1841 dependencies: 1430 1842 brace-expansion "^2.0.1" 1431 1843 1432 - minimist@^1.2.0, minimist@^1.2.3: 1433 - version "1.2.7" 1434 - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1435 - integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1844 + minimatch@^9.0.1: 1845 + version "9.0.3" 1846 + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" 1847 + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== 1848 + dependencies: 1849 + brace-expansion "^2.0.1" 1850 + 1851 + minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: 1852 + version "1.2.8" 1853 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" 1854 + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== 1855 + 1856 + minipass-collect@^1.0.2: 1857 + version "1.0.2" 1858 + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" 1859 + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== 1860 + dependencies: 1861 + minipass "^3.0.0" 1862 + 1863 + minipass-fetch@^3.0.0: 1864 + version "3.0.3" 1865 + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.3.tgz#d9df70085609864331b533c960fd4ffaa78d15ce" 1866 + integrity sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ== 1867 + dependencies: 1868 + minipass "^5.0.0" 1869 + minipass-sized "^1.0.3" 1870 + minizlib "^2.1.2" 1871 + optionalDependencies: 1872 + encoding "^0.1.13" 1873 + 1874 + minipass-flush@^1.0.5: 1875 + version "1.0.5" 1876 + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" 1877 + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== 1878 + dependencies: 1879 + minipass "^3.0.0" 1880 + 1881 + minipass-pipeline@^1.2.4: 1882 + version "1.2.4" 1883 + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" 1884 + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== 1885 + dependencies: 1886 + minipass "^3.0.0" 1887 + 1888 + minipass-sized@^1.0.3: 1889 + version "1.0.3" 1890 + resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" 1891 + integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== 1892 + dependencies: 1893 + minipass "^3.0.0" 1436 1894 1437 1895 minipass@^3.0.0: 1438 1896 version "3.3.6" ··· 1441 1899 dependencies: 1442 1900 yallist "^4.0.0" 1443 1901 1444 - minipass@^4.0.0: 1445 - version "4.0.2" 1446 - resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.0.2.tgz#26fc3364d5ea6cb971c6e5259eac67a0887510d1" 1447 - integrity sha512-4Hbzei7ZyBp+1aw0874YWpKOubZd/jc53/XU+gkYry1QV+VvrbO8icLM5CUtm4F0hyXn85DXYKEMIS26gitD3A== 1902 + minipass@^5.0.0: 1903 + version "5.0.0" 1904 + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" 1905 + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== 1448 1906 1449 - minizlib@^2.1.1: 1907 + "minipass@^5.0.0 || ^6.0.2 || ^7.0.0": 1908 + version "7.0.2" 1909 + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.2.tgz#58a82b7d81c7010da5bd4b2c0c85ac4b4ec5131e" 1910 + integrity sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA== 1911 + 1912 + minizlib@^2.1.1, minizlib@^2.1.2: 1450 1913 version "2.1.2" 1451 1914 resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 1452 1915 integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== ··· 1454 1917 minipass "^3.0.0" 1455 1918 yallist "^4.0.0" 1456 1919 1920 + mitt@3.0.0: 1921 + version "3.0.0" 1922 + resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.0.tgz#69ef9bd5c80ff6f57473e8d89326d01c414be0bd" 1923 + integrity sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ== 1924 + 1457 1925 mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: 1458 1926 version "0.5.3" 1459 1927 resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" ··· 1464 1932 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 1465 1933 integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 1466 1934 1467 - ms@2.0.0: 1468 - version "2.0.0" 1469 - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1470 - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 1471 - 1472 1935 ms@2.1.2: 1473 1936 version "2.1.2" 1474 1937 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1475 1938 integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1476 1939 1940 + ms@^2.0.0: 1941 + version "2.1.3" 1942 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1943 + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1944 + 1477 1945 napi-build-utils@^1.0.1: 1478 1946 version "1.0.2" 1479 1947 resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" 1480 1948 integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== 1481 1949 1950 + negotiator@^0.6.3: 1951 + version "0.6.3" 1952 + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" 1953 + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== 1954 + 1955 + netmask@^2.0.2: 1956 + version "2.0.2" 1957 + resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" 1958 + integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== 1959 + 1482 1960 nice-try@^1.0.4: 1483 1961 version "1.0.5" 1484 1962 resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1485 1963 integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1486 1964 1487 - node-abi@^3.3.0: 1488 - version "3.31.0" 1489 - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.31.0.tgz#dfb2ea3d01188eb80859f69bb4a4354090c1b355" 1490 - integrity sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ== 1965 + node-abi@^3.0.0, node-abi@^3.3.0: 1966 + version "3.45.0" 1967 + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" 1968 + integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== 1491 1969 dependencies: 1492 1970 semver "^7.3.5" 1493 1971 ··· 1501 1979 resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" 1502 1980 integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== 1503 1981 1504 - node-fetch@2.6.7: 1505 - version "2.6.7" 1506 - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 1507 - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1982 + node-api-version@^0.1.4: 1983 + version "0.1.4" 1984 + resolved "https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.1.4.tgz#1ed46a485e462d55d66b5aa1fe2821720dedf080" 1985 + integrity sha512-KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g== 1986 + dependencies: 1987 + semver "^7.3.5" 1988 + 1989 + node-fetch@^2.6.11: 1990 + version "2.6.12" 1991 + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.12.tgz#02eb8e22074018e3d5a83016649d04df0e348fba" 1992 + integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g== 1508 1993 dependencies: 1509 1994 whatwg-url "^5.0.0" 1510 1995 1996 + node-gyp@^9.0.0: 1997 + version "9.4.0" 1998 + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.4.0.tgz#2a7a91c7cba4eccfd95e949369f27c9ba704f369" 1999 + integrity sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg== 2000 + dependencies: 2001 + env-paths "^2.2.0" 2002 + exponential-backoff "^3.1.1" 2003 + glob "^7.1.4" 2004 + graceful-fs "^4.2.6" 2005 + make-fetch-happen "^11.0.3" 2006 + nopt "^6.0.0" 2007 + npmlog "^6.0.0" 2008 + rimraf "^3.0.2" 2009 + semver "^7.3.5" 2010 + tar "^6.1.2" 2011 + which "^2.0.2" 2012 + 2013 + nopt@^6.0.0: 2014 + version "6.0.0" 2015 + resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" 2016 + integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== 2017 + dependencies: 2018 + abbrev "^1.0.0" 2019 + 1511 2020 normalize-url@^6.0.1: 1512 2021 version "6.1.0" 1513 2022 resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" ··· 1520 2029 dependencies: 1521 2030 path-key "^2.0.0" 1522 2031 2032 + npmlog@^6.0.0: 2033 + version "6.0.2" 2034 + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" 2035 + integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== 2036 + dependencies: 2037 + are-we-there-yet "^3.0.0" 2038 + console-control-strings "^1.1.0" 2039 + gauge "^4.0.3" 2040 + set-blocking "^2.0.0" 2041 + 1523 2042 object-keys@^1.1.1: 1524 2043 version "1.1.1" 1525 2044 resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" ··· 1532 2051 dependencies: 1533 2052 wrappy "1" 1534 2053 2054 + onetime@^5.1.0: 2055 + version "5.1.2" 2056 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2057 + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2058 + dependencies: 2059 + mimic-fn "^2.1.0" 2060 + 2061 + optionator@^0.8.1: 2062 + version "0.8.3" 2063 + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2064 + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2065 + dependencies: 2066 + deep-is "~0.1.3" 2067 + fast-levenshtein "~2.0.6" 2068 + levn "~0.3.0" 2069 + prelude-ls "~1.1.2" 2070 + type-check "~0.3.2" 2071 + word-wrap "~1.2.3" 2072 + 2073 + ora@^5.1.0: 2074 + version "5.4.1" 2075 + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" 2076 + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== 2077 + dependencies: 2078 + bl "^4.1.0" 2079 + chalk "^4.1.0" 2080 + cli-cursor "^3.1.0" 2081 + cli-spinners "^2.5.0" 2082 + is-interactive "^1.0.0" 2083 + is-unicode-supported "^0.1.0" 2084 + log-symbols "^4.1.0" 2085 + strip-ansi "^6.0.0" 2086 + wcwidth "^1.0.1" 2087 + 1535 2088 p-cancelable@^2.0.0: 1536 2089 version "2.1.1" 1537 2090 resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" ··· 1542 2095 resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1543 2096 integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== 1544 2097 2098 + p-map@^4.0.0: 2099 + version "4.0.0" 2100 + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 2101 + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 2102 + dependencies: 2103 + aggregate-error "^3.0.0" 2104 + 2105 + pac-proxy-agent@^6.0.3: 2106 + version "6.0.4" 2107 + resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-6.0.4.tgz#f90d066808974cd6813dfcdac69a2aa483b18ba1" 2108 + integrity sha512-FbJYeusBOZNe6bmrC2/+r/HljwExryon16lNKEU82gWiwIPMCEktUPSEAcTkO9K3jd/YPGuX/azZel1ltmo6nQ== 2109 + dependencies: 2110 + agent-base "^7.0.2" 2111 + debug "^4.3.4" 2112 + get-uri "^6.0.1" 2113 + http-proxy-agent "^7.0.0" 2114 + https-proxy-agent "^7.0.0" 2115 + pac-resolver "^6.0.1" 2116 + socks-proxy-agent "^8.0.1" 2117 + 2118 + pac-resolver@^6.0.1: 2119 + version "6.0.2" 2120 + resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-6.0.2.tgz#742ef24d2805b18c0a684ac02bcb0b5ce9644648" 2121 + integrity sha512-EQpuJ2ifOjpZY5sg1Q1ZeAxvtLwR7Mj3RgY8cysPGbsRu3RBXyJFWxnMus9PScjxya/0LzvVDxNh/gl0eXBU4w== 2122 + dependencies: 2123 + degenerator "^4.0.4" 2124 + ip "^1.1.8" 2125 + netmask "^2.0.2" 2126 + 1545 2127 parent-module@^1.0.0: 1546 2128 version "1.0.1" 1547 2129 resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" ··· 1574 2156 resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1575 2157 integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1576 2158 2159 + path-scurry@^1.10.1: 2160 + version "1.10.1" 2161 + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" 2162 + integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== 2163 + dependencies: 2164 + lru-cache "^9.1.1 || ^10.0.0" 2165 + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" 2166 + 1577 2167 path-type@^4.0.0: 1578 2168 version "4.0.0" 1579 2169 resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" ··· 1584 2174 resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1585 2175 integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== 1586 2176 1587 - plist@^3.0.1, plist@^3.0.4: 1588 - version "3.0.6" 1589 - resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.6.tgz#7cfb68a856a7834bca6dbfe3218eb9c7740145d3" 1590 - integrity sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA== 2177 + plist@^3.0.4, plist@^3.0.5: 2178 + version "3.1.0" 2179 + resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" 2180 + integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ== 1591 2181 dependencies: 2182 + "@xmldom/xmldom" "^0.8.8" 1592 2183 base64-js "^1.5.1" 1593 2184 xmlbuilder "^15.1.1" 1594 2185 ··· 1610 2201 tar-fs "^2.0.0" 1611 2202 tunnel-agent "^0.6.0" 1612 2203 2204 + prelude-ls@~1.1.2: 2205 + version "1.1.2" 2206 + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2207 + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== 2208 + 1613 2209 progress@2.0.3, progress@^2.0.3: 1614 2210 version "2.0.3" 1615 2211 resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1616 2212 integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1617 2213 1618 - proxy-from-env@1.1.0, proxy-from-env@^1.1.0: 2214 + promise-retry@^2.0.1: 2215 + version "2.0.1" 2216 + resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" 2217 + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== 2218 + dependencies: 2219 + err-code "^2.0.2" 2220 + retry "^0.12.0" 2221 + 2222 + proxy-agent@6.2.1: 2223 + version "6.2.1" 2224 + resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-6.2.1.tgz#062df6609a4012fd1c108974865599b61e77abde" 2225 + integrity sha512-OIbBKlRAT+ycCm6wAYIzMwPejzRtjy8F3QiDX0eKOA3e4pe3U9F/IvzcHP42bmgQxVv97juG+J8/gx+JIeCX/Q== 2226 + dependencies: 2227 + agent-base "^7.0.2" 2228 + debug "^4.3.4" 2229 + http-proxy-agent "^7.0.0" 2230 + https-proxy-agent "^7.0.0" 2231 + lru-cache "^7.14.1" 2232 + pac-proxy-agent "^6.0.3" 2233 + proxy-from-env "^1.1.0" 2234 + socks-proxy-agent "^8.0.1" 2235 + 2236 + proxy-from-env@^1.1.0: 1619 2237 version "1.1.0" 1620 2238 resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" 1621 2239 integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== ··· 1633 2251 resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" 1634 2252 integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1635 2253 1636 - puppeteer-core@19.4.0: 1637 - version "19.4.0" 1638 - resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-19.4.0.tgz#3f52945d8cfa20cf8721a7902afcd8a1a299b54d" 1639 - integrity sha512-gG/jxseleZStinBn86x8r7trjcE4jcjx1hIQWOpACQhquHYMuKnrWxkzg+EDn8sN3wUtF/Ry9mtJgjM49oUOFQ== 2254 + puppeteer-core@20.5.0: 2255 + version "20.5.0" 2256 + resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-20.5.0.tgz#4b9ccd6c4ca35fe02373bf2147dc75b42ebd22c4" 2257 + integrity sha512-9ddHXUQ7jpliGei87zYTuEZYQvFj6Lzk5R8w4vT4gMmNArkEqC5CX72TnVIJiTUbiTpOXJkvMQaXIHYopjdUtQ== 1640 2258 dependencies: 1641 - cross-fetch "3.1.5" 2259 + "@puppeteer/browsers" "1.4.1" 2260 + chromium-bidi "0.4.11" 2261 + cross-fetch "3.1.6" 1642 2262 debug "4.3.4" 1643 - devtools-protocol "0.0.1068969" 1644 - extract-zip "2.0.1" 1645 - https-proxy-agent "5.0.1" 1646 - proxy-from-env "1.1.0" 1647 - rimraf "3.0.2" 1648 - tar-fs "2.1.1" 1649 - unbzip2-stream "1.4.3" 1650 - ws "8.10.0" 2263 + devtools-protocol "0.0.1120988" 2264 + ws "8.13.0" 1651 2265 1652 - puppeteer@19.4.0: 1653 - version "19.4.0" 1654 - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-19.4.0.tgz#3adfcb415e96d7b5900a66a1097947272313ee9f" 1655 - integrity sha512-sRzWEfFSZCCcFUJflGtYI2V7A6qK4Jht+2JiI2LZgn+Nv/LOZZsBDEaGl98ZrS8oEcUA5on4p2yJbE0nzHNzIg== 2266 + puppeteer@20.5.0: 2267 + version "20.5.0" 2268 + resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-20.5.0.tgz#453f42edb2cb085bb237914c2bcda7938b7ab1c2" 2269 + integrity sha512-3j0JShJGDT5z8rfDKf+wZQq3IHxw7JaDAdP7py5H5zOIgmqNG0e8R19y4tFzJ8i2WC4H/0bC51rIrTXyDop1FA== 1656 2270 dependencies: 1657 - cosmiconfig "8.0.0" 1658 - devtools-protocol "0.0.1068969" 1659 - https-proxy-agent "5.0.1" 1660 - progress "2.0.3" 1661 - proxy-from-env "1.1.0" 1662 - puppeteer-core "19.4.0" 2271 + "@puppeteer/browsers" "1.4.1" 2272 + cosmiconfig "8.1.3" 2273 + puppeteer-core "20.5.0" 1663 2274 1664 2275 quick-lru@^5.1.1: 1665 2276 version "5.1.1" ··· 1676 2287 minimist "^1.2.0" 1677 2288 strip-json-comments "~2.0.1" 1678 2289 1679 - read-config-file@6.2.0: 1680 - version "6.2.0" 1681 - resolved "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.2.0.tgz#71536072330bcd62ba814f91458b12add9fc7ade" 1682 - integrity sha512-gx7Pgr5I56JtYz+WuqEbQHj/xWo+5Vwua2jhb1VwM4Wid5PqYmZ4i00ZB0YEGIfkVBsCv9UrjgyqCiQfS/Oosg== 2290 + read-config-file@6.3.2: 2291 + version "6.3.2" 2292 + resolved "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.3.2.tgz#556891aa6ffabced916ed57457cb192e61880411" 2293 + integrity sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q== 1683 2294 dependencies: 2295 + config-file-ts "^0.2.4" 1684 2296 dotenv "^9.0.2" 1685 2297 dotenv-expand "^5.1.0" 1686 2298 js-yaml "^4.1.0" 1687 2299 json5 "^2.2.0" 1688 2300 lazy-val "^1.0.4" 1689 2301 1690 - readable-stream@^3.1.1, readable-stream@^3.4.0: 1691 - version "3.6.0" 1692 - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1693 - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 2302 + readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: 2303 + version "3.6.2" 2304 + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" 2305 + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== 1694 2306 dependencies: 1695 2307 inherits "^2.0.3" 1696 2308 string_decoder "^1.1.1" ··· 1718 2330 dependencies: 1719 2331 lowercase-keys "^2.0.0" 1720 2332 1721 - rimraf@3.0.2, rimraf@^3.0.0: 2333 + restore-cursor@^3.1.0: 2334 + version "3.1.0" 2335 + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 2336 + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 2337 + dependencies: 2338 + onetime "^5.1.0" 2339 + signal-exit "^3.0.2" 2340 + 2341 + retry@^0.12.0: 2342 + version "0.12.0" 2343 + resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" 2344 + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== 2345 + 2346 + rimraf@^3.0.0, rimraf@^3.0.2: 1722 2347 version "3.0.2" 1723 2348 resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1724 2349 integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== ··· 1765 2390 integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== 1766 2391 1767 2392 semver@^5.5.0: 1768 - version "5.7.1" 1769 - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1770 - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2393 + version "5.7.2" 2394 + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" 2395 + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== 1771 2396 1772 2397 semver@^6.2.0: 1773 - version "6.3.0" 1774 - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1775 - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2398 + version "6.3.1" 2399 + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 2400 + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 1776 2401 1777 - semver@^7.3.2, semver@^7.3.5, semver@^7.3.7: 1778 - version "7.3.8" 1779 - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1780 - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 2402 + semver@^7.3.2, semver@^7.3.5, semver@^7.3.8: 2403 + version "7.5.4" 2404 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" 2405 + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== 1781 2406 dependencies: 1782 2407 lru-cache "^6.0.0" 1783 2408 ··· 1792 2417 integrity sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw== 1793 2418 dependencies: 1794 2419 type-fest "^0.13.1" 2420 + 2421 + set-blocking@^2.0.0: 2422 + version "2.0.0" 2423 + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2424 + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== 1795 2425 1796 2426 shebang-command@^1.2.0: 1797 2427 version "1.2.0" ··· 1817 2447 resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1818 2448 integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1819 2449 1820 - signal-exit@^3.0.0: 2450 + signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.7: 1821 2451 version "3.0.7" 1822 2452 resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 1823 2453 integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2454 + 2455 + signal-exit@^4.0.1: 2456 + version "4.0.2" 2457 + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" 2458 + integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== 1824 2459 1825 2460 simple-concat@^1.0.0: 1826 2461 version "1.0.1" ··· 1836 2471 once "^1.3.1" 1837 2472 simple-concat "^1.0.0" 1838 2473 1839 - simple-update-notifier@^1.0.7: 2474 + simple-update-notifier@^1.1.0: 1840 2475 version "1.1.0" 1841 2476 resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82" 1842 2477 integrity sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg== ··· 1852 2487 astral-regex "^2.0.0" 1853 2488 is-fullwidth-code-point "^3.0.0" 1854 2489 1855 - smart-buffer@^4.0.2: 2490 + smart-buffer@^4.0.2, smart-buffer@^4.2.0: 1856 2491 version "4.2.0" 1857 2492 resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" 1858 2493 integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== 1859 2494 2495 + socks-proxy-agent@^7.0.0: 2496 + version "7.0.0" 2497 + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" 2498 + integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== 2499 + dependencies: 2500 + agent-base "^6.0.2" 2501 + debug "^4.3.3" 2502 + socks "^2.6.2" 2503 + 2504 + socks-proxy-agent@^8.0.1: 2505 + version "8.0.1" 2506 + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.1.tgz#ffc5859a66dac89b0c4dab90253b96705f3e7120" 2507 + integrity sha512-59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ== 2508 + dependencies: 2509 + agent-base "^7.0.1" 2510 + debug "^4.3.4" 2511 + socks "^2.7.1" 2512 + 2513 + socks@^2.6.2, socks@^2.7.1: 2514 + version "2.7.1" 2515 + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" 2516 + integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== 2517 + dependencies: 2518 + ip "^2.0.0" 2519 + smart-buffer "^4.2.0" 2520 + 1860 2521 source-map-support@^0.5.19: 1861 2522 version "0.5.21" 1862 2523 resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" ··· 1865 2526 buffer-from "^1.0.0" 1866 2527 source-map "^0.6.0" 1867 2528 1868 - source-map@^0.6.0: 2529 + source-map@^0.6.0, source-map@~0.6.1: 1869 2530 version "0.6.1" 1870 2531 resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1871 2532 integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== ··· 1875 2536 resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" 1876 2537 integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== 1877 2538 2539 + ssri@^10.0.0: 2540 + version "10.0.4" 2541 + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.4.tgz#5a20af378be586df139ddb2dfb3bf992cf0daba6" 2542 + integrity sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ== 2543 + dependencies: 2544 + minipass "^5.0.0" 2545 + 1878 2546 stat-mode@^1.0.0: 1879 2547 version "1.0.0" 1880 2548 resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" 1881 2549 integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== 1882 2550 1883 - string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2551 + "string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 1884 2552 version "4.2.3" 1885 2553 resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1886 2554 integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== ··· 1889 2557 is-fullwidth-code-point "^3.0.0" 1890 2558 strip-ansi "^6.0.1" 1891 2559 2560 + string-width@^5.0.1, string-width@^5.1.2: 2561 + version "5.1.2" 2562 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" 2563 + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== 2564 + dependencies: 2565 + eastasianwidth "^0.2.0" 2566 + emoji-regex "^9.2.2" 2567 + strip-ansi "^7.0.1" 2568 + 1892 2569 string_decoder@^1.1.1: 1893 2570 version "1.3.0" 1894 2571 resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" ··· 1896 2573 dependencies: 1897 2574 safe-buffer "~5.2.0" 1898 2575 1899 - strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2576 + "strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: 1900 2577 version "6.0.1" 1901 2578 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1902 2579 integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1903 2580 dependencies: 1904 2581 ansi-regex "^5.0.1" 1905 2582 2583 + strip-ansi@^7.0.1: 2584 + version "7.1.0" 2585 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" 2586 + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== 2587 + dependencies: 2588 + ansi-regex "^6.0.1" 2589 + 1906 2590 strip-eof@^1.0.0: 1907 2591 version "1.0.0" 1908 2592 resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" ··· 1955 2639 inherits "^2.0.3" 1956 2640 readable-stream "^3.1.1" 1957 2641 1958 - tar@^6.1.11: 1959 - version "6.1.13" 1960 - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b" 1961 - integrity sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw== 2642 + tar@^6.0.5, tar@^6.1.11, tar@^6.1.12, tar@^6.1.2: 2643 + version "6.1.15" 2644 + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69" 2645 + integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A== 1962 2646 dependencies: 1963 2647 chownr "^2.0.0" 1964 2648 fs-minipass "^2.0.0" 1965 - minipass "^4.0.0" 2649 + minipass "^5.0.0" 1966 2650 minizlib "^2.1.1" 1967 2651 mkdirp "^1.0.3" 1968 2652 yallist "^4.0.0" ··· 2006 2690 dependencies: 2007 2691 utf8-byte-length "^1.0.1" 2008 2692 2693 + tslib@^2.0.1: 2694 + version "2.6.0" 2695 + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" 2696 + integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== 2697 + 2009 2698 tunnel-agent@^0.6.0: 2010 2699 version "0.6.0" 2011 2700 resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" ··· 2013 2702 dependencies: 2014 2703 safe-buffer "^5.0.1" 2015 2704 2705 + type-check@~0.3.2: 2706 + version "0.3.2" 2707 + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2708 + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== 2709 + dependencies: 2710 + prelude-ls "~1.1.2" 2711 + 2016 2712 type-fest@^0.13.1: 2017 2713 version "0.13.1" 2018 2714 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" 2019 2715 integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== 2020 2716 2717 + typescript@^4.0.2: 2718 + version "4.9.5" 2719 + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" 2720 + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== 2721 + 2021 2722 unbzip2-stream@1.4.3: 2022 2723 version "1.4.3" 2023 2724 resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" ··· 2025 2726 dependencies: 2026 2727 buffer "^5.2.1" 2027 2728 through "^2.3.8" 2729 + 2730 + unique-filename@^3.0.0: 2731 + version "3.0.0" 2732 + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" 2733 + integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== 2734 + dependencies: 2735 + unique-slug "^4.0.0" 2736 + 2737 + unique-slug@^4.0.0: 2738 + version "4.0.0" 2739 + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" 2740 + integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== 2741 + dependencies: 2742 + imurmurhash "^0.1.4" 2028 2743 2029 2744 universalify@^0.1.0: 2030 2745 version "0.1.2" ··· 2062 2777 core-util-is "1.0.2" 2063 2778 extsprintf "^1.2.0" 2064 2779 2780 + vm2@^3.9.19: 2781 + version "3.9.19" 2782 + resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.9.19.tgz#be1e1d7a106122c6c492b4d51c2e8b93d3ed6a4a" 2783 + integrity sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg== 2784 + dependencies: 2785 + acorn "^8.7.0" 2786 + acorn-walk "^8.2.0" 2787 + 2788 + wcwidth@^1.0.1: 2789 + version "1.0.1" 2790 + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 2791 + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== 2792 + dependencies: 2793 + defaults "^1.0.3" 2794 + 2065 2795 webidl-conversions@^3.0.0: 2066 2796 version "3.0.1" 2067 2797 resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" ··· 2082 2812 dependencies: 2083 2813 isexe "^2.0.0" 2084 2814 2085 - which@^2.0.1: 2815 + which@^2.0.1, which@^2.0.2: 2086 2816 version "2.0.2" 2087 2817 resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2088 2818 integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2089 2819 dependencies: 2090 2820 isexe "^2.0.0" 2091 2821 2092 - wrap-ansi@^7.0.0: 2822 + wide-align@^1.1.5: 2823 + version "1.1.5" 2824 + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" 2825 + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== 2826 + dependencies: 2827 + string-width "^1.0.2 || 2 || 3 || 4" 2828 + 2829 + word-wrap@~1.2.3: 2830 + version "1.2.5" 2831 + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" 2832 + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== 2833 + 2834 + "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: 2093 2835 version "7.0.0" 2094 2836 resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2095 2837 integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== ··· 2098 2840 string-width "^4.1.0" 2099 2841 strip-ansi "^6.0.0" 2100 2842 2843 + wrap-ansi@^8.1.0: 2844 + version "8.1.0" 2845 + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" 2846 + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== 2847 + dependencies: 2848 + ansi-styles "^6.1.0" 2849 + string-width "^5.0.1" 2850 + strip-ansi "^7.0.1" 2851 + 2101 2852 wrappy@1: 2102 2853 version "1.0.2" 2103 2854 resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2104 2855 integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2105 2856 2106 - ws@8.10.0: 2107 - version "8.10.0" 2108 - resolved "https://registry.yarnpkg.com/ws/-/ws-8.10.0.tgz#00a28c09dfb76eae4eb45c3b565f771d6951aa51" 2109 - integrity sha512-+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw== 2857 + ws@8.13.0: 2858 + version "8.13.0" 2859 + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" 2860 + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== 2110 2861 2111 2862 xmlbuilder@>=11.0.1, xmlbuilder@^15.1.1: 2112 2863 version "15.1.1" ··· 2128 2879 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 2129 2880 integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 2130 2881 2131 - yargs@^17.5.1: 2132 - version "17.6.2" 2133 - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541" 2134 - integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw== 2882 + yargs@17.7.1: 2883 + version "17.7.1" 2884 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967" 2885 + integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw== 2886 + dependencies: 2887 + cliui "^8.0.1" 2888 + escalade "^3.1.1" 2889 + get-caller-file "^2.0.5" 2890 + require-directory "^2.1.1" 2891 + string-width "^4.2.3" 2892 + y18n "^5.0.5" 2893 + yargs-parser "^21.1.1" 2894 + 2895 + yargs@^17.0.1, yargs@^17.6.2: 2896 + version "17.7.2" 2897 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" 2898 + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== 2135 2899 dependencies: 2136 2900 cliui "^8.0.1" 2137 2901 escalade "^3.1.1"
+1116 -300
pkgs/tools/misc/sharedown/yarndeps.nix
··· 10 10 }; 11 11 } 12 12 { 13 - name = "_babel_code_frame___code_frame_7.18.6.tgz"; 13 + name = "_babel_code_frame___code_frame_7.22.5.tgz"; 14 14 path = fetchurl { 15 - name = "_babel_code_frame___code_frame_7.18.6.tgz"; 16 - url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz"; 17 - sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; 15 + name = "_babel_code_frame___code_frame_7.22.5.tgz"; 16 + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz"; 17 + sha512 = "Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="; 18 18 }; 19 19 } 20 20 { 21 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.19.1.tgz"; 21 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.22.5.tgz"; 22 22 path = fetchurl { 23 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.19.1.tgz"; 24 - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"; 25 - sha512 = "awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="; 23 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.22.5.tgz"; 24 + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz"; 25 + sha512 = "aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="; 26 26 }; 27 27 } 28 28 { 29 - name = "_babel_highlight___highlight_7.18.6.tgz"; 29 + name = "_babel_highlight___highlight_7.22.5.tgz"; 30 30 path = fetchurl { 31 - name = "_babel_highlight___highlight_7.18.6.tgz"; 32 - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz"; 33 - sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 31 + name = "_babel_highlight___highlight_7.22.5.tgz"; 32 + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz"; 33 + sha512 = "BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="; 34 34 }; 35 35 } 36 36 { ··· 42 42 }; 43 43 } 44 44 { 45 + name = "_electron_asar___asar_3.2.4.tgz"; 46 + path = fetchurl { 47 + name = "_electron_asar___asar_3.2.4.tgz"; 48 + url = "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.4.tgz"; 49 + sha512 = "lykfY3TJRRWFeTxccEKdf1I6BLl2Plw81H0bbp4Fc5iEc67foDCa5pjJQULVgo0wF+Dli75f3xVcdb/67FFZ/g=="; 50 + }; 51 + } 52 + { 45 53 name = "_electron_get___get_2.0.2.tgz"; 46 54 path = fetchurl { 47 55 name = "_electron_get___get_2.0.2.tgz"; ··· 50 58 }; 51 59 } 52 60 { 53 - name = "_electron_universal___universal_1.2.1.tgz"; 61 + name = "_electron_notarize___notarize_1.2.4.tgz"; 62 + path = fetchurl { 63 + name = "_electron_notarize___notarize_1.2.4.tgz"; 64 + url = "https://registry.yarnpkg.com/@electron/notarize/-/notarize-1.2.4.tgz"; 65 + sha512 = "W5GQhJEosFNafewnS28d3bpQ37/s91CDWqxVchHfmv2dQSTWpOzNlUVQwYzC1ay5bChRV/A9BTL68yj0Pa+TSg=="; 66 + }; 67 + } 68 + { 69 + name = "_electron_osx_sign___osx_sign_1.0.4.tgz"; 70 + path = fetchurl { 71 + name = "_electron_osx_sign___osx_sign_1.0.4.tgz"; 72 + url = "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.0.4.tgz"; 73 + sha512 = "xfhdEcIOfAZg7scZ9RQPya1G1lWo8/zMCwUXAulq0SfY7ONIW+b9qGyKdMyuMctNYwllrIS+vmxfijSfjeh97g=="; 74 + }; 75 + } 76 + { 77 + name = "_electron_rebuild___rebuild_3.2.13.tgz"; 54 78 path = fetchurl { 55 - name = "_electron_universal___universal_1.2.1.tgz"; 56 - url = "https://registry.yarnpkg.com/@electron/universal/-/universal-1.2.1.tgz"; 57 - sha512 = "7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ=="; 79 + name = "_electron_rebuild___rebuild_3.2.13.tgz"; 80 + url = "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-3.2.13.tgz"; 81 + sha512 = "DH9Ol4JCnHDYVOD0fKWq+Qqbn/0WU1O6QR0mIpMXEVU4YFM4PlaqNC9K36mGShNBxxGFotZCMDrB1wl/iHM12g=="; 58 82 }; 59 83 } 60 84 { 61 - name = "_fortawesome_fontawesome_free___fontawesome_free_6.2.1.tgz"; 85 + name = "_electron_universal___universal_1.3.4.tgz"; 62 86 path = fetchurl { 63 - name = "_fortawesome_fontawesome_free___fontawesome_free_6.2.1.tgz"; 64 - url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.2.1.tgz"; 65 - sha512 = "viouXhegu/TjkvYQoiRZK3aax69dGXxgEjpvZW81wIJdxm5Fnvp3VVIP4VHKqX4SvFw6qpmkILkD4RJWAdrt7A=="; 87 + name = "_electron_universal___universal_1.3.4.tgz"; 88 + url = "https://registry.yarnpkg.com/@electron/universal/-/universal-1.3.4.tgz"; 89 + sha512 = "BdhBgm2ZBnYyYRLRgOjM5VHkyFItsbggJ0MHycOjKWdFGYwK97ZFXH54dTvUWEfha81vfvwr5On6XBjt99uDcg=="; 90 + }; 91 + } 92 + { 93 + name = "_fortawesome_fontawesome_free___fontawesome_free_6.4.0.tgz"; 94 + path = fetchurl { 95 + name = "_fortawesome_fontawesome_free___fontawesome_free_6.4.0.tgz"; 96 + url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-6.4.0.tgz"; 97 + sha512 = "0NyytTlPJwB/BF5LtRV8rrABDbe3TdTXqNB3PdZ+UUUZAEIrdOJdmABqKjt4AXwIoJNaRVVZEXxpNrqvE1GAYQ=="; 98 + }; 99 + } 100 + { 101 + name = "_isaacs_cliui___cliui_8.0.2.tgz"; 102 + path = fetchurl { 103 + name = "_isaacs_cliui___cliui_8.0.2.tgz"; 104 + url = "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz"; 105 + sha512 = "O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="; 66 106 }; 67 107 } 68 108 { ··· 74 114 }; 75 115 } 76 116 { 117 + name = "_malept_cross_spawn_promise___cross_spawn_promise_2.0.0.tgz"; 118 + path = fetchurl { 119 + name = "_malept_cross_spawn_promise___cross_spawn_promise_2.0.0.tgz"; 120 + url = "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz"; 121 + sha512 = "1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg=="; 122 + }; 123 + } 124 + { 77 125 name = "_malept_flatpak_bundler___flatpak_bundler_0.4.0.tgz"; 78 126 path = fetchurl { 79 127 name = "_malept_flatpak_bundler___flatpak_bundler_0.4.0.tgz"; ··· 82 130 }; 83 131 } 84 132 { 133 + name = "_npmcli_fs___fs_3.1.0.tgz"; 134 + path = fetchurl { 135 + name = "_npmcli_fs___fs_3.1.0.tgz"; 136 + url = "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz"; 137 + sha512 = "7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w=="; 138 + }; 139 + } 140 + { 141 + name = "_pkgjs_parseargs___parseargs_0.11.0.tgz"; 142 + path = fetchurl { 143 + name = "_pkgjs_parseargs___parseargs_0.11.0.tgz"; 144 + url = "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"; 145 + sha512 = "+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="; 146 + }; 147 + } 148 + { 149 + name = "_puppeteer_browsers___browsers_1.4.1.tgz"; 150 + path = fetchurl { 151 + name = "_puppeteer_browsers___browsers_1.4.1.tgz"; 152 + url = "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-1.4.1.tgz"; 153 + sha512 = "H43VosMzywHCcYcgv0GXXopvwnV21Ud9g2aXbPlQUJj1Xcz9V0wBwHeFz6saFhx/3VKisZfI1GEKEOhQCau7Vw=="; 154 + }; 155 + } 156 + { 85 157 name = "_sindresorhus_is___is_4.6.0.tgz"; 86 158 path = fetchurl { 87 159 name = "_sindresorhus_is___is_4.6.0.tgz"; ··· 114 186 }; 115 187 } 116 188 { 117 - name = "_types_debug___debug_4.1.7.tgz"; 189 + name = "_types_debug___debug_4.1.8.tgz"; 118 190 path = fetchurl { 119 - name = "_types_debug___debug_4.1.7.tgz"; 120 - url = "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz"; 121 - sha512 = "9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg=="; 191 + name = "_types_debug___debug_4.1.8.tgz"; 192 + url = "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz"; 193 + sha512 = "/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ=="; 122 194 }; 123 195 } 124 196 { ··· 130 202 }; 131 203 } 132 204 { 133 - name = "_types_glob___glob_7.2.0.tgz"; 134 - path = fetchurl { 135 - name = "_types_glob___glob_7.2.0.tgz"; 136 - url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz"; 137 - sha512 = "ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="; 138 - }; 139 - } 140 - { 141 205 name = "_types_http_cache_semantics___http_cache_semantics_4.0.1.tgz"; 142 206 path = fetchurl { 143 207 name = "_types_http_cache_semantics___http_cache_semantics_4.0.1.tgz"; ··· 154 218 }; 155 219 } 156 220 { 157 - name = "_types_minimatch___minimatch_5.1.2.tgz"; 158 - path = fetchurl { 159 - name = "_types_minimatch___minimatch_5.1.2.tgz"; 160 - url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz"; 161 - sha512 = "K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA=="; 162 - }; 163 - } 164 - { 165 221 name = "_types_ms___ms_0.7.31.tgz"; 166 222 path = fetchurl { 167 223 name = "_types_ms___ms_0.7.31.tgz"; ··· 170 226 }; 171 227 } 172 228 { 173 - name = "_types_node___node_18.11.19.tgz"; 229 + name = "_types_node___node_20.4.4.tgz"; 174 230 path = fetchurl { 175 - name = "_types_node___node_18.11.19.tgz"; 176 - url = "https://registry.yarnpkg.com/@types/node/-/node-18.11.19.tgz"; 177 - sha512 = "YUgMWAQBWLObABqrvx8qKO1enAvBUdjZOAWQ5grBAkp5LQv45jBvYKZ3oFS9iKRCQyFjqw6iuEa1vmFqtxYLZw=="; 231 + name = "_types_node___node_20.4.4.tgz"; 232 + url = "https://registry.yarnpkg.com/@types/node/-/node-20.4.4.tgz"; 233 + sha512 = "CukZhumInROvLq3+b5gLev+vgpsIqC2D0deQr/yS1WnxvmYLlJXZpaQrQiseMY+6xusl79E04UjWoqyr+t1/Ew=="; 178 234 }; 179 235 } 180 236 { 181 - name = "_types_node___node_16.18.12.tgz"; 237 + name = "_types_node___node_18.17.0.tgz"; 182 238 path = fetchurl { 183 - name = "_types_node___node_16.18.12.tgz"; 184 - url = "https://registry.yarnpkg.com/@types/node/-/node-16.18.12.tgz"; 185 - sha512 = "vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw=="; 239 + name = "_types_node___node_18.17.0.tgz"; 240 + url = "https://registry.yarnpkg.com/@types/node/-/node-18.17.0.tgz"; 241 + sha512 = "GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg=="; 186 242 }; 187 243 } 188 244 { ··· 210 266 }; 211 267 } 212 268 { 213 - name = "_types_yargs_parser___yargs_parser_21.0.0.tgz"; 269 + name = "_types_yauzl___yauzl_2.10.0.tgz"; 214 270 path = fetchurl { 215 - name = "_types_yargs_parser___yargs_parser_21.0.0.tgz"; 216 - url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz"; 217 - sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 271 + name = "_types_yauzl___yauzl_2.10.0.tgz"; 272 + url = "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz"; 273 + sha512 = "Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw=="; 218 274 }; 219 275 } 220 276 { 221 - name = "_types_yargs___yargs_17.0.22.tgz"; 277 + name = "_xmldom_xmldom___xmldom_0.8.10.tgz"; 222 278 path = fetchurl { 223 - name = "_types_yargs___yargs_17.0.22.tgz"; 224 - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.22.tgz"; 225 - sha512 = "pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g=="; 279 + name = "_xmldom_xmldom___xmldom_0.8.10.tgz"; 280 + url = "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz"; 281 + sha512 = "2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw=="; 226 282 }; 227 283 } 228 284 { 229 - name = "_types_yauzl___yauzl_2.10.0.tgz"; 285 + name = "abbrev___abbrev_1.1.1.tgz"; 230 286 path = fetchurl { 231 - name = "_types_yauzl___yauzl_2.10.0.tgz"; 232 - url = "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz"; 233 - sha512 = "Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw=="; 287 + name = "abbrev___abbrev_1.1.1.tgz"; 288 + url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; 289 + sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 290 + }; 291 + } 292 + { 293 + name = "acorn_walk___acorn_walk_8.2.0.tgz"; 294 + path = fetchurl { 295 + name = "acorn_walk___acorn_walk_8.2.0.tgz"; 296 + url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz"; 297 + sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="; 298 + }; 299 + } 300 + { 301 + name = "acorn___acorn_8.10.0.tgz"; 302 + path = fetchurl { 303 + name = "acorn___acorn_8.10.0.tgz"; 304 + url = "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz"; 305 + sha512 = "F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="; 234 306 }; 235 307 } 236 308 { ··· 242 314 }; 243 315 } 244 316 { 317 + name = "agent_base___agent_base_7.1.0.tgz"; 318 + path = fetchurl { 319 + name = "agent_base___agent_base_7.1.0.tgz"; 320 + url = "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.0.tgz"; 321 + sha512 = "o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg=="; 322 + }; 323 + } 324 + { 325 + name = "agentkeepalive___agentkeepalive_4.3.0.tgz"; 326 + path = fetchurl { 327 + name = "agentkeepalive___agentkeepalive_4.3.0.tgz"; 328 + url = "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz"; 329 + sha512 = "7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg=="; 330 + }; 331 + } 332 + { 333 + name = "aggregate_error___aggregate_error_3.1.0.tgz"; 334 + path = fetchurl { 335 + name = "aggregate_error___aggregate_error_3.1.0.tgz"; 336 + url = "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz"; 337 + sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="; 338 + }; 339 + } 340 + { 245 341 name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; 246 342 path = fetchurl { 247 343 name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; ··· 266 362 }; 267 363 } 268 364 { 365 + name = "ansi_regex___ansi_regex_6.0.1.tgz"; 366 + path = fetchurl { 367 + name = "ansi_regex___ansi_regex_6.0.1.tgz"; 368 + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz"; 369 + sha512 = "n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="; 370 + }; 371 + } 372 + { 269 373 name = "ansi_styles___ansi_styles_3.2.1.tgz"; 270 374 path = fetchurl { 271 375 name = "ansi_styles___ansi_styles_3.2.1.tgz"; ··· 282 386 }; 283 387 } 284 388 { 389 + name = "ansi_styles___ansi_styles_6.2.1.tgz"; 390 + path = fetchurl { 391 + name = "ansi_styles___ansi_styles_6.2.1.tgz"; 392 + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz"; 393 + sha512 = "bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="; 394 + }; 395 + } 396 + { 285 397 name = "app_builder_bin___app_builder_bin_4.0.0.tgz"; 286 398 path = fetchurl { 287 399 name = "app_builder_bin___app_builder_bin_4.0.0.tgz"; ··· 290 402 }; 291 403 } 292 404 { 293 - name = "app_builder_lib___app_builder_lib_23.6.0.tgz"; 405 + name = "app_builder_lib___app_builder_lib_24.4.0.tgz"; 294 406 path = fetchurl { 295 - name = "app_builder_lib___app_builder_lib_23.6.0.tgz"; 296 - url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-23.6.0.tgz"; 297 - sha512 = "dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA=="; 407 + name = "app_builder_lib___app_builder_lib_24.4.0.tgz"; 408 + url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-24.4.0.tgz"; 409 + sha512 = "EcdqtWvg1LAApKCfyRBukcVkmsa94s2e1VKHjZLpvA9/D14QEt8rHhffYeaA+cH/pVeoNVn2ob735KnfJKEEow=="; 410 + }; 411 + } 412 + { 413 + name = "aproba___aproba_2.0.0.tgz"; 414 + path = fetchurl { 415 + name = "aproba___aproba_2.0.0.tgz"; 416 + url = "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz"; 417 + sha512 = "lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="; 298 418 }; 299 419 } 300 420 { ··· 306 426 }; 307 427 } 308 428 { 429 + name = "are_we_there_yet___are_we_there_yet_3.0.1.tgz"; 430 + path = fetchurl { 431 + name = "are_we_there_yet___are_we_there_yet_3.0.1.tgz"; 432 + url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz"; 433 + sha512 = "QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg=="; 434 + }; 435 + } 436 + { 309 437 name = "argparse___argparse_2.0.1.tgz"; 310 438 path = fetchurl { 311 439 name = "argparse___argparse_2.0.1.tgz"; ··· 314 442 }; 315 443 } 316 444 { 317 - name = "asar___asar_3.2.0.tgz"; 445 + name = "assert_plus___assert_plus_1.0.0.tgz"; 318 446 path = fetchurl { 319 - name = "asar___asar_3.2.0.tgz"; 320 - url = "https://registry.yarnpkg.com/asar/-/asar-3.2.0.tgz"; 321 - sha512 = "COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg=="; 447 + name = "assert_plus___assert_plus_1.0.0.tgz"; 448 + url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; 449 + sha512 = "NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="; 322 450 }; 323 451 } 324 452 { 325 - name = "assert_plus___assert_plus_1.0.0.tgz"; 453 + name = "ast_types___ast_types_0.13.4.tgz"; 326 454 path = fetchurl { 327 - name = "assert_plus___assert_plus_1.0.0.tgz"; 328 - url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; 329 - sha512 = "NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="; 455 + name = "ast_types___ast_types_0.13.4.tgz"; 456 + url = "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz"; 457 + sha512 = "x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w=="; 330 458 }; 331 459 } 332 460 { ··· 370 498 }; 371 499 } 372 500 { 373 - name = "axios___axios_1.3.2.tgz"; 501 + name = "axios___axios_1.4.0.tgz"; 374 502 path = fetchurl { 375 - name = "axios___axios_1.3.2.tgz"; 376 - url = "https://registry.yarnpkg.com/axios/-/axios-1.3.2.tgz"; 377 - sha512 = "1M3O703bYqYuPhbHeya5bnhpYVsDDRyQSabNja04mZtboLNSuZ4YrltestrLXfHgmzua4TpUqRiVKbiQuo2epw=="; 503 + name = "axios___axios_1.4.0.tgz"; 504 + url = "https://registry.yarnpkg.com/axios/-/axios-1.4.0.tgz"; 505 + sha512 = "S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA=="; 378 506 }; 379 507 } 380 508 { ··· 391 519 name = "base64_js___base64_js_1.5.1.tgz"; 392 520 url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz"; 393 521 sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; 522 + }; 523 + } 524 + { 525 + name = "basic_ftp___basic_ftp_5.0.3.tgz"; 526 + path = fetchurl { 527 + name = "basic_ftp___basic_ftp_5.0.3.tgz"; 528 + url = "https://registry.yarnpkg.com/basic-ftp/-/basic-ftp-5.0.3.tgz"; 529 + sha512 = "QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g=="; 394 530 }; 395 531 } 396 532 { ··· 426 562 }; 427 563 } 428 564 { 429 - name = "bootstrap___bootstrap_5.2.3.tgz"; 565 + name = "bootstrap___bootstrap_5.3.0.tgz"; 430 566 path = fetchurl { 431 - name = "bootstrap___bootstrap_5.2.3.tgz"; 432 - url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.3.tgz"; 433 - sha512 = "cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ=="; 567 + name = "bootstrap___bootstrap_5.3.0.tgz"; 568 + url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.0.tgz"; 569 + sha512 = "UnBV3E3v4STVNQdms6jSGO2CvOkjUMdDAVR2V5N4uCMdaIkaQjbcEAMqRimDHIs4uqBYzDAKCQwCB+97tJgHQw=="; 434 570 }; 435 571 } 436 572 { ··· 450 586 }; 451 587 } 452 588 { 453 - name = "buffer_alloc_unsafe___buffer_alloc_unsafe_1.1.0.tgz"; 454 - path = fetchurl { 455 - name = "buffer_alloc_unsafe___buffer_alloc_unsafe_1.1.0.tgz"; 456 - url = "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"; 457 - sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="; 458 - }; 459 - } 460 - { 461 - name = "buffer_alloc___buffer_alloc_1.2.0.tgz"; 462 - path = fetchurl { 463 - name = "buffer_alloc___buffer_alloc_1.2.0.tgz"; 464 - url = "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz"; 465 - sha512 = "CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow=="; 466 - }; 467 - } 468 - { 469 589 name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; 470 590 path = fetchurl { 471 591 name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; ··· 474 594 }; 475 595 } 476 596 { 477 - name = "buffer_equal___buffer_equal_1.0.0.tgz"; 478 - path = fetchurl { 479 - name = "buffer_equal___buffer_equal_1.0.0.tgz"; 480 - url = "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz"; 481 - sha512 = "tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ=="; 482 - }; 483 - } 484 - { 485 - name = "buffer_fill___buffer_fill_1.0.0.tgz"; 597 + name = "buffer_equal___buffer_equal_1.0.1.tgz"; 486 598 path = fetchurl { 487 - name = "buffer_fill___buffer_fill_1.0.0.tgz"; 488 - url = "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz"; 489 - sha512 = "T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="; 599 + name = "buffer_equal___buffer_equal_1.0.1.tgz"; 600 + url = "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.1.tgz"; 601 + sha512 = "QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg=="; 490 602 }; 491 603 } 492 604 { ··· 506 618 }; 507 619 } 508 620 { 509 - name = "builder_util_runtime___builder_util_runtime_9.1.1.tgz"; 621 + name = "builder_util_runtime___builder_util_runtime_9.2.1.tgz"; 510 622 path = fetchurl { 511 - name = "builder_util_runtime___builder_util_runtime_9.1.1.tgz"; 512 - url = "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz"; 513 - sha512 = "azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw=="; 623 + name = "builder_util_runtime___builder_util_runtime_9.2.1.tgz"; 624 + url = "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.2.1.tgz"; 625 + sha512 = "2rLv/uQD2x+dJ0J3xtsmI12AlRyk7p45TEbE/6o/fbb633e/S3pPgm+ct+JHsoY7r39dKHnGEFk/AASRFdnXmA=="; 514 626 }; 515 627 } 516 628 { 517 - name = "builder_util___builder_util_23.6.0.tgz"; 629 + name = "builder_util___builder_util_24.4.0.tgz"; 518 630 path = fetchurl { 519 - name = "builder_util___builder_util_23.6.0.tgz"; 520 - url = "https://registry.yarnpkg.com/builder-util/-/builder-util-23.6.0.tgz"; 521 - sha512 = "QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ=="; 631 + name = "builder_util___builder_util_24.4.0.tgz"; 632 + url = "https://registry.yarnpkg.com/builder-util/-/builder-util-24.4.0.tgz"; 633 + sha512 = "tONb/GIK1MKa1BcOPHE1naId3o5nj6gdka5kP7yUJh2DOfF+jMq3laiu+UOZH6A7ZtkMtnGNMYFKFTIv408n/A=="; 634 + }; 635 + } 636 + { 637 + name = "cacache___cacache_17.1.3.tgz"; 638 + path = fetchurl { 639 + name = "cacache___cacache_17.1.3.tgz"; 640 + url = "https://registry.yarnpkg.com/cacache/-/cacache-17.1.3.tgz"; 641 + sha512 = "jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg=="; 522 642 }; 523 643 } 524 644 { ··· 530 650 }; 531 651 } 532 652 { 533 - name = "cacheable_request___cacheable_request_7.0.2.tgz"; 653 + name = "cacheable_request___cacheable_request_7.0.4.tgz"; 534 654 path = fetchurl { 535 - name = "cacheable_request___cacheable_request_7.0.2.tgz"; 536 - url = "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz"; 537 - sha512 = "pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew=="; 655 + name = "cacheable_request___cacheable_request_7.0.4.tgz"; 656 + url = "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz"; 657 + sha512 = "v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg=="; 538 658 }; 539 659 } 540 660 { ··· 578 698 }; 579 699 } 580 700 { 701 + name = "chromium_bidi___chromium_bidi_0.4.11.tgz"; 702 + path = fetchurl { 703 + name = "chromium_bidi___chromium_bidi_0.4.11.tgz"; 704 + url = "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-0.4.11.tgz"; 705 + sha512 = "p03ajLhlQ5gebw3cmbDBFmBc2wnJM5dnXS8Phu6mblGn/KQd76yOVL5VwE0VAisa7oazNfKGTaXlIZ8Q5Bb9OA=="; 706 + }; 707 + } 708 + { 581 709 name = "chromium_pickle_js___chromium_pickle_js_0.2.0.tgz"; 582 710 path = fetchurl { 583 711 name = "chromium_pickle_js___chromium_pickle_js_0.2.0.tgz"; ··· 586 714 }; 587 715 } 588 716 { 589 - name = "ci_info___ci_info_3.7.1.tgz"; 717 + name = "ci_info___ci_info_3.8.0.tgz"; 718 + path = fetchurl { 719 + name = "ci_info___ci_info_3.8.0.tgz"; 720 + url = "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz"; 721 + sha512 = "eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw=="; 722 + }; 723 + } 724 + { 725 + name = "clean_stack___clean_stack_2.2.0.tgz"; 726 + path = fetchurl { 727 + name = "clean_stack___clean_stack_2.2.0.tgz"; 728 + url = "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz"; 729 + sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="; 730 + }; 731 + } 732 + { 733 + name = "cli_cursor___cli_cursor_3.1.0.tgz"; 590 734 path = fetchurl { 591 - name = "ci_info___ci_info_3.7.1.tgz"; 592 - url = "https://registry.yarnpkg.com/ci-info/-/ci-info-3.7.1.tgz"; 593 - sha512 = "4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w=="; 735 + name = "cli_cursor___cli_cursor_3.1.0.tgz"; 736 + url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz"; 737 + sha512 = "I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="; 738 + }; 739 + } 740 + { 741 + name = "cli_spinners___cli_spinners_2.9.0.tgz"; 742 + path = fetchurl { 743 + name = "cli_spinners___cli_spinners_2.9.0.tgz"; 744 + url = "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz"; 745 + sha512 = "4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g=="; 594 746 }; 595 747 } 596 748 { ··· 626 778 }; 627 779 } 628 780 { 781 + name = "clone___clone_1.0.4.tgz"; 782 + path = fetchurl { 783 + name = "clone___clone_1.0.4.tgz"; 784 + url = "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz"; 785 + sha512 = "JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="; 786 + }; 787 + } 788 + { 629 789 name = "color_convert___color_convert_1.9.3.tgz"; 630 790 path = fetchurl { 631 791 name = "color_convert___color_convert_1.9.3.tgz"; ··· 658 818 }; 659 819 } 660 820 { 661 - name = "colors___colors_1.0.3.tgz"; 821 + name = "color_support___color_support_1.1.3.tgz"; 662 822 path = fetchurl { 663 - name = "colors___colors_1.0.3.tgz"; 664 - url = "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz"; 665 - sha512 = "pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw=="; 823 + name = "color_support___color_support_1.1.3.tgz"; 824 + url = "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz"; 825 + sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="; 666 826 }; 667 827 } 668 828 { ··· 674 834 }; 675 835 } 676 836 { 677 - name = "commander___commander_2.9.0.tgz"; 678 - path = fetchurl { 679 - name = "commander___commander_2.9.0.tgz"; 680 - url = "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz"; 681 - sha512 = "bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A=="; 682 - }; 683 - } 684 - { 685 837 name = "commander___commander_5.1.0.tgz"; 686 838 path = fetchurl { 687 839 name = "commander___commander_5.1.0.tgz"; ··· 706 858 }; 707 859 } 708 860 { 861 + name = "config_file_ts___config_file_ts_0.2.4.tgz"; 862 + path = fetchurl { 863 + name = "config_file_ts___config_file_ts_0.2.4.tgz"; 864 + url = "https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.4.tgz"; 865 + sha512 = "cKSW0BfrSaAUnxpgvpXPLaaW/umg4bqg4k3GO1JqlRfpx+d5W0GDXznCMkWotJQek5Mmz1MJVChQnz3IVaeMZQ=="; 866 + }; 867 + } 868 + { 869 + name = "console_control_strings___console_control_strings_1.1.0.tgz"; 870 + path = fetchurl { 871 + name = "console_control_strings___console_control_strings_1.1.0.tgz"; 872 + url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz"; 873 + sha512 = "ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="; 874 + }; 875 + } 876 + { 709 877 name = "core_util_is___core_util_is_1.0.2.tgz"; 710 878 path = fetchurl { 711 879 name = "core_util_is___core_util_is_1.0.2.tgz"; ··· 714 882 }; 715 883 } 716 884 { 717 - name = "cosmiconfig___cosmiconfig_8.0.0.tgz"; 885 + name = "cosmiconfig___cosmiconfig_8.1.3.tgz"; 718 886 path = fetchurl { 719 - name = "cosmiconfig___cosmiconfig_8.0.0.tgz"; 720 - url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz"; 721 - sha512 = "da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ=="; 887 + name = "cosmiconfig___cosmiconfig_8.1.3.tgz"; 888 + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz"; 889 + sha512 = "/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw=="; 722 890 }; 723 891 } 724 892 { ··· 730 898 }; 731 899 } 732 900 { 733 - name = "cross_fetch___cross_fetch_3.1.5.tgz"; 901 + name = "cross_fetch___cross_fetch_3.1.6.tgz"; 734 902 path = fetchurl { 735 - name = "cross_fetch___cross_fetch_3.1.5.tgz"; 736 - url = "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz"; 737 - sha512 = "lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw=="; 903 + name = "cross_fetch___cross_fetch_3.1.6.tgz"; 904 + url = "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.6.tgz"; 905 + sha512 = "riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g=="; 738 906 }; 739 907 } 740 908 { ··· 754 922 }; 755 923 } 756 924 { 757 - name = "debug___debug_4.3.4.tgz"; 925 + name = "data_uri_to_buffer___data_uri_to_buffer_5.0.1.tgz"; 758 926 path = fetchurl { 759 - name = "debug___debug_4.3.4.tgz"; 760 - url = "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz"; 761 - sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 927 + name = "data_uri_to_buffer___data_uri_to_buffer_5.0.1.tgz"; 928 + url = "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-5.0.1.tgz"; 929 + sha512 = "a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg=="; 762 930 }; 763 931 } 764 932 { 765 - name = "debug___debug_2.6.9.tgz"; 933 + name = "debug___debug_4.3.4.tgz"; 766 934 path = fetchurl { 767 - name = "debug___debug_2.6.9.tgz"; 768 - url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; 769 - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 935 + name = "debug___debug_4.3.4.tgz"; 936 + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz"; 937 + sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 770 938 }; 771 939 } 772 940 { ··· 786 954 }; 787 955 } 788 956 { 957 + name = "deep_is___deep_is_0.1.4.tgz"; 958 + path = fetchurl { 959 + name = "deep_is___deep_is_0.1.4.tgz"; 960 + url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz"; 961 + sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 962 + }; 963 + } 964 + { 965 + name = "defaults___defaults_1.0.4.tgz"; 966 + path = fetchurl { 967 + name = "defaults___defaults_1.0.4.tgz"; 968 + url = "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz"; 969 + sha512 = "eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A=="; 970 + }; 971 + } 972 + { 789 973 name = "defer_to_connect___defer_to_connect_2.0.1.tgz"; 790 974 path = fetchurl { 791 975 name = "defer_to_connect___defer_to_connect_2.0.1.tgz"; ··· 794 978 }; 795 979 } 796 980 { 797 - name = "define_properties___define_properties_1.1.4.tgz"; 981 + name = "define_properties___define_properties_1.2.0.tgz"; 798 982 path = fetchurl { 799 - name = "define_properties___define_properties_1.1.4.tgz"; 800 - url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz"; 801 - sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; 983 + name = "define_properties___define_properties_1.2.0.tgz"; 984 + url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz"; 985 + sha512 = "xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA=="; 986 + }; 987 + } 988 + { 989 + name = "degenerator___degenerator_4.0.4.tgz"; 990 + path = fetchurl { 991 + name = "degenerator___degenerator_4.0.4.tgz"; 992 + url = "https://registry.yarnpkg.com/degenerator/-/degenerator-4.0.4.tgz"; 993 + sha512 = "MTZdZsuNxSBL92rsjx3VFWe57OpRlikyLbcx2B5Dmdv6oScqpMrvpY7zHLMymrUxo3U5+suPUMsNgW/+SZB1lg=="; 802 994 }; 803 995 } 804 996 { ··· 810 1002 }; 811 1003 } 812 1004 { 813 - name = "detect_libc___detect_libc_2.0.1.tgz"; 1005 + name = "delegates___delegates_1.0.0.tgz"; 814 1006 path = fetchurl { 815 - name = "detect_libc___detect_libc_2.0.1.tgz"; 816 - url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz"; 817 - sha512 = "463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="; 1007 + name = "delegates___delegates_1.0.0.tgz"; 1008 + url = "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz"; 1009 + sha512 = "bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="; 1010 + }; 1011 + } 1012 + { 1013 + name = "depd___depd_2.0.0.tgz"; 1014 + path = fetchurl { 1015 + name = "depd___depd_2.0.0.tgz"; 1016 + url = "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz"; 1017 + sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 1018 + }; 1019 + } 1020 + { 1021 + name = "detect_libc___detect_libc_2.0.2.tgz"; 1022 + path = fetchurl { 1023 + name = "detect_libc___detect_libc_2.0.2.tgz"; 1024 + url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz"; 1025 + sha512 = "UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw=="; 818 1026 }; 819 1027 } 820 1028 { ··· 826 1034 }; 827 1035 } 828 1036 { 829 - name = "devtools_protocol___devtools_protocol_0.0.1068969.tgz"; 1037 + name = "devtools_protocol___devtools_protocol_0.0.1120988.tgz"; 830 1038 path = fetchurl { 831 - name = "devtools_protocol___devtools_protocol_0.0.1068969.tgz"; 832 - url = "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1068969.tgz"; 833 - sha512 = "ATFTrPbY1dKYhPPvpjtwWKSK2mIwGmRwX54UASn9THEuIZCe2n9k3vVuMmt6jWeL+e5QaaguEv/pMyR+JQB7VQ=="; 1039 + name = "devtools_protocol___devtools_protocol_0.0.1120988.tgz"; 1040 + url = "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1120988.tgz"; 1041 + sha512 = "39fCpE3Z78IaIPChJsP6Lhmkbf4dWXOmzLk/KFTdRkNk/0JymRIfUynDVRndV9HoDz8PyalK1UH21ST/ivwW5Q=="; 834 1042 }; 835 1043 } 836 1044 { 837 - name = "dir_compare___dir_compare_2.4.0.tgz"; 1045 + name = "dir_compare___dir_compare_3.3.0.tgz"; 838 1046 path = fetchurl { 839 - name = "dir_compare___dir_compare_2.4.0.tgz"; 840 - url = "https://registry.yarnpkg.com/dir-compare/-/dir-compare-2.4.0.tgz"; 841 - sha512 = "l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA=="; 1047 + name = "dir_compare___dir_compare_3.3.0.tgz"; 1048 + url = "https://registry.yarnpkg.com/dir-compare/-/dir-compare-3.3.0.tgz"; 1049 + sha512 = "J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg=="; 842 1050 }; 843 1051 } 844 1052 { 845 - name = "dmg_builder___dmg_builder_23.6.0.tgz"; 1053 + name = "dmg_builder___dmg_builder_24.4.0.tgz"; 846 1054 path = fetchurl { 847 - name = "dmg_builder___dmg_builder_23.6.0.tgz"; 848 - url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-23.6.0.tgz"; 849 - sha512 = "jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA=="; 1055 + name = "dmg_builder___dmg_builder_24.4.0.tgz"; 1056 + url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-24.4.0.tgz"; 1057 + sha512 = "p5z9Cx539GSBYb+b09Z+hMhuBTh/BrI71VRg4rgF6f2xtIRK/YlTGVS/O08k5OojoyhZcpS7JXxDVSmQoWgiiQ=="; 850 1058 }; 851 1059 } 852 1060 { ··· 874 1082 }; 875 1083 } 876 1084 { 877 - name = "ejs___ejs_3.1.8.tgz"; 1085 + name = "eastasianwidth___eastasianwidth_0.2.0.tgz"; 878 1086 path = fetchurl { 879 - name = "ejs___ejs_3.1.8.tgz"; 880 - url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz"; 881 - sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; 1087 + name = "eastasianwidth___eastasianwidth_0.2.0.tgz"; 1088 + url = "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz"; 1089 + sha512 = "I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="; 882 1090 }; 883 1091 } 884 1092 { 885 - name = "electron_builder___electron_builder_23.6.0.tgz"; 1093 + name = "ejs___ejs_3.1.9.tgz"; 886 1094 path = fetchurl { 887 - name = "electron_builder___electron_builder_23.6.0.tgz"; 888 - url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.6.0.tgz"; 889 - sha512 = "y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw=="; 1095 + name = "ejs___ejs_3.1.9.tgz"; 1096 + url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz"; 1097 + sha512 = "rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ=="; 890 1098 }; 891 1099 } 892 1100 { 893 - name = "electron_osx_sign___electron_osx_sign_0.6.0.tgz"; 1101 + name = "electron_builder___electron_builder_24.4.0.tgz"; 894 1102 path = fetchurl { 895 - name = "electron_osx_sign___electron_osx_sign_0.6.0.tgz"; 896 - url = "https://registry.yarnpkg.com/electron-osx-sign/-/electron-osx-sign-0.6.0.tgz"; 897 - sha512 = "+hiIEb2Xxk6eDKJ2FFlpofCnemCbjbT5jz+BKGpVBrRNT3kWTGs4DfNX6IzGwgi33hUcXF+kFs9JW+r6Wc1LRg=="; 1103 + name = "electron_builder___electron_builder_24.4.0.tgz"; 1104 + url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-24.4.0.tgz"; 1105 + sha512 = "D5INxodxaUIJgEX6p/fqBd8wQNS8XRAToNIJ9SQC+taNS5D73ZsjLuXiRraFGCB0cVk9KeKhEkdEOH5AaVya4g=="; 898 1106 }; 899 1107 } 900 1108 { 901 - name = "electron_publish___electron_publish_23.6.0.tgz"; 1109 + name = "electron_publish___electron_publish_24.4.0.tgz"; 902 1110 path = fetchurl { 903 - name = "electron_publish___electron_publish_23.6.0.tgz"; 904 - url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-23.6.0.tgz"; 905 - sha512 = "jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg=="; 1111 + name = "electron_publish___electron_publish_24.4.0.tgz"; 1112 + url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-24.4.0.tgz"; 1113 + sha512 = "U3mnVSxIfNrLW7ZnwiedFhcLf6ExPFXgAsx89WpfQFsV4gFAt/LG+H74p0m9NSvsLXiZuF82yXoxi7Ou8GHq4Q=="; 906 1114 }; 907 1115 } 908 1116 { 909 - name = "electron___electron_22.2.0.tgz"; 1117 + name = "electron___electron_25.3.1.tgz"; 910 1118 path = fetchurl { 911 - name = "electron___electron_22.2.0.tgz"; 912 - url = "https://registry.yarnpkg.com/electron/-/electron-22.2.0.tgz"; 913 - sha512 = "puRZSF2vWJ4pz3oetL5Td8LcuivTWz3MoAk/gjImHSN1B/2VJNEQlw1jGdkte+ppid2craOswE2lmCOZ7SwF1g=="; 1119 + name = "electron___electron_25.3.1.tgz"; 1120 + url = "https://registry.yarnpkg.com/electron/-/electron-25.3.1.tgz"; 1121 + sha512 = "t0QXXqgf0/P0OJ9LU3qpcBMK+wL0FRwTQfooBaaG08v5hywPzc1yplfb3l4tS1xC0Ttw8IBaKLBeEoRgxBRHjg=="; 914 1122 }; 915 1123 } 916 1124 { ··· 922 1130 }; 923 1131 } 924 1132 { 1133 + name = "emoji_regex___emoji_regex_9.2.2.tgz"; 1134 + path = fetchurl { 1135 + name = "emoji_regex___emoji_regex_9.2.2.tgz"; 1136 + url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz"; 1137 + sha512 = "L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="; 1138 + }; 1139 + } 1140 + { 1141 + name = "encoding___encoding_0.1.13.tgz"; 1142 + path = fetchurl { 1143 + name = "encoding___encoding_0.1.13.tgz"; 1144 + url = "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz"; 1145 + sha512 = "ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="; 1146 + }; 1147 + } 1148 + { 925 1149 name = "end_of_stream___end_of_stream_1.4.4.tgz"; 926 1150 path = fetchurl { 927 1151 name = "end_of_stream___end_of_stream_1.4.4.tgz"; ··· 935 1159 name = "env_paths___env_paths_2.2.1.tgz"; 936 1160 url = "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz"; 937 1161 sha512 = "+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="; 1162 + }; 1163 + } 1164 + { 1165 + name = "err_code___err_code_2.0.3.tgz"; 1166 + path = fetchurl { 1167 + name = "err_code___err_code_2.0.3.tgz"; 1168 + url = "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz"; 1169 + sha512 = "2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="; 938 1170 }; 939 1171 } 940 1172 { ··· 978 1210 }; 979 1211 } 980 1212 { 1213 + name = "escodegen___escodegen_1.14.3.tgz"; 1214 + path = fetchurl { 1215 + name = "escodegen___escodegen_1.14.3.tgz"; 1216 + url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz"; 1217 + sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; 1218 + }; 1219 + } 1220 + { 1221 + name = "esprima___esprima_4.0.1.tgz"; 1222 + path = fetchurl { 1223 + name = "esprima___esprima_4.0.1.tgz"; 1224 + url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; 1225 + sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1226 + }; 1227 + } 1228 + { 1229 + name = "estraverse___estraverse_4.3.0.tgz"; 1230 + path = fetchurl { 1231 + name = "estraverse___estraverse_4.3.0.tgz"; 1232 + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 1233 + sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 1234 + }; 1235 + } 1236 + { 1237 + name = "esutils___esutils_2.0.3.tgz"; 1238 + path = fetchurl { 1239 + name = "esutils___esutils_2.0.3.tgz"; 1240 + url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; 1241 + sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 1242 + }; 1243 + } 1244 + { 981 1245 name = "execa___execa_1.0.0.tgz"; 982 1246 path = fetchurl { 983 1247 name = "execa___execa_1.0.0.tgz"; ··· 994 1258 }; 995 1259 } 996 1260 { 1261 + name = "exponential_backoff___exponential_backoff_3.1.1.tgz"; 1262 + path = fetchurl { 1263 + name = "exponential_backoff___exponential_backoff_3.1.1.tgz"; 1264 + url = "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz"; 1265 + sha512 = "dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw=="; 1266 + }; 1267 + } 1268 + { 997 1269 name = "extract_zip___extract_zip_2.0.1.tgz"; 998 1270 path = fetchurl { 999 1271 name = "extract_zip___extract_zip_2.0.1.tgz"; ··· 1023 1295 name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 1024 1296 url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 1025 1297 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 1298 + }; 1299 + } 1300 + { 1301 + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 1302 + path = fetchurl { 1303 + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 1304 + url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1305 + sha512 = "DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="; 1026 1306 }; 1027 1307 } 1028 1308 { ··· 1058 1338 }; 1059 1339 } 1060 1340 { 1341 + name = "foreground_child___foreground_child_3.1.1.tgz"; 1342 + path = fetchurl { 1343 + name = "foreground_child___foreground_child_3.1.1.tgz"; 1344 + url = "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz"; 1345 + sha512 = "TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg=="; 1346 + }; 1347 + } 1348 + { 1061 1349 name = "form_data___form_data_4.0.0.tgz"; 1062 1350 path = fetchurl { 1063 1351 name = "form_data___form_data_4.0.0.tgz"; ··· 1106 1394 }; 1107 1395 } 1108 1396 { 1397 + name = "fs_minipass___fs_minipass_3.0.2.tgz"; 1398 + path = fetchurl { 1399 + name = "fs_minipass___fs_minipass_3.0.2.tgz"; 1400 + url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.2.tgz"; 1401 + sha512 = "2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g=="; 1402 + }; 1403 + } 1404 + { 1109 1405 name = "fs.realpath___fs.realpath_1.0.0.tgz"; 1110 1406 path = fetchurl { 1111 1407 name = "fs.realpath___fs.realpath_1.0.0.tgz"; ··· 1122 1418 }; 1123 1419 } 1124 1420 { 1421 + name = "gauge___gauge_4.0.4.tgz"; 1422 + path = fetchurl { 1423 + name = "gauge___gauge_4.0.4.tgz"; 1424 + url = "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz"; 1425 + sha512 = "f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg=="; 1426 + }; 1427 + } 1428 + { 1125 1429 name = "get_caller_file___get_caller_file_2.0.5.tgz"; 1126 1430 path = fetchurl { 1127 1431 name = "get_caller_file___get_caller_file_2.0.5.tgz"; ··· 1130 1434 }; 1131 1435 } 1132 1436 { 1133 - name = "get_intrinsic___get_intrinsic_1.2.0.tgz"; 1437 + name = "get_intrinsic___get_intrinsic_1.2.1.tgz"; 1134 1438 path = fetchurl { 1135 - name = "get_intrinsic___get_intrinsic_1.2.0.tgz"; 1136 - url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz"; 1137 - sha512 = "L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q=="; 1439 + name = "get_intrinsic___get_intrinsic_1.2.1.tgz"; 1440 + url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz"; 1441 + sha512 = "2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw=="; 1138 1442 }; 1139 1443 } 1140 1444 { ··· 1154 1458 }; 1155 1459 } 1156 1460 { 1461 + name = "get_uri___get_uri_6.0.1.tgz"; 1462 + path = fetchurl { 1463 + name = "get_uri___get_uri_6.0.1.tgz"; 1464 + url = "https://registry.yarnpkg.com/get-uri/-/get-uri-6.0.1.tgz"; 1465 + sha512 = "7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q=="; 1466 + }; 1467 + } 1468 + { 1157 1469 name = "github_from_package___github_from_package_0.0.0.tgz"; 1158 1470 path = fetchurl { 1159 1471 name = "github_from_package___github_from_package_0.0.0.tgz"; ··· 1162 1474 }; 1163 1475 } 1164 1476 { 1477 + name = "glob___glob_10.3.3.tgz"; 1478 + path = fetchurl { 1479 + name = "glob___glob_10.3.3.tgz"; 1480 + url = "https://registry.yarnpkg.com/glob/-/glob-10.3.3.tgz"; 1481 + sha512 = "92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw=="; 1482 + }; 1483 + } 1484 + { 1165 1485 name = "glob___glob_7.2.3.tgz"; 1166 1486 path = fetchurl { 1167 1487 name = "glob___glob_7.2.3.tgz"; ··· 1194 1514 }; 1195 1515 } 1196 1516 { 1197 - name = "graceful_fs___graceful_fs_4.2.10.tgz"; 1517 + name = "graceful_fs___graceful_fs_4.2.11.tgz"; 1198 1518 path = fetchurl { 1199 - name = "graceful_fs___graceful_fs_4.2.10.tgz"; 1200 - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz"; 1201 - sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 1202 - }; 1203 - } 1204 - { 1205 - name = "graceful_readlink___graceful_readlink_1.0.1.tgz"; 1206 - path = fetchurl { 1207 - name = "graceful_readlink___graceful_readlink_1.0.1.tgz"; 1208 - url = "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; 1209 - sha512 = "8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w=="; 1519 + name = "graceful_fs___graceful_fs_4.2.11.tgz"; 1520 + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz"; 1521 + sha512 = "RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="; 1210 1522 }; 1211 1523 } 1212 1524 { ··· 1234 1546 }; 1235 1547 } 1236 1548 { 1549 + name = "has_proto___has_proto_1.0.1.tgz"; 1550 + path = fetchurl { 1551 + name = "has_proto___has_proto_1.0.1.tgz"; 1552 + url = "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz"; 1553 + sha512 = "7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="; 1554 + }; 1555 + } 1556 + { 1237 1557 name = "has_symbols___has_symbols_1.0.3.tgz"; 1238 1558 path = fetchurl { 1239 1559 name = "has_symbols___has_symbols_1.0.3.tgz"; ··· 1242 1562 }; 1243 1563 } 1244 1564 { 1565 + name = "has_unicode___has_unicode_2.0.1.tgz"; 1566 + path = fetchurl { 1567 + name = "has_unicode___has_unicode_2.0.1.tgz"; 1568 + url = "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz"; 1569 + sha512 = "8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="; 1570 + }; 1571 + } 1572 + { 1245 1573 name = "has___has_1.0.3.tgz"; 1246 1574 path = fetchurl { 1247 1575 name = "has___has_1.0.3.tgz"; ··· 1274 1602 }; 1275 1603 } 1276 1604 { 1605 + name = "http_proxy_agent___http_proxy_agent_7.0.0.tgz"; 1606 + path = fetchurl { 1607 + name = "http_proxy_agent___http_proxy_agent_7.0.0.tgz"; 1608 + url = "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz"; 1609 + sha512 = "+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ=="; 1610 + }; 1611 + } 1612 + { 1277 1613 name = "http2_wrapper___http2_wrapper_1.0.3.tgz"; 1278 1614 path = fetchurl { 1279 1615 name = "http2_wrapper___http2_wrapper_1.0.3.tgz"; ··· 1290 1626 }; 1291 1627 } 1292 1628 { 1629 + name = "https_proxy_agent___https_proxy_agent_7.0.1.tgz"; 1630 + path = fetchurl { 1631 + name = "https_proxy_agent___https_proxy_agent_7.0.1.tgz"; 1632 + url = "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.1.tgz"; 1633 + sha512 = "Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ=="; 1634 + }; 1635 + } 1636 + { 1637 + name = "humanize_ms___humanize_ms_1.2.1.tgz"; 1638 + path = fetchurl { 1639 + name = "humanize_ms___humanize_ms_1.2.1.tgz"; 1640 + url = "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz"; 1641 + sha512 = "Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ=="; 1642 + }; 1643 + } 1644 + { 1293 1645 name = "iconv_corefoundation___iconv_corefoundation_1.1.7.tgz"; 1294 1646 path = fetchurl { 1295 1647 name = "iconv_corefoundation___iconv_corefoundation_1.1.7.tgz"; ··· 1322 1674 }; 1323 1675 } 1324 1676 { 1677 + name = "imurmurhash___imurmurhash_0.1.4.tgz"; 1678 + path = fetchurl { 1679 + name = "imurmurhash___imurmurhash_0.1.4.tgz"; 1680 + url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; 1681 + sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 1682 + }; 1683 + } 1684 + { 1685 + name = "indent_string___indent_string_4.0.0.tgz"; 1686 + path = fetchurl { 1687 + name = "indent_string___indent_string_4.0.0.tgz"; 1688 + url = "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz"; 1689 + sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; 1690 + }; 1691 + } 1692 + { 1325 1693 name = "inflight___inflight_1.0.6.tgz"; 1326 1694 path = fetchurl { 1327 1695 name = "inflight___inflight_1.0.6.tgz"; ··· 1346 1714 }; 1347 1715 } 1348 1716 { 1717 + name = "ip___ip_1.1.8.tgz"; 1718 + path = fetchurl { 1719 + name = "ip___ip_1.1.8.tgz"; 1720 + url = "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz"; 1721 + sha512 = "PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="; 1722 + }; 1723 + } 1724 + { 1725 + name = "ip___ip_2.0.0.tgz"; 1726 + path = fetchurl { 1727 + name = "ip___ip_2.0.0.tgz"; 1728 + url = "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz"; 1729 + sha512 = "WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ=="; 1730 + }; 1731 + } 1732 + { 1349 1733 name = "is_arrayish___is_arrayish_0.2.1.tgz"; 1350 1734 path = fetchurl { 1351 1735 name = "is_arrayish___is_arrayish_0.2.1.tgz"; ··· 1378 1762 }; 1379 1763 } 1380 1764 { 1765 + name = "is_interactive___is_interactive_1.0.0.tgz"; 1766 + path = fetchurl { 1767 + name = "is_interactive___is_interactive_1.0.0.tgz"; 1768 + url = "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz"; 1769 + sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="; 1770 + }; 1771 + } 1772 + { 1773 + name = "is_lambda___is_lambda_1.0.1.tgz"; 1774 + path = fetchurl { 1775 + name = "is_lambda___is_lambda_1.0.1.tgz"; 1776 + url = "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz"; 1777 + sha512 = "z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ=="; 1778 + }; 1779 + } 1780 + { 1381 1781 name = "is_stream___is_stream_1.1.0.tgz"; 1382 1782 path = fetchurl { 1383 1783 name = "is_stream___is_stream_1.1.0.tgz"; ··· 1386 1786 }; 1387 1787 } 1388 1788 { 1389 - name = "is_wsl___is_wsl_2.2.0.tgz"; 1789 + name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz"; 1390 1790 path = fetchurl { 1391 - name = "is_wsl___is_wsl_2.2.0.tgz"; 1392 - url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz"; 1393 - sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; 1791 + name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz"; 1792 + url = "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"; 1793 + sha512 = "knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="; 1394 1794 }; 1395 1795 } 1396 1796 { 1397 - name = "isbinaryfile___isbinaryfile_3.0.3.tgz"; 1797 + name = "is_wsl___is_wsl_2.2.0.tgz"; 1398 1798 path = fetchurl { 1399 - name = "isbinaryfile___isbinaryfile_3.0.3.tgz"; 1400 - url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.3.tgz"; 1401 - sha512 = "8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw=="; 1799 + name = "is_wsl___is_wsl_2.2.0.tgz"; 1800 + url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz"; 1801 + sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; 1402 1802 }; 1403 1803 } 1404 1804 { ··· 1407 1807 name = "isbinaryfile___isbinaryfile_4.0.10.tgz"; 1408 1808 url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz"; 1409 1809 sha512 = "iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw=="; 1810 + }; 1811 + } 1812 + { 1813 + name = "isbinaryfile___isbinaryfile_5.0.0.tgz"; 1814 + path = fetchurl { 1815 + name = "isbinaryfile___isbinaryfile_5.0.0.tgz"; 1816 + url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.0.tgz"; 1817 + sha512 = "UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg=="; 1410 1818 }; 1411 1819 } 1412 1820 { ··· 1426 1834 }; 1427 1835 } 1428 1836 { 1429 - name = "jake___jake_10.8.5.tgz"; 1837 + name = "jackspeak___jackspeak_2.2.1.tgz"; 1430 1838 path = fetchurl { 1431 - name = "jake___jake_10.8.5.tgz"; 1432 - url = "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz"; 1433 - sha512 = "sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw=="; 1839 + name = "jackspeak___jackspeak_2.2.1.tgz"; 1840 + url = "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.1.tgz"; 1841 + sha512 = "MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw=="; 1842 + }; 1843 + } 1844 + { 1845 + name = "jake___jake_10.8.7.tgz"; 1846 + path = fetchurl { 1847 + name = "jake___jake_10.8.7.tgz"; 1848 + url = "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz"; 1849 + sha512 = "ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w=="; 1434 1850 }; 1435 1851 } 1436 1852 { ··· 1514 1930 }; 1515 1931 } 1516 1932 { 1517 - name = "keyv___keyv_4.5.2.tgz"; 1933 + name = "keyv___keyv_4.5.3.tgz"; 1518 1934 path = fetchurl { 1519 - name = "keyv___keyv_4.5.2.tgz"; 1520 - url = "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz"; 1521 - sha512 = "5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g=="; 1935 + name = "keyv___keyv_4.5.3.tgz"; 1936 + url = "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz"; 1937 + sha512 = "QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug=="; 1522 1938 }; 1523 1939 } 1524 1940 { ··· 1530 1946 }; 1531 1947 } 1532 1948 { 1949 + name = "levn___levn_0.3.0.tgz"; 1950 + path = fetchurl { 1951 + name = "levn___levn_0.3.0.tgz"; 1952 + url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 1953 + sha512 = "0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA=="; 1954 + }; 1955 + } 1956 + { 1533 1957 name = "lines_and_columns___lines_and_columns_1.2.4.tgz"; 1534 1958 path = fetchurl { 1535 1959 name = "lines_and_columns___lines_and_columns_1.2.4.tgz"; ··· 1546 1970 }; 1547 1971 } 1548 1972 { 1973 + name = "log_symbols___log_symbols_4.1.0.tgz"; 1974 + path = fetchurl { 1975 + name = "log_symbols___log_symbols_4.1.0.tgz"; 1976 + url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz"; 1977 + sha512 = "8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="; 1978 + }; 1979 + } 1980 + { 1549 1981 name = "lowercase_keys___lowercase_keys_2.0.0.tgz"; 1550 1982 path = fetchurl { 1551 1983 name = "lowercase_keys___lowercase_keys_2.0.0.tgz"; ··· 1562 1994 }; 1563 1995 } 1564 1996 { 1997 + name = "lru_cache___lru_cache_7.18.3.tgz"; 1998 + path = fetchurl { 1999 + name = "lru_cache___lru_cache_7.18.3.tgz"; 2000 + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz"; 2001 + sha512 = "jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="; 2002 + }; 2003 + } 2004 + { 2005 + name = "lru_cache___lru_cache_10.0.0.tgz"; 2006 + path = fetchurl { 2007 + name = "lru_cache___lru_cache_10.0.0.tgz"; 2008 + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz"; 2009 + sha512 = "svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw=="; 2010 + }; 2011 + } 2012 + { 2013 + name = "make_fetch_happen___make_fetch_happen_11.1.1.tgz"; 2014 + path = fetchurl { 2015 + name = "make_fetch_happen___make_fetch_happen_11.1.1.tgz"; 2016 + url = "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz"; 2017 + sha512 = "rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w=="; 2018 + }; 2019 + } 2020 + { 1565 2021 name = "matcher___matcher_3.0.0.tgz"; 1566 2022 path = fetchurl { 1567 2023 name = "matcher___matcher_3.0.0.tgz"; ··· 1594 2050 }; 1595 2051 } 1596 2052 { 2053 + name = "mimic_fn___mimic_fn_2.1.0.tgz"; 2054 + path = fetchurl { 2055 + name = "mimic_fn___mimic_fn_2.1.0.tgz"; 2056 + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; 2057 + sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 2058 + }; 2059 + } 2060 + { 1597 2061 name = "mimic_response___mimic_response_1.0.1.tgz"; 1598 2062 path = fetchurl { 1599 2063 name = "mimic_response___mimic_response_1.0.1.tgz"; ··· 1610 2074 }; 1611 2075 } 1612 2076 { 1613 - name = "minimatch___minimatch_3.0.4.tgz"; 1614 - path = fetchurl { 1615 - name = "minimatch___minimatch_3.0.4.tgz"; 1616 - url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 1617 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 1618 - }; 1619 - } 1620 - { 1621 2077 name = "minimatch___minimatch_3.1.2.tgz"; 1622 2078 path = fetchurl { 1623 2079 name = "minimatch___minimatch_3.1.2.tgz"; ··· 1634 2090 }; 1635 2091 } 1636 2092 { 1637 - name = "minimist___minimist_1.2.7.tgz"; 2093 + name = "minimatch___minimatch_9.0.3.tgz"; 2094 + path = fetchurl { 2095 + name = "minimatch___minimatch_9.0.3.tgz"; 2096 + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz"; 2097 + sha512 = "RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="; 2098 + }; 2099 + } 2100 + { 2101 + name = "minimist___minimist_1.2.8.tgz"; 2102 + path = fetchurl { 2103 + name = "minimist___minimist_1.2.8.tgz"; 2104 + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz"; 2105 + sha512 = "2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="; 2106 + }; 2107 + } 2108 + { 2109 + name = "minipass_collect___minipass_collect_1.0.2.tgz"; 1638 2110 path = fetchurl { 1639 - name = "minimist___minimist_1.2.7.tgz"; 1640 - url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz"; 1641 - sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 2111 + name = "minipass_collect___minipass_collect_1.0.2.tgz"; 2112 + url = "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz"; 2113 + sha512 = "6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA=="; 2114 + }; 2115 + } 2116 + { 2117 + name = "minipass_fetch___minipass_fetch_3.0.3.tgz"; 2118 + path = fetchurl { 2119 + name = "minipass_fetch___minipass_fetch_3.0.3.tgz"; 2120 + url = "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.3.tgz"; 2121 + sha512 = "n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ=="; 2122 + }; 2123 + } 2124 + { 2125 + name = "minipass_flush___minipass_flush_1.0.5.tgz"; 2126 + path = fetchurl { 2127 + name = "minipass_flush___minipass_flush_1.0.5.tgz"; 2128 + url = "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz"; 2129 + sha512 = "JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw=="; 2130 + }; 2131 + } 2132 + { 2133 + name = "minipass_pipeline___minipass_pipeline_1.2.4.tgz"; 2134 + path = fetchurl { 2135 + name = "minipass_pipeline___minipass_pipeline_1.2.4.tgz"; 2136 + url = "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz"; 2137 + sha512 = "xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A=="; 2138 + }; 2139 + } 2140 + { 2141 + name = "minipass_sized___minipass_sized_1.0.3.tgz"; 2142 + path = fetchurl { 2143 + name = "minipass_sized___minipass_sized_1.0.3.tgz"; 2144 + url = "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz"; 2145 + sha512 = "MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g=="; 1642 2146 }; 1643 2147 } 1644 2148 { ··· 1650 2154 }; 1651 2155 } 1652 2156 { 1653 - name = "minipass___minipass_4.0.2.tgz"; 2157 + name = "minipass___minipass_5.0.0.tgz"; 1654 2158 path = fetchurl { 1655 - name = "minipass___minipass_4.0.2.tgz"; 1656 - url = "https://registry.yarnpkg.com/minipass/-/minipass-4.0.2.tgz"; 1657 - sha512 = "4Hbzei7ZyBp+1aw0874YWpKOubZd/jc53/XU+gkYry1QV+VvrbO8icLM5CUtm4F0hyXn85DXYKEMIS26gitD3A=="; 2159 + name = "minipass___minipass_5.0.0.tgz"; 2160 + url = "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz"; 2161 + sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; 2162 + }; 2163 + } 2164 + { 2165 + name = "minipass___minipass_7.0.2.tgz"; 2166 + path = fetchurl { 2167 + name = "minipass___minipass_7.0.2.tgz"; 2168 + url = "https://registry.yarnpkg.com/minipass/-/minipass-7.0.2.tgz"; 2169 + sha512 = "eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA=="; 1658 2170 }; 1659 2171 } 1660 2172 { ··· 1666 2178 }; 1667 2179 } 1668 2180 { 2181 + name = "mitt___mitt_3.0.0.tgz"; 2182 + path = fetchurl { 2183 + name = "mitt___mitt_3.0.0.tgz"; 2184 + url = "https://registry.yarnpkg.com/mitt/-/mitt-3.0.0.tgz"; 2185 + sha512 = "7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ=="; 2186 + }; 2187 + } 2188 + { 1669 2189 name = "mkdirp_classic___mkdirp_classic_0.5.3.tgz"; 1670 2190 path = fetchurl { 1671 2191 name = "mkdirp_classic___mkdirp_classic_0.5.3.tgz"; ··· 1682 2202 }; 1683 2203 } 1684 2204 { 1685 - name = "ms___ms_2.0.0.tgz"; 1686 - path = fetchurl { 1687 - name = "ms___ms_2.0.0.tgz"; 1688 - url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; 1689 - sha512 = "Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="; 1690 - }; 1691 - } 1692 - { 1693 2205 name = "ms___ms_2.1.2.tgz"; 1694 2206 path = fetchurl { 1695 2207 name = "ms___ms_2.1.2.tgz"; ··· 1698 2210 }; 1699 2211 } 1700 2212 { 2213 + name = "ms___ms_2.1.3.tgz"; 2214 + path = fetchurl { 2215 + name = "ms___ms_2.1.3.tgz"; 2216 + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz"; 2217 + sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 2218 + }; 2219 + } 2220 + { 1701 2221 name = "napi_build_utils___napi_build_utils_1.0.2.tgz"; 1702 2222 path = fetchurl { 1703 2223 name = "napi_build_utils___napi_build_utils_1.0.2.tgz"; ··· 1706 2226 }; 1707 2227 } 1708 2228 { 2229 + name = "negotiator___negotiator_0.6.3.tgz"; 2230 + path = fetchurl { 2231 + name = "negotiator___negotiator_0.6.3.tgz"; 2232 + url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz"; 2233 + sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 2234 + }; 2235 + } 2236 + { 2237 + name = "netmask___netmask_2.0.2.tgz"; 2238 + path = fetchurl { 2239 + name = "netmask___netmask_2.0.2.tgz"; 2240 + url = "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz"; 2241 + sha512 = "dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg=="; 2242 + }; 2243 + } 2244 + { 1709 2245 name = "nice_try___nice_try_1.0.5.tgz"; 1710 2246 path = fetchurl { 1711 2247 name = "nice_try___nice_try_1.0.5.tgz"; ··· 1714 2250 }; 1715 2251 } 1716 2252 { 1717 - name = "node_abi___node_abi_3.31.0.tgz"; 2253 + name = "node_abi___node_abi_3.45.0.tgz"; 1718 2254 path = fetchurl { 1719 - name = "node_abi___node_abi_3.31.0.tgz"; 1720 - url = "https://registry.yarnpkg.com/node-abi/-/node-abi-3.31.0.tgz"; 1721 - sha512 = "eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ=="; 2255 + name = "node_abi___node_abi_3.45.0.tgz"; 2256 + url = "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz"; 2257 + sha512 = "iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ=="; 1722 2258 }; 1723 2259 } 1724 2260 { ··· 1738 2274 }; 1739 2275 } 1740 2276 { 1741 - name = "node_fetch___node_fetch_2.6.7.tgz"; 2277 + name = "node_api_version___node_api_version_0.1.4.tgz"; 1742 2278 path = fetchurl { 1743 - name = "node_fetch___node_fetch_2.6.7.tgz"; 1744 - url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz"; 1745 - sha512 = "ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="; 2279 + name = "node_api_version___node_api_version_0.1.4.tgz"; 2280 + url = "https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.1.4.tgz"; 2281 + sha512 = "KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g=="; 2282 + }; 2283 + } 2284 + { 2285 + name = "node_fetch___node_fetch_2.6.12.tgz"; 2286 + path = fetchurl { 2287 + name = "node_fetch___node_fetch_2.6.12.tgz"; 2288 + url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.12.tgz"; 2289 + sha512 = "C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g=="; 2290 + }; 2291 + } 2292 + { 2293 + name = "node_gyp___node_gyp_9.4.0.tgz"; 2294 + path = fetchurl { 2295 + name = "node_gyp___node_gyp_9.4.0.tgz"; 2296 + url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.4.0.tgz"; 2297 + sha512 = "dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg=="; 2298 + }; 2299 + } 2300 + { 2301 + name = "nopt___nopt_6.0.0.tgz"; 2302 + path = fetchurl { 2303 + name = "nopt___nopt_6.0.0.tgz"; 2304 + url = "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz"; 2305 + sha512 = "ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g=="; 1746 2306 }; 1747 2307 } 1748 2308 { ··· 1762 2322 }; 1763 2323 } 1764 2324 { 2325 + name = "npmlog___npmlog_6.0.2.tgz"; 2326 + path = fetchurl { 2327 + name = "npmlog___npmlog_6.0.2.tgz"; 2328 + url = "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz"; 2329 + sha512 = "/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg=="; 2330 + }; 2331 + } 2332 + { 1765 2333 name = "object_keys___object_keys_1.1.1.tgz"; 1766 2334 path = fetchurl { 1767 2335 name = "object_keys___object_keys_1.1.1.tgz"; ··· 1778 2346 }; 1779 2347 } 1780 2348 { 2349 + name = "onetime___onetime_5.1.2.tgz"; 2350 + path = fetchurl { 2351 + name = "onetime___onetime_5.1.2.tgz"; 2352 + url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz"; 2353 + sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 2354 + }; 2355 + } 2356 + { 2357 + name = "optionator___optionator_0.8.3.tgz"; 2358 + path = fetchurl { 2359 + name = "optionator___optionator_0.8.3.tgz"; 2360 + url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 2361 + sha512 = "+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA=="; 2362 + }; 2363 + } 2364 + { 2365 + name = "ora___ora_5.4.1.tgz"; 2366 + path = fetchurl { 2367 + name = "ora___ora_5.4.1.tgz"; 2368 + url = "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz"; 2369 + sha512 = "5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ=="; 2370 + }; 2371 + } 2372 + { 1781 2373 name = "p_cancelable___p_cancelable_2.1.1.tgz"; 1782 2374 path = fetchurl { 1783 2375 name = "p_cancelable___p_cancelable_2.1.1.tgz"; ··· 1794 2386 }; 1795 2387 } 1796 2388 { 2389 + name = "p_map___p_map_4.0.0.tgz"; 2390 + path = fetchurl { 2391 + name = "p_map___p_map_4.0.0.tgz"; 2392 + url = "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz"; 2393 + sha512 = "/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ=="; 2394 + }; 2395 + } 2396 + { 2397 + name = "pac_proxy_agent___pac_proxy_agent_6.0.4.tgz"; 2398 + path = fetchurl { 2399 + name = "pac_proxy_agent___pac_proxy_agent_6.0.4.tgz"; 2400 + url = "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-6.0.4.tgz"; 2401 + sha512 = "FbJYeusBOZNe6bmrC2/+r/HljwExryon16lNKEU82gWiwIPMCEktUPSEAcTkO9K3jd/YPGuX/azZel1ltmo6nQ=="; 2402 + }; 2403 + } 2404 + { 2405 + name = "pac_resolver___pac_resolver_6.0.2.tgz"; 2406 + path = fetchurl { 2407 + name = "pac_resolver___pac_resolver_6.0.2.tgz"; 2408 + url = "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-6.0.2.tgz"; 2409 + sha512 = "EQpuJ2ifOjpZY5sg1Q1ZeAxvtLwR7Mj3RgY8cysPGbsRu3RBXyJFWxnMus9PScjxya/0LzvVDxNh/gl0eXBU4w=="; 2410 + }; 2411 + } 2412 + { 1797 2413 name = "parent_module___parent_module_1.0.1.tgz"; 1798 2414 path = fetchurl { 1799 2415 name = "parent_module___parent_module_1.0.1.tgz"; ··· 1834 2450 }; 1835 2451 } 1836 2452 { 2453 + name = "path_scurry___path_scurry_1.10.1.tgz"; 2454 + path = fetchurl { 2455 + name = "path_scurry___path_scurry_1.10.1.tgz"; 2456 + url = "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz"; 2457 + sha512 = "MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ=="; 2458 + }; 2459 + } 2460 + { 1837 2461 name = "path_type___path_type_4.0.0.tgz"; 1838 2462 path = fetchurl { 1839 2463 name = "path_type___path_type_4.0.0.tgz"; ··· 1850 2474 }; 1851 2475 } 1852 2476 { 1853 - name = "plist___plist_3.0.6.tgz"; 2477 + name = "plist___plist_3.1.0.tgz"; 1854 2478 path = fetchurl { 1855 - name = "plist___plist_3.0.6.tgz"; 1856 - url = "https://registry.yarnpkg.com/plist/-/plist-3.0.6.tgz"; 1857 - sha512 = "WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA=="; 2479 + name = "plist___plist_3.1.0.tgz"; 2480 + url = "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz"; 2481 + sha512 = "uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ=="; 1858 2482 }; 1859 2483 } 1860 2484 { ··· 1866 2490 }; 1867 2491 } 1868 2492 { 2493 + name = "prelude_ls___prelude_ls_1.1.2.tgz"; 2494 + path = fetchurl { 2495 + name = "prelude_ls___prelude_ls_1.1.2.tgz"; 2496 + url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 2497 + sha512 = "ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w=="; 2498 + }; 2499 + } 2500 + { 1869 2501 name = "progress___progress_2.0.3.tgz"; 1870 2502 path = fetchurl { 1871 2503 name = "progress___progress_2.0.3.tgz"; 1872 2504 url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz"; 1873 2505 sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 2506 + }; 2507 + } 2508 + { 2509 + name = "promise_retry___promise_retry_2.0.1.tgz"; 2510 + path = fetchurl { 2511 + name = "promise_retry___promise_retry_2.0.1.tgz"; 2512 + url = "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz"; 2513 + sha512 = "y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g=="; 2514 + }; 2515 + } 2516 + { 2517 + name = "proxy_agent___proxy_agent_6.2.1.tgz"; 2518 + path = fetchurl { 2519 + name = "proxy_agent___proxy_agent_6.2.1.tgz"; 2520 + url = "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-6.2.1.tgz"; 2521 + sha512 = "OIbBKlRAT+ycCm6wAYIzMwPejzRtjy8F3QiDX0eKOA3e4pe3U9F/IvzcHP42bmgQxVv97juG+J8/gx+JIeCX/Q=="; 1874 2522 }; 1875 2523 } 1876 2524 { ··· 1898 2546 }; 1899 2547 } 1900 2548 { 1901 - name = "puppeteer_core___puppeteer_core_19.4.0.tgz"; 2549 + name = "puppeteer_core___puppeteer_core_20.5.0.tgz"; 1902 2550 path = fetchurl { 1903 - name = "puppeteer_core___puppeteer_core_19.4.0.tgz"; 1904 - url = "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-19.4.0.tgz"; 1905 - sha512 = "gG/jxseleZStinBn86x8r7trjcE4jcjx1hIQWOpACQhquHYMuKnrWxkzg+EDn8sN3wUtF/Ry9mtJgjM49oUOFQ=="; 2551 + name = "puppeteer_core___puppeteer_core_20.5.0.tgz"; 2552 + url = "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-20.5.0.tgz"; 2553 + sha512 = "9ddHXUQ7jpliGei87zYTuEZYQvFj6Lzk5R8w4vT4gMmNArkEqC5CX72TnVIJiTUbiTpOXJkvMQaXIHYopjdUtQ=="; 1906 2554 }; 1907 2555 } 1908 2556 { 1909 - name = "puppeteer___puppeteer_19.4.0.tgz"; 2557 + name = "puppeteer___puppeteer_20.5.0.tgz"; 1910 2558 path = fetchurl { 1911 - name = "puppeteer___puppeteer_19.4.0.tgz"; 1912 - url = "https://registry.yarnpkg.com/puppeteer/-/puppeteer-19.4.0.tgz"; 1913 - sha512 = "sRzWEfFSZCCcFUJflGtYI2V7A6qK4Jht+2JiI2LZgn+Nv/LOZZsBDEaGl98ZrS8oEcUA5on4p2yJbE0nzHNzIg=="; 2559 + name = "puppeteer___puppeteer_20.5.0.tgz"; 2560 + url = "https://registry.yarnpkg.com/puppeteer/-/puppeteer-20.5.0.tgz"; 2561 + sha512 = "3j0JShJGDT5z8rfDKf+wZQq3IHxw7JaDAdP7py5H5zOIgmqNG0e8R19y4tFzJ8i2WC4H/0bC51rIrTXyDop1FA=="; 1914 2562 }; 1915 2563 } 1916 2564 { ··· 1930 2578 }; 1931 2579 } 1932 2580 { 1933 - name = "read_config_file___read_config_file_6.2.0.tgz"; 2581 + name = "read_config_file___read_config_file_6.3.2.tgz"; 1934 2582 path = fetchurl { 1935 - name = "read_config_file___read_config_file_6.2.0.tgz"; 1936 - url = "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.2.0.tgz"; 1937 - sha512 = "gx7Pgr5I56JtYz+WuqEbQHj/xWo+5Vwua2jhb1VwM4Wid5PqYmZ4i00ZB0YEGIfkVBsCv9UrjgyqCiQfS/Oosg=="; 2583 + name = "read_config_file___read_config_file_6.3.2.tgz"; 2584 + url = "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.3.2.tgz"; 2585 + sha512 = "M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q=="; 1938 2586 }; 1939 2587 } 1940 2588 { 1941 - name = "readable_stream___readable_stream_3.6.0.tgz"; 2589 + name = "readable_stream___readable_stream_3.6.2.tgz"; 1942 2590 path = fetchurl { 1943 - name = "readable_stream___readable_stream_3.6.0.tgz"; 1944 - url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; 1945 - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 2591 + name = "readable_stream___readable_stream_3.6.2.tgz"; 2592 + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz"; 2593 + sha512 = "9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="; 1946 2594 }; 1947 2595 } 1948 2596 { ··· 1975 2623 name = "responselike___responselike_2.0.1.tgz"; 1976 2624 url = "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz"; 1977 2625 sha512 = "4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw=="; 2626 + }; 2627 + } 2628 + { 2629 + name = "restore_cursor___restore_cursor_3.1.0.tgz"; 2630 + path = fetchurl { 2631 + name = "restore_cursor___restore_cursor_3.1.0.tgz"; 2632 + url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz"; 2633 + sha512 = "l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA=="; 2634 + }; 2635 + } 2636 + { 2637 + name = "retry___retry_0.12.0.tgz"; 2638 + path = fetchurl { 2639 + name = "retry___retry_0.12.0.tgz"; 2640 + url = "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz"; 2641 + sha512 = "9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="; 1978 2642 }; 1979 2643 } 1980 2644 { ··· 2034 2698 }; 2035 2699 } 2036 2700 { 2037 - name = "semver___semver_5.7.1.tgz"; 2701 + name = "semver___semver_5.7.2.tgz"; 2038 2702 path = fetchurl { 2039 - name = "semver___semver_5.7.1.tgz"; 2040 - url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz"; 2041 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 2703 + name = "semver___semver_5.7.2.tgz"; 2704 + url = "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz"; 2705 + sha512 = "cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="; 2042 2706 }; 2043 2707 } 2044 2708 { 2045 - name = "semver___semver_6.3.0.tgz"; 2709 + name = "semver___semver_6.3.1.tgz"; 2046 2710 path = fetchurl { 2047 - name = "semver___semver_6.3.0.tgz"; 2048 - url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz"; 2049 - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 2711 + name = "semver___semver_6.3.1.tgz"; 2712 + url = "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz"; 2713 + sha512 = "BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="; 2050 2714 }; 2051 2715 } 2052 2716 { 2053 - name = "semver___semver_7.3.8.tgz"; 2717 + name = "semver___semver_7.5.4.tgz"; 2054 2718 path = fetchurl { 2055 - name = "semver___semver_7.3.8.tgz"; 2056 - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz"; 2057 - sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; 2719 + name = "semver___semver_7.5.4.tgz"; 2720 + url = "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz"; 2721 + sha512 = "1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="; 2058 2722 }; 2059 2723 } 2060 2724 { ··· 2071 2735 name = "serialize_error___serialize_error_7.0.1.tgz"; 2072 2736 url = "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz"; 2073 2737 sha512 = "8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw=="; 2738 + }; 2739 + } 2740 + { 2741 + name = "set_blocking___set_blocking_2.0.0.tgz"; 2742 + path = fetchurl { 2743 + name = "set_blocking___set_blocking_2.0.0.tgz"; 2744 + url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz"; 2745 + sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 2074 2746 }; 2075 2747 } 2076 2748 { ··· 2114 2786 }; 2115 2787 } 2116 2788 { 2789 + name = "signal_exit___signal_exit_4.0.2.tgz"; 2790 + path = fetchurl { 2791 + name = "signal_exit___signal_exit_4.0.2.tgz"; 2792 + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz"; 2793 + sha512 = "MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="; 2794 + }; 2795 + } 2796 + { 2117 2797 name = "simple_concat___simple_concat_1.0.1.tgz"; 2118 2798 path = fetchurl { 2119 2799 name = "simple_concat___simple_concat_1.0.1.tgz"; ··· 2154 2834 }; 2155 2835 } 2156 2836 { 2837 + name = "socks_proxy_agent___socks_proxy_agent_7.0.0.tgz"; 2838 + path = fetchurl { 2839 + name = "socks_proxy_agent___socks_proxy_agent_7.0.0.tgz"; 2840 + url = "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz"; 2841 + sha512 = "Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww=="; 2842 + }; 2843 + } 2844 + { 2845 + name = "socks_proxy_agent___socks_proxy_agent_8.0.1.tgz"; 2846 + path = fetchurl { 2847 + name = "socks_proxy_agent___socks_proxy_agent_8.0.1.tgz"; 2848 + url = "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.1.tgz"; 2849 + sha512 = "59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ=="; 2850 + }; 2851 + } 2852 + { 2853 + name = "socks___socks_2.7.1.tgz"; 2854 + path = fetchurl { 2855 + name = "socks___socks_2.7.1.tgz"; 2856 + url = "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz"; 2857 + sha512 = "7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ=="; 2858 + }; 2859 + } 2860 + { 2157 2861 name = "source_map_support___source_map_support_0.5.21.tgz"; 2158 2862 path = fetchurl { 2159 2863 name = "source_map_support___source_map_support_0.5.21.tgz"; ··· 2178 2882 }; 2179 2883 } 2180 2884 { 2885 + name = "ssri___ssri_10.0.4.tgz"; 2886 + path = fetchurl { 2887 + name = "ssri___ssri_10.0.4.tgz"; 2888 + url = "https://registry.yarnpkg.com/ssri/-/ssri-10.0.4.tgz"; 2889 + sha512 = "12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ=="; 2890 + }; 2891 + } 2892 + { 2181 2893 name = "stat_mode___stat_mode_1.0.0.tgz"; 2182 2894 path = fetchurl { 2183 2895 name = "stat_mode___stat_mode_1.0.0.tgz"; ··· 2194 2906 }; 2195 2907 } 2196 2908 { 2909 + name = "string_width___string_width_5.1.2.tgz"; 2910 + path = fetchurl { 2911 + name = "string_width___string_width_5.1.2.tgz"; 2912 + url = "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz"; 2913 + sha512 = "HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="; 2914 + }; 2915 + } 2916 + { 2197 2917 name = "string_decoder___string_decoder_1.3.0.tgz"; 2198 2918 path = fetchurl { 2199 2919 name = "string_decoder___string_decoder_1.3.0.tgz"; ··· 2207 2927 name = "strip_ansi___strip_ansi_6.0.1.tgz"; 2208 2928 url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz"; 2209 2929 sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 2930 + }; 2931 + } 2932 + { 2933 + name = "strip_ansi___strip_ansi_7.1.0.tgz"; 2934 + path = fetchurl { 2935 + name = "strip_ansi___strip_ansi_7.1.0.tgz"; 2936 + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz"; 2937 + sha512 = "iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="; 2210 2938 }; 2211 2939 } 2212 2940 { ··· 2266 2994 }; 2267 2995 } 2268 2996 { 2269 - name = "tar___tar_6.1.13.tgz"; 2997 + name = "tar___tar_6.1.15.tgz"; 2270 2998 path = fetchurl { 2271 - name = "tar___tar_6.1.13.tgz"; 2272 - url = "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz"; 2273 - sha512 = "jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw=="; 2999 + name = "tar___tar_6.1.15.tgz"; 3000 + url = "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz"; 3001 + sha512 = "/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A=="; 2274 3002 }; 2275 3003 } 2276 3004 { ··· 2322 3050 }; 2323 3051 } 2324 3052 { 3053 + name = "tslib___tslib_2.6.0.tgz"; 3054 + path = fetchurl { 3055 + name = "tslib___tslib_2.6.0.tgz"; 3056 + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz"; 3057 + sha512 = "7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA=="; 3058 + }; 3059 + } 3060 + { 2325 3061 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 2326 3062 path = fetchurl { 2327 3063 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 2328 3064 url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; 2329 3065 sha512 = "McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w=="; 3066 + }; 3067 + } 3068 + { 3069 + name = "type_check___type_check_0.3.2.tgz"; 3070 + path = fetchurl { 3071 + name = "type_check___type_check_0.3.2.tgz"; 3072 + url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 3073 + sha512 = "ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg=="; 2330 3074 }; 2331 3075 } 2332 3076 { ··· 2338 3082 }; 2339 3083 } 2340 3084 { 3085 + name = "typescript___typescript_4.9.5.tgz"; 3086 + path = fetchurl { 3087 + name = "typescript___typescript_4.9.5.tgz"; 3088 + url = "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz"; 3089 + sha512 = "1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g=="; 3090 + }; 3091 + } 3092 + { 2341 3093 name = "unbzip2_stream___unbzip2_stream_1.4.3.tgz"; 2342 3094 path = fetchurl { 2343 3095 name = "unbzip2_stream___unbzip2_stream_1.4.3.tgz"; ··· 2346 3098 }; 2347 3099 } 2348 3100 { 3101 + name = "unique_filename___unique_filename_3.0.0.tgz"; 3102 + path = fetchurl { 3103 + name = "unique_filename___unique_filename_3.0.0.tgz"; 3104 + url = "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz"; 3105 + sha512 = "afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g=="; 3106 + }; 3107 + } 3108 + { 3109 + name = "unique_slug___unique_slug_4.0.0.tgz"; 3110 + path = fetchurl { 3111 + name = "unique_slug___unique_slug_4.0.0.tgz"; 3112 + url = "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz"; 3113 + sha512 = "WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ=="; 3114 + }; 3115 + } 3116 + { 2349 3117 name = "universalify___universalify_0.1.2.tgz"; 2350 3118 path = fetchurl { 2351 3119 name = "universalify___universalify_0.1.2.tgz"; ··· 2394 3162 }; 2395 3163 } 2396 3164 { 3165 + name = "vm2___vm2_3.9.19.tgz"; 3166 + path = fetchurl { 3167 + name = "vm2___vm2_3.9.19.tgz"; 3168 + url = "https://registry.yarnpkg.com/vm2/-/vm2-3.9.19.tgz"; 3169 + sha512 = "J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg=="; 3170 + }; 3171 + } 3172 + { 3173 + name = "wcwidth___wcwidth_1.0.1.tgz"; 3174 + path = fetchurl { 3175 + name = "wcwidth___wcwidth_1.0.1.tgz"; 3176 + url = "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz"; 3177 + sha512 = "XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="; 3178 + }; 3179 + } 3180 + { 2397 3181 name = "webidl_conversions___webidl_conversions_3.0.1.tgz"; 2398 3182 path = fetchurl { 2399 3183 name = "webidl_conversions___webidl_conversions_3.0.1.tgz"; ··· 2426 3210 }; 2427 3211 } 2428 3212 { 3213 + name = "wide_align___wide_align_1.1.5.tgz"; 3214 + path = fetchurl { 3215 + name = "wide_align___wide_align_1.1.5.tgz"; 3216 + url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz"; 3217 + sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="; 3218 + }; 3219 + } 3220 + { 3221 + name = "word_wrap___word_wrap_1.2.5.tgz"; 3222 + path = fetchurl { 3223 + name = "word_wrap___word_wrap_1.2.5.tgz"; 3224 + url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz"; 3225 + sha512 = "BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="; 3226 + }; 3227 + } 3228 + { 2429 3229 name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; 2430 3230 path = fetchurl { 2431 3231 name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; ··· 2434 3234 }; 2435 3235 } 2436 3236 { 3237 + name = "wrap_ansi___wrap_ansi_8.1.0.tgz"; 3238 + path = fetchurl { 3239 + name = "wrap_ansi___wrap_ansi_8.1.0.tgz"; 3240 + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz"; 3241 + sha512 = "si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="; 3242 + }; 3243 + } 3244 + { 2437 3245 name = "wrappy___wrappy_1.0.2.tgz"; 2438 3246 path = fetchurl { 2439 3247 name = "wrappy___wrappy_1.0.2.tgz"; ··· 2442 3250 }; 2443 3251 } 2444 3252 { 2445 - name = "ws___ws_8.10.0.tgz"; 3253 + name = "ws___ws_8.13.0.tgz"; 2446 3254 path = fetchurl { 2447 - name = "ws___ws_8.10.0.tgz"; 2448 - url = "https://registry.yarnpkg.com/ws/-/ws-8.10.0.tgz"; 2449 - sha512 = "+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw=="; 3255 + name = "ws___ws_8.13.0.tgz"; 3256 + url = "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz"; 3257 + sha512 = "x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA=="; 2450 3258 }; 2451 3259 } 2452 3260 { ··· 2482 3290 }; 2483 3291 } 2484 3292 { 2485 - name = "yargs___yargs_17.6.2.tgz"; 3293 + name = "yargs___yargs_17.7.1.tgz"; 2486 3294 path = fetchurl { 2487 - name = "yargs___yargs_17.6.2.tgz"; 2488 - url = "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz"; 2489 - sha512 = "1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw=="; 3295 + name = "yargs___yargs_17.7.1.tgz"; 3296 + url = "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz"; 3297 + sha512 = "cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw=="; 3298 + }; 3299 + } 3300 + { 3301 + name = "yargs___yargs_17.7.2.tgz"; 3302 + path = fetchurl { 3303 + name = "yargs___yargs_17.7.2.tgz"; 3304 + url = "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz"; 3305 + sha512 = "7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="; 2490 3306 }; 2491 3307 } 2492 3308 {
+1038 -1641
pkgs/tools/networking/edgedb/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "addr2line" 7 - version = "0.17.0" 7 + version = "0.19.0" 8 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 9 + checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10 10 dependencies = [ 11 11 "gimli", 12 12 ] ··· 24 24 checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 25 25 26 26 [[package]] 27 - name = "aead" 28 - version = "0.3.2" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" 31 - dependencies = [ 32 - "generic-array", 33 - ] 34 - 35 - [[package]] 36 27 name = "aes" 37 - version = "0.6.0" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" 40 - dependencies = [ 41 - "aes-soft", 42 - "aesni", 43 - "cipher 0.2.5", 44 - ] 45 - 46 - [[package]] 47 - name = "aes" 48 - version = "0.7.5" 28 + version = "0.8.2" 49 29 source = "registry+https://github.com/rust-lang/crates.io-index" 50 - checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 30 + checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 51 31 dependencies = [ 52 - "cfg-if 1.0.0", 53 - "cipher 0.3.0", 32 + "cfg-if", 33 + "cipher", 54 34 "cpufeatures", 55 - "opaque-debug", 56 35 ] 57 36 58 37 [[package]] 59 - name = "aes-gcm" 60 - version = "0.8.0" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da" 63 - dependencies = [ 64 - "aead", 65 - "aes 0.6.0", 66 - "cipher 0.2.5", 67 - "ctr", 68 - "ghash", 69 - "subtle", 70 - ] 71 - 72 - [[package]] 73 - name = "aes-soft" 74 - version = "0.6.4" 38 + name = "ahash" 39 + version = "0.7.6" 75 40 source = "registry+https://github.com/rust-lang/crates.io-index" 76 - checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" 77 - dependencies = [ 78 - "cipher 0.2.5", 79 - "opaque-debug", 80 - ] 81 - 82 - [[package]] 83 - name = "aesni" 84 - version = "0.10.0" 85 - source = "registry+https://github.com/rust-lang/crates.io-index" 86 - checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" 41 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 87 42 dependencies = [ 88 - "cipher 0.2.5", 89 - "opaque-debug", 43 + "getrandom", 44 + "once_cell", 45 + "version_check", 90 46 ] 91 47 92 48 [[package]] 93 49 name = "aho-corasick" 94 - version = "0.7.18" 50 + version = "1.0.2" 95 51 source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 52 + checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 97 53 dependencies = [ 98 54 "memchr", 99 55 ] 100 56 101 57 [[package]] 102 - name = "ansi_term" 103 - version = "0.12.1" 58 + name = "android-tzdata" 59 + version = "0.1.1" 104 60 source = "registry+https://github.com/rust-lang/crates.io-index" 105 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 106 - dependencies = [ 107 - "winapi", 108 - ] 61 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 109 62 110 63 [[package]] 111 - name = "anyhow" 112 - version = "1.0.59" 64 + name = "anstyle" 65 + version = "1.0.0" 113 66 source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9" 67 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 115 68 116 69 [[package]] 117 - name = "anymap" 118 - version = "0.12.1" 70 + name = "anyhow" 71 + version = "1.0.71" 119 72 source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344" 73 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 121 74 122 75 [[package]] 123 76 name = "arc-swap" 124 - version = "1.5.1" 77 + version = "1.6.0" 125 78 source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164" 79 + checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 127 80 128 81 [[package]] 129 82 name = "arrayref" ··· 133 86 134 87 [[package]] 135 88 name = "arrayvec" 136 - version = "0.5.2" 137 - source = "registry+https://github.com/rust-lang/crates.io-index" 138 - checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 139 - 140 - [[package]] 141 - name = "arrayvec" 142 89 version = "0.7.2" 143 90 source = "registry+https://github.com/rust-lang/crates.io-index" 144 91 checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 145 92 146 93 [[package]] 147 94 name = "assert_cmd" 148 - version = "1.0.1" 149 - source = "git+https://github.com/tailhook/assert_cmd?branch=edgedb_20190513#062308b405aaa36240a80c07fec520768b628035" 95 + version = "2.0.11" 96 + source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "86d6b683edf8d1119fe420a94f8a7e389239666aa72e65495d91c00462510151" 150 98 dependencies = [ 99 + "anstyle", 100 + "bstr", 151 101 "doc-comment", 152 - "predicates 1.0.8", 102 + "predicates 3.0.3", 153 103 "predicates-core", 154 104 "predicates-tree", 155 105 "wait-timeout", 156 106 ] 157 107 158 108 [[package]] 159 - name = "async-attributes" 160 - version = "1.1.2" 161 - source = "registry+https://github.com/rust-lang/crates.io-index" 162 - checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5" 163 - dependencies = [ 164 - "quote", 165 - "syn", 166 - ] 167 - 168 - [[package]] 169 109 name = "async-channel" 170 - version = "1.6.1" 110 + version = "1.8.0" 171 111 source = "registry+https://github.com/rust-lang/crates.io-index" 172 - checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319" 112 + checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 173 113 dependencies = [ 174 114 "concurrent-queue", 175 115 "event-listener", ··· 177 117 ] 178 118 179 119 [[package]] 180 - name = "async-dup" 181 - version = "1.2.2" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "7427a12b8dc09291528cfb1da2447059adb4a257388c2acd6497a79d55cf6f7c" 184 - dependencies = [ 185 - "futures-io", 186 - "simple-mutex", 187 - ] 188 - 189 - [[package]] 190 120 name = "async-executor" 191 - version = "1.4.1" 121 + version = "1.5.0" 192 122 source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965" 123 + checksum = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b" 194 124 dependencies = [ 125 + "async-lock", 195 126 "async-task", 196 127 "concurrent-queue", 197 128 "fastrand", 198 129 "futures-lite", 199 - "once_cell", 200 130 "slab", 201 131 ] 202 132 203 133 [[package]] 204 134 name = "async-global-executor" 205 - version = "2.2.0" 135 + version = "2.3.1" 206 136 source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "5262ed948da60dd8956c6c5aca4d4163593dddb7b32d73267c93dab7b2e98940" 137 + checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 208 138 dependencies = [ 209 139 "async-channel", 210 140 "async-executor", ··· 212 142 "async-lock", 213 143 "blocking", 214 144 "futures-lite", 215 - "num_cpus", 216 145 "once_cell", 217 146 ] 218 147 219 148 [[package]] 220 - name = "async-h1" 221 - version = "2.3.3" 222 - source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "8101020758a4fc3a7c326cb42aa99e9fa77cbfb76987c128ad956406fe1f70a7" 224 - dependencies = [ 225 - "async-channel", 226 - "async-dup", 227 - "async-std", 228 - "futures-core", 229 - "http-types", 230 - "httparse", 231 - "log", 232 - "pin-project", 233 - ] 234 - 235 - [[package]] 236 149 name = "async-io" 237 - version = "1.7.0" 150 + version = "1.12.0" 238 151 source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "e5e18f61464ae81cde0a23e713ae8fd299580c54d697a35820cfd0625b8b0e07" 152 + checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794" 240 153 dependencies = [ 154 + "async-lock", 155 + "autocfg", 241 156 "concurrent-queue", 242 157 "futures-lite", 243 158 "libc", 244 159 "log", 245 - "once_cell", 246 160 "parking", 247 161 "polling", 248 162 "slab", 249 163 "socket2", 250 164 "waker-fn", 251 - "winapi", 165 + "windows-sys 0.42.0", 252 166 ] 253 167 254 168 [[package]] ··· 262 176 263 177 [[package]] 264 178 name = "async-lock" 265 - version = "2.5.0" 266 - source = "registry+https://github.com/rust-lang/crates.io-index" 267 - checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6" 268 - dependencies = [ 269 - "event-listener", 270 - ] 271 - 272 - [[package]] 273 - name = "async-native-tls" 274 - version = "0.3.3" 275 - source = "registry+https://github.com/rust-lang/crates.io-index" 276 - checksum = "9e9e7a929bd34c68a82d58a4de7f86fffdaf97fb2af850162a7bb19dd7269b33" 277 - dependencies = [ 278 - "async-std", 279 - "native-tls", 280 - "thiserror", 281 - "url", 282 - ] 283 - 284 - [[package]] 285 - name = "async-process" 286 - version = "1.4.0" 179 + version = "2.7.0" 287 180 source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "cf2c06e30a24e8c78a3987d07f0930edf76ef35e027e7bdb063fccafdad1f60c" 181 + checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 289 182 dependencies = [ 290 - "async-io", 291 - "blocking", 292 - "cfg-if 1.0.0", 293 183 "event-listener", 294 - "futures-lite", 295 - "libc", 296 - "once_cell", 297 - "signal-hook", 298 - "winapi", 299 184 ] 300 185 301 186 [[package]] ··· 304 189 source = "registry+https://github.com/rust-lang/crates.io-index" 305 190 checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 306 191 dependencies = [ 307 - "async-attributes", 308 192 "async-channel", 309 193 "async-global-executor", 310 194 "async-io", 311 195 "async-lock", 312 - "async-process", 313 196 "crossbeam-utils", 314 197 "futures-channel", 315 198 "futures-core", ··· 334 217 335 218 [[package]] 336 219 name = "async-trait" 337 - version = "0.1.57" 220 + version = "0.1.66" 338 221 source = "registry+https://github.com/rust-lang/crates.io-index" 339 - checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f" 222 + checksum = "b84f9ebcc6c1f5b8cb160f6990096a5c127f423fcb6e1ccc46c370cbdfb75dfc" 340 223 dependencies = [ 341 224 "proc-macro2", 342 225 "quote", 343 - "syn", 226 + "syn 1.0.109", 344 227 ] 345 228 346 229 [[package]] 347 230 name = "atomic-waker" 348 - version = "1.0.0" 231 + version = "1.1.0" 349 232 source = "registry+https://github.com/rust-lang/crates.io-index" 350 - checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" 233 + checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599" 351 234 352 235 [[package]] 353 236 name = "atty" ··· 368 251 369 252 [[package]] 370 253 name = "backtrace" 371 - version = "0.3.66" 254 + version = "0.3.67" 372 255 source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 256 + checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 374 257 dependencies = [ 375 258 "addr2line", 376 259 "cc", 377 - "cfg-if 1.0.0", 260 + "cfg-if", 378 261 "libc", 379 262 "miniz_oxide", 380 263 "object", ··· 382 265 ] 383 266 384 267 [[package]] 385 - name = "base-x" 386 - version = "0.2.11" 268 + name = "base16ct" 269 + version = "0.2.0" 387 270 source = "registry+https://github.com/rust-lang/crates.io-index" 388 - checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 271 + checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 389 272 390 273 [[package]] 391 274 name = "base32" ··· 395 278 396 279 [[package]] 397 280 name = "base64" 398 - version = "0.13.0" 281 + version = "0.13.1" 399 282 source = "registry+https://github.com/rust-lang/crates.io-index" 400 - checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 283 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 284 + 285 + [[package]] 286 + name = "base64" 287 + version = "0.21.2" 288 + source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 401 290 402 291 [[package]] 403 292 name = "base64ct" ··· 406 295 checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b" 407 296 408 297 [[package]] 298 + name = "basic-toml" 299 + version = "0.1.2" 300 + source = "registry+https://github.com/rust-lang/crates.io-index" 301 + checksum = "5c0de75129aa8d0cceaf750b89013f0e08804d6ec61416da787b35ad0d7cddf1" 302 + dependencies = [ 303 + "serde", 304 + ] 305 + 306 + [[package]] 409 307 name = "bigdecimal" 410 - version = "0.3.0" 308 + version = "0.3.1" 411 309 source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "6aaf33151a6429fe9211d1b276eafdf70cdff28b071e76c0b0e1503221ea3744" 310 + checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa" 413 311 dependencies = [ 414 312 "num-bigint", 415 313 "num-integer", ··· 423 321 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 424 322 425 323 [[package]] 426 - name = "blake2b_simd" 427 - version = "1.0.0" 324 + name = "bitflags" 325 + version = "2.3.1" 326 + source = "registry+https://github.com/rust-lang/crates.io-index" 327 + checksum = "6776fc96284a0bb647b615056fc496d1fe1644a7ab01829818a6d91cae888b84" 328 + 329 + [[package]] 330 + name = "bitvec" 331 + version = "1.0.1" 428 332 source = "registry+https://github.com/rust-lang/crates.io-index" 429 - checksum = "72936ee4afc7f8f736d1c38383b56480b5497b4617b4a77bdbf1d2ababc76127" 333 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 430 334 dependencies = [ 431 - "arrayref", 432 - "arrayvec 0.7.2", 433 - "constant_time_eq", 335 + "funty", 336 + "radium", 337 + "tap", 338 + "wyz", 434 339 ] 435 340 436 341 [[package]] 437 - name = "blake3" 438 - version = "1.3.1" 342 + name = "blake2b_simd" 343 + version = "1.0.1" 439 344 source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f" 345 + checksum = "3c2f0dc9a68c6317d884f97cc36cf5a3d20ba14ce404227df55e1af708ab04bc" 441 346 dependencies = [ 442 347 "arrayref", 443 - "arrayvec 0.7.2", 444 - "cc", 445 - "cfg-if 1.0.0", 446 - "constant_time_eq", 447 - "digest 0.10.3", 348 + "arrayvec", 349 + "constant_time_eq 0.2.4", 448 350 ] 449 351 450 352 [[package]] 451 - name = "block-buffer" 452 - version = "0.9.0" 353 + name = "blake3" 354 + version = "1.4.0" 453 355 source = "registry+https://github.com/rust-lang/crates.io-index" 454 - checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 356 + checksum = "729b71f35bd3fa1a4c86b85d32c8b9069ea7fe14f7a53cfabb65f62d4265b888" 455 357 dependencies = [ 456 - "generic-array", 358 + "arrayref", 359 + "arrayvec", 360 + "cc", 361 + "cfg-if", 362 + "constant_time_eq 0.2.4", 363 + "digest", 457 364 ] 458 365 459 366 [[package]] 460 367 name = "block-buffer" 461 - version = "0.10.2" 368 + version = "0.10.4" 462 369 source = "registry+https://github.com/rust-lang/crates.io-index" 463 - checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 370 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 464 371 dependencies = [ 465 372 "generic-array", 466 373 ] 467 374 468 375 [[package]] 469 376 name = "blocking" 470 - version = "1.2.0" 377 + version = "1.3.0" 471 378 source = "registry+https://github.com/rust-lang/crates.io-index" 472 - checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc" 379 + checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8" 473 380 dependencies = [ 474 381 "async-channel", 382 + "async-lock", 475 383 "async-task", 476 384 "atomic-waker", 477 385 "fastrand", 478 386 "futures-lite", 387 + ] 388 + 389 + [[package]] 390 + name = "bstr" 391 + version = "1.3.0" 392 + source = "registry+https://github.com/rust-lang/crates.io-index" 393 + checksum = "5ffdb39cb703212f3c11973452c2861b972f757b021158f3516ba10f2fa8b2c1" 394 + dependencies = [ 395 + "memchr", 479 396 "once_cell", 397 + "regex-automata", 398 + "serde", 480 399 ] 481 400 482 401 [[package]] 483 402 name = "bumpalo" 484 - version = "3.10.0" 403 + version = "3.12.0" 485 404 source = "registry+https://github.com/rust-lang/crates.io-index" 486 - checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" 405 + checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 487 406 488 407 [[package]] 489 408 name = "byteorder" ··· 493 412 494 413 [[package]] 495 414 name = "bytes" 496 - version = "1.2.1" 415 + version = "1.4.0" 497 416 source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 417 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 499 418 500 419 [[package]] 501 420 name = "bzip2" 502 - version = "0.4.3" 421 + version = "0.4.4" 503 422 source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" 423 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 505 424 dependencies = [ 506 425 "bzip2-sys", 507 426 "libc", ··· 517 436 "libc", 518 437 "pkg-config", 519 438 ] 520 - 521 - [[package]] 522 - name = "cache-padded" 523 - version = "1.2.0" 524 - source = "registry+https://github.com/rust-lang/crates.io-index" 525 - checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c" 526 439 527 440 [[package]] 528 441 name = "cc" 529 - version = "1.0.73" 442 + version = "1.0.79" 530 443 source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 444 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 532 445 dependencies = [ 533 446 "jobserver", 534 447 ] 535 448 536 449 [[package]] 537 450 name = "cfg-if" 538 - version = "0.1.10" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 541 - 542 - [[package]] 543 - name = "cfg-if" 544 451 version = "1.0.0" 545 452 source = "registry+https://github.com/rust-lang/crates.io-index" 546 453 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 547 454 548 455 [[package]] 549 456 name = "chrono" 550 - version = "0.4.19" 457 + version = "0.4.26" 551 458 source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 459 + checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 553 460 dependencies = [ 554 - "libc", 555 - "num-integer", 461 + "android-tzdata", 556 462 "num-traits", 557 - "time 0.1.44", 558 - "winapi", 559 463 ] 560 464 561 465 [[package]] 562 466 name = "cipher" 563 - version = "0.2.5" 564 - source = "registry+https://github.com/rust-lang/crates.io-index" 565 - checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" 566 - dependencies = [ 567 - "generic-array", 568 - ] 569 - 570 - [[package]] 571 - name = "cipher" 572 - version = "0.3.0" 467 + version = "0.4.4" 573 468 source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 469 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 575 470 dependencies = [ 576 - "generic-array", 471 + "crypto-common", 472 + "inout", 577 473 ] 578 474 579 475 [[package]] 580 476 name = "clap" 581 - version = "3.2.23" 477 + version = "3.2.25" 582 478 source = "registry+https://github.com/rust-lang/crates.io-index" 583 - checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 479 + checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 584 480 dependencies = [ 585 481 "atty", 586 - "bitflags", 482 + "bitflags 1.3.2", 587 483 "clap_derive", 588 484 "clap_lex", 589 - "indexmap", 485 + "indexmap 1.9.3", 590 486 "once_cell", 591 487 "strsim", 592 488 "termcolor", 593 - "textwrap 0.16.0", 489 + "textwrap", 594 490 ] 595 491 596 492 [[package]] ··· 604 500 605 501 [[package]] 606 502 name = "clap_derive" 607 - version = "3.2.18" 503 + version = "3.2.25" 608 504 source = "registry+https://github.com/rust-lang/crates.io-index" 609 - checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" 505 + checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" 610 506 dependencies = [ 611 507 "heck", 612 508 "proc-macro-error", 613 509 "proc-macro2", 614 510 "quote", 615 - "syn", 511 + "syn 1.0.109", 616 512 ] 617 513 618 514 [[package]] ··· 658 554 659 555 [[package]] 660 556 name = "colorful" 661 - version = "0.2.1" 557 + version = "0.2.2" 662 558 source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "0bca1619ff57dd7a56b58a8e25ef4199f123e78e503fe1653410350a1b98ae65" 559 + checksum = "97af0562545a7d7f3d9222fcf909963bec36dcb502afaacab98c6ffac8da47ce" 664 560 665 561 [[package]] 666 562 name = "combine" 667 - version = "4.6.4" 563 + version = "4.6.6" 668 564 source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "2a604e93b79d1808327a6fca85a6f2d69de66461e7620f5a4cbf5fb4d1d7c948" 565 + checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 670 566 dependencies = [ 671 567 "bytes", 672 568 "memchr", 673 569 ] 674 570 675 571 [[package]] 676 - name = "concurrent-queue" 677 - version = "1.2.4" 572 + name = "comma" 573 + version = "1.0.0" 678 574 source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c" 680 - dependencies = [ 681 - "cache-padded", 682 - ] 575 + checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335" 683 576 684 577 [[package]] 685 - name = "config" 686 - version = "0.10.1" 578 + name = "concurrent-queue" 579 + version = "2.1.0" 687 580 source = "registry+https://github.com/rust-lang/crates.io-index" 688 - checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3" 581 + checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 689 582 dependencies = [ 690 - "lazy_static", 691 - "nom", 692 - "serde", 583 + "crossbeam-utils", 693 584 ] 694 585 695 586 [[package]] 696 587 name = "console" 697 - version = "0.15.1" 588 + version = "0.15.5" 698 589 source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847" 590 + checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 700 591 dependencies = [ 701 592 "encode_unicode 0.3.6", 593 + "lazy_static", 702 594 "libc", 703 - "once_cell", 704 - "terminal_size", 705 595 "unicode-width", 706 - "winapi", 596 + "windows-sys 0.42.0", 707 597 ] 708 598 709 599 [[package]] 710 - name = "const_fn" 711 - version = "0.4.9" 712 - source = "registry+https://github.com/rust-lang/crates.io-index" 713 - checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" 714 - 715 - [[package]] 716 600 name = "constant_time_eq" 717 601 version = "0.1.5" 718 602 source = "registry+https://github.com/rust-lang/crates.io-index" 719 603 checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 720 604 721 605 [[package]] 722 - name = "cookie" 723 - version = "0.14.4" 606 + name = "constant_time_eq" 607 + version = "0.2.4" 724 608 source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951" 726 - dependencies = [ 727 - "aes-gcm", 728 - "base64", 729 - "hkdf", 730 - "hmac 0.10.1", 731 - "percent-encoding", 732 - "rand 0.8.5", 733 - "sha2 0.9.9", 734 - "time 0.2.27", 735 - "version_check", 736 - ] 609 + checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" 737 610 738 611 [[package]] 739 612 name = "coolor" ··· 762 635 763 636 [[package]] 764 637 name = "cpufeatures" 765 - version = "0.2.2" 638 + version = "0.2.5" 766 639 source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 640 + checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 768 641 dependencies = [ 769 642 "libc", 770 643 ] 771 644 772 645 [[package]] 773 - name = "cpuid-bool" 774 - version = "0.2.0" 646 + name = "crc16" 647 + version = "0.4.0" 775 648 source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" 649 + checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff" 777 650 778 651 [[package]] 779 652 name = "crc32fast" ··· 781 654 source = "registry+https://github.com/rust-lang/crates.io-index" 782 655 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 783 656 dependencies = [ 784 - "cfg-if 1.0.0", 657 + "cfg-if", 785 658 ] 786 659 787 660 [[package]] ··· 790 663 source = "registry+https://github.com/rust-lang/crates.io-index" 791 664 checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 792 665 dependencies = [ 793 - "cfg-if 1.0.0", 666 + "cfg-if", 794 667 "crossbeam-channel", 795 668 "crossbeam-deque", 796 669 "crossbeam-epoch", ··· 800 673 801 674 [[package]] 802 675 name = "crossbeam-channel" 803 - version = "0.5.6" 676 + version = "0.5.8" 804 677 source = "registry+https://github.com/rust-lang/crates.io-index" 805 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 678 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 806 679 dependencies = [ 807 - "cfg-if 1.0.0", 680 + "cfg-if", 808 681 "crossbeam-utils", 809 682 ] 810 683 811 684 [[package]] 812 685 name = "crossbeam-deque" 813 - version = "0.8.2" 686 + version = "0.8.3" 814 687 source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 688 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 816 689 dependencies = [ 817 - "cfg-if 1.0.0", 690 + "cfg-if", 818 691 "crossbeam-epoch", 819 692 "crossbeam-utils", 820 693 ] 821 694 822 695 [[package]] 823 696 name = "crossbeam-epoch" 824 - version = "0.9.10" 697 + version = "0.9.14" 825 698 source = "registry+https://github.com/rust-lang/crates.io-index" 826 - checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1" 699 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 827 700 dependencies = [ 828 701 "autocfg", 829 - "cfg-if 1.0.0", 702 + "cfg-if", 830 703 "crossbeam-utils", 831 - "memoffset", 832 - "once_cell", 704 + "memoffset 0.8.0", 833 705 "scopeguard", 834 706 ] 835 707 836 708 [[package]] 837 709 name = "crossbeam-queue" 838 - version = "0.3.6" 710 + version = "0.3.8" 839 711 source = "registry+https://github.com/rust-lang/crates.io-index" 840 - checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7" 712 + checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 841 713 dependencies = [ 842 - "cfg-if 1.0.0", 714 + "cfg-if", 843 715 "crossbeam-utils", 844 716 ] 845 717 846 718 [[package]] 847 719 name = "crossbeam-utils" 848 - version = "0.8.11" 720 + version = "0.8.16" 849 721 source = "registry+https://github.com/rust-lang/crates.io-index" 850 - checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" 722 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 851 723 dependencies = [ 852 - "cfg-if 1.0.0", 853 - "once_cell", 724 + "cfg-if", 854 725 ] 855 726 856 727 [[package]] ··· 859 730 source = "registry+https://github.com/rust-lang/crates.io-index" 860 731 checksum = "a2102ea4f781910f8a5b98dd061f4c2023f479ce7bb1236330099ceb5a93cf17" 861 732 dependencies = [ 862 - "bitflags", 733 + "bitflags 1.3.2", 863 734 "crossterm_winapi", 864 735 "libc", 865 736 "mio", ··· 889 760 ] 890 761 891 762 [[package]] 892 - name = "crypto-mac" 893 - version = "0.10.1" 894 - source = "registry+https://github.com/rust-lang/crates.io-index" 895 - checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" 896 - dependencies = [ 897 - "generic-array", 898 - "subtle", 899 - ] 900 - 901 - [[package]] 902 763 name = "ctor" 903 - version = "0.1.23" 764 + version = "0.1.26" 904 765 source = "registry+https://github.com/rust-lang/crates.io-index" 905 - checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb" 766 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 906 767 dependencies = [ 907 768 "quote", 908 - "syn", 909 - ] 910 - 911 - [[package]] 912 - name = "ctr" 913 - version = "0.6.0" 914 - source = "registry+https://github.com/rust-lang/crates.io-index" 915 - checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 916 - dependencies = [ 917 - "cipher 0.2.5", 769 + "syn 1.0.109", 918 770 ] 919 771 920 772 [[package]] 921 773 name = "ctrlc" 922 - version = "3.2.2" 923 - source = "registry+https://github.com/rust-lang/crates.io-index" 924 - checksum = "b37feaa84e6861e00a1f5e5aa8da3ee56d605c9992d33e082786754828e20865" 925 - dependencies = [ 926 - "nix 0.24.2", 927 - "winapi", 928 - ] 929 - 930 - [[package]] 931 - name = "dashmap" 932 - version = "5.3.4" 774 + version = "3.4.0" 933 775 source = "registry+https://github.com/rust-lang/crates.io-index" 934 - checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f" 935 - dependencies = [ 936 - "cfg-if 1.0.0", 937 - "hashbrown", 938 - "lock_api", 939 - "parking_lot_core", 940 - ] 941 - 942 - [[package]] 943 - name = "deadpool" 944 - version = "0.7.0" 945 - source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "3d126179d86aee4556e54f5f3c6bf6d9884e7cc52cef82f77ee6f90a7747616d" 776 + checksum = "2a011bbe2c35ce9c1f143b7af6f94f29a167beb4cd1d29e6740ce836f723120e" 947 777 dependencies = [ 948 - "async-trait", 949 - "config", 950 - "crossbeam-queue", 951 - "num_cpus", 952 - "serde", 953 - "tokio", 778 + "nix", 779 + "windows-sys 0.48.0", 954 780 ] 955 781 956 782 [[package]] ··· 960 786 checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 961 787 962 788 [[package]] 963 - name = "difference" 964 - version = "2.0.0" 965 - source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" 967 - 968 - [[package]] 969 789 name = "difflib" 970 790 version = "0.4.0" 971 791 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 973 793 974 794 [[package]] 975 795 name = "digest" 976 - version = "0.9.0" 796 + version = "0.10.6" 977 797 source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 798 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 979 799 dependencies = [ 980 - "generic-array", 800 + "block-buffer", 801 + "crypto-common", 802 + "subtle", 981 803 ] 982 804 983 805 [[package]] 984 - name = "digest" 985 - version = "0.10.3" 806 + name = "dirs" 807 + version = "4.0.0" 986 808 source = "registry+https://github.com/rust-lang/crates.io-index" 987 - checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 809 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 988 810 dependencies = [ 989 - "block-buffer 0.10.2", 990 - "crypto-common", 991 - "subtle", 811 + "dirs-sys 0.3.7", 992 812 ] 993 813 994 814 [[package]] 995 815 name = "dirs" 996 - version = "4.0.0" 816 + version = "5.0.1" 997 817 source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 818 + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 999 819 dependencies = [ 1000 - "dirs-sys", 820 + "dirs-sys 0.4.1", 1001 821 ] 1002 822 1003 823 [[package]] ··· 1006 826 source = "registry+https://github.com/rust-lang/crates.io-index" 1007 827 checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 1008 828 dependencies = [ 1009 - "cfg-if 1.0.0", 829 + "cfg-if", 1010 830 "dirs-sys-next", 1011 831 ] 1012 832 ··· 1022 842 ] 1023 843 1024 844 [[package]] 845 + name = "dirs-sys" 846 + version = "0.4.1" 847 + source = "registry+https://github.com/rust-lang/crates.io-index" 848 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 849 + dependencies = [ 850 + "libc", 851 + "option-ext", 852 + "redox_users", 853 + "windows-sys 0.48.0", 854 + ] 855 + 856 + [[package]] 1025 857 name = "dirs-sys-next" 1026 858 version = "0.1.2" 1027 859 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1033 865 ] 1034 866 1035 867 [[package]] 1036 - name = "discard" 1037 - version = "1.0.4" 868 + name = "dissimilar" 869 + version = "1.0.6" 1038 870 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" 871 + checksum = "210ec60ae7d710bed8683e333e9d2855a8a56a3e9892b38bad3bb0d4d29b0d5e" 1040 872 1041 873 [[package]] 1042 874 name = "doc-comment" ··· 1052 884 1053 885 [[package]] 1054 886 name = "edgedb-cli" 1055 - version = "2.3.1" 887 + version = "3.3.0" 1056 888 dependencies = [ 1057 889 "anyhow", 1058 - "anymap", 1059 890 "arc-swap", 1060 891 "assert_cmd", 1061 892 "async-listen", 1062 - "async-process", 1063 - "async-std", 1064 - "atty", 1065 893 "backtrace", 1066 894 "base32", 1067 - "base64", 895 + "base64 0.13.1", 1068 896 "bigdecimal", 897 + "bitvec", 1069 898 "blake2b_simd", 1070 899 "blake3", 1071 - "blocking", 1072 900 "bytes", 1073 901 "chrono", 1074 902 "clap", ··· 1080 908 "crossbeam-utils", 1081 909 "crossterm", 1082 910 "ctrlc", 1083 - "difference", 1084 - "dirs", 911 + "dirs 4.0.0", 912 + "dissimilar", 1085 913 "downcast-rs", 1086 914 "edgedb-cli-derive", 1087 - "edgedb-client", 1088 915 "edgedb-derive", 916 + "edgedb-errors", 1089 917 "edgedb-protocol", 918 + "edgedb-tokio", 1090 919 "edgeql-parser", 1091 - "env_logger 0.9.0", 1092 - "fd-lock 3.0.6", 920 + "env_logger 0.10.0", 921 + "fd-lock 3.0.12", 1093 922 "fn-error-context", 1094 923 "fs-err", 1095 - "futures", 1096 924 "futures-util", 925 + "gethostname", 1097 926 "hex", 1098 927 "humantime 2.1.0", 1099 928 "humantime-serde", 1100 929 "immutable-chunkmap", 930 + "indexmap 2.0.0-pre", 1101 931 "indicatif", 932 + "is-terminal", 1102 933 "libc", 1103 934 "libflate", 1104 - "linked-hash-map", 1105 935 "log", 1106 936 "minimad", 1107 937 "native-tls", 1108 - "nix 0.24.2", 938 + "nix", 939 + "notify", 1109 940 "num-bigint", 1110 941 "once_cell", 1111 942 "open", 1112 943 "openssl", 1113 944 "os-release", 1114 - "pem 1.1.0", 1115 - "predicates 2.1.1", 945 + "pem 1.1.1", 946 + "predicates 2.1.5", 1116 947 "pretty_assertions", 1117 948 "prettytable-rs", 1118 - "rand 0.8.5", 949 + "rand", 1119 950 "regex", 1120 951 "reqwest", 1121 952 "rexpect", 1122 953 "ring", 1123 954 "rpassword", 1124 - "rustls 0.20.6", 955 + "rustls", 1125 956 "rustyline", 1126 957 "scram", 1127 - "semver 1.0.13", 958 + "semver", 1128 959 "serde", 1129 960 "serde_json", 1130 961 "serde_millis", 1131 962 "serde_path_to_error", 1132 963 "serde_str", 1133 - "sha1 0.10.1", 1134 - "sha2 0.10.2", 964 + "sha1", 965 + "sha2", 1135 966 "shell-escape", 1136 967 "shutdown_hooks", 1137 - "signal", 1138 968 "signal-hook", 1139 969 "snafu", 1140 970 "strsim", 1141 - "surf", 1142 971 "tar", 1143 972 "tempfile", 1144 973 "term", 1145 - "term_size", 1146 974 "termcolor", 1147 975 "termimad", 976 + "terminal_size", 1148 977 "test-case", 1149 - "textwrap 0.15.0", 978 + "textwrap", 1150 979 "thiserror", 1151 980 "tokio", 981 + "tokio-stream", 1152 982 "toml", 1153 983 "unicode-segmentation", 984 + "unicode-width", 1154 985 "url", 1155 986 "urlencoding", 1156 987 "uuid", 1157 988 "wait-timeout", 1158 989 "warp", 1159 - "webpki 0.22.0", 990 + "webpki", 1160 991 "which", 1161 992 "whoami", 1162 993 "winapi", 1163 994 "winreg", 1164 995 "wslapi", 1165 996 "zip", 1166 - "zstd", 997 + "zstd 0.12.3+zstd.1.5.2", 1167 998 ] 1168 999 1169 1000 [[package]] ··· 1173 1004 "clap", 1174 1005 "clap_generate", 1175 1006 "heck", 1176 - "linked-hash-map", 1007 + "indexmap 1.9.3", 1177 1008 "proc-macro-error", 1178 1009 "proc-macro2", 1179 1010 "quote", 1180 - "syn", 1011 + "syn 1.0.109", 1181 1012 "termimad", 1182 1013 "trybuild", 1183 1014 ] 1184 1015 1185 1016 [[package]] 1186 - name = "edgedb-client" 1187 - version = "0.3.0" 1188 - dependencies = [ 1189 - "anyhow", 1190 - "async-std", 1191 - "async-trait", 1192 - "bytes", 1193 - "dirs", 1194 - "edgedb-derive", 1195 - "edgedb-errors", 1196 - "edgedb-protocol", 1197 - "env_logger 0.9.0", 1198 - "futures-util", 1199 - "log", 1200 - "rand 0.8.5", 1201 - "rustls 0.20.6", 1202 - "rustls-native-certs", 1203 - "rustls-pemfile 0.3.0", 1204 - "scram", 1205 - "serde", 1206 - "serde_json", 1207 - "sha1 0.10.1", 1208 - "snafu", 1209 - "tls-api", 1210 - "tls-api-not-tls", 1211 - "tls-api-rustls", 1212 - "typemap", 1213 - "url", 1214 - "webpki 0.22.0", 1215 - "webpki-roots", 1216 - ] 1217 - 1218 - [[package]] 1219 1017 name = "edgedb-derive" 1220 - version = "0.4.0" 1221 - source = "git+https://github.com/edgedb/edgedb-rust#fe0af0edd3ab2fd075d9159857ebebec5573cbed" 1018 + version = "0.5.0" 1019 + source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1222 1020 dependencies = [ 1223 1021 "proc-macro2", 1224 1022 "quote", 1225 - "syn", 1023 + "syn 2.0.18", 1226 1024 "trybuild", 1227 1025 ] 1228 1026 1229 1027 [[package]] 1230 1028 name = "edgedb-errors" 1231 - version = "0.3.0" 1232 - source = "git+https://github.com/edgedb/edgedb-rust#fe0af0edd3ab2fd075d9159857ebebec5573cbed" 1029 + version = "0.4.0" 1030 + source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1233 1031 dependencies = [ 1234 1032 "bytes", 1235 1033 ] 1236 1034 1237 1035 [[package]] 1238 1036 name = "edgedb-protocol" 1239 - version = "0.4.0" 1240 - source = "git+https://github.com/edgedb/edgedb-rust#fe0af0edd3ab2fd075d9159857ebebec5573cbed" 1037 + version = "0.5.0" 1038 + source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1241 1039 dependencies = [ 1242 1040 "bigdecimal", 1243 - "bitflags", 1041 + "bitflags 2.3.1", 1244 1042 "bytes", 1245 1043 "chrono", 1246 1044 "edgedb-errors", ··· 1251 1049 ] 1252 1050 1253 1051 [[package]] 1052 + name = "edgedb-tokio" 1053 + version = "0.4.0" 1054 + source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1055 + dependencies = [ 1056 + "anyhow", 1057 + "arc-swap", 1058 + "async-trait", 1059 + "base16ct", 1060 + "base64 0.21.2", 1061 + "bytes", 1062 + "crc16", 1063 + "dirs 5.0.1", 1064 + "edgedb-derive", 1065 + "edgedb-errors", 1066 + "edgedb-protocol", 1067 + "log", 1068 + "once_cell", 1069 + "rand", 1070 + "rustls", 1071 + "rustls-native-certs", 1072 + "rustls-pemfile", 1073 + "scram", 1074 + "serde", 1075 + "serde_json", 1076 + "sha1", 1077 + "tls-api", 1078 + "tls-api-not-tls", 1079 + "tls-api-rustls", 1080 + "tokio", 1081 + "tokio-stream", 1082 + "url", 1083 + "webpki", 1084 + "webpki-roots", 1085 + ] 1086 + 1087 + [[package]] 1254 1088 name = "edgeql-parser" 1255 1089 version = "0.1.0" 1256 - source = "git+https://github.com/edgedb/edgedb#168891d7e8320acb87075d0518eec32f29964619" 1090 + source = "git+https://github.com/edgedb/edgedb#68033e0256a9c4f214ec1b2042817d8e235f56ec" 1257 1091 dependencies = [ 1258 1092 "base32", 1259 1093 "combine", 1260 - "sha2 0.10.2", 1094 + "memchr", 1095 + "sha2", 1261 1096 "snafu", 1262 1097 "thiserror", 1263 - "twoway", 1264 1098 "unicode-width", 1265 1099 ] 1266 1100 1267 1101 [[package]] 1268 1102 name = "either" 1269 - version = "1.7.0" 1103 + version = "1.8.1" 1270 1104 source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be" 1105 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1272 1106 1273 1107 [[package]] 1274 1108 name = "encode_unicode" ··· 1284 1118 1285 1119 [[package]] 1286 1120 name = "encoding_rs" 1287 - version = "0.8.31" 1121 + version = "0.8.32" 1288 1122 source = "registry+https://github.com/rust-lang/crates.io-index" 1289 - checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 1123 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1290 1124 dependencies = [ 1291 - "cfg-if 1.0.0", 1125 + "cfg-if", 1292 1126 ] 1293 1127 1294 1128 [[package]] ··· 1312 1146 1313 1147 [[package]] 1314 1148 name = "env_logger" 1315 - version = "0.9.0" 1149 + version = "0.10.0" 1316 1150 source = "registry+https://github.com/rust-lang/crates.io-index" 1317 - checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" 1151 + checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1318 1152 dependencies = [ 1319 - "atty", 1320 1153 "humantime 2.1.0", 1154 + "is-terminal", 1321 1155 "log", 1322 1156 "regex", 1323 1157 "termcolor", ··· 1325 1159 1326 1160 [[package]] 1327 1161 name = "errno" 1328 - version = "0.2.8" 1162 + version = "0.3.1" 1329 1163 source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 1164 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1331 1165 dependencies = [ 1332 1166 "errno-dragonfly", 1333 1167 "libc", 1334 - "winapi", 1168 + "windows-sys 0.48.0", 1335 1169 ] 1336 1170 1337 1171 [[package]] ··· 1342 1176 dependencies = [ 1343 1177 "cc", 1344 1178 "libc", 1345 - ] 1346 - 1347 - [[package]] 1348 - name = "error-chain" 1349 - version = "0.12.4" 1350 - source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 1352 - dependencies = [ 1353 - "backtrace", 1354 - "version_check", 1355 1179 ] 1356 1180 1357 1181 [[package]] ··· 1362 1186 1363 1187 [[package]] 1364 1188 name = "fastrand" 1365 - version = "1.8.0" 1189 + version = "1.9.0" 1366 1190 source = "registry+https://github.com/rust-lang/crates.io-index" 1367 - checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 1191 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1368 1192 dependencies = [ 1369 1193 "instant", 1370 1194 ] ··· 1381 1205 1382 1206 [[package]] 1383 1207 name = "fd-lock" 1384 - version = "3.0.6" 1208 + version = "3.0.12" 1385 1209 source = "registry+https://github.com/rust-lang/crates.io-index" 1386 - checksum = "e11dcc7e4d79a8c89b9ab4c6f5c30b1fc4a83c420792da3542fd31179ed5f517" 1210 + checksum = "39ae6b3d9530211fb3b12a95374b8b0823be812f53d09e18c5675c0146b09642" 1387 1211 dependencies = [ 1388 - "cfg-if 1.0.0", 1389 - "rustix 0.35.7", 1390 - "windows-sys 0.36.1", 1212 + "cfg-if", 1213 + "rustix", 1214 + "windows-sys 0.48.0", 1391 1215 ] 1392 1216 1393 1217 [[package]] 1394 1218 name = "filetime" 1395 - version = "0.2.17" 1219 + version = "0.2.20" 1396 1220 source = "registry+https://github.com/rust-lang/crates.io-index" 1397 - checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" 1221 + checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" 1398 1222 dependencies = [ 1399 - "cfg-if 1.0.0", 1223 + "cfg-if", 1400 1224 "libc", 1401 - "redox_syscall", 1402 - "windows-sys 0.36.1", 1225 + "redox_syscall 0.2.16", 1226 + "windows-sys 0.45.0", 1403 1227 ] 1404 1228 1405 1229 [[package]] 1406 1230 name = "flate2" 1407 - version = "1.0.24" 1231 + version = "1.0.25" 1408 1232 source = "registry+https://github.com/rust-lang/crates.io-index" 1409 - checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 1233 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1410 1234 dependencies = [ 1411 1235 "crc32fast", 1412 1236 "miniz_oxide", ··· 1423 1247 1424 1248 [[package]] 1425 1249 name = "fn-error-context" 1426 - version = "0.2.0" 1250 + version = "0.2.1" 1427 1251 source = "registry+https://github.com/rust-lang/crates.io-index" 1428 - checksum = "236b4e4ae2b8be5f7a5652f6108c4a0f2627c569db4e7923333d31c7dbfed0fb" 1252 + checksum = "2cd66269887534af4b0c3e3337404591daa8dc8b9b2b3db71f9523beb4bafb41" 1429 1253 dependencies = [ 1430 1254 "proc-macro2", 1431 1255 "quote", 1432 - "syn", 1256 + "syn 2.0.18", 1433 1257 ] 1434 1258 1435 1259 [[package]] ··· 1455 1279 1456 1280 [[package]] 1457 1281 name = "form_urlencoded" 1458 - version = "1.0.1" 1282 + version = "1.1.0" 1459 1283 source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 1284 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1461 1285 dependencies = [ 1462 - "matches", 1463 1286 "percent-encoding", 1464 1287 ] 1465 1288 1466 1289 [[package]] 1467 1290 name = "fs-err" 1468 - version = "2.7.0" 1291 + version = "2.9.0" 1469 1292 source = "registry+https://github.com/rust-lang/crates.io-index" 1470 - checksum = "5bd79fa345a495d3ae89fb7165fec01c0e72f41821d642dda363a1e97975652e" 1293 + checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541" 1471 1294 1472 1295 [[package]] 1473 - name = "fuchsia-cprng" 1474 - version = "0.1.1" 1296 + name = "fsevent-sys" 1297 + version = "4.1.0" 1475 1298 source = "registry+https://github.com/rust-lang/crates.io-index" 1476 - checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 1299 + checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 1300 + dependencies = [ 1301 + "libc", 1302 + ] 1477 1303 1478 1304 [[package]] 1479 - name = "futures" 1480 - version = "0.3.21" 1305 + name = "funty" 1306 + version = "2.0.0" 1481 1307 source = "registry+https://github.com/rust-lang/crates.io-index" 1482 - checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e" 1483 - dependencies = [ 1484 - "futures-channel", 1485 - "futures-core", 1486 - "futures-executor", 1487 - "futures-io", 1488 - "futures-sink", 1489 - "futures-task", 1490 - "futures-util", 1491 - ] 1308 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1492 1309 1493 1310 [[package]] 1494 1311 name = "futures-channel" 1495 - version = "0.3.21" 1312 + version = "0.3.26" 1496 1313 source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 1314 + checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 1498 1315 dependencies = [ 1499 1316 "futures-core", 1500 1317 "futures-sink", ··· 1502 1319 1503 1320 [[package]] 1504 1321 name = "futures-core" 1505 - version = "0.3.21" 1506 - source = "registry+https://github.com/rust-lang/crates.io-index" 1507 - checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 1508 - 1509 - [[package]] 1510 - name = "futures-executor" 1511 - version = "0.3.21" 1322 + version = "0.3.26" 1512 1323 source = "registry+https://github.com/rust-lang/crates.io-index" 1513 - checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6" 1514 - dependencies = [ 1515 - "futures-core", 1516 - "futures-task", 1517 - "futures-util", 1518 - ] 1324 + checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 1519 1325 1520 1326 [[package]] 1521 1327 name = "futures-io" 1522 - version = "0.3.21" 1328 + version = "0.3.26" 1523 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1524 - checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" 1330 + checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 1525 1331 1526 1332 [[package]] 1527 1333 name = "futures-lite" ··· 1540 1346 1541 1347 [[package]] 1542 1348 name = "futures-macro" 1543 - version = "0.3.21" 1349 + version = "0.3.26" 1544 1350 source = "registry+https://github.com/rust-lang/crates.io-index" 1545 - checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" 1351 + checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" 1546 1352 dependencies = [ 1547 1353 "proc-macro2", 1548 1354 "quote", 1549 - "syn", 1355 + "syn 1.0.109", 1550 1356 ] 1551 1357 1552 1358 [[package]] 1553 1359 name = "futures-sink" 1554 - version = "0.3.21" 1360 + version = "0.3.26" 1555 1361 source = "registry+https://github.com/rust-lang/crates.io-index" 1556 - checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 1362 + checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 1557 1363 1558 1364 [[package]] 1559 1365 name = "futures-task" 1560 - version = "0.3.21" 1366 + version = "0.3.26" 1561 1367 source = "registry+https://github.com/rust-lang/crates.io-index" 1562 - checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 1368 + checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 1563 1369 1564 1370 [[package]] 1565 1371 name = "futures-util" 1566 - version = "0.3.21" 1372 + version = "0.3.26" 1567 1373 source = "registry+https://github.com/rust-lang/crates.io-index" 1568 - checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 1374 + checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 1569 1375 dependencies = [ 1570 - "futures-channel", 1571 1376 "futures-core", 1572 - "futures-io", 1573 1377 "futures-macro", 1574 1378 "futures-sink", 1575 1379 "futures-task", 1576 - "memchr", 1577 1380 "pin-project-lite", 1578 1381 "pin-utils", 1579 1382 "slab", ··· 1590 1393 ] 1591 1394 1592 1395 [[package]] 1593 - name = "getrandom" 1594 - version = "0.1.16" 1396 + name = "gethostname" 1397 + version = "0.4.3" 1595 1398 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1399 + checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1597 1400 dependencies = [ 1598 - "cfg-if 1.0.0", 1599 1401 "libc", 1600 - "wasi 0.9.0+wasi-snapshot-preview1", 1402 + "windows-targets 0.48.0", 1601 1403 ] 1602 1404 1603 1405 [[package]] 1604 1406 name = "getrandom" 1605 - version = "0.2.7" 1407 + version = "0.2.8" 1606 1408 source = "registry+https://github.com/rust-lang/crates.io-index" 1607 - checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 1409 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1608 1410 dependencies = [ 1609 - "cfg-if 1.0.0", 1411 + "cfg-if", 1610 1412 "libc", 1611 - "wasi 0.11.0+wasi-snapshot-preview1", 1612 - ] 1613 - 1614 - [[package]] 1615 - name = "ghash" 1616 - version = "0.3.1" 1617 - source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375" 1619 - dependencies = [ 1620 - "opaque-debug", 1621 - "polyval", 1413 + "wasi", 1622 1414 ] 1623 1415 1624 1416 [[package]] 1625 1417 name = "gimli" 1626 - version = "0.26.2" 1418 + version = "0.27.2" 1627 1419 source = "registry+https://github.com/rust-lang/crates.io-index" 1628 - checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 1420 + checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 1629 1421 1630 1422 [[package]] 1631 1423 name = "glob" 1632 - version = "0.3.0" 1424 + version = "0.3.1" 1633 1425 source = "registry+https://github.com/rust-lang/crates.io-index" 1634 - checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 1426 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1635 1427 1636 1428 [[package]] 1637 1429 name = "gloo-timers" 1638 - version = "0.2.4" 1430 + version = "0.2.6" 1639 1431 source = "registry+https://github.com/rust-lang/crates.io-index" 1640 - checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9" 1432 + checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1641 1433 dependencies = [ 1642 1434 "futures-channel", 1643 1435 "futures-core", ··· 1647 1439 1648 1440 [[package]] 1649 1441 name = "h2" 1650 - version = "0.3.13" 1442 + version = "0.3.19" 1651 1443 source = "registry+https://github.com/rust-lang/crates.io-index" 1652 - checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57" 1444 + checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 1653 1445 dependencies = [ 1654 1446 "bytes", 1655 1447 "fnv", ··· 1657 1449 "futures-sink", 1658 1450 "futures-util", 1659 1451 "http", 1660 - "indexmap", 1452 + "indexmap 1.9.3", 1661 1453 "slab", 1662 1454 "tokio", 1663 - "tokio-util 0.7.3", 1455 + "tokio-util", 1664 1456 "tracing", 1665 1457 ] 1666 1458 ··· 1669 1461 version = "0.12.3" 1670 1462 source = "registry+https://github.com/rust-lang/crates.io-index" 1671 1463 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1464 + dependencies = [ 1465 + "ahash", 1466 + ] 1467 + 1468 + [[package]] 1469 + name = "hashbrown" 1470 + version = "0.13.2" 1471 + source = "registry+https://github.com/rust-lang/crates.io-index" 1472 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 1672 1473 1673 1474 [[package]] 1674 1475 name = "headers" 1675 - version = "0.3.7" 1476 + version = "0.3.8" 1676 1477 source = "registry+https://github.com/rust-lang/crates.io-index" 1677 - checksum = "4cff78e5788be1e0ab65b04d306b2ed5092c815ec97ec70f4ebd5aee158aa55d" 1478 + checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1678 1479 dependencies = [ 1679 - "base64", 1680 - "bitflags", 1480 + "base64 0.13.1", 1481 + "bitflags 1.3.2", 1681 1482 "bytes", 1682 1483 "headers-core", 1683 1484 "http", 1684 1485 "httpdate", 1685 1486 "mime", 1686 - "sha-1", 1487 + "sha1", 1687 1488 ] 1688 1489 1689 1490 [[package]] ··· 1697 1498 1698 1499 [[package]] 1699 1500 name = "heck" 1700 - version = "0.4.0" 1501 + version = "0.4.1" 1701 1502 source = "registry+https://github.com/rust-lang/crates.io-index" 1702 - checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1503 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1703 1504 1704 1505 [[package]] 1705 1506 name = "hermit-abi" 1706 1507 version = "0.1.19" 1707 1508 source = "registry+https://github.com/rust-lang/crates.io-index" 1708 1509 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1510 + dependencies = [ 1511 + "libc", 1512 + ] 1513 + 1514 + [[package]] 1515 + name = "hermit-abi" 1516 + version = "0.2.6" 1517 + source = "registry+https://github.com/rust-lang/crates.io-index" 1518 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1709 1519 dependencies = [ 1710 1520 "libc", 1711 1521 ] ··· 1726 1536 ] 1727 1537 1728 1538 [[package]] 1729 - name = "hkdf" 1730 - version = "0.10.0" 1731 - source = "registry+https://github.com/rust-lang/crates.io-index" 1732 - checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" 1733 - dependencies = [ 1734 - "digest 0.9.0", 1735 - "hmac 0.10.1", 1736 - ] 1737 - 1738 - [[package]] 1739 - name = "hmac" 1740 - version = "0.10.1" 1741 - source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" 1743 - dependencies = [ 1744 - "crypto-mac", 1745 - "digest 0.9.0", 1746 - ] 1747 - 1748 - [[package]] 1749 1539 name = "hmac" 1750 1540 version = "0.12.1" 1751 1541 source = "registry+https://github.com/rust-lang/crates.io-index" 1752 1542 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1753 1543 dependencies = [ 1754 - "digest 0.10.3", 1544 + "digest", 1755 1545 ] 1756 1546 1757 1547 [[package]] 1758 1548 name = "http" 1759 - version = "0.2.8" 1549 + version = "0.2.9" 1760 1550 source = "registry+https://github.com/rust-lang/crates.io-index" 1761 - checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1551 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1762 1552 dependencies = [ 1763 1553 "bytes", 1764 1554 "fnv", ··· 1777 1567 ] 1778 1568 1779 1569 [[package]] 1780 - name = "http-client" 1781 - version = "6.5.3" 1782 - source = "registry+https://github.com/rust-lang/crates.io-index" 1783 - checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5" 1784 - dependencies = [ 1785 - "async-h1", 1786 - "async-native-tls", 1787 - "async-std", 1788 - "async-trait", 1789 - "cfg-if 1.0.0", 1790 - "dashmap", 1791 - "deadpool", 1792 - "futures", 1793 - "http-types", 1794 - "log", 1795 - ] 1796 - 1797 - [[package]] 1798 - name = "http-types" 1799 - version = "2.12.0" 1800 - source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 1802 - dependencies = [ 1803 - "anyhow", 1804 - "async-channel", 1805 - "async-std", 1806 - "base64", 1807 - "cookie", 1808 - "futures-lite", 1809 - "infer", 1810 - "pin-project-lite", 1811 - "rand 0.7.3", 1812 - "serde", 1813 - "serde_json", 1814 - "serde_qs", 1815 - "serde_urlencoded", 1816 - "url", 1817 - ] 1818 - 1819 - [[package]] 1820 1570 name = "httparse" 1821 - version = "1.7.1" 1571 + version = "1.8.0" 1822 1572 source = "registry+https://github.com/rust-lang/crates.io-index" 1823 - checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 1573 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1824 1574 1825 1575 [[package]] 1826 1576 name = "httpdate" ··· 1855 1605 1856 1606 [[package]] 1857 1607 name = "hyper" 1858 - version = "0.14.20" 1608 + version = "0.14.24" 1859 1609 source = "registry+https://github.com/rust-lang/crates.io-index" 1860 - checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" 1610 + checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 1861 1611 dependencies = [ 1862 1612 "bytes", 1863 1613 "futures-channel", ··· 1892 1642 1893 1643 [[package]] 1894 1644 name = "idna" 1895 - version = "0.2.3" 1645 + version = "0.3.0" 1896 1646 source = "registry+https://github.com/rust-lang/crates.io-index" 1897 - checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1647 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1898 1648 dependencies = [ 1899 - "matches", 1900 1649 "unicode-bidi", 1901 1650 "unicode-normalization", 1902 1651 ] 1903 1652 1904 1653 [[package]] 1905 1654 name = "immutable-chunkmap" 1906 - version = "1.0.1" 1655 + version = "1.0.5" 1907 1656 source = "registry+https://github.com/rust-lang/crates.io-index" 1908 - checksum = "9f4935d692a73e65f929e34b6b801bbc158647a017882c2c28624d121a1a1162" 1657 + checksum = "7617eb072b88069788fa9d5cadae34faebca64e5325ec5deaa2b4c96510f9e8c" 1909 1658 dependencies = [ 1910 - "arrayvec 0.7.2", 1659 + "arrayvec", 1911 1660 "packed_struct", 1912 1661 "packed_struct_codegen", 1913 1662 ] 1914 1663 1915 1664 [[package]] 1916 1665 name = "indexmap" 1917 - version = "1.9.1" 1666 + version = "1.9.3" 1918 1667 source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1668 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1920 1669 dependencies = [ 1921 1670 "autocfg", 1922 - "hashbrown", 1671 + "hashbrown 0.12.3", 1672 + ] 1673 + 1674 + [[package]] 1675 + name = "indexmap" 1676 + version = "2.0.0-pre" 1677 + source = "git+https://github.com/bluss/indexmap?rev=11ac52c#11ac52c3c828a42d69c5fb3248198511836bfd2f" 1678 + dependencies = [ 1679 + "hashbrown 0.13.2", 1680 + "serde", 1923 1681 ] 1924 1682 1925 1683 [[package]] 1926 1684 name = "indicatif" 1927 - version = "0.17.0" 1685 + version = "0.17.5" 1928 1686 source = "registry+https://github.com/rust-lang/crates.io-index" 1929 - checksum = "fcc42b206e70d86ec03285b123e65a5458c92027d1fb2ae3555878b8113b3ddf" 1687 + checksum = "8ff8cc23a7393a397ed1d7f56e6365cba772aba9f9912ab968b03043c395d057" 1930 1688 dependencies = [ 1931 1689 "console", 1690 + "instant", 1932 1691 "number_prefix", 1692 + "portable-atomic", 1933 1693 "unicode-width", 1934 1694 ] 1935 1695 1936 1696 [[package]] 1937 - name = "infer" 1938 - version = "0.2.3" 1697 + name = "inotify" 1698 + version = "0.9.6" 1939 1699 source = "registry+https://github.com/rust-lang/crates.io-index" 1940 - checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 1700 + checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 1701 + dependencies = [ 1702 + "bitflags 1.3.2", 1703 + "inotify-sys", 1704 + "libc", 1705 + ] 1941 1706 1942 1707 [[package]] 1943 - name = "instant" 1944 - version = "0.1.12" 1708 + name = "inotify-sys" 1709 + version = "0.1.5" 1945 1710 source = "registry+https://github.com/rust-lang/crates.io-index" 1946 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1711 + checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 1947 1712 dependencies = [ 1948 - "cfg-if 1.0.0", 1713 + "libc", 1949 1714 ] 1950 1715 1951 1716 [[package]] 1952 - name = "io-lifetimes" 1953 - version = "0.7.2" 1717 + name = "inout" 1718 + version = "0.1.3" 1954 1719 source = "registry+https://github.com/rust-lang/crates.io-index" 1955 - checksum = "24c3f4eff5495aee4c0399d7b6a0dc2b6e81be84242ffbfcf253ebacccc1d0cb" 1720 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1721 + dependencies = [ 1722 + "generic-array", 1723 + ] 1724 + 1725 + [[package]] 1726 + name = "instant" 1727 + version = "0.1.12" 1728 + source = "registry+https://github.com/rust-lang/crates.io-index" 1729 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1730 + dependencies = [ 1731 + "cfg-if", 1732 + ] 1956 1733 1957 1734 [[package]] 1958 1735 name = "io-lifetimes" 1959 - version = "1.0.5" 1736 + version = "1.0.6" 1960 1737 source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" 1738 + checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3" 1962 1739 dependencies = [ 1963 1740 "libc", 1964 1741 "windows-sys 0.45.0", ··· 1966 1743 1967 1744 [[package]] 1968 1745 name = "ipnet" 1969 - version = "2.5.0" 1746 + version = "2.7.1" 1970 1747 source = "registry+https://github.com/rust-lang/crates.io-index" 1971 - checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 1748 + checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 1972 1749 1973 1750 [[package]] 1974 1751 name = "is-terminal" 1975 - version = "0.4.3" 1752 + version = "0.4.7" 1976 1753 source = "registry+https://github.com/rust-lang/crates.io-index" 1977 - checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef" 1754 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 1978 1755 dependencies = [ 1979 1756 "hermit-abi 0.3.1", 1980 - "io-lifetimes 1.0.5", 1981 - "rustix 0.36.8", 1982 - "windows-sys 0.45.0", 1757 + "io-lifetimes", 1758 + "rustix", 1759 + "windows-sys 0.48.0", 1983 1760 ] 1984 1761 1985 1762 [[package]] 1986 1763 name = "itertools" 1987 - version = "0.10.3" 1764 + version = "0.10.5" 1988 1765 source = "registry+https://github.com/rust-lang/crates.io-index" 1989 - checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3" 1766 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1990 1767 dependencies = [ 1991 1768 "either", 1992 1769 ] 1993 1770 1994 1771 [[package]] 1995 1772 name = "itoa" 1996 - version = "1.0.3" 1773 + version = "1.0.6" 1997 1774 source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" 1775 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1999 1776 2000 1777 [[package]] 2001 1778 name = "jobserver" 2002 - version = "0.1.24" 1779 + version = "0.1.26" 2003 1780 source = "registry+https://github.com/rust-lang/crates.io-index" 2004 - checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa" 1781 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 2005 1782 dependencies = [ 2006 1783 "libc", 2007 1784 ] 2008 1785 2009 1786 [[package]] 2010 1787 name = "js-sys" 2011 - version = "0.3.59" 1788 + version = "0.3.61" 2012 1789 source = "registry+https://github.com/rust-lang/crates.io-index" 2013 - checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 1790 + checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 2014 1791 dependencies = [ 2015 1792 "wasm-bindgen", 1793 + ] 1794 + 1795 + [[package]] 1796 + name = "kqueue" 1797 + version = "1.0.7" 1798 + source = "registry+https://github.com/rust-lang/crates.io-index" 1799 + checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98" 1800 + dependencies = [ 1801 + "kqueue-sys", 1802 + "libc", 1803 + ] 1804 + 1805 + [[package]] 1806 + name = "kqueue-sys" 1807 + version = "1.0.3" 1808 + source = "registry+https://github.com/rust-lang/crates.io-index" 1809 + checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" 1810 + dependencies = [ 1811 + "bitflags 1.3.2", 1812 + "libc", 2016 1813 ] 2017 1814 2018 1815 [[package]] ··· 2031 1828 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2032 1829 2033 1830 [[package]] 2034 - name = "lexical-core" 2035 - version = "0.7.6" 2036 - source = "registry+https://github.com/rust-lang/crates.io-index" 2037 - checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" 2038 - dependencies = [ 2039 - "arrayvec 0.5.2", 2040 - "bitflags", 2041 - "cfg-if 1.0.0", 2042 - "ryu", 2043 - "static_assertions", 2044 - ] 2045 - 2046 - [[package]] 2047 1831 name = "libc" 2048 - version = "0.2.139" 1832 + version = "0.2.146" 2049 1833 source = "registry+https://github.com/rust-lang/crates.io-index" 2050 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 1834 + checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 2051 1835 2052 1836 [[package]] 2053 1837 name = "libflate" 2054 - version = "1.2.0" 1838 + version = "1.4.0" 2055 1839 source = "registry+https://github.com/rust-lang/crates.io-index" 2056 - checksum = "05605ab2bce11bcfc0e9c635ff29ef8b2ea83f29be257ee7d730cac3ee373093" 1840 + checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18" 2057 1841 dependencies = [ 2058 1842 "adler32", 2059 1843 "crc32fast", ··· 2062 1846 2063 1847 [[package]] 2064 1848 name = "libflate_lz77" 2065 - version = "1.1.0" 1849 + version = "1.2.0" 2066 1850 source = "registry+https://github.com/rust-lang/crates.io-index" 2067 - checksum = "39a734c0493409afcd49deee13c006a04e3586b9761a03543c6272c9c51f2f5a" 1851 + checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf" 2068 1852 dependencies = [ 2069 1853 "rle-decode-fast", 2070 1854 ] 2071 1855 2072 1856 [[package]] 2073 - name = "linked-hash-map" 2074 - version = "0.5.6" 2075 - source = "registry+https://github.com/rust-lang/crates.io-index" 2076 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2077 - dependencies = [ 2078 - "serde", 2079 - ] 2080 - 2081 - [[package]] 2082 1857 name = "linux-raw-sys" 2083 - version = "0.0.46" 2084 - source = "registry+https://github.com/rust-lang/crates.io-index" 2085 - checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d" 2086 - 2087 - [[package]] 2088 - name = "linux-raw-sys" 2089 - version = "0.1.4" 1858 + version = "0.3.8" 2090 1859 source = "registry+https://github.com/rust-lang/crates.io-index" 2091 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 1860 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 2092 1861 2093 1862 [[package]] 2094 1863 name = "lock_api" 2095 - version = "0.4.7" 1864 + version = "0.4.9" 2096 1865 source = "registry+https://github.com/rust-lang/crates.io-index" 2097 - checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 1866 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2098 1867 dependencies = [ 2099 1868 "autocfg", 2100 1869 "scopeguard", ··· 2102 1871 2103 1872 [[package]] 2104 1873 name = "log" 2105 - version = "0.4.17" 1874 + version = "0.4.19" 2106 1875 source = "registry+https://github.com/rust-lang/crates.io-index" 2107 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1876 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 2108 1877 dependencies = [ 2109 - "cfg-if 1.0.0", 2110 1878 "value-bag", 2111 1879 ] 2112 1880 2113 1881 [[package]] 2114 - name = "matches" 2115 - version = "0.1.9" 2116 - source = "registry+https://github.com/rust-lang/crates.io-index" 2117 - checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 2118 - 2119 - [[package]] 2120 1882 name = "memchr" 2121 1883 version = "2.5.0" 2122 1884 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2124 1886 2125 1887 [[package]] 2126 1888 name = "memoffset" 2127 - version = "0.6.5" 1889 + version = "0.7.1" 2128 1890 source = "registry+https://github.com/rust-lang/crates.io-index" 2129 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1891 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1892 + dependencies = [ 1893 + "autocfg", 1894 + ] 1895 + 1896 + [[package]] 1897 + name = "memoffset" 1898 + version = "0.8.0" 1899 + source = "registry+https://github.com/rust-lang/crates.io-index" 1900 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 2130 1901 dependencies = [ 2131 1902 "autocfg", 2132 1903 ] ··· 2149 1920 2150 1921 [[package]] 2151 1922 name = "minidl" 2152 - version = "0.1.4" 1923 + version = "0.1.5" 2153 1924 source = "registry+https://github.com/rust-lang/crates.io-index" 2154 - checksum = "5ea5c42a75297faf23962781d2bb23caaf2ede8fd7337842fef63ee3ffdca5c9" 1925 + checksum = "87d3d8666e5ed22230c0096edcccf7097905b1e2975869e1b9fe5df40d26d801" 2155 1926 2156 1927 [[package]] 2157 1928 name = "minimad" 2158 - version = "0.9.0" 1929 + version = "0.9.1" 2159 1930 source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "cd37b2e65fbd459544194d8f52ed84027e031684335a062c708774c09d172b0b" 1931 + checksum = "277639f0198568f70f8fe4ab88a52a67c96bca12f27ba5c17a76acdcb8b45834" 2161 1932 dependencies = [ 2162 1933 "once_cell", 2163 1934 ] 2164 1935 2165 1936 [[package]] 2166 1937 name = "miniz_oxide" 2167 - version = "0.5.3" 1938 + version = "0.6.2" 2168 1939 source = "registry+https://github.com/rust-lang/crates.io-index" 2169 - checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 1940 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 2170 1941 dependencies = [ 2171 1942 "adler", 2172 1943 ] 2173 1944 2174 1945 [[package]] 2175 1946 name = "mio" 2176 - version = "0.8.4" 1947 + version = "0.8.6" 2177 1948 source = "registry+https://github.com/rust-lang/crates.io-index" 2178 - checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" 1949 + checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 2179 1950 dependencies = [ 2180 1951 "libc", 2181 1952 "log", 2182 - "wasi 0.11.0+wasi-snapshot-preview1", 2183 - "windows-sys 0.36.1", 1953 + "wasi", 1954 + "windows-sys 0.45.0", 2184 1955 ] 2185 1956 2186 1957 [[package]] 2187 1958 name = "native-tls" 2188 - version = "0.2.10" 1959 + version = "0.2.11" 2189 1960 source = "registry+https://github.com/rust-lang/crates.io-index" 2190 - checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1961 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2191 1962 dependencies = [ 2192 1963 "lazy_static", 2193 1964 "libc", ··· 2212 1983 2213 1984 [[package]] 2214 1985 name = "nix" 2215 - version = "0.14.1" 1986 + version = "0.26.2" 2216 1987 source = "registry+https://github.com/rust-lang/crates.io-index" 2217 - checksum = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" 1988 + checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 2218 1989 dependencies = [ 2219 - "bitflags", 2220 - "cc", 2221 - "cfg-if 0.1.10", 1990 + "bitflags 1.3.2", 1991 + "cfg-if", 2222 1992 "libc", 2223 - "void", 1993 + "memoffset 0.7.1", 1994 + "pin-utils", 1995 + "static_assertions", 2224 1996 ] 2225 1997 2226 1998 [[package]] 2227 - name = "nix" 2228 - version = "0.20.0" 1999 + name = "normalize-line-endings" 2000 + version = "0.3.0" 2229 2001 source = "registry+https://github.com/rust-lang/crates.io-index" 2230 - checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a" 2231 - dependencies = [ 2232 - "bitflags", 2233 - "cc", 2234 - "cfg-if 1.0.0", 2235 - "libc", 2236 - ] 2002 + checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 2237 2003 2238 2004 [[package]] 2239 - name = "nix" 2240 - version = "0.24.2" 2005 + name = "notify" 2006 + version = "5.2.0" 2241 2007 source = "registry+https://github.com/rust-lang/crates.io-index" 2242 - checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" 2008 + checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" 2243 2009 dependencies = [ 2244 - "bitflags", 2245 - "cfg-if 1.0.0", 2010 + "bitflags 1.3.2", 2011 + "crossbeam-channel", 2012 + "filetime", 2013 + "fsevent-sys", 2014 + "inotify", 2015 + "kqueue", 2246 2016 "libc", 2247 - "memoffset", 2017 + "mio", 2018 + "walkdir", 2019 + "windows-sys 0.45.0", 2248 2020 ] 2249 2021 2250 2022 [[package]] 2251 - name = "nom" 2252 - version = "5.1.2" 2253 - source = "registry+https://github.com/rust-lang/crates.io-index" 2254 - checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" 2255 - dependencies = [ 2256 - "lexical-core", 2257 - "memchr", 2258 - "version_check", 2259 - ] 2260 - 2261 - [[package]] 2262 - name = "normalize-line-endings" 2263 - version = "0.3.0" 2264 - source = "registry+https://github.com/rust-lang/crates.io-index" 2265 - checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 2266 - 2267 - [[package]] 2268 2023 name = "num-bigint" 2269 2024 version = "0.4.3" 2270 2025 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2296 2051 2297 2052 [[package]] 2298 2053 name = "num_cpus" 2299 - version = "1.13.1" 2054 + version = "1.15.0" 2300 2055 source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 2056 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 2302 2057 dependencies = [ 2303 - "hermit-abi 0.1.19", 2304 - "libc", 2305 - ] 2306 - 2307 - [[package]] 2308 - name = "num_threads" 2309 - version = "0.1.6" 2310 - source = "registry+https://github.com/rust-lang/crates.io-index" 2311 - checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 2312 - dependencies = [ 2058 + "hermit-abi 0.2.6", 2313 2059 "libc", 2314 2060 ] 2315 2061 ··· 2321 2067 2322 2068 [[package]] 2323 2069 name = "object" 2324 - version = "0.29.0" 2070 + version = "0.30.3" 2325 2071 source = "registry+https://github.com/rust-lang/crates.io-index" 2326 - checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 2072 + checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 2327 2073 dependencies = [ 2328 2074 "memchr", 2329 2075 ] 2330 2076 2331 2077 [[package]] 2332 2078 name = "once_cell" 2333 - version = "1.13.0" 2079 + version = "1.18.0" 2334 2080 source = "registry+https://github.com/rust-lang/crates.io-index" 2335 - checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" 2336 - 2337 - [[package]] 2338 - name = "opaque-debug" 2339 - version = "0.3.0" 2340 - source = "registry+https://github.com/rust-lang/crates.io-index" 2341 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 2081 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2342 2082 2343 2083 [[package]] 2344 2084 name = "open" 2345 - version = "3.0.2" 2085 + version = "3.2.0" 2346 2086 source = "registry+https://github.com/rust-lang/crates.io-index" 2347 - checksum = "f23a407004a1033f53e93f9b45580d14de23928faad187384f891507c9b0c045" 2087 + checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8" 2348 2088 dependencies = [ 2349 2089 "pathdiff", 2350 - "windows-sys 0.36.1", 2090 + "windows-sys 0.42.0", 2351 2091 ] 2352 2092 2353 2093 [[package]] 2354 2094 name = "openssl" 2355 - version = "0.10.41" 2095 + version = "0.10.54" 2356 2096 source = "registry+https://github.com/rust-lang/crates.io-index" 2357 - checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0" 2097 + checksum = "69b3f656a17a6cbc115b5c7a40c616947d213ba182135b014d6051b73ab6f019" 2358 2098 dependencies = [ 2359 - "bitflags", 2360 - "cfg-if 1.0.0", 2099 + "bitflags 1.3.2", 2100 + "cfg-if", 2361 2101 "foreign-types", 2362 2102 "libc", 2363 2103 "once_cell", ··· 2373 2113 dependencies = [ 2374 2114 "proc-macro2", 2375 2115 "quote", 2376 - "syn", 2116 + "syn 1.0.109", 2377 2117 ] 2378 2118 2379 2119 [[package]] ··· 2384 2124 2385 2125 [[package]] 2386 2126 name = "openssl-src" 2387 - version = "111.22.0+1.1.1q" 2127 + version = "111.25.1+1.1.1t" 2388 2128 source = "registry+https://github.com/rust-lang/crates.io-index" 2389 - checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853" 2129 + checksum = "1ef9a9cc6ea7d9d5e7c4a913dc4b48d0e359eddf01af1dfec96ba7064b4aba10" 2390 2130 dependencies = [ 2391 2131 "cc", 2392 2132 ] 2393 2133 2394 2134 [[package]] 2395 2135 name = "openssl-sys" 2396 - version = "0.9.75" 2136 + version = "0.9.88" 2397 2137 source = "registry+https://github.com/rust-lang/crates.io-index" 2398 - checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" 2138 + checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617" 2399 2139 dependencies = [ 2400 - "autocfg", 2401 2140 "cc", 2402 2141 "libc", 2403 2142 "openssl-src", ··· 2406 2145 ] 2407 2146 2408 2147 [[package]] 2148 + name = "option-ext" 2149 + version = "0.2.0" 2150 + source = "registry+https://github.com/rust-lang/crates.io-index" 2151 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 2152 + 2153 + [[package]] 2409 2154 name = "os-release" 2410 2155 version = "0.1.0" 2411 2156 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2416 2161 2417 2162 [[package]] 2418 2163 name = "os_str_bytes" 2419 - version = "6.2.0" 2164 + version = "6.4.1" 2420 2165 source = "registry+https://github.com/rust-lang/crates.io-index" 2421 - checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4" 2166 + checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 2422 2167 2423 2168 [[package]] 2424 2169 name = "output_vt100" ··· 2431 2176 2432 2177 [[package]] 2433 2178 name = "packed_struct" 2434 - version = "0.6.1" 2179 + version = "0.10.1" 2435 2180 source = "registry+https://github.com/rust-lang/crates.io-index" 2436 - checksum = "d4e1e99bfad1f9eb1d5d775ce5f73694a93178376b6dc34c30eddce6f1bcf5f2" 2181 + checksum = "36b29691432cc9eff8b282278473b63df73bea49bc3ec5e67f31a3ae9c3ec190" 2437 2182 dependencies = [ 2183 + "bitvec", 2438 2184 "packed_struct_codegen", 2439 - "serde", 2440 2185 ] 2441 2186 2442 2187 [[package]] 2443 2188 name = "packed_struct_codegen" 2444 - version = "0.6.1" 2189 + version = "0.10.1" 2445 2190 source = "registry+https://github.com/rust-lang/crates.io-index" 2446 - checksum = "f8731210ac3e7bff5f86094b9f5b83a84d44965ce3e0b6c3ea827854a28d696c" 2191 + checksum = "9cd6706dfe50d53e0f6aa09e12c034c44faacd23e966ae5a209e8bdb8f179f98" 2447 2192 dependencies = [ 2448 2193 "proc-macro2", 2449 2194 "quote", 2450 - "syn", 2195 + "syn 1.0.109", 2451 2196 ] 2452 2197 2453 2198 [[package]] ··· 2468 2213 2469 2214 [[package]] 2470 2215 name = "parking_lot_core" 2471 - version = "0.9.3" 2216 + version = "0.9.7" 2472 2217 source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 2218 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 2474 2219 dependencies = [ 2475 - "cfg-if 1.0.0", 2220 + "cfg-if", 2476 2221 "libc", 2477 - "redox_syscall", 2222 + "redox_syscall 0.2.16", 2478 2223 "smallvec", 2479 - "windows-sys 0.36.1", 2224 + "windows-sys 0.45.0", 2480 2225 ] 2481 2226 2482 2227 [[package]] 2483 2228 name = "password-hash" 2484 - version = "0.3.2" 2229 + version = "0.4.2" 2485 2230 source = "registry+https://github.com/rust-lang/crates.io-index" 2486 - checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8" 2231 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2487 2232 dependencies = [ 2488 2233 "base64ct", 2489 - "rand_core 0.6.3", 2234 + "rand_core", 2490 2235 "subtle", 2491 2236 ] 2492 2237 ··· 2498 2243 2499 2244 [[package]] 2500 2245 name = "pbkdf2" 2501 - version = "0.10.1" 2246 + version = "0.11.0" 2502 2247 source = "registry+https://github.com/rust-lang/crates.io-index" 2503 - checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7" 2248 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2504 2249 dependencies = [ 2505 - "digest 0.10.3", 2506 - "hmac 0.12.1", 2250 + "digest", 2251 + "hmac", 2507 2252 "password-hash", 2508 - "sha2 0.10.2", 2253 + "sha2", 2509 2254 ] 2510 2255 2511 2256 [[package]] ··· 2514 2259 source = "registry+https://github.com/rust-lang/crates.io-index" 2515 2260 checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb" 2516 2261 dependencies = [ 2517 - "base64", 2262 + "base64 0.13.1", 2518 2263 "once_cell", 2519 2264 "regex", 2520 2265 ] 2521 2266 2522 2267 [[package]] 2523 2268 name = "pem" 2524 - version = "1.1.0" 2269 + version = "1.1.1" 2525 2270 source = "registry+https://github.com/rust-lang/crates.io-index" 2526 - checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4" 2271 + checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 2527 2272 dependencies = [ 2528 - "base64", 2273 + "base64 0.13.1", 2529 2274 ] 2530 2275 2531 2276 [[package]] 2532 2277 name = "percent-encoding" 2533 - version = "2.1.0" 2278 + version = "2.2.0" 2534 2279 source = "registry+https://github.com/rust-lang/crates.io-index" 2535 - checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 2280 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 2536 2281 2537 2282 [[package]] 2538 2283 name = "pin-project" 2539 - version = "1.0.11" 2284 + version = "1.0.12" 2540 2285 source = "registry+https://github.com/rust-lang/crates.io-index" 2541 - checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260" 2286 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 2542 2287 dependencies = [ 2543 2288 "pin-project-internal", 2544 2289 ] 2545 2290 2546 2291 [[package]] 2547 2292 name = "pin-project-internal" 2548 - version = "1.0.11" 2293 + version = "1.0.12" 2549 2294 source = "registry+https://github.com/rust-lang/crates.io-index" 2550 - checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74" 2295 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 2551 2296 dependencies = [ 2552 2297 "proc-macro2", 2553 2298 "quote", 2554 - "syn", 2299 + "syn 1.0.109", 2555 2300 ] 2556 2301 2557 2302 [[package]] ··· 2568 2313 2569 2314 [[package]] 2570 2315 name = "pkg-config" 2571 - version = "0.3.25" 2316 + version = "0.3.26" 2572 2317 source = "registry+https://github.com/rust-lang/crates.io-index" 2573 - checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 2318 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2574 2319 2575 2320 [[package]] 2576 2321 name = "polling" 2577 - version = "2.2.0" 2322 + version = "2.6.0" 2578 2323 source = "registry+https://github.com/rust-lang/crates.io-index" 2579 - checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259" 2324 + checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" 2580 2325 dependencies = [ 2581 - "cfg-if 1.0.0", 2326 + "autocfg", 2327 + "bitflags 1.3.2", 2328 + "cfg-if", 2329 + "concurrent-queue", 2582 2330 "libc", 2583 2331 "log", 2584 - "wepoll-ffi", 2585 - "winapi", 2332 + "pin-project-lite", 2333 + "windows-sys 0.45.0", 2586 2334 ] 2587 2335 2588 2336 [[package]] 2589 - name = "polyval" 2590 - version = "0.4.5" 2337 + name = "portable-atomic" 2338 + version = "1.3.3" 2591 2339 source = "registry+https://github.com/rust-lang/crates.io-index" 2592 - checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd" 2593 - dependencies = [ 2594 - "cpuid-bool", 2595 - "opaque-debug", 2596 - "universal-hash", 2597 - ] 2340 + checksum = "767eb9f07d4a5ebcb39bbf2d452058a93c011373abf6832e24194a1c3f004794" 2598 2341 2599 2342 [[package]] 2600 2343 name = "ppv-lite86" 2601 - version = "0.2.16" 2344 + version = "0.2.17" 2602 2345 source = "registry+https://github.com/rust-lang/crates.io-index" 2603 - checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 2346 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2604 2347 2605 2348 [[package]] 2606 2349 name = "predicates" 2607 - version = "1.0.8" 2350 + version = "2.1.5" 2608 2351 source = "registry+https://github.com/rust-lang/crates.io-index" 2609 - checksum = "f49cfaf7fdaa3bfacc6fa3e7054e65148878354a5cfddcf661df4c851f8021df" 2352 + checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" 2610 2353 dependencies = [ 2611 - "difference", 2354 + "difflib", 2355 + "float-cmp", 2356 + "itertools", 2357 + "normalize-line-endings", 2612 2358 "predicates-core", 2359 + "regex", 2613 2360 ] 2614 2361 2615 2362 [[package]] 2616 2363 name = "predicates" 2617 - version = "2.1.1" 2364 + version = "3.0.3" 2618 2365 source = "registry+https://github.com/rust-lang/crates.io-index" 2619 - checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c" 2366 + checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" 2620 2367 dependencies = [ 2368 + "anstyle", 2621 2369 "difflib", 2622 - "float-cmp", 2623 2370 "itertools", 2624 - "normalize-line-endings", 2625 2371 "predicates-core", 2626 - "regex", 2627 2372 ] 2628 2373 2629 2374 [[package]] 2630 2375 name = "predicates-core" 2631 - version = "1.0.3" 2376 + version = "1.0.6" 2632 2377 source = "registry+https://github.com/rust-lang/crates.io-index" 2633 - checksum = "da1c2388b1513e1b605fcec39a95e0a9e8ef088f71443ef37099fa9ae6673fcb" 2378 + checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 2634 2379 2635 2380 [[package]] 2636 2381 name = "predicates-tree" 2637 - version = "1.0.5" 2382 + version = "1.0.7" 2638 2383 source = "registry+https://github.com/rust-lang/crates.io-index" 2639 - checksum = "4d86de6de25020a36c6d3643a86d9a6a9f552107c0559c60ea03551b5e16c032" 2384 + checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d" 2640 2385 dependencies = [ 2641 2386 "predicates-core", 2642 2387 "termtree", ··· 2644 2389 2645 2390 [[package]] 2646 2391 name = "pretty_assertions" 2647 - version = "1.2.1" 2392 + version = "1.3.0" 2648 2393 source = "registry+https://github.com/rust-lang/crates.io-index" 2649 - checksum = "c89f989ac94207d048d92db058e4f6ec7342b0971fc58d1271ca148b799b3563" 2394 + checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 2650 2395 dependencies = [ 2651 - "ansi_term", 2652 2396 "ctor", 2653 2397 "diff", 2654 2398 "output_vt100", 2399 + "yansi", 2655 2400 ] 2656 2401 2657 2402 [[package]] ··· 2676 2421 "proc-macro-error-attr", 2677 2422 "proc-macro2", 2678 2423 "quote", 2679 - "syn", 2424 + "syn 1.0.109", 2680 2425 "version_check", 2681 2426 ] 2682 2427 ··· 2693 2438 2694 2439 [[package]] 2695 2440 name = "proc-macro-hack" 2696 - version = "0.5.19" 2441 + version = "0.5.20+deprecated" 2697 2442 source = "registry+https://github.com/rust-lang/crates.io-index" 2698 - checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2443 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2699 2444 2700 2445 [[package]] 2701 2446 name = "proc-macro2" 2702 - version = "1.0.43" 2447 + version = "1.0.59" 2703 2448 source = "registry+https://github.com/rust-lang/crates.io-index" 2704 - checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" 2449 + checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" 2705 2450 dependencies = [ 2706 2451 "unicode-ident", 2707 2452 ] ··· 2714 2459 2715 2460 [[package]] 2716 2461 name = "quote" 2717 - version = "1.0.21" 2462 + version = "1.0.28" 2718 2463 source = "registry+https://github.com/rust-lang/crates.io-index" 2719 - checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 2464 + checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 2720 2465 dependencies = [ 2721 2466 "proc-macro2", 2722 2467 ] 2723 2468 2724 2469 [[package]] 2470 + name = "radium" 2471 + version = "0.7.0" 2472 + source = "registry+https://github.com/rust-lang/crates.io-index" 2473 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2474 + 2475 + [[package]] 2725 2476 name = "radix_trie" 2726 2477 version = "0.2.1" 2727 2478 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2733 2484 2734 2485 [[package]] 2735 2486 name = "rand" 2736 - version = "0.4.6" 2737 - source = "registry+https://github.com/rust-lang/crates.io-index" 2738 - checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 2739 - dependencies = [ 2740 - "fuchsia-cprng", 2741 - "libc", 2742 - "rand_core 0.3.1", 2743 - "rdrand", 2744 - "winapi", 2745 - ] 2746 - 2747 - [[package]] 2748 - name = "rand" 2749 - version = "0.7.3" 2750 - source = "registry+https://github.com/rust-lang/crates.io-index" 2751 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2752 - dependencies = [ 2753 - "getrandom 0.1.16", 2754 - "libc", 2755 - "rand_chacha 0.2.2", 2756 - "rand_core 0.5.1", 2757 - "rand_hc", 2758 - ] 2759 - 2760 - [[package]] 2761 - name = "rand" 2762 2487 version = "0.8.5" 2763 2488 source = "registry+https://github.com/rust-lang/crates.io-index" 2764 2489 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2765 2490 dependencies = [ 2766 2491 "libc", 2767 - "rand_chacha 0.3.1", 2768 - "rand_core 0.6.3", 2769 - ] 2770 - 2771 - [[package]] 2772 - name = "rand_chacha" 2773 - version = "0.2.2" 2774 - source = "registry+https://github.com/rust-lang/crates.io-index" 2775 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2776 - dependencies = [ 2777 - "ppv-lite86", 2778 - "rand_core 0.5.1", 2492 + "rand_chacha", 2493 + "rand_core", 2779 2494 ] 2780 2495 2781 2496 [[package]] ··· 2785 2500 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2786 2501 dependencies = [ 2787 2502 "ppv-lite86", 2788 - "rand_core 0.6.3", 2503 + "rand_core", 2789 2504 ] 2790 2505 2791 2506 [[package]] 2792 2507 name = "rand_core" 2793 - version = "0.3.1" 2508 + version = "0.6.4" 2794 2509 source = "registry+https://github.com/rust-lang/crates.io-index" 2795 - checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 2510 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2796 2511 dependencies = [ 2797 - "rand_core 0.4.2", 2512 + "getrandom", 2798 2513 ] 2799 2514 2800 2515 [[package]] 2801 - name = "rand_core" 2802 - version = "0.4.2" 2516 + name = "redox_syscall" 2517 + version = "0.2.16" 2803 2518 source = "registry+https://github.com/rust-lang/crates.io-index" 2804 - checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 2805 - 2806 - [[package]] 2807 - name = "rand_core" 2808 - version = "0.5.1" 2809 - source = "registry+https://github.com/rust-lang/crates.io-index" 2810 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2519 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2811 2520 dependencies = [ 2812 - "getrandom 0.1.16", 2813 - ] 2814 - 2815 - [[package]] 2816 - name = "rand_core" 2817 - version = "0.6.3" 2818 - source = "registry+https://github.com/rust-lang/crates.io-index" 2819 - checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 2820 - dependencies = [ 2821 - "getrandom 0.2.7", 2822 - ] 2823 - 2824 - [[package]] 2825 - name = "rand_hc" 2826 - version = "0.2.0" 2827 - source = "registry+https://github.com/rust-lang/crates.io-index" 2828 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2829 - dependencies = [ 2830 - "rand_core 0.5.1", 2831 - ] 2832 - 2833 - [[package]] 2834 - name = "rdrand" 2835 - version = "0.4.0" 2836 - source = "registry+https://github.com/rust-lang/crates.io-index" 2837 - checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 2838 - dependencies = [ 2839 - "rand_core 0.3.1", 2521 + "bitflags 1.3.2", 2840 2522 ] 2841 2523 2842 2524 [[package]] 2843 2525 name = "redox_syscall" 2844 - version = "0.2.16" 2526 + version = "0.3.5" 2845 2527 source = "registry+https://github.com/rust-lang/crates.io-index" 2846 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2528 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2847 2529 dependencies = [ 2848 - "bitflags", 2530 + "bitflags 1.3.2", 2849 2531 ] 2850 2532 2851 2533 [[package]] ··· 2854 2536 source = "registry+https://github.com/rust-lang/crates.io-index" 2855 2537 checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2856 2538 dependencies = [ 2857 - "getrandom 0.2.7", 2858 - "redox_syscall", 2539 + "getrandom", 2540 + "redox_syscall 0.2.16", 2859 2541 "thiserror", 2860 2542 ] 2861 2543 2862 2544 [[package]] 2863 2545 name = "regex" 2864 - version = "1.6.0" 2546 + version = "1.8.4" 2865 2547 source = "registry+https://github.com/rust-lang/crates.io-index" 2866 - checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 2548 + checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f" 2867 2549 dependencies = [ 2868 2550 "aho-corasick", 2869 2551 "memchr", ··· 2871 2553 ] 2872 2554 2873 2555 [[package]] 2874 - name = "regex-syntax" 2875 - version = "0.6.27" 2556 + name = "regex-automata" 2557 + version = "0.1.10" 2876 2558 source = "registry+https://github.com/rust-lang/crates.io-index" 2877 - checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 2559 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2878 2560 2879 2561 [[package]] 2880 - name = "remove_dir_all" 2881 - version = "0.5.3" 2562 + name = "regex-syntax" 2563 + version = "0.7.2" 2882 2564 source = "registry+https://github.com/rust-lang/crates.io-index" 2883 - checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2884 - dependencies = [ 2885 - "winapi", 2886 - ] 2565 + checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 2887 2566 2888 2567 [[package]] 2889 2568 name = "reqwest" 2890 - version = "0.11.11" 2569 + version = "0.11.18" 2891 2570 source = "registry+https://github.com/rust-lang/crates.io-index" 2892 - checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" 2571 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 2893 2572 dependencies = [ 2894 - "base64", 2573 + "base64 0.21.2", 2895 2574 "bytes", 2896 2575 "encoding_rs", 2897 2576 "futures-core", ··· 2903 2582 "hyper-tls", 2904 2583 "ipnet", 2905 2584 "js-sys", 2906 - "lazy_static", 2907 2585 "log", 2908 2586 "mime", 2909 2587 "native-tls", 2588 + "once_cell", 2910 2589 "percent-encoding", 2911 2590 "pin-project-lite", 2912 2591 "serde", ··· 2924 2603 2925 2604 [[package]] 2926 2605 name = "rexpect" 2927 - version = "0.3.0" 2928 - source = "git+https://github.com/tailhook/rexpect?branch=default_terminal_size#a9526163bdb833f7b25beb363430042b11e42493" 2606 + version = "0.5.0" 2607 + source = "git+https://github.com/tailhook/rexpect?branch=default_terminal_size#7643379e581e8019b49070782e5b6df34d762178" 2929 2608 dependencies = [ 2930 - "error-chain", 2931 - "nix 0.14.1", 2609 + "comma", 2610 + "nix", 2932 2611 "regex", 2933 2612 "tempfile", 2613 + "thiserror", 2934 2614 ] 2935 2615 2936 2616 [[package]] ··· 2973 2653 checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 2974 2654 2975 2655 [[package]] 2976 - name = "rustc_version" 2977 - version = "0.2.3" 2978 - source = "registry+https://github.com/rust-lang/crates.io-index" 2979 - checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 2980 - dependencies = [ 2981 - "semver 0.9.0", 2982 - ] 2983 - 2984 - [[package]] 2985 2656 name = "rustix" 2986 - version = "0.35.7" 2987 - source = "registry+https://github.com/rust-lang/crates.io-index" 2988 - checksum = "d51cc38aa10f6bbb377ed28197aa052aa4e2b762c22be9d3153d01822587e787" 2989 - dependencies = [ 2990 - "bitflags", 2991 - "errno", 2992 - "io-lifetimes 0.7.2", 2993 - "libc", 2994 - "linux-raw-sys 0.0.46", 2995 - "windows-sys 0.36.1", 2996 - ] 2997 - 2998 - [[package]] 2999 - name = "rustix" 3000 - version = "0.36.8" 2657 + version = "0.37.7" 3001 2658 source = "registry+https://github.com/rust-lang/crates.io-index" 3002 - checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" 2659 + checksum = "2aae838e49b3d63e9274e1c01833cc8139d3fec468c3b84688c628f44b1ae11d" 3003 2660 dependencies = [ 3004 - "bitflags", 2661 + "bitflags 1.3.2", 3005 2662 "errno", 3006 - "io-lifetimes 1.0.5", 2663 + "io-lifetimes", 3007 2664 "libc", 3008 - "linux-raw-sys 0.1.4", 2665 + "linux-raw-sys", 3009 2666 "windows-sys 0.45.0", 3010 2667 ] 3011 2668 3012 2669 [[package]] 3013 2670 name = "rustls" 3014 - version = "0.19.1" 3015 - source = "registry+https://github.com/rust-lang/crates.io-index" 3016 - checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" 3017 - dependencies = [ 3018 - "base64", 3019 - "log", 3020 - "ring", 3021 - "sct 0.6.1", 3022 - "webpki 0.21.4", 3023 - ] 3024 - 3025 - [[package]] 3026 - name = "rustls" 3027 - version = "0.20.6" 2671 + version = "0.20.8" 3028 2672 source = "registry+https://github.com/rust-lang/crates.io-index" 3029 - checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033" 2673 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 3030 2674 dependencies = [ 3031 2675 "log", 3032 2676 "ring", 3033 - "sct 0.7.0", 3034 - "webpki 0.22.0", 2677 + "sct", 2678 + "webpki", 3035 2679 ] 3036 2680 3037 2681 [[package]] ··· 3041 2685 checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 3042 2686 dependencies = [ 3043 2687 "openssl-probe", 3044 - "rustls-pemfile 1.0.1", 2688 + "rustls-pemfile", 3045 2689 "schannel", 3046 2690 "security-framework", 3047 2691 ] 3048 2692 3049 2693 [[package]] 3050 2694 name = "rustls-pemfile" 3051 - version = "0.3.0" 3052 - source = "registry+https://github.com/rust-lang/crates.io-index" 3053 - checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" 3054 - dependencies = [ 3055 - "base64", 3056 - ] 3057 - 3058 - [[package]] 3059 - name = "rustls-pemfile" 3060 - version = "1.0.1" 2695 + version = "1.0.2" 3061 2696 source = "registry+https://github.com/rust-lang/crates.io-index" 3062 - checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" 2697 + checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 3063 2698 dependencies = [ 3064 - "base64", 2699 + "base64 0.21.2", 3065 2700 ] 3066 2701 3067 2702 [[package]] 3068 2703 name = "rustversion" 3069 - version = "1.0.9" 2704 + version = "1.0.12" 3070 2705 source = "registry+https://github.com/rust-lang/crates.io-index" 3071 - checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 2706 + checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 3072 2707 3073 2708 [[package]] 3074 2709 name = "rustyline" 3075 2710 version = "8.0.0" 3076 - source = "git+https://github.com/tailhook/rustyline?branch=edgedb_20210403#257bb4bb5c0f647412103e4f336d553b97472849" 2711 + source = "git+https://github.com/tailhook/rustyline?branch=edgedb_20210403#8c0afd236b4869f9fbf41a6a322149feacbe49bd" 3077 2712 dependencies = [ 3078 - "bitflags", 3079 - "cfg-if 1.0.0", 2713 + "bitflags 1.3.2", 2714 + "cfg-if", 3080 2715 "dirs-next", 3081 2716 "fd-lock 2.0.0", 3082 2717 "libc", 3083 2718 "log", 3084 2719 "memchr", 3085 - "nix 0.20.0", 2720 + "nix", 3086 2721 "radix_trie", 3087 2722 "scopeguard", 3088 2723 "smallvec", ··· 3094 2729 3095 2730 [[package]] 3096 2731 name = "ryu" 3097 - version = "1.0.11" 2732 + version = "1.0.13" 3098 2733 source = "registry+https://github.com/rust-lang/crates.io-index" 3099 - checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 2734 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2735 + 2736 + [[package]] 2737 + name = "same-file" 2738 + version = "1.0.6" 2739 + source = "registry+https://github.com/rust-lang/crates.io-index" 2740 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2741 + dependencies = [ 2742 + "winapi-util", 2743 + ] 3100 2744 3101 2745 [[package]] 3102 2746 name = "schannel" 3103 - version = "0.1.20" 2747 + version = "0.1.21" 3104 2748 source = "registry+https://github.com/rust-lang/crates.io-index" 3105 - checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 2749 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 3106 2750 dependencies = [ 3107 - "lazy_static", 3108 - "windows-sys 0.36.1", 2751 + "windows-sys 0.42.0", 3109 2752 ] 3110 2753 3111 2754 [[package]] 3112 2755 name = "scoped-tls" 3113 - version = "1.0.0" 2756 + version = "1.0.1" 3114 2757 source = "registry+https://github.com/rust-lang/crates.io-index" 3115 - checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 2758 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3116 2759 3117 2760 [[package]] 3118 2761 name = "scopeguard" ··· 3126 2769 source = "registry+https://github.com/rust-lang/crates.io-index" 3127 2770 checksum = "7679a5e6b97bac99b2c208894ba0d34b17d9657f0b728c1cd3bf1c5f7f6ebe88" 3128 2771 dependencies = [ 3129 - "base64", 3130 - "rand 0.8.5", 2772 + "base64 0.13.1", 2773 + "rand", 3131 2774 "ring", 3132 2775 ] 3133 2776 3134 2777 [[package]] 3135 2778 name = "sct" 3136 - version = "0.6.1" 3137 - source = "registry+https://github.com/rust-lang/crates.io-index" 3138 - checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" 3139 - dependencies = [ 3140 - "ring", 3141 - "untrusted 0.7.1", 3142 - ] 3143 - 3144 - [[package]] 3145 - name = "sct" 3146 2779 version = "0.7.0" 3147 2780 source = "registry+https://github.com/rust-lang/crates.io-index" 3148 2781 checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" ··· 3153 2786 3154 2787 [[package]] 3155 2788 name = "security-framework" 3156 - version = "2.6.1" 2789 + version = "2.8.2" 3157 2790 source = "registry+https://github.com/rust-lang/crates.io-index" 3158 - checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 2791 + checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 3159 2792 dependencies = [ 3160 - "bitflags", 2793 + "bitflags 1.3.2", 3161 2794 "core-foundation", 3162 2795 "core-foundation-sys", 3163 2796 "libc", ··· 3166 2799 3167 2800 [[package]] 3168 2801 name = "security-framework-sys" 3169 - version = "2.6.1" 2802 + version = "2.8.0" 3170 2803 source = "registry+https://github.com/rust-lang/crates.io-index" 3171 - checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2804 + checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 3172 2805 dependencies = [ 3173 2806 "core-foundation-sys", 3174 2807 "libc", ··· 3176 2809 3177 2810 [[package]] 3178 2811 name = "semver" 3179 - version = "0.9.0" 2812 + version = "1.0.17" 3180 2813 source = "registry+https://github.com/rust-lang/crates.io-index" 3181 - checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 3182 - dependencies = [ 3183 - "semver-parser", 3184 - ] 3185 - 3186 - [[package]] 3187 - name = "semver" 3188 - version = "1.0.13" 3189 - source = "registry+https://github.com/rust-lang/crates.io-index" 3190 - checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" 2814 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 3191 2815 dependencies = [ 3192 2816 "serde", 3193 2817 ] 3194 - 3195 - [[package]] 3196 - name = "semver-parser" 3197 - version = "0.7.0" 3198 - source = "registry+https://github.com/rust-lang/crates.io-index" 3199 - checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 3200 2818 3201 2819 [[package]] 3202 2820 name = "serde" 3203 - version = "1.0.142" 2821 + version = "1.0.164" 3204 2822 source = "registry+https://github.com/rust-lang/crates.io-index" 3205 - checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2" 2823 + checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" 3206 2824 dependencies = [ 3207 2825 "serde_derive", 3208 2826 ] 3209 2827 3210 2828 [[package]] 3211 2829 name = "serde_derive" 3212 - version = "1.0.142" 2830 + version = "1.0.164" 3213 2831 source = "registry+https://github.com/rust-lang/crates.io-index" 3214 - checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e" 2832 + checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" 3215 2833 dependencies = [ 3216 2834 "proc-macro2", 3217 2835 "quote", 3218 - "syn", 2836 + "syn 2.0.18", 3219 2837 ] 3220 2838 3221 2839 [[package]] 3222 2840 name = "serde_json" 3223 - version = "1.0.83" 2841 + version = "1.0.96" 3224 2842 source = "registry+https://github.com/rust-lang/crates.io-index" 3225 - checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" 2843 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 3226 2844 dependencies = [ 2845 + "indexmap 1.9.3", 3227 2846 "itoa", 3228 2847 "ryu", 3229 2848 "serde", ··· 3240 2859 3241 2860 [[package]] 3242 2861 name = "serde_path_to_error" 3243 - version = "0.1.8" 2862 + version = "0.1.11" 3244 2863 source = "registry+https://github.com/rust-lang/crates.io-index" 3245 - checksum = "184c643044780f7ceb59104cef98a5a6f12cb2288a7bc701ab93a362b49fd47d" 2864 + checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0" 3246 2865 dependencies = [ 3247 2866 "serde", 3248 2867 ] 3249 2868 3250 2869 [[package]] 3251 - name = "serde_qs" 3252 - version = "0.8.5" 3253 - source = "registry+https://github.com/rust-lang/crates.io-index" 3254 - checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 3255 - dependencies = [ 3256 - "percent-encoding", 3257 - "serde", 3258 - "thiserror", 3259 - ] 3260 - 3261 - [[package]] 3262 2870 name = "serde_str" 3263 2871 version = "1.0.0" 3264 2872 source = "git+https://github.com/tailhook/serde-str#d48076ec69a86e82abeca5f44c0b73ada1fda848" ··· 3279 2887 ] 3280 2888 3281 2889 [[package]] 3282 - name = "sha-1" 3283 - version = "0.10.0" 3284 - source = "registry+https://github.com/rust-lang/crates.io-index" 3285 - checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 3286 - dependencies = [ 3287 - "cfg-if 1.0.0", 3288 - "cpufeatures", 3289 - "digest 0.10.3", 3290 - ] 3291 - 3292 - [[package]] 3293 2890 name = "sha1" 3294 - version = "0.6.1" 3295 - source = "registry+https://github.com/rust-lang/crates.io-index" 3296 - checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" 3297 - dependencies = [ 3298 - "sha1_smol", 3299 - ] 3300 - 3301 - [[package]] 3302 - name = "sha1" 3303 - version = "0.10.1" 3304 - source = "registry+https://github.com/rust-lang/crates.io-index" 3305 - checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f" 3306 - dependencies = [ 3307 - "cfg-if 1.0.0", 3308 - "cpufeatures", 3309 - "digest 0.10.3", 3310 - ] 3311 - 3312 - [[package]] 3313 - name = "sha1_smol" 3314 - version = "1.0.0" 3315 - source = "registry+https://github.com/rust-lang/crates.io-index" 3316 - checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 3317 - 3318 - [[package]] 3319 - name = "sha2" 3320 - version = "0.9.9" 2891 + version = "0.10.5" 3321 2892 source = "registry+https://github.com/rust-lang/crates.io-index" 3322 - checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 2893 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 3323 2894 dependencies = [ 3324 - "block-buffer 0.9.0", 3325 - "cfg-if 1.0.0", 2895 + "cfg-if", 3326 2896 "cpufeatures", 3327 - "digest 0.9.0", 3328 - "opaque-debug", 2897 + "digest", 3329 2898 ] 3330 2899 3331 2900 [[package]] 3332 2901 name = "sha2" 3333 - version = "0.10.2" 2902 + version = "0.10.6" 3334 2903 source = "registry+https://github.com/rust-lang/crates.io-index" 3335 - checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676" 2904 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 3336 2905 dependencies = [ 3337 - "cfg-if 1.0.0", 2906 + "cfg-if", 3338 2907 "cpufeatures", 3339 - "digest 0.10.3", 2908 + "digest", 3340 2909 ] 3341 2910 3342 2911 [[package]] ··· 3350 2919 version = "0.1.0" 3351 2920 source = "registry+https://github.com/rust-lang/crates.io-index" 3352 2921 checksum = "6057adedbec913419c92996f395ba69931acbd50b7d56955394cd3f7bedbfa45" 3353 - 3354 - [[package]] 3355 - name = "signal" 3356 - version = "0.7.0" 3357 - source = "registry+https://github.com/rust-lang/crates.io-index" 3358 - checksum = "2f6ce83b159ab6984d2419f495134972b48754d13ff2e3f8c998339942b56ed9" 3359 - dependencies = [ 3360 - "libc", 3361 - "nix 0.14.1", 3362 - ] 3363 2922 3364 2923 [[package]] 3365 2924 name = "signal-hook" 3366 - version = "0.3.14" 2925 + version = "0.3.15" 3367 2926 source = "registry+https://github.com/rust-lang/crates.io-index" 3368 - checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d" 2927 + checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 3369 2928 dependencies = [ 3370 2929 "libc", 3371 2930 "signal-hook-registry", ··· 3384 2943 3385 2944 [[package]] 3386 2945 name = "signal-hook-registry" 3387 - version = "1.4.0" 2946 + version = "1.4.1" 3388 2947 source = "registry+https://github.com/rust-lang/crates.io-index" 3389 - checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 2948 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 3390 2949 dependencies = [ 3391 2950 "libc", 3392 2951 ] 3393 2952 3394 2953 [[package]] 3395 - name = "simple-mutex" 3396 - version = "1.1.5" 3397 - source = "registry+https://github.com/rust-lang/crates.io-index" 3398 - checksum = "38aabbeafa6f6dead8cebf246fe9fae1f9215c8d29b3a69f93bd62a9e4a3dcd6" 3399 - dependencies = [ 3400 - "event-listener", 3401 - ] 3402 - 3403 - [[package]] 3404 2954 name = "slab" 3405 - version = "0.4.7" 2955 + version = "0.4.8" 3406 2956 source = "registry+https://github.com/rust-lang/crates.io-index" 3407 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2957 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 3408 2958 dependencies = [ 3409 2959 "autocfg", 3410 2960 ] 3411 2961 3412 2962 [[package]] 3413 2963 name = "smallvec" 3414 - version = "1.9.0" 2964 + version = "1.10.0" 3415 2965 source = "registry+https://github.com/rust-lang/crates.io-index" 3416 - checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 2966 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 3417 2967 3418 2968 [[package]] 3419 2969 name = "smawk" ··· 3423 2973 3424 2974 [[package]] 3425 2975 name = "snafu" 3426 - version = "0.7.1" 2976 + version = "0.7.4" 3427 2977 source = "registry+https://github.com/rust-lang/crates.io-index" 3428 - checksum = "5177903bf45656592d9eb5c0e22f408fc023aae51dbe2088889b71633ba451f2" 2978 + checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" 3429 2979 dependencies = [ 3430 2980 "backtrace", 3431 2981 "doc-comment", ··· 3434 2984 3435 2985 [[package]] 3436 2986 name = "snafu-derive" 3437 - version = "0.7.1" 2987 + version = "0.7.4" 3438 2988 source = "registry+https://github.com/rust-lang/crates.io-index" 3439 - checksum = "410b26ed97440d90ced3e2488c868d56a86e2064f5d7d6f417909b286afe25e5" 2989 + checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 3440 2990 dependencies = [ 3441 2991 "heck", 3442 2992 "proc-macro2", 3443 2993 "quote", 3444 - "syn", 2994 + "syn 1.0.109", 3445 2995 ] 3446 2996 3447 2997 [[package]] 3448 2998 name = "socket2" 3449 - version = "0.4.4" 2999 + version = "0.4.9" 3450 3000 source = "registry+https://github.com/rust-lang/crates.io-index" 3451 - checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 3001 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 3452 3002 dependencies = [ 3453 3003 "libc", 3454 3004 "winapi", ··· 3461 3011 checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3462 3012 3463 3013 [[package]] 3464 - name = "standback" 3465 - version = "0.2.17" 3466 - source = "registry+https://github.com/rust-lang/crates.io-index" 3467 - checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" 3468 - dependencies = [ 3469 - "version_check", 3470 - ] 3471 - 3472 - [[package]] 3473 3014 name = "static_assertions" 3474 3015 version = "1.1.0" 3475 3016 source = "registry+https://github.com/rust-lang/crates.io-index" 3476 3017 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3477 3018 3478 3019 [[package]] 3479 - name = "stdweb" 3480 - version = "0.4.20" 3481 - source = "registry+https://github.com/rust-lang/crates.io-index" 3482 - checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" 3483 - dependencies = [ 3484 - "discard", 3485 - "rustc_version", 3486 - "stdweb-derive", 3487 - "stdweb-internal-macros", 3488 - "stdweb-internal-runtime", 3489 - "wasm-bindgen", 3490 - ] 3491 - 3492 - [[package]] 3493 - name = "stdweb-derive" 3494 - version = "0.5.3" 3495 - source = "registry+https://github.com/rust-lang/crates.io-index" 3496 - checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" 3497 - dependencies = [ 3498 - "proc-macro2", 3499 - "quote", 3500 - "serde", 3501 - "serde_derive", 3502 - "syn", 3503 - ] 3504 - 3505 - [[package]] 3506 - name = "stdweb-internal-macros" 3507 - version = "0.2.9" 3508 - source = "registry+https://github.com/rust-lang/crates.io-index" 3509 - checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" 3510 - dependencies = [ 3511 - "base-x", 3512 - "proc-macro2", 3513 - "quote", 3514 - "serde", 3515 - "serde_derive", 3516 - "serde_json", 3517 - "sha1 0.6.1", 3518 - "syn", 3519 - ] 3520 - 3521 - [[package]] 3522 - name = "stdweb-internal-runtime" 3523 - version = "0.1.5" 3524 - source = "registry+https://github.com/rust-lang/crates.io-index" 3525 - checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" 3526 - 3527 - [[package]] 3528 3020 name = "strsim" 3529 3021 version = "0.10.0" 3530 3022 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3537 3029 checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3538 3030 3539 3031 [[package]] 3540 - name = "surf" 3541 - version = "2.3.2" 3032 + name = "syn" 3033 + version = "1.0.109" 3542 3034 source = "registry+https://github.com/rust-lang/crates.io-index" 3543 - checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7" 3035 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3544 3036 dependencies = [ 3545 - "async-native-tls", 3546 - "async-std", 3547 - "async-trait", 3548 - "cfg-if 1.0.0", 3549 - "futures-util", 3550 - "getrandom 0.2.7", 3551 - "http-client", 3552 - "http-types", 3553 - "log", 3554 - "mime_guess", 3555 - "once_cell", 3556 - "pin-project-lite", 3557 - "serde", 3558 - "serde_json", 3037 + "proc-macro2", 3038 + "quote", 3039 + "unicode-ident", 3559 3040 ] 3560 3041 3561 3042 [[package]] 3562 3043 name = "syn" 3563 - version = "1.0.99" 3044 + version = "2.0.18" 3564 3045 source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" 3046 + checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 3566 3047 dependencies = [ 3567 3048 "proc-macro2", 3568 3049 "quote", ··· 3570 3051 ] 3571 3052 3572 3053 [[package]] 3054 + name = "tap" 3055 + version = "1.0.1" 3056 + source = "registry+https://github.com/rust-lang/crates.io-index" 3057 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3058 + 3059 + [[package]] 3573 3060 name = "tar" 3574 3061 version = "0.4.38" 3575 3062 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3581 3068 ] 3582 3069 3583 3070 [[package]] 3584 - name = "tempdir" 3585 - version = "0.3.7" 3586 - source = "registry+https://github.com/rust-lang/crates.io-index" 3587 - checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" 3588 - dependencies = [ 3589 - "rand 0.4.6", 3590 - "remove_dir_all", 3591 - ] 3592 - 3593 - [[package]] 3594 3071 name = "tempfile" 3595 - version = "3.3.0" 3072 + version = "3.5.0" 3596 3073 source = "registry+https://github.com/rust-lang/crates.io-index" 3597 - checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 3074 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 3598 3075 dependencies = [ 3599 - "cfg-if 1.0.0", 3076 + "cfg-if", 3600 3077 "fastrand", 3601 - "libc", 3602 - "redox_syscall", 3603 - "remove_dir_all", 3604 - "winapi", 3078 + "redox_syscall 0.3.5", 3079 + "rustix", 3080 + "windows-sys 0.45.0", 3605 3081 ] 3606 3082 3607 3083 [[package]] ··· 3616 3092 ] 3617 3093 3618 3094 [[package]] 3619 - name = "term_size" 3620 - version = "0.3.2" 3621 - source = "registry+https://github.com/rust-lang/crates.io-index" 3622 - checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9" 3623 - dependencies = [ 3624 - "libc", 3625 - "winapi", 3626 - ] 3627 - 3628 - [[package]] 3629 3095 name = "termcolor" 3630 - version = "1.1.3" 3096 + version = "1.2.0" 3631 3097 source = "registry+https://github.com/rust-lang/crates.io-index" 3632 - checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 3098 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 3633 3099 dependencies = [ 3634 3100 "winapi-util", 3635 3101 ] 3636 3102 3637 3103 [[package]] 3638 3104 name = "termimad" 3639 - version = "0.20.2" 3105 + version = "0.20.6" 3640 3106 source = "registry+https://github.com/rust-lang/crates.io-index" 3641 - checksum = "c8a16d7de8d4c97a4149cc3b9d3681c5dba36011c303745bb1af19636e89ba39" 3107 + checksum = "cfab44b4bc17601cf226cce31c87462a4a5bd5d325948c8ebbc9e715660a1287" 3642 3108 dependencies = [ 3643 3109 "coolor", 3644 3110 "crossbeam", ··· 3650 3116 3651 3117 [[package]] 3652 3118 name = "terminal_size" 3653 - version = "0.1.17" 3119 + version = "0.2.6" 3654 3120 source = "registry+https://github.com/rust-lang/crates.io-index" 3655 - checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 3121 + checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 3656 3122 dependencies = [ 3657 - "libc", 3658 - "winapi", 3123 + "rustix", 3124 + "windows-sys 0.48.0", 3659 3125 ] 3660 3126 3661 3127 [[package]] 3662 3128 name = "termtree" 3663 - version = "0.2.4" 3129 + version = "0.4.0" 3664 3130 source = "registry+https://github.com/rust-lang/crates.io-index" 3665 - checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b" 3131 + checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8" 3666 3132 3667 3133 [[package]] 3668 3134 name = "test-case" 3669 - version = "2.2.1" 3135 + version = "2.2.2" 3670 3136 source = "registry+https://github.com/rust-lang/crates.io-index" 3671 - checksum = "07aea929e9488998b64adc414c29fe5620398f01c2e3f58164122b17e567a6d5" 3137 + checksum = "21d6cf5a7dffb3f9dceec8e6b8ca528d9bd71d36c9f074defb548ce161f598c0" 3672 3138 dependencies = [ 3673 3139 "test-case-macros", 3674 3140 ] 3675 3141 3676 3142 [[package]] 3677 3143 name = "test-case-macros" 3678 - version = "2.2.1" 3144 + version = "2.2.2" 3679 3145 source = "registry+https://github.com/rust-lang/crates.io-index" 3680 - checksum = "c95968eedc6fc4f5c21920e0f4264f78ec5e4c56bb394f319becc1a5830b3e54" 3146 + checksum = "e45b7bf6e19353ddd832745c8fcf77a17a93171df7151187f26623f2b75b5b26" 3681 3147 dependencies = [ 3682 - "cfg-if 1.0.0", 3148 + "cfg-if", 3683 3149 "proc-macro-error", 3684 3150 "proc-macro2", 3685 3151 "quote", 3686 - "syn", 3152 + "syn 1.0.109", 3687 3153 ] 3688 3154 3689 3155 [[package]] 3690 3156 name = "test-cert-gen" 3691 - version = "0.7.0" 3157 + version = "0.9.0" 3692 3158 source = "registry+https://github.com/rust-lang/crates.io-index" 3693 - checksum = "3208d0ae2e3736d4ac2f6ba2229c4d9bbd54080e228e662a7684eabcf13ff419" 3159 + checksum = "345f92b7cac59507cdaba298c5493f7c40e2063d31f6fc621105183344d5d50a" 3694 3160 dependencies = [ 3161 + "once_cell", 3695 3162 "pem 0.8.3", 3696 - "tempdir", 3163 + "tempfile", 3697 3164 ] 3698 3165 3699 3166 [[package]] 3700 3167 name = "textwrap" 3701 - version = "0.15.0" 3168 + version = "0.16.0" 3702 3169 source = "registry+https://github.com/rust-lang/crates.io-index" 3703 - checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" 3170 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 3704 3171 dependencies = [ 3705 3172 "smawk", 3706 3173 "terminal_size", ··· 3709 3176 ] 3710 3177 3711 3178 [[package]] 3712 - name = "textwrap" 3713 - version = "0.16.0" 3714 - source = "registry+https://github.com/rust-lang/crates.io-index" 3715 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 3716 - 3717 - [[package]] 3718 3179 name = "thiserror" 3719 - version = "1.0.32" 3180 + version = "1.0.40" 3720 3181 source = "registry+https://github.com/rust-lang/crates.io-index" 3721 - checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" 3182 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 3722 3183 dependencies = [ 3723 3184 "thiserror-impl", 3724 3185 ] 3725 3186 3726 3187 [[package]] 3727 3188 name = "thiserror-impl" 3728 - version = "1.0.32" 3189 + version = "1.0.40" 3729 3190 source = "registry+https://github.com/rust-lang/crates.io-index" 3730 - checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" 3191 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 3731 3192 dependencies = [ 3732 3193 "proc-macro2", 3733 3194 "quote", 3734 - "syn", 3195 + "syn 2.0.18", 3735 3196 ] 3736 3197 3737 3198 [[package]] 3738 3199 name = "time" 3739 - version = "0.1.44" 3200 + version = "0.3.20" 3740 3201 source = "registry+https://github.com/rust-lang/crates.io-index" 3741 - checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 3202 + checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 3742 3203 dependencies = [ 3743 - "libc", 3744 - "wasi 0.10.0+wasi-snapshot-preview1", 3745 - "winapi", 3746 - ] 3747 - 3748 - [[package]] 3749 - name = "time" 3750 - version = "0.2.27" 3751 - source = "registry+https://github.com/rust-lang/crates.io-index" 3752 - checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" 3753 - dependencies = [ 3754 - "const_fn", 3755 - "libc", 3756 - "standback", 3757 - "stdweb", 3758 - "time-macros 0.1.1", 3759 - "version_check", 3760 - "winapi", 3204 + "serde", 3205 + "time-core", 3761 3206 ] 3762 3207 3763 3208 [[package]] 3764 - name = "time" 3765 - version = "0.3.12" 3209 + name = "time-core" 3210 + version = "0.1.0" 3766 3211 source = "registry+https://github.com/rust-lang/crates.io-index" 3767 - checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f" 3768 - dependencies = [ 3769 - "itoa", 3770 - "js-sys", 3771 - "libc", 3772 - "num_threads", 3773 - "time-macros 0.2.4", 3774 - ] 3775 - 3776 - [[package]] 3777 - name = "time-macros" 3778 - version = "0.1.1" 3779 - source = "registry+https://github.com/rust-lang/crates.io-index" 3780 - checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" 3781 - dependencies = [ 3782 - "proc-macro-hack", 3783 - "time-macros-impl", 3784 - ] 3785 - 3786 - [[package]] 3787 - name = "time-macros" 3788 - version = "0.2.4" 3789 - source = "registry+https://github.com/rust-lang/crates.io-index" 3790 - checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" 3791 - 3792 - [[package]] 3793 - name = "time-macros-impl" 3794 - version = "0.1.2" 3795 - source = "registry+https://github.com/rust-lang/crates.io-index" 3796 - checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" 3797 - dependencies = [ 3798 - "proc-macro-hack", 3799 - "proc-macro2", 3800 - "quote", 3801 - "standback", 3802 - "syn", 3803 - ] 3212 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 3804 3213 3805 3214 [[package]] 3806 3215 name = "tinyvec" ··· 3813 3222 3814 3223 [[package]] 3815 3224 name = "tinyvec_macros" 3816 - version = "0.1.0" 3225 + version = "0.1.1" 3817 3226 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3227 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3819 3228 3820 3229 [[package]] 3821 3230 name = "tls-api" 3822 - version = "0.7.0" 3231 + version = "0.9.0" 3823 3232 source = "registry+https://github.com/rust-lang/crates.io-index" 3824 - checksum = "b7dded74ddc6d4a98f9f94f17f1c4d796e4af3cb5fba9e7655f157a036ee7de0" 3233 + checksum = "66d1b3dfb0a60da3e8a130c9f2432063d9979928a05c2b2cdcfc9fd05e4f53a3" 3825 3234 dependencies = [ 3826 3235 "anyhow", 3827 - "futures-util", 3828 3236 "log", 3829 3237 "pem 0.8.3", 3830 - "tempdir", 3238 + "tempfile", 3831 3239 "thiserror", 3240 + "tokio", 3832 3241 "void", 3833 - "webpki 0.22.0", 3242 + "webpki", 3834 3243 ] 3835 3244 3836 3245 [[package]] 3837 3246 name = "tls-api-not-tls" 3838 - version = "0.7.0" 3247 + version = "0.9.0" 3839 3248 source = "registry+https://github.com/rust-lang/crates.io-index" 3840 - checksum = "b9026a0d37898cc761deb9aa92e727c61412f24c490853337a5dcba95f1e9adf" 3249 + checksum = "529dda0254aa61462ebe3937ecf877b6b1d7e745d25b74c18ba98593aefd7086" 3841 3250 dependencies = [ 3842 3251 "anyhow", 3843 - "async-std", 3844 3252 "thiserror", 3845 3253 "tls-api", 3846 3254 "tls-api-test", 3255 + "tokio", 3847 3256 ] 3848 3257 3849 3258 [[package]] 3850 3259 name = "tls-api-rustls" 3851 - version = "0.7.0" 3260 + version = "0.9.0" 3852 3261 source = "registry+https://github.com/rust-lang/crates.io-index" 3853 - checksum = "9eeadd40cf3e8d610d3ccc5cc71443629ac0aa2c66aee7bc085c7d0b03c706a6" 3262 + checksum = "afcd7905a7d9603bc4c1bcf4710141d463cde70f027ab7900bc1d0012712444d" 3854 3263 dependencies = [ 3855 3264 "anyhow", 3856 - "async-std", 3857 - "rustls 0.20.6", 3265 + "rustls", 3858 3266 "thiserror", 3859 3267 "tls-api", 3860 3268 "tls-api-test", 3861 - "webpki 0.22.0", 3269 + "tokio", 3270 + "webpki", 3862 3271 "webpki-roots", 3863 3272 ] 3864 3273 3865 3274 [[package]] 3866 3275 name = "tls-api-test" 3867 - version = "0.7.0" 3276 + version = "0.9.0" 3868 3277 source = "registry+https://github.com/rust-lang/crates.io-index" 3869 - checksum = "344ab291be7ed9ab296fc28153fe3ac1e430f44c4dfb3f1324a3c09bbbb5f104" 3278 + checksum = "9df107843d725428d76bb159040fbae6d1524dcf25d5b24c56daa6b37ce9dbb5" 3870 3279 dependencies = [ 3871 3280 "anyhow", 3872 - "async-std", 3873 3281 "env_logger 0.5.13", 3874 3282 "log", 3875 3283 "pem 0.8.3", 3876 3284 "test-cert-gen", 3877 3285 "tls-api", 3286 + "tokio", 3878 3287 "untrusted 0.6.2", 3879 - "webpki 0.22.0", 3288 + "webpki", 3880 3289 ] 3881 3290 3882 3291 [[package]] 3883 3292 name = "tokio" 3884 - version = "1.20.1" 3293 + version = "1.28.2" 3885 3294 source = "registry+https://github.com/rust-lang/crates.io-index" 3886 - checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" 3295 + checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" 3887 3296 dependencies = [ 3888 3297 "autocfg", 3889 3298 "bytes", 3890 3299 "libc", 3891 - "memchr", 3892 3300 "mio", 3893 3301 "num_cpus", 3894 - "once_cell", 3895 3302 "pin-project-lite", 3303 + "signal-hook-registry", 3896 3304 "socket2", 3897 3305 "tokio-macros", 3898 - "winapi", 3306 + "windows-sys 0.48.0", 3899 3307 ] 3900 3308 3901 3309 [[package]] 3902 3310 name = "tokio-macros" 3903 - version = "1.8.0" 3311 + version = "2.1.0" 3904 3312 source = "registry+https://github.com/rust-lang/crates.io-index" 3905 - checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 3313 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 3906 3314 dependencies = [ 3907 3315 "proc-macro2", 3908 3316 "quote", 3909 - "syn", 3317 + "syn 2.0.18", 3910 3318 ] 3911 3319 3912 3320 [[package]] 3913 3321 name = "tokio-native-tls" 3914 - version = "0.3.0" 3322 + version = "0.3.1" 3915 3323 source = "registry+https://github.com/rust-lang/crates.io-index" 3916 - checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 3324 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 3917 3325 dependencies = [ 3918 3326 "native-tls", 3919 3327 "tokio", ··· 3921 3329 3922 3330 [[package]] 3923 3331 name = "tokio-rustls" 3924 - version = "0.22.0" 3332 + version = "0.23.4" 3925 3333 source = "registry+https://github.com/rust-lang/crates.io-index" 3926 - checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" 3334 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 3927 3335 dependencies = [ 3928 - "rustls 0.19.1", 3336 + "rustls", 3929 3337 "tokio", 3930 - "webpki 0.21.4", 3338 + "webpki", 3931 3339 ] 3932 3340 3933 3341 [[package]] 3934 3342 name = "tokio-stream" 3935 - version = "0.1.9" 3936 - source = "registry+https://github.com/rust-lang/crates.io-index" 3937 - checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9" 3938 - dependencies = [ 3939 - "futures-core", 3940 - "pin-project-lite", 3941 - "tokio", 3942 - ] 3943 - 3944 - [[package]] 3945 - name = "tokio-util" 3946 - version = "0.6.10" 3343 + version = "0.1.14" 3947 3344 source = "registry+https://github.com/rust-lang/crates.io-index" 3948 - checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" 3345 + checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 3949 3346 dependencies = [ 3950 - "bytes", 3951 3347 "futures-core", 3952 - "futures-sink", 3953 - "log", 3954 3348 "pin-project-lite", 3955 3349 "tokio", 3956 3350 ] 3957 3351 3958 3352 [[package]] 3959 3353 name = "tokio-util" 3960 - version = "0.7.3" 3354 + version = "0.7.7" 3961 3355 source = "registry+https://github.com/rust-lang/crates.io-index" 3962 - checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45" 3356 + checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 3963 3357 dependencies = [ 3964 3358 "bytes", 3965 3359 "futures-core", ··· 3971 3365 3972 3366 [[package]] 3973 3367 name = "toml" 3974 - version = "0.5.9" 3368 + version = "0.5.11" 3975 3369 source = "registry+https://github.com/rust-lang/crates.io-index" 3976 - checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 3370 + checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 3977 3371 dependencies = [ 3978 3372 "serde", 3979 3373 ] ··· 3986 3380 3987 3381 [[package]] 3988 3382 name = "tracing" 3989 - version = "0.1.36" 3383 + version = "0.1.37" 3990 3384 source = "registry+https://github.com/rust-lang/crates.io-index" 3991 - checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 3385 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 3992 3386 dependencies = [ 3993 - "cfg-if 1.0.0", 3387 + "cfg-if", 3994 3388 "log", 3995 3389 "pin-project-lite", 3996 3390 "tracing-core", ··· 3998 3392 3999 3393 [[package]] 4000 3394 name = "tracing-core" 4001 - version = "0.1.29" 3395 + version = "0.1.30" 4002 3396 source = "registry+https://github.com/rust-lang/crates.io-index" 4003 - checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 3397 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 4004 3398 dependencies = [ 4005 3399 "once_cell", 4006 3400 ] 4007 3401 4008 3402 [[package]] 4009 - name = "traitobject" 4010 - version = "0.1.0" 4011 - source = "registry+https://github.com/rust-lang/crates.io-index" 4012 - checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" 4013 - 4014 - [[package]] 4015 3403 name = "try-lock" 4016 - version = "0.2.3" 3404 + version = "0.2.4" 4017 3405 source = "registry+https://github.com/rust-lang/crates.io-index" 4018 - checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 3406 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 4019 3407 4020 3408 [[package]] 4021 3409 name = "trybuild" 4022 - version = "1.0.64" 3410 + version = "1.0.79" 4023 3411 source = "registry+https://github.com/rust-lang/crates.io-index" 4024 - checksum = "e7f408301c7480f9e6294eb779cfc907f54bd901a9660ef24d7f233ed5376485" 3412 + checksum = "db3115bddce1b5f52dd4b5e0ec8298a66ce733e4cc6759247dc2d1c11508ec38" 4025 3413 dependencies = [ 3414 + "basic-toml", 4026 3415 "glob", 4027 3416 "once_cell", 4028 3417 "serde", 4029 3418 "serde_derive", 4030 3419 "serde_json", 4031 3420 "termcolor", 4032 - "toml", 4033 - ] 4034 - 4035 - [[package]] 4036 - name = "twoway" 4037 - version = "0.2.2" 4038 - source = "registry+https://github.com/rust-lang/crates.io-index" 4039 - checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47" 4040 - dependencies = [ 4041 - "memchr", 4042 - "unchecked-index", 4043 - ] 4044 - 4045 - [[package]] 4046 - name = "typemap" 4047 - version = "0.3.3" 4048 - source = "registry+https://github.com/rust-lang/crates.io-index" 4049 - checksum = "653be63c80a3296da5551e1bfd2cca35227e13cdd08c6668903ae2f4f77aa1f6" 4050 - dependencies = [ 4051 - "unsafe-any", 4052 3421 ] 4053 3422 4054 3423 [[package]] 4055 3424 name = "typenum" 4056 - version = "1.15.0" 3425 + version = "1.16.0" 4057 3426 source = "registry+https://github.com/rust-lang/crates.io-index" 4058 - checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 4059 - 4060 - [[package]] 4061 - name = "unchecked-index" 4062 - version = "0.2.2" 4063 - source = "registry+https://github.com/rust-lang/crates.io-index" 4064 - checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c" 3427 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4065 3428 4066 3429 [[package]] 4067 3430 name = "unicase" ··· 4074 3437 4075 3438 [[package]] 4076 3439 name = "unicode-bidi" 4077 - version = "0.3.8" 3440 + version = "0.3.11" 4078 3441 source = "registry+https://github.com/rust-lang/crates.io-index" 4079 - checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3442 + checksum = "524b68aca1d05e03fdf03fcdce2c6c94b6daf6d16861ddaa7e4f2b6638a9052c" 4080 3443 4081 3444 [[package]] 4082 3445 name = "unicode-ident" 4083 - version = "1.0.3" 3446 + version = "1.0.8" 4084 3447 source = "registry+https://github.com/rust-lang/crates.io-index" 4085 - checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" 3448 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 4086 3449 4087 3450 [[package]] 4088 3451 name = "unicode-linebreak" 4089 - version = "0.1.2" 3452 + version = "0.1.4" 4090 3453 source = "registry+https://github.com/rust-lang/crates.io-index" 4091 - checksum = "3a52dcaab0c48d931f7cc8ef826fa51690a08e1ea55117ef26f89864f532383f" 3454 + checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" 4092 3455 dependencies = [ 3456 + "hashbrown 0.12.3", 4093 3457 "regex", 4094 3458 ] 4095 3459 4096 3460 [[package]] 4097 3461 name = "unicode-normalization" 4098 - version = "0.1.21" 3462 + version = "0.1.22" 4099 3463 source = "registry+https://github.com/rust-lang/crates.io-index" 4100 - checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" 3464 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4101 3465 dependencies = [ 4102 3466 "tinyvec", 4103 3467 ] 4104 3468 4105 3469 [[package]] 4106 3470 name = "unicode-segmentation" 4107 - version = "1.9.0" 3471 + version = "1.10.1" 4108 3472 source = "registry+https://github.com/rust-lang/crates.io-index" 4109 - checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" 3473 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 4110 3474 4111 3475 [[package]] 4112 3476 name = "unicode-width" 4113 - version = "0.1.9" 4114 - source = "registry+https://github.com/rust-lang/crates.io-index" 4115 - checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 4116 - 4117 - [[package]] 4118 - name = "universal-hash" 4119 - version = "0.4.1" 4120 - source = "registry+https://github.com/rust-lang/crates.io-index" 4121 - checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 4122 - dependencies = [ 4123 - "generic-array", 4124 - "subtle", 4125 - ] 4126 - 4127 - [[package]] 4128 - name = "unsafe-any" 4129 - version = "0.4.2" 3477 + version = "0.1.10" 4130 3478 source = "registry+https://github.com/rust-lang/crates.io-index" 4131 - checksum = "f30360d7979f5e9c6e6cea48af192ea8fab4afb3cf72597154b8f08935bc9c7f" 4132 - dependencies = [ 4133 - "traitobject", 4134 - ] 3479 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 4135 3480 4136 3481 [[package]] 4137 3482 name = "untrusted" ··· 4147 3492 4148 3493 [[package]] 4149 3494 name = "url" 4150 - version = "2.2.2" 3495 + version = "2.3.1" 4151 3496 source = "registry+https://github.com/rust-lang/crates.io-index" 4152 - checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 3497 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 4153 3498 dependencies = [ 4154 3499 "form_urlencoded", 4155 3500 "idna", 4156 - "matches", 4157 3501 "percent-encoding", 4158 3502 "serde", 4159 3503 ] 4160 3504 4161 3505 [[package]] 4162 3506 name = "urlencoding" 4163 - version = "2.1.0" 3507 + version = "2.1.2" 4164 3508 source = "registry+https://github.com/rust-lang/crates.io-index" 4165 - checksum = "68b90931029ab9b034b300b797048cf23723400aa757e8a2bfb9d748102f9821" 3509 + checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 4166 3510 4167 3511 [[package]] 4168 3512 name = "utf8parse" 4169 - version = "0.2.0" 3513 + version = "0.2.1" 4170 3514 source = "registry+https://github.com/rust-lang/crates.io-index" 4171 - checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" 3515 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 4172 3516 4173 3517 [[package]] 4174 3518 name = "uuid" 4175 - version = "1.1.2" 3519 + version = "1.3.4" 4176 3520 source = "registry+https://github.com/rust-lang/crates.io-index" 4177 - checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" 3521 + checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81" 3522 + dependencies = [ 3523 + "serde", 3524 + ] 4178 3525 4179 3526 [[package]] 4180 3527 name = "value-bag" 4181 - version = "1.0.0-alpha.9" 3528 + version = "1.4.0" 4182 3529 source = "registry+https://github.com/rust-lang/crates.io-index" 4183 - checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" 4184 - dependencies = [ 4185 - "ctor", 4186 - "version_check", 4187 - ] 3530 + checksum = "a4d330786735ea358f3bc09eea4caa098569c1c93f342d9aca0514915022fe7e" 4188 3531 4189 3532 [[package]] 4190 3533 name = "vcpkg" ··· 4220 3563 checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 4221 3564 4222 3565 [[package]] 3566 + name = "walkdir" 3567 + version = "2.3.2" 3568 + source = "registry+https://github.com/rust-lang/crates.io-index" 3569 + checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3570 + dependencies = [ 3571 + "same-file", 3572 + "winapi", 3573 + "winapi-util", 3574 + ] 3575 + 3576 + [[package]] 4223 3577 name = "want" 4224 3578 version = "0.3.0" 4225 3579 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4231 3585 4232 3586 [[package]] 4233 3587 name = "warp" 4234 - version = "0.3.2" 3588 + version = "0.3.5" 4235 3589 source = "registry+https://github.com/rust-lang/crates.io-index" 4236 - checksum = "3cef4e1e9114a4b7f1ac799f16ce71c14de5778500c5450ec6b7b920c55b587e" 3590 + checksum = "ba431ef570df1287f7f8b07e376491ad54f84d26ac473489427231e1718e1f69" 4237 3591 dependencies = [ 4238 3592 "bytes", 4239 3593 "futures-channel", ··· 4246 3600 "mime_guess", 4247 3601 "percent-encoding", 4248 3602 "pin-project", 3603 + "rustls-pemfile", 4249 3604 "scoped-tls", 4250 3605 "serde", 4251 3606 "serde_json", ··· 4253 3608 "tokio", 4254 3609 "tokio-rustls", 4255 3610 "tokio-stream", 4256 - "tokio-util 0.6.10", 3611 + "tokio-util", 4257 3612 "tower-service", 4258 3613 "tracing", 4259 3614 ] 4260 3615 4261 3616 [[package]] 4262 3617 name = "wasi" 4263 - version = "0.9.0+wasi-snapshot-preview1" 4264 - source = "registry+https://github.com/rust-lang/crates.io-index" 4265 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4266 - 4267 - [[package]] 4268 - name = "wasi" 4269 - version = "0.10.0+wasi-snapshot-preview1" 4270 - source = "registry+https://github.com/rust-lang/crates.io-index" 4271 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 4272 - 4273 - [[package]] 4274 - name = "wasi" 4275 3618 version = "0.11.0+wasi-snapshot-preview1" 4276 3619 source = "registry+https://github.com/rust-lang/crates.io-index" 4277 3620 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4278 3621 4279 3622 [[package]] 4280 3623 name = "wasm-bindgen" 4281 - version = "0.2.82" 3624 + version = "0.2.84" 4282 3625 source = "registry+https://github.com/rust-lang/crates.io-index" 4283 - checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 3626 + checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 4284 3627 dependencies = [ 4285 - "cfg-if 1.0.0", 3628 + "cfg-if", 4286 3629 "wasm-bindgen-macro", 4287 3630 ] 4288 3631 4289 3632 [[package]] 4290 3633 name = "wasm-bindgen-backend" 4291 - version = "0.2.82" 3634 + version = "0.2.84" 4292 3635 source = "registry+https://github.com/rust-lang/crates.io-index" 4293 - checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 3636 + checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 4294 3637 dependencies = [ 4295 3638 "bumpalo", 4296 3639 "log", 4297 3640 "once_cell", 4298 3641 "proc-macro2", 4299 3642 "quote", 4300 - "syn", 3643 + "syn 1.0.109", 4301 3644 "wasm-bindgen-shared", 4302 3645 ] 4303 3646 4304 3647 [[package]] 4305 3648 name = "wasm-bindgen-futures" 4306 - version = "0.4.32" 3649 + version = "0.4.34" 4307 3650 source = "registry+https://github.com/rust-lang/crates.io-index" 4308 - checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad" 3651 + checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 4309 3652 dependencies = [ 4310 - "cfg-if 1.0.0", 3653 + "cfg-if", 4311 3654 "js-sys", 4312 3655 "wasm-bindgen", 4313 3656 "web-sys", ··· 4315 3658 4316 3659 [[package]] 4317 3660 name = "wasm-bindgen-macro" 4318 - version = "0.2.82" 3661 + version = "0.2.84" 4319 3662 source = "registry+https://github.com/rust-lang/crates.io-index" 4320 - checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 3663 + checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 4321 3664 dependencies = [ 4322 3665 "quote", 4323 3666 "wasm-bindgen-macro-support", ··· 4325 3668 4326 3669 [[package]] 4327 3670 name = "wasm-bindgen-macro-support" 4328 - version = "0.2.82" 3671 + version = "0.2.84" 4329 3672 source = "registry+https://github.com/rust-lang/crates.io-index" 4330 - checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 3673 + checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 4331 3674 dependencies = [ 4332 3675 "proc-macro2", 4333 3676 "quote", 4334 - "syn", 3677 + "syn 1.0.109", 4335 3678 "wasm-bindgen-backend", 4336 3679 "wasm-bindgen-shared", 4337 3680 ] 4338 3681 4339 3682 [[package]] 4340 3683 name = "wasm-bindgen-shared" 4341 - version = "0.2.82" 3684 + version = "0.2.84" 4342 3685 source = "registry+https://github.com/rust-lang/crates.io-index" 4343 - checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 3686 + checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 4344 3687 4345 3688 [[package]] 4346 3689 name = "wchar" ··· 4361 3704 "proc-macro-hack", 4362 3705 "proc-macro2", 4363 3706 "quote", 4364 - "syn", 3707 + "syn 1.0.109", 4365 3708 ] 4366 3709 4367 3710 [[package]] 4368 3711 name = "web-sys" 4369 - version = "0.3.59" 3712 + version = "0.3.61" 4370 3713 source = "registry+https://github.com/rust-lang/crates.io-index" 4371 - checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1" 3714 + checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 4372 3715 dependencies = [ 4373 3716 "js-sys", 4374 3717 "wasm-bindgen", ··· 4376 3719 4377 3720 [[package]] 4378 3721 name = "webpki" 4379 - version = "0.21.4" 4380 - source = "registry+https://github.com/rust-lang/crates.io-index" 4381 - checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" 4382 - dependencies = [ 4383 - "ring", 4384 - "untrusted 0.7.1", 4385 - ] 4386 - 4387 - [[package]] 4388 - name = "webpki" 4389 3722 version = "0.22.0" 4390 3723 source = "registry+https://github.com/rust-lang/crates.io-index" 4391 3724 checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" ··· 4396 3729 4397 3730 [[package]] 4398 3731 name = "webpki-roots" 4399 - version = "0.22.4" 4400 - source = "registry+https://github.com/rust-lang/crates.io-index" 4401 - checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf" 4402 - dependencies = [ 4403 - "webpki 0.22.0", 4404 - ] 4405 - 4406 - [[package]] 4407 - name = "wepoll-ffi" 4408 - version = "0.1.2" 3732 + version = "0.22.6" 4409 3733 source = "registry+https://github.com/rust-lang/crates.io-index" 4410 - checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" 3734 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 4411 3735 dependencies = [ 4412 - "cc", 3736 + "webpki", 4413 3737 ] 4414 3738 4415 3739 [[package]] 4416 3740 name = "which" 4417 - version = "4.2.5" 3741 + version = "4.4.0" 4418 3742 source = "registry+https://github.com/rust-lang/crates.io-index" 4419 - checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae" 3743 + checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 4420 3744 dependencies = [ 4421 3745 "either", 4422 - "lazy_static", 4423 3746 "libc", 3747 + "once_cell", 4424 3748 ] 4425 3749 4426 3750 [[package]] 4427 3751 name = "whoami" 4428 - version = "1.2.1" 3752 + version = "1.4.0" 4429 3753 source = "registry+https://github.com/rust-lang/crates.io-index" 4430 - checksum = "524b58fa5a20a2fb3014dd6358b70e6579692a56ef6fce928834e488f42f65e8" 3754 + checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68" 4431 3755 dependencies = [ 4432 3756 "wasm-bindgen", 4433 3757 "web-sys", ··· 4466 3790 4467 3791 [[package]] 4468 3792 name = "windows-sys" 4469 - version = "0.36.1" 3793 + version = "0.42.0" 4470 3794 source = "registry+https://github.com/rust-lang/crates.io-index" 4471 - checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 3795 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 4472 3796 dependencies = [ 4473 - "windows_aarch64_msvc 0.36.1", 4474 - "windows_i686_gnu 0.36.1", 4475 - "windows_i686_msvc 0.36.1", 4476 - "windows_x86_64_gnu 0.36.1", 4477 - "windows_x86_64_msvc 0.36.1", 3797 + "windows_aarch64_gnullvm 0.42.1", 3798 + "windows_aarch64_msvc 0.42.1", 3799 + "windows_i686_gnu 0.42.1", 3800 + "windows_i686_msvc 0.42.1", 3801 + "windows_x86_64_gnu 0.42.1", 3802 + "windows_x86_64_gnullvm 0.42.1", 3803 + "windows_x86_64_msvc 0.42.1", 4478 3804 ] 4479 3805 4480 3806 [[package]] ··· 4483 3809 source = "registry+https://github.com/rust-lang/crates.io-index" 4484 3810 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4485 3811 dependencies = [ 4486 - "windows-targets", 3812 + "windows-targets 0.42.1", 3813 + ] 3814 + 3815 + [[package]] 3816 + name = "windows-sys" 3817 + version = "0.48.0" 3818 + source = "registry+https://github.com/rust-lang/crates.io-index" 3819 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3820 + dependencies = [ 3821 + "windows-targets 0.48.0", 4487 3822 ] 4488 3823 4489 3824 [[package]] ··· 4492 3827 source = "registry+https://github.com/rust-lang/crates.io-index" 4493 3828 checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 4494 3829 dependencies = [ 4495 - "windows_aarch64_gnullvm", 3830 + "windows_aarch64_gnullvm 0.42.1", 4496 3831 "windows_aarch64_msvc 0.42.1", 4497 3832 "windows_i686_gnu 0.42.1", 4498 3833 "windows_i686_msvc 0.42.1", 4499 3834 "windows_x86_64_gnu 0.42.1", 4500 - "windows_x86_64_gnullvm", 3835 + "windows_x86_64_gnullvm 0.42.1", 4501 3836 "windows_x86_64_msvc 0.42.1", 4502 3837 ] 4503 3838 4504 3839 [[package]] 3840 + name = "windows-targets" 3841 + version = "0.48.0" 3842 + source = "registry+https://github.com/rust-lang/crates.io-index" 3843 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 3844 + dependencies = [ 3845 + "windows_aarch64_gnullvm 0.48.0", 3846 + "windows_aarch64_msvc 0.48.0", 3847 + "windows_i686_gnu 0.48.0", 3848 + "windows_i686_msvc 0.48.0", 3849 + "windows_x86_64_gnu 0.48.0", 3850 + "windows_x86_64_gnullvm 0.48.0", 3851 + "windows_x86_64_msvc 0.48.0", 3852 + ] 3853 + 3854 + [[package]] 4505 3855 name = "windows_aarch64_gnullvm" 4506 3856 version = "0.42.1" 4507 3857 source = "registry+https://github.com/rust-lang/crates.io-index" 4508 3858 checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 4509 3859 4510 3860 [[package]] 4511 - name = "windows_aarch64_msvc" 4512 - version = "0.36.1" 3861 + name = "windows_aarch64_gnullvm" 3862 + version = "0.48.0" 4513 3863 source = "registry+https://github.com/rust-lang/crates.io-index" 4514 - checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 3864 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 4515 3865 4516 3866 [[package]] 4517 3867 name = "windows_aarch64_msvc" ··· 4520 3870 checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 4521 3871 4522 3872 [[package]] 4523 - name = "windows_i686_gnu" 4524 - version = "0.36.1" 3873 + name = "windows_aarch64_msvc" 3874 + version = "0.48.0" 4525 3875 source = "registry+https://github.com/rust-lang/crates.io-index" 4526 - checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 3876 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 4527 3877 4528 3878 [[package]] 4529 3879 name = "windows_i686_gnu" ··· 4532 3882 checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 4533 3883 4534 3884 [[package]] 4535 - name = "windows_i686_msvc" 4536 - version = "0.36.1" 3885 + name = "windows_i686_gnu" 3886 + version = "0.48.0" 4537 3887 source = "registry+https://github.com/rust-lang/crates.io-index" 4538 - checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 3888 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 4539 3889 4540 3890 [[package]] 4541 3891 name = "windows_i686_msvc" ··· 4544 3894 checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 4545 3895 4546 3896 [[package]] 4547 - name = "windows_x86_64_gnu" 4548 - version = "0.36.1" 3897 + name = "windows_i686_msvc" 3898 + version = "0.48.0" 4549 3899 source = "registry+https://github.com/rust-lang/crates.io-index" 4550 - checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 3900 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 4551 3901 4552 3902 [[package]] 4553 3903 name = "windows_x86_64_gnu" ··· 4556 3906 checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 4557 3907 4558 3908 [[package]] 3909 + name = "windows_x86_64_gnu" 3910 + version = "0.48.0" 3911 + source = "registry+https://github.com/rust-lang/crates.io-index" 3912 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 3913 + 3914 + [[package]] 4559 3915 name = "windows_x86_64_gnullvm" 4560 3916 version = "0.42.1" 4561 3917 source = "registry+https://github.com/rust-lang/crates.io-index" 4562 3918 checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 4563 3919 4564 3920 [[package]] 4565 - name = "windows_x86_64_msvc" 4566 - version = "0.36.1" 3921 + name = "windows_x86_64_gnullvm" 3922 + version = "0.48.0" 4567 3923 source = "registry+https://github.com/rust-lang/crates.io-index" 4568 - checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 3924 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 4569 3925 4570 3926 [[package]] 4571 3927 name = "windows_x86_64_msvc" 4572 3928 version = "0.42.1" 4573 3929 source = "registry+https://github.com/rust-lang/crates.io-index" 4574 3930 checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 3931 + 3932 + [[package]] 3933 + name = "windows_x86_64_msvc" 3934 + version = "0.48.0" 3935 + source = "registry+https://github.com/rust-lang/crates.io-index" 3936 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 4575 3937 4576 3938 [[package]] 4577 3939 name = "winreg" ··· 4594 3956 ] 4595 3957 4596 3958 [[package]] 3959 + name = "wyz" 3960 + version = "0.5.1" 3961 + source = "registry+https://github.com/rust-lang/crates.io-index" 3962 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 3963 + dependencies = [ 3964 + "tap", 3965 + ] 3966 + 3967 + [[package]] 4597 3968 name = "xattr" 4598 3969 version = "0.2.3" 4599 3970 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4603 3974 ] 4604 3975 4605 3976 [[package]] 3977 + name = "yansi" 3978 + version = "0.5.1" 3979 + source = "registry+https://github.com/rust-lang/crates.io-index" 3980 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 3981 + 3982 + [[package]] 4606 3983 name = "zip" 4607 - version = "0.6.2" 3984 + version = "0.6.6" 4608 3985 source = "registry+https://github.com/rust-lang/crates.io-index" 4609 - checksum = "bf225bcf73bb52cbb496e70475c7bd7a3f769df699c0020f6c7bd9a96dcf0b8d" 3986 + checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 4610 3987 dependencies = [ 4611 - "aes 0.7.5", 3988 + "aes", 4612 3989 "byteorder", 4613 3990 "bzip2", 4614 - "constant_time_eq", 3991 + "constant_time_eq 0.1.5", 4615 3992 "crc32fast", 4616 3993 "crossbeam-utils", 4617 3994 "flate2", 4618 - "hmac 0.12.1", 3995 + "hmac", 4619 3996 "pbkdf2", 4620 - "sha1 0.10.1", 4621 - "time 0.3.12", 4622 - "zstd", 3997 + "sha1", 3998 + "time", 3999 + "zstd 0.11.2+zstd.1.5.2", 4000 + ] 4001 + 4002 + [[package]] 4003 + name = "zstd" 4004 + version = "0.11.2+zstd.1.5.2" 4005 + source = "registry+https://github.com/rust-lang/crates.io-index" 4006 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 4007 + dependencies = [ 4008 + "zstd-safe 5.0.2+zstd.1.5.2", 4623 4009 ] 4624 4010 4625 4011 [[package]] 4626 4012 name = "zstd" 4627 - version = "0.10.2+zstd.1.5.2" 4013 + version = "0.12.3+zstd.1.5.2" 4014 + source = "registry+https://github.com/rust-lang/crates.io-index" 4015 + checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" 4016 + dependencies = [ 4017 + "zstd-safe 6.0.5+zstd.1.5.4", 4018 + ] 4019 + 4020 + [[package]] 4021 + name = "zstd-safe" 4022 + version = "5.0.2+zstd.1.5.2" 4628 4023 source = "registry+https://github.com/rust-lang/crates.io-index" 4629 - checksum = "5f4a6bd64f22b5e3e94b4e238669ff9f10815c27a5180108b849d24174a83847" 4024 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 4630 4025 dependencies = [ 4631 - "zstd-safe", 4026 + "libc", 4027 + "zstd-sys", 4632 4028 ] 4633 4029 4634 4030 [[package]] 4635 4031 name = "zstd-safe" 4636 - version = "4.1.6+zstd.1.5.2" 4032 + version = "6.0.5+zstd.1.5.4" 4637 4033 source = "registry+https://github.com/rust-lang/crates.io-index" 4638 - checksum = "94b61c51bb270702d6167b8ce67340d2754b088d0c091b06e593aa772c3ee9bb" 4034 + checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" 4639 4035 dependencies = [ 4640 4036 "libc", 4641 4037 "zstd-sys", ··· 4643 4039 4644 4040 [[package]] 4645 4041 name = "zstd-sys" 4646 - version = "1.6.3+zstd.1.5.2" 4042 + version = "2.0.8+zstd.1.5.5" 4647 4043 source = "registry+https://github.com/rust-lang/crates.io-index" 4648 - checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8" 4044 + checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" 4649 4045 dependencies = [ 4650 4046 "cc", 4651 4047 "libc", 4048 + "pkg-config", 4652 4049 ]
+8 -7
pkgs/tools/networking/edgedb/default.nix
··· 19 19 20 20 rustPlatform.buildRustPackage rec { 21 21 pname = "edgedb"; 22 - version = "2.3.1"; 22 + version = "3.3.0"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "edgedb"; 26 26 repo = "edgedb-cli"; 27 27 rev = "v${version}"; 28 - sha256 = "sha256-iL8tD6cvFVWqsQAk6HBUqdz7MJ3lT2XmExGQvdQdIWs="; 28 + sha256 = "sha256-6uhwuAGZ/XU+eENNo0H7hOdrDDx0fWvPVZAEOm5mdcY="; 29 + fetchSubmodules = true; 29 30 }; 30 31 31 32 cargoLock = { 32 33 lockFile = ./Cargo.lock; 33 34 outputHashes = { 34 - "assert_cmd-1.0.1" = "sha256-0MkQG+JKrZXOn8B8q1HdyhZ1hVVb7dPbGEo/76o2YRc="; 35 - "edgedb-derive-0.4.0" = "sha256-pE/GchC3JDg0E4twmov86byne+rn28JpIawBbZcJHOg="; 36 - "edgeql-parser-0.1.0" = "sha256-e43PBHirALfrxGKi50KvE9aDAunObpXcWNBs62ssgSM="; 37 - "rexpect-0.3.0" = "sha256-0a//fPscEXEwv+73Ja7jRf2eRWfF6VCsck9ZZ15zgog="; 38 - "rustyline-8.0.0" = "sha256-FyMx2nAVaX0pc481BTlNxeR/NfNrr57FWKLS7+EjPVw="; 35 + "edgedb-derive-0.5.0" = "sha256-y/mN0XuJtQBtkLmbk2s7hK5joGEH5Ge6sLCD88WyL9o="; 36 + "indexmap-2.0.0-pre" = "sha256-QMOmoUHE1F/sp+NeDpgRGqqacWLHWG02YgZc5vAdXZY="; 37 + "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; 38 + "edgeql-parser-0.1.0" = "sha256-Y3gXxPuR7qnTL4fu2nZIa3e20YV1fLvm2jHAng+Ke2Q="; 39 + "rustyline-8.0.0" = "sha256-CrICwQbHPzS4QdVIEHxt2euX+g+0pFYe84NfMp1daEc="; 39 40 "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; 40 41 }; 41 42 };
+1 -1
pkgs/tools/nix/cached-nix-shell/default.nix
··· 1 - { lib, fetchFromGitHub, nix, openssl, pkg-config, ronn, rustPlatform }: 1 + { lib, fetchFromGitHub, nix, ronn, rustPlatform }: 2 2 3 3 let 4 4 blake3-src = fetchFromGitHub {
+1 -1
pkgs/tools/nix/manix/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, darwin, Security }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "manix";
+1 -1
pkgs/tools/nix/nixdoc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, rustPlatform, darwin }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, darwin }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "nixdoc";
+2 -2
pkgs/tools/nix/nixos-install-tools/default.nix
··· 63 63 touch $out 64 64 ''; 65 65 }; 66 - }).overrideAttrs (o: { 66 + }).overrideAttrs { 67 67 inherit version; 68 68 pname = "nixos-install-tools"; 69 - }) 69 + }
-2
pkgs/tools/nix/npins/default.nix
··· 1 1 { lib 2 2 , rustPlatform 3 - , fetchFromGitHub 4 - , nix-gitignore 5 3 , makeWrapper 6 4 , stdenv 7 5 , darwin
+2 -2
pkgs/tools/package-management/appimagekit/default.nix
··· 17 17 }; 18 18 19 19 # squashfuse adapted to nix from cmake experession in "${appimagekit_src}/lib/libappimage/cmake/dependencies.cmake" 20 - appimagekit_squashfuse = squashfuse.overrideAttrs (attrs: rec { 20 + appimagekit_squashfuse = squashfuse.overrideAttrs rec { 21 21 pname = "squashfuse"; 22 22 version = "unstable-2016-10-09"; 23 23 ··· 61 61 cp -v ./.libs/*.a $out/lib 62 62 cp -v ./*.h $out/include 63 63 ''; 64 - }); 64 + }; 65 65 66 66 in stdenv.mkDerivation rec { 67 67 pname = "appimagekit";
+1 -1
pkgs/tools/package-management/disnix/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, glib, libxml2, libxslt, getopt, gettext, dysnomia, libintl, libiconv }: 1 + { lib, stdenv, fetchurl, pkg-config, glib, libxml2, libxslt, getopt, dysnomia, libintl, libiconv }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "disnix";
-1
pkgs/tools/package-management/fusesoc/default.nix
··· 4 4 , verilog 5 5 , verilator 6 6 , gnumake 7 - , gcc 8 7 , edalize 9 8 , fastjsonschema 10 9 , pyparsing
+2 -2
pkgs/tools/package-management/home-manager/default.nix
··· 14 14 , unstableGitUpdater 15 15 }: 16 16 17 - stdenvNoCC.mkDerivation (finalAttrs: { 17 + stdenvNoCC.mkDerivation { 18 18 pname = "home-manager"; 19 19 version = "2023-05-30"; 20 20 ··· 89 89 license = lib.licenses.mit; 90 90 maintainers = with lib.maintainers; [ AndersonTorres ]; 91 91 }; 92 - }) 92 + }
+2 -2
pkgs/tools/package-management/nix/default.nix
··· 76 76 aws-sdk-cpp-nix = (aws-sdk-cpp.override { 77 77 apis = [ "s3" "transfer" ]; 78 78 customMemoryManagement = false; 79 - }).overrideAttrs (args: { 79 + }).overrideAttrs { 80 80 # only a stripped down version is build which takes a lot less resources to build 81 81 requiredSystemFeatures = [ ]; 82 - }); 82 + }; 83 83 84 84 85 85 common = args:
+2 -2
pkgs/tools/package-management/pdm/default.nix
··· 13 13 # 3. Ansible being unable to upgrade to a later version of resolvelib 14 14 # see here for more details: https://github.com/NixOS/nixpkgs/pull/155380/files#r786255738 15 15 packageOverrides = self: super: { 16 - resolvelib = super.resolvelib.overridePythonAttrs (attrs: rec { 16 + resolvelib = super.resolvelib.overridePythonAttrs rec { 17 17 version = "1.0.1"; 18 18 src = fetchFromGitHub { 19 19 owner = "sarugaku"; ··· 21 21 rev = "/refs/tags/${version}"; 22 22 hash = "sha256-oxyPn3aFPOyx/2aP7Eg2ThtPbyzrFT1JzWqy6GqNbzM="; 23 23 }; 24 - }); 24 + }; 25 25 }; 26 26 self = python; 27 27 };
+2 -2
pkgs/tools/security/ghidra/build.nix
··· 15 15 let 16 16 pkg_path = "$out/lib/ghidra"; 17 17 pname = "ghidra"; 18 - version = "10.3.1"; 18 + version = "10.3.2"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "NationalSecurityAgency"; 22 22 repo = "Ghidra"; 23 23 rev = "Ghidra_${version}_build"; 24 - hash = "sha256-KYZAu+15rcTkdfVQdKgAlVv3FxREUH0IIgYBb0qjdO8="; 24 + hash = "sha256-CVnEHtSF3DVTH+8qwUsABJq/lRkg6xulEWU+Q5C9ajo="; 25 25 }; 26 26 27 27 gradle = gradle_7;
-2
pkgs/tools/system/collectd/plugins.nix
··· 1 1 { lib, stdenv 2 2 , curl 3 - , darwin 4 3 , hiredis 5 4 , iptables 6 5 , jdk ··· 19 18 , libsigrok 20 19 , libvirt 21 20 , libxml2 22 - , libapparmor, libcap_ng, numactl 23 21 , lua 24 22 , lvm2 25 23 , lm_sensors
+1 -1
pkgs/tools/system/datefudge/default.nix
··· 1 - { stdenv, lib, fetchgit, fetchpatch, makeWrapper, coreutils }: 1 + { lib, stdenv, fetchgit, makeWrapper, coreutils }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "datefudge";
-2
pkgs/tools/system/honcho/default.nix
··· 1 1 { lib, fetchFromGitHub, python3Packages }: 2 2 3 3 let 4 - inherit (python3Packages) python; 5 4 pname = "honcho"; 6 - 7 5 in 8 6 9 7 python3Packages.buildPythonApplication rec {
+1 -2
pkgs/tools/system/hw-probe/default.nix
··· 1 - { config 1 + { lib 2 2 , stdenv 3 - , lib 4 3 , fetchFromGitHub 5 4 , makeWrapper 6 5 , makePerlPath
+2 -3
pkgs/tools/system/kanata/default.nix
··· 1 - { fetchFromGitHub 2 - , fetchpatch 3 - , lib 1 + { lib 4 2 , rustPlatform 3 + , fetchFromGitHub 5 4 , withCmd ? false 6 5 }: 7 6
+1 -1
pkgs/tools/system/minijail/tools.nix
··· 1 - { lib, stdenv, buildPythonApplication, pkgsBuildTarget, python, minijail }: 1 + { lib, buildPythonApplication, pkgsBuildTarget, python, minijail }: 2 2 3 3 let 4 4 targetClang = pkgsBuildTarget.targetPackages.clangStdenv.cc;
-1
pkgs/tools/system/proot/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , talloc 3 3 , pkg-config 4 - , git 5 4 , ncurses 6 5 , docutils, swig, python3, coreutils, enablePython ? true }: 7 6
-1
pkgs/tools/system/s0ix-selftest-tool/default.nix
··· 12 12 pciutils, 13 13 powertop, 14 14 resholve, 15 - stdenv, 16 15 util-linux, 17 16 xorg, 18 17 xxd,
+4 -3
pkgs/tools/text/vale/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vale"; 5 - version = "2.28.0"; 5 + version = "2.28.1"; 6 6 7 7 subPackages = [ "cmd/vale" ]; 8 8 outputs = [ "out" "data" ]; ··· 11 11 owner = "errata-ai"; 12 12 repo = "vale"; 13 13 rev = "v${version}"; 14 - hash = "sha256-AalZFc2GGIA7CV3+OGEmNZEQk0OUsbfQDq8d3Z708XU="; 14 + hash = "sha256-40JCZo7wxI2ysquW/r+LEcC+TUdmBEHak8b3AcmNq4c="; 15 15 }; 16 16 17 17 vendorHash = "sha256-KB1mRWDYejc38tUv316MiGfmq2riNnpEMIUpjgfSasU="; ··· 27 27 doCheck = false; 28 28 29 29 meta = with lib; { 30 + description = "A syntax-aware linter for prose built with speed and extensibility in mind"; 30 31 homepage = "https://vale.sh/"; 31 - description = "A syntax-aware linter for prose built with speed and extensibility in mind"; 32 + changelog = "https://github.com/errata-ai/vale/releases/tag/v${version}"; 32 33 license = licenses.mit; 33 34 maintainers = [ maintainers.marsam ]; 34 35 };
+6
pkgs/top-level/all-packages.nix
··· 10265 10265 10266 10266 lmp = callPackage ../tools/security/lmp { }; 10267 10267 10268 + localproxy = callPackage ../applications/networking/localproxy { }; 10269 + 10268 10270 localstack = with python3Packages; toPythonApplication localstack; 10269 10271 10270 10272 localtime = callPackage ../tools/system/localtime { }; ··· 10606 10608 mosh = callPackage ../tools/networking/mosh { }; 10607 10609 10608 10610 motrix = callPackage ../tools/networking/motrix { }; 10611 + 10612 + mount-zip = callPackage ../tools/filesystems/mount-zip { }; 10609 10613 10610 10614 mpage = callPackage ../tools/text/mpage { }; 10611 10615 ··· 28794 28798 baekmuk-ttf = callPackage ../data/fonts/baekmuk-ttf { }; 28795 28799 28796 28800 bakoma_ttf = callPackage ../data/fonts/bakoma-ttf { }; 28801 + 28802 + banana-cursor = callPackage ../data/icons/banana-cursor { }; 28797 28803 28798 28804 barlow = callPackage ../data/fonts/barlow { }; 28799 28805