From 94847c9734c654abd493546e3643c6fb86c0eb11 Mon Sep 17 00:00:00 2001 From: Olivia Crain Date: Tue, 23 Jan 2024 14:24:21 -0600 Subject: [PATCH 01/99] fftwQuad: Mark unsupported on aarch64 https://gcc.gnu.org/onlinedocs/gcc/Floating-Types.html https://fftw.org/fftw3_doc/Precision.html Building fftw with quad precision requires libquadmath via gfortran. On aarch64, libquadmath is not supported due to GCC's __float128 type not being supported on that platform. Co-authored-by: Sandro --- pkgs/development/libraries/fftw/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/fftw/default.nix b/pkgs/development/libraries/fftw/default.nix index 7c06a346e4bb..86cdb8107eb2 100644 --- a/pkgs/development/libraries/fftw/default.nix +++ b/pkgs/development/libraries/fftw/default.nix @@ -85,5 +85,7 @@ stdenv.mkDerivation (finalAttrs: { }.${precision} ]; platforms = platforms.unix; + # quad-precision requires libquadmath from gfortran, but libquadmath is not supported on aarch64 + badPlatforms = lib.optionals (precision == "quad-precision") platforms.aarch64; }; }) From 33c81414f70fbc5a4aeb24da5c90b080ca77a961 Mon Sep 17 00:00:00 2001 From: Luna Date: Wed, 17 Apr 2024 21:05:52 -0700 Subject: [PATCH 02/99] maintainers: add luna_1024 --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 4e26b5fd8768..7b0c99fe4f85 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -11932,6 +11932,12 @@ githubId = 26020062; name = "lumi"; }; + luna_1024 = { + email = "contact@luna.computer"; + github = "luna-1024"; + githubId = 7243615; + name = "Luna"; + }; lunarequest = { email = "nullarequest@vivlaid.net"; github = "Lunarequest"; From a2a19c2144df4594071b109a95f8765035cd7fcb Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 21 Apr 2024 12:14:05 -0700 Subject: [PATCH 03/99] cups-brother-hl3170cdw: init at 1.1.4-0 --- .../cu/cups-brother-hl3170cdw/package.nix | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix diff --git a/pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix b/pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix new file mode 100644 index 000000000000..5450997a5afc --- /dev/null +++ b/pkgs/by-name/cu/cups-brother-hl3170cdw/package.nix @@ -0,0 +1,111 @@ +{lib, stdenv, fetchurl, dpkg, makeWrapper, gnused, coreutils, psutils, gnugrep, ghostscript, file, a2ps, gawk, which, pkgsi686Linux }: + +stdenv.mkDerivation rec { + pname = "cups-brother-${model}"; + version = "1.1.4-0"; + lprVersion = "1.1.2-1"; + + model = "hl3170cdw"; + cupsFileNo = "006743"; + lprFileNo = "007056"; + + src = fetchurl { + url = "https://download.brother.com/welcome/dlf${cupsFileNo}/${model}_cupswrapper_GPL_source_${version}.tar.gz"; + hash = "sha256-E3GSwiMRkuiCIJYkDozoYUPfOqvopPqPPQt1uaMDEAU="; + }; + + lprdeb = fetchurl { + url = "https://download.brother.com/welcome/dlf${lprFileNo}/${model}lpr-${lprVersion}.i386.deb"; + hash = "sha256-N1GjQHth5k4qhbfWLInzub9DcNsee4gKc3EW2WIfrko="; + }; + + nativeBuildInputs = [ makeWrapper dpkg ]; + + preUnpack = '' + dpkg-deb -x ${lprdeb} $out + ''; + + prePatch = '' + substituteInPlace brcupsconfig/brcups_commands.h \ + --replace-fail "brprintconf[30]=\"" "brprintconf[130]=\"$out/usr/bin/" + + substituteInPlace brcupsconfig/brcupsconfig.c \ + --replace-fail "exec[300]" "exec[400]" + ''; + + makeFlags = [ "-C brcupsconfig" ]; + + installPhase = '' + runHook preInstall + + # cups install + dir=$out/opt/brother/Printers/${model} + + # Extract the true brother_lpdwrapper_MODEL filter embedded in cupswrapperMODEL by + # slicing out the relevant parts for the writing the embedded file, then running that. + sed -n -e '/tmp_filter=/c\tmp_filter=lpdwrapper' -e ' 1,/device_model=/p ; /< lpdwrapperbuilder + sh lpdwrapperbuilder + chmod +x lpdwrapper + mkdir -p $out/lib/cups/filter + cp lpdwrapper $out/lib/cups/filter/brother_lpdwrapper_${model} + + mkdir -p $out/share/cups/model/Brother + cp PPD/brother_${model}_printer_en.ppd $out/share/cups/model/Brother/brother_${model}_printer_en.ppd + + mkdir -p $dir/cupswrapper/ + cp brcupsconfig/brcupsconfpt1 $dir/cupswrapper/ + + runHook postInstall + ''; + + preFixup = '' + # lpr fixup + interpreter=${pkgsi686Linux.glibc.out}/lib/ld-linux.so.2 + + substituteInPlace $dir/lpd/filter${model} \ + --replace-fail /opt "$out/opt" + substituteInPlace $dir/inf/setupPrintcapij \ + --replace-fail /opt "$out/opt" \ + --replace-fail printcap.local printcap + + wrapProgram $dir/lpd/filter${model} \ + --prefix PATH ":" ${ lib.makeBinPath [ ghostscript a2ps file gnused coreutils ] } + + wrapProgram $dir/inf/setupPrintcapij \ + --prefix PATH ":" ${ lib.makeBinPath [ coreutils gnused ] } + + wrapProgram $dir/lpd/psconvertij2 \ + --prefix PATH ":" ${ lib.makeBinPath [ ghostscript gnused coreutils gawk which ] } + + patchelf --set-interpreter "$interpreter" "$dir/lpd/br${model}filter" + patchelf --set-interpreter "$interpreter" "$out/usr/bin/brprintconf_${model}" + + wrapProgram $dir/lpd/br${model}filter \ + --set LD_PRELOAD "${pkgsi686Linux.libredirect}/lib/libredirect.so" \ + --set NIX_REDIRECTS "/opt=$out/opt" + + wrapProgram $out/usr/bin/brprintconf_${model} \ + --set LD_PRELOAD "${pkgsi686Linux.libredirect}/lib/libredirect.so" \ + --set NIX_REDIRECTS "/opt=$out/opt" + + # cups fixup + substituteInPlace $out/lib/cups/filter/brother_lpdwrapper_${model} \ + --replace-fail /opt/brother/Printers/${model} "$dir" \ + --replace-fail /usr/bin/psnup "${psutils}/bin/psnup" \ + --replace-fail /usr/share/cups/model/Brother "$out/share/cups/model/Brother" + + wrapProgram $out/lib/cups/filter/brother_lpdwrapper_${model} \ + --prefix PATH ":" ${ lib.makeBinPath [ coreutils psutils gnused gnugrep ] } + ''; + + meta = with lib; { + homepage = "https://www.brother.com/"; + description = "Brother ${model} printer driver"; + sourceProvenance = with sourceTypes; [ binaryNativeCode fromSource ]; + license = with licenses; [ unfree gpl2Plus ]; + platforms = [ "x86_64-linux" "i686-linux" ]; + downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=${model}_all&os=128"; + maintainers = with maintainers; [ luna_1024 ]; + }; +} From 94b71765fc45f726163720c3d7261348082c986a Mon Sep 17 00:00:00 2001 From: Yaya Date: Thu, 22 Aug 2024 11:01:44 +0200 Subject: [PATCH 04/99] pocket-casts: 0.7.0 -> 0.8.0 https://github.com/FelicianoTech/pocket-casts-desktop-app/releases/tag/v0.8.0 --- pkgs/applications/audio/pocket-casts/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/pocket-casts/default.nix b/pkgs/applications/audio/pocket-casts/default.nix index 8777f0bb5402..ff45aab23c34 100644 --- a/pkgs/applications/audio/pocket-casts/default.nix +++ b/pkgs/applications/audio/pocket-casts/default.nix @@ -9,16 +9,16 @@ buildNpmPackage rec { pname = "pocket-casts"; - version = "0.7.0"; + version = "0.8.0"; src = fetchFromGitHub { owner = "felicianotech"; repo = "pocket-casts-desktop-app"; rev = "v${version}"; - hash = "sha256-d4uVeHy4/91Ki6Wk6GlOt2lcK6U+M7fOryiOYA7q/x4="; + hash = "sha256-PwM9B2Qx4TxlcahQM/KEBTzWKc4cNrleDEYKg0m8bVE="; }; - npmDepsHash = "sha256-rMLUQGcbBJBbxXP67lXp0ww8U2HYM/m1CP2dOw1cCHc="; + npmDepsHash = "sha256-WPuXTcHCKrwepITGtZFCIwylVAdYlI3cNsuhqx1AEYI="; env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 52c919fd9c64..ba1bfb14c653 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5925,7 +5925,7 @@ with pkgs; pn = callPackage ../tools/text/pn { }; pocket-casts = callPackage ../applications/audio/pocket-casts { - electron = electron_27; + electron = electron_31; }; portal = callPackage ../tools/misc/portal { }; From 1d750cd8a267326f777d6b6552977bd4f74eed55 Mon Sep 17 00:00:00 2001 From: Yaya Date: Thu, 22 Aug 2024 11:02:58 +0200 Subject: [PATCH 05/99] pocket-casts: add yayayayaka to maintainers --- pkgs/applications/audio/pocket-casts/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/pocket-casts/default.nix b/pkgs/applications/audio/pocket-casts/default.nix index ff45aab23c34..ca5d25dd6a73 100644 --- a/pkgs/applications/audio/pocket-casts/default.nix +++ b/pkgs/applications/audio/pocket-casts/default.nix @@ -52,7 +52,7 @@ buildNpmPackage rec { description = "Pocket Casts webapp, packaged for the Linux Desktop"; homepage = "https://github.com/felicianotech/pocket-casts-desktop-app"; license = licenses.mit; - maintainers = [ ]; + maintainers = with maintainers; [ yayayayaka ]; mainProgram = "pocket-casts"; platforms = platforms.linux; }; From 90ba2b10c91303f76391c92b2936260adb843a1c Mon Sep 17 00:00:00 2001 From: tilpner Date: Wed, 25 Sep 2024 22:40:44 +0200 Subject: [PATCH 06/99] vivictpp: move to pkgs/by-name --- .../vivictpp/default.nix => by-name/vi/vivictpp/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 2 deletions(-) rename pkgs/{applications/video/vivictpp/default.nix => by-name/vi/vivictpp/package.nix} (100%) diff --git a/pkgs/applications/video/vivictpp/default.nix b/pkgs/by-name/vi/vivictpp/package.nix similarity index 100% rename from pkgs/applications/video/vivictpp/default.nix rename to pkgs/by-name/vi/vivictpp/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bca02a560764..e545c5f7af08 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -33669,8 +33669,6 @@ with pkgs; else null; }; - vivictpp = callPackage ../applications/video/vivictpp { }; - primusLib = callPackage ../tools/X11/primus/lib.nix { nvidia_x11 = linuxPackages.nvidia_x11.override { libsOnly = true; }; }; From 58494bfe4617939610d76a59e49943cb0a5c5e95 Mon Sep 17 00:00:00 2001 From: tilpner Date: Wed, 25 Sep 2024 22:41:33 +0200 Subject: [PATCH 07/99] vivictpp: 1.0.0 -> 1.1.0 --- pkgs/by-name/vi/vivictpp/package.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/vi/vivictpp/package.nix b/pkgs/by-name/vi/vivictpp/package.nix index 114718177afe..5dd777995ba2 100644 --- a/pkgs/by-name/vi/vivictpp/package.nix +++ b/pkgs/by-name/vi/vivictpp/package.nix @@ -4,10 +4,11 @@ , SDL2, SDL2_ttf , freetype, harfbuzz , ffmpeg -, cacert }: +, cacert +, zlib }: let - version = "1.0.0"; + version = "1.1.0"; withSubprojects = stdenv.mkDerivation { name = "sources-with-subprojects"; @@ -15,7 +16,7 @@ let owner = "vivictorg"; repo = "vivictpp"; rev = "v${version}"; - hash = "sha256-dCtMjemEjXe63ELAfQhzJl3GecqWLcjL2y5Htn6hYgU="; + hash = "sha256-ScuCOmcK714YXEHncizwj6EWdiNIJA1xRMn5gfmg4K4="; }; nativeBuildInputs = [ @@ -33,9 +34,9 @@ let ''; outputHashMode = "recursive"; - outputHash = "sha256-a7NBQJt5T+KwP8Djc8TQiVLNZF8UcXlXrv2G/dZ54aM="; + outputHash = "sha256-/6nuTKjQEXfJlHkTkeX/A4PeGb8SOk6Q801gjx1SB6M="; }; -in stdenv.mkDerivation rec { +in stdenv.mkDerivation { pname = "vivictpp"; inherit version; @@ -57,6 +58,7 @@ in stdenv.mkDerivation rec { freetype harfbuzz ffmpeg + zlib ]; preConfigure = '' From b0887160e48a2d83eadc949e6af60cdc92f57f97 Mon Sep 17 00:00:00 2001 From: qubitnano <146656568+qubitnano@users.noreply.github.com> Date: Tue, 10 Sep 2024 20:58:14 -0400 Subject: [PATCH 08/99] eduke32: migrate to pkgs/by-name --- pkgs/{games => by-name/ed}/eduke32/convert-bmp-to-png.diff | 0 .../eduke32/default.nix => by-name/ed/eduke32/package.nix} | 6 ++---- pkgs/top-level/all-packages.nix | 4 ---- 3 files changed, 2 insertions(+), 8 deletions(-) rename pkgs/{games => by-name/ed}/eduke32/convert-bmp-to-png.diff (100%) rename pkgs/{games/eduke32/default.nix => by-name/ed/eduke32/package.nix} (98%) diff --git a/pkgs/games/eduke32/convert-bmp-to-png.diff b/pkgs/by-name/ed/eduke32/convert-bmp-to-png.diff similarity index 100% rename from pkgs/games/eduke32/convert-bmp-to-png.diff rename to pkgs/by-name/ed/eduke32/convert-bmp-to-png.diff diff --git a/pkgs/games/eduke32/default.nix b/pkgs/by-name/ed/eduke32/package.nix similarity index 98% rename from pkgs/games/eduke32/default.nix rename to pkgs/by-name/ed/eduke32/package.nix index c213a6317b10..7c0f05c79784 100644 --- a/pkgs/games/eduke32/default.nix +++ b/pkgs/by-name/ed/eduke32/package.nix @@ -14,14 +14,12 @@ , libGL , SDL2 , SDL2_mixer -, AGL -, Cocoa -, GLUT -, OpenGL +, darwin , graphicsmagick }: let + inherit (darwin.apple_sdk.frameworks) AGL Cocoa GLUT OpenGL; wrapper = "eduke32-wrapper"; swWrapper = "voidsw-wrapper"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d80d39bedd7..9d7f987e2f7d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -34970,10 +34970,6 @@ with pkgs; ecwolf = callPackage ../games/ecwolf { }; - eduke32 = callPackage ../games/eduke32 { - inherit (darwin.apple_sdk.frameworks) AGL Cocoa GLUT OpenGL; - }; - egoboo = callPackage ../games/egoboo { }; eidolon = callPackage ../games/eidolon { }; From adabe50db8a31303534bc44a105f69e7e89986a9 Mon Sep 17 00:00:00 2001 From: qubitnano <146656568+qubitnano@users.noreply.github.com> Date: Tue, 10 Sep 2024 21:00:51 -0400 Subject: [PATCH 09/99] eduke32: format with nixfmt-rfc-style --- pkgs/by-name/ed/eduke32/package.nix | 191 +++++++++++++++------------- 1 file changed, 106 insertions(+), 85 deletions(-) diff --git a/pkgs/by-name/ed/eduke32/package.nix b/pkgs/by-name/ed/eduke32/package.nix index 7c0f05c79784..0d40d52a49c5 100644 --- a/pkgs/by-name/ed/eduke32/package.nix +++ b/pkgs/by-name/ed/eduke32/package.nix @@ -1,29 +1,36 @@ -{ lib -, stdenv -, fetchFromGitLab -, makeWrapper -, pkg-config -, nasm -, makeDesktopItem -, copyDesktopItems -, alsa-lib -, flac -, gtk2 -, libvorbis -, libvpx -, libGL -, SDL2 -, SDL2_mixer -, darwin -, graphicsmagick +{ + lib, + stdenv, + fetchFromGitLab, + makeWrapper, + pkg-config, + nasm, + makeDesktopItem, + copyDesktopItems, + alsa-lib, + flac, + gtk2, + libvorbis, + libvpx, + libGL, + SDL2, + SDL2_mixer, + darwin, + graphicsmagick, }: let - inherit (darwin.apple_sdk.frameworks) AGL Cocoa GLUT OpenGL; + inherit (darwin.apple_sdk.frameworks) + AGL + Cocoa + GLUT + OpenGL + ; wrapper = "eduke32-wrapper"; swWrapper = "voidsw-wrapper"; -in stdenv.mkDerivation (finalAttrs: { +in +stdenv.mkDerivation (finalAttrs: { pname = "eduke32"; version = "0-unstable-2024-02-17"; @@ -41,43 +48,50 @@ in stdenv.mkDerivation (finalAttrs: { ./convert-bmp-to-png.diff ]; - buildInputs = [ - flac - libvorbis - libvpx - SDL2 - SDL2_mixer - ] ++ lib.optionals stdenv.hostPlatform.isLinux [ - alsa-lib - gtk2 - libGL - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ - AGL - Cocoa - GLUT - OpenGL - ]; + buildInputs = + [ + flac + libvorbis + libvpx + SDL2 + SDL2_mixer + ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ + alsa-lib + gtk2 + libGL + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + AGL + Cocoa + GLUT + OpenGL + ]; - nativeBuildInputs = [ - makeWrapper - pkg-config - copyDesktopItems - graphicsmagick - ] ++ lib.optionals (stdenv.hostPlatform.system == "i686-linux") [ - nasm - ]; + nativeBuildInputs = + [ + makeWrapper + pkg-config + copyDesktopItems + graphicsmagick + ] + ++ lib.optionals (stdenv.hostPlatform.system == "i686-linux") [ + nasm + ]; - postPatch = '' - substituteInPlace source/imgui/src/imgui_impl_sdl2.cpp \ - --replace-fail '#include ' '#include ' \ - --replace-fail '#include ' '#include ' \ - --replace-fail '#include ' '#include ' - '' + lib.optionalString stdenv.hostPlatform.isLinux '' - for f in glad.c glad_wgl.c ; do - substituteInPlace source/glad/src/$f \ - --replace-fail libGL.so ${libGL}/lib/libGL.so - done - ''; + postPatch = + '' + substituteInPlace source/imgui/src/imgui_impl_sdl2.cpp \ + --replace-fail '#include ' '#include ' \ + --replace-fail '#include ' '#include ' \ + --replace-fail '#include ' '#include ' + '' + + lib.optionalString stdenv.hostPlatform.isLinux '' + for f in glad.c glad_wgl.c ; do + substituteInPlace source/glad/src/$f \ + --replace-fail libGL.so ${libGL}/lib/libGL.so + done + ''; makeFlags = [ "SDLCONFIG=${SDL2}/bin/sdl2-config" @@ -111,44 +125,51 @@ in stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - installPhase = '' - runHook preInstall + installPhase = + '' + runHook preInstall - install -Dm755 -t $out/bin eduke32 mapster32 voidsw wangulator - '' + lib.optionalString stdenv.hostPlatform.isLinux '' - makeWrapper $out/bin/eduke32 $out/bin/${wrapper} \ - --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ - --add-flags '-g "$EDUKE32_DATA_DIR/DUKE3D.GRP"' - makeWrapper $out/bin/voidsw $out/bin/${swWrapper} \ - --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ - --add-flags '-g"$EDUKE32_DATA_DIR/SW.GRP"' - mkdir -p $out/share/icons/hicolor/scalable/apps - gm convert "./source/duke3d/rsrc/game_icon.ico[10]" $out/share/icons/hicolor/scalable/apps/eduke32.png - install -Dm644 ./source/sw/rsrc/game_icon.svg $out/share/icons/hicolor/scalable/apps/voidsw.svg - '' + lib.optionalString stdenv.hostPlatform.isDarwin '' - mkdir -p $out/Applications/EDuke32.app/Contents/MacOS - mkdir -p $out/Applications/Mapster32.app/Contents/MacOS - mkdir -p $out/Applications/VoidSW.app/Contents/MacOS - mkdir -p $out/Applications/Wangulator.app/Contents/MacOS + install -Dm755 -t $out/bin eduke32 mapster32 voidsw wangulator + '' + + lib.optionalString stdenv.hostPlatform.isLinux '' + makeWrapper $out/bin/eduke32 $out/bin/${wrapper} \ + --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ + --add-flags '-g "$EDUKE32_DATA_DIR/DUKE3D.GRP"' + makeWrapper $out/bin/voidsw $out/bin/${swWrapper} \ + --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ + --add-flags '-g"$EDUKE32_DATA_DIR/SW.GRP"' + mkdir -p $out/share/icons/hicolor/scalable/apps + gm convert "./source/duke3d/rsrc/game_icon.ico[10]" $out/share/icons/hicolor/scalable/apps/eduke32.png + install -Dm644 ./source/sw/rsrc/game_icon.svg $out/share/icons/hicolor/scalable/apps/voidsw.svg + '' + + lib.optionalString stdenv.hostPlatform.isDarwin '' + mkdir -p $out/Applications/EDuke32.app/Contents/MacOS + mkdir -p $out/Applications/Mapster32.app/Contents/MacOS + mkdir -p $out/Applications/VoidSW.app/Contents/MacOS + mkdir -p $out/Applications/Wangulator.app/Contents/MacOS - cp -r platform/Apple/bundles/EDuke32.app/* $out/Applications/EDuke32.app/ - cp -r platform/Apple/bundles/Mapster32.app/* $out/Applications/Mapster32.app/ - cp -r platform/Apple/bundles/VoidSW.app/* $out/Applications/VoidSW.app/ - cp -r platform/Apple/bundles/Wangulator.app/* $out/Applications/Wangulator.app/ + cp -r platform/Apple/bundles/EDuke32.app/* $out/Applications/EDuke32.app/ + cp -r platform/Apple/bundles/Mapster32.app/* $out/Applications/Mapster32.app/ + cp -r platform/Apple/bundles/VoidSW.app/* $out/Applications/VoidSW.app/ + cp -r platform/Apple/bundles/Wangulator.app/* $out/Applications/Wangulator.app/ - ln -sf $out/bin/eduke32 $out/Applications/EDuke32.app/Contents/MacOS/eduke32 - ln -sf $out/bin/mapster32 $out/Applications/Mapster32.app/Contents/MacOS/mapster32 - ln -sf $out/bin/voidsw $out/Applications/VoidSW.app/Contents/MacOS/voidsw - ln -sf $out/bin/wangulator $out/Applications/Wangulator.app/Contents/MacOS/wangulator - '' + '' - runHook postInstall - ''; + ln -sf $out/bin/eduke32 $out/Applications/EDuke32.app/Contents/MacOS/eduke32 + ln -sf $out/bin/mapster32 $out/Applications/Mapster32.app/Contents/MacOS/mapster32 + ln -sf $out/bin/voidsw $out/Applications/VoidSW.app/Contents/MacOS/voidsw + ln -sf $out/bin/wangulator $out/Applications/Wangulator.app/Contents/MacOS/wangulator + '' + + '' + runHook postInstall + ''; meta = { description = "Enhanched port of Duke Nukem 3D for various platforms"; homepage = "http://eduke32.com"; license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ mikroskeem sander ]; + maintainers = with lib.maintainers; [ + mikroskeem + sander + ]; platforms = lib.platforms.all; }; }) From 28519824242bfed738ffb7cd35b4eb180f1f7018 Mon Sep 17 00:00:00 2001 From: qubitnano <146656568+qubitnano@users.noreply.github.com> Date: Tue, 10 Sep 2024 21:03:44 -0400 Subject: [PATCH 10/99] eduke32: 0-unstable-2024-02-17 -> 0-unstable-2024-07-26 --- pkgs/by-name/ed/eduke32/package.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ed/eduke32/package.nix b/pkgs/by-name/ed/eduke32/package.nix index 0d40d52a49c5..204f4777abcc 100644 --- a/pkgs/by-name/ed/eduke32/package.nix +++ b/pkgs/by-name/ed/eduke32/package.nix @@ -32,14 +32,14 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "eduke32"; - version = "0-unstable-2024-02-17"; + version = "0-unstable-2024-07-26"; src = fetchFromGitLab { domain = "voidpoint.io"; owner = "terminx"; repo = "eduke32"; - rev = "8afa42e388e0434b38979fdddc763363717a2727"; - hash = "sha256-dyZ4JtDBxsTDe9uQDWxJe7M74X7m+5wpEHm+i+s9hwo="; + rev = "19c21b9ab10b0c17147c9ad951cc15279ed33f77"; + hash = "sha256-lwnx2tVjbHouB0vaT7Dh1Ozea8+7Az6e4Wn6HmxDxCo="; }; patches = [ @@ -95,6 +95,10 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "SDLCONFIG=${SDL2}/bin/sdl2-config" + # git rev-list --count HEAD + "VC_REV=10593" + "VC_HASH=${lib.substring 0 9 finalAttrs.src.rev}" + "VC_BRANCH=master" ]; buildFlags = [ From daf926d0e34044f4cad7cb193dd7c83593937cca Mon Sep 17 00:00:00 2001 From: qubitnano <146656568+qubitnano@users.noreply.github.com> Date: Sun, 12 May 2024 18:02:05 -0400 Subject: [PATCH 11/99] eduke32: add ion fury and fix wrappers - Add ion fury wrapper and desktop icon - Set GRP file per wrapper so when it traverses looking for games it will force to load the correct one --- pkgs/by-name/ed/eduke32/package.nix | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ed/eduke32/package.nix b/pkgs/by-name/ed/eduke32/package.nix index 204f4777abcc..afe062d3210f 100644 --- a/pkgs/by-name/ed/eduke32/package.nix +++ b/pkgs/by-name/ed/eduke32/package.nix @@ -28,6 +28,7 @@ let ; wrapper = "eduke32-wrapper"; swWrapper = "voidsw-wrapper"; + furyWrapper = "fury-wrapper"; in stdenv.mkDerivation (finalAttrs: { @@ -125,6 +126,15 @@ stdenv.mkDerivation (finalAttrs: { genericName = "Shadow Warrior source port"; categories = [ "Game" ]; }) + (makeDesktopItem { + name = "fury"; + icon = "fury"; + exec = "${furyWrapper}"; + comment = "Ion Fury eduke32 source port"; + desktopName = "Ion Fury"; + genericName = "Ion Fury source port"; + categories = [ "Game" ]; + }) ]; enableParallelBuilding = true; @@ -138,13 +148,19 @@ stdenv.mkDerivation (finalAttrs: { + lib.optionalString stdenv.hostPlatform.isLinux '' makeWrapper $out/bin/eduke32 $out/bin/${wrapper} \ --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ - --add-flags '-g "$EDUKE32_DATA_DIR/DUKE3D.GRP"' + --add-flags '-j"$EDUKE32_DATA_DIR"' \ + --add-flags '-gamegrp DUKE3D.GRP' makeWrapper $out/bin/voidsw $out/bin/${swWrapper} \ --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ - --add-flags '-g"$EDUKE32_DATA_DIR/SW.GRP"' + --add-flags '-j"$EDUKE32_DATA_DIR"' + makeWrapper $out/bin/eduke32 $out/bin/${furyWrapper} \ + --set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \ + --add-flags '-j"$EDUKE32_DATA_DIR"' \ + --add-flags '-gamegrp FURY.GRP' mkdir -p $out/share/icons/hicolor/scalable/apps gm convert "./source/duke3d/rsrc/game_icon.ico[10]" $out/share/icons/hicolor/scalable/apps/eduke32.png install -Dm644 ./source/sw/rsrc/game_icon.svg $out/share/icons/hicolor/scalable/apps/voidsw.svg + gm convert "./source/duke3d/rsrc/fury/game_icon.ico[4]" $out/share/icons/hicolor/scalable/apps/fury.png '' + lib.optionalString stdenv.hostPlatform.isDarwin '' mkdir -p $out/Applications/EDuke32.app/Contents/MacOS From 435828e33ce7a77d542fd58ff45e4cb961acff15 Mon Sep 17 00:00:00 2001 From: qubitnano <146656568+qubitnano@users.noreply.github.com> Date: Thu, 16 May 2024 17:36:49 -0400 Subject: [PATCH 12/99] eduke32: remove mikroskeem, add qubitnano to maintainers removal per request --- pkgs/by-name/ed/eduke32/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ed/eduke32/package.nix b/pkgs/by-name/ed/eduke32/package.nix index afe062d3210f..673e38d05875 100644 --- a/pkgs/by-name/ed/eduke32/package.nix +++ b/pkgs/by-name/ed/eduke32/package.nix @@ -187,7 +187,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "http://eduke32.com"; license = with lib.licenses; [ gpl2Plus ]; maintainers = with lib.maintainers; [ - mikroskeem + qubitnano sander ]; platforms = lib.platforms.all; From 818180957da96bc6f358591a123157a9e36f6cdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Bori?= Date: Thu, 3 Oct 2024 18:15:29 +0200 Subject: [PATCH 13/99] maintainers: add melon --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5c51a0805dfd..27553b18f0cf 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -13515,6 +13515,12 @@ githubId = 1215331; name = "Matt Melling"; }; + melon = { + email = "melontime05@gmail.com"; + github = "BlaiZephyr"; + githubId = 101197249; + name = "Tim"; + }; melsigl = { email = "melanie.bianca.sigl@gmail.com"; github = "melsigl"; From 62922959f68591eb74f10708d9ad36639bb87e0e Mon Sep 17 00:00:00 2001 From: dflores1 Date: Wed, 9 Oct 2024 23:18:33 +0200 Subject: [PATCH 14/99] bustools: init at 0.44.0 bustools: nixfmt --- pkgs/by-name/bu/bustools/package.nix | 44 ++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 pkgs/by-name/bu/bustools/package.nix diff --git a/pkgs/by-name/bu/bustools/package.nix b/pkgs/by-name/bu/bustools/package.nix new file mode 100644 index 000000000000..c5b777073078 --- /dev/null +++ b/pkgs/by-name/bu/bustools/package.nix @@ -0,0 +1,44 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + zlib, + testers, + bustools, +}: + +stdenv.mkDerivation rec { + pname = "bustools"; + version = "0.44.0"; + + src = fetchFromGitHub { + owner = "BUStools"; + repo = "bustools"; + rev = "v${version}"; + sha256 = "sha256-chdHwwnhHFGJLu4KZmFJp3SZ26GFnbelm3Qz0yeKoBs="; + }; + + nativeBuildInputs = [ cmake ]; + + buildInputs = [ zlib ]; + + passthru.tests.version = testers.testVersion { + package = bustools; + command = "bustools version"; + }; + + meta = { + description = "bustools is a program for manipulating BUS files for single cell RNA-Seq datasets"; + longDescription = '' + bustools is a program for manipulating BUS files for single cell RNA-Seq datasets. It can be used to error correct barcodes, collapse UMIs, produce gene count or transcript compatibility count matrices, and is useful for many other tasks. It is also part of the kallisto | bustools workflow for pre-processing single-cell RNA-seq data. + ''; + homepage = "https://www.kallistobus.tools/"; + downloadPage = "https://bustools.github.io/download"; + changelog = "https://github.com/BUStools/bustools/releases/tag/v${version}"; + maintainers = [ lib.maintainers.dflores ]; + license = lib.licenses.bsd2; + mainProgram = "bustools"; + platforms = lib.platforms.unix; + }; +} From 7b3261b5a60a7721249abc01a1fbb0cad552ff5e Mon Sep 17 00:00:00 2001 From: Mikael Voss Date: Thu, 10 Oct 2024 16:07:36 +0200 Subject: [PATCH 15/99] nixos/pam: Strip config in documentation and messages config can be assumed as the options root and is therefore redundant. --- nixos/modules/security/pam.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix index acd0673877b8..e50038ecbec9 100644 --- a/nixos/modules/security/pam.nix +++ b/nixos/modules/security/pam.nix @@ -1168,8 +1168,7 @@ in If set, users can authenticate with their Kerberos password. This requires a valid Kerberos configuration - (`config.security.krb5.enable` should be set to - `true`). + (`security.krb5.enable` should be set to `true`). Note that the Kerberos PAM modules are not necessary when using SSS to handle Kerberos authentication. @@ -1587,8 +1586,8 @@ in warnings = lib.optional (with config.security.pam.sshAgentAuth; - enable && lib.any (s: lib.hasPrefix "%h" s || lib.hasPrefix "~" s) authorizedKeysFiles) - ''config.security.pam.sshAgentAuth.authorizedKeysFiles contains files in the user's home directory. + enable && lib.any (s: lib.hasPrefix "%h" s || lib.hasPrefix "~" s) authorizedKeysFiles) '' + security.pam.sshAgentAuth.authorizedKeysFiles contains files in the user's home directory. Specifying user-writeable files there result in an insecure configuration: a malicious process can then edit such an authorized_keys file and bypass the ssh-agent-based authentication. From 762a9d42a10f6dd135b39af68f817c4ab140b743 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 13 Aug 2024 22:50:41 -0400 Subject: [PATCH 16/99] bazarr: allow overriding package in module --- nixos/modules/services/misc/bazarr.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/bazarr.nix b/nixos/modules/services/misc/bazarr.nix index e81b5d2b736e..0bf326a19386 100644 --- a/nixos/modules/services/misc/bazarr.nix +++ b/nixos/modules/services/misc/bazarr.nix @@ -7,6 +7,8 @@ in services.bazarr = { enable = lib.mkEnableOption "bazarr, a subtitle manager for Sonarr and Radarr"; + package = lib.mkPackageOption pkgs "bazarr" { }; + openFirewall = lib.mkOption { type = lib.types.bool; default = false; @@ -46,7 +48,7 @@ in StateDirectory = "bazarr"; SyslogIdentifier = "bazarr"; ExecStart = pkgs.writeShellScript "start-bazarr" '' - ${pkgs.bazarr}/bin/bazarr \ + ${cfg.package}/bin/bazarr \ --config '/var/lib/${StateDirectory}' \ --port ${toString cfg.listenPort} \ --no-update True From f99d1ecba1850b9a8e0f1a3f001aef9191675627 Mon Sep 17 00:00:00 2001 From: 0x4A6F <0x4A6F@users.noreply.github.com> Date: Sat, 12 Oct 2024 12:01:37 +0200 Subject: [PATCH 17/99] noseyparker: 0.18.1 -> 0.20.0 --- pkgs/tools/security/noseyparker/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/noseyparker/default.nix b/pkgs/tools/security/noseyparker/default.nix index b39666071fb6..8e71720b617c 100644 --- a/pkgs/tools/security/noseyparker/default.nix +++ b/pkgs/tools/security/noseyparker/default.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage rec { pname = "noseyparker"; - version = "0.18.1"; + version = "0.20.0"; src = fetchFromGitHub { owner = "praetorian-inc"; repo = "noseyparker"; rev = "v${version}"; - hash = "sha256-IorJWXhS1ZUye1wKPnGb+zx/YgfXhwi3cb/V3zpYaKY="; + hash = "sha256-pFAtyvnqCLTY3l7c47rpN1jHjQon0fTPT3KaV9mcs3Q="; }; - cargoHash = "sha256-xf70RKPZY96oUuifBC0mg5lV0MjGpzR2qDQbNJMSYtM="; + cargoHash = "sha256-t4tZDww6aySlTBq1BB4OGhi9w6fGY2gi7mPM1SR2mt8="; nativeCheckInputs = [ git @@ -34,6 +34,7 @@ rustPlatform.buildRustPackage rec { "--skip=github::github_repos_list_user_human_format" "--skip=github::github_repos_list_user_json_format" "--skip=github::github_repos_list_user_jsonl_format" + "--skip=github::github_repos_list_user_repo_filter" "--skip=scan::appmaker::scan_workflow_from_git_url" ]; From 885ec4f591c5046baf9fe42f79d2603ef0133451 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sat, 12 Oct 2024 16:04:01 -0400 Subject: [PATCH 18/99] opencpn: 5.8.4 -> 5.10.2 --- pkgs/applications/misc/opencpn/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/opencpn/default.nix b/pkgs/applications/misc/opencpn/default.nix index 479fe1bcb076..8e5009d440c4 100644 --- a/pkgs/applications/misc/opencpn/default.nix +++ b/pkgs/applications/misc/opencpn/default.nix @@ -10,6 +10,7 @@ , elfutils , fetchFromGitHub , flac +, gitMinimal , gtk3 , glew , gtest @@ -48,13 +49,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "opencpn"; - version = "5.8.4"; + version = "5.10.2"; src = fetchFromGitHub { owner = "OpenCPN"; repo = "OpenCPN"; rev = "Release_${finalAttrs.version}"; - hash = "sha256-axRI3sssj2Q6IBfIeyvOa494b0EgKFP+lFL/QrGIybQ="; + hash = "sha256-VuMClQ5k1mTMF5yWstTi9YTF4tEN68acH5OPhjdzIwM="; }; postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' @@ -77,6 +78,7 @@ stdenv.mkDerivation (finalAttrs: { curl dbus flac + gitMinimal ] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ AppKit ] ++ [ @@ -118,7 +120,12 @@ stdenv.mkDerivation (finalAttrs: { lame ]; - cmakeFlags = [ "-DOCPN_BUNDLE_DOCS=true" ]; + cmakeFlags = [ + "-DOCPN_BUNDLE_DOCS=true" + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ + # Override OpenCPN platform detection. + "-DOCPN_TARGET_TUPLE=unknown;unknown;${stdenv.hostPlatform.linuxArch}" + ]; env.NIX_CFLAGS_COMPILE = toString (lib.optionals (!stdenv.hostPlatform.isx86) [ "-DSQUISH_USE_SSE=0" From fc25b66dce7b4e5d0d7f28ea30ddf52d82b1c892 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Sun, 13 Oct 2024 14:05:10 +0200 Subject: [PATCH 19/99] =?UTF-8?q?xlockmore:=205.78=20=E2=86=92=205.80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/misc/screensavers/xlockmore/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/screensavers/xlockmore/default.nix b/pkgs/misc/screensavers/xlockmore/default.nix index d99c9fd7fcff..f51dbdffbf92 100644 --- a/pkgs/misc/screensavers/xlockmore/default.nix +++ b/pkgs/misc/screensavers/xlockmore/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { pname = "xlockmore"; - version = "5.78"; + version = "5.80"; src = fetchurl { url = "http://sillycycle.com/xlock/xlockmore-${version}.tar.xz"; - sha256 = "sha256-wMlnQiF4ejMFWJSOWe9EN91IPMgbAoXNReHgaovr+pE="; + sha256 = "sha256-UC12U2jTbYFOy3d/1DnHWXkLPdNNXuNfdIB/cbqkdiE="; curlOpts = "--user-agent 'Mozilla/5.0'"; }; From 2b5cd64f800ee5e7c2f799a34a147d5a1fe17921 Mon Sep 17 00:00:00 2001 From: squalus Date: Thu, 19 Sep 2024 11:05:03 -0700 Subject: [PATCH 20/99] osquery: remove workaround for autoPatchelfHook problem Remove workaround for #333710. --- pkgs/tools/system/osquery/default.nix | 3 +-- pkgs/tools/system/osquery/toolchain-bin.nix | 15 ++------------- 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/pkgs/tools/system/osquery/default.nix b/pkgs/tools/system/osquery/default.nix index e97e03180d32..b887c6e97a21 100644 --- a/pkgs/tools/system/osquery/default.nix +++ b/pkgs/tools/system/osquery/default.nix @@ -14,7 +14,6 @@ , jq , removeReferencesTo , nixosTests -, file , writers }: @@ -24,7 +23,7 @@ let opensslSrc = fetchurl info.openssl; - toolchain = import ./toolchain-bin.nix { inherit stdenv lib fetchzip file; }; + toolchain = import ./toolchain-bin.nix { inherit stdenv lib fetchzip autoPatchelfHook; }; in diff --git a/pkgs/tools/system/osquery/toolchain-bin.nix b/pkgs/tools/system/osquery/toolchain-bin.nix index dd1ff9264d3c..d2fed973fe42 100644 --- a/pkgs/tools/system/osquery/toolchain-bin.nix +++ b/pkgs/tools/system/osquery/toolchain-bin.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchzip, file }: +{ stdenv, lib, fetchzip, autoPatchelfHook }: let version = "1.1.0"; @@ -24,24 +24,13 @@ stdenv.mkDerivation { src = fetchzip dist.${stdenv.hostPlatform.system}; - nativeBuildInputs = [ file ]; + nativeBuildInputs = [ autoPatchelfHook ]; installPhase = '' mkdir $out cp -r * $out ''; - # autoPatchelfHook cannot be used here because of https://github.com/NixOS/nixpkgs/issues/333710 - postFixup = '' - read -r interpreter < "$NIX_BINTOOLS"/nix-support/dynamic-linker - for file in $(find "$out"/usr/bin -type f -executable); do - if [[ $(file "$file") == *ELF*dynamically* ]]; then - patchelf --interpreter "$interpreter" "$file" - patchelf --set-rpath "$out/usr/lib" "$file" - fi - done - ''; - meta = with lib; { description = "A LLVM-based toolchain for Linux designed to build a portable osquery"; homepage = "https://github.com/osquery/osquery-toolchain"; From 74d20416532003953467222683f6f020cf6b1c6d Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Tue, 15 Oct 2024 13:25:23 -0400 Subject: [PATCH 21/99] openpgp-card-tools: 0.11.3 -> 0.11.4 Diff: https://codeberg.org/openpgp-card/openpgp-card-tools/compare/v0.11.3...v0.11.4 --- pkgs/by-name/op/openpgp-card-tools/package.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/op/openpgp-card-tools/package.nix b/pkgs/by-name/op/openpgp-card-tools/package.nix index 03d828204449..db1e140f583f 100644 --- a/pkgs/by-name/op/openpgp-card-tools/package.nix +++ b/pkgs/by-name/op/openpgp-card-tools/package.nix @@ -4,6 +4,7 @@ , fetchFromGitea , pkg-config , pcsclite +, dbus , testers , openpgp-card-tools , darwin @@ -11,21 +12,21 @@ rustPlatform.buildRustPackage rec { pname = "openpgp-card-tools"; - version = "0.11.3"; + version = "0.11.4"; src = fetchFromGitea { domain = "codeberg.org"; owner = "openpgp-card"; repo = "openpgp-card-tools"; rev = "v${version}"; - hash = "sha256-htFhNzBuinj9qiTzcW0eia74jvCT/+9b1aLli594JJQ="; + hash = "sha256-XW9UYI588ZQGtBvsElFc2FF2GdYD2kZ2qbr51i3JE3w="; }; - cargoHash = "sha256-I2ExtUUM0ZJyhtyzP+IsgiMPMUFVHqPiMHFlvuUMjRc="; + cargoHash = "sha256-qpUWy/YTel+xwq2SdilyAyURKxqAYw7hYdQ+fPYtfHk="; nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ]; - buildInputs = [ pcsclite ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ + buildInputs = [ pcsclite dbus ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.PCSC darwin.apple_sdk.frameworks.Security ]; From d8039594c5852606fddd11e47b62a3026d91177c Mon Sep 17 00:00:00 2001 From: Patrick Chilton Date: Mon, 14 Oct 2024 21:05:39 +0200 Subject: [PATCH 22/99] anyk: use OpenJDK with JavaFX --- pkgs/by-name/an/anyk/package.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/an/anyk/package.nix b/pkgs/by-name/an/anyk/package.nix index 4e9a92081d5d..d5a38a800304 100644 --- a/pkgs/by-name/an/anyk/package.nix +++ b/pkgs/by-name/an/anyk/package.nix @@ -3,6 +3,7 @@ , fetchurl , fetchzip , openjdk +, openjfx , writeScript , runCommandLocal , bash @@ -24,10 +25,16 @@ let stripRoot = false; }; - # ÁNYK uses some SOAP stuff that's not shipped with OpenJDK any more. - # We don't really want to use openjdk8 because it's unusable on HiDPI - # and people are more likely to have a modern OpenJDK installed. + # ÁNYK needs JavaFX for the Ügyfélkapu login webview. + jdkWithFX = openjdk.override { + enableJavaFX = true; + openjfx = openjfx.override { withWebKit = true; }; + }; + extraClasspath = [ + # ÁNYK uses some SOAP stuff that's not shipped with OpenJDK any more. + # We don't really want to use openjdk8 because it's unusable on HiDPI + # and people are more likely to have a modern OpenJDK installed. (fetchurl { url = "mirror://maven/org/glassfish/metro/webservices-rt/2.4.10/webservices-rt-2.4.10.jar"; sha256 = "sha256-lHclIZn3HR2B2lMttmmQGIV67qJi5KhL5jT2WNUQpPI="; @@ -43,7 +50,7 @@ let sha256 = "sha256-ueJLfdbgdJVWLqllMb4xMMltuk144d/Yitu96/QzKHE="; }) - # Patch one of the classes so it works with the packages above by removing .internal. from the package names. + # Patch one of the ÁNYK classes so it works with the packages above by removing .internal. from the package names. (runCommandLocal "anyk-patch" {} '' mkdir $out cd $out @@ -83,7 +90,7 @@ let SCALING_PROP="-Dsun.java2d.uiScale=''${WINDOW_SCALING_FACTOR}" fi # ÁNYK crashes with NullPointerException with the GTK look and feel so use the cross-platform one. - exec ${openjdk}/bin/java -Dswing.systemlaf=javax.swing.plaf.metal.MetalLookAndFeel $SCALING_PROP "$@" + exec ${jdkWithFX}/bin/java -Dswing.systemlaf=javax.swing.plaf.metal.MetalLookAndFeel $SCALING_PROP "$@" ''; in stdenv.mkDerivation { pname = "anyk"; From b16ded58a0def1289c3f948edc5347a5b441eb76 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Tue, 15 Oct 2024 20:13:23 -0400 Subject: [PATCH 23/99] openpgp-card-tools: 0.11.4 -> 0.11.6 Diff: https://codeberg.org/openpgp-card/openpgp-card-tools/compare/v0.11.4...v0.11.6 --- pkgs/by-name/op/openpgp-card-tools/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/op/openpgp-card-tools/package.nix b/pkgs/by-name/op/openpgp-card-tools/package.nix index db1e140f583f..5ed445a55eef 100644 --- a/pkgs/by-name/op/openpgp-card-tools/package.nix +++ b/pkgs/by-name/op/openpgp-card-tools/package.nix @@ -12,17 +12,17 @@ rustPlatform.buildRustPackage rec { pname = "openpgp-card-tools"; - version = "0.11.4"; + version = "0.11.6"; src = fetchFromGitea { domain = "codeberg.org"; owner = "openpgp-card"; repo = "openpgp-card-tools"; rev = "v${version}"; - hash = "sha256-XW9UYI588ZQGtBvsElFc2FF2GdYD2kZ2qbr51i3JE3w="; + hash = "sha256-ZnIJLNg9soRzGEjoRNbUzDUtj71y54t+qTC4QDjiCmM="; }; - cargoHash = "sha256-qpUWy/YTel+xwq2SdilyAyURKxqAYw7hYdQ+fPYtfHk="; + cargoHash = "sha256-t+fKCviu9UOz2GHkIBqtSp0vyqXPAR1TuWi4yOYR0Bc="; nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ]; From 46719faa3c5d02efb5d893670182c86fef196d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Thu, 10 Oct 2024 13:10:10 +0100 Subject: [PATCH 24/99] feishin: 0.10.1 -> 0.11.0 Diff: https://github.com/jeffvli/feishin/compare/v0.10.1...v0.11.0 Changelog: https://github.com/jeffvli/feishin/releases/tag/v0.11.0 --- pkgs/by-name/fe/feishin/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/fe/feishin/package.nix b/pkgs/by-name/fe/feishin/package.nix index df8f9dc5eb6d..c2e43eb8d3e9 100644 --- a/pkgs/by-name/fe/feishin/package.nix +++ b/pkgs/by-name/fe/feishin/package.nix @@ -11,13 +11,13 @@ }: let pname = "feishin"; - version = "0.10.1"; + version = "0.11.0"; src = fetchFromGitHub { owner = "jeffvli"; repo = "feishin"; rev = "v${version}"; - hash = "sha256-YdtGhGcG5qVoVa1534NQIbI02gy0pzR9U1PU2lL1u/A="; + hash = "sha256-6USYOoXN30sFPEVX5lL4HAXSgKgU6DXsM3fCrxaJIPk="; }; electron = electron_31; @@ -26,7 +26,7 @@ buildNpmPackage { inherit pname version; inherit src; - npmDepsHash = "sha256-3fY0NCswRTnpDDsr1fDK9YZm8TUKCIMJ1+yw38dj0M8="; + npmDepsHash = "sha256-aLey8mxNYZCtI+E3W5T9ajOJfWZ04mvq1IWkXI9s52I="; npmFlags = [ "--legacy-peer-deps" ]; makeCacheWritable = true; @@ -60,7 +60,7 @@ buildNpmPackage { inherit version; src = "${src}/release/app"; - npmDepsHash = "sha256-YkLT69QU7WMGRe95rfZ8TmnfIdWwtpWaqGY+wU48veQ="; + npmDepsHash = "sha256-l88NuPeURhzINxAazQ67XtRUv0C5VedBBuF8Zgy2HCY="; npmFlags = [ "--ignore-scripts" ]; dontNpmBuild = true; From 0b65b5ed47f954cd913f7a9a073ef5ce2ced826d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Wed, 16 Oct 2024 01:53:55 +0100 Subject: [PATCH 25/99] feishin: 0.11.0 -> 0.11.1 Diff: https://github.com/jeffvli/feishin/compare/v0.11.0...v0.11.1 Changelog: https://github.com/jeffvli/feishin/releases/tag/v0.11.1 --- pkgs/by-name/fe/feishin/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/fe/feishin/package.nix b/pkgs/by-name/fe/feishin/package.nix index c2e43eb8d3e9..db26c0d6105a 100644 --- a/pkgs/by-name/fe/feishin/package.nix +++ b/pkgs/by-name/fe/feishin/package.nix @@ -11,13 +11,13 @@ }: let pname = "feishin"; - version = "0.11.0"; + version = "0.11.1"; src = fetchFromGitHub { owner = "jeffvli"; repo = "feishin"; rev = "v${version}"; - hash = "sha256-6USYOoXN30sFPEVX5lL4HAXSgKgU6DXsM3fCrxaJIPk="; + hash = "sha256-fHaNluLes25P/mSTSYFt97pC6uKYuBI/3PUHc84zoWg="; }; electron = electron_31; @@ -26,7 +26,7 @@ buildNpmPackage { inherit pname version; inherit src; - npmDepsHash = "sha256-aLey8mxNYZCtI+E3W5T9ajOJfWZ04mvq1IWkXI9s52I="; + npmDepsHash = "sha256-8xFB47PJpa+3U+Xy+DEdWoW3/f+naFKtLQsDDVgUccA="; npmFlags = [ "--legacy-peer-deps" ]; makeCacheWritable = true; @@ -60,7 +60,7 @@ buildNpmPackage { inherit version; src = "${src}/release/app"; - npmDepsHash = "sha256-l88NuPeURhzINxAazQ67XtRUv0C5VedBBuF8Zgy2HCY="; + npmDepsHash = "sha256-gufOUBfHTDkIqRTdPqXuuk1ZT0y80y/GyI7ssvHnBYo="; npmFlags = [ "--ignore-scripts" ]; dontNpmBuild = true; From b6ce4710c6022e0c3276132af7b3746f32b4991e Mon Sep 17 00:00:00 2001 From: Guillaume Girol Date: Wed, 16 Oct 2024 12:00:00 +0000 Subject: [PATCH 26/99] agedu: 20211129 -> 20241013 changelog: Fix infinite loop in round_and_format_age. --- pkgs/tools/misc/agedu/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/agedu/default.nix b/pkgs/tools/misc/agedu/default.nix index d01e6aab141c..7024e166c9f8 100644 --- a/pkgs/tools/misc/agedu/default.nix +++ b/pkgs/tools/misc/agedu/default.nix @@ -4,8 +4,8 @@ , halibut }: let - date = "20211129"; - rev = "8cd63c5"; + date = "20241013"; + rev = "3622eda"; in stdenv.mkDerivation { pname = "agedu"; @@ -15,7 +15,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://git.tartarus.org/simon/agedu.git"; inherit rev; - hash = "sha256-5wqpL7wrFwIf6lxVte+GXLsXYY0/36EIAUepVNDCnSE="; + hash = "sha256-ZU2bVVo//mAVtVtrKPQ20wZHip/AZPmlL2uaCBcc7rw="; }; nativeBuildInputs = [ cmake halibut ]; From 88d93cef1aa82c9ee8e9b801f7f4d3340d231d62 Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Thu, 17 Oct 2024 21:15:46 +0000 Subject: [PATCH 27/99] skypeforlinux: 8.129.0.202 -> 8.130.0.205 --- pkgs/by-name/sk/skypeforlinux/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sk/skypeforlinux/package.nix b/pkgs/by-name/sk/skypeforlinux/package.nix index 1d818d11ae2d..f0d6784bf86f 100644 --- a/pkgs/by-name/sk/skypeforlinux/package.nix +++ b/pkgs/by-name/sk/skypeforlinux/package.nix @@ -42,8 +42,8 @@ let # Please keep the version x.y.0.z and do not update to x.y.76.z because the # source of the latter disappears much faster. - version = "8.129.0.202"; - revision = "365"; + version = "8.130.0.205"; + revision = "368"; rpath = lib.makeLibraryPath [ @@ -103,7 +103,7 @@ let fetchurl { name = "skypeforlinux-${version}-${revision}.snap"; url = "https://api.snapcraft.io/api/v1/snaps/download/QRDEfjn4WJYnm0FzDKwqqRZZI77awQEV_${revision}.snap"; - hash = "sha512-pxLh/dU/RK1H5gjFLB0V4mVddgQkO8ZcJowpNNihECsLaELgoeXmWXflhYFs2G7fdEzNMeujuc4/ZoGCFSZCvw=="; + hash = "sha512-eDSJQndUDxSsRg9bSevWUih1iXDp3n1kU0RdRAu3GsHeRC/JJx3m4vKxP0F/Rcf2Toxd3MPG2r6Oa1Wa7upcGg=="; } else throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}"; From a7c13860366df9ba74067a1535837d5245591b9b Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Thu, 17 Oct 2024 18:30:21 -0300 Subject: [PATCH 28/99] plasma-panel-colorizer: 0.5.2 -> 1.0.0 --- pkgs/by-name/pl/plasma-panel-colorizer/package.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix index 2ee82abcf42a..230225e367b6 100644 --- a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix +++ b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix @@ -8,21 +8,30 @@ stdenv.mkDerivation (finalAttrs: { pname = "plasma-panel-colorizer"; - version = "0.5.2"; + version = "1.0.0"; src = fetchFromGitHub { owner = "luisbocanegra"; repo = "plasma-panel-colorizer"; rev = "refs/tags/v${finalAttrs.version}"; - hash = "sha256-+JweNB+zjbXh6Htyvu2vgogAr5Fl5wDPCpm6GV18NJ0="; + hash = "sha256-O+qIsYF0E+9LeiDcOUh8pZVY1rVoMlniju6yLact2Bc="; }; nativeBuildInputs = [ cmake kdePackages.extra-cmake-modules + ]; + + buildInputs = [ kdePackages.plasma-desktop ]; + cmakeFlags = [ + (lib.cmakeBool "INSTALL_PLASMOID" true) + (lib.cmakeBool "BUILD_PLUGIN" true) + (lib.cmakeFeature "Qt6_DIR" "${kdePackages.qtbase}/lib/cmake/Qt6") + ]; + dontWrapQtApps = true; meta = { From 6476dee80dfc937925f1dd89a0da893484aa9b4b Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Thu, 17 Oct 2024 18:39:48 -0300 Subject: [PATCH 29/99] plasma-panel-colorizer: add updateScript --- pkgs/by-name/pl/plasma-panel-colorizer/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix index 230225e367b6..ad599a42a6bb 100644 --- a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix +++ b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix @@ -4,6 +4,7 @@ fetchFromGitHub, cmake, kdePackages, + nix-update-script, }: stdenv.mkDerivation (finalAttrs: { @@ -34,6 +35,8 @@ stdenv.mkDerivation (finalAttrs: { dontWrapQtApps = true; + passthru.updateScript = nix-update-script { }; + meta = { description = "Fully-featured widget to bring Latte-Dock and WM status bar customization features to the default KDE Plasma panel"; homepage = "https://github.com/luisbocanegra/plasma-panel-colorizer"; From a25a056294fd911badbfb0ec96245543a72851d0 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Thu, 17 Oct 2024 19:15:56 -0300 Subject: [PATCH 30/99] plasma-panel-colorizer: enable strictDeps --- pkgs/by-name/pl/plasma-panel-colorizer/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix index ad599a42a6bb..a60aab0957e5 100644 --- a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix +++ b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix @@ -27,6 +27,8 @@ stdenv.mkDerivation (finalAttrs: { kdePackages.plasma-desktop ]; + strictDeps = true; + cmakeFlags = [ (lib.cmakeBool "INSTALL_PLASMOID" true) (lib.cmakeBool "BUILD_PLUGIN" true) From be92ca8a81c2f70ce8332c279465e2de5e7a55d4 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Thu, 17 Oct 2024 19:27:21 -0300 Subject: [PATCH 31/99] outguess: nixfmt --- pkgs/by-name/ou/outguess/package.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ou/outguess/package.nix b/pkgs/by-name/ou/outguess/package.nix index 1a4bbb44035a..d84dd6532a3d 100644 --- a/pkgs/by-name/ou/outguess/package.nix +++ b/pkgs/by-name/ou/outguess/package.nix @@ -1,7 +1,8 @@ -{ fetchFromGitHub -, stdenv -, lib -, autoreconfHook +{ + fetchFromGitHub, + stdenv, + lib, + autoreconfHook, }: stdenv.mkDerivation (finalAttrs: { From 5de6392267081edbbd2ec0c2f507dd451dceb3c9 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Thu, 17 Oct 2024 19:28:34 -0300 Subject: [PATCH 32/99] outguess: enable strictDeps --- pkgs/by-name/ou/outguess/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/ou/outguess/package.nix b/pkgs/by-name/ou/outguess/package.nix index d84dd6532a3d..f67980f1fc57 100644 --- a/pkgs/by-name/ou/outguess/package.nix +++ b/pkgs/by-name/ou/outguess/package.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ autoreconfHook ]; + strictDeps = true; + configureFlags = [ "--with-generic-jconfig" ]; meta = { From a50f68331620a7ac1566a3fed7d39fa30a23780b Mon Sep 17 00:00:00 2001 From: arthsmn Date: Thu, 17 Oct 2024 19:46:02 -0300 Subject: [PATCH 33/99] valuta: 1.2.0 -> 1.3.2 --- pkgs/by-name/va/valuta/package.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/va/valuta/package.nix b/pkgs/by-name/va/valuta/package.nix index 3c59df5164c3..a9ea0aeda8cd 100644 --- a/pkgs/by-name/va/valuta/package.nix +++ b/pkgs/by-name/va/valuta/package.nix @@ -15,7 +15,7 @@ python3Packages.buildPythonApplication rec { pname = "valuta"; - version = "1.2.0"; + version = "1.3.2"; pyproject = false; @@ -23,7 +23,7 @@ python3Packages.buildPythonApplication rec { owner = "ideveCore"; repo = "Valuta"; rev = "v${version}"; - hash = "sha256-ygroF9hlmsjQTocly7CNL6zQi4N6h8va/ZkJ8w8QHms="; + hash = "sha256-g2x+pqs7dXdTMSxzSU5TeQtE+Q+tdQ93xaMtUVEE5/U="; }; nativeBuildInputs = [ @@ -43,6 +43,7 @@ python3Packages.buildPythonApplication rec { ]; propagatedBuildInputs = with python3Packages; [ + babel dbus-python pygobject3 ]; From 387380b96182c6e3244d7ba27bbd7e85fe148a5b Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Thu, 17 Oct 2024 20:00:05 -0300 Subject: [PATCH 34/99] outguess: modernize --- pkgs/by-name/ou/outguess/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ou/outguess/package.nix b/pkgs/by-name/ou/outguess/package.nix index f67980f1fc57..5ead0d00fc4a 100644 --- a/pkgs/by-name/ou/outguess/package.nix +++ b/pkgs/by-name/ou/outguess/package.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation (finalAttrs: { src = fetchFromGitHub { owner = "resurrecting-open-source-projects"; repo = "outguess"; - rev = finalAttrs.version; + rev = "refs/tags/${finalAttrs.version}"; hash = "sha256-yv01jquPTnVk9fd1tqAt1Lxis+ZHZqdG3NiTFxfoXAE="; }; From 601fc502a9331f09411b289a2489dc4eb6c51d47 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 17 Oct 2024 20:21:29 -0400 Subject: [PATCH 35/99] hyprdim: 2.2.6 -> 3.0.0 --- pkgs/by-name/hy/hyprdim/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/hy/hyprdim/package.nix b/pkgs/by-name/hy/hyprdim/package.nix index e0c0eb3f7e91..f0ea46e36b56 100644 --- a/pkgs/by-name/hy/hyprdim/package.nix +++ b/pkgs/by-name/hy/hyprdim/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage rec { pname = "hyprdim"; - version = "2.2.6"; + version = "3.0.0"; src = fetchFromGitHub { owner = "donovanglover"; repo = "hyprdim"; rev = version; - hash = "sha256-zE1GYgS3fFO6Zz1I5zr+ApEux9ndKOeegj2n/rF/4HY="; + hash = "sha256-+nzIDtRLVA6CgCtbyeR+TU5euSZQb7wi2187IxLrAmQ="; }; - cargoHash = "sha256-WchQXRlU/fkjnCOeP9E5JXVdM8UZlG3ixfLGHvmezHg="; + cargoHash = "sha256-UhlwVZ70t6CSQ4ZoXk0OdUqEVeOVMp+TmOSX5iyNNVI="; nativeBuildInputs = [ installShellFiles ]; From c3a1e76d4f63e23ffc3862e926a33ad0e905e4eb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 19 Oct 2024 06:22:12 +0000 Subject: [PATCH 36/99] zlint: 3.6.3 -> 3.6.4 --- pkgs/tools/security/zlint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/zlint/default.nix b/pkgs/tools/security/zlint/default.nix index c23cfa528da3..f2b370d65b5e 100644 --- a/pkgs/tools/security/zlint/default.nix +++ b/pkgs/tools/security/zlint/default.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "zlint"; - version = "3.6.3"; + version = "3.6.4"; src = fetchFromGitHub { owner = "zmap"; repo = "zlint"; rev = "refs/tags/v${version}"; - hash = "sha256-N199sSxe06nm0CInTYAuwRgoq7hN7IQpHz5ERUSpk3M="; + hash = "sha256-FFgBRuNvm4Cnjls9y+L256vMGGNu10x7Vh+V9HBon70="; }; modRoot = "v3"; From d918a8a4acee86a5ffadca37bd07787c41ad9059 Mon Sep 17 00:00:00 2001 From: eymeric Date: Sat, 19 Oct 2024 16:35:39 +0200 Subject: [PATCH 37/99] antares: 0.7.28 -> 0.7.29 --- pkgs/by-name/an/antares/npm-lock.patch | 30033 +++++++++++++++-------- pkgs/by-name/an/antares/package.nix | 9 +- 2 files changed, 20347 insertions(+), 9695 deletions(-) diff --git a/pkgs/by-name/an/antares/npm-lock.patch b/pkgs/by-name/an/antares/npm-lock.patch index 71b75e3958f6..48ef846cb953 100644 --- a/pkgs/by-name/an/antares/npm-lock.patch +++ b/pkgs/by-name/an/antares/npm-lock.patch @@ -1,17 +1,17 @@ diff --git a/package-lock.json b/package-lock.json -index a38125e..a1067b0 100644 +index 90dda57..ef0ab55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,7 +1,7 @@ { "name": "antares", - "version": "0.7.28", + "version": "0.7.29", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { -@@ -107,116 +107,55 @@ +@@ -107,116 +107,59 @@ "xvfb-maybe": "~0.2.1" } }, @@ -25,10 +25,10 @@ index a38125e..a1067b0 100644 - }, "node_modules/@ampproject/remapping": { - "version": "2.2.1", -- "license": "Apache-2.0", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", "peer": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", @@ -42,14 +42,14 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/code-frame": { - "version": "7.23.4", -- "license": "MIT", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", -+ "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz", ++ "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==", + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" -+ "@babel/highlight": "^7.24.7", ++ "@babel/highlight": "^7.25.7", + "picocolors": "^1.0.0" }, "engines": { @@ -115,20 +115,20 @@ index a38125e..a1067b0 100644 - }, "node_modules/@babel/compat-data": { - "version": "7.23.3", -- "license": "MIT", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", -+ "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", ++ "version": "7.25.8", ++ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.8.tgz", ++ "integrity": "sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.3", -- "license": "MIT", -+ "version": "7.25.2", -+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", -+ "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", ++ "version": "7.25.8", ++ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.8.tgz", ++ "integrity": "sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==", + "license": "MIT", "peer": true, "dependencies": { "@ampproject/remapping": "^2.2.0", @@ -141,61 +141,60 @@ index a38125e..a1067b0 100644 - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.3", - "@babel/types": "^7.23.3", -+ "@babel/code-frame": "^7.24.7", -+ "@babel/generator": "^7.25.0", -+ "@babel/helper-compilation-targets": "^7.25.2", -+ "@babel/helper-module-transforms": "^7.25.2", -+ "@babel/helpers": "^7.25.0", -+ "@babel/parser": "^7.25.0", -+ "@babel/template": "^7.25.0", -+ "@babel/traverse": "^7.25.2", -+ "@babel/types": "^7.25.2", ++ "@babel/code-frame": "^7.25.7", ++ "@babel/generator": "^7.25.7", ++ "@babel/helper-compilation-targets": "^7.25.7", ++ "@babel/helper-module-transforms": "^7.25.7", ++ "@babel/helpers": "^7.25.7", ++ "@babel/parser": "^7.25.8", ++ "@babel/template": "^7.25.7", ++ "@babel/traverse": "^7.25.7", ++ "@babel/types": "^7.25.8", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", -@@ -233,8 +172,9 @@ +@@ -233,6 +176,8 @@ }, "node_modules/@babel/eslint-parser": { "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.15.8.tgz", + "integrity": "sha512-fYP7QFngCvgxjUuw8O057SVH5jCXsbFFOoE77CFDcvzwBVgTOkMD/L4mIC5Ud1xf8chK/no2fRbSSn1wvNmKuQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-scope": "^5.1.1", - "eslint-visitor-keys": "^2.1.0", -@@ -249,12 +189,13 @@ +@@ -249,47 +194,56 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.4", -- "license": "MIT", -+ "version": "7.25.5", -+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.5.tgz", -+ "integrity": "sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.7.tgz", ++ "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.23.4", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", -+ "@babel/types": "^7.25.4", +- "jsesc": "^2.5.1" ++ "@babel/types": "^7.25.7", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" ++ "jsesc": "^3.0.2" }, "engines": { -@@ -262,34 +203,38 @@ + "node": ">=6.9.0" } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", -+ "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.7.tgz", ++ "integrity": "sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" -+ "@babel/types": "^7.24.7" ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -203,15 +202,15 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", -+ "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.7.tgz", ++ "integrity": "sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.15" -+ "@babel/traverse": "^7.24.7", -+ "@babel/types": "^7.24.7" ++ "@babel/traverse": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -219,30 +218,30 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", -- "license": "MIT", -+ "version": "7.25.2", -+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", -+ "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz", ++ "integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", -+ "@babel/compat-data": "^7.25.2", -+ "@babel/helper-validator-option": "^7.24.8", -+ "browserslist": "^4.23.1", ++ "@babel/compat-data": "^7.25.7", ++ "@babel/helper-validator-option": "^7.25.7", ++ "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, -@@ -298,18 +243,17 @@ +@@ -298,18 +252,18 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.15", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz", -+ "integrity": "sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.7.tgz", ++ "integrity": "sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", @@ -252,43 +251,43 @@ index a38125e..a1067b0 100644 - "@babel/helper-replace-supers": "^7.22.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", -+ "@babel/helper-annotate-as-pure": "^7.24.7", -+ "@babel/helper-member-expression-to-functions": "^7.24.8", -+ "@babel/helper-optimise-call-expression": "^7.24.7", -+ "@babel/helper-replace-supers": "^7.25.0", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", -+ "@babel/traverse": "^7.25.4", ++ "@babel/helper-annotate-as-pure": "^7.25.7", ++ "@babel/helper-member-expression-to-functions": "^7.25.7", ++ "@babel/helper-optimise-call-expression": "^7.25.7", ++ "@babel/helper-replace-supers": "^7.25.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", ++ "@babel/traverse": "^7.25.7", "semver": "^6.3.1" }, "engines": { -@@ -320,11 +264,12 @@ +@@ -320,12 +274,14 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", -+ "version": "7.25.2", -+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", -+ "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.7.tgz", ++ "integrity": "sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", -+ "@babel/helper-annotate-as-pure": "^7.24.7", - "regexpu-core": "^5.3.1", +- "regexpu-core": "^5.3.1", ++ "@babel/helper-annotate-as-pure": "^7.25.7", ++ "regexpu-core": "^6.1.1", "semver": "^6.3.1" }, -@@ -337,8 +282,9 @@ + "engines": { +@@ -337,6 +293,8 @@ }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz", + "integrity": "sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", -@@ -354,63 +300,51 @@ +@@ -354,63 +312,55 @@ } }, "node_modules/@babel/helper-environment-visitor": { @@ -311,11 +310,11 @@ index a38125e..a1067b0 100644 - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", -- "license": "MIT", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" @@ -326,15 +325,15 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", -+ "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.7.tgz", ++ "integrity": "sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/types": "^7.23.0" -+ "@babel/traverse": "^7.24.8", -+ "@babel/types": "^7.24.8" ++ "@babel/traverse": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -342,14 +341,14 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", -- "license": "MIT", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", -+ "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz", ++ "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.15" -+ "@babel/traverse": "^7.24.7", -+ "@babel/types": "^7.24.7" ++ "@babel/traverse": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -357,36 +356,36 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", -- "license": "MIT", -+ "version": "7.25.2", -+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", -+ "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz", ++ "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==", + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" -+ "@babel/helper-module-imports": "^7.24.7", -+ "@babel/helper-simple-access": "^7.24.7", -+ "@babel/helper-validator-identifier": "^7.24.7", -+ "@babel/traverse": "^7.25.2" ++ "@babel/helper-module-imports": "^7.25.7", ++ "@babel/helper-simple-access": "^7.25.7", ++ "@babel/helper-validator-identifier": "^7.25.7", ++ "@babel/traverse": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -420,32 +354,35 @@ +@@ -420,18 +370,22 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", -+ "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.7.tgz", ++ "integrity": "sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" -+ "@babel/types": "^7.24.7" ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -394,65 +393,65 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", -+ "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz", ++ "integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=6.9.0" +@@ -439,13 +393,15 @@ } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", -+ "version": "7.25.0", -+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", -+ "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.7.tgz", ++ "integrity": "sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" -+ "@babel/helper-annotate-as-pure": "^7.24.7", -+ "@babel/helper-wrap-function": "^7.25.0", -+ "@babel/traverse": "^7.25.0" ++ "@babel/helper-annotate-as-pure": "^7.25.7", ++ "@babel/helper-wrap-function": "^7.25.7", ++ "@babel/traverse": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -455,13 +392,14 @@ +@@ -455,13 +411,15 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", -+ "version": "7.25.0", -+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", -+ "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.7.tgz", ++ "integrity": "sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" -+ "@babel/helper-member-expression-to-functions": "^7.24.8", -+ "@babel/helper-optimise-call-expression": "^7.24.7", -+ "@babel/traverse": "^7.25.0" ++ "@babel/helper-member-expression-to-functions": "^7.25.7", ++ "@babel/helper-optimise-call-expression": "^7.25.7", ++ "@babel/traverse": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -471,90 +409,90 @@ +@@ -471,90 +429,98 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", -- "license": "MIT", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", -+ "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz", ++ "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" -+ "@babel/traverse": "^7.24.7", -+ "@babel/types": "^7.24.7" ++ "@babel/traverse": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -460,12 +459,12 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", -+ "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.7.tgz", ++ "integrity": "sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==", "dev": true, -- "license": "MIT", -- "dependencies": { + "license": "MIT", + "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { @@ -475,10 +474,10 @@ index a38125e..a1067b0 100644 - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "license": "MIT", - "dependencies": { +- "dependencies": { - "@babel/types": "^7.22.5" -+ "@babel/traverse": "^7.24.7", -+ "@babel/types": "^7.24.7" ++ "@babel/traverse": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -486,48 +485,48 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", -- "license": "MIT", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", -+ "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz", ++ "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", -- "license": "MIT", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", -+ "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz", ++ "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.22.15", -- "license": "MIT", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", -+ "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz", ++ "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", -+ "version": "7.25.0", -+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", -+ "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.7.tgz", ++ "integrity": "sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" -+ "@babel/template": "^7.25.0", -+ "@babel/traverse": "^7.25.0", -+ "@babel/types": "^7.25.0" ++ "@babel/template": "^7.25.7", ++ "@babel/traverse": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -535,17 +534,17 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/helpers": { - "version": "7.23.4", -- "license": "MIT", -+ "version": "7.25.0", -+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", -+ "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz", ++ "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", + "license": "MIT", "peer": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.4", - "@babel/types": "^7.23.4" -+ "@babel/template": "^7.25.0", -+ "@babel/types": "^7.25.0" ++ "@babel/template": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -553,13 +552,13 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/highlight": { - "version": "7.23.4", -- "license": "MIT", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", -+ "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz", ++ "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", -+ "@babel/helper-validator-identifier": "^7.24.7", ++ "@babel/helper-validator-identifier": "^7.25.7", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", @@ -567,106 +566,104 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">=6.9.0" -@@ -562,7 +500,8 @@ +@@ -562,6 +528,8 @@ }, "node_modules/@babel/highlight/node_modules/ansi-styles": { "version": "3.2.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" - }, -@@ -572,7 +511,8 @@ +@@ -572,6 +540,8 @@ }, "node_modules/@babel/highlight/node_modules/chalk": { "version": "2.4.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", -@@ -584,32 +524,37 @@ +@@ -584,6 +554,8 @@ }, "node_modules/@babel/highlight/node_modules/color-convert": { "version": "1.9.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", "dependencies": { "color-name": "1.1.3" - } +@@ -591,10 +563,14 @@ }, "node_modules/@babel/highlight/node_modules/color-name": { "version": "1.1.3", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", -+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" ++ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", "engines": { "node": ">=0.8.0" - } +@@ -602,6 +578,8 @@ }, "node_modules/@babel/highlight/node_modules/has-flag": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", "engines": { "node": ">=4" - } +@@ -609,6 +587,8 @@ }, "node_modules/@babel/highlight/node_modules/supports-color": { "version": "5.5.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" - }, -@@ -618,9 +563,12 @@ +@@ -618,9 +598,13 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz", - "integrity": "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.4.tgz", -+ "integrity": "sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==", ++ "version": "7.25.8", ++ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.8.tgz", ++ "integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==", ++ "license": "MIT", + "dependencies": { -+ "@babel/types": "^7.25.4" ++ "@babel/types": "^7.25.8" + }, "bin": { "parser": "bin/babel-parser.js" }, -@@ -629,13 +577,14 @@ +@@ -629,13 +613,15 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", -+ "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.7.tgz", ++ "integrity": "sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.23.3" -+ "@babel/helper-plugin-utils": "^7.24.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", -+ "@babel/plugin-transform-optional-chaining": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", ++ "@babel/plugin-transform-optional-chaining": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -646,8 +595,10 @@ +@@ -646,6 +632,9 @@ }, "node_modules/@babel/plugin-proposal-async-generator-functions": { "version": "7.20.7", @@ -674,11 +671,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", -@@ -663,8 +614,10 @@ +@@ -663,6 +652,9 @@ }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", @@ -686,11 +681,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" -@@ -678,8 +631,10 @@ +@@ -678,6 +670,9 @@ }, "node_modules/@babel/plugin-proposal-class-static-block": { "version": "7.21.0", @@ -698,11 +691,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", -@@ -694,8 +649,10 @@ +@@ -694,6 +689,9 @@ }, "node_modules/@babel/plugin-proposal-dynamic-import": { "version": "7.18.6", @@ -710,11 +701,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" -@@ -709,8 +666,10 @@ +@@ -709,6 +707,9 @@ }, "node_modules/@babel/plugin-proposal-export-namespace-from": { "version": "7.18.9", @@ -722,11 +711,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" -@@ -724,8 +683,10 @@ +@@ -724,6 +725,9 @@ }, "node_modules/@babel/plugin-proposal-json-strings": { "version": "7.18.6", @@ -734,11 +721,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" -@@ -739,8 +700,10 @@ +@@ -739,6 +743,9 @@ }, "node_modules/@babel/plugin-proposal-logical-assignment-operators": { "version": "7.20.7", @@ -746,11 +731,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" -@@ -754,8 +717,10 @@ +@@ -754,6 +761,9 @@ }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { "version": "7.18.6", @@ -758,11 +741,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" -@@ -769,8 +734,10 @@ +@@ -769,6 +779,9 @@ }, "node_modules/@babel/plugin-proposal-numeric-separator": { "version": "7.18.6", @@ -770,11 +751,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" -@@ -784,8 +751,10 @@ +@@ -784,6 +797,9 @@ }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.20.7", @@ -782,11 +761,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", -@@ -802,8 +771,10 @@ +@@ -802,6 +818,9 @@ }, "node_modules/@babel/plugin-proposal-optional-catch-binding": { "version": "7.18.6", @@ -794,11 +771,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" -@@ -817,8 +788,10 @@ +@@ -817,6 +836,9 @@ }, "node_modules/@babel/plugin-proposal-optional-chaining": { "version": "7.21.0", @@ -806,11 +781,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", -@@ -833,8 +806,10 @@ +@@ -833,6 +855,9 @@ }, "node_modules/@babel/plugin-proposal-private-methods": { "version": "7.18.6", @@ -818,11 +791,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" -@@ -848,8 +823,10 @@ +@@ -848,6 +873,9 @@ }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.11", @@ -830,11 +801,9 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", -@@ -865,8 +842,10 @@ +@@ -865,6 +893,9 @@ }, "node_modules/@babel/plugin-proposal-unicode-property-regex": { "version": "7.18.6", @@ -842,258 +811,228 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" -@@ -880,8 +859,9 @@ +@@ -880,6 +911,8 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, -@@ -891,8 +871,9 @@ +@@ -891,6 +924,8 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, -@@ -902,8 +883,9 @@ +@@ -902,6 +937,8 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, -@@ -916,8 +898,9 @@ +@@ -916,6 +953,8 @@ }, "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, -@@ -927,8 +910,9 @@ +@@ -927,6 +966,8 @@ }, "node_modules/@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, -@@ -938,8 +922,9 @@ +@@ -938,6 +979,8 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, -@@ -949,8 +934,9 @@ +@@ -949,6 +992,8 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, -@@ -960,8 +946,9 @@ +@@ -960,6 +1005,8 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, -@@ -971,8 +958,9 @@ +@@ -971,6 +1018,8 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, -@@ -982,8 +970,9 @@ +@@ -982,6 +1031,8 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, -@@ -993,8 +982,9 @@ +@@ -993,6 +1044,8 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, -@@ -1004,8 +994,9 @@ +@@ -1004,6 +1057,8 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, -@@ -1015,8 +1006,9 @@ +@@ -1015,6 +1070,8 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, -@@ -1029,8 +1021,9 @@ +@@ -1029,6 +1086,8 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, -@@ -1042,11 +1035,12 @@ +@@ -1042,11 +1101,13 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.23.3", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz", -+ "integrity": "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz", ++ "integrity": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.8" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1056,11 +1050,12 @@ +@@ -1056,11 +1117,13 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", -+ "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.7.tgz", ++ "integrity": "sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1070,13 +1065,14 @@ +@@ -1070,13 +1133,15 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", -+ "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.7.tgz", ++ "integrity": "sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20" -+ "@babel/helper-module-imports": "^7.24.7", -+ "@babel/helper-plugin-utils": "^7.24.7", -+ "@babel/helper-remap-async-to-generator": "^7.24.7" ++ "@babel/helper-module-imports": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-remap-async-to-generator": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1086,11 +1082,12 @@ +@@ -1086,11 +1151,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", -+ "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.7.tgz", ++ "integrity": "sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1100,11 +1097,12 @@ +@@ -1100,11 +1167,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.4", -+ "version": "7.25.0", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", -+ "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.7.tgz", ++ "integrity": "sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.8" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1114,18 +1112,16 @@ +@@ -1114,18 +1183,17 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.3", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz", -+ "integrity": "sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.7.tgz", ++ "integrity": "sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", @@ -1103,589 +1042,581 @@ index a38125e..a1067b0 100644 - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-split-export-declaration": "^7.22.6", -+ "@babel/helper-annotate-as-pure": "^7.24.7", -+ "@babel/helper-compilation-targets": "^7.25.2", -+ "@babel/helper-plugin-utils": "^7.24.8", -+ "@babel/helper-replace-supers": "^7.25.0", -+ "@babel/traverse": "^7.25.4", ++ "@babel/helper-annotate-as-pure": "^7.25.7", ++ "@babel/helper-compilation-targets": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-replace-supers": "^7.25.7", ++ "@babel/traverse": "^7.25.7", "globals": "^11.1.0" }, "engines": { -@@ -1136,12 +1132,13 @@ +@@ -1136,12 +1204,14 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", -+ "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.7.tgz", ++ "integrity": "sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.15" -+ "@babel/helper-plugin-utils": "^7.24.7", -+ "@babel/template": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/template": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1151,11 +1148,12 @@ +@@ -1151,11 +1221,13 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.3", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", -+ "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.7.tgz", ++ "integrity": "sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.8" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1165,12 +1163,13 @@ +@@ -1165,12 +1237,14 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", -+ "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.7.tgz", ++ "integrity": "sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-create-regexp-features-plugin": "^7.24.7", -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-create-regexp-features-plugin": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1180,11 +1179,12 @@ +@@ -1180,11 +1254,13 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", -+ "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.7.tgz", ++ "integrity": "sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1194,12 +1194,13 @@ +@@ -1194,12 +1270,14 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", -+ "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.7.tgz", ++ "integrity": "sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1209,11 +1210,13 @@ +@@ -1209,11 +1287,14 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", -+ "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.7.tgz", ++ "integrity": "sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1223,13 +1226,14 @@ +@@ -1223,13 +1304,15 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.23.3", -+ "version": "7.25.1", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", -+ "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.7.tgz", ++ "integrity": "sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-compilation-targets": "^7.24.8", -+ "@babel/helper-plugin-utils": "^7.24.8", -+ "@babel/traverse": "^7.25.1" ++ "@babel/helper-compilation-targets": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/traverse": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1239,11 +1243,12 @@ +@@ -1239,11 +1322,13 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.23.3", -+ "version": "7.25.2", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", -+ "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.7.tgz", ++ "integrity": "sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.8" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1253,11 +1258,12 @@ +@@ -1253,11 +1338,13 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", -+ "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.7.tgz", ++ "integrity": "sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1267,12 +1273,13 @@ +@@ -1267,12 +1354,14 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", -+ "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.7.tgz", ++ "integrity": "sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-module-transforms": "^7.24.7", -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-module-transforms": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1282,13 +1289,14 @@ +@@ -1282,13 +1371,15 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", -+ "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.7.tgz", ++ "integrity": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" -+ "@babel/helper-module-transforms": "^7.24.8", -+ "@babel/helper-plugin-utils": "^7.24.8", -+ "@babel/helper-simple-access": "^7.24.7" ++ "@babel/helper-module-transforms": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-simple-access": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1298,14 +1306,15 @@ +@@ -1298,14 +1389,16 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.3", -+ "version": "7.25.0", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", -+ "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.7.tgz", ++ "integrity": "sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20" -+ "@babel/helper-module-transforms": "^7.25.0", -+ "@babel/helper-plugin-utils": "^7.24.8", -+ "@babel/helper-validator-identifier": "^7.24.7", -+ "@babel/traverse": "^7.25.0" ++ "@babel/helper-module-transforms": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-validator-identifier": "^7.25.7", ++ "@babel/traverse": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1315,12 +1324,13 @@ +@@ -1315,12 +1408,14 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", -+ "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.7.tgz", ++ "integrity": "sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-module-transforms": "^7.24.7", -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-module-transforms": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1330,12 +1340,13 @@ +@@ -1330,12 +1425,14 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", -+ "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.7.tgz", ++ "integrity": "sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-create-regexp-features-plugin": "^7.24.7", -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-create-regexp-features-plugin": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1345,11 +1356,12 @@ +@@ -1345,11 +1442,13 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", -+ "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.7.tgz", ++ "integrity": "sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1359,12 +1371,13 @@ +@@ -1359,12 +1458,14 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", -+ "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.7.tgz", ++ "integrity": "sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20" -+ "@babel/helper-plugin-utils": "^7.24.7", -+ "@babel/helper-replace-supers": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-replace-supers": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1374,12 +1387,13 @@ +@@ -1374,13 +1475,14 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.4", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", -+ "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", ++ "version": "7.25.8", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.8.tgz", ++ "integrity": "sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", -+ "@babel/helper-plugin-utils": "^7.24.8", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" +- "@babel/plugin-syntax-optional-chaining": "^7.8.3" ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" }, "engines": { -@@ -1390,11 +1404,12 @@ + "node": ">=6.9.0" +@@ -1390,11 +1492,13 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", -+ "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.7.tgz", ++ "integrity": "sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1404,11 +1419,12 @@ +@@ -1404,11 +1508,13 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", -+ "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.7.tgz", ++ "integrity": "sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1418,11 +1434,12 @@ +@@ -1418,11 +1524,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", -+ "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.7.tgz", ++ "integrity": "sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", -+ "@babel/helper-plugin-utils": "^7.24.7", ++ "@babel/helper-plugin-utils": "^7.25.7", "regenerator-transform": "^0.15.2" }, "engines": { -@@ -1433,11 +1450,12 @@ +@@ -1433,11 +1541,13 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", -+ "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.7.tgz", ++ "integrity": "sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1447,11 +1465,12 @@ +@@ -1447,11 +1557,13 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", -+ "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.7.tgz", ++ "integrity": "sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1461,12 +1480,13 @@ +@@ -1461,12 +1573,14 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", -+ "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.7.tgz", ++ "integrity": "sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1476,11 +1496,12 @@ +@@ -1476,11 +1590,13 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", -+ "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.7.tgz", ++ "integrity": "sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1490,11 +1511,12 @@ +@@ -1490,11 +1606,13 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", -+ "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.7.tgz", ++ "integrity": "sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1504,11 +1526,12 @@ +@@ -1504,11 +1622,13 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.23.3", -+ "version": "7.24.8", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", -+ "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.7.tgz", ++ "integrity": "sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.8" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1518,14 +1541,16 @@ +@@ -1518,14 +1638,17 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.23.4", -+ "version": "7.25.2", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", -+ "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.7.tgz", ++ "integrity": "sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.23.3" -+ "@babel/helper-annotate-as-pure": "^7.24.7", -+ "@babel/helper-create-class-features-plugin": "^7.25.0", -+ "@babel/helper-plugin-utils": "^7.24.8", -+ "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", -+ "@babel/plugin-syntax-typescript": "^7.24.7" ++ "@babel/helper-annotate-as-pure": "^7.25.7", ++ "@babel/helper-create-class-features-plugin": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7", ++ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", ++ "@babel/plugin-syntax-typescript": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1535,11 +1560,12 @@ +@@ -1535,11 +1658,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", -+ "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.7.tgz", ++ "integrity": "sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1549,12 +1575,13 @@ +@@ -1549,12 +1674,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.23.3", -+ "version": "7.24.7", -+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", -+ "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.7.tgz", ++ "integrity": "sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" -+ "@babel/helper-create-regexp-features-plugin": "^7.24.7", -+ "@babel/helper-plugin-utils": "^7.24.7" ++ "@babel/helper-create-regexp-features-plugin": "^7.25.7", ++ "@babel/helper-plugin-utils": "^7.25.7" }, "engines": { "node": ">=6.9.0" -@@ -1565,8 +1592,9 @@ +@@ -1565,6 +1692,8 @@ }, "node_modules/@babel/preset-env": { "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.8.tgz", + "integrity": "sha512-rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.15.0", - "@babel/helper-compilation-targets": "^7.15.4", -@@ -1651,8 +1679,9 @@ +@@ -1651,6 +1780,8 @@ }, "node_modules/@babel/preset-modules": { "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz", + "integrity": "sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", -@@ -1666,8 +1695,9 @@ +@@ -1666,6 +1797,8 @@ }, "node_modules/@babel/preset-typescript": { "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz", + "integrity": "sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.16.7", - "@babel/helper-validator-option": "^7.16.7", -@@ -1682,13 +1712,15 @@ +@@ -1680,13 +1813,10 @@ + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", +- "node_modules/@babel/regjsgen": { +- "version": "0.8.0", - "dev": true, - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", -+ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", -+ "dev": true - }, +- }, "node_modules/@babel/runtime": { - "version": "7.23.4", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.4.tgz", -+ "integrity": "sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz", ++ "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "regenerator-runtime": "^0.14.0" - }, -@@ -1697,30 +1729,29 @@ +@@ -1697,30 +1827,31 @@ } }, "node_modules/@babel/template": { - "version": "7.22.15", -- "license": "MIT", -+ "version": "7.25.0", -+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", -+ "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.7.tgz", ++ "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" -+ "@babel/code-frame": "^7.24.7", -+ "@babel/parser": "^7.25.0", -+ "@babel/types": "^7.25.0" ++ "@babel/code-frame": "^7.25.7", ++ "@babel/parser": "^7.25.7", ++ "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -1693,8 +1624,11 @@ index a38125e..a1067b0 100644 }, "node_modules/@babel/traverse": { - "version": "7.23.4", -- "license": "MIT", -- "dependencies": { ++ "version": "7.25.7", ++ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.7.tgz", ++ "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==", + "license": "MIT", + "dependencies": { - "@babel/code-frame": "^7.23.4", - "@babel/generator": "^7.23.4", - "@babel/helper-environment-visitor": "^7.22.20", @@ -1704,48 +1638,42 @@ index a38125e..a1067b0 100644 - "@babel/parser": "^7.23.4", - "@babel/types": "^7.23.4", - "debug": "^4.1.0", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.4.tgz", -+ "integrity": "sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==", -+ "dependencies": { -+ "@babel/code-frame": "^7.24.7", -+ "@babel/generator": "^7.25.4", -+ "@babel/parser": "^7.25.4", -+ "@babel/template": "^7.25.0", -+ "@babel/types": "^7.25.4", ++ "@babel/code-frame": "^7.25.7", ++ "@babel/generator": "^7.25.7", ++ "@babel/parser": "^7.25.7", ++ "@babel/template": "^7.25.7", ++ "@babel/types": "^7.25.7", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { -@@ -1728,11 +1759,12 @@ +@@ -1728,11 +1859,13 @@ } }, "node_modules/@babel/types": { - "version": "7.23.4", -- "license": "MIT", -+ "version": "7.25.4", -+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.4.tgz", -+ "integrity": "sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==", ++ "version": "7.25.8", ++ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.8.tgz", ++ "integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==", + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", -+ "@babel/helper-string-parser": "^7.24.8", -+ "@babel/helper-validator-identifier": "^7.24.7", ++ "@babel/helper-string-parser": "^7.25.7", ++ "@babel/helper-validator-identifier": "^7.25.7", "to-fast-properties": "^2.0.0" }, "engines": { -@@ -1741,8 +1773,9 @@ +@@ -1741,6 +1874,8 @@ }, "node_modules/@commitlint/cli": { "version": "19.0.3", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.0.3.tgz", + "integrity": "sha512-mGhh/aYPib4Vy4h+AGRloMY+CqkmtdeKPV9poMcZeImF5e3knQ5VYaSeAM0mEzps1dbKsHvABwaDpafLUuM96g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@commitlint/format": "^19.0.3", - "@commitlint/lint": "^19.0.3", -@@ -1759,287 +1792,76 @@ +@@ -1759,285 +1894,363 @@ "node": ">=v18" } }, @@ -1757,6 +1685,7 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-vh0L8XeLaEzTe8VCxSd0gAFvfTK0RFolrzw4o431bIuWJfi/yRCHJlsDwus7wW2eJaFFDR0VFXJyjGyDQhi4vA==", "dev": true, - "license": "ISC", ++ "license": "MIT", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", @@ -1772,11 +1701,11 @@ index a38125e..a1067b0 100644 - "node_modules/@commitlint/cli/node_modules/execa": { - "version": "8.0.1", + "node_modules/@commitlint/config-validator": { -+ "version": "19.0.3", -+ "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.0.3.tgz", -+ "integrity": "sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==", ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz", ++ "integrity": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", @@ -1787,7 +1716,7 @@ index a38125e..a1067b0 100644 - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" -+ "@commitlint/types": "^19.0.3", ++ "@commitlint/types": "^19.5.0", + "ajv": "^8.11.0" }, "engines": { @@ -1801,15 +1730,15 @@ index a38125e..a1067b0 100644 - "node_modules/@commitlint/cli/node_modules/get-stream": { - "version": "8.0.1", + "node_modules/@commitlint/ensure": { -+ "version": "19.0.3", -+ "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.0.3.tgz", -+ "integrity": "sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==", ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz", ++ "integrity": "sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==", "dev": true, -- "license": "MIT", + "license": "MIT", - "engines": { - "node": ">=16" + "dependencies": { -+ "@commitlint/types": "^19.0.3", ++ "@commitlint/types": "^19.5.0", + "lodash.camelcase": "^4.3.0", + "lodash.kebabcase": "^4.1.1", + "lodash.snakecase": "^4.1.1", @@ -1825,11 +1754,12 @@ index a38125e..a1067b0 100644 - "node_modules/@commitlint/cli/node_modules/human-signals": { - "version": "5.0.0", + "node_modules/@commitlint/execute-rule": { -+ "version": "19.0.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.0.0.tgz", -+ "integrity": "sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==", ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz", ++ "integrity": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==", "dev": true, - "license": "Apache-2.0", ++ "license": "MIT", "engines": { - "node": ">=16.17.0" + "node": ">=v18" @@ -1838,121 +1768,241 @@ index a38125e..a1067b0 100644 - "node_modules/@commitlint/cli/node_modules/is-stream": { - "version": "3.0.0", + "node_modules/@commitlint/format": { -+ "version": "19.3.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.3.0.tgz", -+ "integrity": "sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==", ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz", ++ "integrity": "sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==", "dev": true, -- "license": "MIT", + "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "dependencies": { -+ "@commitlint/types": "^19.0.3", ++ "@commitlint/types": "^19.5.0", + "chalk": "^5.3.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "engines": { ++ "node": ">=v18" + } + }, - "node_modules/@commitlint/cli/node_modules/mimic-fn": { - "version": "4.0.0", -- "dev": true, -- "license": "MIT", -- "engines": { ++ "node_modules/@commitlint/format/node_modules/chalk": { ++ "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", ++ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "license": "MIT", + "engines": { - "node": ">=12" -- }, -- "funding": { ++ "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, - "node_modules/@commitlint/cli/node_modules/npm-run-path": { - "version": "5.3.0", -- "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@commitlint/is-ignored": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.5.0.tgz", ++ "integrity": "sha512-0XQ7Llsf9iL/ANtwyZ6G0NGp5Y3EQ8eDQSxv/SRcfJ0awlBY4tHFAvwWbw66FVUaWICH7iE5en+FD9TQsokZ5w==", + "dev": true, + "license": "MIT", + "dependencies": { - "path-key": "^4.0.0" -- }, -- "engines": { ++ "@commitlint/types": "^19.5.0", ++ "semver": "^7.6.0" + }, + "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -- }, ++ "node": ">=v18" ++ } ++ }, ++ "node_modules/@commitlint/is-ignored/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "dev": true, ++ "license": "ISC", ++ "bin": { ++ "semver": "bin/semver.js" + }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "engines": { ++ "node": ">=10" + } + }, - "node_modules/@commitlint/cli/node_modules/onetime": { - "version": "6.0.0", -- "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@commitlint/lint": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.5.0.tgz", ++ "integrity": "sha512-cAAQwJcRtiBxQWO0eprrAbOurtJz8U6MgYqLz+p9kLElirzSCc0vGMcyCaA1O7AqBuxo11l1XsY3FhOFowLAAg==", + "dev": true, + "license": "MIT", + "dependencies": { - "mimic-fn": "^4.0.0" -- }, -- "engines": { ++ "@commitlint/is-ignored": "^19.5.0", ++ "@commitlint/parse": "^19.5.0", ++ "@commitlint/rules": "^19.5.0", ++ "@commitlint/types": "^19.5.0" + }, + "engines": { - "node": ">=12" -- }, ++ "node": ">=v18" ++ } ++ }, ++ "node_modules/@commitlint/load": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.5.0.tgz", ++ "integrity": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "@commitlint/config-validator": "^19.5.0", ++ "@commitlint/execute-rule": "^19.5.0", ++ "@commitlint/resolve-extends": "^19.5.0", ++ "@commitlint/types": "^19.5.0", ++ "chalk": "^5.3.0", ++ "cosmiconfig": "^9.0.0", ++ "cosmiconfig-typescript-loader": "^5.0.0", ++ "lodash.isplainobject": "^4.0.6", ++ "lodash.merge": "^4.6.2", ++ "lodash.uniq": "^4.5.0" + }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "engines": { ++ "node": ">=v18" + } + }, - "node_modules/@commitlint/cli/node_modules/path-key": { - "version": "4.0.0", -- "dev": true, -- "license": "MIT", -- "engines": { ++ "node_modules/@commitlint/load/node_modules/chalk": { ++ "version": "5.3.0", ++ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", ++ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "license": "MIT", + "engines": { - "node": ">=12" -- }, -- "funding": { ++ "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, - "node_modules/@commitlint/cli/node_modules/signal-exit": { - "version": "4.1.0", -- "dev": true, ++ "node_modules/@commitlint/load/node_modules/cosmiconfig": { ++ "version": "9.0.0", ++ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", ++ "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dev": true, - "license": "ISC", -- "engines": { -- "node": ">=14" -- }, -- "funding": { ++ "license": "MIT", ++ "dependencies": { ++ "env-paths": "^2.2.1", ++ "import-fresh": "^3.3.0", ++ "js-yaml": "^4.1.0", ++ "parse-json": "^5.2.0" ++ }, + "engines": { + "node": ">=14" + }, + "funding": { - "url": "https://github.com/sponsors/isaacs" -- } -- }, ++ "url": "https://github.com/sponsors/d-fischer" ++ }, ++ "peerDependencies": { ++ "typescript": ">=4.9.5" ++ }, ++ "peerDependenciesMeta": { ++ "typescript": { ++ "optional": true ++ } + } + }, - "node_modules/@commitlint/cli/node_modules/strip-final-newline": { - "version": "3.0.0", -- "dev": true, -- "license": "MIT", -- "engines": { ++ "node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": { ++ "version": "5.1.0", ++ "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.1.0.tgz", ++ "integrity": "sha512-7PtBB+6FdsOvZyJtlF3hEPpACq7RQX6BVGsgC7/lfVXnKMvNCu/XY3ykreqG5w/rBNdu2z8LCIKoF3kpHHdHlA==", + "dev": true, + "license": "MIT", ++ "dependencies": { ++ "jiti": "^1.21.6" ++ }, + "engines": { - "node": ">=12" -- }, ++ "node": ">=v16" + }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "peerDependencies": { ++ "@types/node": "*", ++ "cosmiconfig": ">=8.2", ++ "typescript": ">=4" + } + }, - "node_modules/@commitlint/cli/node_modules/wrap-ansi": { - "version": "7.0.0", -- "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@commitlint/load/node_modules/parse-json": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" -- }, -- "engines": { ++ "@babel/code-frame": "^7.0.0", ++ "error-ex": "^1.3.1", ++ "json-parse-even-better-errors": "^2.3.0", ++ "lines-and-columns": "^1.1.6" + }, + "engines": { - "node": ">=10" -- }, -- "funding": { ++ "node": ">=8" + }, + "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" -- } -- }, ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, - "node_modules/@commitlint/cli/node_modules/y18n": { - "version": "5.0.8", -- "dev": true, ++ "node_modules/@commitlint/load/node_modules/typescript": { ++ "version": "5.6.3", ++ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", ++ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", + "dev": true, - "license": "ISC", -- "engines": { ++ "license": "Apache-2.0", ++ "peer": true, ++ "bin": { ++ "tsc": "bin/tsc", ++ "tsserver": "bin/tsserver" ++ }, + "engines": { - "node": ">=10" -- } -- }, ++ "node": ">=14.17" + } + }, - "node_modules/@commitlint/cli/node_modules/yargs": { - "version": "17.7.2", -- "dev": true, -- "license": "MIT", ++ "node_modules/@commitlint/message": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz", ++ "integrity": "sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==", + "dev": true, + "license": "MIT", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", @@ -1970,60 +2020,99 @@ index a38125e..a1067b0 100644 - "version": "21.1.1", - "dev": true, - "license": "ISC", -- "engines": { + "engines": { - "node": ">=12" -- } -- }, ++ "node": ">=v18" + } + }, - "node_modules/@commitlint/config-conventional": { - "version": "19.0.3", -- "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@commitlint/parse": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz", ++ "integrity": "sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==", + "dev": true, + "license": "MIT", + "dependencies": { - "@commitlint/types": "^19.0.3", - "conventional-changelog-conventionalcommits": "^7.0.2" -- }, -- "engines": { -- "node": ">=v18" -- } -- }, ++ "@commitlint/types": "^19.5.0", ++ "conventional-changelog-angular": "^7.0.0", ++ "conventional-commits-parser": "^5.0.0" + }, + "engines": { + "node": ">=v18" + } + }, - "node_modules/@commitlint/config-conventional/node_modules/conventional-changelog-conventionalcommits": { - "version": "7.0.2", -- "dev": true, ++ "node_modules/@commitlint/read": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz", ++ "integrity": "sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==", + "dev": true, - "license": "ISC", -- "dependencies": { ++ "license": "MIT", + "dependencies": { - "compare-func": "^2.0.0" -- }, -- "engines": { ++ "@commitlint/top-level": "^19.5.0", ++ "@commitlint/types": "^19.5.0", ++ "git-raw-commits": "^4.0.0", ++ "minimist": "^1.2.8", ++ "tinyexec": "^0.3.0" + }, + "engines": { - "node": ">=16" -- } -- }, ++ "node": ">=v18" + } + }, - "node_modules/@commitlint/config-validator": { - "version": "19.0.3", -- "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@commitlint/resolve-extends": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz", ++ "integrity": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==", + "dev": true, + "license": "MIT", + "dependencies": { - "@commitlint/types": "^19.0.3", - "ajv": "^8.11.0" -- }, -- "engines": { -- "node": ">=v18" -- } -- }, ++ "@commitlint/config-validator": "^19.5.0", ++ "@commitlint/types": "^19.5.0", ++ "global-directory": "^4.0.1", ++ "import-meta-resolve": "^4.0.0", ++ "lodash.mergewith": "^4.6.2", ++ "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=v18" + } + }, - "node_modules/@commitlint/config-validator/node_modules/ajv": { - "version": "8.12.0", -- "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@commitlint/rules": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.5.0.tgz", ++ "integrity": "sha512-hDW5TPyf/h1/EufSHEKSp6Hs+YVsDMHazfJ2azIk9tHPXS6UqSz1dIRs1gpqS3eMXgtkT7JH6TW4IShdqOwhAw==", + "dev": true, + "license": "MIT", + "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" -- }, ++ "@commitlint/ensure": "^19.5.0", ++ "@commitlint/message": "^19.5.0", ++ "@commitlint/to-lines": "^19.5.0", ++ "@commitlint/types": "^19.5.0" + }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" -- } -- }, ++ "engines": { ++ "node": ">=v18" + } + }, - "node_modules/@commitlint/config-validator/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, @@ -2031,8 +2120,12 @@ index a38125e..a1067b0 100644 - }, - "node_modules/@commitlint/ensure": { - "version": "19.0.3", -- "dev": true, -- "license": "MIT", ++ "node_modules/@commitlint/to-lines": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz", ++ "integrity": "sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==", + "dev": true, + "license": "MIT", - "dependencies": { - "@commitlint/types": "^19.0.3", - "lodash.camelcase": "^4.3.0", @@ -2041,84 +2134,121 @@ index a38125e..a1067b0 100644 - "lodash.startcase": "^4.4.0", - "lodash.upperfirst": "^4.3.1" - }, -- "engines": { -- "node": ">=v18" -- } -- }, -- "node_modules/@commitlint/execute-rule": { -- "version": "19.0.0", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=v18" -- } -- }, -- "node_modules/@commitlint/format": { -- "version": "19.0.3", -- "dev": true, -- "license": "MIT", -- "dependencies": { -- "@commitlint/types": "^19.0.3", -- "chalk": "^5.3.0" -- }, -- "engines": { -- "node": ">=v18" -+ "engines": { -+ "node": ">=v18" + "engines": { + "node": ">=v18" } }, - "node_modules/@commitlint/format/node_modules/chalk": { +- "node_modules/@commitlint/execute-rule": { +- "version": "19.0.0", ++ "node_modules/@commitlint/top-level": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz", ++ "integrity": "sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==", + "dev": true, + "license": "MIT", ++ "dependencies": { ++ "find-up": "^7.0.0" ++ }, + "engines": { + "node": ">=v18" + } + }, +- "node_modules/@commitlint/format": { +- "version": "19.0.3", ++ "node_modules/@commitlint/types": { ++ "version": "19.5.0", ++ "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz", ++ "integrity": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==", + "dev": true, + "license": "MIT", + "dependencies": { +- "@commitlint/types": "^19.0.3", ++ "@types/conventional-commits-parser": "^5.0.0", + "chalk": "^5.3.0" + }, + "engines": { + "node": ">=v18" + } + }, +- "node_modules/@commitlint/format/node_modules/chalk": { ++ "node_modules/@commitlint/types/node_modules/chalk": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, -@@ -2048,9 +1870,10 @@ +@@ -2047,775 +2260,978 @@ + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@commitlint/is-ignored": { +- "node_modules/@commitlint/is-ignored": { - "version": "19.0.3", -+ "version": "19.2.2", -+ "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.2.2.tgz", -+ "integrity": "sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==", ++ "node_modules/@cspotcode/source-map-support": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", ++ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@commitlint/types": "^19.0.3", - "semver": "^7.6.0" -@@ -2059,24 +1882,11 @@ - "node": ">=v18" +- "@commitlint/types": "^19.0.3", +- "semver": "^7.6.0" ++ "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { +- "node": ">=v18" ++ "node": ">=12" } }, - "node_modules/@commitlint/is-ignored/node_modules/lru-cache": { - "version": "6.0.0", -- "dev": true, ++ "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { ++ "version": "0.3.9", ++ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", ++ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, - "license": "ISC", -- "dependencies": { ++ "license": "MIT", + "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" -- } -- }, - "node_modules/@commitlint/is-ignored/node_modules/semver": { ++ "@jridgewell/resolve-uri": "^3.0.3", ++ "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, +- "node_modules/@commitlint/is-ignored/node_modules/semver": { - "version": "7.6.0", -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "node_modules/@csstools/css-parser-algorithms": { ++ "version": "2.7.1", ++ "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.7.1.tgz", ++ "integrity": "sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==", "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, -@@ -2084,17 +1894,13 @@ - "node": ">=10" +- "bin": { +- "semver": "bin/semver.js" +- }, ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], ++ "license": "MIT", + "engines": { +- "node": ">=10" ++ "node": "^14 || ^16 || >=18" ++ }, ++ "peerDependencies": { ++ "@csstools/css-tokenizer": "^2.4.1" } }, - "node_modules/@commitlint/is-ignored/node_modules/yallist": { @@ -2126,161 +2256,278 @@ index a38125e..a1067b0 100644 - "dev": true, - "license": "ISC" - }, - "node_modules/@commitlint/lint": { +- "node_modules/@commitlint/lint": { - "version": "19.0.3", -+ "version": "19.2.2", -+ "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.2.2.tgz", -+ "integrity": "sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==", ++ "node_modules/@csstools/css-tokenizer": { ++ "version": "2.4.1", ++ "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.4.1.tgz", ++ "integrity": "sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==", "dev": true, -- "license": "MIT", - "dependencies": { ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], + "license": "MIT", +- "dependencies": { - "@commitlint/is-ignored": "^19.0.3", -+ "@commitlint/is-ignored": "^19.2.2", - "@commitlint/parse": "^19.0.3", - "@commitlint/rules": "^19.0.3", - "@commitlint/types": "^19.0.3" -@@ -2104,16 +1910,17 @@ - } - }, - "node_modules/@commitlint/load": { -- "version": "19.0.3", -+ "version": "19.4.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.4.0.tgz", -+ "integrity": "sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@commitlint/config-validator": "^19.0.3", - "@commitlint/execute-rule": "^19.0.0", -- "@commitlint/resolve-extends": "^19.0.3", -+ "@commitlint/resolve-extends": "^19.1.0", - "@commitlint/types": "^19.0.3", - "chalk": "^5.3.0", -- "cosmiconfig": "^8.3.6", -+ "cosmiconfig": "^9.0.0", - "cosmiconfig-typescript-loader": "^5.0.0", - "lodash.isplainobject": "^4.0.6", - "lodash.merge": "^4.6.2", -@@ -2125,8 +1932,9 @@ - }, - "node_modules/@commitlint/load/node_modules/chalk": { - "version": "5.3.0", -+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", -+ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, -- "license": "MIT", +- "@commitlint/parse": "^19.0.3", +- "@commitlint/rules": "^19.0.3", +- "@commitlint/types": "^19.0.3" +- }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, -@@ -2135,14 +1943,15 @@ +- "node": ">=v18" ++ "node": "^14 || ^16 || >=18" } }, - "node_modules/@commitlint/load/node_modules/cosmiconfig": { -- "version": "8.3.6", -+ "version": "9.0.0", -+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", -+ "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", +- "node_modules/@commitlint/load": { +- "version": "19.0.3", ++ "node_modules/@csstools/media-query-list-parser": { ++ "version": "2.1.13", ++ "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.13.tgz", ++ "integrity": "sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==", + "dev": true, ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], + "license": "MIT", +- "dependencies": { +- "@commitlint/config-validator": "^19.0.3", +- "@commitlint/execute-rule": "^19.0.0", +- "@commitlint/resolve-extends": "^19.0.3", +- "@commitlint/types": "^19.0.3", +- "chalk": "^5.3.0", +- "cosmiconfig": "^8.3.6", +- "cosmiconfig-typescript-loader": "^5.0.0", +- "lodash.isplainobject": "^4.0.6", +- "lodash.merge": "^4.6.2", +- "lodash.uniq": "^4.5.0" +- }, + "engines": { +- "node": ">=v18" ++ "node": "^14 || ^16 || >=18" ++ }, ++ "peerDependencies": { ++ "@csstools/css-parser-algorithms": "^2.7.1", ++ "@csstools/css-tokenizer": "^2.4.1" + } + }, +- "node_modules/@commitlint/load/node_modules/chalk": { +- "version": "5.3.0", ++ "node_modules/@csstools/selector-specificity": { ++ "version": "3.1.1", ++ "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", ++ "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", "dev": true, - "license": "MIT", ++ "funding": [ ++ { ++ "type": "github", ++ "url": "https://github.com/sponsors/csstools" ++ }, ++ { ++ "type": "opencollective", ++ "url": "https://opencollective.com/csstools" ++ } ++ ], ++ "license": "MIT-0", + "engines": { +- "node": "^12.17.0 || ^14.13 || >=16.0.0" ++ "node": "^14 || ^16 || >=18" + }, +- "funding": { +- "url": "https://github.com/chalk/chalk?sponsor=1" ++ "peerDependencies": { ++ "postcss-selector-parser": "^6.0.13" + } + }, +- "node_modules/@commitlint/load/node_modules/cosmiconfig": { +- "version": "8.3.6", ++ "node_modules/@develar/schema-utils": { ++ "version": "2.6.5", ++ "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", ++ "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", + "dev": true, + "license": "MIT", "dependencies": { -+ "env-paths": "^2.2.1", - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", +- "import-fresh": "^3.3.0", +- "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" -+ "parse-json": "^5.2.0" ++ "ajv": "^6.12.0", ++ "ajv-keywords": "^3.4.1" }, "engines": { - "node": ">=14" -@@ -2161,8 +1970,9 @@ - }, - "node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": { - "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.0.0.tgz", -+ "integrity": "sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==", - "dev": true, -- "license": "MIT", - "dependencies": { - "jiti": "^1.19.1" +- "node": ">=14" ++ "node": ">= 8.9.0" }, -@@ -2177,8 +1987,9 @@ - }, - "node_modules/@commitlint/load/node_modules/parse-json": { - "version": "5.2.0", -+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", -+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", -@@ -2193,9 +2004,10 @@ + "funding": { +- "url": "https://github.com/sponsors/d-fischer" +- }, +- "peerDependencies": { +- "typescript": ">=4.9.5" +- }, +- "peerDependenciesMeta": { +- "typescript": { +- "optional": true +- } ++ "type": "opencollective", ++ "url": "https://opencollective.com/webpack" } }, - "node_modules/@commitlint/load/node_modules/typescript": { +- "node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": { +- "version": "5.0.0", ++ "node_modules/@develar/schema-utils/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { +- "jiti": "^1.19.1" +- }, +- "engines": { +- "node": ">=v16" ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" + }, +- "peerDependencies": { +- "@types/node": "*", +- "cosmiconfig": ">=8.2", +- "typescript": ">=4" ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" + } + }, +- "node_modules/@commitlint/load/node_modules/parse-json": { +- "version": "5.2.0", ++ "node_modules/@develar/schema-utils/node_modules/ajv-keywords": { ++ "version": "3.5.2", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", ++ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "license": "MIT", +- "dependencies": { +- "@babel/code-frame": "^7.0.0", +- "error-ex": "^1.3.1", +- "json-parse-even-better-errors": "^2.3.0", +- "lines-and-columns": "^1.1.6" +- }, +- "engines": { +- "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "peerDependencies": { ++ "ajv": "^6.9.1" + } + }, +- "node_modules/@commitlint/load/node_modules/typescript": { - "version": "5.4.2", -+ "version": "5.5.4", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", -+ "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", ++ "node_modules/@develar/schema-utils/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, - "license": "Apache-2.0", - "peer": true, - "bin": { - "tsc": "bin/tsc", -@@ -2207,16 +2019,18 @@ - }, - "node_modules/@commitlint/message": { - "version": "19.0.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.0.0.tgz", -+ "integrity": "sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==", - "dev": true, -- "license": "MIT", +- "peer": true, +- "bin": { +- "tsc": "bin/tsc", +- "tsserver": "bin/tsserver" +- }, ++ "license": "MIT" ++ }, ++ "node_modules/@discoveryjs/json-ext": { ++ "version": "0.5.7", ++ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", ++ "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", ++ "license": "MIT", "engines": { - "node": ">=v18" +- "node": ">=14.17" ++ "node": ">=10.0.0" } }, - "node_modules/@commitlint/parse": { - "version": "19.0.3", -+ "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.0.3.tgz", -+ "integrity": "sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==", +- "node_modules/@commitlint/message": { +- "version": "19.0.0", ++ "node_modules/@electron/asar": { ++ "version": "3.2.13", ++ "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.13.tgz", ++ "integrity": "sha512-pY5z2qQSwbFzJsBdgfJIzXf5ElHTVMutC2dxh0FD60njknMu3n1NnTABOcQwbb5/v5soqE79m9UjaJryBf3epg==", "dev": true, -- "license": "MIT", + "license": "MIT", ++ "dependencies": { ++ "@types/glob": "^7.1.0", ++ "commander": "^5.0.0", ++ "glob": "^7.1.6", ++ "minimatch": "^3.0.4" ++ }, ++ "bin": { ++ "asar": "bin/asar.js" ++ }, + "engines": { +- "node": ">=v18" ++ "node": ">=10.12.0" + } + }, +- "node_modules/@commitlint/parse": { +- "version": "19.0.3", ++ "node_modules/@electron/asar/node_modules/brace-expansion": { ++ "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", "dependencies": { - "@commitlint/types": "^19.0.3", - "conventional-changelog-angular": "^7.0.0", -@@ -2226,555 +2040,734 @@ - "node": ">=v18" +- "@commitlint/types": "^19.0.3", +- "conventional-changelog-angular": "^7.0.0", +- "conventional-commits-parser": "^5.0.0" +- }, +- "engines": { +- "node": ">=v18" ++ "balanced-match": "^1.0.0", ++ "concat-map": "0.0.1" } }, - "node_modules/@commitlint/parse/node_modules/conventional-changelog-angular": { - "version": "7.0.0", -+ "node_modules/@commitlint/read": { -+ "version": "19.4.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.4.0.tgz", -+ "integrity": "sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==", ++ "node_modules/@electron/asar/node_modules/minimatch": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "compare-func": "^2.0.0" -+ "@commitlint/top-level": "^19.0.0", -+ "@commitlint/types": "^19.0.3", -+ "execa": "^8.0.1", -+ "git-raw-commits": "^4.0.0", -+ "minimist": "^1.2.8" ++ "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=16" -+ "node": ">=v18" ++ "node": "*" } }, - "node_modules/@commitlint/parse/node_modules/conventional-commits-parser": { - "version": "5.0.0", -+ "node_modules/@commitlint/resolve-extends": { -+ "version": "19.1.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.1.0.tgz", -+ "integrity": "sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@electron/get": { ++ "version": "2.0.3", ++ "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz", ++ "integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==", + "license": "MIT", "dependencies": { - "is-text-path": "^2.0.0", - "JSONStream": "^1.3.5", @@ -2289,118 +2536,138 @@ index a38125e..a1067b0 100644 - }, - "bin": { - "conventional-commits-parser": "cli.mjs" -+ "@commitlint/config-validator": "^19.0.3", -+ "@commitlint/types": "^19.0.3", -+ "global-directory": "^4.0.1", -+ "import-meta-resolve": "^4.0.0", -+ "lodash.mergewith": "^4.6.2", -+ "resolve-from": "^5.0.0" ++ "debug": "^4.1.1", ++ "env-paths": "^2.2.0", ++ "fs-extra": "^8.1.0", ++ "got": "^11.8.5", ++ "progress": "^2.0.3", ++ "semver": "^6.2.0", ++ "sumchecker": "^3.0.1" }, "engines": { - "node": ">=16" -+ "node": ">=v18" ++ "node": ">=12" ++ }, ++ "optionalDependencies": { ++ "global-agent": "^3.0.0" } }, - "node_modules/@commitlint/parse/node_modules/is-text-path": { - "version": "2.0.0", -+ "node_modules/@commitlint/rules": { -+ "version": "19.0.3", -+ "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.0.3.tgz", -+ "integrity": "sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==", ++ "node_modules/@electron/notarize": { ++ "version": "2.2.1", ++ "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-2.2.1.tgz", ++ "integrity": "sha512-aL+bFMIkpR0cmmj5Zgy0LMKEpgy43/hw5zadEArgmAMWWlKc5buwFvFT9G/o/YJkvXAJm5q3iuTuLaiaXW39sg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "text-extensions": "^2.0.0" -+ "@commitlint/ensure": "^19.0.3", -+ "@commitlint/message": "^19.0.0", -+ "@commitlint/to-lines": "^19.0.0", -+ "@commitlint/types": "^19.0.3", -+ "execa": "^8.0.1" ++ "debug": "^4.1.1", ++ "fs-extra": "^9.0.1", ++ "promise-retry": "^2.0.1" }, "engines": { - "node": ">=8" -+ "node": ">=v18" ++ "node": ">= 10.0.0" } }, - "node_modules/@commitlint/parse/node_modules/meow": { - "version": "12.1.1", -+ "node_modules/@commitlint/to-lines": { -+ "version": "19.0.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.0.0.tgz", -+ "integrity": "sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==", ++ "node_modules/@electron/notarize/node_modules/fs-extra": { ++ "version": "9.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", ++ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, -- "license": "MIT", - "engines": { -- "node": ">=16.10" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">=v18" - } - }, -- "node_modules/@commitlint/parse/node_modules/text-extensions": { -- "version": "2.4.0", -+ "node_modules/@commitlint/top-level": { -+ "version": "19.0.0", -+ "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.0.0.tgz", -+ "integrity": "sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==", - "dev": true, -- "license": "MIT", + "license": "MIT", - "engines": { -- "node": ">=8" +- "node": ">=16.10" + "dependencies": { -+ "find-up": "^7.0.0" ++ "at-least-node": "^1.0.0", ++ "graceful-fs": "^4.2.0", ++ "jsonfile": "^6.0.1", ++ "universalify": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { -+ "node": ">=v18" ++ "node": ">=10" + } + }, +- "node_modules/@commitlint/parse/node_modules/text-extensions": { +- "version": "2.4.0", ++ "node_modules/@electron/notarize/node_modules/jsonfile": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "license": "MIT", +- "engines": { +- "node": ">=8" ++ "dependencies": { ++ "universalify": "^2.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "optionalDependencies": { ++ "graceful-fs": "^4.1.6" } }, - "node_modules/@commitlint/read": { -+ "node_modules/@commitlint/types": { - "version": "19.0.3", -+ "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.0.3.tgz", -+ "integrity": "sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==", +- "version": "19.0.3", ++ "node_modules/@electron/notarize/node_modules/universalify": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, -- "license": "MIT", - "dependencies": { + "license": "MIT", +- "dependencies": { - "@commitlint/top-level": "^19.0.0", - "@commitlint/types": "^19.0.3", - "git-raw-commits": "^4.0.0", - "minimist": "^1.2.8" -+ "@types/conventional-commits-parser": "^5.0.0", -+ "chalk": "^5.3.0" - }, +- }, "engines": { - "node": ">=v18" +- "node": ">=v18" ++ "node": ">= 10.0.0" } }, - "node_modules/@commitlint/read/node_modules/dargs": { - "version": "8.1.0", -+ "node_modules/@commitlint/types/node_modules/chalk": { -+ "version": "5.3.0", -+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", -+ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", ++ "node_modules/@electron/osx-sign": { ++ "version": "1.0.5", ++ "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.5.tgz", ++ "integrity": "sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww==", "dev": true, - "license": "MIT", - "engines": { +- "engines": { - "node": ">=12" -+ "node": "^12.17.0 || ^14.13 || >=16.0.0" ++ "license": "BSD-2-Clause", ++ "dependencies": { ++ "compare-version": "^0.1.2", ++ "debug": "^4.3.4", ++ "fs-extra": "^10.0.0", ++ "isbinaryfile": "^4.0.8", ++ "minimist": "^1.2.6", ++ "plist": "^3.0.5" }, - "funding": { +- "funding": { - "url": "https://github.com/sponsors/sindresorhus" -+ "url": "https://github.com/chalk/chalk?sponsor=1" ++ "bin": { ++ "electron-osx-flat": "bin/electron-osx-flat.js", ++ "electron-osx-sign": "bin/electron-osx-sign.js" ++ }, ++ "engines": { ++ "node": ">=12.0.0" } }, - "node_modules/@commitlint/read/node_modules/git-raw-commits": { - "version": "4.0.0", -+ "node_modules/@cspotcode/source-map-support": { -+ "version": "0.8.1", -+ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", -+ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", ++ "node_modules/@electron/osx-sign/node_modules/fs-extra": { ++ "version": "10.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", ++ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "dargs": "^8.0.0", - "meow": "^12.0.1", @@ -2408,7 +2675,9 @@ index a38125e..a1067b0 100644 - }, - "bin": { - "git-raw-commits": "cli.mjs" -+ "@jridgewell/trace-mapping": "0.3.9" ++ "graceful-fs": "^4.2.0", ++ "jsonfile": "^6.0.1", ++ "universalify": "^2.0.0" }, "engines": { - "node": ">=16" @@ -2417,141 +2686,101 @@ index a38125e..a1067b0 100644 }, - "node_modules/@commitlint/read/node_modules/meow": { - "version": "12.1.1", -+ "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { -+ "version": "0.3.9", -+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", -+ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", ++ "node_modules/@electron/osx-sign/node_modules/isbinaryfile": { ++ "version": "4.0.10", ++ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", ++ "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", "dev": true, -- "license": "MIT", -+ "dependencies": { -+ "@jridgewell/resolve-uri": "^3.0.3", -+ "@jridgewell/sourcemap-codec": "^1.4.10" -+ } -+ }, -+ "node_modules/@csstools/css-parser-algorithms": { -+ "version": "2.7.1", -+ "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.7.1.tgz", -+ "integrity": "sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==", -+ "dev": true, -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], + "license": "MIT", "engines": { - "node": ">=16.10" -+ "node": "^14 || ^16 || >=18" ++ "node": ">= 8.0.0" }, -- "funding": { + "funding": { - "url": "https://github.com/sponsors/sindresorhus" -+ "peerDependencies": { -+ "@csstools/css-tokenizer": "^2.4.1" ++ "url": "https://github.com/sponsors/gjtorikian/" } }, - "node_modules/@commitlint/resolve-extends": { - "version": "19.0.3", -+ "node_modules/@csstools/css-tokenizer": { -+ "version": "2.4.1", -+ "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.4.1.tgz", -+ "integrity": "sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==", ++ "node_modules/@electron/osx-sign/node_modules/jsonfile": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, -- "license": "MIT", -- "dependencies": { + "license": "MIT", + "dependencies": { - "@commitlint/config-validator": "^19.0.3", - "@commitlint/types": "^19.0.3", - "global-directory": "^4.0.1", - "import-meta-resolve": "^4.0.0", - "lodash.mergewith": "^4.6.2", - "resolve-from": "^5.0.0" -- }, -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], - "engines": { ++ "universalify": "^2.0.0" + }, +- "engines": { - "node": ">=v18" -+ "node": "^14 || ^16 || >=18" ++ "optionalDependencies": { ++ "graceful-fs": "^4.1.6" } }, - "node_modules/@commitlint/resolve-extends/node_modules/resolve-from": { - "version": "5.0.0", -+ "node_modules/@csstools/media-query-list-parser": { -+ "version": "2.1.13", -+ "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.13.tgz", -+ "integrity": "sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==", ++ "node_modules/@electron/osx-sign/node_modules/universalify": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, -- "license": "MIT", -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], + "license": "MIT", "engines": { - "node": ">=8" -+ "node": "^14 || ^16 || >=18" -+ }, -+ "peerDependencies": { -+ "@csstools/css-parser-algorithms": "^2.7.1", -+ "@csstools/css-tokenizer": "^2.4.1" ++ "node": ">= 10.0.0" } }, - "node_modules/@commitlint/rules": { - "version": "19.0.3", -+ "node_modules/@csstools/selector-specificity": { -+ "version": "3.1.1", -+ "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", -+ "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", ++ "node_modules/@electron/remote": { ++ "version": "2.1.2", ++ "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.1.2.tgz", ++ "integrity": "sha512-EPwNx+nhdrTBxyCqXt/pftoQg/ybtWDW3DUWHafejvnB1ZGGfMpv6e15D8KeempocjXe78T7WreyGGb3mlZxdA==", ++ "license": "MIT", ++ "peerDependencies": { ++ "electron": ">= 13.0.0" ++ } ++ }, ++ "node_modules/@electron/universal": { ++ "version": "1.5.1", ++ "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.5.1.tgz", ++ "integrity": "sha512-kbgXxyEauPJiQQUNG2VgUeyfQNFk6hBF11ISN2PNI6agUgPl55pv4eQmaqHzTAzchBvqZ2tQuRVaPStGf0mxGw==", "dev": true, -- "license": "MIT", -- "dependencies": { + "license": "MIT", + "dependencies": { - "@commitlint/ensure": "^19.0.3", - "@commitlint/message": "^19.0.0", - "@commitlint/to-lines": "^19.0.0", - "@commitlint/types": "^19.0.3", - "execa": "^8.0.1" -- }, -+ "funding": [ -+ { -+ "type": "github", -+ "url": "https://github.com/sponsors/csstools" -+ }, -+ { -+ "type": "opencollective", -+ "url": "https://opencollective.com/csstools" -+ } -+ ], ++ "@electron/asar": "^3.2.1", ++ "@malept/cross-spawn-promise": "^1.1.0", ++ "debug": "^4.3.1", ++ "dir-compare": "^3.0.0", ++ "fs-extra": "^9.0.1", ++ "minimatch": "^3.0.4", ++ "plist": "^3.0.4" + }, "engines": { - "node": ">=v18" -+ "node": "^14 || ^16 || >=18" -+ }, -+ "peerDependencies": { -+ "postcss-selector-parser": "^6.0.13" ++ "node": ">=8.6" } }, - "node_modules/@commitlint/rules/node_modules/execa": { - "version": "8.0.1", -+ "node_modules/@develar/schema-utils": { -+ "version": "2.6.5", -+ "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", -+ "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", ++ "node_modules/@electron/universal/node_modules/brace-expansion": { ++ "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", @@ -2562,365 +2791,6 @@ index a38125e..a1067b0 100644 - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" -+ "ajv": "^6.12.0", -+ "ajv-keywords": "^3.4.1" - }, - "engines": { -- "node": ">=16.17" -+ "node": ">= 8.9.0" - }, - "funding": { -- "url": "https://github.com/sindresorhus/execa?sponsor=1" -+ "type": "opencollective", -+ "url": "https://opencollective.com/webpack" - } - }, -- "node_modules/@commitlint/rules/node_modules/get-stream": { -- "version": "8.0.1", -+ "node_modules/@develar/schema-utils/node_modules/ajv": { -+ "version": "6.12.6", -+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", -+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=16" -+ "dependencies": { -+ "fast-deep-equal": "^3.1.1", -+ "fast-json-stable-stringify": "^2.0.0", -+ "json-schema-traverse": "^0.4.1", -+ "uri-js": "^4.2.2" - }, - "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "type": "github", -+ "url": "https://github.com/sponsors/epoberezkin" - } - }, -- "node_modules/@commitlint/rules/node_modules/human-signals": { -- "version": "5.0.0", -+ "node_modules/@develar/schema-utils/node_modules/ajv-keywords": { -+ "version": "3.5.2", -+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", -+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, -- "license": "Apache-2.0", -+ "peerDependencies": { -+ "ajv": "^6.9.1" -+ } -+ }, -+ "node_modules/@develar/schema-utils/node_modules/json-schema-traverse": { -+ "version": "0.4.1", -+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", -+ "dev": true -+ }, -+ "node_modules/@discoveryjs/json-ext": { -+ "version": "0.5.7", -+ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", -+ "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "engines": { -- "node": ">=16.17.0" -+ "node": ">=10.0.0" - } - }, -- "node_modules/@commitlint/rules/node_modules/is-stream": { -- "version": "3.0.0", -+ "node_modules/@electron/asar": { -+ "version": "3.2.10", -+ "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.10.tgz", -+ "integrity": "sha512-mvBSwIBUeiRscrCeJE1LwctAriBj65eUDm0Pc11iE5gRwzkmsdbS7FnZ1XUWjpSeQWL1L5g12Fc/SchPM9DUOw==", - "dev": true, -- "license": "MIT", -- "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -+ "dependencies": { -+ "commander": "^5.0.0", -+ "glob": "^7.1.6", -+ "minimatch": "^3.0.4" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "bin": { -+ "asar": "bin/asar.js" -+ }, -+ "engines": { -+ "node": ">=10.12.0" - } - }, -- "node_modules/@commitlint/rules/node_modules/mimic-fn": { -- "version": "4.0.0", -+ "node_modules/@electron/asar/node_modules/brace-expansion": { -+ "version": "1.1.11", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", -+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=12" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "dependencies": { -+ "balanced-match": "^1.0.0", -+ "concat-map": "0.0.1" - } - }, -- "node_modules/@commitlint/rules/node_modules/npm-run-path": { -- "version": "5.3.0", -+ "node_modules/@electron/asar/node_modules/minimatch": { -+ "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", -+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "path-key": "^4.0.0" -+ "brace-expansion": "^1.1.7" - }, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": "*" - } - }, -- "node_modules/@commitlint/rules/node_modules/onetime": { -- "version": "6.0.0", -- "dev": true, -- "license": "MIT", -+ "node_modules/@electron/get": { -+ "version": "2.0.3", -+ "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz", -+ "integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==", - "dependencies": { -- "mimic-fn": "^4.0.0" -+ "debug": "^4.1.1", -+ "env-paths": "^2.2.0", -+ "fs-extra": "^8.1.0", -+ "got": "^11.8.5", -+ "progress": "^2.0.3", -+ "semver": "^6.2.0", -+ "sumchecker": "^3.0.1" - }, - "engines": { - "node": ">=12" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "optionalDependencies": { -+ "global-agent": "^3.0.0" - } - }, -- "node_modules/@commitlint/rules/node_modules/path-key": { -- "version": "4.0.0", -+ "node_modules/@electron/notarize": { -+ "version": "2.2.1", -+ "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-2.2.1.tgz", -+ "integrity": "sha512-aL+bFMIkpR0cmmj5Zgy0LMKEpgy43/hw5zadEArgmAMWWlKc5buwFvFT9G/o/YJkvXAJm5q3iuTuLaiaXW39sg==", - "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=12" -+ "dependencies": { -+ "debug": "^4.1.1", -+ "fs-extra": "^9.0.1", -+ "promise-retry": "^2.0.1" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "engines": { -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@commitlint/rules/node_modules/signal-exit": { -- "version": "4.1.0", -+ "node_modules/@electron/notarize/node_modules/fs-extra": { -+ "version": "9.1.0", -+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", -+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, -- "license": "ISC", -- "engines": { -- "node": ">=14" -+ "dependencies": { -+ "at-least-node": "^1.0.0", -+ "graceful-fs": "^4.2.0", -+ "jsonfile": "^6.0.1", -+ "universalify": "^2.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/isaacs" -+ "engines": { -+ "node": ">=10" - } - }, -- "node_modules/@commitlint/rules/node_modules/strip-final-newline": { -- "version": "3.0.0", -+ "node_modules/@electron/notarize/node_modules/jsonfile": { -+ "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", -+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=12" -+ "dependencies": { -+ "universalify": "^2.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "optionalDependencies": { -+ "graceful-fs": "^4.1.6" - } - }, -- "node_modules/@commitlint/to-lines": { -- "version": "19.0.0", -+ "node_modules/@electron/notarize/node_modules/universalify": { -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", -+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, -- "license": "MIT", - "engines": { -- "node": ">=v18" -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@commitlint/top-level": { -- "version": "19.0.0", -+ "node_modules/@electron/osx-sign": { -+ "version": "1.0.5", -+ "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.5.tgz", -+ "integrity": "sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "find-up": "^7.0.0" -+ "compare-version": "^0.1.2", -+ "debug": "^4.3.4", -+ "fs-extra": "^10.0.0", -+ "isbinaryfile": "^4.0.8", -+ "minimist": "^1.2.6", -+ "plist": "^3.0.5" -+ }, -+ "bin": { -+ "electron-osx-flat": "bin/electron-osx-flat.js", -+ "electron-osx-sign": "bin/electron-osx-sign.js" - }, - "engines": { -- "node": ">=v18" -+ "node": ">=12.0.0" - } - }, -- "node_modules/@commitlint/top-level/node_modules/find-up": { -- "version": "7.0.0", -+ "node_modules/@electron/osx-sign/node_modules/fs-extra": { -+ "version": "10.1.0", -+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", -+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "locate-path": "^7.2.0", -- "path-exists": "^5.0.0", -- "unicorn-magic": "^0.1.0" -+ "graceful-fs": "^4.2.0", -+ "jsonfile": "^6.0.1", -+ "universalify": "^2.0.0" - }, - "engines": { -- "node": ">=18" -+ "node": ">=12" -+ } -+ }, -+ "node_modules/@electron/osx-sign/node_modules/isbinaryfile": { -+ "version": "4.0.10", -+ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", -+ "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", -+ "dev": true, -+ "engines": { -+ "node": ">= 8.0.0" - }, - "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "url": "https://github.com/sponsors/gjtorikian/" - } - }, -- "node_modules/@commitlint/top-level/node_modules/locate-path": { -- "version": "7.2.0", -+ "node_modules/@electron/osx-sign/node_modules/jsonfile": { -+ "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", -+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "p-locate": "^6.0.0" -+ "universalify": "^2.0.0" - }, -+ "optionalDependencies": { -+ "graceful-fs": "^4.1.6" -+ } -+ }, -+ "node_modules/@electron/osx-sign/node_modules/universalify": { -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", -+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", -+ "dev": true, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">= 10.0.0" - } - }, -- "node_modules/@commitlint/top-level/node_modules/p-limit": { -- "version": "4.0.0", -+ "node_modules/@electron/remote": { -+ "version": "2.1.2", -+ "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.1.2.tgz", -+ "integrity": "sha512-EPwNx+nhdrTBxyCqXt/pftoQg/ybtWDW3DUWHafejvnB1ZGGfMpv6e15D8KeempocjXe78T7WreyGGb3mlZxdA==", -+ "peerDependencies": { -+ "electron": ">= 13.0.0" -+ } -+ }, -+ "node_modules/@electron/universal": { -+ "version": "1.5.1", -+ "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.5.1.tgz", -+ "integrity": "sha512-kbgXxyEauPJiQQUNG2VgUeyfQNFk6hBF11ISN2PNI6agUgPl55pv4eQmaqHzTAzchBvqZ2tQuRVaPStGf0mxGw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "yocto-queue": "^1.0.0" -+ "@electron/asar": "^3.2.1", -+ "@malept/cross-spawn-promise": "^1.1.0", -+ "debug": "^4.3.1", -+ "dir-compare": "^3.0.0", -+ "fs-extra": "^9.0.1", -+ "minimatch": "^3.0.4", -+ "plist": "^3.0.4" - }, - "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">=8.6" - } - }, -- "node_modules/@commitlint/top-level/node_modules/p-locate": { -- "version": "6.0.0", -+ "node_modules/@electron/universal/node_modules/brace-expansion": { -+ "version": "1.1.11", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", -+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "p-limit": "^4.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } @@ -2930,6 +2800,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", @@ -2937,15 +2808,23 @@ index a38125e..a1067b0 100644 + "universalify": "^2.0.0" }, "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- "node": ">=16.17" +- }, +- "funding": { +- "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=10" -+ } -+ }, + } + }, +- "node_modules/@commitlint/rules/node_modules/get-stream": { +- "version": "8.0.1", + "node_modules/@electron/universal/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", -+ "dev": true, + "dev": true, + "license": "MIT", +- "engines": { +- "node": ">=16" + "dependencies": { + "universalify": "^2.0.0" }, @@ -2955,49 +2834,50 @@ index a38125e..a1067b0 100644 + "graceful-fs": "^4.1.6" } }, -- "node_modules/@commitlint/top-level/node_modules/path-exists": { +- "node_modules/@commitlint/rules/node_modules/human-signals": { - "version": "5.0.0", + "node_modules/@electron/universal/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, -- "license": "MIT", +- "license": "Apache-2.0", ++ "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { -- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- "node": ">=16.17.0" + "node": "*" } }, -- "node_modules/@commitlint/top-level/node_modules/yocto-queue": { -- "version": "1.0.0", +- "node_modules/@commitlint/rules/node_modules/is-stream": { +- "version": "3.0.0", + "node_modules/@electron/universal/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { -- "node": ">=12.20" +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 10.0.0" } }, -- "node_modules/@commitlint/types": { -- "version": "19.0.3", +- "node_modules/@commitlint/rules/node_modules/mimic-fn": { +- "version": "4.0.0", + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", "dev": true, -- "license": "MIT", - "dependencies": { -- "@types/conventional-commits-parser": "^5.0.0", -- "chalk": "^5.3.0" + "license": "MIT", +- "engines": { +- "node": ">=12" ++ "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", @@ -3008,70 +2888,444 @@ index a38125e..a1067b0 100644 + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" }, - "engines": { -- "node": ">=v18" +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "engines": { + "node": "^10.12.0 || >=12.0.0" } }, -- "node_modules/@commitlint/types/node_modules/chalk": { +- "node_modules/@commitlint/rules/node_modules/npm-run-path": { - "version": "5.3.0", + "node_modules/@eslint/eslintrc/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, -- "license": "MIT", + "license": "MIT", + "dependencies": { +- "path-key": "^4.0.0" +- }, - "engines": { -- "node": "^12.17.0 || ^14.13 || >=16.0.0" -+ "dependencies": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { -- "url": "https://github.com/chalk/chalk?sponsor=1" +- "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, -- "node_modules/@cspotcode/source-map-support": { -- "version": "0.8.1", +- "node_modules/@commitlint/rules/node_modules/onetime": { +- "version": "6.0.0", + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { -- "@jridgewell/trace-mapping": "0.3.9" -- }, -- "engines": { -- "node": ">=12" +- "mimic-fn": "^4.0.0" + "sprintf-js": "~1.0.2" - } - }, -- "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { -- "version": "0.3.9", ++ } ++ }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@jridgewell/resolve-uri": "^3.0.3", -- "@jridgewell/sourcemap-codec": "^1.4.10" ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" - } - }, -- "node_modules/@csstools/css-parser-algorithms": { -- "version": "2.3.2", ++ } ++ }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "type-fest": "^0.20.2" + }, + "engines": { +- "node": ">=12" ++ "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@commitlint/rules/node_modules/path-key": { +- "version": "4.0.0", ++ "node_modules/@eslint/eslintrc/node_modules/ignore": { ++ "version": "4.0.6", ++ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", ++ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "license": "MIT", + "engines": { +- "node": ">=12" ++ "node": ">= 4" ++ } ++ }, ++ "node_modules/@eslint/eslintrc/node_modules/js-yaml": { ++ "version": "3.14.1", ++ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", ++ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "argparse": "^1.0.7", ++ "esprima": "^4.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "bin": { ++ "js-yaml": "bin/js-yaml.js" + } + }, +- "node_modules/@commitlint/rules/node_modules/signal-exit": { +- "version": "4.1.0", ++ "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/@eslint/eslintrc/node_modules/minimatch": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", +- "engines": { +- "node": ">=14" ++ "dependencies": { ++ "brace-expansion": "^1.1.7" + }, +- "funding": { +- "url": "https://github.com/sponsors/isaacs" ++ "engines": { ++ "node": "*" + } + }, +- "node_modules/@commitlint/rules/node_modules/strip-final-newline": { +- "version": "3.0.0", ++ "node_modules/@eslint/eslintrc/node_modules/sprintf-js": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", ++ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, +- "license": "MIT", ++ "license": "BSD-3-Clause" ++ }, ++ "node_modules/@eslint/eslintrc/node_modules/type-fest": { ++ "version": "0.20.2", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", ++ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", ++ "dev": true, ++ "license": "(MIT OR CC0-1.0)", + "engines": { +- "node": ">=12" ++ "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@commitlint/to-lines": { +- "version": "19.0.0", +- "dev": true, ++ "node_modules/@fabio286/ssh2-promise": { ++ "version": "1.0.4-b", ++ "resolved": "https://registry.npmjs.org/@fabio286/ssh2-promise/-/ssh2-promise-1.0.4-b.tgz", ++ "integrity": "sha512-tqYu7yX4GQXpM4zN80s2EURLgMNyrUDJaImZqIHIRkCxjwq3mdK7uATF4zXu/je9XRD3OVfkQXRoY+H9LwlVoA==", ++ "license": "MIT", ++ "dependencies": { ++ "@heroku/socksv5": "^0.0.9", ++ "ssh2": "~1.14.0" ++ } ++ }, ++ "node_modules/@faker-js/faker": { ++ "version": "6.1.2", ++ "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-6.1.2.tgz", ++ "integrity": "sha512-QSvmexHCxeRUk1/yKmoEDaWB5Hohjvtim5g2JJwy8S/l0L4b3y/GxSpE6vN4SBoVGGahEQW21uqyRr7EofI35A==", ++ "deprecated": "Please update to a newer version.", + "license": "MIT", + "engines": { +- "node": ">=v18" ++ "node": ">=14.0.0", ++ "npm": ">=6.0.0" + } + }, +- "node_modules/@commitlint/top-level": { +- "version": "19.0.0", +- "dev": true, ++ "node_modules/@floating-ui/core": { ++ "version": "1.6.8", ++ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz", ++ "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "license": "MIT", + "dependencies": { +- "find-up": "^7.0.0" +- }, +- "engines": { +- "node": ">=v18" ++ "@floating-ui/utils": "^0.2.8" + } + }, +- "node_modules/@commitlint/top-level/node_modules/find-up": { +- "version": "7.0.0", +- "dev": true, ++ "node_modules/@floating-ui/dom": { ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.1.1.tgz", ++ "integrity": "sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==", + "license": "MIT", + "dependencies": { +- "locate-path": "^7.2.0", +- "path-exists": "^5.0.0", +- "unicorn-magic": "^0.1.0" ++ "@floating-ui/core": "^1.1.0" ++ } ++ }, ++ "node_modules/@floating-ui/utils": { ++ "version": "0.2.8", ++ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", ++ "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==", ++ "license": "MIT" ++ }, ++ "node_modules/@heroku/socksv5": { ++ "version": "0.0.9", ++ "resolved": "https://registry.npmjs.org/@heroku/socksv5/-/socksv5-0.0.9.tgz", ++ "integrity": "sha512-bV8v7R/c0gNve8i7yPmZbcCTJUqRbCnMSvcegcMaz+ly+FoZf9i4+3MTjKsX+OZn9w0w1I6VJYQBcdM+yMWPQQ==", ++ "license": "MIT", ++ "dependencies": { ++ "ip-address": "^5.8.8" + }, + "engines": { +- "node": ">=18" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=0.10.0" + } + }, +- "node_modules/@commitlint/top-level/node_modules/locate-path": { +- "version": "7.2.0", ++ "node_modules/@humanwhocodes/config-array": { ++ "version": "0.5.0", ++ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", ++ "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", ++ "deprecated": "Use @eslint/config-array instead", + "dev": true, +- "license": "MIT", ++ "license": "Apache-2.0", + "dependencies": { +- "p-locate": "^6.0.0" ++ "@humanwhocodes/object-schema": "^1.2.0", ++ "debug": "^4.1.1", ++ "minimatch": "^3.0.4" + }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=10.10.0" + } + }, +- "node_modules/@commitlint/top-level/node_modules/p-limit": { +- "version": "4.0.0", ++ "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { ++ "version": "1.1.11", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", ++ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { +- "yocto-queue": "^1.0.0" ++ "balanced-match": "^1.0.0", ++ "concat-map": "0.0.1" ++ } ++ }, ++ "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", ++ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", ++ "dev": true, ++ "license": "ISC", ++ "dependencies": { ++ "brace-expansion": "^1.1.7" + }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "node": "*" + } + }, +- "node_modules/@commitlint/top-level/node_modules/p-locate": { +- "version": "6.0.0", ++ "node_modules/@humanwhocodes/object-schema": { ++ "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", ++ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", ++ "deprecated": "Use @eslint/object-schema instead", + "dev": true, ++ "license": "BSD-3-Clause" ++ }, ++ "node_modules/@hutson/parse-repository-url": { ++ "version": "3.0.2", ++ "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", ++ "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", ++ "dev": true, ++ "license": "Apache-2.0", ++ "engines": { ++ "node": ">=6.9.0" ++ } ++ }, ++ "node_modules/@intlify/core-base": { ++ "version": "9.13.1", ++ "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.13.1.tgz", ++ "integrity": "sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==", + "license": "MIT", + "dependencies": { +- "p-limit": "^4.0.0" ++ "@intlify/message-compiler": "9.13.1", ++ "@intlify/shared": "9.13.1" + }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ "node": ">= 16" + }, + "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "url": "https://github.com/sponsors/kazupon" + } + }, +- "node_modules/@commitlint/top-level/node_modules/path-exists": { +- "version": "5.0.0", +- "dev": true, ++ "node_modules/@intlify/message-compiler": { ++ "version": "9.13.1", ++ "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.13.1.tgz", ++ "integrity": "sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==", + "license": "MIT", ++ "dependencies": { ++ "@intlify/shared": "9.13.1", ++ "source-map-js": "^1.0.2" ++ }, + "engines": { +- "node": "^12.20.0 || ^14.13.1 || >=16.0.0" ++ "node": ">= 16" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/kazupon" + } + }, +- "node_modules/@commitlint/top-level/node_modules/yocto-queue": { +- "version": "1.0.0", +- "dev": true, ++ "node_modules/@intlify/shared": { ++ "version": "9.13.1", ++ "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.13.1.tgz", ++ "integrity": "sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==", + "license": "MIT", + "engines": { +- "node": ">=12.20" ++ "node": ">= 16" + }, + "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "url": "https://github.com/sponsors/kazupon" + } + }, +- "node_modules/@commitlint/types": { +- "version": "19.0.3", ++ "node_modules/@isaacs/cliui": { ++ "version": "8.0.2", ++ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", ++ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, +- "license": "MIT", ++ "license": "ISC", + "dependencies": { +- "@types/conventional-commits-parser": "^5.0.0", +- "chalk": "^5.3.0" ++ "string-width": "^5.1.2", ++ "string-width-cjs": "npm:string-width@^4.2.0", ++ "strip-ansi": "^7.0.1", ++ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", ++ "wrap-ansi": "^8.1.0", ++ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { +- "node": ">=v18" ++ "node": ">=12" + } + }, +- "node_modules/@commitlint/types/node_modules/chalk": { +- "version": "5.3.0", ++ "node_modules/@isaacs/cliui/node_modules/ansi-regex": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", ++ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { +- "node": "^12.17.0 || ^14.13 || >=16.0.0" ++ "node": ">=12" + }, + "funding": { +- "url": "https://github.com/chalk/chalk?sponsor=1" ++ "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, +- "node_modules/@cspotcode/source-map-support": { +- "version": "0.8.1", ++ "node_modules/@isaacs/cliui/node_modules/ansi-styles": { ++ "version": "6.2.1", ++ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", ++ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", +- "dependencies": { +- "@jridgewell/trace-mapping": "0.3.9" +- }, + "engines": { + "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, +- "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { +- "version": "0.3.9", ++ "node_modules/@isaacs/cliui/node_modules/emoji-regex": { ++ "version": "9.2.2", ++ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", ++ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "@jridgewell/resolve-uri": "^3.0.3", +- "@jridgewell/sourcemap-codec": "^1.4.10" +- } ++ "license": "MIT" + }, +- "node_modules/@csstools/css-parser-algorithms": { +- "version": "2.3.2", ++ "node_modules/@isaacs/cliui/node_modules/string-width": { ++ "version": "5.1.2", ++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", ++ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, - "funding": [ - { @@ -3083,13 +3337,15 @@ index a38125e..a1067b0 100644 - "url": "https://opencollective.com/csstools" - } - ], -- "license": "MIT", + "license": "MIT", + "dependencies": { -+ "type-fest": "^0.20.2" ++ "eastasianwidth": "^0.2.0", ++ "emoji-regex": "^9.2.2", ++ "strip-ansi": "^7.0.1" + }, "engines": { - "node": "^14 || ^16 || >=18" -+ "node": ">=8" ++ "node": ">=12" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^2.2.1" @@ -3099,10 +3355,10 @@ index a38125e..a1067b0 100644 }, - "node_modules/@csstools/css-tokenizer": { - "version": "2.2.1", -+ "node_modules/@eslint/eslintrc/node_modules/ignore": { -+ "version": "4.0.6", -+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", -+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", ++ "node_modules/@isaacs/cliui/node_modules/strip-ansi": { ++ "version": "7.1.0", ++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", ++ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, - "funding": [ - { @@ -3114,18 +3370,24 @@ index a38125e..a1067b0 100644 - "url": "https://opencollective.com/csstools" - } - ], -- "license": "MIT", + "license": "MIT", ++ "dependencies": { ++ "ansi-regex": "^6.0.1" ++ }, "engines": { - "node": "^14 || ^16 || >=18" -+ "node": ">= 4" ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.5", -+ "node_modules/@eslint/eslintrc/node_modules/js-yaml": { -+ "version": "3.14.1", -+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", -+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", ++ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { ++ "version": "8.1.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", ++ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, - "funding": [ - { @@ -3137,33 +3399,22 @@ index a38125e..a1067b0 100644 - "url": "https://opencollective.com/csstools" - } - ], -- "license": "MIT", + "license": "MIT", - "engines": { - "node": "^14 || ^16 || >=18" + "dependencies": { -+ "argparse": "^1.0.7", -+ "esprima": "^4.0.0" ++ "ansi-styles": "^6.1.0", ++ "string-width": "^5.0.1", ++ "strip-ansi": "^7.0.1" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.3.2", - "@csstools/css-tokenizer": "^2.2.1" -+ "bin": { -+ "js-yaml": "bin/js-yaml.js" - } - }, +- } +- }, - "node_modules/@csstools/selector-specificity": { - "version": "3.0.0", -+ "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { -+ "version": "0.4.1", -+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", -+ "dev": true -+ }, -+ "node_modules/@eslint/eslintrc/node_modules/minimatch": { -+ "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", -+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, +- "dev": true, - "funding": [ - { - "type": "github", @@ -3175,153 +3426,145 @@ index a38125e..a1067b0 100644 - } - ], - "license": "MIT-0", -- "engines": { + "engines": { - "node": "^14 || ^16 || >=18" -+ "dependencies": { -+ "brace-expansion": "^1.1.7" ++ "node": ">=12" }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.13" -+ "engines": { -+ "node": "*" ++ "funding": { ++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/@develar/schema-utils": { - "version": "2.6.5", -+ "node_modules/@eslint/eslintrc/node_modules/sprintf-js": { -+ "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", -+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", -+ "dev": true +- "dev": true, ++ "node_modules/@jamescoyle/vue-icon": { ++ "version": "0.1.2", ++ "resolved": "https://registry.npmjs.org/@jamescoyle/vue-icon/-/vue-icon-0.1.2.tgz", ++ "integrity": "sha512-KFrImXx5TKIi6iQXlnyLEBl4rNosNKbTeRnr70ucTdUaciVmd9qK9d/pZAaKt1Ob/8xNnX2GMp8LisyHdKtEgw==", ++ "license": "MIT" + }, -+ "node_modules/@eslint/eslintrc/node_modules/type-fest": { -+ "version": "0.20.2", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", -+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@jridgewell/gen-mapping": { ++ "version": "0.3.5", ++ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", ++ "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", + "dependencies": { - "ajv": "^6.12.0", - "ajv-keywords": "^3.4.1" -- }, ++ "@jridgewell/set-array": "^1.2.1", ++ "@jridgewell/sourcemap-codec": "^1.4.10", ++ "@jridgewell/trace-mapping": "^0.3.24" + }, "engines": { - "node": ">= 8.9.0" -+ "node": ">=10" - }, - "funding": { +- }, +- "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" -+ "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=6.0.0" } }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", -- "license": "MIT", -+ "node_modules/@fabio286/ssh2-promise": { -+ "version": "1.0.4-b", -+ "resolved": "https://registry.npmjs.org/@fabio286/ssh2-promise/-/ssh2-promise-1.0.4-b.tgz", -+ "integrity": "sha512-tqYu7yX4GQXpM4zN80s2EURLgMNyrUDJaImZqIHIRkCxjwq3mdK7uATF4zXu/je9XRD3OVfkQXRoY+H9LwlVoA==", -+ "dependencies": { -+ "@heroku/socksv5": "^0.0.9", -+ "ssh2": "~1.14.0" -+ } -+ }, -+ "node_modules/@faker-js/faker": { -+ "version": "6.1.2", -+ "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-6.1.2.tgz", -+ "integrity": "sha512-QSvmexHCxeRUk1/yKmoEDaWB5Hohjvtim5g2JJwy8S/l0L4b3y/GxSpE6vN4SBoVGGahEQW21uqyRr7EofI35A==", ++ "node_modules/@jridgewell/resolve-uri": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", ++ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", "engines": { - "node": ">=10.0.0" -+ "node": ">=14.0.0", -+ "npm": ">=6.0.0" ++ "node": ">=6.0.0" } }, - "node_modules/@electron/asar": { - "version": "3.2.10", -+ "node_modules/@floating-ui/core": { -+ "version": "1.6.7", -+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.7.tgz", -+ "integrity": "sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==", -+ "dependencies": { -+ "@floating-ui/utils": "^0.2.7" -+ } -+ }, -+ "node_modules/@floating-ui/dom": { -+ "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.1.1.tgz", -+ "integrity": "sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==", -+ "dependencies": { -+ "@floating-ui/core": "^1.1.0" -+ } -+ }, -+ "node_modules/@floating-ui/utils": { -+ "version": "0.2.7", -+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.7.tgz", -+ "integrity": "sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==" -+ }, -+ "node_modules/@heroku/socksv5": { -+ "version": "0.0.9", -+ "resolved": "https://registry.npmjs.org/@heroku/socksv5/-/socksv5-0.0.9.tgz", -+ "integrity": "sha512-bV8v7R/c0gNve8i7yPmZbcCTJUqRbCnMSvcegcMaz+ly+FoZf9i4+3MTjKsX+OZn9w0w1I6VJYQBcdM+yMWPQQ==", -+ "dependencies": { -+ "ip-address": "^5.8.8" -+ }, -+ "engines": { -+ "node": ">=0.10.0" -+ } -+ }, -+ "node_modules/@humanwhocodes/config-array": { -+ "version": "0.5.0", -+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", -+ "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", -+ "deprecated": "Use @eslint/config-array instead", - "dev": true, -- "license": "MIT", - "dependencies": { +- "dev": true, ++ "node_modules/@jridgewell/set-array": { ++ "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", ++ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", +- "dependencies": { - "commander": "^5.0.0", - "glob": "^7.1.6", -+ "@humanwhocodes/object-schema": "^1.2.0", -+ "debug": "^4.1.1", - "minimatch": "^3.0.4" - }, +- "minimatch": "^3.0.4" +- }, - "bin": { - "asar": "bin/asar.js" - }, "engines": { - "node": ">=10.12.0" -+ "node": ">=10.10.0" ++ "node": ">=6.0.0" } }, - "node_modules/@electron/asar/node_modules/brace-expansion": { -+ "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { - "version": "1.1.11", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", -+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, -- "license": "MIT", +- "version": "1.1.11", +- "dev": true, ++ "node_modules/@jridgewell/source-map": { ++ "version": "0.3.6", ++ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", ++ "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" ++ "@jridgewell/gen-mapping": "^0.3.5", ++ "@jridgewell/trace-mapping": "^0.3.25" } }, - "node_modules/@electron/asar/node_modules/minimatch": { -+ "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { - "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", -+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, +- "version": "3.1.2", +- "dev": true, - "license": "ISC", ++ "node_modules/@jridgewell/sourcemap-codec": { ++ "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", ++ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", ++ "license": "MIT" ++ }, ++ "node_modules/@jridgewell/trace-mapping": { ++ "version": "0.3.25", ++ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", ++ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", ++ "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -2782,172 +2775,264 @@ - "node": "*" +- "brace-expansion": "^1.1.7" +- }, +- "engines": { +- "node": "*" ++ "@jridgewell/resolve-uri": "^3.1.0", ++ "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@electron/get": { - "version": "2.0.3", - "license": "MIT", -- "dependencies": { ++ "node_modules/@leichtgewicht/ip-codec": { ++ "version": "2.0.5", ++ "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", ++ "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/@malept/cross-spawn-promise": { ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", ++ "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", ++ "dev": true, ++ "funding": [ ++ { ++ "type": "individual", ++ "url": "https://github.com/sponsors/malept" ++ }, ++ { ++ "type": "tidelift", ++ "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" ++ } ++ ], ++ "license": "Apache-2.0", + "dependencies": { - "debug": "^4.1.1", - "env-paths": "^2.2.0", - "fs-extra": "^8.1.0", @@ -3329,89 +3572,69 @@ index a38125e..a1067b0 100644 - "progress": "^2.0.3", - "semver": "^6.2.0", - "sumchecker": "^3.0.1" -- }, -- "engines": { ++ "cross-spawn": "^7.0.1" + }, + "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "global-agent": "^3.0.0" -- } -+ "node_modules/@humanwhocodes/object-schema": { -+ "version": "1.2.1", -+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", -+ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", -+ "deprecated": "Use @eslint/object-schema instead", -+ "dev": true ++ "node": ">= 10" + } }, - "node_modules/@electron/notarize": { - "version": "2.2.1", -+ "node_modules/@hutson/parse-repository-url": { -+ "version": "3.0.2", -+ "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", -+ "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", ++ "node_modules/@malept/flatpak-bundler": { ++ "version": "0.4.0", ++ "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", ++ "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", "dev": true, -- "license": "MIT", -- "dependencies": { -- "debug": "^4.1.1", + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", - "fs-extra": "^9.0.1", - "promise-retry": "^2.0.1" -- }, ++ "fs-extra": "^9.0.0", ++ "lodash": "^4.17.15", ++ "tmp-promise": "^3.0.2" + }, "engines": { -- "node": ">= 10.0.0" -+ "node": ">=6.9.0" + "node": ">= 10.0.0" } }, - "node_modules/@electron/notarize/node_modules/fs-extra": { -- "version": "9.1.0", -- "dev": true, -- "license": "MIT", -+ "node_modules/@intlify/core-base": { -+ "version": "9.13.1", -+ "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.13.1.tgz", -+ "integrity": "sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==", ++ "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { + "version": "9.1.0", ++ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", ++ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", "dependencies": { -- "at-least-node": "^1.0.0", -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -+ "@intlify/message-compiler": "9.13.1", -+ "@intlify/shared": "9.13.1" - }, - "engines": { -- "node": ">=10" -+ "node": ">= 16" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/kazupon" +@@ -2828,8 +3244,10 @@ + "node": ">=10" } }, - "node_modules/@electron/notarize/node_modules/jsonfile": { -- "version": "6.1.0", -- "dev": true, -- "license": "MIT", -+ "node_modules/@intlify/message-compiler": { -+ "version": "9.13.1", -+ "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.13.1.tgz", -+ "integrity": "sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==", ++ "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { + "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", ++ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "license": "MIT", "dependencies": { -- "universalify": "^2.0.0" -+ "@intlify/shared": "9.13.1", -+ "source-map-js": "^1.0.2" - }, -- "optionalDependencies": { -- "graceful-fs": "^4.1.6" -- } -- }, +@@ -2839,1816 +3257,2225 @@ + "graceful-fs": "^4.1.6" + } + }, - "node_modules/@electron/notarize/node_modules/universalify": { -- "version": "2.0.1", -- "dev": true, -- "license": "MIT", ++ "node_modules/@malept/flatpak-bundler/node_modules/universalify": { + "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", "engines": { -- "node": ">= 10.0.0" -+ "node": ">= 16" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/kazupon" + "node": ">= 10.0.0" } }, - "node_modules/@electron/osx-sign": { @@ -3430,222 +3653,103 @@ index a38125e..a1067b0 100644 - "electron-osx-flat": "bin/electron-osx-flat.js", - "electron-osx-sign": "bin/electron-osx-sign.js" - }, -+ "node_modules/@intlify/shared": { -+ "version": "9.13.1", -+ "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.13.1.tgz", -+ "integrity": "sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==", - "engines": { +- "engines": { - "node": ">=12.0.0" -+ "node": ">= 16" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/kazupon" - } +- } ++ "node_modules/@mdi/js": { ++ "version": "7.2.96", ++ "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.2.96.tgz", ++ "integrity": "sha512-paR9M9ZT7rKbh2boksNUynuSZMHhqRYnEZOm/KrZTjQ4/FzyhjLHuvw/8XYzP+E7fS4+/Ms/82EN1pl/OFsiIA==", ++ "license": "Apache-2.0" }, - "node_modules/@electron/osx-sign/node_modules/fs-extra": { - "version": "10.1.0", -+ "node_modules/@isaacs/cliui": { -+ "version": "8.0.2", -+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", -+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", ++ "node_modules/@nodelib/fs.scandir": { ++ "version": "2.1.5", ++ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", ++ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" -+ "string-width": "^5.1.2", -+ "string-width-cjs": "npm:string-width@^4.2.0", -+ "strip-ansi": "^7.0.1", -+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", -+ "wrap-ansi": "^8.1.0", -+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" ++ "@nodelib/fs.stat": "2.0.5", ++ "run-parallel": "^1.1.9" }, "engines": { - "node": ">=12" +- "node": ">=12" ++ "node": ">= 8" } }, - "node_modules/@electron/osx-sign/node_modules/isbinaryfile": { - "version": "4.0.10", -+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": { -+ "version": "6.0.1", -+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", -+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", ++ "node_modules/@nodelib/fs.stat": { ++ "version": "2.0.5", ++ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", ++ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 8.0.0" -+ "node": ">=12" - }, - "funding": { +- }, +- "funding": { - "url": "https://github.com/sponsors/gjtorikian/" -+ "url": "https://github.com/chalk/ansi-regex?sponsor=1" ++ "node": ">= 8" } }, - "node_modules/@electron/osx-sign/node_modules/jsonfile": { - "version": "6.1.0", -+ "node_modules/@isaacs/cliui/node_modules/ansi-styles": { -+ "version": "6.2.1", -+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", -+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", -+ "dev": true, -+ "engines": { -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/chalk/ansi-styles?sponsor=1" -+ } -+ }, -+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": { -+ "version": "9.2.2", -+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", -+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", -+ "dev": true -+ }, -+ "node_modules/@isaacs/cliui/node_modules/string-width": { -+ "version": "5.1.2", -+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", -+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", ++ "node_modules/@nodelib/fs.walk": { ++ "version": "1.2.8", ++ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", ++ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "universalify": "^2.0.0" -+ "eastasianwidth": "^0.2.0", -+ "emoji-regex": "^9.2.2", -+ "strip-ansi": "^7.0.1" - }, +- }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" -+ "engines": { -+ "node": ">=12" ++ "@nodelib/fs.scandir": "2.1.5", ++ "fastq": "^1.6.0" + }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" ++ "engines": { ++ "node": ">= 8" } }, - "node_modules/@electron/osx-sign/node_modules/universalify": { - "version": "2.0.1", -+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": { -+ "version": "7.1.0", -+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", -+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", ++ "node_modules/@pkgjs/parseargs": { ++ "version": "0.11.0", ++ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", ++ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, -- "license": "MIT", -+ "dependencies": { -+ "ansi-regex": "^6.0.1" -+ }, + "license": "MIT", ++ "optional": true, "engines": { - "node": ">= 10.0.0" -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, +- } +- }, - "node_modules/@electron/remote": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.1.2.tgz", - "integrity": "sha512-EPwNx+nhdrTBxyCqXt/pftoQg/ybtWDW3DUWHafejvnB1ZGGfMpv6e15D8KeempocjXe78T7WreyGGb3mlZxdA==", - "peerDependencies": { - "electron": ">= 13.0.0" -+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { -+ "version": "8.1.0", -+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", -+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", -+ "dev": true, -+ "dependencies": { -+ "ansi-styles": "^6.1.0", -+ "string-width": "^5.0.1", -+ "strip-ansi": "^7.0.1" -+ }, -+ "engines": { -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" ++ "node": ">=14" } }, - "node_modules/@electron/universal": { - "version": "1.5.1", -+ "node_modules/@jamescoyle/vue-icon": { -+ "version": "0.1.2", -+ "resolved": "https://registry.npmjs.org/@jamescoyle/vue-icon/-/vue-icon-0.1.2.tgz", -+ "integrity": "sha512-KFrImXx5TKIi6iQXlnyLEBl4rNosNKbTeRnr70ucTdUaciVmd9qK9d/pZAaKt1Ob/8xNnX2GMp8LisyHdKtEgw==" -+ }, -+ "node_modules/@jridgewell/gen-mapping": { -+ "version": "0.3.5", -+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", -+ "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", -+ "dependencies": { -+ "@jridgewell/set-array": "^1.2.1", -+ "@jridgewell/sourcemap-codec": "^1.4.10", -+ "@jridgewell/trace-mapping": "^0.3.24" -+ }, -+ "engines": { -+ "node": ">=6.0.0" -+ } -+ }, -+ "node_modules/@jridgewell/resolve-uri": { -+ "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", -+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", -+ "engines": { -+ "node": ">=6.0.0" -+ } -+ }, -+ "node_modules/@jridgewell/set-array": { -+ "version": "1.2.1", -+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", -+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", -+ "engines": { -+ "node": ">=6.0.0" -+ } -+ }, -+ "node_modules/@jridgewell/source-map": { -+ "version": "0.3.6", -+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", -+ "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", -+ "dependencies": { -+ "@jridgewell/gen-mapping": "^0.3.5", -+ "@jridgewell/trace-mapping": "^0.3.25" -+ } -+ }, -+ "node_modules/@jridgewell/sourcemap-codec": { -+ "version": "1.5.0", -+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", -+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" -+ }, -+ "node_modules/@jridgewell/trace-mapping": { -+ "version": "0.3.25", -+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", -+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", -+ "dependencies": { -+ "@jridgewell/resolve-uri": "^3.1.0", -+ "@jridgewell/sourcemap-codec": "^1.4.14" -+ } -+ }, -+ "node_modules/@leichtgewicht/ip-codec": { -+ "version": "2.0.5", -+ "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", -+ "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", -+ "dev": true -+ }, -+ "node_modules/@malept/cross-spawn-promise": { -+ "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", -+ "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", ++ "node_modules/@playwright/test": { ++ "version": "1.28.1", ++ "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.28.1.tgz", ++ "integrity": "sha512-xN6spdqrNlwSn9KabIhqfZR7IWjPpFK1835tFNgjrlysaSezuX8PYUwaz38V/yI8TJLG9PkAMEXoHRXYXlpTPQ==", ++ "deprecated": "Please update to the latest version of Playwright to test up-to-date browsers.", "dev": true, - "license": "MIT", -+ "funding": [ -+ { -+ "type": "individual", -+ "url": "https://github.com/sponsors/malept" -+ }, -+ { -+ "type": "tidelift", -+ "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" -+ } -+ ], ++ "license": "Apache-2.0", "dependencies": { - "@electron/asar": "^3.2.1", - "@malept/cross-spawn-promise": "^1.1.0", @@ -3654,64 +3758,78 @@ index a38125e..a1067b0 100644 - "fs-extra": "^9.0.1", - "minimatch": "^3.0.4", - "plist": "^3.0.4" -+ "cross-spawn": "^7.0.1" ++ "@types/node": "*", ++ "playwright-core": "1.28.1" ++ }, ++ "bin": { ++ "playwright": "cli.js" }, "engines": { - "node": ">=8.6" -+ "node": ">= 10" ++ "node": ">=14" } }, - "node_modules/@electron/universal/node_modules/brace-expansion": { - "version": "1.1.11", -+ "node_modules/@malept/flatpak-bundler": { -+ "version": "0.4.0", -+ "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", -+ "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", - "dev": true, -- "license": "MIT", - "dependencies": { +- "dev": true, ++ "node_modules/@sindresorhus/is": { ++ "version": "4.6.0", ++ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", ++ "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "license": "MIT", +- "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -+ "debug": "^4.1.1", -+ "fs-extra": "^9.0.0", -+ "lodash": "^4.17.15", -+ "tmp-promise": "^3.0.2" -+ }, + "engines": { -+ "node": ">= 10.0.0" ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/@electron/universal/node_modules/fs-extra": { -+ "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { - "version": "9.1.0", -+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", -+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, -- "license": "MIT", +- "version": "9.1.0", +- "dev": true, ++ "node_modules/@szmarczak/http-timer": { ++ "version": "4.0.6", ++ "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", ++ "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "license": "MIT", "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", -@@ -2958,10 +3043,11 @@ +- "at-least-node": "^1.0.0", +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" ++ "defer-to-connect": "^2.0.0" + }, + "engines": { "node": ">=10" } }, - "node_modules/@electron/universal/node_modules/jsonfile": { -+ "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { - "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", -+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", +- "version": "6.1.0", ++ "node_modules/@tootallnate/once": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", ++ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, -- "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, -@@ -2969,1077 +3055,1587 @@ - "graceful-fs": "^4.1.6" + "license": "MIT", +- "dependencies": { +- "universalify": "^2.0.0" +- }, +- "optionalDependencies": { +- "graceful-fs": "^4.1.6" ++ "engines": { ++ "node": ">= 10" } }, - "node_modules/@electron/universal/node_modules/minimatch": { - "version": "3.1.2", -- "dev": true, ++ "node_modules/@tsconfig/node10": { ++ "version": "1.0.11", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", ++ "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" @@ -3719,31 +3837,50 @@ index a38125e..a1067b0 100644 - "engines": { - "node": "*" - } -- }, ++ "license": "MIT" + }, - "node_modules/@electron/universal/node_modules/universalify": { -+ "node_modules/@malept/flatpak-bundler/node_modules/universalify": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", -+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", +- "version": "2.0.1", ++ "node_modules/@tsconfig/node12": { ++ "version": "1.0.11", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", ++ "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/@tsconfig/node14": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", ++ "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/@tsconfig/node16": { ++ "version": "1.0.4", ++ "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", ++ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", "dev": true, -- "license": "MIT", - "engines": { - "node": ">= 10.0.0" ++ "license": "MIT" ++ }, ++ "node_modules/@turf/helpers": { ++ "version": "6.5.0", ++ "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", ++ "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", +- "engines": { +- "node": ">= 10.0.0" ++ "funding": { ++ "url": "https://opencollective.com/turf" } }, - "node_modules/@eslint/eslintrc": { - "version": "0.4.3", -+ "node_modules/@mdi/js": { -+ "version": "7.2.96", -+ "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.2.96.tgz", -+ "integrity": "sha512-paR9M9ZT7rKbh2boksNUynuSZMHhqRYnEZOm/KrZTjQ4/FzyhjLHuvw/8XYzP+E7fS4+/Ms/82EN1pl/OFsiIA==" -+ }, -+ "node_modules/@nodelib/fs.scandir": { -+ "version": "2.1.5", -+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", -+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", ++ "node_modules/@types/better-sqlite3": { ++ "version": "7.5.0", ++ "resolved": "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.5.0.tgz", ++ "integrity": "sha512-G9ZbMjydW2yj1AgiPlUtdgF3a1qNpLJLudc9ynJCeJByS3XFWpmT9LT+VSHrKHFbxb31CvtYwetLTOvG9zdxdg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.1.1", @@ -3754,102 +3891,109 @@ index a38125e..a1067b0 100644 - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" -+ "@nodelib/fs.stat": "2.0.5", -+ "run-parallel": "^1.1.9" - }, - "engines": { +- }, +- "engines": { - "node": "^10.12.0 || >=12.0.0" -- } -- }, ++ "@types/node": "*" + } + }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "1.0.10", -- "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@types/body-parser": { ++ "version": "1.19.5", ++ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", ++ "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, + "license": "MIT", + "dependencies": { - "sprintf-js": "~1.0.2" -+ "node": ">= 8" ++ "@types/connect": "*", ++ "@types/node": "*" } }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.11", -+ "node_modules/@nodelib/fs.stat": { -+ "version": "2.0.5", -+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", -+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", ++ "node_modules/@types/bonjour": { ++ "version": "3.5.13", ++ "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", ++ "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dev": true, -- "license": "MIT", -- "dependencies": { + "license": "MIT", + "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -+ "engines": { -+ "node": ">= 8" ++ "@types/node": "*" } }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", -+ "node_modules/@nodelib/fs.walk": { -+ "version": "1.2.8", -+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", -+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@types/cacheable-request": { ++ "version": "6.0.3", ++ "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", ++ "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "license": "MIT", "dependencies": { - "type-fest": "^0.20.2" -+ "@nodelib/fs.scandir": "2.1.5", -+ "fastq": "^1.6.0" - }, - "engines": { +- }, +- "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">= 8" ++ "@types/http-cache-semantics": "*", ++ "@types/keyv": "^3.1.4", ++ "@types/node": "*", ++ "@types/responselike": "^1.0.0" } }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "4.0.6", -+ "node_modules/@pkgjs/parseargs": { -+ "version": "0.11.0", -+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", -+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", ++ "node_modules/@types/connect": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", ++ "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, -- "license": "MIT", -+ "optional": true, - "engines": { + "license": "MIT", +- "engines": { - "node": ">= 4" -+ "node": ">=14" ++ "dependencies": { ++ "@types/node": "*" } }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "3.14.1", -+ "node_modules/@playwright/test": { -+ "version": "1.28.1", -+ "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.28.1.tgz", -+ "integrity": "sha512-xN6spdqrNlwSn9KabIhqfZR7IWjPpFK1835tFNgjrlysaSezuX8PYUwaz38V/yI8TJLG9PkAMEXoHRXYXlpTPQ==", -+ "deprecated": "Please update to the latest version of Playwright to test up-to-date browsers.", ++ "node_modules/@types/connect-history-api-fallback": { ++ "version": "1.5.4", ++ "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", ++ "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" -+ "@types/node": "*", -+ "playwright-core": "1.28.1" - }, - "bin": { +- }, +- "bin": { - "js-yaml": "bin/js-yaml.js" -- } -- }, ++ "@types/express-serve-static-core": "*", ++ "@types/node": "*" + } + }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.2", -- "dev": true, ++ "node_modules/@types/conventional-commits-parser": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", ++ "integrity": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==", + "dev": true, - "license": "ISC", -- "dependencies": { ++ "license": "MIT", + "dependencies": { - "brace-expansion": "^1.1.7" -+ "playwright": "cli.js" - }, - "engines": { +- }, +- "engines": { - "node": "*" -+ "node": ">=14" ++ "@types/node": "*" } }, - "node_modules/@eslint/eslintrc/node_modules/sprintf-js": { @@ -3859,125 +4003,176 @@ index a38125e..a1067b0 100644 - }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", -- "dev": true, ++ "node_modules/@types/debug": { ++ "version": "4.1.12", ++ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", ++ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dev": true, - "license": "(MIT OR CC0-1.0)", -+ "node_modules/@sindresorhus/is": { -+ "version": "4.6.0", -+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", -+ "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", - "engines": { - "node": ">=10" - }, - "funding": { +- "engines": { +- "node": ">=10" +- }, +- "funding": { - "url": "https://github.com/sponsors/sindresorhus" -+ "url": "https://github.com/sindresorhus/is?sponsor=1" ++ "license": "MIT", ++ "dependencies": { ++ "@types/ms": "*" } }, - "node_modules/@fabio286/ssh2-promise": { - "version": "1.0.4b", -- "license": "MIT", -+ "node_modules/@szmarczak/http-timer": { -+ "version": "4.0.6", -+ "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", -+ "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", ++ "node_modules/@types/estree": { ++ "version": "1.0.6", ++ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", ++ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", ++ "license": "MIT" ++ }, ++ "node_modules/@types/express": { ++ "version": "4.17.21", ++ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", ++ "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", ++ "dev": true, + "license": "MIT", "dependencies": { - "@heroku/socksv5": "^0.0.9", - "ssh2": "~1.14.0" -+ "defer-to-connect": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=10" ++ "@types/body-parser": "*", ++ "@types/express-serve-static-core": "^4.17.33", ++ "@types/qs": "*", ++ "@types/serve-static": "*" } }, - "node_modules/@faker-js/faker": { - "version": "6.1.2", -- "license": "MIT", -+ "node_modules/@tootallnate/once": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", -+ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", ++ "node_modules/@types/express-serve-static-core": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.0.tgz", ++ "integrity": "sha512-AbXMTZGt40T+KON9/Fdxx0B2WK5hsgxcfXJLr5bFpZ7b4JCex2WyQPTEKdXqfHiY5nKKBScZ7yCoO6Pvgxfvnw==", + "dev": true, - "engines": { + "license": "MIT", +- "engines": { - "node": ">=14.0.0", - "npm": ">=6.0.0" -+ "node": ">= 10" ++ "dependencies": { ++ "@types/node": "*", ++ "@types/qs": "*", ++ "@types/range-parser": "*", ++ "@types/send": "*" } }, - "node_modules/@floating-ui/core": { - "version": "1.5.0", -- "license": "MIT", -- "dependencies": { ++ "node_modules/@types/express/node_modules/@types/express-serve-static-core": { ++ "version": "4.19.6", ++ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", ++ "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", ++ "dev": true, + "license": "MIT", + "dependencies": { - "@floating-ui/utils": "^0.1.3" -- } -+ "node_modules/@tsconfig/node10": { -+ "version": "1.0.11", -+ "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", -+ "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", -+ "dev": true ++ "@types/node": "*", ++ "@types/qs": "*", ++ "@types/range-parser": "*", ++ "@types/send": "*" + } }, - "node_modules/@floating-ui/dom": { - "version": "1.1.1", -- "license": "MIT", -- "dependencies": { ++ "node_modules/@types/fs-extra": { ++ "version": "9.0.13", ++ "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", ++ "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", ++ "dev": true, + "license": "MIT", + "dependencies": { - "@floating-ui/core": "^1.1.0" -- } -+ "node_modules/@tsconfig/node12": { -+ "version": "1.0.11", -+ "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", -+ "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", -+ "dev": true ++ "@types/node": "*" + } }, - "node_modules/@floating-ui/utils": { - "version": "0.1.6", -- "license": "MIT" -+ "node_modules/@tsconfig/node14": { -+ "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", -+ "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", -+ "dev": true ++ "node_modules/@types/geojson": { ++ "version": "7946.0.14", ++ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", ++ "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==", ++ "dev": true, + "license": "MIT" }, - "node_modules/@heroku/socksv5": { - "version": "0.0.9", -- "license": "MIT", -- "dependencies": { ++ "node_modules/@types/glob": { ++ "version": "7.2.0", ++ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", ++ "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", ++ "dev": true, + "license": "MIT", + "dependencies": { - "ip-address": "^5.8.8" - }, - "engines": { - "node": ">=0.10.0" -- } -+ "node_modules/@tsconfig/node16": { -+ "version": "1.0.4", -+ "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", -+ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", -+ "dev": true ++ "@types/minimatch": "*", ++ "@types/node": "*" + } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.5.0", -- "dev": true, ++ "node_modules/@types/html-minifier-terser": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", ++ "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", ++ "license": "MIT" ++ }, ++ "node_modules/@types/http-cache-semantics": { ++ "version": "4.0.4", ++ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", ++ "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", ++ "license": "MIT" ++ }, ++ "node_modules/@types/http-errors": { ++ "version": "2.0.4", ++ "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", ++ "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "dev": true, - "license": "Apache-2.0", -- "dependencies": { ++ "license": "MIT" ++ }, ++ "node_modules/@types/http-proxy": { ++ "version": "1.17.15", ++ "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", ++ "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", ++ "dev": true, ++ "license": "MIT", + "dependencies": { - "@humanwhocodes/object-schema": "^1.2.0", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=10.10.0" -+ "node_modules/@turf/helpers": { -+ "version": "6.5.0", -+ "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", -+ "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", -+ "funding": { -+ "url": "https://opencollective.com/turf" ++ "@types/node": "*" } }, - "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { - "version": "1.1.11", -+ "node_modules/@types/better-sqlite3": { -+ "version": "7.5.0", -+ "resolved": "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.5.0.tgz", -+ "integrity": "sha512-G9ZbMjydW2yj1AgiPlUtdgF3a1qNpLJLudc9ynJCeJByS3XFWpmT9LT+VSHrKHFbxb31CvtYwetLTOvG9zdxdg==", ++ "node_modules/@types/json-schema": { ++ "version": "7.0.15", ++ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", ++ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", ++ "license": "MIT" ++ }, ++ "node_modules/@types/json5": { ++ "version": "0.0.29", ++ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", ++ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "dev": true, -- "license": "MIT", ++ "license": "MIT" ++ }, ++ "node_modules/@types/keyv": { ++ "version": "3.1.4", ++ "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", ++ "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" @@ -3986,43 +4181,49 @@ index a38125e..a1067b0 100644 }, - "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { - "version": "3.1.2", -+ "node_modules/@types/body-parser": { -+ "version": "1.19.5", -+ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", -+ "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", ++ "node_modules/@types/leaflet": { ++ "version": "1.7.11", ++ "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.7.11.tgz", ++ "integrity": "sha512-VwAYom2pfIAf/pLj1VR5aLltd4tOtHyvfaJlNYCoejzP2nu52PrMi1ehsLRMUS+bgafmIIKBV1cMfKeS+uJ0Vg==", "dev": true, - "license": "ISC", ++ "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" -+ "@types/connect": "*", -+ "@types/node": "*" ++ "@types/geojson": "*" } }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", -- "dev": true, ++ "node_modules/@types/marked": { ++ "version": "4.0.8", ++ "resolved": "https://registry.npmjs.org/@types/marked/-/marked-4.0.8.tgz", ++ "integrity": "sha512-HVNzMT5QlWCOdeuBsgXP8EZzKUf0+AXzN+sLmjvaB3ZlLqO+e4u0uXrdw9ub69wBKFs+c6/pA4r9sy6cCDvImw==", + "dev": true, - "license": "BSD-3-Clause" -- }, ++ "license": "MIT" + }, - "node_modules/@hutson/parse-repository-url": { - "version": "3.0.2", -+ "node_modules/@types/bonjour": { -+ "version": "3.5.13", -+ "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", -+ "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", ++ "node_modules/@types/mime": { ++ "version": "1.3.5", ++ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", ++ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=6.9.0" - } -- }, ++ "license": "MIT" + }, - "node_modules/@intlify/core-base": { - "version": "9.13.1", - "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.13.1.tgz", - "integrity": "sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==", - "dependencies": { +- "dependencies": { - "@intlify/message-compiler": "9.13.1", - "@intlify/shared": "9.13.1" - }, @@ -4031,18 +4232,19 @@ index a38125e..a1067b0 100644 - }, - "funding": { - "url": "https://github.com/sponsors/kazupon" -+ "@types/node": "*" - } +- } ++ "node_modules/@types/minimatch": { ++ "version": "5.1.2", ++ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", ++ "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", ++ "dev": true, ++ "license": "MIT" }, - "node_modules/@intlify/message-compiler": { - "version": "9.13.1", - "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.13.1.tgz", - "integrity": "sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==", -+ "node_modules/@types/cacheable-request": { -+ "version": "6.0.3", -+ "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", -+ "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dependencies": { +- "dependencies": { - "@intlify/shared": "9.13.1", - "source-map-js": "^1.0.2" - }, @@ -4051,11 +4253,13 @@ index a38125e..a1067b0 100644 - }, - "funding": { - "url": "https://github.com/sponsors/kazupon" -+ "@types/http-cache-semantics": "*", -+ "@types/keyv": "^3.1.4", -+ "@types/node": "*", -+ "@types/responselike": "^1.0.0" - } +- } ++ "node_modules/@types/minimist": { ++ "version": "1.2.5", ++ "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", ++ "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", ++ "dev": true, ++ "license": "MIT" }, - "node_modules/@intlify/shared": { - "version": "9.13.1", @@ -4066,23 +4270,29 @@ index a38125e..a1067b0 100644 - }, - "funding": { - "url": "https://github.com/sponsors/kazupon" -+ "node_modules/@types/connect": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", -+ "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", +- } ++ "node_modules/@types/ms": { ++ "version": "0.7.34", ++ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", ++ "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", + "dev": true, -+ "dependencies": { -+ "@types/node": "*" - } ++ "license": "MIT" }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", -+ "node_modules/@types/connect-history-api-fallback": { -+ "version": "1.5.4", -+ "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", -+ "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", ++ "node_modules/@types/node": { ++ "version": "17.0.45", ++ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", ++ "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", ++ "license": "MIT" ++ }, ++ "node_modules/@types/node-forge": { ++ "version": "1.3.11", ++ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", ++ "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", "dev": true, - "license": "ISC", ++ "license": "MIT", "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", @@ -4093,61 +4303,77 @@ index a38125e..a1067b0 100644 - }, - "engines": { - "node": ">=12" -+ "@types/express-serve-static-core": "*", + "@types/node": "*" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", -+ "node_modules/@types/conventional-commits-parser": { -+ "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", -+ "integrity": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==", ++ "node_modules/@types/normalize-package-data": { ++ "version": "2.4.4", ++ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", ++ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/@types/pg": { ++ "version": "8.6.6", ++ "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.6.6.tgz", ++ "integrity": "sha512-O2xNmXebtwVekJDD+02udOncjVcMZQuTEQEMpKJ0ZRf5E7/9JJX3izhKUcUifBkyKpljyUM6BTgy2trmviKlpw==", "dev": true, -- "license": "MIT", + "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "dependencies": { -+ "@types/node": "*" ++ "@types/node": "*", ++ "pg-protocol": "*", ++ "pg-types": "^2.2.0" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", -+ "node_modules/@types/debug": { -+ "version": "4.1.12", -+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", -+ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", ++ "node_modules/@types/plist": { ++ "version": "3.0.5", ++ "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.5.tgz", ++ "integrity": "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==", "dev": true, -- "license": "MIT", + "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" ++ "optional": true, + "dependencies": { -+ "@types/ms": "*" ++ "@types/node": "*", ++ "xmlbuilder": ">=11.0.1" } }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", -- "dev": true, -- "license": "MIT" -+ "node_modules/@types/estree": { -+ "version": "1.0.5", -+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", -+ "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" ++ "node_modules/@types/qs": { ++ "version": "6.9.16", ++ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz", ++ "integrity": "sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==", + "dev": true, + "license": "MIT" }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", -+ "node_modules/@types/express": { -+ "version": "4.17.21", -+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", -+ "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", ++ "node_modules/@types/range-parser": { ++ "version": "1.2.7", ++ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", ++ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true, -- "license": "MIT", ++ "license": "MIT" ++ }, ++ "node_modules/@types/responselike": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", ++ "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", @@ -4158,20 +4384,30 @@ index a38125e..a1067b0 100644 - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -+ "@types/body-parser": "*", -+ "@types/express-serve-static-core": "^4.17.33", -+ "@types/qs": "*", -+ "@types/serve-static": "*" ++ "@types/node": "*" } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", -+ "node_modules/@types/express-serve-static-core": { -+ "version": "4.19.5", -+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", -+ "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", ++ "node_modules/@types/retry": { ++ "version": "0.12.0", ++ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", ++ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/@types/semver": { ++ "version": "7.5.8", ++ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", ++ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", ++ "license": "MIT" ++ }, ++ "node_modules/@types/send": { ++ "version": "0.17.4", ++ "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", ++ "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" - }, @@ -4180,20 +4416,18 @@ index a38125e..a1067b0 100644 - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" -+ "@types/node": "*", -+ "@types/qs": "*", -+ "@types/range-parser": "*", -+ "@types/send": "*" ++ "@types/mime": "^1", ++ "@types/node": "*" } }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", -+ "node_modules/@types/fs-extra": { -+ "version": "9.0.13", -+ "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", -+ "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", ++ "node_modules/@types/serve-index": { ++ "version": "1.9.4", ++ "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", ++ "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", @@ -4204,42 +4438,21 @@ index a38125e..a1067b0 100644 - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" -+ "@types/node": "*" ++ "@types/express": "*" } }, - "node_modules/@jamescoyle/vue-icon": { - "version": "0.1.2", - "license": "MIT" -+ "node_modules/@types/geojson": { -+ "version": "7946.0.14", -+ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", -+ "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==", -+ "dev": true - }, +- }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", -- "license": "MIT", -+ "node_modules/@types/html-minifier-terser": { -+ "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", -+ "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" -+ }, -+ "node_modules/@types/http-cache-semantics": { -+ "version": "4.0.4", -+ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", -+ "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" -+ }, -+ "node_modules/@types/http-errors": { -+ "version": "2.0.4", -+ "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", -+ "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", -+ "dev": true -+ }, -+ "node_modules/@types/http-proxy": { -+ "version": "1.17.15", -+ "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", -+ "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", ++ "node_modules/@types/serve-static": { ++ "version": "1.15.7", ++ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", ++ "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", @@ -4247,73 +4460,88 @@ index a38125e..a1067b0 100644 - }, - "engines": { - "node": ">=6.0.0" -+ "@types/node": "*" ++ "@types/http-errors": "*", ++ "@types/node": "*", ++ "@types/send": "*" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", -- "license": "MIT", ++ "node_modules/@types/sockjs": { ++ "version": "0.3.36", ++ "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", ++ "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", ++ "dev": true, + "license": "MIT", - "engines": { - "node": ">=6.0.0" -- } -+ "node_modules/@types/json-schema": { -+ "version": "7.0.15", -+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", -+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" ++ "dependencies": { ++ "@types/node": "*" + } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", -- "license": "MIT", ++ "node_modules/@types/ssh2": { ++ "version": "1.11.19", ++ "resolved": "https://registry.npmjs.org/@types/ssh2/-/ssh2-1.11.19.tgz", ++ "integrity": "sha512-ydbQAqEcdNVy2t1w7dMh6eWMr+iOgtEkqM/3K9RMijMaok/ER7L8GW6PwsOypHCN++M+c8S/UR9SgMqNIFstbA==", ++ "dev": true, + "license": "MIT", - "engines": { - "node": ">=6.0.0" -- } -+ "node_modules/@types/json5": { -+ "version": "0.0.29", -+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", -+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", -+ "dev": true ++ "dependencies": { ++ "@types/node": "^18.11.18" + } }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.5", -- "license": "MIT", -+ "node_modules/@types/keyv": { -+ "version": "3.1.4", -+ "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", -+ "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", ++ "node_modules/@types/ssh2/node_modules/@types/node": { ++ "version": "18.19.57", ++ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.57.tgz", ++ "integrity": "sha512-I2ioBd/IPrYDMv9UNR5NlPElOZ68QB7yY5V2EsLtSrTO0LM0PnCEFF9biLWHf5k+sIy4ohueCV9t4gk1AEdlVA==", ++ "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" -+ "@types/node": "*" ++ "undici-types": "~5.26.4" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", -- "license": "MIT" -- }, ++ "node_modules/@types/verror": { ++ "version": "1.10.10", ++ "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.10.tgz", ++ "integrity": "sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==", ++ "dev": true, ++ "license": "MIT", ++ "optional": true ++ }, ++ "node_modules/@types/web-bluetooth": { ++ "version": "0.0.17", ++ "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz", ++ "integrity": "sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==", + "license": "MIT" + }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", -- "license": "MIT", -+ "node_modules/@types/leaflet": { -+ "version": "1.7.11", -+ "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.7.11.tgz", -+ "integrity": "sha512-VwAYom2pfIAf/pLj1VR5aLltd4tOtHyvfaJlNYCoejzP2nu52PrMi1ehsLRMUS+bgafmIIKBV1cMfKeS+uJ0Vg==", ++ "node_modules/@types/ws": { ++ "version": "8.5.12", ++ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz", ++ "integrity": "sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==", + "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" -+ "@types/geojson": "*" ++ "@types/node": "*" } }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "dev": true, - "license": "MIT" -+ "node_modules/@types/marked": { -+ "version": "4.0.8", -+ "resolved": "https://registry.npmjs.org/@types/marked/-/marked-4.0.8.tgz", -+ "integrity": "sha512-HVNzMT5QlWCOdeuBsgXP8EZzKUf0+AXzN+sLmjvaB3ZlLqO+e4u0uXrdw9ub69wBKFs+c6/pA4r9sy6cCDvImw==", -+ "dev": true - }, +- }, - "node_modules/@malept/cross-spawn-promise": { - "version": "1.1.1", - "dev": true, @@ -4328,334 +4556,33 @@ index a38125e..a1067b0 100644 - } - ], - "license": "Apache-2.0", -- "dependencies": { -- "cross-spawn": "^7.0.1" -- }, -- "engines": { -- "node": ">= 10" -- } -+ "node_modules/@types/mime": { -+ "version": "1.3.5", -+ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", -+ "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", -+ "dev": true - }, -- "node_modules/@malept/flatpak-bundler": { -- "version": "0.4.0", -+ "node_modules/@types/minimist": { -+ "version": "1.2.5", -+ "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", -+ "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", -+ "dev": true -+ }, -+ "node_modules/@types/ms": { -+ "version": "0.7.34", -+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", -+ "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", -+ "dev": true -+ }, -+ "node_modules/@types/node": { -+ "version": "17.0.45", -+ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", -+ "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==" -+ }, -+ "node_modules/@types/node-forge": { -+ "version": "1.3.11", -+ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", -+ "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "debug": "^4.1.1", -- "fs-extra": "^9.0.0", -- "lodash": "^4.17.15", -- "tmp-promise": "^3.0.2" -- }, -- "engines": { -- "node": ">= 10.0.0" -+ "@types/node": "*" - } - }, -- "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { -- "version": "9.1.0", -+ "node_modules/@types/normalize-package-data": { -+ "version": "2.4.4", -+ "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", -+ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", -+ "dev": true -+ }, -+ "node_modules/@types/pg": { -+ "version": "8.6.6", -+ "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.6.6.tgz", -+ "integrity": "sha512-O2xNmXebtwVekJDD+02udOncjVcMZQuTEQEMpKJ0ZRf5E7/9JJX3izhKUcUifBkyKpljyUM6BTgy2trmviKlpw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "at-least-node": "^1.0.0", -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" -- }, -- "engines": { -- "node": ">=10" -+ "@types/node": "*", -+ "pg-protocol": "*", -+ "pg-types": "^2.2.0" - } - }, -- "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { -- "version": "6.1.0", -+ "node_modules/@types/plist": { -+ "version": "3.0.5", -+ "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.5.tgz", -+ "integrity": "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==", - "dev": true, -- "license": "MIT", -+ "optional": true, - "dependencies": { -- "universalify": "^2.0.0" -- }, -- "optionalDependencies": { -- "graceful-fs": "^4.1.6" -+ "@types/node": "*", -+ "xmlbuilder": ">=11.0.1" - } - }, -- "node_modules/@malept/flatpak-bundler/node_modules/universalify": { -- "version": "2.0.1", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">= 10.0.0" -- } -+ "node_modules/@types/qs": { -+ "version": "6.9.15", -+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", -+ "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", -+ "dev": true - }, -- "node_modules/@mdi/js": { -- "version": "7.2.96", -- "license": "Apache-2.0" -+ "node_modules/@types/range-parser": { -+ "version": "1.2.7", -+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", -+ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", -+ "dev": true - }, -- "node_modules/@nodelib/fs.scandir": { -- "version": "2.1.5", -- "dev": true, -- "license": "MIT", -+ "node_modules/@types/responselike": { -+ "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", -+ "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", - "dependencies": { -- "@nodelib/fs.stat": "2.0.5", -- "run-parallel": "^1.1.9" -- }, -- "engines": { -- "node": ">= 8" -+ "@types/node": "*" - } - }, -- "node_modules/@nodelib/fs.stat": { -- "version": "2.0.5", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">= 8" -- } -+ "node_modules/@types/retry": { -+ "version": "0.12.0", -+ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", -+ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", -+ "dev": true - }, -- "node_modules/@nodelib/fs.walk": { -- "version": "1.2.8", -+ "node_modules/@types/semver": { -+ "version": "7.5.8", -+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", -+ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==" -+ }, -+ "node_modules/@types/send": { -+ "version": "0.17.4", -+ "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", -+ "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@nodelib/fs.scandir": "2.1.5", -- "fastq": "^1.6.0" -- }, -- "engines": { -- "node": ">= 8" -+ "@types/mime": "^1", -+ "@types/node": "*" - } - }, -- "node_modules/@pkgjs/parseargs": { -- "version": "0.11.0", -+ "node_modules/@types/serve-index": { -+ "version": "1.9.4", -+ "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", -+ "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", - "dev": true, -- "license": "MIT", -- "optional": true, -- "engines": { -- "node": ">=14" -+ "dependencies": { -+ "@types/express": "*" - } - }, -- "node_modules/@playwright/test": { -- "version": "1.28.1", -+ "node_modules/@types/serve-static": { -+ "version": "1.15.7", -+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", -+ "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", - "dev": true, -- "license": "Apache-2.0", - "dependencies": { -+ "@types/http-errors": "*", - "@types/node": "*", -- "playwright-core": "1.28.1" -- }, -- "bin": { -- "playwright": "cli.js" -- }, -- "engines": { -- "node": ">=14" -- } -- }, -- "node_modules/@sindresorhus/is": { -- "version": "4.6.0", -- "license": "MIT", -- "engines": { -- "node": ">=10" -- }, -- "funding": { -- "url": "https://github.com/sindresorhus/is?sponsor=1" -+ "@types/send": "*" - } - }, -- "node_modules/@szmarczak/http-timer": { -- "version": "4.0.6", -- "license": "MIT", -+ "node_modules/@types/sockjs": { -+ "version": "0.3.36", -+ "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", -+ "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", -+ "dev": true, - "dependencies": { -- "defer-to-connect": "^2.0.0" -- }, -- "engines": { -- "node": ">=10" -+ "@types/node": "*" - } - }, -- "node_modules/@tootallnate/once": { -- "version": "2.0.0", -+ "node_modules/@types/ssh2": { -+ "version": "1.11.19", -+ "resolved": "https://registry.npmjs.org/@types/ssh2/-/ssh2-1.11.19.tgz", -+ "integrity": "sha512-ydbQAqEcdNVy2t1w7dMh6eWMr+iOgtEkqM/3K9RMijMaok/ER7L8GW6PwsOypHCN++M+c8S/UR9SgMqNIFstbA==", - "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">= 10" -+ "dependencies": { -+ "@types/node": "^18.11.18" - } - }, -- "node_modules/@tsconfig/node10": { -- "version": "1.0.9", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@tsconfig/node12": { -- "version": "1.0.11", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/@tsconfig/node14": { -- "version": "1.0.3", -+ "node_modules/@types/ssh2/node_modules/@types/node": { -+ "version": "18.19.46", -+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.46.tgz", -+ "integrity": "sha512-vnRgMS7W6cKa1/0G3/DTtQYpVrZ8c0Xm6UkLaVFrb9jtcVC3okokW09Ki1Qdrj9ISokszD69nY4WDLRlvHlhAA==", - "dev": true, -- "license": "MIT" -+ "dependencies": { -+ "undici-types": "~5.26.4" -+ } - }, -- "node_modules/@tsconfig/node16": { -- "version": "1.0.4", -+ "node_modules/@types/verror": { -+ "version": "1.10.10", -+ "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.10.tgz", -+ "integrity": "sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==", - "dev": true, -- "license": "MIT" -+ "optional": true - }, -- "node_modules/@turf/helpers": { -- "version": "6.5.0", -- "license": "MIT", -- "funding": { -- "url": "https://opencollective.com/turf" -- } -+ "node_modules/@types/web-bluetooth": { -+ "version": "0.0.17", -+ "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz", -+ "integrity": "sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==" - }, -- "node_modules/@types/better-sqlite3": { -- "version": "7.5.0", -+ "node_modules/@types/ws": { -+ "version": "8.5.12", -+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz", -+ "integrity": "sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==", - "dev": true, -- "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, -- "node_modules/@types/body-parser": { -- "version": "1.19.5", -- "dev": true, -- "license": "MIT", + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", ++ "license": "MIT", + "optional": true, "dependencies": { -- "@types/connect": "*", - "@types/node": "*" +- "cross-spawn": "^7.0.1" +- }, +- "engines": { +- "node": ">= 10" ++ "@types/node": "*" } }, -- "node_modules/@types/bonjour": { -- "version": "3.5.13", +- "node_modules/@malept/flatpak-bundler": { +- "version": "0.4.0", + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.18.0.tgz", + "integrity": "sha512-tzrmdGMJI/uii9/V6lurMo4/o+dMTKDH82LkNjhJ3adCW22YQydoRs5MwTiqxGF9CSYxPxQ7EYb4jLNlIs+E+A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { -- "@types/node": "*" -- } -- }, -- "node_modules/@types/cacheable-request": { -- "version": "6.0.3", -- "license": "MIT", +- "debug": "^4.1.1", +- "fs-extra": "^9.0.0", +- "lodash": "^4.17.15", +- "tmp-promise": "^3.0.2" + "@typescript-eslint/scope-manager": "5.18.0", + "@typescript-eslint/type-utils": "5.18.0", + "@typescript-eslint/utils": "5.18.0", @@ -4665,8 +4592,9 @@ index a38125e..a1067b0 100644 + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">= 10.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { @@ -4681,35 +4609,47 @@ index a38125e..a1067b0 100644 + "typescript": { + "optional": true + } -+ } -+ }, + } + }, +- "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { +- "version": "9.1.0", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", -+ "dev": true, + "dev": true, +- "license": "MIT", +- "dependencies": { +- "at-least-node": "^1.0.0", +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" ++ "license": "ISC", + "bin": { + "semver": "bin/semver.js" -+ }, -+ "engines": { -+ "node": ">=10" -+ } -+ }, + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { +- "version": "6.1.0", + "node_modules/@typescript-eslint/parser": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.18.0.tgz", + "integrity": "sha512-+08nYfurBzSSPndngnHvFw/fniWYJ5ymOrn/63oMIbgomVQOvIDhBoJmYZ9lwQOCnQV9xHGvf88ze3jFGUYooQ==", -+ "dev": true, + "dev": true, +- "license": "MIT", ++ "license": "BSD-2-Clause", "dependencies": { -- "@types/http-cache-semantics": "*", -- "@types/keyv": "^3.1.4", -- "@types/node": "*", -- "@types/responselike": "^1.0.0" +- "universalify": "^2.0.0" + "@typescript-eslint/scope-manager": "5.18.0", + "@typescript-eslint/types": "5.18.0", + "@typescript-eslint/typescript-estree": "5.18.0", + "debug": "^4.3.2" -+ }, + }, +- "optionalDependencies": { +- "graceful-fs": "^4.1.6" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, @@ -4726,38 +4666,48 @@ index a38125e..a1067b0 100644 + } } }, -- "node_modules/@types/connect": { -- "version": "3.4.38", +- "node_modules/@malept/flatpak-bundler/node_modules/universalify": { +- "version": "2.0.1", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.18.0.tgz", + "integrity": "sha512-C0CZML6NyRDj+ZbMqh9FnPscg2PrzSaVQg3IpTmpe0NURMVBXlghGZgMYqBw07YW73i0MCqSDqv2SbywnCS8jQ==", "dev": true, -- "license": "MIT", - "dependencies": { -- "@types/node": "*" + "license": "MIT", ++ "dependencies": { + "@typescript-eslint/types": "5.18.0", + "@typescript-eslint/visitor-keys": "5.18.0" + }, -+ "engines": { + "engines": { +- "node": ">= 10.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" -+ } -+ }, + } + }, +- "node_modules/@mdi/js": { +- "version": "7.2.96", +- "license": "Apache-2.0" +- }, +- "node_modules/@nodelib/fs.scandir": { +- "version": "2.1.5", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.18.0.tgz", + "integrity": "sha512-vcn9/6J5D6jtHxpEJrgK8FhaM8r6J1/ZiNu70ZUJN554Y3D9t3iovi6u7JF8l/e7FcBIxeuTEidZDR70UuCIfA==", -+ "dev": true, -+ "dependencies": { + "dev": true, + "license": "MIT", + "dependencies": { +- "@nodelib/fs.stat": "2.0.5", +- "run-parallel": "^1.1.9" + "@typescript-eslint/utils": "5.18.0", + "debug": "^4.3.2", + "tsutils": "^3.21.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">= 8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { @@ -4771,27 +4721,37 @@ index a38125e..a1067b0 100644 + "typescript": { + "optional": true + } -+ } -+ }, + } + }, +- "node_modules/@nodelib/fs.stat": { +- "version": "2.0.5", + "node_modules/@typescript-eslint/types": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.18.0.tgz", + "integrity": "sha512-bhV1+XjM+9bHMTmXi46p1Led5NP6iqQcsOxgx7fvk6gGiV48c6IynY0apQb7693twJDsXiVzNXTflhplmaiJaw==", -+ "dev": true, -+ "engines": { + "dev": true, + "license": "MIT", + "engines": { +- "node": ">= 8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" -+ } -+ }, + } + }, +- "node_modules/@nodelib/fs.walk": { +- "version": "1.2.8", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.18.0.tgz", + "integrity": "sha512-wa+2VAhOPpZs1bVij9e5gyVu60ReMi/KuOx4LKjGx2Y3XTNUDJgQ+5f77D49pHtqef/klglf+mibuHs9TrPxdQ==", -+ "dev": true, -+ "dependencies": { + "dev": true, +- "license": "MIT", ++ "license": "BSD-2-Clause", + "dependencies": { +- "@nodelib/fs.scandir": "2.1.5", +- "fastq": "^1.6.0" + "@typescript-eslint/types": "5.18.0", + "@typescript-eslint/visitor-keys": "5.18.0", + "debug": "^4.3.2", @@ -4799,8 +4759,18 @@ index a38125e..a1067b0 100644 + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">= 8" +- } +- }, +- "node_modules/@pkgjs/parseargs": { +- "version": "0.11.0", +- "dev": true, +- "license": "MIT", +- "optional": true, +- "engines": { +- "node": ">=14" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { @@ -4811,25 +4781,38 @@ index a38125e..a1067b0 100644 + "typescript": { + "optional": true + } -+ } -+ }, + } + }, +- "node_modules/@playwright/test": { +- "version": "1.28.1", + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", -+ "dev": true, -+ "bin": { + "dev": true, +- "license": "Apache-2.0", +- "dependencies": { +- "@types/node": "*", +- "playwright-core": "1.28.1" +- }, ++ "license": "ISC", + "bin": { +- "playwright": "cli.js" + "semver": "bin/semver.js" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">=14" + "node": ">=10" -+ } -+ }, + } + }, +- "node_modules/@sindresorhus/is": { +- "version": "4.6.0", + "node_modules/@typescript-eslint/utils": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.18.0.tgz", + "integrity": "sha512-+hFGWUMMri7OFY26TsOlGa+zgjEy1ssEipxpLjtl4wSll8zy85x0GrUSju/FHdKfVorZPYJLkF3I4XPtnCTewA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.18.0", @@ -4838,71 +4821,125 @@ index a38125e..a1067b0 100644 + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, -+ "engines": { + "engines": { +- "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -+ }, -+ "funding": { + }, + "funding": { +- "url": "https://github.com/sindresorhus/is?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" -+ } -+ }, + } + }, +- "node_modules/@szmarczak/http-timer": { +- "version": "4.0.6", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.18.0.tgz", + "integrity": "sha512-Hf+t+dJsjAKpKSkg3EHvbtEpFFb/1CiOHnvI8bjHgOD4/wAw3gKrA0i94LrbekypiZVanJu3McWJg7rWDMzRTg==", + "dev": true, -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "defer-to-connect": "^2.0.0" + "@typescript-eslint/types": "5.18.0", + "eslint-visitor-keys": "^3.0.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" -+ } -+ }, + } + }, +- "node_modules/@tootallnate/once": { +- "version": "2.0.0", + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", -+ "dev": true, -+ "engines": { + "dev": true, +- "license": "MIT", ++ "license": "Apache-2.0", + "engines": { +- "node": ">= 10" +- } +- }, +- "node_modules/@tsconfig/node10": { +- "version": "1.0.9", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@tsconfig/node12": { +- "version": "1.0.11", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@tsconfig/node14": { +- "version": "1.0.3", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@tsconfig/node16": { +- "version": "1.0.4", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/@turf/helpers": { +- "version": "6.5.0", +- "license": "MIT", + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, -+ "funding": { + "funding": { +- "url": "https://opencollective.com/turf" + "url": "https://opencollective.com/eslint" -+ } -+ }, + } + }, +- "node_modules/@types/better-sqlite3": { +- "version": "7.5.0", +- "dev": true, + "node_modules/@vue/compiler-core": { + "version": "3.2.47", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.47.tgz", + "integrity": "sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==", -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "@types/node": "*" + "@babel/parser": "^7.16.4", + "@vue/shared": "3.2.47", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" -+ } -+ }, + } + }, +- "node_modules/@types/body-parser": { +- "version": "1.19.5", +- "dev": true, + "node_modules/@vue/compiler-dom": { + "version": "3.2.47", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz", + "integrity": "sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==", -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "@types/connect": "*", +- "@types/node": "*" + "@vue/compiler-core": "3.2.47", + "@vue/shared": "3.2.47" -+ } -+ }, + } + }, +- "node_modules/@types/bonjour": { +- "version": "3.5.13", +- "dev": true, + "node_modules/@vue/compiler-sfc": { + "version": "3.2.47", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz", + "integrity": "sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==", -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "@types/node": "*" + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.47", + "@vue/compiler-dom": "3.2.47", @@ -4913,436 +4950,176 @@ index a38125e..a1067b0 100644 + "magic-string": "^0.25.7", + "postcss": "^8.1.10", + "source-map": "^0.6.1" -+ } -+ }, + } + }, +- "node_modules/@types/cacheable-request": { +- "version": "6.0.3", + "node_modules/@vue/compiler-ssr": { + "version": "3.2.47", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz", + "integrity": "sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==", -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "@types/http-cache-semantics": "*", +- "@types/keyv": "^3.1.4", +- "@types/node": "*", +- "@types/responselike": "^1.0.0" + "@vue/compiler-dom": "3.2.47", + "@vue/shared": "3.2.47" -+ } -+ }, + } + }, +- "node_modules/@types/connect": { + "node_modules/@vue/devtools-api": { -+ "version": "6.6.3", -+ "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.3.tgz", -+ "integrity": "sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==" ++ "version": "6.6.4", ++ "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz", ++ "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", ++ "license": "MIT" + }, + "node_modules/@vue/reactivity": { -+ "version": "3.4.38", + "version": "3.4.38", +- "dev": true, + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.38.tgz", + "integrity": "sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==", -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "@types/node": "*" + "@vue/shared": "3.4.38" -+ } -+ }, -+ "node_modules/@vue/reactivity-transform": { -+ "version": "3.2.47", -+ "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz", -+ "integrity": "sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==", -+ "dependencies": { -+ "@babel/parser": "^7.16.4", -+ "@vue/compiler-core": "3.2.47", -+ "@vue/shared": "3.2.47", -+ "estree-walker": "^2.0.2", -+ "magic-string": "^0.25.7" -+ } -+ }, -+ "node_modules/@vue/reactivity/node_modules/@vue/shared": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", -+ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" -+ }, -+ "node_modules/@vue/runtime-core": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.38.tgz", -+ "integrity": "sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==", -+ "dependencies": { -+ "@vue/reactivity": "3.4.38", -+ "@vue/shared": "3.4.38" -+ } -+ }, -+ "node_modules/@vue/runtime-core/node_modules/@vue/shared": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", -+ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" -+ }, -+ "node_modules/@vue/runtime-dom": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.38.tgz", -+ "integrity": "sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==", -+ "dependencies": { -+ "@vue/reactivity": "3.4.38", -+ "@vue/runtime-core": "3.4.38", -+ "@vue/shared": "3.4.38", -+ "csstype": "^3.1.3" -+ } -+ }, -+ "node_modules/@vue/runtime-dom/node_modules/@vue/shared": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", -+ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" -+ }, -+ "node_modules/@vue/server-renderer": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.38.tgz", -+ "integrity": "sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==", -+ "dependencies": { -+ "@vue/compiler-ssr": "3.4.38", -+ "@vue/shared": "3.4.38" -+ }, -+ "peerDependencies": { -+ "vue": "3.4.38" -+ } -+ }, -+ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-core": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.38.tgz", -+ "integrity": "sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==", -+ "dependencies": { -+ "@babel/parser": "^7.24.7", -+ "@vue/shared": "3.4.38", -+ "entities": "^4.5.0", -+ "estree-walker": "^2.0.2", -+ "source-map-js": "^1.2.0" -+ } -+ }, -+ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-dom": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz", -+ "integrity": "sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==", -+ "dependencies": { -+ "@vue/compiler-core": "3.4.38", -+ "@vue/shared": "3.4.38" -+ } -+ }, -+ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz", -+ "integrity": "sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==", -+ "dependencies": { -+ "@vue/compiler-dom": "3.4.38", -+ "@vue/shared": "3.4.38" -+ } -+ }, -+ "node_modules/@vue/server-renderer/node_modules/@vue/shared": { -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", -+ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" -+ }, -+ "node_modules/@vue/shared": { -+ "version": "3.2.47", -+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.47.tgz", -+ "integrity": "sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==" -+ }, -+ "node_modules/@vueuse/core": { -+ "version": "10.4.1", -+ "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.4.1.tgz", -+ "integrity": "sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg==", -+ "dependencies": { -+ "@types/web-bluetooth": "^0.0.17", -+ "@vueuse/metadata": "10.4.1", -+ "@vueuse/shared": "10.4.1", -+ "vue-demi": ">=0.14.5" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/antfu" -+ } -+ }, -+ "node_modules/@vueuse/core/node_modules/vue-demi": { -+ "version": "0.14.10", -+ "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", -+ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", -+ "hasInstallScript": true, -+ "bin": { -+ "vue-demi-fix": "bin/vue-demi-fix.js", -+ "vue-demi-switch": "bin/vue-demi-switch.js" -+ }, -+ "engines": { -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/antfu" -+ }, -+ "peerDependencies": { -+ "@vue/composition-api": "^1.0.0-rc.1", -+ "vue": "^3.0.0-0 || ^2.6.0" -+ }, -+ "peerDependenciesMeta": { -+ "@vue/composition-api": { -+ "optional": true -+ } -+ } -+ }, -+ "node_modules/@vueuse/metadata": { -+ "version": "10.4.1", -+ "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.4.1.tgz", -+ "integrity": "sha512-2Sc8X+iVzeuMGHr6O2j4gv/zxvQGGOYETYXEc41h0iZXIRnRbJZGmY/QP8dvzqUelf8vg0p/yEA5VpCEu+WpZg==", -+ "funding": { -+ "url": "https://github.com/sponsors/antfu" -+ } -+ }, -+ "node_modules/@vueuse/shared": { -+ "version": "10.4.1", -+ "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.4.1.tgz", -+ "integrity": "sha512-vz5hbAM4qA0lDKmcr2y3pPdU+2EVw/yzfRsBdu+6+USGa4PxqSQRYIUC9/NcT06y+ZgaTsyURw2I9qOFaaXHAg==", -+ "dependencies": { -+ "vue-demi": ">=0.14.5" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/antfu" -+ } -+ }, -+ "node_modules/@vueuse/shared/node_modules/vue-demi": { -+ "version": "0.14.10", -+ "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", -+ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", -+ "hasInstallScript": true, -+ "bin": { -+ "vue-demi-fix": "bin/vue-demi-fix.js", -+ "vue-demi-switch": "bin/vue-demi-switch.js" -+ }, -+ "engines": { -+ "node": ">=12" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/antfu" -+ }, -+ "peerDependencies": { -+ "@vue/composition-api": "^1.0.0-rc.1", -+ "vue": "^3.0.0-0 || ^2.6.0" -+ }, -+ "peerDependenciesMeta": { -+ "@vue/composition-api": { -+ "optional": true -+ } -+ } -+ }, -+ "node_modules/@webassemblyjs/ast": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", -+ "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", -+ "dependencies": { -+ "@webassemblyjs/helper-numbers": "1.11.6", -+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6" -+ } -+ }, -+ "node_modules/@webassemblyjs/floating-point-hex-parser": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", -+ "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" -+ }, -+ "node_modules/@webassemblyjs/helper-api-error": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", -+ "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" -+ }, -+ "node_modules/@webassemblyjs/helper-buffer": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", -+ "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" -+ }, -+ "node_modules/@webassemblyjs/helper-numbers": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", -+ "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", -+ "dependencies": { -+ "@webassemblyjs/floating-point-hex-parser": "1.11.6", -+ "@webassemblyjs/helper-api-error": "1.11.6", -+ "@xtuc/long": "4.2.2" -+ } -+ }, -+ "node_modules/@webassemblyjs/helper-wasm-bytecode": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", -+ "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" -+ }, -+ "node_modules/@webassemblyjs/helper-wasm-section": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", -+ "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", -+ "dependencies": { -+ "@webassemblyjs/ast": "1.12.1", -+ "@webassemblyjs/helper-buffer": "1.12.1", -+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -+ "@webassemblyjs/wasm-gen": "1.12.1" -+ } -+ }, -+ "node_modules/@webassemblyjs/ieee754": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", -+ "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", -+ "dependencies": { -+ "@xtuc/ieee754": "^1.2.0" -+ } -+ }, -+ "node_modules/@webassemblyjs/leb128": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", -+ "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", -+ "dependencies": { -+ "@xtuc/long": "4.2.2" -+ } -+ }, -+ "node_modules/@webassemblyjs/utf8": { -+ "version": "1.11.6", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", -+ "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" -+ }, -+ "node_modules/@webassemblyjs/wasm-edit": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", -+ "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", -+ "dependencies": { -+ "@webassemblyjs/ast": "1.12.1", -+ "@webassemblyjs/helper-buffer": "1.12.1", -+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -+ "@webassemblyjs/helper-wasm-section": "1.12.1", -+ "@webassemblyjs/wasm-gen": "1.12.1", -+ "@webassemblyjs/wasm-opt": "1.12.1", -+ "@webassemblyjs/wasm-parser": "1.12.1", -+ "@webassemblyjs/wast-printer": "1.12.1" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.4", - "dev": true, -- "license": "MIT", -+ "node_modules/@webassemblyjs/wasm-gen": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", -+ "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", ++ "node_modules/@vue/reactivity-transform": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz", ++ "integrity": "sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==", + "license": "MIT", "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" -+ "@webassemblyjs/ast": "1.12.1", -+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -+ "@webassemblyjs/ieee754": "1.11.6", -+ "@webassemblyjs/leb128": "1.11.6", -+ "@webassemblyjs/utf8": "1.11.6" ++ "@babel/parser": "^7.16.4", ++ "@vue/compiler-core": "3.2.47", ++ "@vue/shared": "3.2.47", ++ "estree-walker": "^2.0.2", ++ "magic-string": "^0.25.7" } }, - "node_modules/@types/conventional-commits-parser": { - "version": "5.0.0", - "dev": true, - "license": "MIT", -+ "node_modules/@webassemblyjs/wasm-opt": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", -+ "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", - "dependencies": { +- "dependencies": { - "@types/node": "*" -+ "@webassemblyjs/ast": "1.12.1", -+ "@webassemblyjs/helper-buffer": "1.12.1", -+ "@webassemblyjs/wasm-gen": "1.12.1", -+ "@webassemblyjs/wasm-parser": "1.12.1" - } +- } ++ "node_modules/@vue/reactivity/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==", ++ "license": "MIT" }, - "node_modules/@types/debug": { - "version": "4.1.12", - "dev": true, -- "license": "MIT", -+ "node_modules/@webassemblyjs/wasm-parser": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", -+ "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", ++ "node_modules/@vue/runtime-core": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.38.tgz", ++ "integrity": "sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==", + "license": "MIT", "dependencies": { - "@types/ms": "*" -+ "@webassemblyjs/ast": "1.12.1", -+ "@webassemblyjs/helper-api-error": "1.11.6", -+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -+ "@webassemblyjs/ieee754": "1.11.6", -+ "@webassemblyjs/leb128": "1.11.6", -+ "@webassemblyjs/utf8": "1.11.6" ++ "@vue/reactivity": "3.4.38", ++ "@vue/shared": "3.4.38" } }, - "node_modules/@types/eslint": { - "version": "8.44.7", - "license": "MIT", -+ "node_modules/@webassemblyjs/wast-printer": { -+ "version": "1.12.1", -+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", -+ "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", - "dependencies": { +- "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" -+ "@webassemblyjs/ast": "1.12.1", -+ "@xtuc/long": "4.2.2" - } +- } ++ "node_modules/@vue/runtime-core/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==", ++ "license": "MIT" }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", -- "license": "MIT", -- "dependencies": { ++ "node_modules/@vue/runtime-dom": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.38.tgz", ++ "integrity": "sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==", + "license": "MIT", + "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" -+ "node_modules/@webpack-cli/configtest": { -+ "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", -+ "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", -+ "peerDependencies": { -+ "webpack": "4.x.x || 5.x.x", -+ "webpack-cli": "4.x.x" ++ "@vue/reactivity": "3.4.38", ++ "@vue/runtime-core": "3.4.38", ++ "@vue/shared": "3.4.38", ++ "csstype": "^3.1.3" } }, - "node_modules/@types/estree": { - "version": "1.0.5", -- "license": "MIT" -- }, ++ "node_modules/@vue/runtime-dom/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==", + "license": "MIT" + }, - "node_modules/@types/express": { - "version": "4.17.21", - "dev": true, -- "license": "MIT", -+ "node_modules/@webpack-cli/info": { -+ "version": "1.5.0", -+ "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", -+ "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", ++ "node_modules/@vue/server-renderer": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.38.tgz", ++ "integrity": "sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==", + "license": "MIT", "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" -+ "envinfo": "^7.7.3" ++ "@vue/compiler-ssr": "3.4.38", ++ "@vue/shared": "3.4.38" + }, + "peerDependencies": { -+ "webpack-cli": "4.x.x" ++ "vue": "3.4.38" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.41", - "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-core": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.38.tgz", ++ "integrity": "sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==", + "license": "MIT", + "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" -+ "node_modules/@webpack-cli/serve": { -+ "version": "1.7.0", -+ "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", -+ "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", -+ "peerDependencies": { -+ "webpack-cli": "4.x.x" -+ }, -+ "peerDependenciesMeta": { -+ "webpack-dev-server": { -+ "optional": true -+ } ++ "@babel/parser": "^7.24.7", ++ "@vue/shared": "3.4.38", ++ "entities": "^4.5.0", ++ "estree-walker": "^2.0.2", ++ "source-map-js": "^1.2.0" } }, - "node_modules/@types/fs-extra": { - "version": "9.0.13", -+ "node_modules/@xmldom/xmldom": { -+ "version": "0.8.10", -+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", -+ "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", - "dev": true, -- "license": "MIT", -- "dependencies": { +- "dev": true, ++ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-dom": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz", ++ "integrity": "sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==", + "license": "MIT", + "dependencies": { - "@types/node": "*" -+ "engines": { -+ "node": ">=10.0.0" ++ "@vue/compiler-core": "3.4.38", ++ "@vue/shared": "3.4.38" } }, - "node_modules/@types/geojson": { @@ -5353,87 +5130,94 @@ index a38125e..a1067b0 100644 - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "license": "MIT" -+ "node_modules/@xtuc/ieee754": { -+ "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", -+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - }, +- }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "license": "MIT" -+ "node_modules/@xtuc/long": { -+ "version": "4.2.2", -+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", -+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - }, +- }, - "node_modules/@types/http-errors": { - "version": "2.0.4", - "dev": true, - "license": "MIT" -+ "node_modules/7zip-bin": { -+ "version": "5.2.0", -+ "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.2.0.tgz", -+ "integrity": "sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==", -+ "dev": true - }, +- }, - "node_modules/@types/http-proxy": { - "version": "1.17.14", -+ "node_modules/accepts": { -+ "version": "1.3.8", -+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", -+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz", ++ "integrity": "sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==", + "license": "MIT", "dependencies": { - "@types/node": "*" -+ "mime-types": "~2.1.34", -+ "negotiator": "0.6.3" -+ }, -+ "engines": { -+ "node": ">= 0.6" ++ "@vue/compiler-dom": "3.4.38", ++ "@vue/shared": "3.4.38" } }, - "node_modules/@types/json-schema": { - "version": "7.0.15", -- "license": "MIT" -+ "node_modules/ace-builds": { -+ "version": "1.34.2", -+ "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.2.tgz", -+ "integrity": "sha512-wiOZYuxyOSYfZzDasQTe+ZWmRlYxXSJM/kMKZ/bSqO1VgrBl+PaaTz/Sc+y7hXCKAUj3syUdpwxQyvwv9vQe6w==" ++ "node_modules/@vue/server-renderer/node_modules/@vue/shared": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==", + "license": "MIT" }, - "node_modules/@types/json5": { - "version": "0.0.29", -+ "node_modules/acorn": { -+ "version": "7.4.1", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", -+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, -- "license": "MIT" -- }, +- "dev": true, ++ "node_modules/@vue/shared": { ++ "version": "3.2.47", ++ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.47.tgz", ++ "integrity": "sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==", + "license": "MIT" + }, - "node_modules/@types/keyv": { - "version": "3.1.4", -- "license": "MIT", -- "dependencies": { ++ "node_modules/@vueuse/core": { ++ "version": "10.4.1", ++ "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.4.1.tgz", ++ "integrity": "sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg==", + "license": "MIT", + "dependencies": { - "@types/node": "*" -+ "bin": { -+ "acorn": "bin/acorn" ++ "@types/web-bluetooth": "^0.0.17", ++ "@vueuse/metadata": "10.4.1", ++ "@vueuse/shared": "10.4.1", ++ "vue-demi": ">=0.14.5" + }, -+ "engines": { -+ "node": ">=0.4.0" ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@types/leaflet": { - "version": "1.7.11", -+ "node_modules/acorn-jsx": { -+ "version": "5.3.2", -+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", -+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@vueuse/core/node_modules/vue-demi": { ++ "version": "0.14.10", ++ "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", ++ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", ++ "hasInstallScript": true, + "license": "MIT", - "dependencies": { - "@types/geojson": "*" ++ "bin": { ++ "vue-demi-fix": "bin/vue-demi-fix.js", ++ "vue-demi-switch": "bin/vue-demi-switch.js" ++ }, ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ }, + "peerDependencies": { -+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ "@vue/composition-api": "^1.0.0-rc.1", ++ "vue": "^3.0.0-0 || ^2.6.0" ++ }, ++ "peerDependenciesMeta": { ++ "@vue/composition-api": { ++ "optional": true ++ } } }, - "node_modules/@types/marked": { @@ -5448,114 +5232,124 @@ index a38125e..a1067b0 100644 - }, - "node_modules/@types/minimist": { - "version": "1.2.5", -+ "node_modules/acorn-walk": { -+ "version": "8.3.3", -+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", -+ "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", - "dev": true, +- "dev": true, - "license": "MIT" -+ "dependencies": { -+ "acorn": "^8.11.0" -+ }, -+ "engines": { -+ "node": ">=0.4.0" -+ } - }, +- }, - "node_modules/@types/ms": { - "version": "0.7.34", -+ "node_modules/acorn-walk/node_modules/acorn": { -+ "version": "8.12.1", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", -+ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", - "dev": true, +- "dev": true, - "license": "MIT" -+ "bin": { -+ "acorn": "bin/acorn" -+ }, -+ "engines": { -+ "node": ">=0.4.0" -+ } - }, +- }, - "node_modules/@types/node": { - "version": "17.0.45", - "license": "MIT" -+ "node_modules/add-stream": { -+ "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", -+ "integrity": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==", -+ "dev": true ++ "node_modules/@vueuse/metadata": { ++ "version": "10.4.1", ++ "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.4.1.tgz", ++ "integrity": "sha512-2Sc8X+iVzeuMGHr6O2j4gv/zxvQGGOYETYXEc41h0iZXIRnRbJZGmY/QP8dvzqUelf8vg0p/yEA5VpCEu+WpZg==", ++ "license": "MIT", ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ } }, - "node_modules/@types/node-forge": { - "version": "1.3.10", -+ "node_modules/agent-base": { -+ "version": "6.0.2", -+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", -+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@vueuse/shared": { ++ "version": "10.4.1", ++ "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.4.1.tgz", ++ "integrity": "sha512-vz5hbAM4qA0lDKmcr2y3pPdU+2EVw/yzfRsBdu+6+USGa4PxqSQRYIUC9/NcT06y+ZgaTsyURw2I9qOFaaXHAg==", + "license": "MIT", "dependencies": { - "@types/node": "*" -+ "debug": "4" ++ "vue-demi": ">=0.14.5" + }, -+ "engines": { -+ "node": ">= 6.0.0" ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "dev": true, - "license": "MIT" -- }, ++ "node_modules/@vueuse/shared/node_modules/vue-demi": { ++ "version": "0.14.10", ++ "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", ++ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", ++ "hasInstallScript": true, ++ "license": "MIT", ++ "bin": { ++ "vue-demi-fix": "bin/vue-demi-fix.js", ++ "vue-demi-switch": "bin/vue-demi-switch.js" ++ }, ++ "engines": { ++ "node": ">=12" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/antfu" ++ }, ++ "peerDependencies": { ++ "@vue/composition-api": "^1.0.0-rc.1", ++ "vue": "^3.0.0-0 || ^2.6.0" ++ }, ++ "peerDependenciesMeta": { ++ "@vue/composition-api": { ++ "optional": true ++ } ++ } + }, - "node_modules/@types/pg": { - "version": "8.6.6", - "dev": true, -- "license": "MIT", -+ "node_modules/ajv": { -+ "version": "8.17.1", -+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", -+ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", ++ "node_modules/@webassemblyjs/ast": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", ++ "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "license": "MIT", "dependencies": { - "@types/node": "*", - "pg-protocol": "*", - "pg-types": "^2.2.0" -+ "fast-deep-equal": "^3.1.3", -+ "fast-uri": "^3.0.1", -+ "json-schema-traverse": "^1.0.0", -+ "require-from-string": "^2.0.2" -+ }, -+ "funding": { -+ "type": "github", -+ "url": "https://github.com/sponsors/epoberezkin" ++ "@webassemblyjs/helper-numbers": "1.11.6", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, - "node_modules/@types/qs": { - "version": "6.9.10", - "dev": true, -- "license": "MIT" -- }, ++ "node_modules/@webassemblyjs/floating-point-hex-parser": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", ++ "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "license": "MIT" + }, - "node_modules/@types/range-parser": { - "version": "1.2.7", - "dev": true, -- "license": "MIT" -- }, ++ "node_modules/@webassemblyjs/helper-api-error": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", ++ "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "license": "MIT" + }, - "node_modules/@types/responselike": { - "version": "1.0.3", -- "license": "MIT", -+ "node_modules/ajv-formats": { -+ "version": "2.1.1", -+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", -+ "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", ++ "node_modules/@webassemblyjs/helper-buffer": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", ++ "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", ++ "license": "MIT" ++ }, ++ "node_modules/@webassemblyjs/helper-numbers": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", ++ "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "license": "MIT", "dependencies": { - "@types/node": "*" -+ "ajv": "^8.0.0" -+ }, -+ "peerDependencies": { -+ "ajv": "^8.0.0" -+ }, -+ "peerDependenciesMeta": { -+ "ajv": { -+ "optional": true -+ } ++ "@webassemblyjs/floating-point-hex-parser": "1.11.6", ++ "@webassemblyjs/helper-api-error": "1.11.6", ++ "@xtuc/long": "4.2.2" } }, - "node_modules/@types/retry": { @@ -5565,130 +5359,115 @@ index a38125e..a1067b0 100644 - }, - "node_modules/@types/semver": { - "version": "7.5.6", -- "license": "MIT" -+ "node_modules/ajv-keywords": { -+ "version": "5.1.0", -+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", -+ "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", -+ "dependencies": { -+ "fast-deep-equal": "^3.1.3" -+ }, -+ "peerDependencies": { -+ "ajv": "^8.8.2" -+ } ++ "node_modules/@webassemblyjs/helper-wasm-bytecode": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", ++ "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "license": "MIT" }, - "node_modules/@types/send": { - "version": "0.17.4", -+ "node_modules/all-contributors-cli": { -+ "version": "6.20.5", -+ "resolved": "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.20.5.tgz", -+ "integrity": "sha512-vWAR4+SyF9ZpkpbFoldCYbuAb8qkzjkj8uW4yJJN2fN48VRO+E7xGTnt+cLTQt5RNgj00MoYx/LJbWesjeSehQ==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@webassemblyjs/helper-wasm-section": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", ++ "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "license": "MIT", "dependencies": { - "@types/mime": "^1", - "@types/node": "*" -+ "@babel/runtime": "^7.7.6", -+ "async": "^3.1.0", -+ "chalk": "^4.0.0", -+ "didyoumean": "^1.2.1", -+ "inquirer": "^7.3.3", -+ "json-fixer": "^1.6.8", -+ "lodash": "^4.11.2", -+ "node-fetch": "^2.6.0", -+ "pify": "^5.0.0", -+ "yargs": "^15.0.1" -+ }, -+ "bin": { -+ "all-contributors": "dist/cli.js" -+ }, -+ "engines": { -+ "node": ">=4" ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-buffer": "1.12.1", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/wasm-gen": "1.12.1" } }, - "node_modules/@types/serve-index": { - "version": "1.9.4", -+ "node_modules/all-contributors-cli/node_modules/cliui": { -+ "version": "6.0.0", -+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", -+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@webassemblyjs/ieee754": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", ++ "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "license": "MIT", "dependencies": { - "@types/express": "*" -+ "string-width": "^4.2.0", -+ "strip-ansi": "^6.0.0", -+ "wrap-ansi": "^6.2.0" ++ "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/@types/serve-static": { - "version": "1.15.5", -+ "node_modules/all-contributors-cli/node_modules/find-up": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", -+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, +- "dev": true, - "license": "MIT", ++ "node_modules/@webassemblyjs/leb128": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", ++ "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", ++ "license": "Apache-2.0", "dependencies": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" -+ }, -+ "engines": { -+ "node": ">=8" ++ "@xtuc/long": "4.2.2" } }, - "node_modules/@types/sockjs": { - "version": "0.3.36", -+ "node_modules/all-contributors-cli/node_modules/locate-path": { -+ "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", -+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@webassemblyjs/utf8": { ++ "version": "1.11.6", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", ++ "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", ++ "license": "MIT" ++ }, ++ "node_modules/@webassemblyjs/wasm-edit": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", ++ "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "license": "MIT", "dependencies": { - "@types/node": "*" -+ "p-locate": "^4.1.0" -+ }, -+ "engines": { -+ "node": ">=8" ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-buffer": "1.12.1", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/helper-wasm-section": "1.12.1", ++ "@webassemblyjs/wasm-gen": "1.12.1", ++ "@webassemblyjs/wasm-opt": "1.12.1", ++ "@webassemblyjs/wasm-parser": "1.12.1", ++ "@webassemblyjs/wast-printer": "1.12.1" } }, - "node_modules/@types/ssh2": { - "version": "1.11.17", -+ "node_modules/all-contributors-cli/node_modules/p-limit": { -+ "version": "2.3.0", -+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", -+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@webassemblyjs/wasm-gen": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", ++ "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "license": "MIT", "dependencies": { - "@types/node": "^18.11.18" -+ "p-try": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=6" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/ieee754": "1.11.6", ++ "@webassemblyjs/leb128": "1.11.6", ++ "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/@types/ssh2/node_modules/@types/node": { - "version": "18.18.13", -+ "node_modules/all-contributors-cli/node_modules/p-locate": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", -+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@webassemblyjs/wasm-opt": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", ++ "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" -+ "p-limit": "^2.2.0" -+ }, -+ "engines": { -+ "node": ">=8" ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-buffer": "1.12.1", ++ "@webassemblyjs/wasm-gen": "1.12.1", ++ "@webassemblyjs/wasm-parser": "1.12.1" } }, - "node_modules/@types/web-bluetooth": { @@ -5697,34 +5476,54 @@ index a38125e..a1067b0 100644 - }, - "node_modules/@types/ws": { - "version": "8.5.10", -+ "node_modules/all-contributors-cli/node_modules/path-exists": { -+ "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", -+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, -- "license": "MIT", -- "dependencies": { +- "dev": true, ++ "node_modules/@webassemblyjs/wasm-parser": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", ++ "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "license": "MIT", + "dependencies": { - "@types/node": "*" -- } -- }, ++ "@webassemblyjs/ast": "1.12.1", ++ "@webassemblyjs/helper-api-error": "1.11.6", ++ "@webassemblyjs/helper-wasm-bytecode": "1.11.6", ++ "@webassemblyjs/ieee754": "1.11.6", ++ "@webassemblyjs/leb128": "1.11.6", ++ "@webassemblyjs/utf8": "1.11.6" + } + }, - "node_modules/@types/yauzl": { - "version": "2.10.3", -- "license": "MIT", ++ "node_modules/@webassemblyjs/wast-printer": { ++ "version": "1.12.1", ++ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", ++ "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "license": "MIT", - "optional": true, -- "dependencies": { + "dependencies": { - "@types/node": "*" -+ "engines": { -+ "node": ">=8" ++ "@webassemblyjs/ast": "1.12.1", ++ "@xtuc/long": "4.2.2" } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.18.0", -+ "node_modules/all-contributors-cli/node_modules/wrap-ansi": { -+ "version": "6.2.0", -+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", -+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/@webpack-cli/configtest": { ++ "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", ++ "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", ++ "license": "MIT", ++ "peerDependencies": { ++ "webpack": "4.x.x || 5.x.x", ++ "webpack-cli": "4.x.x" ++ } ++ }, ++ "node_modules/@webpack-cli/info": { ++ "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", ++ "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "5.18.0", - "@typescript-eslint/type-utils": "5.18.0", @@ -5735,9 +5534,139 @@ index a38125e..a1067b0 100644 - "regexpp": "^3.2.0", - "semver": "^7.3.5", - "tsutils": "^3.21.0" -+ "ansi-styles": "^4.0.0", -+ "string-width": "^4.1.0", -+ "strip-ansi": "^6.0.0" +- }, +- "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "envinfo": "^7.7.3" + }, + "peerDependencies": { +- "@typescript-eslint/parser": "^5.0.0", +- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ "webpack-cli": "4.x.x" ++ } ++ }, ++ "node_modules/@webpack-cli/serve": { ++ "version": "1.7.0", ++ "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", ++ "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", ++ "license": "MIT", ++ "peerDependencies": { ++ "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { +- "typescript": { ++ "webpack-dev-server": { + "optional": true + } + } + }, +- "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { +- "version": "6.0.0", ++ "node_modules/@xmldom/xmldom": { ++ "version": "0.8.10", ++ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", ++ "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, ++ "license": "MIT", + "engines": { +- "node": ">=10" ++ "node": ">=10.0.0" + } + }, +- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { +- "version": "7.5.4", ++ "node_modules/@xtuc/ieee754": { ++ "version": "1.2.0", ++ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", ++ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", ++ "license": "BSD-3-Clause" ++ }, ++ "node_modules/@xtuc/long": { ++ "version": "4.2.2", ++ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", ++ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", ++ "license": "Apache-2.0" ++ }, ++ "node_modules/7zip-bin": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.2.0.tgz", ++ "integrity": "sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==", + "dev": true, +- "license": "ISC", ++ "license": "MIT" ++ }, ++ "node_modules/accepts": { ++ "version": "1.3.8", ++ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", ++ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", ++ "dev": true, ++ "license": "MIT", + "dependencies": { +- "lru-cache": "^6.0.0" ++ "mime-types": "~2.1.34", ++ "negotiator": "0.6.3" + }, ++ "engines": { ++ "node": ">= 0.6" ++ } ++ }, ++ "node_modules/ace-builds": { ++ "version": "1.34.2", ++ "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.2.tgz", ++ "integrity": "sha512-wiOZYuxyOSYfZzDasQTe+ZWmRlYxXSJM/kMKZ/bSqO1VgrBl+PaaTz/Sc+y7hXCKAUj3syUdpwxQyvwv9vQe6w==", ++ "license": "BSD-3-Clause" ++ }, ++ "node_modules/acorn": { ++ "version": "7.4.1", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", ++ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", ++ "dev": true, ++ "license": "MIT", + "bin": { +- "semver": "bin/semver.js" ++ "acorn": "bin/acorn" + }, + "engines": { +- "node": ">=10" ++ "node": ">=0.4.0" + } + }, +- "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { +- "version": "4.0.0", ++ "node_modules/acorn-jsx": { ++ "version": "5.3.2", ++ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", ++ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, +- "license": "ISC" ++ "license": "MIT", ++ "peerDependencies": { ++ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ } + }, +- "node_modules/@typescript-eslint/parser": { +- "version": "5.18.0", ++ "node_modules/acorn-walk": { ++ "version": "8.3.4", ++ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", ++ "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, +- "license": "BSD-2-Clause", ++ "license": "MIT", + "dependencies": { +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/typescript-estree": "5.18.0", +- "debug": "^4.3.2" ++ "acorn": "^8.11.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -5747,32 +5676,329 @@ index a38125e..a1067b0 100644 - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { -- "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } ++ "node": ">=0.4.0" + } + }, +- "node_modules/@typescript-eslint/scope-manager": { +- "version": "5.18.0", ++ "node_modules/acorn-walk/node_modules/acorn": { ++ "version": "8.13.0", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", ++ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", + "dev": true, + "license": "MIT", +- "dependencies": { +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/visitor-keys": "5.18.0" ++ "bin": { ++ "acorn": "bin/acorn" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "node": ">=0.4.0" + } + }, +- "node_modules/@typescript-eslint/type-utils": { +- "version": "5.18.0", ++ "node_modules/add-stream": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", ++ "integrity": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/agent-base": { ++ "version": "6.0.2", ++ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", ++ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "license": "MIT", + "dependencies": { +- "@typescript-eslint/utils": "5.18.0", +- "debug": "^4.3.2", +- "tsutils": "^3.21.0" ++ "debug": "4" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "node": ">= 6.0.0" ++ } ++ }, ++ "node_modules/ajv": { ++ "version": "8.17.1", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", ++ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", ++ "license": "MIT", ++ "dependencies": { ++ "fast-deep-equal": "^3.1.3", ++ "fast-uri": "^3.0.1", ++ "json-schema-traverse": "^1.0.0", ++ "require-from-string": "^2.0.2" + }, + "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" ++ } ++ }, ++ "node_modules/ajv-formats": { ++ "version": "2.1.1", ++ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", ++ "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", ++ "license": "MIT", ++ "dependencies": { ++ "ajv": "^8.0.0" + }, + "peerDependencies": { +- "eslint": "*" ++ "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { +- "typescript": { ++ "ajv": { + "optional": true + } + } + }, +- "node_modules/@typescript-eslint/types": { +- "version": "5.18.0", +- "dev": true, ++ "node_modules/ajv-keywords": { ++ "version": "5.1.0", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", ++ "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", +- "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "dependencies": { ++ "fast-deep-equal": "^3.1.3" + }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "peerDependencies": { ++ "ajv": "^8.8.2" + } + }, +- "node_modules/@typescript-eslint/typescript-estree": { +- "version": "5.18.0", ++ "node_modules/all-contributors-cli": { ++ "version": "6.20.5", ++ "resolved": "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.20.5.tgz", ++ "integrity": "sha512-vWAR4+SyF9ZpkpbFoldCYbuAb8qkzjkj8uW4yJJN2fN48VRO+E7xGTnt+cLTQt5RNgj00MoYx/LJbWesjeSehQ==", + "dev": true, +- "license": "BSD-2-Clause", ++ "license": "MIT", + "dependencies": { +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/visitor-keys": "5.18.0", +- "debug": "^4.3.2", +- "globby": "^11.0.4", +- "is-glob": "^4.0.3", +- "semver": "^7.3.5", +- "tsutils": "^3.21.0" +- }, +- "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "@babel/runtime": "^7.7.6", ++ "async": "^3.1.0", ++ "chalk": "^4.0.0", ++ "didyoumean": "^1.2.1", ++ "inquirer": "^7.3.3", ++ "json-fixer": "^1.6.8", ++ "lodash": "^4.11.2", ++ "node-fetch": "^2.6.0", ++ "pify": "^5.0.0", ++ "yargs": "^15.0.1" + }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "bin": { ++ "all-contributors": "dist/cli.js" + }, +- "peerDependenciesMeta": { +- "typescript": { +- "optional": true +- } ++ "engines": { ++ "node": ">=4" + } + }, +- "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { ++ "node_modules/all-contributors-cli/node_modules/cliui": { + "version": "6.0.0", ++ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", ++ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "license": "ISC", + "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" ++ "string-width": "^4.2.0", ++ "strip-ansi": "^6.0.0", ++ "wrap-ansi": "^6.2.0" + } + }, +- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { +- "version": "7.5.4", ++ "node_modules/all-contributors-cli/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, +- "license": "ISC", ++ "license": "MIT", + "dependencies": { +- "lru-cache": "^6.0.0" +- }, +- "bin": { +- "semver": "bin/semver.js" ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" + }, + "engines": { +- "node": ">=10" + "node": ">=8" } }, -- "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { -- "version": "6.0.0", +- "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { +- "version": "4.0.0", ++ "node_modules/all-contributors-cli/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, +- "license": "ISC" ++ "license": "MIT", ++ "dependencies": { ++ "p-locate": "^4.1.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } + }, +- "node_modules/@typescript-eslint/utils": { +- "version": "5.18.0", ++ "node_modules/all-contributors-cli/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { +- "@types/json-schema": "^7.0.9", +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/typescript-estree": "5.18.0", +- "eslint-scope": "^5.1.1", +- "eslint-utils": "^3.0.0" ++ "p-try": "^2.0.0" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "node": ">=6" + }, + "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" +- }, +- "peerDependencies": { +- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/@typescript-eslint/visitor-keys": { +- "version": "5.18.0", ++ "node_modules/all-contributors-cli/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { +- "@typescript-eslint/types": "5.18.0", +- "eslint-visitor-keys": "^3.0.0" ++ "p-limit": "^2.2.0" + }, + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/typescript-eslint" ++ "node": ">=8" + } + }, +- "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { +- "version": "3.4.3", ++ "node_modules/all-contributors-cli/node_modules/path-exists": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, +- "license": "Apache-2.0", ++ "license": "MIT", + "engines": { +- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- }, +- "funding": { +- "url": "https://opencollective.com/eslint" ++ "node": ">=8" + } + }, +- "node_modules/@vue/compiler-core": { +- "version": "3.2.47", ++ "node_modules/all-contributors-cli/node_modules/wrap-ansi": { ++ "version": "6.2.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", ++ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "@babel/parser": "^7.16.4", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "source-map": "^0.6.1" ++ "ansi-styles": "^4.0.0", ++ "string-width": "^4.1.0", ++ "strip-ansi": "^6.0.0" ++ }, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/@vue/compiler-dom": { +- "version": "3.2.47", + "node_modules/all-contributors-cli/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", -+ "dev": true ++ "dev": true, ++ "license": "ISC" + }, + "node_modules/all-contributors-cli/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, -- "license": "ISC", ++ "dev": true, + "license": "MIT", "dependencies": { -- "yallist": "^4.0.0" +- "@vue/compiler-core": "3.2.47", +- "@vue/shared": "3.2.47" + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", @@ -5784,194 +6010,254 @@ index a38125e..a1067b0 100644 + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" - }, - "engines": { -- "node": ">=10" ++ }, ++ "engines": { + "node": ">=8" } }, -- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { -- "version": "7.5.4", +- "node_modules/@vue/compiler-sfc": { +- "version": "3.2.47", +- "license": "MIT", + "node_modules/all-contributors-cli/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, -- "license": "ISC", ++ "dev": true, ++ "license": "ISC", "dependencies": { -- "lru-cache": "^6.0.0" -- }, -- "bin": { -- "semver": "bin/semver.js" +- "@babel/parser": "^7.16.4", +- "@vue/compiler-core": "3.2.47", +- "@vue/compiler-dom": "3.2.47", +- "@vue/compiler-ssr": "3.2.47", +- "@vue/reactivity-transform": "3.2.47", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "magic-string": "^0.25.7", +- "postcss": "^8.1.10", +- "source-map": "^0.6.1" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" - }, - "engines": { -- "node": ">=10" ++ }, ++ "engines": { + "node": ">=6" } }, -- "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { -- "version": "4.0.0", +- "node_modules/@vue/compiler-ssr": { +- "version": "3.2.47", + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, -- "license": "ISC" ++ "dev": true, + "license": "MIT", +- "dependencies": { +- "@vue/compiler-dom": "3.2.47", +- "@vue/shared": "3.2.47" + "engines": { + "node": ">=6" -+ } + } }, -- "node_modules/@typescript-eslint/parser": { -- "version": "5.18.0", +- "node_modules/@vue/devtools-api": { +- "version": "6.5.1", +- "license": "MIT" +- }, +- "node_modules/@vue/reactivity": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.27.tgz", +- "integrity": "sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==", +- "dependencies": { +- "@vue/shared": "3.4.27" +- } +- }, +- "node_modules/@vue/reactivity-transform": { +- "version": "3.2.47", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, -- "license": "BSD-2-Clause", ++ "dev": true, + "license": "MIT", "dependencies": { -- "@typescript-eslint/scope-manager": "5.18.0", -- "@typescript-eslint/types": "5.18.0", -- "@typescript-eslint/typescript-estree": "5.18.0", -- "debug": "^4.3.2" +- "@babel/parser": "^7.16.4", +- "@vue/compiler-core": "3.2.47", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "magic-string": "^0.25.7" +- } +- }, +- "node_modules/@vue/reactivity/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- }, +- "node_modules/@vue/runtime-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.27.tgz", +- "integrity": "sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==", +- "dependencies": { +- "@vue/reactivity": "3.4.27", +- "@vue/shared": "3.4.27" + "type-fest": "^0.21.3" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "engines": { + "node": ">=8" - }, - "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -- }, -- "peerDependencies": { -- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" -- }, -- "peerDependenciesMeta": { -- "typescript": { -- "optional": true -- } ++ }, ++ "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/@typescript-eslint/scope-manager": { -- "version": "5.18.0", +- "node_modules/@vue/runtime-core/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- }, +- "node_modules/@vue/runtime-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.27.tgz", +- "integrity": "sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==", +- "dependencies": { +- "@vue/runtime-core": "3.4.27", +- "@vue/shared": "3.4.27", +- "csstype": "^3.1.3" + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, -- "license": "MIT", -- "dependencies": { -- "@typescript-eslint/types": "5.18.0", -- "@typescript-eslint/visitor-keys": "5.18.0" -- }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ "dev": true, ++ "license": "(MIT OR CC0-1.0)", ++ "engines": { + "node": ">=10" - }, - "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" ++ }, ++ "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/@typescript-eslint/type-utils": { -- "version": "5.18.0", +- "node_modules/@vue/runtime-dom/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- }, +- "node_modules/@vue/server-renderer": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.27.tgz", +- "integrity": "sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==", +- "dependencies": { +- "@vue/compiler-ssr": "3.4.27", +- "@vue/shared": "3.4.27" +- }, +- "peerDependencies": { +- "vue": "3.4.27" + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true, -- "license": "MIT", ++ "dev": true, + "engines": [ + "node >= 0.8.0" + ], ++ "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" -+ } -+ }, + } + }, +- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.27.tgz", +- "integrity": "sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==", +- "dependencies": { +- "@babel/parser": "^7.24.4", +- "@vue/shared": "3.4.27", +- "entities": "^4.5.0", +- "estree-walker": "^2.0.2", +- "source-map-js": "^1.2.0" + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", ++ "license": "MIT", + "engines": { + "node": ">=8" -+ } -+ }, + } + }, +- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz", +- "integrity": "sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==", + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", ++ "license": "MIT", "dependencies": { -- "@typescript-eslint/utils": "5.18.0", -- "debug": "^4.3.2", -- "tsutils": "^3.21.0" +- "@vue/compiler-core": "3.4.27", +- "@vue/shared": "3.4.27" + "color-convert": "^2.0.1" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" ++ }, ++ "engines": { + "node": ">=8" - }, - "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -- }, -- "peerDependencies": { -- "eslint": "*" -- }, -- "peerDependenciesMeta": { -- "typescript": { -- "optional": true -- } ++ }, ++ "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, -- "node_modules/@typescript-eslint/types": { -- "version": "5.18.0", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz", +- "integrity": "sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==", + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", -+ "dependencies": { ++ "license": "ISC", + "dependencies": { +- "@vue/compiler-dom": "3.4.27", +- "@vue/shared": "3.4.27" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" - }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" ++ }, + "engines": { + "node": ">= 8" } }, -- "node_modules/@typescript-eslint/typescript-estree": { -- "version": "5.18.0", +- "node_modules/@vue/server-renderer/node_modules/@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- }, +- "node_modules/@vue/shared": { +- "version": "3.2.47", + "node_modules/app-builder-bin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-4.0.0.tgz", + "integrity": "sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==", -+ "dev": true -+ }, ++ "dev": true, + "license": "MIT" + }, +- "node_modules/@vueuse/core": { +- "version": "10.4.1", + "node_modules/app-builder-lib": { + "version": "24.13.3", + "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-24.13.3.tgz", + "integrity": "sha512-FAzX6IBit2POXYGnTCT8YHFO/lr5AapAII6zzhQO3Rw4cEDOgK+t1xhLc5tNcKlicTHlo9zxIwnYCX9X2DLkig==", - "dev": true, -- "license": "BSD-2-Clause", ++ "dev": true, + "license": "MIT", "dependencies": { -- "@typescript-eslint/types": "5.18.0", -- "@typescript-eslint/visitor-keys": "5.18.0", -- "debug": "^4.3.2", -- "globby": "^11.0.4", -- "is-glob": "^4.0.3", -- "semver": "^7.3.5", -- "tsutils": "^3.21.0" +- "@types/web-bluetooth": "^0.0.17", +- "@vueuse/metadata": "10.4.1", +- "@vueuse/shared": "10.4.1", +- "vue-demi": ">=0.14.5" +- }, +- "funding": { +- "url": "https://github.com/sponsors/antfu" +- } +- }, +- "node_modules/@vueuse/core/node_modules/vue-demi": { +- "version": "0.14.6", +- "hasInstallScript": true, +- "license": "MIT", +- "bin": { +- "vue-demi-fix": "bin/vue-demi-fix.js", +- "vue-demi-switch": "bin/vue-demi-switch.js" + "@develar/schema-utils": "~2.6.5", + "@electron/notarize": "2.2.1", + "@electron/osx-sign": "1.0.5", @@ -6001,97 +6287,133 @@ index a38125e..a1067b0 100644 + "temp-file": "^3.4.0" }, "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" +- "node": ">=12" - }, - "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" +- "url": "https://github.com/sponsors/antfu" + "node": ">=14.0.0" }, + "peerDependencies": { +- "@vue/composition-api": "^1.0.0-rc.1", +- "vue": "^3.0.0-0 || ^2.6.0" +- }, - "peerDependenciesMeta": { -- "typescript": { +- "@vue/composition-api": { - "optional": true - } -+ "peerDependencies": { + "dmg-builder": "24.13.3", + "electron-builder-squirrel-windows": "24.13.3" } }, -- "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { -- "version": "6.0.0", +- "node_modules/@vueuse/metadata": { +- "version": "10.4.1", + "node_modules/app-builder-lib/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, -- "license": "ISC", - "dependencies": { -- "yallist": "^4.0.0" ++ "dev": true, + "license": "MIT", +- "funding": { +- "url": "https://github.com/sponsors/antfu" ++ "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" - }, - "engines": { -- "node": ">=10" ++ }, ++ "engines": { + "node": ">=12" } }, -- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { -- "version": "7.5.4", +- "node_modules/@vueuse/shared": { +- "version": "10.4.1", + "node_modules/app-builder-lib/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, -- "license": "ISC", ++ "dev": true, + "license": "MIT", "dependencies": { -- "lru-cache": "^6.0.0" +- "vue-demi": ">=0.14.5" + "universalify": "^2.0.0" }, +- "funding": { +- "url": "https://github.com/sponsors/antfu" + "optionalDependencies": { + "graceful-fs": "^4.1.6" -+ } -+ }, + } + }, +- "node_modules/@vueuse/shared/node_modules/vue-demi": { +- "version": "0.14.6", +- "hasInstallScript": true, +- "license": "MIT", + "node_modules/app-builder-lib/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, ++ "license": "ISC", "bin": { - "semver": "bin/semver.js" +- "vue-demi-fix": "bin/vue-demi-fix.js", +- "vue-demi-switch": "bin/vue-demi-switch.js" ++ "semver": "bin/semver.js" }, -@@ -4047,718 +4643,688 @@ - "node": ">=10" + "engines": { +- "node": ">=12" +- }, +- "funding": { +- "url": "https://github.com/sponsors/antfu" +- }, +- "peerDependencies": { +- "@vue/composition-api": "^1.0.0-rc.1", +- "vue": "^3.0.0-0 || ^2.6.0" +- }, +- "peerDependenciesMeta": { +- "@vue/composition-api": { +- "optional": true +- } ++ "node": ">=10" } }, -- "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { -- "version": "4.0.0", +- "node_modules/@webassemblyjs/ast": { +- "version": "1.12.1", + "node_modules/app-builder-lib/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, -- "license": "ISC" ++ "dev": true, + "license": "MIT", +- "dependencies": { +- "@webassemblyjs/helper-numbers": "1.11.6", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "engines": { + "node": ">= 10.0.0" -+ } + } }, -- "node_modules/@typescript-eslint/utils": { -- "version": "5.18.0", +- "node_modules/@webassemblyjs/floating-point-hex-parser": { +- "version": "1.11.6", +- "license": "MIT" +- }, +- "node_modules/@webassemblyjs/helper-api-error": { +- "version": "1.11.6", +- "license": "MIT" +- }, +- "node_modules/@webassemblyjs/helper-buffer": { +- "version": "1.12.1", +- "license": "MIT" +- }, +- "node_modules/@webassemblyjs/helper-numbers": { +- "version": "1.11.6", + "node_modules/archiver": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.2.tgz", + "integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==", - "dev": true, -- "license": "MIT", ++ "dev": true, + "license": "MIT", + "peer": true, "dependencies": { -- "@types/json-schema": "^7.0.9", -- "@typescript-eslint/scope-manager": "5.18.0", -- "@typescript-eslint/types": "5.18.0", -- "@typescript-eslint/typescript-estree": "5.18.0", -- "eslint-scope": "^5.1.1", -- "eslint-utils": "^3.0.0" +- "@webassemblyjs/floating-point-hex-parser": "1.11.6", +- "@webassemblyjs/helper-api-error": "1.11.6", +- "@xtuc/long": "4.2.2" + "archiver-utils": "^2.1.0", + "async": "^3.2.4", + "buffer-crc32": "^0.2.1", @@ -6099,31 +6421,29 @@ index a38125e..a1067b0 100644 + "readdir-glob": "^1.1.2", + "tar-stream": "^2.2.0", + "zip-stream": "^4.1.0" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" -- }, -- "peerDependencies": { -- "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ }, ++ "engines": { + "node": ">= 10" } }, -- "node_modules/@typescript-eslint/visitor-keys": { -- "version": "5.18.0", +- "node_modules/@webassemblyjs/helper-wasm-bytecode": { +- "version": "1.11.6", +- "license": "MIT" +- }, +- "node_modules/@webassemblyjs/helper-wasm-section": { +- "version": "1.12.1", + "node_modules/archiver-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz", + "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", - "dev": true, -- "license": "MIT", ++ "dev": true, + "license": "MIT", + "peer": true, "dependencies": { -- "@typescript-eslint/types": "5.18.0", -- "eslint-visitor-keys": "^3.0.0" +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/wasm-gen": "1.12.1" + "glob": "^7.1.4", + "graceful-fs": "^4.2.0", + "lazystream": "^1.0.0", @@ -6134,101 +6454,30 @@ index a38125e..a1067b0 100644 + "lodash.union": "^4.6.0", + "normalize-path": "^3.0.0", + "readable-stream": "^2.0.0" - }, - "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -- }, -- "funding": { -- "type": "opencollective", -- "url": "https://opencollective.com/typescript-eslint" ++ }, ++ "engines": { + "node": ">= 6" } }, -- "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { -- "version": "3.4.3", +- "node_modules/@webassemblyjs/ieee754": { +- "version": "1.11.6", + "node_modules/archiver-utils/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true, -- "license": "Apache-2.0", -- "engines": { -- "node": "^12.22.0 || ^14.17.0 || >=16.0.0" -- }, -- "funding": { -- "url": "https://opencollective.com/eslint" -- } -- }, -- "node_modules/@vue/compiler-core": { -- "version": "3.2.47", -- "license": "MIT", -- "dependencies": { -- "@babel/parser": "^7.16.4", -- "@vue/shared": "3.2.47", -- "estree-walker": "^2.0.2", -- "source-map": "^0.6.1" -- } -- }, -- "node_modules/@vue/compiler-dom": { -- "version": "3.2.47", -- "license": "MIT", -- "dependencies": { -- "@vue/compiler-core": "3.2.47", -- "@vue/shared": "3.2.47" -- } -- }, -- "node_modules/@vue/compiler-sfc": { -- "version": "3.2.47", -- "license": "MIT", -- "dependencies": { -- "@babel/parser": "^7.16.4", -- "@vue/compiler-core": "3.2.47", -- "@vue/compiler-dom": "3.2.47", -- "@vue/compiler-ssr": "3.2.47", -- "@vue/reactivity-transform": "3.2.47", -- "@vue/shared": "3.2.47", -- "estree-walker": "^2.0.2", -- "magic-string": "^0.25.7", -- "postcss": "^8.1.10", -- "source-map": "^0.6.1" -- } -- }, -- "node_modules/@vue/compiler-ssr": { -- "version": "3.2.47", -- "license": "MIT", -- "dependencies": { -- "@vue/compiler-dom": "3.2.47", -- "@vue/shared": "3.2.47" -- } -- }, -- "node_modules/@vue/devtools-api": { -- "version": "6.5.1", -- "license": "MIT" -- }, -- "node_modules/@vue/reactivity": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.27.tgz", -- "integrity": "sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==", -- "dependencies": { -- "@vue/shared": "3.4.27" -- } ++ "dev": true, ++ "license": "MIT", + "peer": true - }, -- "node_modules/@vue/reactivity-transform": { -- "version": "3.2.47", -- "license": "MIT", ++ }, + "node_modules/archiver-utils/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "peer": true, "dependencies": { -- "@babel/parser": "^7.16.4", -- "@vue/compiler-core": "3.2.47", -- "@vue/shared": "3.2.47", -- "estree-walker": "^2.0.2", -- "magic-string": "^0.25.7" +- "@xtuc/ieee754": "^1.2.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", @@ -6238,422 +6487,52 @@ index a38125e..a1067b0 100644 + "util-deprecate": "~1.0.1" } }, -- "node_modules/@vue/reactivity/node_modules/@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- "node_modules/@webassemblyjs/leb128": { +- "version": "1.11.6", +- "license": "Apache-2.0", + "node_modules/archiver-utils/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, ++ "license": "MIT", + "peer": true - }, -- "node_modules/@vue/runtime-core": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.27.tgz", -- "integrity": "sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==", ++ }, + "node_modules/archiver-utils/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, ++ "license": "MIT", + "peer": true, "dependencies": { -- "@vue/reactivity": "3.4.27", -- "@vue/shared": "3.4.27" +- "@xtuc/long": "4.2.2" + "safe-buffer": "~5.1.0" } }, -- "node_modules/@vue/runtime-core/node_modules/@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- }, -- "node_modules/@vue/runtime-dom": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.27.tgz", -- "integrity": "sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==", -- "dependencies": { -- "@vue/runtime-core": "3.4.27", -- "@vue/shared": "3.4.27", -- "csstype": "^3.1.3" -- } +- "node_modules/@webassemblyjs/utf8": { +- "version": "1.11.6", + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", -+ "dev": true ++ "dev": true, + "license": "MIT" }, -- "node_modules/@vue/runtime-dom/node_modules/@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- "node_modules/@webassemblyjs/wasm-edit": { +- "version": "1.12.1", + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", -+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, -- "node_modules/@vue/server-renderer": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.27.tgz", -- "integrity": "sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==", ++ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", ++ "license": "Python-2.0" ++ }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, - "dependencies": { -- "@vue/compiler-ssr": "3.4.27", -- "@vue/shared": "3.4.27" -+ "call-bind": "^1.0.5", -+ "is-array-buffer": "^3.0.4" - }, -- "peerDependencies": { -- "vue": "3.4.27" -- } -- }, -- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-core": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.27.tgz", -- "integrity": "sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==", -- "dependencies": { -- "@babel/parser": "^7.24.4", -- "@vue/shared": "3.4.27", -- "entities": "^4.5.0", -- "estree-walker": "^2.0.2", -- "source-map-js": "^1.2.0" -- } -- }, -- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-dom": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz", -- "integrity": "sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==", -- "dependencies": { -- "@vue/compiler-core": "3.4.27", -- "@vue/shared": "3.4.27" -- } -- }, -- "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz", -- "integrity": "sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==", -- "dependencies": { -- "@vue/compiler-dom": "3.4.27", -- "@vue/shared": "3.4.27" -- } -- }, -- "node_modules/@vue/server-renderer/node_modules/@vue/shared": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", -- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" -- }, -- "node_modules/@vue/shared": { -- "version": "3.2.47", -- "license": "MIT" -- }, -- "node_modules/@vueuse/core": { -- "version": "10.4.1", -- "license": "MIT", -- "dependencies": { -- "@types/web-bluetooth": "^0.0.17", -- "@vueuse/metadata": "10.4.1", -- "@vueuse/shared": "10.4.1", -- "vue-demi": ">=0.14.5" -+ "engines": { -+ "node": ">= 0.4" - }, - "funding": { -- "url": "https://github.com/sponsors/antfu" -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@vueuse/core/node_modules/vue-demi": { -- "version": "0.14.6", -- "hasInstallScript": true, -- "license": "MIT", -- "bin": { -- "vue-demi-fix": "bin/vue-demi-fix.js", -- "vue-demi-switch": "bin/vue-demi-switch.js" -+ "node_modules/array-flatten": { -+ "version": "1.1.1", -+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", -+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", -+ "dev": true -+ }, -+ "node_modules/array-ify": { -+ "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", -+ "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", -+ "dev": true -+ }, -+ "node_modules/array-includes": { -+ "version": "3.1.8", -+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", -+ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", -+ "dev": true, -+ "dependencies": { -+ "call-bind": "^1.0.7", -+ "define-properties": "^1.2.1", -+ "es-abstract": "^1.23.2", -+ "es-object-atoms": "^1.0.0", -+ "get-intrinsic": "^1.2.4", -+ "is-string": "^1.0.7" - }, - "engines": { -- "node": ">=12" -+ "node": ">= 0.4" - }, - "funding": { -- "url": "https://github.com/sponsors/antfu" -- }, -- "peerDependencies": { -- "@vue/composition-api": "^1.0.0-rc.1", -- "vue": "^3.0.0-0 || ^2.6.0" -- }, -- "peerDependenciesMeta": { -- "@vue/composition-api": { -- "optional": true -- } -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@vueuse/metadata": { -- "version": "10.4.1", -- "license": "MIT", -- "funding": { -- "url": "https://github.com/sponsors/antfu" -+ "node_modules/array-union": { -+ "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", -+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", -+ "dev": true, -+ "engines": { -+ "node": ">=8" - } - }, -- "node_modules/@vueuse/shared": { -- "version": "10.4.1", -- "license": "MIT", -+ "node_modules/array.prototype.flat": { -+ "version": "1.3.2", -+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", -+ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", -+ "dev": true, - "dependencies": { -- "vue-demi": ">=0.14.5" -+ "call-bind": "^1.0.2", -+ "define-properties": "^1.2.0", -+ "es-abstract": "^1.22.1", -+ "es-shim-unscopables": "^1.0.0" -+ }, -+ "engines": { -+ "node": ">= 0.4" - }, - "funding": { -- "url": "https://github.com/sponsors/antfu" -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@vueuse/shared/node_modules/vue-demi": { -- "version": "0.14.6", -- "hasInstallScript": true, -- "license": "MIT", -- "bin": { -- "vue-demi-fix": "bin/vue-demi-fix.js", -- "vue-demi-switch": "bin/vue-demi-switch.js" -+ "node_modules/arraybuffer.prototype.slice": { -+ "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", -+ "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", -+ "dev": true, -+ "dependencies": { -+ "array-buffer-byte-length": "^1.0.1", -+ "call-bind": "^1.0.5", -+ "define-properties": "^1.2.1", -+ "es-abstract": "^1.22.3", -+ "es-errors": "^1.2.1", -+ "get-intrinsic": "^1.2.3", -+ "is-array-buffer": "^3.0.4", -+ "is-shared-array-buffer": "^1.0.2" - }, - "engines": { -- "node": ">=12" -+ "node": ">= 0.4" - }, - "funding": { -- "url": "https://github.com/sponsors/antfu" -- }, -- "peerDependencies": { -- "@vue/composition-api": "^1.0.0-rc.1", -- "vue": "^3.0.0-0 || ^2.6.0" -- }, -- "peerDependenciesMeta": { -- "@vue/composition-api": { -- "optional": true -- } -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@webassemblyjs/ast": { -- "version": "1.12.1", -- "license": "MIT", -+ "node_modules/arrify": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", -+ "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", -+ "dev": true, -+ "engines": { -+ "node": ">=0.10.0" -+ } -+ }, -+ "node_modules/asn1": { -+ "version": "0.2.6", -+ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", -+ "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dependencies": { -- "@webassemblyjs/helper-numbers": "1.11.6", -- "@webassemblyjs/helper-wasm-bytecode": "1.11.6" -+ "safer-buffer": "~2.1.0" - } - }, -- "node_modules/@webassemblyjs/floating-point-hex-parser": { -- "version": "1.11.6", -- "license": "MIT" -+ "node_modules/assert-plus": { -+ "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", -+ "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", -+ "dev": true, -+ "optional": true, -+ "engines": { -+ "node": ">=0.8" -+ } - }, -- "node_modules/@webassemblyjs/helper-api-error": { -- "version": "1.11.6", -- "license": "MIT" -+ "node_modules/astral-regex": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", -+ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", -+ "dev": true, -+ "engines": { -+ "node": ">=8" -+ } - }, -- "node_modules/@webassemblyjs/helper-buffer": { -- "version": "1.12.1", -- "license": "MIT" -+ "node_modules/async": { -+ "version": "3.2.6", -+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", -+ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", -+ "dev": true - }, -- "node_modules/@webassemblyjs/helper-numbers": { -- "version": "1.11.6", -- "license": "MIT", -- "dependencies": { -- "@webassemblyjs/floating-point-hex-parser": "1.11.6", -- "@webassemblyjs/helper-api-error": "1.11.6", -- "@xtuc/long": "4.2.2" -+ "node_modules/async-exit-hook": { -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", -+ "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", -+ "dev": true, -+ "engines": { -+ "node": ">=0.12.0" - } - }, -- "node_modules/@webassemblyjs/helper-wasm-bytecode": { -- "version": "1.11.6", -- "license": "MIT" -+ "node_modules/asynckit": { -+ "version": "0.4.0", -+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", -+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", -+ "dev": true - }, -- "node_modules/@webassemblyjs/helper-wasm-section": { -- "version": "1.12.1", -- "license": "MIT", -- "dependencies": { -- "@webassemblyjs/ast": "1.12.1", -- "@webassemblyjs/helper-buffer": "1.12.1", -- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -- "@webassemblyjs/wasm-gen": "1.12.1" -+ "node_modules/at-least-node": { -+ "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", -+ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", -+ "dev": true, -+ "engines": { -+ "node": ">= 4.0.0" - } - }, -- "node_modules/@webassemblyjs/ieee754": { -- "version": "1.11.6", -- "license": "MIT", -- "dependencies": { -- "@xtuc/ieee754": "^1.2.0" -+ "node_modules/atomically": { -+ "version": "1.7.0", -+ "resolved": "https://registry.npmjs.org/atomically/-/atomically-1.7.0.tgz", -+ "integrity": "sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==", -+ "engines": { -+ "node": ">=10.12.0" - } - }, -- "node_modules/@webassemblyjs/leb128": { -- "version": "1.11.6", -- "license": "Apache-2.0", -+ "node_modules/available-typed-arrays": { -+ "version": "1.0.7", -+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", -+ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", -+ "dev": true, - "dependencies": { -- "@xtuc/long": "4.2.2" -+ "possible-typed-array-names": "^1.0.0" -+ }, -+ "engines": { -+ "node": ">= 0.4" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/@webassemblyjs/utf8": { -- "version": "1.11.6", -- "license": "MIT" -+ "node_modules/babel-loader": { -+ "version": "8.2.5", -+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", -+ "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", -+ "dependencies": { -+ "find-cache-dir": "^3.3.1", -+ "loader-utils": "^2.0.0", -+ "make-dir": "^3.1.0", -+ "schema-utils": "^2.6.5" -+ }, -+ "engines": { -+ "node": ">= 8.9" -+ }, -+ "peerDependencies": { -+ "@babel/core": "^7.0.0", -+ "webpack": ">=2" -+ } - }, -- "node_modules/@webassemblyjs/wasm-edit": { -- "version": "1.12.1", -- "license": "MIT", -+ "node_modules/babel-plugin-polyfill-corejs2": { -+ "version": "0.2.3", -+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz", -+ "integrity": "sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==", -+ "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", @@ -6663,61 +6542,403 @@ index a38125e..a1067b0 100644 - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" -+ "@babel/compat-data": "^7.13.11", -+ "@babel/helper-define-polyfill-provider": "^0.2.4", -+ "semver": "^6.1.1" ++ "call-bind": "^1.0.5", ++ "is-array-buffer": "^3.0.4" + }, -+ "peerDependencies": { -+ "@babel/core": "^7.0.0-0" ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", -- "license": "MIT", -+ "node_modules/babel-plugin-polyfill-corejs3": { -+ "version": "0.2.5", -+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz", -+ "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==", ++ "node_modules/array-flatten": { ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", ++ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/array-ify": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", ++ "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/array-includes": { ++ "version": "3.1.8", ++ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", ++ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", ++ "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" -+ "@babel/helper-define-polyfill-provider": "^0.2.2", -+ "core-js-compat": "^3.16.2" ++ "call-bind": "^1.0.7", ++ "define-properties": "^1.2.1", ++ "es-abstract": "^1.23.2", ++ "es-object-atoms": "^1.0.0", ++ "get-intrinsic": "^1.2.4", ++ "is-string": "^1.0.7" + }, -+ "peerDependencies": { -+ "@babel/core": "^7.0.0-0" ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", ++ "node_modules/array-union": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", ++ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", ++ "dev": true, + "license": "MIT", +- "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/wasm-gen": "1.12.1", +- "@webassemblyjs/wasm-parser": "1.12.1" ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/@webassemblyjs/wasm-parser": { +- "version": "1.12.1", ++ "node_modules/array.prototype.flat": { ++ "version": "1.3.2", ++ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", ++ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-api-error": "1.11.6", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/ieee754": "1.11.6", +- "@webassemblyjs/leb128": "1.11.6", +- "@webassemblyjs/utf8": "1.11.6" ++ "call-bind": "^1.0.2", ++ "define-properties": "^1.2.0", ++ "es-abstract": "^1.22.1", ++ "es-shim-unscopables": "^1.0.0" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/@webassemblyjs/wast-printer": { +- "version": "1.12.1", ++ "node_modules/arraybuffer.prototype.slice": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", ++ "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "@webassemblyjs/ast": "1.12.1", +- "@xtuc/long": "4.2.2" ++ "array-buffer-byte-length": "^1.0.1", ++ "call-bind": "^1.0.5", ++ "define-properties": "^1.2.1", ++ "es-abstract": "^1.22.3", ++ "es-errors": "^1.2.1", ++ "get-intrinsic": "^1.2.3", ++ "is-array-buffer": "^3.0.4", ++ "is-shared-array-buffer": "^1.0.2" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/@webpack-cli/configtest": { +- "version": "1.2.0", ++ "node_modules/arrify": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", ++ "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", ++ "dev": true, + "license": "MIT", +- "peerDependencies": { +- "webpack": "4.x.x || 5.x.x", +- "webpack-cli": "4.x.x" ++ "engines": { ++ "node": ">=0.10.0" + } + }, +- "node_modules/@webpack-cli/info": { +- "version": "1.5.0", ++ "node_modules/asn1": { ++ "version": "0.2.6", ++ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", ++ "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "license": "MIT", + "dependencies": { +- "envinfo": "^7.7.3" +- }, +- "peerDependencies": { +- "webpack-cli": "4.x.x" ++ "safer-buffer": "~2.1.0" + } + }, +- "node_modules/@webpack-cli/serve": { +- "version": "1.7.0", ++ "node_modules/assert-plus": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", ++ "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", ++ "dev": true, + "license": "MIT", +- "peerDependencies": { +- "webpack-cli": "4.x.x" +- }, +- "peerDependenciesMeta": { +- "webpack-dev-server": { +- "optional": true +- } ++ "optional": true, ++ "engines": { ++ "node": ">=0.8" + } + }, +- "node_modules/@xmldom/xmldom": { +- "version": "0.8.10", ++ "node_modules/astral-regex": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", ++ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "license": "MIT", + "engines": { +- "node": ">=10.0.0" ++ "node": ">=8" + } + }, +- "node_modules/@xtuc/ieee754": { +- "version": "1.2.0", +- "license": "BSD-3-Clause" +- }, +- "node_modules/@xtuc/long": { +- "version": "4.2.2", +- "license": "Apache-2.0" +- }, +- "node_modules/7zip-bin": { +- "version": "5.2.0", ++ "node_modules/async": { ++ "version": "3.2.6", ++ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", ++ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "dev": true, + "license": "MIT" + }, +- "node_modules/accepts": { +- "version": "1.3.8", ++ "node_modules/async-exit-hook": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", ++ "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", + "dev": true, + "license": "MIT", +- "dependencies": { +- "mime-types": "~2.1.34", +- "negotiator": "0.6.3" +- }, + "engines": { +- "node": ">= 0.6" ++ "node": ">=0.12.0" + } + }, +- "node_modules/ace-builds": { +- "version": "1.34.1", +- "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.1.tgz", +- "integrity": "sha512-hwRzr6BkRwsq5A19yA9E36KNNtn0+zESYolnWK3TADJsWVQS0T24nvbgdjXwqk2JEMQXE4PlqAw+ZgprvFtKjw==" +- }, +- "node_modules/acorn": { +- "version": "7.4.1", ++ "node_modules/asynckit": { ++ "version": "0.4.0", ++ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", ++ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, - "license": "MIT", +- "bin": { +- "acorn": "bin/acorn" +- }, +- "engines": { +- "node": ">=0.4.0" +- } ++ "license": "MIT" + }, +- "node_modules/acorn-jsx": { +- "version": "5.3.2", ++ "node_modules/at-least-node": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", ++ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, +- "license": "MIT", +- "peerDependencies": { +- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" ++ "license": "ISC", ++ "engines": { ++ "node": ">= 4.0.0" + } + }, +- "node_modules/acorn-walk": { +- "version": "8.3.0", +- "dev": true, ++ "node_modules/atomically": { ++ "version": "1.7.0", ++ "resolved": "https://registry.npmjs.org/atomically/-/atomically-1.7.0.tgz", ++ "integrity": "sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==", + "license": "MIT", + "engines": { +- "node": ">=0.4.0" ++ "node": ">=10.12.0" + } + }, +- "node_modules/add-stream": { +- "version": "1.0.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/agent-base": { +- "version": "6.0.2", ++ "node_modules/available-typed-arrays": { ++ "version": "1.0.7", ++ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", ++ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { +- "debug": "4" ++ "possible-typed-array-names": "^1.0.0" + }, + "engines": { +- "node": ">= 6.0.0" +- } ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" ++ } + }, +- "node_modules/ajv": { +- "version": "6.12.6", ++ "node_modules/babel-loader": { ++ "version": "8.2.5", ++ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", ++ "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "license": "MIT", + "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "fast-json-stable-stringify": "^2.0.0", +- "json-schema-traverse": "^0.4.1", +- "uri-js": "^4.2.2" ++ "find-cache-dir": "^3.3.1", ++ "loader-utils": "^2.0.0", ++ "make-dir": "^3.1.0", ++ "schema-utils": "^2.6.5" + }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" ++ "engines": { ++ "node": ">= 8.9" ++ }, ++ "peerDependencies": { ++ "@babel/core": "^7.0.0", ++ "webpack": ">=2" + } + }, +- "node_modules/ajv-formats": { +- "version": "2.1.1", ++ "node_modules/babel-plugin-polyfill-corejs2": { ++ "version": "0.2.3", ++ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz", ++ "integrity": "sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "ajv": "^8.0.0" ++ "@babel/compat-data": "^7.13.11", ++ "@babel/helper-define-polyfill-provider": "^0.2.4", ++ "semver": "^6.1.1" + }, + "peerDependencies": { +- "ajv": "^8.0.0" +- }, +- "peerDependenciesMeta": { +- "ajv": { +- "optional": true +- } ++ "@babel/core": "^7.0.0-0" + } + }, +- "node_modules/ajv-formats/node_modules/ajv": { +- "version": "8.12.0", ++ "node_modules/babel-plugin-polyfill-corejs3": { ++ "version": "0.2.5", ++ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz", ++ "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" ++ "@babel/helper-define-polyfill-provider": "^0.2.2", ++ "core-js-compat": "^3.16.2" + }, +- "funding": { +- "type": "github", +- "url": "https://github.com/sponsors/epoberezkin" ++ "peerDependencies": { ++ "@babel/core": "^7.0.0-0" + } + }, +- "node_modules/ajv-formats/node_modules/json-schema-traverse": { +- "version": "1.0.0", +- "license": "MIT" +- }, +- "node_modules/ajv-keywords": { +- "version": "3.5.2", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.3.tgz", + "integrity": "sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==", + "dev": true, - "dependencies": { -- "@webassemblyjs/ast": "1.12.1", -- "@webassemblyjs/helper-buffer": "1.12.1", -- "@webassemblyjs/wasm-gen": "1.12.1", -- "@webassemblyjs/wasm-parser": "1.12.1" + "license": "MIT", ++ "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.2.4" + }, -+ "peerDependencies": { + "peerDependencies": { +- "ajv": "^6.9.1" + "@babel/core": "^7.0.0-0" } }, -- "node_modules/@webassemblyjs/wasm-parser": { -- "version": "1.12.1", -- "license": "MIT", +- "node_modules/all-contributors-cli": { +- "version": "6.20.5", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", -+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" ++ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", ++ "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", @@ -6736,318 +6957,31 @@ index a38125e..a1067b0 100644 + "type": "consulting", + "url": "https://feross.org/support" + } -+ ] ++ ], ++ "license": "MIT" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", -+ "dev": true + "dev": true, ++ "license": "MIT" + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dependencies": { -- "@webassemblyjs/ast": "1.12.1", -- "@webassemblyjs/helper-api-error": "1.11.6", -- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", -- "@webassemblyjs/ieee754": "1.11.6", -- "@webassemblyjs/leb128": "1.11.6", -- "@webassemblyjs/utf8": "1.11.6" ++ "license": "BSD-3-Clause", ++ "dependencies": { + "tweetnacl": "^0.14.3" - } - }, -- "node_modules/@webassemblyjs/wast-printer": { -- "version": "1.12.1", -- "license": "MIT", ++ } ++ }, + "node_modules/better-sqlite3": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-10.0.0.tgz", + "integrity": "sha512-rOz0JY8bt9oMgrFssP7GnvA5R3yln73y/NizzWqy3WlFth8Ux8+g4r/N9fjX97nn4X1YX6MTER2doNpTu5pqiA==", + "hasInstallScript": true, - "dependencies": { -- "@webassemblyjs/ast": "1.12.1", -- "@xtuc/long": "4.2.2" -+ "bindings": "^1.5.0", -+ "prebuild-install": "^7.1.1" - } - }, -- "node_modules/@webpack-cli/configtest": { -- "version": "1.2.0", -- "license": "MIT", -- "peerDependencies": { -- "webpack": "4.x.x || 5.x.x", -- "webpack-cli": "4.x.x" -+ "node_modules/big-integer": { -+ "version": "1.6.52", -+ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", -+ "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", -+ "engines": { -+ "node": ">=0.6" - } - }, -- "node_modules/@webpack-cli/info": { -- "version": "1.5.0", -- "license": "MIT", -- "dependencies": { -- "envinfo": "^7.7.3" -- }, -- "peerDependencies": { -- "webpack-cli": "4.x.x" -+ "node_modules/big.js": { -+ "version": "5.2.2", -+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", -+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", -+ "engines": { -+ "node": "*" - } - }, -- "node_modules/@webpack-cli/serve": { -- "version": "1.7.0", -- "license": "MIT", -- "peerDependencies": { -- "webpack-cli": "4.x.x" -+ "node_modules/binary-extensions": { -+ "version": "2.3.0", -+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", -+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", -+ "engines": { -+ "node": ">=8" - }, -- "peerDependenciesMeta": { -- "webpack-dev-server": { -- "optional": true -- } -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/@xmldom/xmldom": { -- "version": "0.8.10", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">=10.0.0" -+ "node_modules/bindings": { -+ "version": "1.5.0", -+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", -+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", -+ "dependencies": { -+ "file-uri-to-path": "1.0.0" - } - }, -- "node_modules/@xtuc/ieee754": { -- "version": "1.2.0", -- "license": "BSD-3-Clause" -- }, -- "node_modules/@xtuc/long": { -- "version": "4.2.2", -- "license": "Apache-2.0" -+ "node_modules/bl": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", -+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", -+ "dependencies": { -+ "buffer": "^5.5.0", -+ "inherits": "^2.0.4", -+ "readable-stream": "^3.4.0" -+ } - }, -- "node_modules/7zip-bin": { -- "version": "5.2.0", -- "dev": true, -- "license": "MIT" -+ "node_modules/bluebird": { -+ "version": "3.7.2", -+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", -+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", -+ "dev": true - }, -- "node_modules/accepts": { -- "version": "1.3.8", -+ "node_modules/bluebird-lst": { -+ "version": "1.0.9", -+ "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", -+ "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "mime-types": "~2.1.34", -- "negotiator": "0.6.3" -- }, -- "engines": { -- "node": ">= 0.6" -+ "bluebird": "^3.5.5" - } - }, -- "node_modules/ace-builds": { -- "version": "1.34.1", -- "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.1.tgz", -- "integrity": "sha512-hwRzr6BkRwsq5A19yA9E36KNNtn0+zESYolnWK3TADJsWVQS0T24nvbgdjXwqk2JEMQXE4PlqAw+ZgprvFtKjw==" -- }, -- "node_modules/acorn": { -- "version": "7.4.1", -+ "node_modules/body-parser": { -+ "version": "1.20.2", -+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", -+ "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "dev": true, -- "license": "MIT", -- "bin": { -- "acorn": "bin/acorn" -+ "dependencies": { -+ "bytes": "3.1.2", -+ "content-type": "~1.0.5", -+ "debug": "2.6.9", -+ "depd": "2.0.0", -+ "destroy": "1.2.0", -+ "http-errors": "2.0.0", -+ "iconv-lite": "0.4.24", -+ "on-finished": "2.4.1", -+ "qs": "6.11.0", -+ "raw-body": "2.5.2", -+ "type-is": "~1.6.18", -+ "unpipe": "1.0.0" - }, - "engines": { -- "node": ">=0.4.0" -- } -- }, -- "node_modules/acorn-jsx": { -- "version": "5.3.2", -- "dev": true, -- "license": "MIT", -- "peerDependencies": { -- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" -+ "node": ">= 0.8", -+ "npm": "1.2.8000 || >= 1.4.16" - } - }, -- "node_modules/acorn-walk": { -- "version": "8.3.0", -+ "node_modules/body-parser/node_modules/bytes": { -+ "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", -+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, -- "license": "MIT", - "engines": { -- "node": ">=0.4.0" -+ "node": ">= 0.8" - } - }, -- "node_modules/add-stream": { -- "version": "1.0.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/agent-base": { -- "version": "6.0.2", -+ "node_modules/body-parser/node_modules/debug": { -+ "version": "2.6.9", -+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", -+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "debug": "4" -- }, -- "engines": { -- "node": ">= 6.0.0" -+ "ms": "2.0.0" - } - }, -- "node_modules/ajv": { -- "version": "6.12.6", -- "license": "MIT", -+ "node_modules/body-parser/node_modules/iconv-lite": { -+ "version": "0.4.24", -+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", -+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", -+ "dev": true, - "dependencies": { -- "fast-deep-equal": "^3.1.1", -- "fast-json-stable-stringify": "^2.0.0", -- "json-schema-traverse": "^0.4.1", -- "uri-js": "^4.2.2" -+ "safer-buffer": ">= 2.1.2 < 3" - }, -- "funding": { -- "type": "github", -- "url": "https://github.com/sponsors/epoberezkin" -+ "engines": { -+ "node": ">=0.10.0" - } - }, -- "node_modules/ajv-formats": { -- "version": "2.1.1", -- "license": "MIT", -- "dependencies": { -- "ajv": "^8.0.0" -- }, -- "peerDependencies": { -- "ajv": "^8.0.0" -- }, -- "peerDependenciesMeta": { -- "ajv": { -- "optional": true -- } -- } -+ "node_modules/body-parser/node_modules/ms": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true - }, -- "node_modules/ajv-formats/node_modules/ajv": { -- "version": "8.12.0", -- "license": "MIT", -+ "node_modules/bonjour-service": { -+ "version": "1.2.1", -+ "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", -+ "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", -+ "dev": true, - "dependencies": { -- "fast-deep-equal": "^3.1.1", -- "json-schema-traverse": "^1.0.0", -- "require-from-string": "^2.0.2", -- "uri-js": "^4.2.2" -- }, -- "funding": { -- "type": "github", -- "url": "https://github.com/sponsors/epoberezkin" -+ "fast-deep-equal": "^3.1.3", -+ "multicast-dns": "^7.2.5" - } - }, -- "node_modules/ajv-formats/node_modules/json-schema-traverse": { -+ "node_modules/boolbase": { - "version": "1.0.0", -- "license": "MIT" -+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", -+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - }, -- "node_modules/ajv-keywords": { -- "version": "3.5.2", -- "license": "MIT", -- "peerDependencies": { -- "ajv": "^6.9.1" -- } -+ "node_modules/boolean": { -+ "version": "3.2.0", -+ "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", -+ "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", -+ "optional": true - }, -- "node_modules/all-contributors-cli": { -- "version": "6.20.5", -+ "node_modules/brace-expansion": { -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", -+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.7.6", - "async": "^3.1.0", @@ -7063,48 +6997,253 @@ index a38125e..a1067b0 100644 - "bin": { - "all-contributors": "dist/cli.js" - }, -- "engines": { ++ "bindings": "^1.5.0", ++ "prebuild-install": "^7.1.1" ++ } ++ }, ++ "node_modules/big-integer": { ++ "version": "1.6.52", ++ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", ++ "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", ++ "license": "Unlicense", + "engines": { - "node": ">=4" -- } -- }, ++ "node": ">=0.6" + } + }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "dev": true, -- "license": "MIT", -- "engines": { ++ "node_modules/big.js": { ++ "version": "5.2.2", ++ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", ++ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "license": "MIT", + "engines": { - "node": ">=6" -+ "balanced-match": "^1.0.0" ++ "node": "*" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "dev": true, -- "license": "MIT", -+ "node_modules/braces": { -+ "version": "3.0.3", -+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", -+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dependencies": { ++ "node_modules/binary-extensions": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", ++ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "license": "MIT", +- "dependencies": { - "type-fest": "^0.21.3" -+ "fill-range": "^7.1.1" - }, +- }, "engines": { "node": ">=8" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" + }, +@@ -4656,107 +5483,290 @@ + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", -- "dev": true, ++ "node_modules/bindings": { ++ "version": "1.5.0", ++ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", ++ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", ++ "license": "MIT", ++ "dependencies": { ++ "file-uri-to-path": "1.0.0" ++ } ++ }, ++ "node_modules/bl": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", ++ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", ++ "license": "MIT", ++ "dependencies": { ++ "buffer": "^5.5.0", ++ "inherits": "^2.0.4", ++ "readable-stream": "^3.4.0" ++ } ++ }, ++ "node_modules/bluebird": { ++ "version": "3.7.2", ++ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", ++ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" ++ "license": "MIT" ++ }, ++ "node_modules/bluebird-lst": { ++ "version": "1.0.9", ++ "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", ++ "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "bluebird": "^3.5.5" + } + }, +- "node_modules/ansi-html-community": { +- "version": "0.0.8", ++ "node_modules/body-parser": { ++ "version": "1.20.3", ++ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", ++ "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "dev": true, +- "engines": [ +- "node >= 0.8.0" +- ], +- "license": "Apache-2.0", +- "bin": { +- "ansi-html": "bin/ansi-html" ++ "license": "MIT", ++ "dependencies": { ++ "bytes": "3.1.2", ++ "content-type": "~1.0.5", ++ "debug": "2.6.9", ++ "depd": "2.0.0", ++ "destroy": "1.2.0", ++ "http-errors": "2.0.0", ++ "iconv-lite": "0.4.24", ++ "on-finished": "2.4.1", ++ "qs": "6.13.0", ++ "raw-body": "2.5.2", ++ "type-is": "~1.6.18", ++ "unpipe": "1.0.0" ++ }, ++ "engines": { ++ "node": ">= 0.8", ++ "npm": "1.2.8000 || >= 1.4.16" + } + }, +- "node_modules/ansi-regex": { +- "version": "5.0.1", ++ "node_modules/body-parser/node_modules/bytes": { ++ "version": "3.1.2", ++ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", ++ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", ++ "dev": true, + "license": "MIT", + "engines": { +- "node": ">=8" ++ "node": ">= 0.8" + } + }, +- "node_modules/ansi-styles": { +- "version": "4.3.0", ++ "node_modules/body-parser/node_modules/debug": { ++ "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "color-convert": "^2.0.1" +- }, +- "engines": { +- "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/chalk/ansi-styles?sponsor=1" ++ "ms": "2.0.0" + } + }, +- "node_modules/anymatch": { +- "version": "3.1.3", +- "license": "ISC", ++ "node_modules/body-parser/node_modules/iconv-lite": { ++ "version": "0.4.24", ++ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", ++ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", ++ "dev": true, ++ "license": "MIT", + "dependencies": { +- "normalize-path": "^3.0.0", +- "picomatch": "^2.0.4" ++ "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { +- "node": ">= 8" ++ "node": ">=0.10.0" + } + }, +- "node_modules/app-builder-bin": { +- "version": "4.0.0", ++ "node_modules/body-parser/node_modules/ms": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, +- "node_modules/app-builder-lib": { +- "version": "24.13.3", ++ "node_modules/bonjour-service": { ++ "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", ++ "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", + "dev": true, + "license": "MIT", + "dependencies": { +- "@develar/schema-utils": "~2.6.5", +- "@electron/notarize": "2.2.1", +- "@electron/osx-sign": "1.0.5", +- "@electron/universal": "1.5.1", +- "@malept/flatpak-bundler": "^0.4.0", +- "@types/fs-extra": "9.0.13", +- "async-exit-hook": "^2.0.1", +- "bluebird-lst": "^1.0.9", +- "builder-util": "24.13.1", +- "builder-util-runtime": "9.2.4", +- "chromium-pickle-js": "^0.2.0", ++ "fast-deep-equal": "^3.1.3", ++ "multicast-dns": "^7.2.5" ++ } ++ }, ++ "node_modules/boolbase": { ++ "version": "1.0.0", ++ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", ++ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", ++ "license": "ISC" ++ }, ++ "node_modules/boolean": { ++ "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", ++ "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", ++ "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", ++ "license": "MIT", ++ "optional": true ++ }, ++ "node_modules/brace-expansion": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", ++ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "balanced-match": "^1.0.0" ++ } ++ }, ++ "node_modules/braces": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", ++ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", ++ "license": "MIT", ++ "dependencies": { ++ "fill-range": "^7.1.1" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, + "node_modules/browserslist": { -+ "version": "4.23.3", -+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", -+ "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", ++ "version": "4.24.0", ++ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", ++ "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", + "funding": [ + { + "type": "opencollective", @@ -7119,26 +7258,20 @@ index a38125e..a1067b0 100644 + "url": "https://github.com/sponsors/ai" + } + ], ++ "license": "MIT", + "dependencies": { -+ "caniuse-lite": "^1.0.30001646", -+ "electron-to-chromium": "^1.5.4", ++ "caniuse-lite": "^1.0.30001663", ++ "electron-to-chromium": "^1.5.28", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" ++ }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, -- "node_modules/ansi-html-community": { -- "version": "0.0.8", -- "dev": true, -- "engines": [ -- "node >= 0.8.0" ++ } ++ }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", @@ -7156,96 +7289,61 @@ index a38125e..a1067b0 100644 + "type": "consulting", + "url": "https://feross.org/support" + } - ], -- "license": "Apache-2.0", -- "bin": { -- "ansi-html": "bin/ansi-html" ++ ], ++ "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" - } - }, -- "node_modules/ansi-regex": { -- "version": "5.0.1", -- "license": "MIT", ++ } ++ }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "engines": { -- "node": ">=8" ++ "license": "MIT", ++ "engines": { + "node": "*" - } - }, -- "node_modules/ansi-styles": { -- "version": "4.3.0", -- "license": "MIT", -- "dependencies": { -- "color-convert": "^2.0.1" -- }, ++ } ++ }, + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true, - "engines": { -- "node": ">=8" ++ "license": "MIT", ++ "engines": { + "node": ">=0.4" - }, - "funding": { -- "url": "https://github.com/chalk/ansi-styles?sponsor=1" ++ }, ++ "funding": { + "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/anymatch": { -- "version": "3.1.3", -- "license": "ISC", -- "dependencies": { -- "normalize-path": "^3.0.0", -- "picomatch": "^2.0.4" -- }, ++ } ++ }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", -+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" ++ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", ++ "license": "MIT" + }, + "node_modules/buildcheck": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.6.tgz", + "integrity": "sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==", - "engines": { -- "node": ">= 8" ++ "engines": { + "node": ">=10.0.0" - } - }, -- "node_modules/app-builder-bin": { -- "version": "4.0.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/app-builder-lib": { -- "version": "24.13.3", ++ } ++ }, + "node_modules/builder-util": { + "version": "24.13.1", + "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-24.13.1.tgz", + "integrity": "sha512-NhbCSIntruNDTOVI9fdXz0dihaqX2YuE1D6zZMrwiErzH4ELZHE6mdiB40wEgZNprDia+FghRFgKoAqMZRRjSA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "@develar/schema-utils": "~2.6.5", -- "@electron/notarize": "2.2.1", -- "@electron/osx-sign": "1.0.5", -- "@electron/universal": "1.5.1", -- "@malept/flatpak-bundler": "^0.4.0", -- "@types/fs-extra": "9.0.13", -- "async-exit-hook": "^2.0.1", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { + "@types/debug": "^4.1.6", + "7zip-bin": "~5.2.0", + "app-builder-bin": "4.0.0", - "bluebird-lst": "^1.0.9", -- "builder-util": "24.13.1", - "builder-util-runtime": "9.2.4", -- "chromium-pickle-js": "^0.2.0", ++ "bluebird-lst": "^1.0.9", ++ "builder-util-runtime": "9.2.4", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", "debug": "^4.3.4", @@ -7275,6 +7373,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.2.4.tgz", + "integrity": "sha512-upp+biKpN/XZMLim7aguUyW8s0FUpDvOtK6sbanMFDAMBzpHDqdhgVYm6zc9HJ6nWo7u2Lxk60i2M6Jd3aiNrA==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "sax": "^1.2.4" @@ -7294,11 +7393,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -4768,10 +5334,11 @@ +@@ -4768,8 +5778,10 @@ "node": ">=12" } }, @@ -7308,44 +7405,50 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "universalify": "^2.0.0" - }, -@@ -4779,141 +5346,74 @@ +@@ -4779,1472 +5791,1586 @@ "graceful-fs": "^4.1.6" } }, - "node_modules/app-builder-lib/node_modules/semver": { - "version": "7.6.2", -- "dev": true, ++ "node_modules/builder-util/node_modules/universalify": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", ++ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, -- "engines": { -- "node": ">=10" -- } -- }, -- "node_modules/app-builder-lib/node_modules/universalify": { -+ "node_modules/builder-util/node_modules/universalify": { - "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", -+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, -- "license": "MIT", ++ "license": "MIT", "engines": { - "node": ">= 10.0.0" +- "node": ">=10" ++ "node": ">= 10.0.0" } }, -- "node_modules/archiver": { -- "version": "5.3.2", +- "node_modules/app-builder-lib/node_modules/universalify": { +- "version": "2.0.1", + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true, -- "license": "MIT", + "license": "MIT", + "engines": { +- "node": ">= 10.0.0" ++ "node": ">= 0.8" + } + }, +- "node_modules/archiver": { +- "version": "5.3.2", +- "dev": true, ++ "node_modules/cacheable-lookup": { ++ "version": "5.0.4", ++ "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", ++ "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "license": "MIT", - "peer": true, - "dependencies": { - "archiver-utils": "^2.1.0", @@ -7358,15 +7461,19 @@ index a38125e..a1067b0 100644 - }, "engines": { - "node": ">= 10" -+ "node": ">= 0.8" ++ "node": ">=10.6.0" } }, - "node_modules/archiver-utils": { - "version": "2.1.0", - "dev": true, -- "license": "MIT", ++ "node_modules/cacheable-request": { ++ "version": "7.0.4", ++ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", ++ "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "license": "MIT", - "peer": true, -- "dependencies": { + "dependencies": { - "glob": "^7.1.4", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", @@ -7377,54 +7484,6 @@ index a38125e..a1067b0 100644 - "lodash.union": "^4.6.0", - "normalize-path": "^3.0.0", - "readable-stream": "^2.0.0" -- }, -+ "node_modules/cacheable-lookup": { -+ "version": "5.0.4", -+ "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", -+ "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "engines": { -- "node": ">= 6" -- } -- }, -- "node_modules/archiver-utils/node_modules/isarray": { -- "version": "1.0.0", -- "dev": true, -- "license": "MIT", -- "peer": true -- }, -- "node_modules/archiver-utils/node_modules/readable-stream": { -- "version": "2.3.8", -- "dev": true, -- "license": "MIT", -- "peer": true, -- "dependencies": { -- "core-util-is": "~1.0.0", -- "inherits": "~2.0.3", -- "isarray": "~1.0.0", -- "process-nextick-args": "~2.0.0", -- "safe-buffer": "~5.1.1", -- "string_decoder": "~1.1.1", -- "util-deprecate": "~1.0.1" -+ "node": ">=10.6.0" - } - }, -- "node_modules/archiver-utils/node_modules/safe-buffer": { -- "version": "5.1.2", -- "dev": true, -- "license": "MIT", -- "peer": true -- }, -- "node_modules/archiver-utils/node_modules/string_decoder": { -- "version": "1.1.1", -- "dev": true, -- "license": "MIT", -- "peer": true, -+ "node_modules/cacheable-request": { -+ "version": "7.0.4", -+ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", -+ "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", - "dependencies": { -- "safe-buffer": "~5.1.0" + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", @@ -7432,9 +7491,87 @@ index a38125e..a1067b0 100644 + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { +- "node": ">= 6" ++ "node": ">=8" + } + }, +- "node_modules/archiver-utils/node_modules/isarray": { +- "version": "1.0.0", +- "dev": true, ++ "node_modules/cacheable-request/node_modules/get-stream": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", ++ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "license": "MIT", +- "peer": true ++ "dependencies": { ++ "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } + }, +- "node_modules/archiver-utils/node_modules/readable-stream": { +- "version": "2.3.8", ++ "node_modules/call-bind": { ++ "version": "1.0.7", ++ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", ++ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "license": "MIT", +- "peer": true, + "dependencies": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +- "process-nextick-args": "~2.0.0", +- "safe-buffer": "~5.1.1", +- "string_decoder": "~1.1.1", +- "util-deprecate": "~1.0.1" ++ "es-define-property": "^1.0.0", ++ "es-errors": "^1.3.0", ++ "function-bind": "^1.1.2", ++ "get-intrinsic": "^1.2.4", ++ "set-function-length": "^1.2.1" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "node_modules/archiver-utils/node_modules/safe-buffer": { +- "version": "5.1.2", ++ "node_modules/callsites": { ++ "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", ++ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", +- "peer": true ++ "engines": { ++ "node": ">=6" ++ } + }, +- "node_modules/archiver-utils/node_modules/string_decoder": { +- "version": "1.1.1", +- "dev": true, ++ "node_modules/camel-case": { ++ "version": "4.1.2", ++ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", ++ "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "license": "MIT", +- "peer": true, + "dependencies": { +- "safe-buffer": "~5.1.0" ++ "pascal-case": "^3.1.2", ++ "tslib": "^2.0.3" } }, - "node_modules/arg": { @@ -7448,23 +7585,20 @@ index a38125e..a1067b0 100644 - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", -- "dev": true, -- "license": "MIT", -+ "node_modules/cacheable-request/node_modules/get-stream": { -+ "version": "5.2.0", -+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", -+ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dependencies": { ++ "node_modules/camelcase": { ++ "version": "5.3.1", ++ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", ++ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "license": "MIT", +- "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" -+ "pump": "^3.0.0" -+ }, -+ "engines": { -+ "node": ">=8" - }, - "funding": { +- }, +- "funding": { - "url": "https://github.com/sponsors/ljharb" -+ "url": "https://github.com/sponsors/sindresorhus" ++ "engines": { ++ "node": ">=6" } }, - "node_modules/array-flatten": { @@ -7479,90 +7613,18 @@ index a38125e..a1067b0 100644 - }, - "node_modules/array-includes": { - "version": "3.1.7", -+ "node_modules/call-bind": { -+ "version": "1.0.7", -+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", -+ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", ++ "node_modules/camelcase-keys": { ++ "version": "6.2.2", ++ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", ++ "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" -+ "es-define-property": "^1.0.0", -+ "es-errors": "^1.3.0", -+ "function-bind": "^1.1.2", -+ "get-intrinsic": "^1.2.4", -+ "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" -@@ -4922,1200 +5422,1504 @@ - "url": "https://github.com/sponsors/ljharb" - } - }, -- "node_modules/array-union": { -- "version": "2.1.0", -+ "node_modules/callsites": { -+ "version": "3.1.0", -+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", -+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, -- "license": "MIT", - "engines": { -- "node": ">=8" -+ "node": ">=6" - } - }, -- "node_modules/array.prototype.flat": { -- "version": "1.3.2", -- "dev": true, -- "license": "MIT", -+ "node_modules/camel-case": { -+ "version": "4.1.2", -+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", -+ "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dependencies": { -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1", -- "es-shim-unscopables": "^1.0.0" -- }, -+ "pascal-case": "^3.1.2", -+ "tslib": "^2.0.3" -+ } -+ }, -+ "node_modules/camelcase": { -+ "version": "5.3.1", -+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", -+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", -+ "dev": true, - "engines": { -- "node": ">= 0.4" -- }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "node": ">=6" - } - }, -- "node_modules/arraybuffer.prototype.slice": { -- "version": "1.0.2", -+ "node_modules/camelcase-keys": { -+ "version": "6.2.2", -+ "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", -+ "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "array-buffer-byte-length": "^1.0.0", -- "call-bind": "^1.0.2", -- "define-properties": "^1.2.0", -- "es-abstract": "^1.22.1", -- "get-intrinsic": "^1.2.1", -- "is-array-buffer": "^3.0.2", -- "is-shared-array-buffer": "^1.0.2" + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" @@ -7576,29 +7638,25 @@ index a38125e..a1067b0 100644 + "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/arrify": { -- "version": "1.0.1", +- "node_modules/array-union": { +- "version": "2.1.0", + "node_modules/camelcase-keys/node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { -- "node": ">=0.10.0" -+ "node": ">=8" + "node": ">=8" } }, -- "node_modules/asn1": { -- "version": "0.2.6", -- "license": "MIT", -- "dependencies": { -- "safer-buffer": "~2.1.0" -- } +- "node_modules/array.prototype.flat": { +- "version": "1.3.2", +- "dev": true, + "node_modules/caniuse-lite": { -+ "version": "1.0.30001653", -+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001653.tgz", -+ "integrity": "sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==", ++ "version": "1.0.30001669", ++ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001669.tgz", ++ "integrity": "sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==", + "funding": [ + { + "type": "opencollective", @@ -7612,47 +7670,53 @@ index a38125e..a1067b0 100644 + "type": "github", + "url": "https://github.com/sponsors/ai" + } -+ ] - }, -- "node_modules/astral-regex": { -- "version": "2.0.0", -- "dev": true, -- "license": "MIT", ++ ], ++ "license": "CC-BY-4.0" ++ }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "es-shim-unscopables": "^1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" -+ }, + }, "engines": { -- "node": ">=8" +- "node": ">= 0.4" + "node": ">=10" -+ }, -+ "funding": { + }, + "funding": { +- "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, -- "node_modules/async": { -- "version": "3.2.5", -- "dev": true, -- "license": "MIT" +- "node_modules/arraybuffer.prototype.slice": { +- "version": "1.0.2", + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", -+ "dev": true - }, -- "node_modules/async-exit-hook": { -- "version": "2.0.1", -- "dev": true, -- "license": "MIT", + "dev": true, ++ "license": "MIT" ++ }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "array-buffer-byte-length": "^1.0.0", +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "get-intrinsic": "^1.2.1", +- "is-array-buffer": "^3.0.2", +- "is-shared-array-buffer": "^1.0.2" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", @@ -7660,89 +7724,193 @@ index a38125e..a1067b0 100644 + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" -+ }, + }, "engines": { -- "node": ">=0.12.0" +- "node": ">= 0.4" + "node": ">= 8.10.0" -+ }, -+ "funding": { + }, + "funding": { +- "url": "https://github.com/sponsors/ljharb" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, -- "node_modules/asynckit": { -- "version": "0.4.0", -- "dev": true, -- "license": "MIT" -- }, -- "node_modules/at-least-node": { -- "version": "1.0.0", +- "node_modules/arrify": { +- "version": "1.0.1", + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, -- "license": "ISC", +- "license": "MIT", ++ "license": "ISC", "engines": { -- "node": ">= 4.0.0" +- "node": ">=0.10.0" + "node": ">=10" } }, -- "node_modules/atomically": { -- "version": "1.7.0", -- "license": "MIT", +- "node_modules/asn1": { +- "version": "0.2.6", + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", - "engines": { -- "node": ">=10.12.0" + "license": "MIT", +- "dependencies": { +- "safer-buffer": "~2.1.0" ++ "engines": { + "node": ">=6.0" } }, -- "node_modules/available-typed-arrays": { -- "version": "1.0.5", +- "node_modules/astral-regex": { +- "version": "2.0.0", + "node_modules/chromium-pickle-js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", + "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", -+ "dev": true ++ "dev": true, ++ "license": "MIT" + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, -- "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", "engines": { -- "node": ">= 0.4" -- }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" -+ "node": ">=8" + "node": ">=8" } }, -- "node_modules/babel-loader": { -- "version": "8.2.5", -- "license": "MIT", +- "node_modules/async": { +- "version": "3.2.5", +- "dev": true, +- "license": "MIT" + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", ++ "license": "MIT", ++ "dependencies": { ++ "source-map": "~0.6.0" ++ }, ++ "engines": { ++ "node": ">= 10.0" ++ } + }, +- "node_modules/async-exit-hook": { +- "version": "2.0.1", ++ "node_modules/cli-cursor": { ++ "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", ++ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "license": "MIT", ++ "dependencies": { ++ "restore-cursor": "^3.1.0" ++ }, + "engines": { +- "node": ">=0.12.0" ++ "node": ">=8" + } + }, +- "node_modules/asynckit": { +- "version": "0.4.0", ++ "node_modules/cli-truncate": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", ++ "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, +- "license": "MIT" ++ "license": "MIT", ++ "optional": true, ++ "dependencies": { ++ "slice-ansi": "^3.0.0", ++ "string-width": "^4.2.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } + }, +- "node_modules/at-least-node": { +- "version": "1.0.0", ++ "node_modules/cli-width": { ++ "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", ++ "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "license": "ISC", + "engines": { +- "node": ">= 4.0.0" ++ "node": ">= 10" + } + }, +- "node_modules/atomically": { +- "version": "1.7.0", +- "license": "MIT", ++ "node_modules/cliui": { ++ "version": "8.0.1", ++ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", ++ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", ++ "dev": true, ++ "license": "ISC", ++ "dependencies": { ++ "string-width": "^4.2.0", ++ "strip-ansi": "^6.0.1", ++ "wrap-ansi": "^7.0.0" ++ }, + "engines": { +- "node": ">=10.12.0" ++ "node": ">=12" + } + }, +- "node_modules/available-typed-arrays": { +- "version": "1.0.5", ++ "node_modules/cliui/node_modules/wrap-ansi": { ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", ++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", ++ "dependencies": { ++ "ansi-styles": "^4.0.0", ++ "string-width": "^4.1.0", ++ "strip-ansi": "^6.0.0" ++ }, + "engines": { +- "node": ">= 0.4" ++ "node": ">=10" + }, + "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, +- "node_modules/babel-loader": { +- "version": "8.2.5", ++ "node_modules/clone-deep": { ++ "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", ++ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" -+ "source-map": "~0.6.0" ++ "is-plain-object": "^2.0.4", ++ "kind-of": "^6.0.2", ++ "shallow-clone": "^3.0.0" }, "engines": { - "node": ">= 8.9" @@ -7750,68 +7918,64 @@ index a38125e..a1067b0 100644 - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" -+ "node": ">= 10.0" ++ "node": ">=6" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.2.3", -+ "node_modules/cli-cursor": { -+ "version": "3.1.0", -+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", -+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, -- "license": "MIT", +- "dev": true, ++ "node_modules/clone-deep/node_modules/is-plain-object": { ++ "version": "2.0.4", ++ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", ++ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.13.11", - "@babel/helper-define-polyfill-provider": "^0.2.4", - "semver": "^6.1.1" -+ "restore-cursor": "^3.1.0" ++ "isobject": "^3.0.1" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { -+ "node": ">=8" ++ "node": ">=0.10.0" } }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.2.5", -+ "node_modules/cli-truncate": { -+ "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", -+ "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, -- "license": "MIT", -+ "optional": true, +- "dev": true, ++ "node_modules/clone-response": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", ++ "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.2.2", - "core-js-compat": "^3.16.2" -+ "slice-ansi": "^3.0.0", -+ "string-width": "^4.2.0" ++ "mimic-response": "^1.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" -+ "engines": { -+ "node": ">=8" -+ }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.2.3", -+ "node_modules/cli-width": { -+ "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", -+ "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, -- "license": "MIT", -- "dependencies": { +- "dev": true, ++ "node_modules/color-convert": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", ++ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.2.4" -- }, ++ "color-name": "~1.1.4" + }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { -+ "node": ">= 10" ++ "node": ">=7.0.0" } }, - "node_modules/balanced-match": { @@ -7834,40 +7998,44 @@ index a38125e..a1067b0 100644 - "url": "https://feross.org/support" - } - ], -- "license": "MIT" -- }, ++ "node_modules/color-name": { ++ "version": "1.1.4", ++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", ++ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, - "node_modules/batch": { - "version": "0.6.1", -+ "node_modules/cliui": { -+ "version": "8.0.1", -+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", -+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", ++ "node_modules/colord": { ++ "version": "2.9.3", ++ "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", ++ "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true, -- "license": "MIT" -- }, + "license": "MIT" + }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "license": "BSD-3-Clause", - "dependencies": { +- "dependencies": { - "tweetnacl": "^0.14.3" -+ "string-width": "^4.2.0", -+ "strip-ansi": "^6.0.1", -+ "wrap-ansi": "^7.0.0" -+ }, -+ "engines": { -+ "node": ">=12" - } +- } ++ "node_modules/colorette": { ++ "version": "2.0.20", ++ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", ++ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", ++ "license": "MIT" }, - "node_modules/better-sqlite3": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-10.0.0.tgz", - "integrity": "sha512-rOz0JY8bt9oMgrFssP7GnvA5R3yln73y/NizzWqy3WlFth8Ux8+g4r/N9fjX97nn4X1YX6MTER2doNpTu5pqiA==", - "hasInstallScript": true, -+ "node_modules/cliui/node_modules/wrap-ansi": { -+ "version": "7.0.0", -+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", -+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", ++ "node_modules/combined-stream": { ++ "version": "1.0.8", ++ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", ++ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, ++ "license": "MIT", "dependencies": { - "bindings": "^1.5.0", - "prebuild-install": "^7.1.1" @@ -7876,127 +8044,102 @@ index a38125e..a1067b0 100644 - "node_modules/big-integer": { - "version": "1.6.52", - "license": "Unlicense", -+ "ansi-styles": "^4.0.0", -+ "string-width": "^4.1.0", -+ "strip-ansi": "^6.0.0" ++ "delayed-stream": "~1.0.0" + }, "engines": { - "node": ">=0.6" -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" ++ "node": ">= 0.8" } }, - "node_modules/big.js": { - "version": "5.2.2", -- "license": "MIT", -+ "node_modules/clone-deep": { -+ "version": "4.0.1", -+ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", -+ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", -+ "dependencies": { -+ "is-plain-object": "^2.0.4", -+ "kind-of": "^6.0.2", -+ "shallow-clone": "^3.0.0" -+ }, ++ "node_modules/commander": { ++ "version": "5.1.0", ++ "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", ++ "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", ++ "dev": true, + "license": "MIT", "engines": { - "node": "*" -+ "node": ">=6" ++ "node": ">= 6" } }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "license": "MIT", -+ "node_modules/clone-deep/node_modules/is-plain-object": { -+ "version": "2.0.4", -+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", -+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", -+ "dependencies": { -+ "isobject": "^3.0.1" -+ }, - "engines": { +- "engines": { - "node": ">=8" -+ "node": ">=0.10.0" - } +- } ++ "node_modules/commondir": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", ++ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", ++ "license": "MIT" }, - "node_modules/bindings": { - "version": "1.5.0", -- "license": "MIT", -+ "node_modules/clone-response": { -+ "version": "1.0.3", -+ "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", -+ "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", ++ "node_modules/compare-func": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", ++ "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", ++ "dev": true, + "license": "MIT", "dependencies": { - "file-uri-to-path": "1.0.0" -+ "mimic-response": "^1.0.0" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" ++ "array-ify": "^1.0.0", ++ "dot-prop": "^5.1.0" } }, - "node_modules/bl": { - "version": "4.1.0", -- "license": "MIT", -+ "node_modules/color-convert": { -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", -+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { ++ "node_modules/compare-version": { ++ "version": "0.1.2", ++ "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", ++ "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", ++ "dev": true, + "license": "MIT", +- "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" -+ "color-name": "~1.1.4" -+ }, + "engines": { -+ "node": ">=7.0.0" ++ "node": ">=0.10.0" } }, - "node_modules/bluebird": { - "version": "3.7.2", - "dev": true, - "license": "MIT" -+ "node_modules/color-name": { -+ "version": "1.1.4", -+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", -+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, +- }, - "node_modules/bluebird-lst": { - "version": "1.0.9", -+ "node_modules/colord": { -+ "version": "2.9.3", -+ "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", -+ "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", -+ "dev": true -+ }, -+ "node_modules/colorette": { -+ "version": "2.0.20", -+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", -+ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" -+ }, -+ "node_modules/combined-stream": { -+ "version": "1.0.8", -+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", -+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", ++ "node_modules/compress-commons": { ++ "version": "4.1.2", ++ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz", ++ "integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==", "dev": true, -- "license": "MIT", + "license": "MIT", ++ "peer": true, "dependencies": { - "bluebird": "^3.5.5" -+ "delayed-stream": "~1.0.0" ++ "buffer-crc32": "^0.2.13", ++ "crc32-stream": "^4.0.2", ++ "normalize-path": "^3.0.0", ++ "readable-stream": "^3.6.0" + }, + "engines": { -+ "node": ">= 0.8" ++ "node": ">= 10" } }, - "node_modules/body-parser": { - "version": "1.20.2", -+ "node_modules/commander": { -+ "version": "5.1.0", -+ "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", -+ "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", ++ "node_modules/compressible": { ++ "version": "2.0.18", ++ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", ++ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, -- "license": "MIT", -- "dependencies": { + "license": "MIT", + "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", @@ -8009,86 +8152,22 @@ index a38125e..a1067b0 100644 - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" -- }, ++ "mime-db": ">= 1.43.0 < 2" + }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" -+ "node": ">= 6" ++ "node": ">= 0.6" } }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", -+ "node_modules/commondir": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", -+ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" -+ }, -+ "node_modules/compare-func": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", -+ "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", -+ "dev": true, -+ "dependencies": { -+ "array-ify": "^1.0.0", -+ "dot-prop": "^5.1.0" -+ } -+ }, -+ "node_modules/compare-version": { -+ "version": "0.1.2", -+ "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", -+ "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", - "dev": true, -- "license": "MIT", - "engines": { -- "node": ">= 0.8" -+ "node": ">=0.10.0" - } - }, -- "node_modules/body-parser/node_modules/debug": { -- "version": "2.6.9", -+ "node_modules/compress-commons": { -+ "version": "4.1.2", -+ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz", -+ "integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==", - "dev": true, -- "license": "MIT", -+ "peer": true, - "dependencies": { -- "ms": "2.0.0" -+ "buffer-crc32": "^0.2.13", -+ "crc32-stream": "^4.0.2", -+ "normalize-path": "^3.0.0", -+ "readable-stream": "^3.6.0" -+ }, -+ "engines": { -+ "node": ">= 10" - } - }, -- "node_modules/body-parser/node_modules/iconv-lite": { -- "version": "0.4.24", -+ "node_modules/compressible": { -+ "version": "2.0.18", -+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", -+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "safer-buffer": ">= 2.1.2 < 3" -+ "mime-db": ">= 1.43.0 < 2" - }, - "engines": { -- "node": ">=0.10.0" -+ "node": ">= 0.6" - } - }, -- "node_modules/body-parser/node_modules/ms": { -- "version": "2.0.0", + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, -- "license": "MIT" + "license": "MIT", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", @@ -8098,61 +8177,82 @@ index a38125e..a1067b0 100644 + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, -+ "engines": { + "engines": { +- "node": ">= 0.8" + "node": ">= 0.8.0" -+ } + } }, -- "node_modules/bonjour-service": { -- "version": "1.1.1", +- "node_modules/body-parser/node_modules/debug": { + "node_modules/compression/node_modules/debug": { -+ "version": "2.6.9", + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { + "ms": "2.0.0" + } + }, +- "node_modules/body-parser/node_modules/iconv-lite": { +- "version": "0.4.24", +- "dev": true, +- "license": "MIT", +- "dependencies": { +- "safer-buffer": ">= 2.1.2 < 3" +- }, +- "engines": { +- "node": ">=0.10.0" +- } +- }, +- "node_modules/body-parser/node_modules/ms": { ++ "node_modules/compression/node_modules/ms": { + "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, +- "node_modules/bonjour-service": { +- "version": "1.1.1", ++ "node_modules/compression/node_modules/safe-buffer": { ++ "version": "5.1.2", ++ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, +- "license": "MIT", +- "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" -+ "ms": "2.0.0" - } - }, +- } +- }, - "node_modules/boolbase": { - "version": "1.0.0", - "license": "ISC" -+ "node_modules/compression/node_modules/ms": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true ++ "license": "MIT" }, - "node_modules/boolean": { - "version": "3.2.0", - "license": "MIT", - "optional": true -+ "node_modules/compression/node_modules/safe-buffer": { -+ "version": "5.1.2", -+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", -+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", -+ "dev": true - }, -- "node_modules/brace-expansion": { -- "version": "2.0.1", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", -+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" -+ }, ++ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", ++ "license": "MIT" + }, +- "node_modules/brace-expansion": { +- "version": "2.0.1", + "node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "dev": true, -- "license": "MIT", + "engines": [ + "node >= 6.0" + ], + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "buffer-from": "^1.0.0", @@ -8163,11 +8263,11 @@ index a38125e..a1067b0 100644 }, - "node_modules/braces": { - "version": "3.0.2", -- "license": "MIT", + "node_modules/conf": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz", + "integrity": "sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==", + "license": "MIT", "dependencies": { - "fill-range": "^7.0.1" + "ajv": "^8.6.3", @@ -8205,27 +8305,37 @@ index a38125e..a1067b0 100644 - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", + "node_modules/conf/node_modules/dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" -- }, -- "bin": { -- "browserslist": "cli.js" + "is-obj": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=10" + }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/conf/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", ++ "license": "ISC", + "bin": { +- "browserslist": "cli.js" ++ "semver": "bin/semver.js" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/buffer": { @@ -8244,23 +8354,12 @@ index a38125e..a1067b0 100644 - "url": "https://feross.org/support" - } - ], -- "license": "MIT", -+ "node_modules/conf/node_modules/semver": { -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", -+ "bin": { -+ "semver": "bin/semver.js" -+ }, -+ "engines": { -+ "node": ">=10" -+ } -+ }, + "node_modules/config-file-ts": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/config-file-ts/-/config-file-ts-0.2.6.tgz", + "integrity": "sha512-6boGVaglwblBgJqGyxm4+xCmEGcWgnWHSWHY5jad58awQhB6gftq0G8HbzU39YqCIYHMLAiL1yjwiZ36m/CL8w==", + "dev": true, + "license": "MIT", "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" @@ -8278,6 +8377,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, ++ "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", @@ -8301,6 +8401,7 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, - "license": "MIT", ++ "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, @@ -8316,37 +8417,26 @@ index a38125e..a1067b0 100644 - "node_modules/buffer-from": { - "version": "1.1.2", - "license": "MIT" +- }, +- "node_modules/buildcheck": { +- "version": "0.0.6", + "node_modules/config-file-ts/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, -+ "engines": { -+ "node": ">=16 || 14 >=14.17" -+ } - }, -- "node_modules/buildcheck": { -- "version": "0.0.6", -+ "node_modules/config-file-ts/node_modules/typescript": { -+ "version": "5.5.4", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", -+ "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", -+ "dev": true, -+ "bin": { -+ "tsc": "bin/tsc", -+ "tsserver": "bin/tsserver" -+ }, ++ "license": "ISC", "engines": { - "node": ">=10.0.0" -+ "node": ">=14.17" ++ "node": ">=16 || 14 >=14.17" } }, - "node_modules/builder-util": { - "version": "24.13.1", -+ "node_modules/connect-history-api-fallback": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", -+ "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", ++ "node_modules/config-file-ts/node_modules/typescript": { ++ "version": "5.6.3", ++ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", ++ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", "dev": true, - "license": "MIT", - "dependencies": { @@ -8366,49 +8456,77 @@ index a38125e..a1067b0 100644 - "source-map-support": "^0.5.19", - "stat-mode": "^1.0.0", - "temp-file": "^3.4.0" ++ "license": "Apache-2.0", ++ "bin": { ++ "tsc": "bin/tsc", ++ "tsserver": "bin/tsserver" ++ }, + "engines": { -+ "node": ">=0.8" ++ "node": ">=14.17" } }, - "node_modules/builder-util-runtime": { - "version": "9.2.4", ++ "node_modules/connect-history-api-fallback": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", ++ "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "license": "MIT", +- "dependencies": { +- "debug": "^4.3.4", +- "sax": "^1.2.4" +- }, + "engines": { +- "node": ">=12.0.0" ++ "node": ">=0.8" + } + }, +- "node_modules/builder-util/node_modules/fs-extra": { +- "version": "10.1.0", + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { -- "debug": "^4.3.4", -- "sax": "^1.2.4" +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" + "safe-buffer": "5.2.1" }, "engines": { -- "node": ">=12.0.0" +- "node": ">=12" + "node": ">= 0.6" } }, -- "node_modules/builder-util/node_modules/fs-extra": { -- "version": "10.1.0", +- "node_modules/builder-util/node_modules/jsonfile": { +- "version": "6.1.0", + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", -+ "dev": true, + "dev": true, + "license": "MIT", +- "dependencies": { +- "universalify": "^2.0.0" +- }, +- "optionalDependencies": { +- "graceful-fs": "^4.1.6" + "engines": { + "node": ">= 0.6" -+ } -+ }, + } + }, +- "node_modules/builder-util/node_modules/universalify": { +- "version": "2.0.1", + "node_modules/conventional-changelog": { + "version": "3.1.24", + "resolved": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.24.tgz", + "integrity": "sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==", "dev": true, -- "license": "MIT", - "dependencies": { -- "graceful-fs": "^4.2.0", -- "jsonfile": "^6.0.1", -- "universalify": "^2.0.0" + "license": "MIT", ++ "dependencies": { + "conventional-changelog-angular": "^5.0.12", + "conventional-changelog-atom": "^2.0.8", + "conventional-changelog-codemirror": "^2.0.8", @@ -8420,40 +8538,6 @@ index a38125e..a1067b0 100644 + "conventional-changelog-jquery": "^3.0.11", + "conventional-changelog-jshint": "^2.0.9", + "conventional-changelog-preset-loader": "^2.3.4" - }, - "engines": { -- "node": ">=12" -+ "node": ">=10" - } - }, -- "node_modules/builder-util/node_modules/jsonfile": { -- "version": "6.1.0", -+ "node_modules/conventional-changelog-angular": { -+ "version": "7.0.0", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", -+ "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "universalify": "^2.0.0" -+ "compare-func": "^2.0.0" - }, -- "optionalDependencies": { -- "graceful-fs": "^4.1.6" -+ "engines": { -+ "node": ">=16" - } - }, -- "node_modules/builder-util/node_modules/universalify": { -- "version": "2.0.1", -+ "node_modules/conventional-changelog-atom": { -+ "version": "2.0.8", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz", -+ "integrity": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==", - "dev": true, -- "license": "MIT", -+ "dependencies": { -+ "q": "^1.5.1" + }, "engines": { - "node": ">= 10.0.0" @@ -8462,50 +8546,47 @@ index a38125e..a1067b0 100644 }, - "node_modules/bytes": { - "version": "3.0.0", -+ "node_modules/conventional-changelog-codemirror": { -+ "version": "2.0.8", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz", -+ "integrity": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==", ++ "node_modules/conventional-changelog-angular": { ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", ++ "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", "dev": true, - "license": "MIT", ++ "license": "ISC", + "dependencies": { -+ "q": "^1.5.1" ++ "compare-func": "^2.0.0" + }, "engines": { - "node": ">= 0.8" -+ "node": ">=10" ++ "node": ">=16" } }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", - "license": "MIT", -+ "node_modules/conventional-changelog-config-spec": { -+ "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz", -+ "integrity": "sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==", -+ "dev": true -+ }, -+ "node_modules/conventional-changelog-conventionalcommits": { -+ "version": "7.0.2", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", -+ "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", ++ "node_modules/conventional-changelog-atom": { ++ "version": "2.0.8", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz", ++ "integrity": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==", + "dev": true, ++ "license": "ISC", + "dependencies": { -+ "compare-func": "^2.0.0" ++ "q": "^1.5.1" + }, "engines": { - "node": ">=10.6.0" -+ "node": ">=16" ++ "node": ">=10" } }, - "node_modules/cacheable-request": { - "version": "7.0.4", - "license": "MIT", -+ "node_modules/conventional-changelog-core": { -+ "version": "4.2.4", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz", -+ "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", ++ "node_modules/conventional-changelog-codemirror": { ++ "version": "2.0.8", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz", ++ "integrity": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==", + "dev": true, ++ "license": "ISC", "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", @@ -8514,6 +8595,50 @@ index a38125e..a1067b0 100644 - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" ++ "q": "^1.5.1" + }, + "engines": { +- "node": ">=8" ++ "node": ">=10" + } + }, +- "node_modules/call-bind": { +- "version": "1.0.5", ++ "node_modules/conventional-changelog-config-spec": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz", ++ "integrity": "sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==", + "dev": true, +- "license": "MIT", ++ "license": "MIT" ++ }, ++ "node_modules/conventional-changelog-conventionalcommits": { ++ "version": "7.0.2", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", ++ "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", ++ "dev": true, ++ "license": "ISC", + "dependencies": { +- "function-bind": "^1.1.2", +- "get-intrinsic": "^1.2.1", +- "set-function-length": "^1.1.1" ++ "compare-func": "^2.0.0" + }, +- "funding": { +- "url": "https://github.com/sponsors/ljharb" ++ "engines": { ++ "node": ">=16" + } + }, +- "node_modules/callsites": { +- "version": "3.1.0", ++ "node_modules/conventional-changelog-core": { ++ "version": "4.2.4", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz", ++ "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", + "dev": true, + "license": "MIT", ++ "dependencies": { + "add-stream": "^1.0.0", + "conventional-changelog-writer": "^5.0.0", + "conventional-commits-parser": "^3.2.0", @@ -8528,33 +8653,30 @@ index a38125e..a1067b0 100644 + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^4.0.0" - }, ++ }, "engines": { -- "node": ">=8" +- "node": ">=6" + "node": ">=10" } }, -- "node_modules/call-bind": { -- "version": "1.0.5", +- "node_modules/camel-case": { +- "version": "4.1.2", + "node_modules/conventional-changelog-core/node_modules/conventional-commits-parser": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", + "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", - "dev": true, -- "license": "MIT", ++ "dev": true, + "license": "MIT", "dependencies": { -- "function-bind": "^1.1.2", -- "get-intrinsic": "^1.2.1", -- "set-function-length": "^1.1.1" +- "pascal-case": "^3.1.2", +- "tslib": "^2.0.3" + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" - }, -- "funding": { -- "url": "https://github.com/sponsors/ljharb" ++ }, + "bin": { + "conventional-commits-parser": "cli.js" + }, @@ -8562,45 +8684,49 @@ index a38125e..a1067b0 100644 + "node": ">=10" } }, -- "node_modules/callsites": { -- "version": "3.1.0", +- "node_modules/camelcase": { +- "version": "5.3.1", + "node_modules/conventional-changelog-core/node_modules/dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=8" } }, -- "node_modules/camel-case": { -- "version": "4.1.2", -- "license": "MIT", +- "node_modules/camelcase-keys": { +- "version": "6.2.2", + "node_modules/conventional-changelog-core/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", -+ "dev": true, + "dev": true, + "license": "MIT", "dependencies": { -- "pascal-case": "^3.1.2", -- "tslib": "^2.0.3" +- "camelcase": "^5.3.1", +- "map-obj": "^4.0.0", +- "quick-lru": "^4.0.1" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" -+ }, -+ "engines": { -+ "node": ">=8" + }, + "engines": { + "node": ">=8" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/camelcase": { -- "version": "5.3.1", +- "node_modules/camelcase-keys/node_modules/quick-lru": { +- "version": "4.0.1", + "node_modules/conventional-changelog-core/node_modules/git-raw-commits": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", "dev": true, -- "license": "MIT", + "license": "MIT", + "dependencies": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", @@ -8612,45 +8738,8 @@ index a38125e..a1067b0 100644 + "git-raw-commits": "cli.js" + }, "engines": { -- "node": ">=6" -+ "node": ">=10" - } - }, -- "node_modules/camelcase-keys": { -- "version": "6.2.2", -+ "node_modules/conventional-changelog-core/node_modules/is-text-path": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", -+ "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "camelcase": "^5.3.1", -- "map-obj": "^4.0.0", -- "quick-lru": "^4.0.1" -+ "text-extensions": "^1.0.0" - }, - "engines": { - "node": ">=8" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -+ "node": ">=0.10.0" - } - }, -- "node_modules/camelcase-keys/node_modules/quick-lru": { -- "version": "4.0.1", -+ "node_modules/conventional-changelog-core/node_modules/locate-path": { -+ "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", -+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, -- "license": "MIT", -+ "dependencies": { -+ "p-locate": "^4.1.0" -+ }, - "engines": { - "node": ">=8" ++ "node": ">=10" } }, - "node_modules/caniuse-lite": { @@ -8673,45 +8762,34 @@ index a38125e..a1067b0 100644 - }, - "node_modules/chalk": { - "version": "4.1.2", -- "license": "MIT", -+ "node_modules/conventional-changelog-core/node_modules/meow": { -+ "version": "8.1.2", -+ "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", -+ "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", ++ "node_modules/conventional-changelog-core/node_modules/is-text-path": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", ++ "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" -+ "@types/minimist": "^1.2.0", -+ "camelcase-keys": "^6.2.2", -+ "decamelize-keys": "^1.1.0", -+ "hard-rejection": "^2.1.0", -+ "minimist-options": "4.1.0", -+ "normalize-package-data": "^3.0.0", -+ "read-pkg-up": "^7.0.1", -+ "redent": "^3.0.0", -+ "trim-newlines": "^3.0.0", -+ "type-fest": "^0.18.0", -+ "yargs-parser": "^20.2.3" ++ "text-extensions": "^1.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { +- "node": ">=10" +- }, +- "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" -+ "url": "https://github.com/sponsors/sindresorhus" ++ "node": ">=0.10.0" } }, - "node_modules/chardet": { - "version": "0.7.0", -- "dev": true, ++ "node_modules/conventional-changelog-core/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, - "license": "MIT" -+ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/hosted-git-info": { -+ "version": "2.8.9", -+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", -+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", -+ "dev": true - }, +- }, - "node_modules/chokidar": { - "version": "3.5.3", - "funding": [ @@ -8720,12 +8798,7 @@ index a38125e..a1067b0 100644 - "url": "https://paulmillr.com/funding/" - } - ], -- "license": "MIT", -+ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg": { -+ "version": "5.2.0", -+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", -+ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", -+ "dev": true, + "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", @@ -8734,10 +8807,7 @@ index a38125e..a1067b0 100644 - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" -+ "@types/normalize-package-data": "^2.4.0", -+ "normalize-package-data": "^2.5.0", -+ "parse-json": "^5.0.0", -+ "type-fest": "^0.6.0" ++ "p-locate": "^4.1.0" }, "engines": { - "node": ">= 8.10.0" @@ -8749,445 +8819,20 @@ index a38125e..a1067b0 100644 }, - "node_modules/chownr": { - "version": "2.0.0", -+ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up": { -+ "version": "7.0.1", -+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", -+ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, -- "license": "ISC", -+ "dependencies": { -+ "find-up": "^4.1.0", -+ "read-pkg": "^5.2.0", -+ "type-fest": "^0.8.1" -+ }, - "engines": { -- "node": ">=10" -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/chrome-trace-event": { -- "version": "1.0.3", -- "license": "MIT", -+ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { -+ "version": "0.8.1", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", -+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", -+ "dev": true, - "engines": { -- "node": ">=6.0" -+ "node": ">=8" - } - }, -- "node_modules/chromium-pickle-js": { -- "version": "0.2.0", -+ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { -+ "version": "2.5.0", -+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", -+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, -- "license": "MIT" -+ "dependencies": { -+ "hosted-git-info": "^2.1.4", -+ "resolve": "^1.10.0", -+ "semver": "2 || 3 || 4 || 5", -+ "validate-npm-package-license": "^3.0.1" -+ } - }, -- "node_modules/ci-info": { -- "version": "3.9.0", -+ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { -+ "version": "0.6.0", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", -+ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, -- "funding": [ -- { -- "type": "github", -- "url": "https://github.com/sponsors/sibiraj-s" -- } -- ], -- "license": "MIT", - "engines": { - "node": ">=8" - } - }, -- "node_modules/clean-css": { -- "version": "5.3.2", -- "license": "MIT", -+ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/semver": { -+ "version": "5.7.2", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", -+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", -+ "dev": true, -+ "bin": { -+ "semver": "bin/semver" -+ } -+ }, -+ "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { -+ "version": "3.0.3", -+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", -+ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", -+ "dev": true, - "dependencies": { -- "source-map": "~0.6.0" -+ "hosted-git-info": "^4.0.1", -+ "is-core-module": "^2.5.0", -+ "semver": "^7.3.4", -+ "validate-npm-package-license": "^3.0.1" - }, - "engines": { -- "node": ">= 10.0" -+ "node": ">=10" - } - }, -- "node_modules/cli-cursor": { -- "version": "3.1.0", -+ "node_modules/conventional-changelog-core/node_modules/p-limit": { -+ "version": "2.3.0", -+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", -+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "restore-cursor": "^3.1.0" -+ "p-try": "^2.0.0" - }, - "engines": { -- "node": ">=8" -+ "node": ">=6" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/cli-width": { -- "version": "3.0.0", -+ "node_modules/conventional-changelog-core/node_modules/p-locate": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", -+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, -- "license": "ISC", -+ "dependencies": { -+ "p-limit": "^2.2.0" -+ }, - "engines": { -- "node": ">= 10" -+ "node": ">=8" - } - }, -- "node_modules/cliui": { -- "version": "6.0.0", -+ "node_modules/conventional-changelog-core/node_modules/parse-json": { -+ "version": "5.2.0", -+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", -+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, -- "license": "ISC", - "dependencies": { -- "string-width": "^4.2.0", -- "strip-ansi": "^6.0.0", -- "wrap-ansi": "^6.2.0" -+ "@babel/code-frame": "^7.0.0", -+ "error-ex": "^1.3.1", -+ "json-parse-even-better-errors": "^2.3.0", -+ "lines-and-columns": "^1.1.6" -+ }, -+ "engines": { -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/cliui/node_modules/wrap-ansi": { -- "version": "6.2.0", -+ "node_modules/conventional-changelog-core/node_modules/path-exists": { -+ "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", -+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, -- "license": "MIT", -- "dependencies": { -- "ansi-styles": "^4.0.0", -- "string-width": "^4.1.0", -- "strip-ansi": "^6.0.0" -- }, - "engines": { - "node": ">=8" - } - }, -- "node_modules/clone-deep": { -- "version": "4.0.1", -- "license": "MIT", -- "dependencies": { -- "is-plain-object": "^2.0.4", -- "kind-of": "^6.0.2", -- "shallow-clone": "^3.0.0" -+ "node_modules/conventional-changelog-core/node_modules/semver": { -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", -+ "dev": true, -+ "bin": { -+ "semver": "bin/semver.js" - }, - "engines": { -- "node": ">=6" -+ "node": ">=10" - } - }, -- "node_modules/clone-deep/node_modules/is-plain-object": { -- "version": "2.0.4", -- "license": "MIT", -+ "node_modules/conventional-changelog-core/node_modules/split2": { -+ "version": "3.2.2", -+ "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", -+ "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", -+ "dev": true, - "dependencies": { -- "isobject": "^3.0.1" -- }, -+ "readable-stream": "^3.0.0" -+ } -+ }, -+ "node_modules/conventional-changelog-core/node_modules/text-extensions": { -+ "version": "1.9.0", -+ "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", -+ "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", -+ "dev": true, - "engines": { -- "node": ">=0.10.0" -+ "node": ">=0.10" - } - }, -- "node_modules/clone-response": { -- "version": "1.0.3", -- "license": "MIT", -- "dependencies": { -- "mimic-response": "^1.0.0" -+ "node_modules/conventional-changelog-core/node_modules/type-fest": { -+ "version": "0.18.1", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", -+ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", -+ "dev": true, -+ "engines": { -+ "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/color-convert": { -- "version": "2.0.1", -- "license": "MIT", -- "dependencies": { -- "color-name": "~1.1.4" -- }, -+ "node_modules/conventional-changelog-core/node_modules/yargs-parser": { -+ "version": "20.2.9", -+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", -+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", -+ "dev": true, - "engines": { -- "node": ">=7.0.0" -+ "node": ">=10" - } - }, -- "node_modules/color-name": { -- "version": "1.1.4", -- "license": "MIT" -- }, -- "node_modules/colord": { -- "version": "2.9.3", -+ "node_modules/conventional-changelog-ember": { -+ "version": "2.0.9", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz", -+ "integrity": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==", - "dev": true, -- "license": "MIT" -- }, -- "node_modules/colorette": { -- "version": "2.0.20", -- "license": "MIT" -+ "dependencies": { -+ "q": "^1.5.1" -+ }, -+ "engines": { -+ "node": ">=10" -+ } - }, -- "node_modules/combined-stream": { -- "version": "1.0.8", -+ "node_modules/conventional-changelog-eslint": { -+ "version": "3.0.9", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz", -+ "integrity": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "delayed-stream": "~1.0.0" -+ "q": "^1.5.1" - }, - "engines": { -- "node": ">= 0.8" -+ "node": ">=10" - } - }, -- "node_modules/commander": { -- "version": "5.1.0", -+ "node_modules/conventional-changelog-express": { -+ "version": "2.0.6", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz", -+ "integrity": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==", - "dev": true, -- "license": "MIT", -+ "dependencies": { -+ "q": "^1.5.1" -+ }, - "engines": { -- "node": ">= 6" -+ "node": ">=10" - } - }, -- "node_modules/commondir": { -- "version": "1.0.1", -- "license": "MIT" -- }, -- "node_modules/compare-func": { -- "version": "2.0.0", -+ "node_modules/conventional-changelog-jquery": { -+ "version": "3.0.11", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz", -+ "integrity": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "array-ify": "^1.0.0", -- "dot-prop": "^5.1.0" -+ "q": "^1.5.1" -+ }, -+ "engines": { -+ "node": ">=10" - } - }, -- "node_modules/compare-func/node_modules/dot-prop": { -- "version": "5.3.0", -+ "node_modules/conventional-changelog-jshint": { -+ "version": "2.0.9", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz", -+ "integrity": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "is-obj": "^2.0.0" -+ "compare-func": "^2.0.0", -+ "q": "^1.5.1" - }, - "engines": { -- "node": ">=8" -+ "node": ">=10" - } - }, -- "node_modules/compare-version": { -- "version": "0.1.2", -+ "node_modules/conventional-changelog-preset-loader": { -+ "version": "2.3.4", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", -+ "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", - "dev": true, -- "license": "MIT", - "engines": { -- "node": ">=0.10.0" -+ "node": ">=10" - } - }, -- "node_modules/compress-commons": { -- "version": "4.1.2", -+ "node_modules/conventional-changelog-writer": { -+ "version": "5.0.1", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", -+ "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", - "dev": true, -- "license": "MIT", -- "peer": true, - "dependencies": { -- "buffer-crc32": "^0.2.13", -- "crc32-stream": "^4.0.2", -- "normalize-path": "^3.0.0", -- "readable-stream": "^3.6.0" -+ "conventional-commits-filter": "^2.0.7", -+ "dateformat": "^3.0.0", -+ "handlebars": "^4.7.7", -+ "json-stringify-safe": "^5.0.1", -+ "lodash": "^4.17.15", -+ "meow": "^8.0.0", -+ "semver": "^6.0.0", -+ "split": "^1.0.0", -+ "through2": "^4.0.0" -+ }, -+ "bin": { -+ "conventional-changelog-writer": "cli.js" - }, - "engines": { -- "node": ">= 10" -+ "node": ">=10" - } - }, -- "node_modules/compressible": { -- "version": "2.0.18", -+ "node_modules/conventional-changelog-writer/node_modules/find-up": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", -+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "mime-db": ">= 1.43.0 < 2" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" - }, - "engines": { -- "node": ">= 0.6" -+ "node": ">=8" - } - }, -- "node_modules/compression": { -- "version": "1.7.4", -+ "node_modules/conventional-changelog-writer/node_modules/locate-path": { -+ "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", -+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "accepts": "~1.3.5", -- "bytes": "3.0.0", -- "compressible": "~2.0.16", -- "debug": "2.6.9", -- "on-headers": "~1.0.2", -- "safe-buffer": "5.1.2", -- "vary": "~1.1.2" -+ "p-locate": "^4.1.0" - }, - "engines": { -- "node": ">= 0.8.0" -+ "node": ">=8" - } - }, -- "node_modules/compression/node_modules/debug": { -- "version": "2.6.9", -+ "node_modules/conventional-changelog-writer/node_modules/meow": { ++ "node_modules/conventional-changelog-core/node_modules/meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", "dev": true, -- "license": "MIT", - "dependencies": { -- "ms": "2.0.0" +- "license": "ISC", +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/chrome-trace-event": { +- "version": "1.0.3", + "license": "MIT", ++ "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", @@ -9200,13 +8845,390 @@ index a38125e..a1067b0 100644 + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, -+ "engines": { + "engines": { +- "node": ">=6.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, +- "node_modules/chromium-pickle-js": { +- "version": "0.2.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/hosted-git-info": { ++ "version": "2.8.9", ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", ++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true, +- "license": "MIT" ++ "license": "ISC" + }, +- "node_modules/ci-info": { +- "version": "3.9.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", ++ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, +- "funding": [ +- { +- "type": "github", +- "url": "https://github.com/sponsors/sibiraj-s" +- } +- ], +- "license": "MIT", +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/clean-css": { +- "version": "5.3.2", + "license": "MIT", + "dependencies": { +- "source-map": "~0.6.0" ++ "@types/normalize-package-data": "^2.4.0", ++ "normalize-package-data": "^2.5.0", ++ "parse-json": "^5.0.0", ++ "type-fest": "^0.6.0" + }, + "engines": { +- "node": ">= 10.0" ++ "node": ">=8" + } + }, +- "node_modules/cli-cursor": { +- "version": "3.1.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up": { ++ "version": "7.0.1", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", ++ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "license": "MIT", + "dependencies": { +- "restore-cursor": "^3.1.0" ++ "find-up": "^4.1.0", ++ "read-pkg": "^5.2.0", ++ "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/cli-width": { +- "version": "3.0.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", ++ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, +- "license": "ISC", ++ "license": "(MIT OR CC0-1.0)", + "engines": { +- "node": ">= 10" ++ "node": ">=8" + } + }, +- "node_modules/cliui": { +- "version": "6.0.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { ++ "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", ++ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, +- "license": "ISC", ++ "license": "BSD-2-Clause", + "dependencies": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.0", +- "wrap-ansi": "^6.2.0" ++ "hosted-git-info": "^2.1.4", ++ "resolve": "^1.10.0", ++ "semver": "2 || 3 || 4 || 5", ++ "validate-npm-package-license": "^3.0.1" + } + }, +- "node_modules/cliui/node_modules/wrap-ansi": { +- "version": "6.2.0", ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { ++ "version": "0.6.0", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", ++ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- }, ++ "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, +- "node_modules/clone-deep": { +- "version": "4.0.1", +- "license": "MIT", +- "dependencies": { +- "is-plain-object": "^2.0.4", +- "kind-of": "^6.0.2", +- "shallow-clone": "^3.0.0" +- }, +- "engines": { +- "node": ">=6" ++ "node_modules/conventional-changelog-core/node_modules/meow/node_modules/semver": { ++ "version": "5.7.2", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", ++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", ++ "dev": true, ++ "license": "ISC", ++ "bin": { ++ "semver": "bin/semver" + } + }, +- "node_modules/clone-deep/node_modules/is-plain-object": { +- "version": "2.0.4", +- "license": "MIT", ++ "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", ++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", ++ "dev": true, ++ "license": "BSD-2-Clause", + "dependencies": { +- "isobject": "^3.0.1" ++ "hosted-git-info": "^4.0.1", ++ "is-core-module": "^2.5.0", ++ "semver": "^7.3.4", ++ "validate-npm-package-license": "^3.0.1" + }, + "engines": { +- "node": ">=0.10.0" ++ "node": ">=10" + } + }, +- "node_modules/clone-response": { +- "version": "1.0.3", ++ "node_modules/conventional-changelog-core/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "mimic-response": "^1.0.0" ++ "p-try": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/color-convert": { +- "version": "2.0.1", ++ "node_modules/conventional-changelog-core/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", ++ "dev": true, + "license": "MIT", + "dependencies": { +- "color-name": "~1.1.4" ++ "p-limit": "^2.2.0" + }, + "engines": { +- "node": ">=7.0.0" ++ "node": ">=8" + } + }, +- "node_modules/color-name": { +- "version": "1.1.4", +- "license": "MIT" +- }, +- "node_modules/colord": { +- "version": "2.9.3", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/colorette": { +- "version": "2.0.20", +- "license": "MIT" +- }, +- "node_modules/combined-stream": { +- "version": "1.0.8", ++ "node_modules/conventional-changelog-core/node_modules/parse-json": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { +- "delayed-stream": "~1.0.0" ++ "@babel/code-frame": "^7.0.0", ++ "error-ex": "^1.3.1", ++ "json-parse-even-better-errors": "^2.3.0", ++ "lines-and-columns": "^1.1.6" + }, + "engines": { +- "node": ">= 0.8" ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/commander": { +- "version": "5.1.0", ++ "node_modules/conventional-changelog-core/node_modules/path-exists": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { +- "node": ">= 6" ++ "node": ">=8" + } + }, +- "node_modules/commondir": { +- "version": "1.0.1", +- "license": "MIT" +- }, +- "node_modules/compare-func": { +- "version": "2.0.0", ++ "node_modules/conventional-changelog-core/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "array-ify": "^1.0.0", +- "dot-prop": "^5.1.0" ++ "license": "ISC", ++ "bin": { ++ "semver": "bin/semver.js" ++ }, ++ "engines": { ++ "node": ">=10" + } + }, +- "node_modules/compare-func/node_modules/dot-prop": { +- "version": "5.3.0", ++ "node_modules/conventional-changelog-core/node_modules/split2": { ++ "version": "3.2.2", ++ "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", ++ "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, +- "license": "MIT", ++ "license": "ISC", + "dependencies": { +- "is-obj": "^2.0.0" +- }, +- "engines": { +- "node": ">=8" ++ "readable-stream": "^3.0.0" + } + }, +- "node_modules/compare-version": { +- "version": "0.1.2", ++ "node_modules/conventional-changelog-core/node_modules/text-extensions": { ++ "version": "1.9.0", ++ "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", ++ "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true, + "license": "MIT", + "engines": { +- "node": ">=0.10.0" ++ "node": ">=0.10" + } + }, +- "node_modules/compress-commons": { +- "version": "4.1.2", ++ "node_modules/conventional-changelog-core/node_modules/type-fest": { ++ "version": "0.18.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", ++ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, +- "license": "MIT", +- "peer": true, +- "dependencies": { +- "buffer-crc32": "^0.2.13", +- "crc32-stream": "^4.0.2", +- "normalize-path": "^3.0.0", +- "readable-stream": "^3.6.0" +- }, ++ "license": "(MIT OR CC0-1.0)", + "engines": { +- "node": ">= 10" ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/compressible": { +- "version": "2.0.18", ++ "node_modules/conventional-changelog-core/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, +- "license": "MIT", +- "dependencies": { +- "mime-db": ">= 1.43.0 < 2" +- }, ++ "license": "ISC", + "engines": { +- "node": ">= 0.6" ++ "node": ">=10" + } + }, +- "node_modules/compression": { +- "version": "1.7.4", ++ "node_modules/conventional-changelog-ember": { ++ "version": "2.0.9", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz", ++ "integrity": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==", + "dev": true, +- "license": "MIT", ++ "license": "ISC", + "dependencies": { +- "accepts": "~1.3.5", +- "bytes": "3.0.0", +- "compressible": "~2.0.16", +- "debug": "2.6.9", +- "on-headers": "~1.0.2", +- "safe-buffer": "5.1.2", +- "vary": "~1.1.2" ++ "q": "^1.5.1" + }, + "engines": { +- "node": ">= 0.8.0" ++ "node": ">=10" + } + }, +- "node_modules/compression/node_modules/debug": { +- "version": "2.6.9", ++ "node_modules/conventional-changelog-eslint": { ++ "version": "3.0.9", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz", ++ "integrity": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==", + "dev": true, +- "license": "MIT", ++ "license": "ISC", + "dependencies": { +- "ms": "2.0.0" ++ "q": "^1.5.1" ++ }, ++ "engines": { ++ "node": ">=10" + } + }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "dev": true, @@ -9223,33 +9245,27 @@ index a38125e..a1067b0 100644 - }, - "node_modules/concat-stream": { - "version": "2.0.0", -+ "node_modules/conventional-changelog-writer/node_modules/normalize-package-data": { -+ "version": "3.0.3", -+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", -+ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", ++ "node_modules/conventional-changelog-express": { ++ "version": "2.0.6", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz", ++ "integrity": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==", "dev": true, - "engines": [ - "node >= 6.0" - ], - "license": "MIT", - "dependencies": { +- "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.0.2", - "typedarray": "^0.0.6" -+ "hosted-git-info": "^4.0.1", -+ "is-core-module": "^2.5.0", -+ "semver": "^7.3.4", -+ "validate-npm-package-license": "^3.0.1" -+ }, -+ "engines": { -+ "node": ">=10" - } - }, +- } +- }, - "node_modules/conf": { - "version": "10.2.0", - "license": "MIT", -- "dependencies": { ++ "license": "ISC", + "dependencies": { - "ajv": "^8.6.3", - "ajv-formats": "^2.1.1", - "atomically": "^1.7.0", @@ -9260,13 +9276,7 @@ index a38125e..a1067b0 100644 - "onetime": "^5.1.2", - "pkg-up": "^3.1.0", - "semver": "^7.3.5" -+ "node_modules/conventional-changelog-writer/node_modules/normalize-package-data/node_modules/semver": { -+ "version": "7.6.3", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", -+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", -+ "dev": true, -+ "bin": { -+ "semver": "bin/semver.js" ++ "q": "^1.5.1" }, "engines": { - "node": ">=12" @@ -9279,25 +9289,24 @@ index a38125e..a1067b0 100644 - "node_modules/conf/node_modules/ajv": { - "version": "8.12.0", - "license": "MIT", -+ "node_modules/conventional-changelog-writer/node_modules/p-limit": { -+ "version": "2.3.0", -+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", -+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", ++ "node_modules/conventional-changelog-jquery": { ++ "version": "3.0.11", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz", ++ "integrity": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==", + "dev": true, ++ "license": "ISC", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" -+ "p-try": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=6" ++ "q": "^1.5.1" }, - "funding": { +- "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" -+ "url": "https://github.com/sponsors/sindresorhus" ++ "engines": { ++ "node": ">=10" } }, - "node_modules/conf/node_modules/json-schema-traverse": { @@ -9306,73 +9315,91 @@ index a38125e..a1067b0 100644 - }, - "node_modules/conf/node_modules/lru-cache": { - "version": "6.0.0", -- "license": "ISC", -+ "node_modules/conventional-changelog-writer/node_modules/p-locate": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", -+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", ++ "node_modules/conventional-changelog-jshint": { ++ "version": "2.0.9", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz", ++ "integrity": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==", + "dev": true, + "license": "ISC", "dependencies": { - "yallist": "^4.0.0" -+ "p-limit": "^2.2.0" ++ "compare-func": "^2.0.0", ++ "q": "^1.5.1" }, "engines": { -- "node": ">=10" -+ "node": ">=8" + "node": ">=10" } }, - "node_modules/conf/node_modules/semver": { - "version": "7.5.4", - "license": "ISC", -+ "node_modules/conventional-changelog-writer/node_modules/parse-json": { -+ "version": "5.2.0", -+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", -+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", ++ "node_modules/conventional-changelog-preset-loader": { ++ "version": "2.3.4", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", ++ "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", + "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/conventional-changelog-writer": { ++ "version": "5.0.1", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz", ++ "integrity": "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==", ++ "dev": true, ++ "license": "MIT", "dependencies": { - "lru-cache": "^6.0.0" -- }, -- "bin": { ++ "conventional-commits-filter": "^2.0.7", ++ "dateformat": "^3.0.0", ++ "handlebars": "^4.7.7", ++ "json-stringify-safe": "^5.0.1", ++ "lodash": "^4.17.15", ++ "meow": "^8.0.0", ++ "semver": "^6.0.0", ++ "split": "^1.0.0", ++ "through2": "^4.0.0" + }, + "bin": { - "semver": "bin/semver.js" -+ "@babel/code-frame": "^7.0.0", -+ "error-ex": "^1.3.1", -+ "json-parse-even-better-errors": "^2.3.0", -+ "lines-and-columns": "^1.1.6" ++ "conventional-changelog-writer": "cli.js" }, "engines": { -- "node": ">=10" -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/conf/node_modules/yallist": { -+ "node_modules/conventional-changelog-writer/node_modules/path-exists": { - "version": "4.0.0", +- "version": "4.0.0", - "license": "ISC" - }, - "node_modules/config-file-ts": { - "version": "0.2.6", -+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", -+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", ++ "node_modules/conventional-changelog-writer/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, -- "license": "MIT", -- "dependencies": { + "license": "MIT", + "dependencies": { - "glob": "^10.3.10", - "typescript": "^5.3.3" ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" ++ }, + "engines": { + "node": ">=8" } }, - "node_modules/config-file-ts/node_modules/glob": { - "version": "10.3.15", -+ "node_modules/conventional-changelog-writer/node_modules/read-pkg": { -+ "version": "5.2.0", -+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", -+ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", ++ "node_modules/conventional-changelog-writer/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "ISC", ++ "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", @@ -9382,10 +9409,7 @@ index a38125e..a1067b0 100644 - }, - "bin": { - "glob": "dist/esm/bin.mjs" -+ "@types/normalize-package-data": "^2.4.0", -+ "normalize-package-data": "^2.5.0", -+ "parse-json": "^5.0.0", -+ "type-fest": "^0.6.0" ++ "p-locate": "^4.1.0" }, "engines": { - "node": ">=16 || 14 >=14.18" @@ -9397,344 +9421,15 @@ index a38125e..a1067b0 100644 }, - "node_modules/config-file-ts/node_modules/minimatch": { - "version": "9.0.4", -+ "node_modules/conventional-changelog-writer/node_modules/read-pkg-up": { -+ "version": "7.0.1", -+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", -+ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, -- "license": "ISC", - "dependencies": { -- "brace-expansion": "^2.0.1" -+ "find-up": "^4.1.0", -+ "read-pkg": "^5.2.0", -+ "type-fest": "^0.8.1" - }, - "engines": { -- "node": ">=16 || 14 >=14.17" -+ "node": ">=8" - }, - "funding": { -- "url": "https://github.com/sponsors/isaacs" -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/config-file-ts/node_modules/minipass": { -- "version": "7.1.1", -+ "node_modules/conventional-changelog-writer/node_modules/read-pkg-up/node_modules/type-fest": { -+ "version": "0.8.1", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", -+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, -- "license": "ISC", - "engines": { -- "node": ">=16 || 14 >=14.17" -+ "node": ">=8" - } - }, -- "node_modules/config-file-ts/node_modules/typescript": { -- "version": "5.4.5", -+ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/hosted-git-info": { -+ "version": "2.8.9", -+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", -+ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", -+ "dev": true -+ }, -+ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/normalize-package-data": { -+ "version": "2.5.0", -+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", -+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", -+ "dev": true, -+ "dependencies": { -+ "hosted-git-info": "^2.1.4", -+ "resolve": "^1.10.0", -+ "semver": "2 || 3 || 4 || 5", -+ "validate-npm-package-license": "^3.0.1" -+ } -+ }, -+ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/semver": { -+ "version": "5.7.2", -+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", -+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, -- "license": "Apache-2.0", - "bin": { -- "tsc": "bin/tsc", -- "tsserver": "bin/tsserver" -- }, -+ "semver": "bin/semver" -+ } -+ }, -+ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/type-fest": { -+ "version": "0.6.0", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", -+ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", -+ "dev": true, -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "node_modules/conventional-changelog-writer/node_modules/type-fest": { -+ "version": "0.18.1", -+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", -+ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", -+ "dev": true, - "engines": { -- "node": ">=14.17" -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/connect-history-api-fallback": { -- "version": "2.0.0", -+ "node_modules/conventional-changelog-writer/node_modules/yargs-parser": { -+ "version": "20.2.9", -+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", -+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, -- "license": "MIT", - "engines": { -- "node": ">=0.8" -+ "node": ">=10" - } - }, -- "node_modules/content-disposition": { -- "version": "0.5.4", -+ "node_modules/conventional-changelog/node_modules/conventional-changelog-angular": { -+ "version": "5.0.13", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", -+ "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "safe-buffer": "5.2.1" -+ "compare-func": "^2.0.0", -+ "q": "^1.5.1" - }, - "engines": { -- "node": ">= 0.6" -+ "node": ">=10" - } - }, -- "node_modules/content-type": { -- "version": "1.0.5", -+ "node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits": { -+ "version": "4.6.3", -+ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz", -+ "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==", - "dev": true, -- "license": "MIT", -+ "dependencies": { -+ "compare-func": "^2.0.0", -+ "lodash": "^4.17.15", -+ "q": "^1.5.1" -+ }, - "engines": { -- "node": ">= 0.6" -+ "node": ">=10" - } - }, -- "node_modules/conventional-changelog": { -- "version": "3.1.24", -+ "node_modules/conventional-commits-filter": { -+ "version": "2.0.7", -+ "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", -+ "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "conventional-changelog-angular": "^5.0.12", -- "conventional-changelog-atom": "^2.0.8", -- "conventional-changelog-codemirror": "^2.0.8", -- "conventional-changelog-conventionalcommits": "^4.5.0", -- "conventional-changelog-core": "^4.2.1", -- "conventional-changelog-ember": "^2.0.9", -- "conventional-changelog-eslint": "^3.0.9", -- "conventional-changelog-express": "^2.0.6", -- "conventional-changelog-jquery": "^3.0.11", -- "conventional-changelog-jshint": "^2.0.9", -- "conventional-changelog-preset-loader": "^2.3.4" -+ "lodash.ismatch": "^4.4.0", -+ "modify-values": "^1.0.0" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-angular": { -- "version": "5.0.13", -+ "node_modules/conventional-commits-parser": { -+ "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", -+ "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", - "dev": true, -- "license": "ISC", - "dependencies": { -- "compare-func": "^2.0.0", -- "q": "^1.5.1" -+ "is-text-path": "^2.0.0", -+ "JSONStream": "^1.3.5", -+ "meow": "^12.0.1", -+ "split2": "^4.0.0" -+ }, -+ "bin": { -+ "conventional-commits-parser": "cli.mjs" - }, - "engines": { -- "node": ">=10" -+ "node": ">=16" - } - }, -- "node_modules/conventional-changelog-atom": { -- "version": "2.0.8", -+ "node_modules/conventional-recommended-bump": { -+ "version": "6.1.0", -+ "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz", -+ "integrity": "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==", - "dev": true, -- "license": "ISC", - "dependencies": { -+ "concat-stream": "^2.0.0", -+ "conventional-changelog-preset-loader": "^2.3.4", -+ "conventional-commits-filter": "^2.0.7", -+ "conventional-commits-parser": "^3.2.0", -+ "git-raw-commits": "^2.0.8", -+ "git-semver-tags": "^4.1.1", -+ "meow": "^8.0.0", - "q": "^1.5.1" - }, -+ "bin": { -+ "conventional-recommended-bump": "cli.js" -+ }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-codemirror": { -- "version": "2.0.8", -+ "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser": { -+ "version": "3.2.4", -+ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", -+ "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", - "dev": true, -- "license": "ISC", - "dependencies": { -- "q": "^1.5.1" -+ "is-text-path": "^1.0.1", -+ "JSONStream": "^1.0.4", -+ "lodash": "^4.17.15", -+ "meow": "^8.0.0", -+ "split2": "^3.0.0", -+ "through2": "^4.0.0" -+ }, -+ "bin": { -+ "conventional-commits-parser": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-config-spec": { -- "version": "2.1.0", -+ "node_modules/conventional-recommended-bump/node_modules/dargs": { -+ "version": "7.0.0", -+ "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", -+ "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", - "dev": true, -- "license": "MIT" -+ "engines": { -+ "node": ">=8" -+ } - }, -- "node_modules/conventional-changelog-conventionalcommits": { -- "version": "4.6.1", -+ "node_modules/conventional-recommended-bump/node_modules/find-up": { -+ "version": "4.1.0", -+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", -+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, -- "license": "ISC", - "dependencies": { -- "compare-func": "^2.0.0", -- "lodash": "^4.17.15", -- "q": "^1.5.1" -+ "locate-path": "^5.0.0", -+ "path-exists": "^4.0.0" - }, - "engines": { -- "node": ">=10" -+ "node": ">=8" - } - }, -- "node_modules/conventional-changelog-core": { -- "version": "4.2.4", -+ "node_modules/conventional-recommended-bump/node_modules/git-raw-commits": { -+ "version": "2.0.11", -+ "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", -+ "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "add-stream": "^1.0.0", -- "conventional-changelog-writer": "^5.0.0", -- "conventional-commits-parser": "^3.2.0", -- "dateformat": "^3.0.0", -- "get-pkg-repo": "^4.0.0", -- "git-raw-commits": "^2.0.8", -- "git-remote-origin-url": "^2.0.0", -- "git-semver-tags": "^4.1.1", -+ "dargs": "^7.0.0", - "lodash": "^4.17.15", -- "normalize-package-data": "^3.0.0", -- "q": "^1.5.1", -- "read-pkg": "^3.0.0", -- "read-pkg-up": "^3.0.0", -+ "meow": "^8.0.0", -+ "split2": "^3.0.0", - "through2": "^4.0.0" - }, -+ "bin": { -+ "git-raw-commits": "cli.js" -+ }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-changelog-core/node_modules/lru-cache": { -- "version": "6.0.0", -+ "node_modules/conventional-recommended-bump/node_modules/is-text-path": { -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", -+ "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", - "dev": true, -- "license": "ISC", - "dependencies": { -- "yallist": "^4.0.0" -+ "text-extensions": "^1.0.0" -+ }, -+ "engines": { -+ "node": ">=0.10.0" -+ } -+ }, -+ "node_modules/conventional-recommended-bump/node_modules/locate-path": { -+ "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", -+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", -+ "dev": true, -+ "dependencies": { -+ "p-locate": "^4.1.0" -+ }, -+ "engines": { -+ "node": ">=8" -+ } -+ }, -+ "node_modules/conventional-recommended-bump/node_modules/meow": { ++ "node_modules/conventional-changelog-writer/node_modules/meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", -+ "dev": true, -+ "dependencies": { + "dev": true, +- "license": "ISC", ++ "license": "MIT", + "dependencies": { +- "brace-expansion": "^2.0.1" + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", @@ -9748,103 +9443,142 @@ index a38125e..a1067b0 100644 + "yargs-parser": "^20.2.3" }, "engines": { - "node": ">=10" -+ }, -+ "funding": { +- "node": ">=16 || 14 >=14.17" ++ "node": ">=10" + }, + "funding": { +- "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { -+ "node_modules/conventional-recommended-bump/node_modules/normalize-package-data": { - "version": "3.0.3", +- "node_modules/config-file-ts/node_modules/minipass": { +- "version": "7.1.1", ++ "node_modules/conventional-changelog-writer/node_modules/normalize-package-data": { ++ "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, -- "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", -@@ -6126,195 +6930,216 @@ - "node": ">=10" +- "license": "ISC", ++ "license": "BSD-2-Clause", ++ "dependencies": { ++ "hosted-git-info": "^4.0.1", ++ "is-core-module": "^2.5.0", ++ "semver": "^7.3.4", ++ "validate-npm-package-license": "^3.0.1" ++ }, + "engines": { +- "node": ">=16 || 14 >=14.17" ++ "node": ">=10" } }, -- "node_modules/conventional-changelog-core/node_modules/semver": { -- "version": "7.5.4", -+ "node_modules/conventional-recommended-bump/node_modules/p-limit": { +- "node_modules/config-file-ts/node_modules/typescript": { +- "version": "5.4.5", ++ "node_modules/conventional-changelog-writer/node_modules/normalize-package-data/node_modules/semver": { ++ "version": "7.6.3", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", ++ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, +- "license": "Apache-2.0", ++ "license": "ISC", + "bin": { +- "tsc": "bin/tsc", +- "tsserver": "bin/tsserver" ++ "semver": "bin/semver.js" + }, + "engines": { +- "node": ">=14.17" ++ "node": ">=10" + } + }, +- "node_modules/connect-history-api-fallback": { +- "version": "2.0.0", ++ "node_modules/conventional-changelog-writer/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, -- "license": "ISC", - "dependencies": { -- "lru-cache": "^6.0.0" -- }, -- "bin": { -- "semver": "bin/semver.js" + "license": "MIT", ++ "dependencies": { + "p-try": "^2.0.0" - }, ++ }, "engines": { -- "node": ">=10" +- "node": ">=0.8" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/conventional-changelog-core/node_modules/yallist": { -- "version": "4.0.0", -- "dev": true, -- "license": "ISC" -- }, -- "node_modules/conventional-changelog-ember": { -- "version": "2.0.9", -+ "node_modules/conventional-recommended-bump/node_modules/p-locate": { +- "node_modules/content-disposition": { +- "version": "0.5.4", ++ "node_modules/conventional-changelog-writer/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, -- "license": "ISC", + "license": "MIT", "dependencies": { -- "q": "^1.5.1" +- "safe-buffer": "5.2.1" + "p-limit": "^2.2.0" }, "engines": { -- "node": ">=10" +- "node": ">= 0.6" + "node": ">=8" } }, -- "node_modules/conventional-changelog-eslint": { -- "version": "3.0.9", -+ "node_modules/conventional-recommended-bump/node_modules/parse-json": { +- "node_modules/content-type": { +- "version": "1.0.5", ++ "node_modules/conventional-changelog-writer/node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, -- "license": "ISC", - "dependencies": { -- "q": "^1.5.1" + "license": "MIT", ++ "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" - }, ++ }, "engines": { -- "node": ">=10" +- "node": ">= 0.6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/conventional-changelog-express": { -- "version": "2.0.6", -+ "node_modules/conventional-recommended-bump/node_modules/path-exists": { +- "node_modules/conventional-changelog": { +- "version": "3.1.24", ++ "node_modules/conventional-changelog-writer/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, + "license": "MIT", +- "dependencies": { +- "conventional-changelog-angular": "^5.0.12", +- "conventional-changelog-atom": "^2.0.8", +- "conventional-changelog-codemirror": "^2.0.8", +- "conventional-changelog-conventionalcommits": "^4.5.0", +- "conventional-changelog-core": "^4.2.1", +- "conventional-changelog-ember": "^2.0.9", +- "conventional-changelog-eslint": "^3.0.9", +- "conventional-changelog-express": "^2.0.6", +- "conventional-changelog-jquery": "^3.0.11", +- "conventional-changelog-jshint": "^2.0.9", +- "conventional-changelog-preset-loader": "^2.3.4" +- }, +- "engines": { +- "node": ">=10" +- } +- }, +- "node_modules/conventional-changelog-angular": { +- "version": "5.0.13", +- "dev": true, - "license": "ISC", - "dependencies": { +- "compare-func": "^2.0.0", - "q": "^1.5.1" - }, "engines": { @@ -9852,14 +9586,15 @@ index a38125e..a1067b0 100644 + "node": ">=8" } }, -- "node_modules/conventional-changelog-jquery": { -- "version": "3.0.11", -+ "node_modules/conventional-recommended-bump/node_modules/read-pkg": { +- "node_modules/conventional-changelog-atom": { +- "version": "2.0.8", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "license": "ISC", ++ "license": "MIT", "dependencies": { - "q": "^1.5.1" + "@types/normalize-package-data": "^2.4.0", @@ -9872,16 +9607,16 @@ index a38125e..a1067b0 100644 + "node": ">=8" } }, -- "node_modules/conventional-changelog-jshint": { -- "version": "2.0.9", -+ "node_modules/conventional-recommended-bump/node_modules/read-pkg-up": { +- "node_modules/conventional-changelog-codemirror": { +- "version": "2.0.8", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "license": "ISC", ++ "license": "MIT", "dependencies": { -- "compare-func": "^2.0.0", - "q": "^1.5.1" + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", @@ -9889,39 +9624,228 @@ index a38125e..a1067b0 100644 }, "engines": { - "node": ">=10" +- } +- }, +- "node_modules/conventional-changelog-config-spec": { +- "version": "2.1.0", +- "dev": true, +- "license": "MIT" +- }, +- "node_modules/conventional-changelog-conventionalcommits": { +- "version": "4.6.1", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "compare-func": "^2.0.0", +- "lodash": "^4.17.15", +- "q": "^1.5.1" + "node": ">=8" -+ }, + }, +- "engines": { +- "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, -- "node_modules/conventional-changelog-preset-loader": { -- "version": "2.3.4", -+ "node_modules/conventional-recommended-bump/node_modules/read-pkg-up/node_modules/type-fest": { +- "node_modules/conventional-changelog-core": { +- "version": "4.2.4", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, - "license": "MIT", +- "dependencies": { +- "add-stream": "^1.0.0", +- "conventional-changelog-writer": "^5.0.0", +- "conventional-commits-parser": "^3.2.0", +- "dateformat": "^3.0.0", +- "get-pkg-repo": "^4.0.0", +- "git-raw-commits": "^2.0.8", +- "git-remote-origin-url": "^2.0.0", +- "git-semver-tags": "^4.1.1", +- "lodash": "^4.17.15", +- "normalize-package-data": "^3.0.0", +- "q": "^1.5.1", +- "read-pkg": "^3.0.0", +- "read-pkg-up": "^3.0.0", +- "through2": "^4.0.0" +- }, ++ "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=10" + "node": ">=8" } }, -- "node_modules/conventional-changelog-writer": { -- "version": "5.0.1", -+ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/hosted-git-info": { +- "node_modules/conventional-changelog-core/node_modules/lru-cache": { +- "version": "6.0.0", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", -+ "dev": true -+ }, -+ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/normalize-package-data": { + "dev": true, +- "license": "ISC", +- "dependencies": { +- "yallist": "^4.0.0" +- }, +- "engines": { +- "node": ">=10" +- } ++ "license": "ISC" + }, +- "node_modules/conventional-changelog-core/node_modules/normalize-package-data": { +- "version": "3.0.3", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, -- "license": "MIT", + "license": "BSD-2-Clause", + "dependencies": { +- "hosted-git-info": "^4.0.1", +- "is-core-module": "^2.5.0", +- "semver": "^7.3.4", ++ "hosted-git-info": "^2.1.4", ++ "resolve": "^1.10.0", ++ "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" +- }, +- "engines": { +- "node": ">=10" + } + }, +- "node_modules/conventional-changelog-core/node_modules/semver": { +- "version": "7.5.4", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/semver": { ++ "version": "5.7.2", ++ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", ++ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { +- "semver": "bin/semver.js" +- }, +- "engines": { +- "node": ">=10" ++ "semver": "bin/semver" + } + }, +- "node_modules/conventional-changelog-core/node_modules/yallist": { +- "version": "4.0.0", +- "dev": true, +- "license": "ISC" +- }, +- "node_modules/conventional-changelog-ember": { +- "version": "2.0.9", ++ "node_modules/conventional-changelog-writer/node_modules/read-pkg/node_modules/type-fest": { ++ "version": "0.6.0", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", ++ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "q": "^1.5.1" +- }, ++ "license": "(MIT OR CC0-1.0)", + "engines": { +- "node": ">=10" ++ "node": ">=8" + } + }, +- "node_modules/conventional-changelog-eslint": { +- "version": "3.0.9", ++ "node_modules/conventional-changelog-writer/node_modules/type-fest": { ++ "version": "0.18.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", ++ "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, +- "license": "ISC", +- "dependencies": { +- "q": "^1.5.1" +- }, ++ "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/conventional-changelog-express": { +- "version": "2.0.6", ++ "node_modules/conventional-changelog-writer/node_modules/yargs-parser": { ++ "version": "20.2.9", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", ++ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "license": "ISC", +- "dependencies": { +- "q": "^1.5.1" +- }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-jquery": { +- "version": "3.0.11", ++ "node_modules/conventional-changelog/node_modules/conventional-changelog-angular": { ++ "version": "5.0.13", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", ++ "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", + "dev": true, + "license": "ISC", + "dependencies": { ++ "compare-func": "^2.0.0", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-jshint": { +- "version": "2.0.9", ++ "node_modules/conventional-changelog/node_modules/conventional-changelog-conventionalcommits": { ++ "version": "4.6.3", ++ "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz", ++ "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==", + "dev": true, + "license": "ISC", + "dependencies": { + "compare-func": "^2.0.0", ++ "lodash": "^4.17.15", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-preset-loader": { +- "version": "2.3.4", ++ "node_modules/conventional-commits-filter": { ++ "version": "2.0.7", ++ "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", ++ "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", + "dev": true, + "license": "MIT", ++ "dependencies": { ++ "lodash.ismatch": "^4.4.0", ++ "modify-values": "^1.0.0" ++ }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-changelog-writer": { +- "version": "5.0.1", ++ "node_modules/conventional-commits-parser": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", ++ "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", + "dev": true, + "license": "MIT", "dependencies": { - "conventional-commits-filter": "^2.0.7", - "dateformat": "^3.0.0", @@ -9932,7 +9856,311 @@ index a38125e..a1067b0 100644 - "semver": "^6.0.0", - "split": "^1.0.0", - "through2": "^4.0.0" -- }, ++ "is-text-path": "^2.0.0", ++ "JSONStream": "^1.3.5", ++ "meow": "^12.0.1", ++ "split2": "^4.0.0" + }, + "bin": { +- "conventional-changelog-writer": "cli.js" ++ "conventional-commits-parser": "cli.mjs" + }, + "engines": { +- "node": ">=10" ++ "node": ">=16" + } + }, +- "node_modules/conventional-commits-filter": { +- "version": "2.0.7", ++ "node_modules/conventional-recommended-bump": { ++ "version": "6.1.0", ++ "resolved": "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz", ++ "integrity": "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==", + "dev": true, + "license": "MIT", + "dependencies": { +- "lodash.ismatch": "^4.4.0", +- "modify-values": "^1.0.0" ++ "concat-stream": "^2.0.0", ++ "conventional-changelog-preset-loader": "^2.3.4", ++ "conventional-commits-filter": "^2.0.7", ++ "conventional-commits-parser": "^3.2.0", ++ "git-raw-commits": "^2.0.8", ++ "git-semver-tags": "^4.1.1", ++ "meow": "^8.0.0", ++ "q": "^1.5.1" ++ }, ++ "bin": { ++ "conventional-recommended-bump": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/conventional-commits-parser": { ++ "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser": { + "version": "3.2.4", ++ "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", ++ "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", + "dev": true, + "license": "MIT", + "dependencies": { +@@ -6262,59 +7388,348 @@ + "node": ">=10" + } + }, +- "node_modules/conventional-commits-parser/node_modules/split2": { +- "version": "3.2.2", ++ "node_modules/conventional-recommended-bump/node_modules/dargs": { ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", ++ "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true, +- "license": "ISC", ++ "license": "MIT", ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/find-up": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", ++ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", ++ "dev": true, ++ "license": "MIT", + "dependencies": { +- "readable-stream": "^3.0.0" ++ "locate-path": "^5.0.0", ++ "path-exists": "^4.0.0" ++ }, ++ "engines": { ++ "node": ">=8" + } + }, +- "node_modules/conventional-recommended-bump": { +- "version": "6.1.0", ++ "node_modules/conventional-recommended-bump/node_modules/git-raw-commits": { ++ "version": "2.0.11", ++ "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", ++ "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, + "license": "MIT", + "dependencies": { +- "concat-stream": "^2.0.0", +- "conventional-changelog-preset-loader": "^2.3.4", +- "conventional-commits-filter": "^2.0.7", +- "conventional-commits-parser": "^3.2.0", +- "git-raw-commits": "^2.0.8", +- "git-semver-tags": "^4.1.1", ++ "dargs": "^7.0.0", ++ "lodash": "^4.17.15", + "meow": "^8.0.0", +- "q": "^1.5.1" ++ "split2": "^3.0.0", ++ "through2": "^4.0.0" + }, + "bin": { +- "conventional-recommended-bump": "cli.js" ++ "git-raw-commits": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/convert-source-map": { +- "version": "2.0.0", +- "license": "MIT", +- "peer": true +- }, +- "node_modules/cookie": { +- "version": "0.6.0", ++ "node_modules/conventional-recommended-bump/node_modules/is-text-path": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", ++ "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, + "license": "MIT", ++ "dependencies": { ++ "text-extensions": "^1.0.0" ++ }, + "engines": { +- "node": ">= 0.6" ++ "node": ">=0.10.0" + } + }, +- "node_modules/cookie-signature": { +- "version": "1.0.6", ++ "node_modules/conventional-recommended-bump/node_modules/locate-path": { ++ "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", ++ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "p-locate": "^4.1.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/meow": { ++ "version": "8.1.2", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", ++ "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "@types/minimist": "^1.2.0", ++ "camelcase-keys": "^6.2.2", ++ "decamelize-keys": "^1.1.0", ++ "hard-rejection": "^2.1.0", ++ "minimist-options": "4.1.0", ++ "normalize-package-data": "^3.0.0", ++ "read-pkg-up": "^7.0.1", ++ "redent": "^3.0.0", ++ "trim-newlines": "^3.0.0", ++ "type-fest": "^0.18.0", ++ "yargs-parser": "^20.2.3" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/normalize-package-data": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", ++ "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", ++ "dev": true, ++ "license": "BSD-2-Clause", ++ "dependencies": { ++ "hosted-git-info": "^4.0.1", ++ "is-core-module": "^2.5.0", ++ "semver": "^7.3.4", ++ "validate-npm-package-license": "^3.0.1" ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/p-limit": { ++ "version": "2.3.0", ++ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", ++ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "p-try": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=6" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/p-locate": { ++ "version": "4.1.0", ++ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", ++ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "p-limit": "^2.2.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/parse-json": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", ++ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "@babel/code-frame": "^7.0.0", ++ "error-ex": "^1.3.1", ++ "json-parse-even-better-errors": "^2.3.0", ++ "lines-and-columns": "^1.1.6" ++ }, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/path-exists": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", ++ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", ++ "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg": { ++ "version": "5.2.0", ++ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", ++ "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "@types/normalize-package-data": "^2.4.0", ++ "normalize-package-data": "^2.5.0", ++ "parse-json": "^5.0.0", ++ "type-fest": "^0.6.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg-up": { ++ "version": "7.0.1", ++ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", ++ "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "find-up": "^4.1.0", ++ "read-pkg": "^5.2.0", ++ "type-fest": "^0.8.1" ++ }, ++ "engines": { ++ "node": ">=8" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg-up/node_modules/type-fest": { ++ "version": "0.8.1", ++ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", ++ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", ++ "dev": true, ++ "license": "(MIT OR CC0-1.0)", ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/hosted-git-info": { ++ "version": "2.8.9", ++ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", ++ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", ++ "dev": true, ++ "license": "ISC" ++ }, ++ "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/normalize-package-data": { ++ "version": "2.5.0", ++ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", ++ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", ++ "dev": true, ++ "license": "BSD-2-Clause", ++ "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", @@ -9944,86 +10172,50 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, - "bin": { -- "conventional-changelog-writer": "cli.js" -- }, -- "engines": { -- "node": ">=10" ++ "license": "ISC", ++ "bin": { + "semver": "bin/semver" - } - }, -- "node_modules/conventional-commits-filter": { -- "version": "2.0.7", ++ } ++ }, + "node_modules/conventional-recommended-bump/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, -- "license": "MIT", -- "dependencies": { -- "lodash.ismatch": "^4.4.0", -- "modify-values": "^1.0.0" -- }, - "engines": { -- "node": ">=10" ++ "dev": true, ++ "license": "(MIT OR CC0-1.0)", ++ "engines": { + "node": ">=8" - } - }, -- "node_modules/conventional-commits-parser": { -- "version": "3.2.4", ++ } ++ }, + "node_modules/conventional-recommended-bump/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "dev": true, -- "license": "MIT", -- "dependencies": { -- "is-text-path": "^1.0.1", -- "JSONStream": "^1.0.4", -- "lodash": "^4.17.15", -- "meow": "^8.0.0", -- "split2": "^3.0.0", -- "through2": "^4.0.0" -- }, - "bin": { -- "conventional-commits-parser": "cli.js" ++ "dev": true, ++ "license": "ISC", ++ "bin": { + "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, -- "node_modules/conventional-commits-parser/node_modules/split2": { ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, + "node_modules/conventional-recommended-bump/node_modules/split2": { - "version": "3.2.2", ++ "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", - "dev": true, -- "license": "ISC", - "dependencies": { - "readable-stream": "^3.0.0" - } - }, -- "node_modules/conventional-recommended-bump": { -- "version": "6.1.0", ++ "dev": true, ++ "license": "ISC", ++ "dependencies": { ++ "readable-stream": "^3.0.0" ++ } ++ }, + "node_modules/conventional-recommended-bump/node_modules/text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", - "dev": true, -- "license": "MIT", -- "dependencies": { -- "concat-stream": "^2.0.0", -- "conventional-changelog-preset-loader": "^2.3.4", -- "conventional-commits-filter": "^2.0.7", -- "conventional-commits-parser": "^3.2.0", -- "git-raw-commits": "^2.0.8", -- "git-semver-tags": "^4.1.1", -- "meow": "^8.0.0", -- "q": "^1.5.1" -- }, -- "bin": { -- "conventional-recommended-bump": "cli.js" ++ "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=0.10" + } @@ -10033,9 +10225,10 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, ++ "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" - }, ++ }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } @@ -10045,34 +10238,34 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", -- "license": "MIT", ++ "license": "ISC", ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/convert-source-map": { ++ "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "peer": true - }, - "node_modules/cookie": { - "version": "0.6.0", -+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", -+ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", -- "dev": true, -- "license": "MIT" ++ "license": "MIT", ++ "peer": true ++ }, ++ "node_modules/cookie": { ++ "version": "0.7.1", ++ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", ++ "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", ++ "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": ">= 0.6" ++ } ++ }, ++ "node_modules/cookie-signature": { ++ "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/core-js-compat": { - "version": "3.33.3", @@ -10080,20 +10273,20 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "browserslist": "^4.22.1" + "browserslist": "^4.23.3" }, "funding": { "type": "opencollective", -@@ -6323,10 +7148,13 @@ +@@ -6323,10 +7738,14 @@ }, "node_modules/core-util-is": { "version": "1.0.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", -+ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" ++ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "license": "MIT" }, "node_modules/cpu-features": { "version": "0.0.10", @@ -10102,7 +10295,7 @@ index a38125e..a1067b0 100644 "hasInstallScript": true, "dependencies": { "buildcheck": "~0.0.6", -@@ -6336,10 +7164,21 @@ +@@ -6336,8 +7755,21 @@ "node": ">=10.0.0" } }, @@ -10111,6 +10304,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "dev": true, ++ "license": "MIT", + "optional": true, + "dependencies": { + "buffer": "^5.1.0" @@ -10121,72 +10315,63 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "peer": true, - "bin": { - "crc32": "bin/crc32.njs" -@@ -6350,8 +7189,9 @@ +@@ -6350,6 +7782,8 @@ }, "node_modules/crc32-stream": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz", + "integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "dependencies": { - "crc-32": "^1.2.0", -@@ -6363,12 +7203,14 @@ +@@ -6363,11 +7797,15 @@ }, "node_modules/create-require": { "version": "1.1.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cross-env": { "version": "7.0.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "license": "MIT", "dependencies": { "cross-spawn": "^7.0.1" - }, -@@ -6384,7 +7226,8 @@ +@@ -6384,6 +7822,8 @@ }, "node_modules/cross-spawn": { "version": "7.0.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", "dependencies": { "path-key": "^3.1.0", - "shebang-command": "^2.0.0", -@@ -6395,16 +7238,18 @@ +@@ -6395,7 +7835,9 @@ } }, "node_modules/css-functions-list": { - "version": "3.2.1", -+ "version": "3.2.2", -+ "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.2.tgz", -+ "integrity": "sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==", ++ "version": "3.2.3", ++ "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.3.tgz", ++ "integrity": "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=12 || >=16" - } +@@ -6404,6 +7846,8 @@ }, "node_modules/css-loader": { "version": "6.5.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz", + "integrity": "sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==", + "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", - "postcss": "^8.2.15", -@@ -6426,22 +7271,10 @@ +@@ -6426,22 +7870,11 @@ "webpack": "^5.0.0" } }, @@ -10202,17 +10387,17 @@ index a38125e..a1067b0 100644 - }, "node_modules/css-loader/node_modules/semver": { - "version": "7.5.4", -- "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, "bin": { "semver": "bin/semver.js" }, -@@ -6449,13 +7282,10 @@ +@@ -6449,12 +7882,10 @@ "node": ">=10" } }, @@ -10222,84 +10407,81 @@ index a38125e..a1067b0 100644 - }, "node_modules/css-select": { "version": "4.3.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", - "css-what": "^6.0.1", -@@ -6469,7 +7299,8 @@ +@@ -6469,6 +7900,8 @@ }, "node_modules/css-select/node_modules/dom-serializer": { "version": "1.4.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", -@@ -6481,7 +7312,8 @@ +@@ -6481,6 +7914,8 @@ }, "node_modules/css-select/node_modules/domhandler": { "version": "4.3.1", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" - }, -@@ -6494,7 +7326,8 @@ +@@ -6494,6 +7929,8 @@ }, "node_modules/css-select/node_modules/domutils": { "version": "2.8.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", -@@ -6506,15 +7339,17 @@ +@@ -6506,6 +7943,8 @@ }, "node_modules/css-select/node_modules/entities": { "version": "2.2.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" - } +@@ -6513,6 +7952,8 @@ }, "node_modules/css-tree": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" -@@ -6525,7 +7360,8 @@ +@@ -6525,6 +7966,8 @@ }, "node_modules/css-what": { "version": "6.1.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", "engines": { "node": ">= 6" - }, -@@ -6535,7 +7371,8 @@ +@@ -6535,6 +7978,8 @@ }, "node_modules/cssesc": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", "bin": { "cssesc": "bin/cssesc" - }, -@@ -6549,24 +7386,81 @@ - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" +@@ -6546,42 +7991,108 @@ + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", +- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" ++ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", ++ "license": "MIT" }, "node_modules/dargs": { - "version": "7.0.0", @@ -10307,29 +10489,42 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/dargs/-/dargs-8.1.0.tgz", + "integrity": "sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, + } + }, +- "node_modules/dateformat": { +- "version": "3.0.3", + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", -+ "dev": true, -+ "dependencies": { + "dev": true, + "license": "MIT", +- "engines": { +- "node": "*" +- } +- }, +- "node_modules/debounce-fn": { +- "version": "4.0.0", +- "license": "MIT", + "dependencies": { +- "mimic-fn": "^3.0.0" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">=10" + "node": ">= 0.4" -+ }, -+ "funding": { + }, + "funding": { +- "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" + } + }, @@ -10338,6 +10533,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", @@ -10355,6 +10551,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", @@ -10365,118 +10562,116 @@ index a38125e..a1067b0 100644 + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/dateformat": { - "version": "3.0.3", ++ } ++ }, ++ "node_modules/dateformat": { ++ "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", - "dev": true, -- "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/debounce-fn": { - "version": "4.0.0", -- "license": "MIT", ++ "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": "*" ++ } ++ }, ++ "node_modules/debounce-fn": { ++ "version": "4.0.0", + "resolved": "https://registry.npmjs.org/debounce-fn/-/debounce-fn-4.0.0.tgz", + "integrity": "sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==", - "dependencies": { - "mimic-fn": "^3.0.0" - }, -@@ -6578,8 +7472,9 @@ ++ "license": "MIT", ++ "dependencies": { ++ "mimic-fn": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/debug": { - "version": "4.3.4", -- "license": "MIT", -+ "version": "4.3.6", -+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", -+ "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", ++ "version": "4.3.7", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", ++ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "license": "MIT", "dependencies": { - "ms": "2.1.2" +- "ms": "2.1.2" ++ "ms": "^2.1.3" }, -@@ -6594,16 +7489,18 @@ + "engines": { + "node": ">=6.0" +@@ -6594,6 +8105,8 @@ }, "node_modules/decamelize": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } +@@ -6602,6 +8115,8 @@ }, "node_modules/decamelize-keys": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" -@@ -6617,15 +7514,17 @@ +@@ -6617,6 +8132,8 @@ }, "node_modules/decamelize-keys/node_modules/map-obj": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } +@@ -6625,6 +8142,8 @@ }, "node_modules/decompress-response": { "version": "6.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "license": "MIT", "dependencies": { "mimic-response": "^3.1.0" - }, -@@ -6638,7 +7537,8 @@ +@@ -6638,6 +8157,8 @@ }, "node_modules/decompress-response/node_modules/mimic-response": { "version": "3.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "license": "MIT", "engines": { "node": ">=10" - }, -@@ -6648,20 +7548,23 @@ +@@ -6648,6 +8169,8 @@ }, "node_modules/deep-extend": { "version": "0.6.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", "engines": { "node": ">=4.0.0" - } +@@ -6655,11 +8178,15 @@ }, "node_modules/deep-is": { "version": "0.1.4", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/default-gateway": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "dependencies": { - "execa": "^5.0.0" - }, -@@ -6669,38 +7572,128 @@ +@@ -6669,28 +8196,127 @@ "node": ">= 10" } }, @@ -10485,6 +10680,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", @@ -10508,6 +10704,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=10" + }, @@ -10520,6 +10717,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, ++ "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } @@ -10529,6 +10727,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=8" + }, @@ -10541,6 +10740,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, @@ -10552,22 +10752,24 @@ index a38125e..a1067b0 100644 + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", -+ "dev": true ++ "dev": true, ++ "license": "ISC" + }, + "node_modules/default-gateway/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/defer-to-connect": { "version": "2.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "license": "MIT", "engines": { "node": ">=10" } @@ -10578,7 +10780,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", @@ -10599,215 +10801,195 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - } +@@ -6699,6 +8325,8 @@ }, "node_modules/define-properties": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", -@@ -6715,31 +7708,35 @@ +@@ -6715,6 +8343,8 @@ }, "node_modules/delayed-stream": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.4.0" - } +@@ -6723,6 +8353,8 @@ }, "node_modules/denque": { "version": "2.1.0", -- "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "license": "Apache-2.0", "engines": { "node": ">=0.10" - } +@@ -6730,6 +8362,8 @@ }, "node_modules/depd": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8" - } +@@ -6738,6 +8372,8 @@ }, "node_modules/destroy": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" -@@ -6747,49 +7744,56 @@ +@@ -6747,6 +8383,8 @@ }, "node_modules/detect-indent": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" +@@ -6754,7 +8392,9 @@ } }, "node_modules/detect-libc": { - "version": "2.0.2", -- "license": "Apache-2.0", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "license": "Apache-2.0", "engines": { "node": ">=8" - } +@@ -6762,6 +8402,8 @@ }, "node_modules/detect-newline": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - } +@@ -6770,16 +8412,22 @@ }, "node_modules/detect-node": { "version": "2.1.0", -- "devOptional": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", -+ "devOptional": true + "devOptional": true, + "license": "MIT" }, "node_modules/didyoumean": { "version": "1.2.2", -- "dev": true, -- "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", -+ "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/diff": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, -- "license": "BSD-3-Clause", + "license": "BSD-3-Clause", "engines": { - "node": ">=0.3.1" - } +@@ -6788,6 +8436,8 @@ }, "node_modules/dir-compare": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-3.3.0.tgz", + "integrity": "sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "buffer-equal": "^1.0.0", - "minimatch": "^3.0.4" -@@ -6797,8 +7801,9 @@ +@@ -6797,6 +8447,8 @@ }, "node_modules/dir-compare/node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -@@ -6806,8 +7811,9 @@ +@@ -6806,6 +8458,8 @@ }, "node_modules/dir-compare/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -6817,8 +7823,9 @@ +@@ -6817,6 +8471,8 @@ }, "node_modules/dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "path-type": "^4.0.0" - }, -@@ -6828,12 +7835,14 @@ +@@ -6828,10 +8484,14 @@ }, "node_modules/discontinuous-range": { "version": "1.0.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", -+ "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" ++ "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==", + "license": "MIT" }, "node_modules/dmg-builder": { "version": "24.13.3", + "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-24.13.3.tgz", + "integrity": "sha512-rcJUkMfnJpfCboZoOOPf4L29TRtEieHNOeAbYPWPxlaBw/Z1RKrRA86dOI9rwaI4tQSc/RD82zTNHprfUHXsoQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "app-builder-lib": "24.13.3", - "builder-util": "24.13.1", -@@ -6848,8 +7857,9 @@ +@@ -6848,6 +8508,8 @@ }, "node_modules/dmg-builder/node_modules/fs-extra": { "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -6861,8 +7871,9 @@ +@@ -6861,6 +8523,8 @@ }, "node_modules/dmg-builder/node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "universalify": "^2.0.0" - }, -@@ -6872,21 +7883,68 @@ +@@ -6872,19 +8536,71 @@ }, "node_modules/dmg-builder/node_modules/universalify": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", -+ "dev": true, -+ "engines": { -+ "node": ">= 10.0.0" -+ } -+ }, + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, +- "node_modules/dns-equal": { +- "version": "1.0.0", + "node_modules/dmg-license": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", + "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", -+ "dev": true, + "dev": true, +- "license": "MIT" ++ "license": "MIT", + "optional": true, + "os": [ + "darwin" @@ -10833,10 +11015,8 @@ index a38125e..a1067b0 100644 + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">= 10.0.0" ++ "dev": true, ++ "license": "MIT", + "optional": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", @@ -10847,16 +11027,14 @@ index a38125e..a1067b0 100644 + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" - } - }, -- "node_modules/dns-equal": { -- "version": "1.0.0", ++ } ++ }, + "node_modules/dmg-license/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, -- "license": "MIT" ++ "dev": true, ++ "license": "MIT", + "optional": true }, "node_modules/dns-packet": { @@ -10864,41 +11042,36 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, -@@ -6896,8 +7954,9 @@ +@@ -6896,6 +8612,8 @@ }, "node_modules/doctrine": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "esutils": "^2.0.2" - }, -@@ -6907,14 +7966,16 @@ +@@ -6907,6 +8625,8 @@ }, "node_modules/dom-converter": { "version": "0.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "license": "MIT", "dependencies": { "utila": "~0.4" - } +@@ -6914,6 +8634,8 @@ }, "node_modules/dom-serializer": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", -@@ -6926,17 +7987,19 @@ +@@ -6926,6 +8648,8 @@ }, "node_modules/domelementtype": { "version": "2.3.0", @@ -10907,49 +11080,43 @@ index a38125e..a1067b0 100644 "funding": [ { "type": "github", - "url": "https://github.com/sponsors/fb55" - } -- ], -- "license": "BSD-2-Clause" -+ ] +@@ -6936,6 +8660,8 @@ }, "node_modules/domhandler": { "version": "5.0.3", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" - }, -@@ -6949,7 +8012,8 @@ +@@ -6949,6 +8675,8 @@ }, "node_modules/domutils": { "version": "3.1.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", -@@ -6961,42 +8025,45 @@ +@@ -6961,6 +8689,8 @@ }, "node_modules/dot-case": { "version": "3.0.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "license": "MIT", "dependencies": { "no-case": "^3.0.4", - "tslib": "^2.0.3" +@@ -6968,20 +8698,22 @@ } }, "node_modules/dot-prop": { - "version": "6.0.1", -- "license": "MIT", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "license": "MIT", "dependencies": { "is-obj": "^2.0.0" }, @@ -10966,95 +11133,79 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz", + "integrity": "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "engines": { - "node": ">=10" - } +@@ -6990,11 +8722,15 @@ }, "node_modules/dotenv-expand": { "version": "5.1.0", -- "dev": true, -- "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", -+ "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/dotgitignore": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz", + "integrity": "sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "find-up": "^3.0.0", - "minimatch": "^3.0.4" -@@ -7007,8 +8074,9 @@ +@@ -7007,6 +8743,8 @@ }, "node_modules/dotgitignore/node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -@@ -7016,8 +8084,9 @@ +@@ -7016,6 +8754,8 @@ }, "node_modules/dotgitignore/node_modules/find-up": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "locate-path": "^3.0.0" - }, -@@ -7027,8 +8096,9 @@ +@@ -7027,6 +8767,8 @@ }, "node_modules/dotgitignore/node_modules/locate-path": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" -@@ -7039,8 +8109,9 @@ +@@ -7039,6 +8781,8 @@ }, "node_modules/dotgitignore/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -7050,8 +8121,9 @@ +@@ -7050,6 +8794,8 @@ }, "node_modules/dotgitignore/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-try": "^2.0.0" - }, -@@ -7064,8 +8136,9 @@ +@@ -7064,6 +8810,8 @@ }, "node_modules/dotgitignore/node_modules/p-locate": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-limit": "^2.0.0" - }, -@@ -7073,28 +8146,32 @@ +@@ -7073,26 +8821,34 @@ "node": ">=6" } }, @@ -11065,7 +11216,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=4" @@ -11073,30 +11224,26 @@ index a38125e..a1067b0 100644 }, "node_modules/eastasianwidth": { "version": "0.2.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/ee-first": { "version": "1.1.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/ejs": { "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "jake": "^10.8.5" - }, -@@ -7106,9 +8183,9 @@ +@@ -7106,10 +8862,11 @@ } }, "node_modules/electron": { @@ -11107,62 +11254,56 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/electron/-/electron-30.0.9.tgz", + "integrity": "sha512-ArxgdGHVu3o5uaP+Tqj8cJDvU03R6vrGrOqiMs7JXLnvQHMqXJIIxmFKQAIdJW8VoT3ac3hD21tA7cPO10RLow==", "hasInstallScript": true, ++ "license": "MIT", "dependencies": { "@electron/get": "^2.0.0", -@@ -7124,8 +8201,9 @@ + "@types/node": "^20.9.0", +@@ -7124,6 +8881,8 @@ }, "node_modules/electron-builder": { "version": "24.13.3", + "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-24.13.3.tgz", + "integrity": "sha512-yZSgVHft5dNVlo31qmJAe4BVKQfFdwpRw7sFp1iQglDRCDD6r22zfRJuZlhtB5gp9FHUxCMEoWGq10SkCnMAIg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "app-builder-lib": "24.13.3", - "builder-util": "24.13.1", -@@ -7149,8 +8227,9 @@ +@@ -7149,6 +8908,8 @@ }, "node_modules/electron-builder-squirrel-windows": { "version": "24.13.3", + "resolved": "https://registry.npmjs.org/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-24.13.3.tgz", + "integrity": "sha512-oHkV0iogWfyK+ah9ZIvMDpei1m9ZRpdXcvde1wTpra2U8AFDNNpqJdnin5z+PM1GbQ5BoaKCWas2HSjtR0HwMg==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "dependencies": { - "app-builder-lib": "24.13.3", -@@ -7161,8 +8240,9 @@ +@@ -7161,6 +8922,8 @@ }, "node_modules/electron-builder-squirrel-windows/node_modules/fs-extra": { "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "dependencies": { - "graceful-fs": "^4.2.0", -@@ -7175,8 +8255,9 @@ +@@ -7175,6 +8938,8 @@ }, "node_modules/electron-builder-squirrel-windows/node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "dependencies": { - "universalify": "^2.0.0" -@@ -7187,30 +8268,19 @@ +@@ -7187,6 +8952,8 @@ }, "node_modules/electron-builder-squirrel-windows/node_modules/universalify": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "engines": { +@@ -7194,21 +8961,10 @@ "node": ">= 10.0.0" } }, @@ -11184,29 +11325,25 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -7222,8 +8292,9 @@ +@@ -7222,6 +8978,8 @@ }, "node_modules/electron-builder/node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "universalify": "^2.0.0" - }, -@@ -7233,72 +8304,26 @@ +@@ -7233,63 +8991,18 @@ }, "node_modules/electron-builder/node_modules/universalify": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { "node": ">= 10.0.0" } @@ -11262,114 +11399,102 @@ index a38125e..a1067b0 100644 - }, "node_modules/electron-log": { - "version": "5.0.1", -- "license": "MIT", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/electron-log/-/electron-log-5.0.4.tgz", + "integrity": "sha512-h88rs4To/wa1LQm/sfik0+BEbLXRlSfzSt8baG4R2okitbCBdT2SMrg6WHo/MD6T75NCkLHkrjoXQEVGAcnI8w==", + "license": "MIT", "engines": { "node": ">= 14" - } +@@ -7297,6 +9010,8 @@ }, "node_modules/electron-publish": { "version": "24.13.1", + "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-24.13.1.tgz", + "integrity": "sha512-2ZgdEqJ8e9D17Hwp5LEq5mLQPjqU3lv/IALvgp+4W8VeNhryfGhYEQC/PgDPMrnWUp+l60Ou5SJLsu+k4mhQ8A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@types/fs-extra": "^9.0.11", - "builder-util": "24.13.1", -@@ -7311,8 +8336,9 @@ +@@ -7311,6 +9026,8 @@ }, "node_modules/electron-publish/node_modules/fs-extra": { "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -7324,8 +8350,9 @@ +@@ -7324,6 +9041,8 @@ }, "node_modules/electron-publish/node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "universalify": "^2.0.0" - }, -@@ -7335,15 +8362,17 @@ +@@ -7335,6 +9054,8 @@ }, "node_modules/electron-publish/node_modules/universalify": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 10.0.0" - } +@@ -7343,6 +9064,8 @@ }, "node_modules/electron-store": { "version": "8.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/electron-store/-/electron-store-8.1.0.tgz", + "integrity": "sha512-2clHg/juMjOH0GT9cQ6qtmIvK183B39ZXR0bUoPwKwYHJsEF3quqyDzMFUAu+0OP8ijmN2CbPRAelhNbWUbzwA==", + "license": "MIT", "dependencies": { "conf": "^10.2.0", - "type-fest": "^2.17.0" -@@ -7353,12 +8382,14 @@ +@@ -7353,11 +9076,15 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.594", -- "license": "ISC" -+ "version": "1.5.13", -+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", -+ "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==" ++ "version": "1.5.41", ++ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.41.tgz", ++ "integrity": "sha512-dfdv/2xNjX0P8Vzme4cfzHqnPm5xsZXwsolTYr0eyW18IUmNyG08vL+fttvinTfhKfIKdRoqkDIC9e9iWQCNYQ==", + "license": "ISC" }, "node_modules/electron-updater": { "version": "4.6.5", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/electron-updater/-/electron-updater-4.6.5.tgz", + "integrity": "sha512-kdTly8O9mSZfm9fslc1mnCY+mYOeaYRy7ERa2Fed240u01BKll3aiupzkd07qKw69KvhBSzuHroIW3mF0D8DWA==", + "license": "MIT", "dependencies": { "@types/semver": "^7.3.6", - "builder-util-runtime": "8.9.2", -@@ -7372,7 +8403,8 @@ +@@ -7372,6 +9099,8 @@ }, "node_modules/electron-updater/node_modules/builder-util-runtime": { "version": "8.9.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-8.9.2.tgz", + "integrity": "sha512-rhuKm5vh7E0aAmT6i8aoSfEjxzdYEFX7zDApK+eNgOhjofnWb74d9SRJv0H/8nsgOkos0TZ4zxW0P8J4N7xQ2A==", + "license": "MIT", "dependencies": { "debug": "^4.3.2", - "sax": "^1.2.4" -@@ -7383,7 +8415,8 @@ +@@ -7383,6 +9112,8 @@ }, "node_modules/electron-updater/node_modules/fs-extra": { "version": "10.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -7395,7 +8428,8 @@ +@@ -7395,6 +9126,8 @@ }, "node_modules/electron-updater/node_modules/jsonfile": { "version": "6.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", "dependencies": { "universalify": "^2.0.0" - }, -@@ -7403,22 +8437,10 @@ +@@ -7403,22 +9136,11 @@ "graceful-fs": "^4.1.6" } }, @@ -11385,23 +11510,23 @@ index a38125e..a1067b0 100644 - }, "node_modules/electron-updater/node_modules/semver": { - "version": "7.5.4", -- "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, "bin": { "semver": "bin/semver.js" }, -@@ -7428,18 +8450,16 @@ +@@ -7428,17 +9150,17 @@ }, "node_modules/electron-updater/node_modules/universalify": { "version": "2.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", "engines": { "node": ">= 10.0.0" } @@ -11412,21 +11537,20 @@ index a38125e..a1067b0 100644 - }, "node_modules/electron-window-state": { "version": "5.0.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/electron-window-state/-/electron-window-state-5.0.3.tgz", + "integrity": "sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==", + "license": "MIT", "dependencies": { "jsonfile": "^4.0.0", - "mkdirp": "^0.5.1" -@@ -7449,49 +8469,61 @@ +@@ -7449,26 +9171,40 @@ } }, "node_modules/electron/node_modules/@types/node": { - "version": "20.12.12", -- "license": "MIT", -+ "version": "20.16.1", -+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.16.1.tgz", -+ "integrity": "sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==", ++ "version": "20.16.13", ++ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.16.13.tgz", ++ "integrity": "sha512-GjQ7im10B0labo8ZGXDGROUl9k0BNyDgzfGpb4g/cl+4yYDWVKcozANF4FGr4/p0O/rAkQClM6Wiwkije++1Tg==", + "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" + "undici-types": "~6.19.2" @@ -11435,121 +11559,115 @@ index a38125e..a1067b0 100644 + "node_modules/electron/node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", -+ "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" ++ "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", ++ "license": "MIT" + }, "node_modules/emoji-regex": { "version": "8.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/encodeurl": { - "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", -+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", +- "version": "1.0.2", ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", ++ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8" - } +@@ -7477,6 +9213,8 @@ }, "node_modules/encoding": { "version": "0.1.13", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "license": "MIT", "dependencies": { "iconv-lite": "^0.6.2" - } +@@ -7484,13 +9222,17 @@ }, "node_modules/end-of-stream": { "version": "1.4.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/enhanced-resolve": { - "version": "5.16.1", -- "license": "MIT", + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" -@@ -7502,8 +8534,9 @@ +@@ -7502,6 +9244,8 @@ }, "node_modules/enquirer": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-colors": "^4.1.1", - "strip-ansi": "^6.0.1" -@@ -7514,7 +8547,8 @@ +@@ -7514,6 +9258,8 @@ }, "node_modules/entities": { "version": "4.5.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" - }, -@@ -7524,14 +8558,16 @@ +@@ -7524,13 +9270,17 @@ }, "node_modules/env-paths": { "version": "2.2.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/envinfo": { - "version": "7.11.0", -- "license": "MIT", -+ "version": "7.13.0", -+ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", -+ "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", ++ "version": "7.14.0", ++ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", ++ "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", + "license": "MIT", "bin": { "envinfo": "dist/cli.js" - }, -@@ -7541,61 +8577,71 @@ +@@ -7541,11 +9291,15 @@ }, "node_modules/err-code": { "version": "2.0.3", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/error-ex": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "is-arrayish": "^0.2.1" +@@ -7553,49 +9307,58 @@ } }, "node_modules/es-abstract": { @@ -11566,6 +11684,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", @@ -11638,15 +11757,18 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -7604,18 +8650,53 @@ +@@ -7604,18 +9367,58 @@ "url": "https://github.com/sponsors/ljharb" } }, +- "node_modules/es-module-lexer": { +- "version": "1.5.2", + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "devOptional": true, ++ "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, @@ -11659,36 +11781,37 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "devOptional": true, ++ "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, - "node_modules/es-module-lexer": { -- "version": "1.5.2", -- "license": "MIT" ++ "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", -+ "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" -+ }, ++ "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "license": "MIT" + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } - }, ++ }, "node_modules/es-set-tostringtag": { - "version": "2.0.2", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", @@ -11699,75 +11822,68 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -7623,16 +8704,18 @@ +@@ -7623,6 +9426,8 @@ }, "node_modules/es-shim-unscopables": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "hasown": "^2.0.0" - } +@@ -7631,6 +9436,8 @@ }, "node_modules/es-to-primitive": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", -@@ -7647,25 +8730,29 @@ +@@ -7647,11 +9454,15 @@ }, "node_modules/es6-error": { "version": "4.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "license": "MIT", "optional": true }, "node_modules/escalade": { - "version": "3.1.1", -- "license": "MIT", -+ "version": "3.1.2", -+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", -+ "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", ++ "version": "3.2.0", ++ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", ++ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" - } +@@ -7659,11 +9470,15 @@ }, "node_modules/escape-html": { "version": "1.0.3", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=10" - }, -@@ -7675,8 +8762,9 @@ +@@ -7675,6 +9490,9 @@ }, "node_modules/eslint": { "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", ++ "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.3", -@@ -7731,6 +8819,8 @@ +@@ -7731,6 +9549,8 @@ }, "node_modules/eslint-config-standard": { "version": "16.0.3", @@ -11776,141 +11892,117 @@ index a38125e..a1067b0 100644 "dev": true, "funding": [ { -@@ -7746,7 +8836,6 @@ - "url": "https://feross.org/support" - } - ], -- "license": "MIT", - "peerDependencies": { - "eslint": "^7.12.1", - "eslint-plugin-import": "^2.22.1", -@@ -7756,8 +8845,9 @@ +@@ -7756,6 +9576,8 @@ }, "node_modules/eslint-import-resolver-node": { "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", -@@ -7766,16 +8856,18 @@ +@@ -7766,6 +9588,8 @@ }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ms": "^2.1.1" +@@ -7773,7 +9597,9 @@ } }, "node_modules/eslint-module-utils": { - "version": "2.8.0", -+ "version": "2.8.2", -+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.2.tgz", -+ "integrity": "sha512-3XnC5fDyc8M4J2E8pt8pmSVRX2M+5yWMCfI/kDZwauQeFgzQOuhcRBFKjTeJagqgk4sFKxe1mvNVnaWwImx/Tg==", ++ "version": "2.12.0", ++ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", ++ "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "debug": "^3.2.7" - }, -@@ -7790,16 +8882,18 @@ +@@ -7790,6 +9616,8 @@ }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ms": "^2.1.1" - } +@@ -7798,6 +9626,8 @@ }, "node_modules/eslint-plugin-es": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", + "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" -@@ -7816,8 +8910,9 @@ +@@ -7816,6 +9646,8 @@ }, "node_modules/eslint-plugin-es/node_modules/eslint-utils": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, -@@ -7830,16 +8925,18 @@ +@@ -7830,6 +9662,8 @@ }, "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "engines": { - "node": ">=4" - } +@@ -7838,6 +9672,8 @@ }, "node_modules/eslint-plugin-import": { "version": "2.24.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz", + "integrity": "sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "array-includes": "^3.1.3", - "array.prototype.flat": "^1.2.4", -@@ -7866,52 +8963,125 @@ +@@ -7866,6 +9702,8 @@ }, "node_modules/eslint-plugin-import/node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } +@@ -7875,6 +9713,8 @@ }, -- "node_modules/eslint-plugin-import/node_modules/debug": { -- "version": "2.6.9", -+ "node_modules/eslint-plugin-import/node_modules/debug": { -+ "version": "2.6.9", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", -+ "dev": true, -+ "dependencies": { -+ "ms": "2.0.0" -+ } -+ }, -+ "node_modules/eslint-plugin-import/node_modules/doctrine": { -+ "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { +@@ -7883,6 +9723,8 @@ + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", -+ "dev": true, -+ "dependencies": { -+ "esutils": "^2.0.2" -+ }, -+ "engines": { -+ "node": ">=0.10.0" -+ } -+ }, + "dev": true, + "license": "Apache-2.0", + "dependencies": { +@@ -7892,8 +9734,37 @@ + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, @@ -11923,6 +12015,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" @@ -11931,179 +12024,148 @@ index a38125e..a1067b0 100644 + "node": ">=4" + } + }, -+ "node_modules/eslint-plugin-import/node_modules/minimatch": { -+ "version": "3.1.2", + "node_modules/eslint-plugin-import/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", -+ "dev": true, -+ "dependencies": { -+ "brace-expansion": "^1.1.7" -+ }, -+ "engines": { -+ "node": "*" -+ } -+ }, -+ "node_modules/eslint-plugin-import/node_modules/ms": { -+ "version": "2.0.0", + "dev": true, + "license": "ISC", + "dependencies": { +@@ -7905,11 +9776,61 @@ + }, + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true -+ }, + "dev": true, + "license": "MIT" + }, + "node_modules/eslint-plugin-import/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, -- "license": "MIT", - "dependencies": { -- "ms": "2.0.0" ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" - } - }, -- "node_modules/eslint-plugin-import/node_modules/doctrine": { -- "version": "2.1.0", ++ } ++ }, + "node_modules/eslint-plugin-import/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dev": true, -- "license": "Apache-2.0", - "dependencies": { -- "esutils": "^2.0.2" ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { + "p-limit": "^1.1.0" - }, - "engines": { -- "node": ">=0.10.0" ++ }, ++ "engines": { + "node": ">=4" - } - }, -- "node_modules/eslint-plugin-import/node_modules/minimatch": { -- "version": "3.1.2", ++ } ++ }, + "node_modules/eslint-plugin-import/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", - "dev": true, -- "license": "ISC", -- "dependencies": { -- "brace-expansion": "^1.1.7" -- }, - "engines": { -- "node": "*" ++ "dev": true, ++ "license": "MIT", ++ "engines": { + "node": ">=4" - } - }, -- "node_modules/eslint-plugin-import/node_modules/ms": { -- "version": "2.0.0", ++ } ++ }, + "node_modules/eslint-plugin-import/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, -- "license": "MIT" ++ "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=4" + } - }, ++ }, "node_modules/eslint-plugin-import/node_modules/pkg-up": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", + "integrity": "sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "find-up": "^2.1.0" - }, -@@ -7921,8 +9091,9 @@ +@@ -7921,6 +9842,8 @@ }, "node_modules/eslint-plugin-node": { "version": "11.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", + "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-plugin-es": "^3.0.0", - "eslint-utils": "^2.0.0", -@@ -7940,8 +9111,9 @@ +@@ -7940,6 +9863,8 @@ }, "node_modules/eslint-plugin-node/node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -@@ -7949,8 +9121,9 @@ +@@ -7949,6 +9874,8 @@ }, "node_modules/eslint-plugin-node/node_modules/eslint-utils": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, -@@ -7963,16 +9136,18 @@ +@@ -7963,6 +9890,8 @@ }, "node_modules/eslint-plugin-node/node_modules/eslint-visitor-keys": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "engines": { - "node": ">=4" - } +@@ -7971,6 +9900,8 @@ }, "node_modules/eslint-plugin-node/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -7982,8 +9157,9 @@ +@@ -7982,6 +9913,8 @@ }, "node_modules/eslint-plugin-promise": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-5.2.0.tgz", + "integrity": "sha512-SftLb1pUG01QYq2A/hGAWfDRXqYD82zE7j7TopDOyNdU+7SvvoXREls/+PRTY17vUXzXnZA/zfnyKgRH6x4JJw==", "dev": true, -- "license": "ISC", + "license": "ISC", "engines": { - "node": "^10.12.0 || >=12.0.0" - }, -@@ -7993,16 +9169,18 @@ +@@ -7993,6 +9926,8 @@ }, "node_modules/eslint-plugin-simple-import-sort": { "version": "10.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-10.0.0.tgz", + "integrity": "sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==", "dev": true, -- "license": "MIT", + "license": "MIT", "peerDependencies": { - "eslint": ">=5.0.0" - } +@@ -8001,6 +9936,8 @@ }, "node_modules/eslint-plugin-vue": { "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.0.3.tgz", + "integrity": "sha512-Rlhhy5ltzde0sRwSkqHuNePTXLMMaJ5+qsQubM4RYloYsQ8cXlnJT5MDaCzSirkGADipOHtmQXIbbPFAzUrADg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-utils": "^3.0.0", - "natural-compare": "^1.4.0", -@@ -8016,24 +9194,11 @@ +@@ -8016,24 +9953,12 @@ "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" } }, @@ -12124,14 +12186,14 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, -- "license": "ISC", + "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, -@@ -8041,14 +9206,10 @@ +@@ -8041,13 +9966,10 @@ "node": ">=10" } }, @@ -12142,41 +12204,37 @@ index a38125e..a1067b0 100644 - }, "node_modules/eslint-scope": { "version": "5.1.1", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" -@@ -8059,8 +9220,9 @@ +@@ -8059,6 +9981,8 @@ }, "node_modules/eslint-utils": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, -@@ -8076,32 +9238,52 @@ +@@ -8076,6 +10000,8 @@ }, "node_modules/eslint-visitor-keys": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "engines": { - "node": ">=10" - } +@@ -8084,14 +10010,35 @@ }, "node_modules/eslint/node_modules/@babel/code-frame": { "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { "@babel/highlight": "^7.10.4" } @@ -12186,6 +12244,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", @@ -12202,41 +12261,36 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "sprintf-js": "~1.0.2" - } +@@ -8100,6 +10047,8 @@ }, "node_modules/eslint/node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -@@ -8109,8 +9291,9 @@ +@@ -8109,6 +10058,8 @@ }, "node_modules/eslint/node_modules/eslint-utils": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, -@@ -8123,16 +9306,18 @@ +@@ -8123,6 +10074,8 @@ }, "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "engines": { - "node": ">=4" +@@ -8130,7 +10083,9 @@ } }, "node_modules/eslint/node_modules/globals": { @@ -12245,38 +12299,37 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "type-fest": "^0.20.2" - }, -@@ -8145,16 +9330,18 @@ +@@ -8145,6 +10100,8 @@ }, "node_modules/eslint/node_modules/ignore": { "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 4" - } +@@ -8153,6 +10110,8 @@ }, "node_modules/eslint/node_modules/js-yaml": { "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" -@@ -8163,21 +9350,17 @@ +@@ -8163,19 +10122,17 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/eslint/node_modules/lru-cache": { - "version": "6.0.0", -- "dev": true, ++ "node_modules/eslint/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" @@ -12284,22 +12337,16 @@ index a38125e..a1067b0 100644 - "engines": { - "node": ">=10" - } -+ "node_modules/eslint/node_modules/json-schema-traverse": { -+ "version": "0.4.1", -+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", -+ "dev": true ++ "license": "MIT" }, "node_modules/eslint/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -8186,12 +9369,10 @@ +@@ -8186,12 +10143,11 @@ } }, "node_modules/eslint/node_modules/semver": { @@ -12308,33 +12355,30 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, -- "license": "ISC", + "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, -@@ -8201,13 +9382,15 @@ +@@ -8201,11 +10157,15 @@ }, "node_modules/eslint/node_modules/sprintf-js": { "version": "1.0.3", -- "dev": true, -- "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", -+ "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, -- "license": "(MIT OR CC0-1.0)", + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=10" - }, -@@ -8215,15 +9398,11 @@ +@@ -8215,13 +10175,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, @@ -12348,32 +12392,27 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "dependencies": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", -@@ -8235,16 +9414,18 @@ +@@ -8235,6 +10192,8 @@ }, "node_modules/espree/node_modules/eslint-visitor-keys": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "engines": { - "node": ">=4" - } +@@ -8243,6 +10202,8 @@ }, "node_modules/esprima": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" -@@ -8254,9 +9435,10 @@ +@@ -8254,7 +10215,9 @@ } }, "node_modules/esquery": { @@ -12382,100 +12421,93 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, -- "license": "BSD-3-Clause", + "license": "BSD-3-Clause", "dependencies": { - "estraverse": "^5.1.0" - }, -@@ -8266,15 +9448,17 @@ +@@ -8266,6 +10229,8 @@ }, "node_modules/esquery/node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "engines": { - "node": ">=4.0" - } +@@ -8274,6 +10239,8 @@ }, "node_modules/esrecurse": { "version": "4.3.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" - }, -@@ -8284,76 +9468,102 @@ +@@ -8284,6 +10251,8 @@ }, "node_modules/esrecurse/node_modules/estraverse": { "version": "5.3.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" - } +@@ -8291,6 +10260,8 @@ }, "node_modules/estraverse": { "version": "4.3.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" - } +@@ -8298,10 +10269,14 @@ }, "node_modules/estree-walker": { "version": "2.0.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", -+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" ++ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" }, "node_modules/esutils": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "engines": { - "node": ">=0.10.0" - } +@@ -8310,6 +10285,8 @@ }, "node_modules/etag": { "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.6" - } +@@ -8318,42 +10295,68 @@ }, "node_modules/eventemitter3": { "version": "4.0.7", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/events": { "version": "3.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", "engines": { "node": ">=0.8.x" } }, "node_modules/execa": { - "version": "5.1.1", -- "license": "MIT", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", @@ -12504,12 +12536,12 @@ index a38125e..a1067b0 100644 }, - "node_modules/execa/node_modules/get-stream": { - "version": "6.0.1", -- "license": "MIT", + "node_modules/execa/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12" @@ -12523,6 +12555,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, @@ -12531,27 +12564,64 @@ index a38125e..a1067b0 100644 }, "funding": { "url": "https://github.com/sponsors/sindresorhus" -@@ -8361,15 +9571,17 @@ +@@ -8361,42 +10364,46 @@ }, "node_modules/expand-template": { "version": "2.0.3", -- "license": "(MIT OR WTFPL)", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "license": "(MIT OR WTFPL)", "engines": { "node": ">=6" } }, "node_modules/express": { - "version": "4.19.2", -+ "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", -+ "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", +- "version": "4.19.2", ++ "version": "4.21.1", ++ "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", ++ "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", -@@ -8407,28 +9619,26 @@ +- "body-parser": "1.20.2", ++ "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", +- "cookie": "0.6.0", ++ "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", +- "encodeurl": "~1.0.2", ++ "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", +- "finalhandler": "1.2.0", ++ "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", +- "merge-descriptors": "1.0.1", ++ "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", +- "path-to-regexp": "0.1.7", ++ "path-to-regexp": "0.1.10", + "proxy-addr": "~2.0.7", +- "qs": "6.11.0", ++ "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", +- "send": "0.18.0", +- "serve-static": "1.15.0", ++ "send": "0.19.0", ++ "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", +@@ -8407,13 +10414,10 @@ "node": ">= 0.10.0" } }, @@ -12565,50 +12635,43 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ms": "2.0.0" - } +@@ -8422,11 +10426,15 @@ }, "node_modules/express/node_modules/ms": { "version": "2.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/external-editor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", -@@ -8440,8 +9650,9 @@ +@@ -8440,6 +10448,8 @@ }, "node_modules/external-editor/node_modules/iconv-lite": { "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, -@@ -8451,7 +9662,8 @@ +@@ -8451,6 +10461,8 @@ }, "node_modules/extract-zip": { "version": "2.0.1", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "license": "BSD-2-Clause", "dependencies": { "debug": "^4.1.1", - "get-stream": "^5.1.0", -@@ -8467,14 +9679,40 @@ +@@ -8467,12 +10479,42 @@ "@types/yauzl": "^2.9.1" } }, @@ -12616,6 +12679,7 @@ index a38125e..a1067b0 100644 + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", ++ "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, @@ -12634,49 +12698,48 @@ index a38125e..a1067b0 100644 + "engines": [ + "node >=0.6.0" + ], ++ "license": "MIT", + "optional": true + }, "node_modules/fast-deep-equal": { "version": "3.1.3", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", -+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" ++ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" }, "node_modules/fast-glob": { "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", -@@ -8488,32 +9726,42 @@ +@@ -8488,22 +10530,36 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", -+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" ++ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", -+ "dev": true -+ }, -+ "node_modules/fast-uri": { -+ "version": "3.0.1", -+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", -+ "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==" + "dev": true, + "license": "MIT" }, ++ "node_modules/fast-uri": { ++ "version": "3.0.3", ++ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", ++ "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", ++ "license": "BSD-3-Clause" ++ }, "node_modules/fastest-levenshtein": { "version": "1.0.16", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "license": "MIT", "engines": { "node": ">= 4.9.1" } @@ -12687,72 +12750,63 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "reusify": "^1.0.4" - } +@@ -8512,6 +10568,8 @@ }, "node_modules/faye-websocket": { "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "websocket-driver": ">=0.5.1" - }, -@@ -8523,15 +9771,17 @@ +@@ -8523,6 +10581,8 @@ }, "node_modules/fd-slicer": { "version": "1.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "license": "MIT", "dependencies": { "pend": "~1.2.0" - } +@@ -8530,6 +10590,8 @@ }, "node_modules/figures": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "escape-string-regexp": "^1.0.5" - }, -@@ -8544,16 +9794,18 @@ +@@ -8544,6 +10606,8 @@ }, "node_modules/figures/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.8.0" - } +@@ -8552,6 +10616,8 @@ }, "node_modules/file-entry-cache": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "flat-cache": "^3.0.4" - }, -@@ -8563,7 +9815,8 @@ +@@ -8563,6 +10629,8 @@ }, "node_modules/file-loader": { "version": "6.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" -@@ -8579,9 +9832,38 @@ +@@ -8579,8 +10647,41 @@ "webpack": "^4.0.0 || ^5.0.0" } }, @@ -12760,6 +12814,7 @@ index a38125e..a1067b0 100644 + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", @@ -12775,6 +12830,7 @@ index a38125e..a1067b0 100644 + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } @@ -12782,83 +12838,85 @@ index a38125e..a1067b0 100644 + "node_modules/file-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "license": "MIT" + }, "node_modules/file-loader/node_modules/schema-utils": { "version": "3.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", -@@ -8597,19 +9879,22 @@ +@@ -8597,10 +10698,14 @@ }, "node_modules/file-uri-to-path": { "version": "1.0.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", -+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" ++ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "license": "MIT" }, "node_modules/filelist": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "minimatch": "^5.0.1" +@@ -8608,7 +10713,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", -- "license": "MIT", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" - }, -@@ -8619,8 +9904,9 @@ +@@ -8618,12 +10725,14 @@ + } }, "node_modules/finalhandler": { - "version": "1.2.0", -+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", -+ "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", +- "version": "1.2.0", ++ "version": "1.3.1", ++ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", ++ "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { "debug": "2.6.9", - "encodeurl": "~1.0.2", -@@ -8636,20 +9922,23 @@ +- "encodeurl": "~1.0.2", ++ "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", +@@ -8636,6 +10745,8 @@ }, "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ms": "2.0.0" - } +@@ -8644,11 +10755,15 @@ }, "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/find-cache-dir": { "version": "3.3.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "license": "MIT", "dependencies": { "commondir": "^1.0.1", - "make-dir": "^3.0.2", -@@ -8663,27 +9952,35 @@ +@@ -8663,18 +10778,27 @@ } }, "node_modules/find-up": { @@ -12867,7 +12925,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz", + "integrity": "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "locate-path": "^2.0.0" + "locate-path": "^7.2.0", @@ -12884,70 +12942,60 @@ index a38125e..a1067b0 100644 }, "node_modules/flat": { "version": "5.0.2", -- "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "license": "BSD-3-Clause", "bin": { "flat": "cli.js" - } +@@ -8682,6 +10806,8 @@ }, "node_modules/flat-cache": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", -@@ -8694,13 +9991,15 @@ +@@ -8694,12 +10820,16 @@ } }, "node_modules/flatted": { - "version": "3.2.9", -- "dev": true, -- "license": "ISC" + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/floating-vue": { - "version": "2.0.0-beta.24", -- "license": "MIT", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/floating-vue/-/floating-vue-2.0.0.tgz", + "integrity": "sha512-YSffLYOjoaaPPBZc7VQR2qMCQ7xeXuh7i8a2u8WOdSmkjTtKtZpj2aaJnLtZRHmehrMHyCgtSxLu8jFNNX2sVw==", + "license": "MIT", "dependencies": { "@floating-ui/dom": "~1.1.1", - "vue-resize": "^2.0.0-alpha.1" -@@ -8717,6 +10016,8 @@ +@@ -8716,7 +10846,9 @@ + } }, "node_modules/follow-redirects": { - "version": "1.15.6", -+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", -+ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", +- "version": "1.15.6", ++ "version": "1.15.9", ++ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", ++ "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "dev": true, "funding": [ { -@@ -8724,7 +10025,6 @@ - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], -- "license": "MIT", - "engines": { - "node": ">=4.0" - }, -@@ -8736,16 +10036,18 @@ +@@ -8736,6 +10868,8 @@ }, "node_modules/for-each": { "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "is-callable": "^1.1.3" +@@ -8743,7 +10877,9 @@ } }, "node_modules/foreground-child": { @@ -12956,11 +13004,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" -@@ -8757,21 +10059,11 @@ +@@ -8757,19 +10893,10 @@ "url": "https://github.com/sponsors/isaacs" } }, @@ -12976,113 +13022,102 @@ index a38125e..a1067b0 100644 - } - }, "node_modules/form-data": { - "version": "4.0.0", -+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", -+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", +- "version": "4.0.0", ++ "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", ++ "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", -@@ -8783,24 +10075,27 @@ +@@ -8783,6 +10910,8 @@ }, "node_modules/forwarded": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.6" - } +@@ -8791,6 +10920,8 @@ }, "node_modules/fresh": { "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.6" - } +@@ -8799,6 +10930,8 @@ }, "node_modules/fs-access": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz", + "integrity": "sha512-05cXDIwNbFaoFWaz5gNHlUTbH5whiss/hr/ibzPd4MH3cR4w0ZKeIPiVdbyJurg3O5r/Bjpvn9KOb1/rPMf3nA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "null-check": "^1.0.0" - }, -@@ -8810,11 +10105,13 @@ +@@ -8810,10 +10943,14 @@ }, "node_modules/fs-constants": { "version": "1.0.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", -+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" ++ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "license": "MIT" }, "node_modules/fs-extra": { "version": "8.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", -@@ -8826,8 +10123,9 @@ +@@ -8826,6 +10963,8 @@ }, "node_modules/fs-minipass": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "minipass": "^3.0.0" - }, -@@ -8837,8 +10135,9 @@ +@@ -8837,6 +10976,8 @@ }, "node_modules/fs-minipass/node_modules/minipass": { "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "yallist": "^4.0.0" - }, -@@ -8848,29 +10147,47 @@ +@@ -8848,20 +10989,42 @@ }, "node_modules/fs-minipass/node_modules/yallist": { "version": "4.0.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/fs-monkey": { - "version": "1.0.5", -- "dev": true, -- "license": "Unlicense" + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==", -+ "dev": true + "dev": true, + "license": "Unlicense" }, "node_modules/fs.realpath": { "version": "1.0.0", -- "license": "ISC" + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", -+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" -+ }, ++ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, ++ "license": "MIT", + "optional": true, + "os": [ + "darwin" @@ -13090,72 +13125,67 @@ index a38125e..a1067b0 100644 + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } - }, ++ }, "node_modules/function-bind": { "version": "1.1.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" - } +@@ -8869,6 +11032,8 @@ }, "node_modules/function.prototype.name": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", -@@ -8886,27 +10203,31 @@ +@@ -8886,11 +11051,15 @@ }, "node_modules/functional-red-black-tree": { "version": "1.0.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/functions-have-names": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "funding": { - "url": "https://github.com/sponsors/ljharb" - } +@@ -8899,6 +11068,8 @@ }, "node_modules/generate-function": { "version": "2.3.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "license": "MIT", "dependencies": { "is-property": "^1.0.2" - } +@@ -8906,6 +11077,8 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", "peer": true, "engines": { - "node": ">=6.9.0" -@@ -8914,30 +10235,37 @@ +@@ -8914,6 +11087,8 @@ }, "node_modules/get-caller-file": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, -- "license": "ISC", + "license": "ISC", "engines": { - "node": "6.* || 8.* || >= 10.*" +@@ -8921,21 +11096,29 @@ } }, "node_modules/get-intrinsic": { @@ -13164,7 +13194,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "dependencies": { + "es-errors": "^1.3.0", "function-bind": "^1.1.2", @@ -13184,81 +13214,68 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz", + "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@hutson/parse-repository-url": "^3.0.0", - "hosted-git-info": "^4.0.0", -@@ -8953,8 +10281,9 @@ +@@ -8953,6 +11136,8 @@ }, "node_modules/get-pkg-repo/node_modules/cliui": { "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", -@@ -8963,13 +10292,15 @@ +@@ -8963,11 +11148,15 @@ }, "node_modules/get-pkg-repo/node_modules/isarray": { "version": "1.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/get-pkg-repo/node_modules/readable-stream": { "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", -@@ -8982,21 +10313,24 @@ +@@ -8982,11 +11171,15 @@ }, "node_modules/get-pkg-repo/node_modules/safe-buffer": { "version": "5.1.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/get-pkg-repo/node_modules/string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" - } +@@ -8995,6 +11188,8 @@ }, "node_modules/get-pkg-repo/node_modules/through2": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" -@@ -9004,8 +10338,9 @@ +@@ -9004,6 +11199,8 @@ }, "node_modules/get-pkg-repo/node_modules/wrap-ansi": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", -@@ -9018,18 +10353,11 @@ +@@ -9018,16 +11215,10 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, @@ -13275,11 +13292,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", -@@ -9043,9 +10371,19 @@ +@@ -9043,8 +11234,20 @@ "node": ">=10" } }, @@ -13288,31 +13303,31 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, ++ "license": "ISC", + "engines": { + "node": ">=10" + } + }, "node_modules/get-stdin": { "version": "8.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "license": "MIT", "engines": { "node": ">=10" - }, -@@ -9054,25 +10392,26 @@ +@@ -9054,25 +11257,28 @@ } }, "node_modules/get-stream": { - "version": "5.2.0", -- "license": "MIT", -- "dependencies": { -- "pump": "^3.0.0" -- }, + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "license": "MIT", +- "dependencies": { +- "pump": "^3.0.0" +- }, "engines": { - "node": ">=8" + "node": ">=16" @@ -13327,7 +13342,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" @@ -13337,7 +13352,7 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -9082,35 +10421,27 @@ +@@ -9082,33 +11288,27 @@ } }, "node_modules/git-raw-commits": { @@ -13346,7 +13361,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-4.0.0.tgz", + "integrity": "sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "dargs": "^7.0.0", - "lodash": "^4.17.15", @@ -13379,66 +13394,108 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "gitconfiglocal": "^1.0.0", - "pify": "^2.3.0" -@@ -9121,16 +10452,18 @@ +@@ -9121,6 +11321,8 @@ }, "node_modules/git-remote-origin-url/node_modules/pify": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } +@@ -9129,6 +11331,8 @@ }, "node_modules/git-semver-tags": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz", + "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "meow": "^8.0.0", - "semver": "^6.0.0" -@@ -9142,21 +10475,260 @@ +@@ -9142,102 +11346,81 @@ "node": ">=10" } }, +- "node_modules/gitconfiglocal": { +- "version": "1.0.0", + "node_modules/git-semver-tags/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", -+ "dev": true, -+ "dependencies": { + "dev": true, +- "license": "BSD", +- "dependencies": { +- "ini": "^1.3.2" +- } +- }, +- "node_modules/github-from-package": { +- "version": "0.0.0", +- "license": "MIT" +- }, +- "node_modules/glob": { +- "version": "7.2.3", +- "license": "ISC", ++ "license": "MIT", + "dependencies": { +- "fs.realpath": "^1.0.0", +- "inflight": "^1.0.4", +- "inherits": "2", +- "minimatch": "^3.1.1", +- "once": "^1.3.0", +- "path-is-absolute": "^1.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": "*" +- }, +- "funding": { +- "url": "https://github.com/sponsors/isaacs" + "node": ">=8" -+ } -+ }, + } + }, +- "node_modules/glob-parent": { +- "version": "5.1.2", +- "license": "ISC", + "node_modules/git-semver-tags/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, -+ "dependencies": { ++ "license": "MIT", + "dependencies": { +- "is-glob": "^4.0.1" + "p-locate": "^4.1.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">= 6" + "node": ">=8" -+ } -+ }, + } + }, +- "node_modules/glob-to-regexp": { +- "version": "0.4.1", +- "license": "BSD-2-Clause" +- }, +- "node_modules/glob/node_modules/brace-expansion": { +- "version": "1.1.11", + "node_modules/git-semver-tags/node_modules/meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "node_modules/glob/node_modules/minimatch": { +- "version": "3.1.2", +- "license": "ISC", +- "dependencies": { +- "brace-expansion": "^1.1.7" + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", @@ -13450,132 +13507,228 @@ index a38125e..a1067b0 100644 + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" -+ }, -+ "engines": { + }, + "engines": { +- "node": "*" +- } +- }, +- "node_modules/global-agent": { +- "version": "3.0.0", +- "license": "BSD-3-Clause", +- "optional": true, +- "dependencies": { +- "boolean": "^3.0.1", +- "es6-error": "^4.1.1", +- "matcher": "^3.0.0", +- "roarr": "^2.15.3", +- "semver": "^7.3.2", +- "serialize-error": "^7.0.1" + "node": ">=10" -+ }, + }, +- "engines": { +- "node": ">=10.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, + } + }, +- "node_modules/global-agent/node_modules/lru-cache": { +- "version": "6.0.0", +- "license": "ISC", +- "optional": true, + "node_modules/git-semver-tags/node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, -+ "dependencies": { ++ "license": "BSD-2-Clause", + "dependencies": { +- "yallist": "^4.0.0" + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" -+ }, -+ "engines": { -+ "node": ">=10" -+ } -+ }, + }, + "engines": { + "node": ">=10" + } + }, +- "node_modules/global-agent/node_modules/semver": { +- "version": "7.5.4", + "node_modules/git-semver-tags/node_modules/normalize-package-data/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, -+ "bin": { -+ "semver": "bin/semver.js" -+ }, -+ "engines": { -+ "node": ">=10" -+ } -+ }, + "license": "ISC", +- "optional": true, +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, + "bin": { + "semver": "bin/semver.js" + }, +@@ -9245,115 +11428,408 @@ + "node": ">=10" + } + }, +- "node_modules/global-agent/node_modules/yallist": { +- "version": "4.0.0", +- "license": "ISC", +- "optional": true +- }, +- "node_modules/global-directory": { +- "version": "4.0.1", + "node_modules/git-semver-tags/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", -+ "dev": true, -+ "dependencies": { + "dev": true, + "license": "MIT", + "dependencies": { +- "ini": "4.1.1" + "p-try": "^2.0.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">=18" + "node": ">=6" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/global-directory/node_modules/ini": { +- "version": "4.1.1", +- "dev": true, +- "license": "ISC", +- "engines": { +- "node": "^14.17.0 || ^16.13.0 || >=18.0.0" +- } +- }, +- "node_modules/global-modules": { +- "version": "2.0.0", + "node_modules/git-semver-tags/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", -+ "dev": true, -+ "dependencies": { + "dev": true, + "license": "MIT", + "dependencies": { +- "global-prefix": "^3.0.0" + "p-limit": "^2.2.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">=6" + "node": ">=8" -+ } -+ }, + } + }, +- "node_modules/global-prefix": { +- "version": "3.0.0", + "node_modules/git-semver-tags/node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", -+ "dev": true, -+ "dependencies": { + "dev": true, + "license": "MIT", + "dependencies": { +- "ini": "^1.3.5", +- "kind-of": "^6.0.2", +- "which": "^1.3.1" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">=6" +- } +- }, +- "node_modules/global-prefix/node_modules/which": { +- "version": "1.3.1", +- "dev": true, +- "license": "ISC", +- "dependencies": { +- "isexe": "^2.0.0" + "node": ">=8" -+ }, + }, +- "bin": { +- "which": "bin/which" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, + } + }, +- "node_modules/globals": { +- "version": "11.12.0", + "node_modules/git-semver-tags/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, -+ "engines": { + "license": "MIT", + "engines": { +- "node": ">=4" + "node": ">=8" -+ } -+ }, + } + }, +- "node_modules/globalthis": { +- "version": "1.0.3", +- "devOptional": true, + "node_modules/git-semver-tags/node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, -+ "dependencies": { + "license": "MIT", + "dependencies": { +- "define-properties": "^1.1.3" + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">= 0.4" +- }, +- "funding": { +- "url": "https://github.com/sponsors/ljharb" + "node": ">=8" -+ } -+ }, + } + }, +- "node_modules/globby": { +- "version": "11.1.0", + "node_modules/git-semver-tags/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", -+ "dev": true, -+ "dependencies": { + "dev": true, + "license": "MIT", + "dependencies": { +- "array-union": "^2.1.0", +- "dir-glob": "^3.0.1", +- "fast-glob": "^3.2.9", +- "ignore": "^5.2.0", +- "merge2": "^1.4.1", +- "slash": "^3.0.0" + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" -+ }, -+ "engines": { + }, + "engines": { +- "node": ">=10" + "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "node_modules/globjoin": { +- "version": "0.1.4", + "node_modules/git-semver-tags/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", -+ "dev": true, + "dev": true, +- "license": "MIT" ++ "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } @@ -13584,13 +13737,15 @@ index a38125e..a1067b0 100644 + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", -+ "dev": true ++ "dev": true, ++ "license": "ISC" + }, + "node_modules/git-semver-tags/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, ++ "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", @@ -13603,6 +13758,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, ++ "license": "ISC", + "bin": { + "semver": "bin/semver" + } @@ -13612,6 +13768,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, ++ "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } @@ -13621,6 +13778,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, ++ "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, @@ -13633,319 +13791,316 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, ++ "license": "ISC", + "engines": { + "node": ">=10" + } + }, - "node_modules/gitconfiglocal": { - "version": "1.0.0", ++ "node_modules/gitconfiglocal": { ++ "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==", - "dev": true, -- "license": "BSD", - "dependencies": { - "ini": "^1.3.2" - } - }, ++ "dev": true, ++ "license": "BSD", ++ "dependencies": { ++ "ini": "^1.3.2" ++ } ++ }, + "node_modules/gitconfiglocal/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", -+ "dev": true ++ "dev": true, ++ "license": "ISC" + }, - "node_modules/github-from-package": { - "version": "0.0.0", -- "license": "MIT" ++ "node_modules/github-from-package": { ++ "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", -+ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" - }, - "node_modules/glob": { - "version": "7.2.3", -- "license": "ISC", ++ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", ++ "license": "MIT" ++ }, ++ "node_modules/glob": { ++ "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", -@@ -9174,7 +10746,8 @@ - }, - "node_modules/glob-parent": { - "version": "5.1.2", -- "license": "ISC", ++ "license": "ISC", ++ "dependencies": { ++ "fs.realpath": "^1.0.0", ++ "inflight": "^1.0.4", ++ "inherits": "2", ++ "minimatch": "^3.1.1", ++ "once": "^1.3.0", ++ "path-is-absolute": "^1.0.0" ++ }, ++ "engines": { ++ "node": "*" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/isaacs" ++ } ++ }, ++ "node_modules/glob-parent": { ++ "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, -@@ -9184,11 +10757,13 @@ - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", -- "license": "BSD-2-Clause" ++ "license": "ISC", ++ "dependencies": { ++ "is-glob": "^4.0.1" ++ }, ++ "engines": { ++ "node": ">= 6" ++ } ++ }, ++ "node_modules/glob-to-regexp": { ++ "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", -+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "1.1.11", -- "license": "MIT", ++ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", ++ "license": "BSD-2-Clause" ++ }, ++ "node_modules/glob/node_modules/brace-expansion": { ++ "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -@@ -9196,7 +10771,8 @@ - }, - "node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", -- "license": "ISC", ++ "license": "MIT", ++ "dependencies": { ++ "balanced-match": "^1.0.0", ++ "concat-map": "0.0.1" ++ } ++ }, ++ "node_modules/glob/node_modules/minimatch": { ++ "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -9206,7 +10782,8 @@ - }, - "node_modules/global-agent": { - "version": "3.0.0", -- "license": "BSD-3-Clause", ++ "license": "ISC", ++ "dependencies": { ++ "brace-expansion": "^1.1.7" ++ }, ++ "engines": { ++ "node": "*" ++ } ++ }, ++ "node_modules/global-agent": { ++ "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", + "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", - "optional": true, - "dependencies": { - "boolean": "^3.0.1", -@@ -9214,30 +10791,17 @@ - "matcher": "^3.0.0", - "roarr": "^2.15.3", - "semver": "^7.3.2", -- "serialize-error": "^7.0.1" -- }, -- "engines": { -- "node": ">=10.0" -- } -- }, -- "node_modules/global-agent/node_modules/lru-cache": { -- "version": "6.0.0", -- "license": "ISC", -- "optional": true, -- "dependencies": { -- "yallist": "^4.0.0" ++ "license": "BSD-3-Clause", ++ "optional": true, ++ "dependencies": { ++ "boolean": "^3.0.1", ++ "es6-error": "^4.1.1", ++ "matcher": "^3.0.0", ++ "roarr": "^2.15.3", ++ "semver": "^7.3.2", + "serialize-error": "^7.0.1" - }, - "engines": { -- "node": ">=10" ++ }, ++ "engines": { + "node": ">=10.0" - } - }, - "node_modules/global-agent/node_modules/semver": { -- "version": "7.5.4", -- "license": "ISC", ++ } ++ }, ++ "node_modules/global-agent/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "optional": true, -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, - "bin": { - "semver": "bin/semver.js" - }, -@@ -9245,15 +10809,11 @@ - "node": ">=10" - } - }, -- "node_modules/global-agent/node_modules/yallist": { -- "version": "4.0.0", -- "license": "ISC", -- "optional": true -- }, - "node_modules/global-directory": { - "version": "4.0.1", ++ "license": "ISC", ++ "optional": true, ++ "bin": { ++ "semver": "bin/semver.js" ++ }, ++ "engines": { ++ "node": ">=10" ++ } ++ }, ++ "node_modules/global-directory": { ++ "version": "4.0.1", + "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", + "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", - "dev": true, -- "license": "MIT", - "dependencies": { - "ini": "4.1.1" - }, -@@ -9264,18 +10824,11 @@ - "url": "https://github.com/sponsors/sindresorhus" - } - }, -- "node_modules/global-directory/node_modules/ini": { -- "version": "4.1.1", -- "dev": true, -- "license": "ISC", -- "engines": { -- "node": "^14.17.0 || ^16.13.0 || >=18.0.0" -- } -- }, - "node_modules/global-modules": { - "version": "2.0.0", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "ini": "4.1.1" ++ }, ++ "engines": { ++ "node": ">=18" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/global-modules": { ++ "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, -- "license": "MIT", - "dependencies": { - "global-prefix": "^3.0.0" - }, -@@ -9285,8 +10838,9 @@ - }, - "node_modules/global-prefix": { - "version": "3.0.0", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "global-prefix": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=6" ++ } ++ }, ++ "node_modules/global-prefix": { ++ "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, -- "license": "MIT", - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", -@@ -9296,10 +10850,17 @@ - "node": ">=6" - } - }, ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "ini": "^1.3.5", ++ "kind-of": "^6.0.2", ++ "which": "^1.3.1" ++ }, ++ "engines": { ++ "node": ">=6" ++ } ++ }, + "node_modules/global-prefix/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", -+ "dev": true ++ "dev": true, ++ "license": "ISC" + }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", ++ "node_modules/global-prefix/node_modules/which": { ++ "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, -- "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, -@@ -9309,17 +10870,20 @@ - }, - "node_modules/globals": { - "version": "11.12.0", -- "license": "MIT", ++ "dev": true, ++ "license": "ISC", ++ "dependencies": { ++ "isexe": "^2.0.0" ++ }, ++ "bin": { ++ "which": "bin/which" ++ } ++ }, ++ "node_modules/globals": { ++ "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globalthis": { -- "version": "1.0.3", ++ "license": "MIT", ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", - "devOptional": true, -- "license": "MIT", - "dependencies": { -- "define-properties": "^1.1.3" ++ "devOptional": true, ++ "license": "MIT", ++ "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" -@@ -9330,8 +10894,9 @@ - }, - "node_modules/globby": { - "version": "11.1.0", ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" ++ } ++ }, ++ "node_modules/globby": { ++ "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, -- "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", -@@ -9349,13 +10914,15 @@ - }, - "node_modules/globjoin": { - "version": "0.1.4", -- "dev": true, -- "license": "MIT" ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "array-union": "^2.1.0", ++ "dir-glob": "^3.0.1", ++ "fast-glob": "^3.2.9", ++ "ignore": "^5.2.0", ++ "merge2": "^1.4.1", ++ "slash": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } ++ }, ++ "node_modules/globjoin": { ++ "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", -+ "dev": true ++ "dev": true, ++ "license": "MIT" }, "node_modules/gopd": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.3" - }, -@@ -9365,7 +10932,8 @@ +@@ -9365,6 +11841,8 @@ }, "node_modules/got": { "version": "11.8.6", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "license": "MIT", "dependencies": { "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", -@@ -9388,17 +10956,20 @@ +@@ -9388,15 +11866,21 @@ }, "node_modules/graceful-fs": { "version": "4.2.11", -- "license": "ISC" + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", -+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" ++ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" }, "node_modules/handle-thing": { "version": "2.0.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/handlebars": { "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", -@@ -9417,50 +10988,56 @@ +@@ -9417,6 +11901,8 @@ }, "node_modules/hard-rejection": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=6" - } +@@ -9425,6 +11911,8 @@ }, "node_modules/has": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.4.0" - } +@@ -9433,6 +11921,8 @@ }, "node_modules/has-bigints": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "funding": { - "url": "https://github.com/sponsors/ljharb" - } +@@ -9441,24 +11931,30 @@ }, "node_modules/has-flag": { "version": "4.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", "engines": { "node": ">=8" } @@ -13956,7 +14111,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.2" + "es-define-property": "^1.0.0" @@ -13971,22 +14126,18 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.4" - }, -@@ -9470,8 +11047,9 @@ +@@ -9470,6 +11966,8 @@ }, "node_modules/has-symbols": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.4" - }, -@@ -9480,11 +11058,12 @@ +@@ -9480,11 +11978,13 @@ } }, "node_modules/has-tostringtag": { @@ -13995,117 +14146,105 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" -@@ -9495,11 +11074,13 @@ +@@ -9495,10 +11995,14 @@ }, "node_modules/hash-sum": { "version": "2.0.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", -+ "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" ++ "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", + "license": "MIT" }, "node_modules/hasown": { - "version": "2.0.0", -- "license": "MIT", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", "dependencies": { "function-bind": "^1.1.2" - }, -@@ -9509,15 +11090,17 @@ +@@ -9509,6 +12013,8 @@ }, "node_modules/he": { "version": "1.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", "bin": { "he": "bin/he" - } +@@ -9516,6 +12022,8 @@ }, "node_modules/hosted-git-info": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "lru-cache": "^6.0.0" - }, -@@ -9527,8 +11110,9 @@ +@@ -9527,6 +12035,8 @@ }, "node_modules/hosted-git-info/node_modules/lru-cache": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "yallist": "^4.0.0" - }, -@@ -9538,13 +11122,15 @@ +@@ -9538,11 +12048,15 @@ }, "node_modules/hosted-git-info/node_modules/yallist": { "version": "4.0.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/hpack.js": { "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", -@@ -9554,13 +11140,15 @@ +@@ -9554,11 +12068,15 @@ }, "node_modules/hpack.js/node_modules/isarray": { "version": "1.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/hpack.js/node_modules/readable-stream": { "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", -@@ -9573,19 +11161,23 @@ +@@ -9573,11 +12091,15 @@ }, "node_modules/hpack.js/node_modules/safe-buffer": { "version": "5.1.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/hpack.js/node_modules/string_decoder": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" +@@ -9585,7 +12107,9 @@ } }, "node_modules/html-entities": { @@ -14116,55 +14255,45 @@ index a38125e..a1067b0 100644 "dev": true, "funding": [ { -@@ -9596,12 +11188,12 @@ - "type": "patreon", - "url": "https://patreon.com/mdevils" - } -- ], -- "license": "MIT" -+ ] +@@ -9601,6 +12125,8 @@ }, "node_modules/html-minifier-terser": { "version": "6.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "license": "MIT", "dependencies": { "camel-case": "^4.1.2", - "clean-css": "^5.2.2", -@@ -9620,15 +11212,17 @@ +@@ -9620,6 +12146,8 @@ }, "node_modules/html-minifier-terser/node_modules/commander": { "version": "8.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "license": "MIT", "engines": { "node": ">= 12" - } +@@ -9627,6 +12155,8 @@ }, "node_modules/html-tags": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - }, -@@ -9637,8 +11231,9 @@ +@@ -9637,7 +12167,9 @@ } }, "node_modules/html-webpack-plugin": { - "version": "5.5.3", -- "license": "MIT", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.4.tgz", + "integrity": "sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw==", + "license": "MIT", "dependencies": { "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", -@@ -9659,6 +11254,8 @@ +@@ -9659,6 +12191,8 @@ }, "node_modules/htmlparser2": { "version": "8.0.2", @@ -14173,88 +14302,76 @@ index a38125e..a1067b0 100644 "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { -@@ -9666,7 +11263,6 @@ - "url": "https://github.com/sponsors/fb55" - } - ], -- "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", -@@ -9676,17 +11272,20 @@ +@@ -9676,15 +12210,21 @@ }, "node_modules/http-cache-semantics": { "version": "4.1.1", -- "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", -+ "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" ++ "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "license": "BSD-2-Clause" }, "node_modules/http-deceiver": { "version": "1.2.7", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/http-errors": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", -@@ -9700,13 +11299,15 @@ +@@ -9700,11 +12240,15 @@ }, "node_modules/http-parser-js": { "version": "0.5.8", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", -@@ -9718,8 +11319,9 @@ +@@ -9718,6 +12262,8 @@ }, "node_modules/http-proxy-agent": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", -@@ -9731,8 +11333,9 @@ +@@ -9730,7 +12276,9 @@ + } }, "node_modules/http-proxy-middleware": { - "version": "2.0.6", -+ "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", -+ "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", +- "version": "2.0.6", ++ "version": "2.0.7", ++ "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", ++ "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", -@@ -9752,20 +11355,10 @@ +@@ -9752,23 +12300,14 @@ } } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", - "dev": true, -- "license": "MIT", ++ "node_modules/http2-wrapper": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", ++ "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "license": "MIT", - "engines": { - "node": ">=10" - }, @@ -14262,35 +14379,37 @@ index a38125e..a1067b0 100644 - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/http2-wrapper": { - "version": "1.0.3", +- "node_modules/http2-wrapper": { +- "version": "1.0.3", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", -+ "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" -@@ -9776,8 +11369,9 @@ +- "dependencies": { +- "quick-lru": "^5.1.1", +- "resolve-alpn": "^1.0.0" ++ "dependencies": { ++ "quick-lru": "^5.1.1", ++ "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" +@@ -9776,6 +12315,8 @@ }, "node_modules/https-proxy-agent": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "agent-base": "6", - "debug": "4" -@@ -9787,16 +11381,19 @@ +@@ -9787,14 +12328,19 @@ } }, "node_modules/human-signals": { - "version": "2.1.0", -- "license": "Apache-2.0", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">=10.17.0" + "node": ">=16.17.0" @@ -14301,11 +14420,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", + "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "husky": "bin.mjs" - }, -@@ -9807,9 +11404,27 @@ +@@ -9807,8 +12353,28 @@ "url": "https://github.com/sponsors/typicode" } }, @@ -14314,6 +14431,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", + "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", + "dev": true, ++ "license": "MIT", + "optional": true, + "os": [ + "darwin" @@ -14328,23 +14446,21 @@ index a38125e..a1067b0 100644 + }, "node_modules/iconv-lite": { "version": "0.6.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" - }, -@@ -9819,7 +11434,8 @@ +@@ -9819,6 +12385,8 @@ }, "node_modules/icss-utils": { "version": "5.1.0", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" - }, -@@ -9829,6 +11445,8 @@ +@@ -9829,6 +12397,8 @@ }, "node_modules/ieee754": { "version": "1.2.1", @@ -14353,13 +14469,8 @@ index a38125e..a1067b0 100644 "funding": [ { "type": "github", -@@ -9842,25 +11460,27 @@ - "type": "consulting", - "url": "https://feross.org/support" - } -- ], -- "license": "BSD-3-Clause" -+ ] +@@ -9846,7 +12416,9 @@ + "license": "BSD-3-Clause" }, "node_modules/ignore": { - "version": "5.3.0", @@ -14367,27 +14478,24 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 4" - } +@@ -9855,10 +12427,14 @@ }, "node_modules/immediate": { "version": "3.0.6", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", -+ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" ++ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "license": "MIT" }, "node_modules/import-fresh": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" -@@ -9872,17 +11492,28 @@ +@@ -9872,8 +12448,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, @@ -14396,6 +14504,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=4" + } @@ -14405,21 +14514,20 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" +@@ -9881,7 +12469,9 @@ } }, "node_modules/import-local": { - "version": "3.1.0", -- "license": "MIT", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" -@@ -9898,9 +11529,10 @@ +@@ -9898,7 +12488,9 @@ } }, "node_modules/import-meta-resolve": { @@ -14428,48 +14536,43 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", + "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", "dev": true, -- "license": "MIT", + "license": "MIT", "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" -@@ -9908,23 +11540,27 @@ +@@ -9908,6 +12500,8 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.8.19" - } +@@ -9916,6 +12510,8 @@ }, "node_modules/indent-string": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - } +@@ -9924,6 +12520,9 @@ }, "node_modules/inflight": { "version": "1.0.6", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", "dependencies": { "once": "^1.3.0", - "wrappy": "1" -@@ -9932,16 +11568,23 @@ +@@ -9932,14 +12531,24 @@ }, "node_modules/inherits": { "version": "2.0.4", -- "license": "ISC" + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", -+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" ++ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" }, "node_modules/ini": { - "version": "1.3.8", @@ -14478,6 +14581,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "dev": true, ++ "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } @@ -14487,11 +14591,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", -@@ -9962,11 +11605,12 @@ +@@ -9962,11 +12571,13 @@ } }, "node_modules/internal-slot": { @@ -14500,33 +14602,32 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.2", + "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" }, -@@ -9976,14 +11620,16 @@ +@@ -9976,6 +12587,8 @@ }, "node_modules/interpret": { "version": "2.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "license": "MIT", "engines": { "node": ">= 0.10" - } +@@ -9983,6 +12596,8 @@ }, "node_modules/ip-address": { "version": "5.9.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-5.9.4.tgz", + "integrity": "sha512-dHkI3/YNJq4b/qQaz+c8LuarD3pY24JqZWfjB8aZx1gtpc2MDILu9L9jpZe1sHpzo/yWFweQVn+U//FhazUxmw==", + "license": "MIT", "dependencies": { "jsbn": "1.1.0", - "lodash": "^4.17.15", -@@ -9994,21 +11640,25 @@ +@@ -9994,7 +12609,9 @@ } }, "node_modules/ipaddr.js": { @@ -14535,9 +14636,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 10" +@@ -10002,13 +12619,17 @@ } }, "node_modules/is-array-buffer": { @@ -14546,7 +14647,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", @@ -14558,77 +14659,67 @@ index a38125e..a1067b0 100644 }, "funding": { "url": "https://github.com/sponsors/ljharb" -@@ -10016,13 +11666,15 @@ +@@ -10016,11 +12637,15 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-bigint": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-bigints": "^1.0.1" - }, -@@ -10032,7 +11684,8 @@ +@@ -10032,6 +12657,8 @@ }, "node_modules/is-binary-path": { "version": "2.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" - }, -@@ -10042,8 +11695,9 @@ +@@ -10042,6 +12669,8 @@ }, "node_modules/is-boolean-object": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" -@@ -10057,8 +11711,9 @@ +@@ -10057,6 +12686,8 @@ }, "node_modules/is-callable": { "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.4" - }, -@@ -10068,8 +11723,9 @@ +@@ -10068,6 +12699,8 @@ }, "node_modules/is-ci": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ci-info": "^3.2.0" - }, -@@ -10078,10 +11734,29 @@ +@@ -10078,10 +12711,31 @@ } }, "node_modules/is-core-module": { - "version": "2.13.1", -- "license": "MIT", + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "license": "MIT", "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" @@ -14645,6 +14736,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, @@ -14653,58 +14745,52 @@ index a38125e..a1067b0 100644 }, "funding": { "url": "https://github.com/sponsors/ljharb" -@@ -10089,8 +11764,9 @@ +@@ -10089,6 +12743,8 @@ }, "node_modules/is-date-object": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, -@@ -10103,8 +11779,9 @@ +@@ -10103,6 +12759,8 @@ }, "node_modules/is-docker": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "is-docker": "cli.js" - }, -@@ -10117,22 +11794,25 @@ +@@ -10117,6 +12775,8 @@ }, "node_modules/is-extglob": { "version": "2.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -10124,6 +12784,8 @@ }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - } +@@ -10132,6 +12794,8 @@ }, "node_modules/is-glob": { "version": "4.0.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" - }, -@@ -10141,9 +11821,10 @@ +@@ -10141,7 +12805,9 @@ } }, "node_modules/is-negative-zero": { @@ -14713,37 +14799,33 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.4" - }, -@@ -10153,15 +11834,17 @@ +@@ -10153,6 +12819,8 @@ }, "node_modules/is-number": { "version": "7.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", "engines": { "node": ">=0.12.0" - } +@@ -10160,6 +12828,8 @@ }, "node_modules/is-number-object": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, -@@ -10174,35 +11857,43 @@ +@@ -10174,21 +12844,30 @@ }, "node_modules/is-obj": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "license": "MIT", "engines": { "node": ">=8" } @@ -14754,7 +14836,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=10" @@ -14768,27 +14850,24 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } +@@ -10197,10 +12876,14 @@ }, "node_modules/is-property": { "version": "1.0.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", -+ "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" ++ "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==", + "license": "MIT" }, "node_modules/is-regex": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" -@@ -10215,21 +11906,27 @@ +@@ -10215,21 +12898,29 @@ } }, "node_modules/is-shared-array-buffer": { @@ -14797,7 +14876,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" @@ -14811,40 +14890,36 @@ index a38125e..a1067b0 100644 }, "node_modules/is-stream": { - "version": "2.0.1", -- "license": "MIT", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" -@@ -10237,8 +11934,9 @@ +@@ -10237,6 +12928,8 @@ }, "node_modules/is-string": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, -@@ -10251,8 +11949,9 @@ +@@ -10251,6 +12944,8 @@ }, "node_modules/is-symbol": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" - }, -@@ -10264,22 +11963,24 @@ +@@ -10264,22 +12959,26 @@ } }, "node_modules/is-text-path": { @@ -14853,7 +14928,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", + "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "text-extensions": "^1.0.0" + "text-extensions": "^2.0.0" @@ -14869,67 +14944,61 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "which-typed-array": "^1.1.11" + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" -@@ -10290,8 +11991,9 @@ +@@ -10290,6 +12989,8 @@ }, "node_modules/is-weakref": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" - }, -@@ -10301,8 +12003,9 @@ +@@ -10301,6 +13002,8 @@ }, "node_modules/is-wsl": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "is-docker": "^2.0.0" - }, -@@ -10312,13 +12015,15 @@ +@@ -10312,11 +13015,15 @@ }, "node_modules/isarray": { "version": "2.0.5", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/isbinaryfile": { - "version": "5.0.2", -+ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.2.tgz", -+ "integrity": "sha512-GvcjojwonMjWbTkfMpnVHVqXW/wKMYDfEpY94/8zy8HFMOqb/VL6oeONq9v87q4ttVlaTLnGXnJD4B5B1OTGIg==", +- "version": "5.0.2", ++ "version": "5.0.3", ++ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.3.tgz", ++ "integrity": "sha512-VR4gNjFaDP8csJQvzInG20JvBj8MaHYLxNOMXysxRbGM7tcsHZwCjhch3FubFtZBkuDbN55i4dUukGeIrzF+6g==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 18.0.0" - }, -@@ -10328,25 +12033,25 @@ +@@ -10328,25 +13035,28 @@ }, "node_modules/isexe": { "version": "2.0.0", -- "license": "ISC" + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", -+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" ++ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -14940,7 +15009,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, -- "license": "BlueOak-1.0.0", + "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/cliui": "^8.0.2" }, @@ -14950,7 +15019,7 @@ index a38125e..a1067b0 100644 "funding": { "url": "https://github.com/sponsors/isaacs" }, -@@ -10355,9 +12060,10 @@ +@@ -10355,7 +13065,9 @@ } }, "node_modules/jake": { @@ -14959,53 +15028,45 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", + "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", -@@ -10373,8 +12079,9 @@ +@@ -10373,6 +13085,8 @@ }, "node_modules/jake/node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" -@@ -10382,8 +12089,9 @@ +@@ -10382,6 +13096,8 @@ }, "node_modules/jake/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" - }, -@@ -10393,7 +12101,8 @@ +@@ -10393,6 +13109,8 @@ }, "node_modules/jest-worker": { "version": "27.5.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "license": "MIT", "dependencies": { "@types/node": "*", - "merge-stream": "^2.0.0", -@@ -10405,7 +12114,8 @@ +@@ -10405,6 +13123,8 @@ }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" - }, -@@ -10417,20 +12127,23 @@ +@@ -10417,7 +13137,9 @@ } }, "node_modules/jiti": { @@ -15014,128 +15075,124 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "jiti": "bin/jiti.js" - } +@@ -10426,10 +13148,14 @@ }, "node_modules/js-tokens": { "version": "4.0.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", -+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" ++ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" }, "node_modules/js-yaml": { "version": "4.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", "dependencies": { "argparse": "^2.0.1" - }, -@@ -10440,11 +12153,13 @@ +@@ -10440,24 +13166,32 @@ }, "node_modules/jsbn": { "version": "1.1.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", -+ "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" ++ "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", + "license": "MIT" }, "node_modules/jsesc": { - "version": "2.5.2", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", -+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", +- "version": "2.5.2", ++ "version": "3.0.2", ++ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", ++ "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, -@@ -10454,12 +12169,14 @@ + "engines": { +- "node": ">=4" ++ "node": ">=6" + } }, "node_modules/json-buffer": { "version": "3.0.1", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", -+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" ++ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "license": "MIT" }, "node_modules/json-fixer": { "version": "1.6.15", + "resolved": "https://registry.npmjs.org/json-fixer/-/json-fixer-1.6.15.tgz", + "integrity": "sha512-TuDuZ5KrgyjoCIppdPXBMqiGfota55+odM+j2cQ5rt/XKyKmqGB3Whz1F8SN8+60yYGy/Nu5lbRZ+rx8kBIvBw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.18.9", - "chalk": "^4.1.2", -@@ -10471,38 +12188,46 @@ +@@ -10471,37 +13205,53 @@ }, "node_modules/json-parse-better-errors": { "version": "1.0.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", -+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" ++ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" }, "node_modules/json-schema-traverse": { - "version": "0.4.1", -- "license": "MIT" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", -+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" ++ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" }, "node_modules/json-schema-typed": { "version": "7.0.3", -- "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-7.0.3.tgz", -+ "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==" ++ "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==", + "license": "BSD-2-Clause" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-stringify-safe": { "version": "5.0.1", -- "devOptional": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", -+ "devOptional": true + "devOptional": true, + "license": "ISC" }, "node_modules/json2php": { - "version": "0.0.7", -- "license": "BSD" + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.9.tgz", -+ "integrity": "sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw==" ++ "integrity": "sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw==", + "license": "BSD" }, "node_modules/json5": { "version": "2.2.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", "bin": { "json5": "lib/cli.js" - }, -@@ -10512,23 +12237,26 @@ +@@ -10512,6 +13262,8 @@ }, "node_modules/jsonfile": { "version": "4.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", "optionalDependencies": { "graceful-fs": "^4.1.6" - } +@@ -10519,6 +13271,8 @@ }, "node_modules/jsonparse": { "version": "1.3.1", @@ -15144,120 +15201,111 @@ index a38125e..a1067b0 100644 "dev": true, "engines": [ "node >= 0.2.0" -- ], -- "license": "MIT" -+ ] +@@ -10527,6 +13281,8 @@ }, "node_modules/JSONStream": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dev": true, -- "license": "(MIT OR Apache-2.0)", + "license": "(MIT OR Apache-2.0)", "dependencies": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" -@@ -10542,7 +12270,8 @@ +@@ -10542,6 +13298,8 @@ }, "node_modules/jszip": { "version": "3.10.1", -- "license": "(MIT OR GPL-3.0-or-later)", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "license": "(MIT OR GPL-3.0-or-later)", "dependencies": { "lie": "~3.3.0", - "pako": "~1.0.2", -@@ -10552,11 +12281,13 @@ +@@ -10552,10 +13310,14 @@ }, "node_modules/jszip/node_modules/isarray": { "version": "1.0.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", -+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" ++ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" }, "node_modules/jszip/node_modules/readable-stream": { "version": "2.3.8", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", - "inherits": "~2.0.3", -@@ -10569,49 +12300,57 @@ +@@ -10569,10 +13331,14 @@ }, "node_modules/jszip/node_modules/safe-buffer": { "version": "5.1.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", -+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" ++ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" }, "node_modules/jszip/node_modules/string_decoder": { "version": "1.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" - } +@@ -10580,6 +13346,8 @@ }, "node_modules/keyv": { "version": "4.5.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "license": "MIT", "dependencies": { "json-buffer": "3.0.1" - } +@@ -10587,6 +13355,8 @@ }, "node_modules/kind-of": { "version": "6.0.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -10594,6 +13364,8 @@ }, "node_modules/klona": { "version": "2.0.6", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "license": "MIT", "engines": { "node": ">= 8" - } +@@ -10601,15 +13373,21 @@ }, "node_modules/known-css-properties": { "version": "0.29.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.29.0.tgz", + "integrity": "sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lazy-val": { "version": "1.0.5", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", -+ "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==" ++ "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", + "license": "MIT" }, "node_modules/lazystream": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "dependencies": { - "readable-stream": "^2.0.5" -@@ -10622,14 +12361,16 @@ +@@ -10622,12 +13400,16 @@ }, "node_modules/lazystream/node_modules/isarray": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true }, "node_modules/lazystream/node_modules/readable-stream": { @@ -15265,18 +15313,16 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "dependencies": { - "core-util-is": "~1.0.0", -@@ -10643,14 +12384,16 @@ +@@ -10643,12 +13425,16 @@ }, "node_modules/lazystream/node_modules/safe-buffer": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true }, "node_modules/lazystream/node_modules/string_decoder": { @@ -15284,85 +15330,76 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true, - "dependencies": { - "safe-buffer": "~5.1.0" -@@ -10658,12 +12401,14 @@ +@@ -10658,10 +13444,14 @@ }, "node_modules/leaflet": { "version": "1.7.1", -- "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.7.1.tgz", -+ "integrity": "sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw==" ++ "integrity": "sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw==", + "license": "BSD-2-Clause" }, "node_modules/levn": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" -@@ -10674,20 +12419,23 @@ +@@ -10674,6 +13464,8 @@ }, "node_modules/lie": { "version": "3.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "license": "MIT", "dependencies": { "immediate": "~3.0.5" - } +@@ -10681,11 +13473,15 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/load-json-file": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", -@@ -10700,22 +12448,25 @@ +@@ -10700,6 +13496,8 @@ }, "node_modules/load-json-file/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=4" - } +@@ -10708,6 +13506,8 @@ }, "node_modules/loader-runner": { "version": "4.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "license": "MIT", "engines": { "node": ">=6.11.5" - } +@@ -10715,6 +13515,8 @@ }, "node_modules/loader-utils": { "version": "2.0.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", "dependencies": { "big.js": "^5.2.2", - "emojis-list": "^3.0.0", -@@ -10726,116 +12477,139 @@ +@@ -10726,115 +13528,159 @@ } }, "node_modules/locate-path": { @@ -15371,7 +15408,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" @@ -15387,32 +15424,30 @@ index a38125e..a1067b0 100644 }, "node_modules/lodash": { "version": "4.17.21", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", -+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" ++ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" }, "node_modules/lodash.camelcase": { "version": "4.3.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.defaults": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true }, "node_modules/lodash.difference": { @@ -15420,315 +15455,298 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", + "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true }, "node_modules/lodash.escaperegexp": { "version": "4.1.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", -+ "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" ++ "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", + "license": "MIT" }, "node_modules/lodash.flatten": { "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true }, "node_modules/lodash.isequal": { "version": "4.5.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", -+ "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" ++ "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "license": "MIT" }, "node_modules/lodash.ismatch": { "version": "4.4.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.isplainobject": { "version": "4.0.6", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.kebabcase": { "version": "4.1.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.mergewith": { "version": "4.6.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.snakecase": { "version": "4.1.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", + "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.startcase": { "version": "4.4.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", + "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.truncate": { "version": "4.4.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.union": { "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", + "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==", "dev": true, -- "license": "MIT", + "license": "MIT", "peer": true }, "node_modules/lodash.uniq": { "version": "4.5.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.upperfirst": { "version": "4.3.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/log-update": { "version": "2.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==", + "license": "MIT", "dependencies": { "ansi-escapes": "^3.0.0", - "cli-cursor": "^2.0.0", -@@ -10847,14 +12621,16 @@ +@@ -10847,6 +13693,8 @@ }, "node_modules/log-update/node_modules/ansi-escapes": { "version": "3.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "license": "MIT", "engines": { "node": ">=4" - } +@@ -10854,6 +13702,8 @@ }, "node_modules/log-update/node_modules/cli-cursor": { "version": "2.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "license": "MIT", "dependencies": { "restore-cursor": "^2.0.0" - }, -@@ -10864,14 +12640,16 @@ +@@ -10864,6 +13714,8 @@ }, "node_modules/log-update/node_modules/mimic-fn": { "version": "1.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "license": "MIT", "engines": { "node": ">=4" - } +@@ -10871,6 +13723,8 @@ }, "node_modules/log-update/node_modules/onetime": { "version": "2.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "license": "MIT", "dependencies": { "mimic-fn": "^1.0.0" - }, -@@ -10881,7 +12659,8 @@ +@@ -10881,6 +13735,8 @@ }, "node_modules/log-update/node_modules/restore-cursor": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "license": "MIT", "dependencies": { "onetime": "^2.0.0", - "signal-exit": "^3.0.2" -@@ -10890,41 +12669,52 @@ +@@ -10890,12 +13746,22 @@ "node": ">=4" } }, + "node_modules/log-update/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", -+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" ++ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", ++ "license": "ISC" + }, "node_modules/long": { "version": "5.2.3", -- "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", -+ "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" ++ "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "license": "Apache-2.0" }, "node_modules/lower-case": { "version": "2.0.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "license": "MIT", "dependencies": { "tslib": "^2.0.3" - } +@@ -10903,6 +13769,8 @@ }, "node_modules/lowercase-keys": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "license": "MIT", "engines": { "node": ">=8" - } +@@ -10910,6 +13778,8 @@ }, "node_modules/lru-cache": { "version": "5.1.1", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", "dependencies": { "yallist": "^3.0.2" - } +@@ -10917,6 +13787,8 @@ }, "node_modules/magic-string": { "version": "0.25.9", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "license": "MIT", "dependencies": { "sourcemap-codec": "^1.4.8" - } +@@ -10924,6 +13796,8 @@ }, "node_modules/make-dir": { "version": "3.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "license": "MIT", "dependencies": { "semver": "^6.0.0" - }, -@@ -10937,13 +12727,15 @@ +@@ -10937,11 +13811,15 @@ }, "node_modules/make-error": { "version": "1.3.6", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/map-obj": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - }, -@@ -10952,8 +12744,9 @@ +@@ -10952,7 +13830,9 @@ } }, "node_modules/marked": { - "version": "12.0.0", -- "license": "MIT", + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", + "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==", + "license": "MIT", "bin": { "marked": "bin/marked.js" - }, -@@ -10961,310 +12754,102 @@ - "node": ">= 18" +@@ -10963,6 +13843,8 @@ + }, + "node_modules/matcher": { + "version": "3.0.0", ++ "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", ++ "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "license": "MIT", + "optional": true, + "dependencies": { +@@ -10974,6 +13856,8 @@ + }, + "node_modules/mathml-tag-names": { + "version": "2.1.3", ++ "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", ++ "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", + "dev": true, + "license": "MIT", + "funding": { +@@ -10983,11 +13867,15 @@ + }, + "node_modules/mdn-data": { + "version": "2.0.30", ++ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", ++ "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/media-typer": { + "version": "0.3.0", ++ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", ++ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "license": "MIT", + "engines": { +@@ -10996,6 +13884,8 @@ + }, + "node_modules/memfs": { + "version": "3.5.3", ++ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", ++ "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "license": "Unlicense", + "dependencies": { +@@ -11006,326 +13896,136 @@ } }, -- "node_modules/matcher": { -- "version": "3.0.0", -- "license": "MIT", -- "optional": true, -- "dependencies": { -- "escape-string-regexp": "^4.0.0" -- }, -- "engines": { -- "node": ">=10" -- } -- }, -- "node_modules/mathml-tag-names": { -- "version": "2.1.3", -- "dev": true, -- "license": "MIT", -- "funding": { -- "type": "github", -- "url": "https://github.com/sponsors/wooorm" -- } -- }, -- "node_modules/mdn-data": { -- "version": "2.0.30", -- "dev": true, -- "license": "CC0-1.0" -- }, -- "node_modules/media-typer": { -- "version": "0.3.0", -- "dev": true, -- "license": "MIT", -- "engines": { -- "node": ">= 0.6" -- } -- }, -- "node_modules/memfs": { -- "version": "3.5.3", -- "dev": true, -- "license": "Unlicense", -- "dependencies": { -- "fs-monkey": "^1.0.4" -- }, -- "engines": { -- "node": ">= 4.0.0" -- } -- }, -- "node_modules/meow": { + "node_modules/meow": { - "version": "8.1.2", -- "dev": true, -- "license": "MIT", ++ "version": "12.1.1", ++ "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", ++ "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", + "dev": true, + "license": "MIT", - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", @@ -15742,138 +15760,208 @@ index a38125e..a1067b0 100644 - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, -- "engines": { + "engines": { - "node": ">=10" -- }, -- "funding": { -- "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "node": ">=16.10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, - "node_modules/meow/node_modules/find-up": { - "version": "4.1.0", -- "dev": true, -- "license": "MIT", ++ "node_modules/merge-descriptors": { ++ "version": "1.0.3", ++ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", ++ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true, + "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" -- } -- }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, - "node_modules/meow/node_modules/locate-path": { - "version": "5.0.0", -- "dev": true, -- "license": "MIT", ++ "node_modules/merge-stream": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", ++ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", ++ "license": "MIT" ++ }, ++ "node_modules/merge2": { ++ "version": "1.4.1", ++ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", ++ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, -- "engines": { + "engines": { - "node": ">=8" -- } -- }, ++ "node": ">= 8" + } + }, - "node_modules/meow/node_modules/lru-cache": { - "version": "6.0.0", -- "dev": true, ++ "node_modules/methods": { ++ "version": "1.1.2", ++ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", ++ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, -- "engines": { ++ "license": "MIT", + "engines": { - "node": ">=10" -- } -- }, ++ "node": ">= 0.6" + } + }, - "node_modules/meow/node_modules/normalize-package-data": { - "version": "3.0.3", - "dev": true, - "license": "BSD-2-Clause", -- "dependencies": { ++ "node_modules/micromatch": { ++ "version": "4.0.8", ++ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", ++ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", ++ "license": "MIT", + "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" -- }, -- "engines": { ++ "braces": "^3.0.3", ++ "picomatch": "^2.3.1" + }, + "engines": { - "node": ">=10" -- } -- }, ++ "node": ">=8.6" + } + }, - "node_modules/meow/node_modules/p-limit": { - "version": "2.3.0", -- "dev": true, -- "license": "MIT", ++ "node_modules/mime": { ++ "version": "2.6.0", ++ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", ++ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" -- }, -- "engines": { ++ "bin": { ++ "mime": "cli.js" + }, + "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, ++ "node": ">=4.0.0" + } + }, - "node_modules/meow/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, -- "license": "MIT", ++ "node_modules/mime-db": { ++ "version": "1.52.0", ++ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", ++ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, -- "engines": { + "engines": { - "node": ">=8" -- } -- }, ++ "node": ">= 0.6" + } + }, - "node_modules/meow/node_modules/p-try": { - "version": "2.2.0", - "dev": true, -- "license": "MIT", -- "engines": { ++ "node_modules/mime-types": { ++ "version": "2.1.35", ++ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", ++ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", ++ "dependencies": { ++ "mime-db": "1.52.0" ++ }, + "engines": { - "node": ">=6" -- } -- }, ++ "node": ">= 0.6" + } + }, - "node_modules/meow/node_modules/parse-json": { - "version": "5.2.0", - "dev": true, -- "license": "MIT", ++ "node_modules/mimic-fn": { ++ "version": "3.1.0", ++ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", ++ "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", + "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, -- "engines": { -- "node": ">=8" + "engines": { + "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -- } -- }, + } + }, - "node_modules/meow/node_modules/path-exists": { - "version": "4.0.0", - "dev": true, -- "license": "MIT", -- "engines": { ++ "node_modules/mimic-response": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", ++ "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "license": "MIT", + "engines": { - "node": ">=8" -- } -- }, ++ "node": ">=4" + } + }, - "node_modules/meow/node_modules/read-pkg": { - "version": "5.2.0", -- "dev": true, -- "license": "MIT", ++ "node_modules/min-indent": { ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", ++ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "license": "MIT", - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, -- "engines": { + "engines": { - "node": ">=8" -- } -- }, ++ "node": ">=4" + } + }, - "node_modules/meow/node_modules/read-pkg-up": { - "version": "7.0.1", - "dev": true, -- "license": "MIT", -- "dependencies": { ++ "node_modules/mini-css-extract-plugin": { ++ "version": "2.4.7", ++ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", ++ "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", + "license": "MIT", + "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" @@ -15902,212 +15990,155 @@ index a38125e..a1067b0 100644 - "version": "2.5.0", - "dev": true, - "license": "BSD-2-Clause", -+ "node_modules/matcher": { -+ "version": "3.0.0", -+ "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", -+ "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", -+ "optional": true, - "dependencies": { +- "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" -+ "escape-string-regexp": "^4.0.0" -+ }, -+ "engines": { -+ "node": ">=10" - } - }, +- } +- }, - "node_modules/meow/node_modules/read-pkg/node_modules/semver": { - "version": "5.7.2", -+ "node_modules/mathml-tag-names": { -+ "version": "2.1.3", -+ "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", -+ "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", - "dev": true, +- "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" -+ "funding": { -+ "type": "github", -+ "url": "https://github.com/sponsors/wooorm" - } - }, +- } +- }, - "node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", -+ "node_modules/mdn-data": { -+ "version": "2.0.30", -+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", -+ "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", -+ "dev": true -+ }, -+ "node_modules/media-typer": { -+ "version": "0.3.0", -+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", -+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, +- "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { +- "engines": { - "node": ">=8" -+ "node": ">= 0.6" - } - }, +- } +- }, - "node_modules/meow/node_modules/semver": { - "version": "7.5.4", -+ "node_modules/memfs": { -+ "version": "3.5.3", -+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", -+ "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", - "dev": true, +- "dev": true, - "license": "ISC", - "dependencies": { +- "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" -+ "fs-monkey": "^1.0.4" - }, - "engines": { +- }, +- "engines": { - "node": ">=10" -+ "node": ">= 4.0.0" - } - }, +- } +- }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", -+ "node_modules/meow": { -+ "version": "12.1.1", -+ "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", -+ "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", - "dev": true, +- "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { +- "engines": { - "node": ">=10" -+ "node": ">=16.10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, - "node_modules/meow/node_modules/yallist": { - "version": "4.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", +- "node_modules/merge-descriptors": { +- "version": "1.0.1", - "dev": true, - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", -+ "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", -+ "dev": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", +- }, +- "node_modules/merge-stream": { +- "version": "2.0.0", - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", -+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", -+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", -+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, +- }, +- "node_modules/merge2": { +- "version": "1.4.1", +- "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/methods": { - "version": "1.1.2", -+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", -+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, +- "engines": { +- "node": ">= 8" +- } +- }, +- "node_modules/methods": { +- "version": "1.1.2", +- "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { +- "engines": { +- "node": ">= 0.6" +- } +- }, +- "node_modules/micromatch": { - "version": "4.0.5", - "license": "MIT", -+ "version": "4.0.8", -+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", -+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dependencies": { +- "dependencies": { - "braces": "^3.0.2", -+ "braces": "^3.0.3", - "picomatch": "^2.3.1" +- "picomatch": "^2.3.1" +- }, +- "engines": { +- "node": ">=8.6" +- } +- }, +- "node_modules/mime": { +- "version": "2.6.0", +- "dev": true, +- "license": "MIT", +- "bin": { +- "mime": "cli.js" +- }, +- "engines": { +- "node": ">=4.0.0" +- } +- }, +- "node_modules/mime-db": { +- "version": "1.52.0", +- "license": "MIT", +- "engines": { +- "node": ">= 0.6" +- } +- }, +- "node_modules/mime-types": { +- "version": "2.1.35", +- "license": "MIT", +- "dependencies": { +- "mime-db": "1.52.0" +- }, +- "engines": { +- "node": ">= 0.6" +- } +- }, +- "node_modules/mimic-fn": { +- "version": "3.1.0", +- "license": "MIT", +- "engines": { +- "node": ">=8" +- } +- }, +- "node_modules/mimic-response": { +- "version": "1.0.1", +- "license": "MIT", +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/min-indent": { +- "version": "1.0.1", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/mini-css-extract-plugin": { +- "version": "2.4.7", +- "license": "MIT", +- "dependencies": { +- "schema-utils": "^4.0.0" ++ "schema-utils": "^4.0.0" }, "engines": { -@@ -11273,8 +12858,9 @@ - }, - "node_modules/mime": { - "version": "2.6.0", -+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", -+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true, -- "license": "MIT", - "bin": { - "mime": "cli.js" - }, -@@ -11284,14 +12870,16 @@ - }, - "node_modules/mime-db": { - "version": "1.52.0", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", -+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", -+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, -@@ -11301,29 +12889,33 @@ - }, - "node_modules/mimic-fn": { - "version": "3.1.0", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", -+ "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/mimic-response": { - "version": "1.0.1", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", -+ "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", -+ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/mini-css-extract-plugin": { - "version": "2.4.7", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", -+ "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", - "dependencies": { - "schema-utils": "^4.0.0" - }, -@@ -11338,37 +12930,10 @@ + "node": ">= 12.13.0" +@@ -11338,36 +14038,10 @@ "webpack": "^5.0.0" } }, @@ -16141,52 +16172,46 @@ index a38125e..a1067b0 100644 - }, "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { "version": "4.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", -@@ -11385,13 +12950,15 @@ +@@ -11385,11 +14059,15 @@ }, "node_modules/minimalistic-assert": { "version": "1.0.1", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/minimatch": { "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "brace-expansion": "^2.0.1" - }, -@@ -11401,15 +12968,17 @@ +@@ -11401,6 +14079,8 @@ }, "node_modules/minimist": { "version": "1.2.8", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" - } +@@ -11408,6 +14088,8 @@ }, "node_modules/minimist-options": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", -@@ -11419,18 +12988,29 @@ +@@ -11419,8 +14101,20 @@ "node": ">= 6" } }, @@ -16195,6 +16220,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=0.10.0" + } @@ -16204,106 +16230,96 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, -- "license": "ISC", + "license": "ISC", "engines": { - "node": ">=8" - } +@@ -11429,6 +14123,8 @@ }, "node_modules/minizlib": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" -@@ -11441,8 +13021,9 @@ +@@ -11441,6 +14137,8 @@ }, "node_modules/minizlib/node_modules/minipass": { "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "yallist": "^4.0.0" - }, -@@ -11452,12 +13033,14 @@ +@@ -11452,11 +14150,15 @@ }, "node_modules/minizlib/node_modules/yallist": { "version": "4.0.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/mkdirp": { "version": "0.5.6", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", "dependencies": { "minimist": "^1.2.6" - }, -@@ -11467,35 +13050,41 @@ +@@ -11467,10 +14169,14 @@ }, "node_modules/mkdirp-classic": { "version": "0.5.3", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", -+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" ++ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "license": "MIT" }, "node_modules/modify-values": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } +@@ -11479,6 +14185,8 @@ }, "node_modules/moment": { "version": "2.30.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "license": "MIT", "engines": { "node": "*" - } +@@ -11486,14 +14194,20 @@ }, "node_modules/moo": { "version": "0.5.2", -- "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", -+ "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" ++ "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", + "license": "BSD-3-Clause" }, "node_modules/ms": { - "version": "2.1.2", -- "license": "MIT" -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", -+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" +- "version": "2.1.2", ++ "version": "2.1.3", ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", ++ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" }, "node_modules/multicast-dns": { "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" -@@ -11506,13 +13095,14 @@ +@@ -11506,13 +14220,16 @@ }, "node_modules/mute-stream": { "version": "0.0.8", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/mysql2": { - "version": "3.9.7", @@ -16312,45 +16328,45 @@ index a38125e..a1067b0 100644 + "version": "3.9.9", + "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.9.9.tgz", + "integrity": "sha512-Qtb2RUxwWMFkWXqF7Rd/7ySkupbQnNY7O0zQuQYgPcuJZ06M36JG3HIDEh/pEeq7LImcvA6O3lOVQ9XQK+HEZg==", ++ "license": "MIT", "dependencies": { "denque": "^2.1.0", "generate-function": "^2.3.1", -@@ -11529,14 +13119,16 @@ +@@ -11529,6 +14246,8 @@ }, "node_modules/mysql2/node_modules/lru-cache": { "version": "8.0.5", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-8.0.5.tgz", + "integrity": "sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==", + "license": "ISC", "engines": { "node": ">=16.14" - } +@@ -11536,6 +14255,8 @@ }, "node_modules/named-placeholders": { "version": "1.1.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz", + "integrity": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==", + "license": "MIT", "dependencies": { "lru-cache": "^7.14.1" - }, -@@ -11546,24 +13138,27 @@ +@@ -11546,17 +14267,23 @@ }, "node_modules/named-placeholders/node_modules/lru-cache": { "version": "7.18.3", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/nan": { - "version": "2.19.0", -- "license": "MIT" -+ "version": "2.20.0", -+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz", -+ "integrity": "sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==" ++ "version": "2.22.0", ++ "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz", ++ "integrity": "sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==", + "license": "MIT" }, "node_modules/nanoid": { "version": "3.3.7", @@ -16359,81 +16375,70 @@ index a38125e..a1067b0 100644 "funding": [ { "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], -- "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, -@@ -11573,16 +13168,19 @@ +@@ -11573,15 +14300,21 @@ }, "node_modules/napi-build-utils": { "version": "1.0.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", -+ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" ++ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "license": "MIT" }, "node_modules/natural-compare": { "version": "1.4.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/nearley": { "version": "2.20.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "license": "MIT", "dependencies": { "commander": "^2.19.0", - "moo": "^0.5.0", -@@ -11602,31 +13200,36 @@ +@@ -11602,10 +14335,14 @@ }, "node_modules/nearley/node_modules/commander": { "version": "2.20.3", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", -+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" ++ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" }, "node_modules/negotiator": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.6" - } +@@ -11614,10 +14351,14 @@ }, "node_modules/neo-async": { "version": "2.6.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", -+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" ++ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" }, "node_modules/no-case": { "version": "3.0.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "license": "MIT", "dependencies": { "lower-case": "^2.0.2", - "tslib": "^2.0.3" +@@ -11625,7 +14366,9 @@ } }, "node_modules/node-abi": { - "version": "3.51.0", -- "license": "MIT", -+ "version": "3.67.0", -+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.67.0.tgz", -+ "integrity": "sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==", ++ "version": "3.71.0", ++ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz", ++ "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==", + "license": "MIT", "dependencies": { "semver": "^7.3.5" - }, -@@ -11634,22 +13237,10 @@ +@@ -11634,22 +14377,11 @@ "node": ">=10" } }, @@ -16449,17 +16454,17 @@ index a38125e..a1067b0 100644 - }, "node_modules/node-abi/node_modules/semver": { - "version": "7.5.4", -- "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, "bin": { "semver": "bin/semver.js" }, -@@ -11657,14 +13248,18 @@ +@@ -11657,12 +14389,18 @@ "node": ">=10" } }, @@ -16471,6 +16476,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true, ++ "license": "MIT", + "optional": true }, "node_modules/node-fetch": { @@ -16478,11 +16484,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "whatwg-url": "^5.0.0" - }, -@@ -11681,9 +13276,9 @@ +@@ -11681,9 +14419,10 @@ } }, "node_modules/node-firebird": { @@ -16492,95 +16496,89 @@ index a38125e..a1067b0 100644 + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/node-firebird/-/node-firebird-1.1.9.tgz", + "integrity": "sha512-6Ol+Koide1WbfUp4BJ1dSA4wm091jAgCwwSoihxO/RRdcfR+dMVDE9jd2Z2ixjk7q/vSNJUYORXv7jmRfvwdrw==", ++ "license": "MPL-2.0", "dependencies": { "big-integer": "^1.6.51", "long": "^5.2.3" -@@ -11691,15 +13286,17 @@ +@@ -11691,6 +14430,8 @@ }, "node_modules/node-forge": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, -- "license": "(BSD-3-Clause OR GPL-2.0)", + "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { - "node": ">= 6.13.0" - } +@@ -11699,6 +14440,8 @@ }, "node_modules/node-loader": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-2.0.0.tgz", + "integrity": "sha512-I5VN34NO4/5UYJaUBtkrODPWxbobrE4hgDqPrjB25yPkonFhCmZ146vTH+Zg417E9Iwoh1l/MbRs1apc5J295Q==", + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0" - }, -@@ -11715,13 +13312,15 @@ +@@ -11715,11 +14458,15 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", -- "license": "MIT" + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", -+ "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" ++ "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "license": "MIT" }, "node_modules/normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", -@@ -11731,27 +13330,31 @@ +@@ -11731,11 +14478,15 @@ }, "node_modules/normalize-package-data/node_modules/hosted-git-info": { "version": "2.8.9", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/normalize-package-data/node_modules/semver": { "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, -- "license": "ISC", + "license": "ISC", "bin": { - "semver": "bin/semver" - } +@@ -11744,6 +14495,8 @@ }, "node_modules/normalize-path": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -11751,6 +14504,8 @@ }, "node_modules/normalize-url": { "version": "6.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "license": "MIT", "engines": { "node": ">=10" - }, -@@ -11760,18 +13363,36 @@ +@@ -11760,17 +14515,38 @@ } }, "node_modules/npm-run-path": { - "version": "4.0.1", -- "license": "MIT", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, + "license": "MIT", "dependencies": { - "path-key": "^3.0.0" + "path-key": "^4.0.0" @@ -16598,6 +16596,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=12" + }, @@ -16607,22 +16606,21 @@ index a38125e..a1067b0 100644 }, "node_modules/nth-check": { "version": "2.1.1", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" - }, -@@ -11781,35 +13402,42 @@ +@@ -11781,6 +14557,8 @@ }, "node_modules/null-check": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz", + "integrity": "sha512-j8ZNHg19TyIQOWCGeeQJBuu6xZYIEurf8M1Qsfd8mFrGEfIZytbw18YjKWg+LcO25NowXGZXZpKAx+Ui3TFfDw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" +@@ -11788,15 +14566,22 @@ } }, "node_modules/object-inspect": { @@ -16631,7 +16629,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true, -- "license": "MIT", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, @@ -16644,9 +16642,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "devOptional": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.4" +@@ -11804,12 +14589,14 @@ } }, "node_modules/object.assign": { @@ -16655,7 +16653,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", @@ -16664,7 +16662,7 @@ index a38125e..a1067b0 100644 "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, -@@ -11821,13 +13449,14 @@ +@@ -11821,13 +14608,15 @@ } }, "node_modules/object.values": { @@ -16673,7 +16671,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", @@ -16684,75 +16682,68 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -11838,13 +13467,15 @@ +@@ -11838,11 +14627,15 @@ }, "node_modules/obuf": { "version": "1.1.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/on-finished": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ee-first": "1.1.1" - }, -@@ -11854,22 +13485,25 @@ +@@ -11854,6 +14647,8 @@ }, "node_modules/on-headers": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8" - } +@@ -11862,6 +14657,8 @@ }, "node_modules/once": { "version": "1.4.0", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", "dependencies": { "wrappy": "1" - } +@@ -11869,6 +14666,8 @@ }, "node_modules/onetime": { "version": "5.1.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" - }, -@@ -11882,15 +13516,17 @@ +@@ -11882,6 +14681,8 @@ }, "node_modules/onetime/node_modules/mimic-fn": { "version": "2.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", "engines": { "node": ">=6" - } +@@ -11889,6 +14690,8 @@ }, "node_modules/open": { "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", -@@ -11904,16 +13540,17 @@ +@@ -11904,16 +14707,18 @@ } }, "node_modules/optionator": { @@ -16761,7 +16752,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", @@ -16774,23 +16765,22 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.8.0" -@@ -11921,45 +13558,56 @@ +@@ -11921,6 +14726,8 @@ }, "node_modules/os-tmpdir": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } +@@ -11929,35 +14736,49 @@ }, "node_modules/p-cancelable": { "version": "2.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "license": "MIT", "engines": { "node": ">=8" } @@ -16801,7 +16791,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-try": "^1.0.0" + "yocto-queue": "^1.0.0" @@ -16820,123 +16810,118 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-limit": "^1.1.0" + "p-limit": "^4.0.0" }, "engines": { - "node": ">=4" +- } +- }, + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" - } - }, ++ } ++ }, "node_modules/p-retry": { "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" -@@ -11970,27 +13618,36 @@ +@@ -11970,6 +14791,8 @@ }, "node_modules/p-retry/node_modules/retry": { "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 4" +@@ -11977,19 +14800,31 @@ } }, "node_modules/p-try": { - "version": "1.0.0", - "dev": true, -- "license": "MIT", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=6" } }, + "node_modules/package-json-from-dist": { -+ "version": "1.0.0", -+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", -+ "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", -+ "dev": true ++ "version": "1.0.1", ++ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", ++ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", ++ "dev": true, ++ "license": "BlueOak-1.0.0" + }, "node_modules/pako": { "version": "1.0.11", -- "license": "(MIT AND Zlib)" + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", -+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" ++ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" }, "node_modules/param-case": { "version": "3.0.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "license": "MIT", "dependencies": { "dot-case": "^3.0.4", - "tslib": "^2.0.3" -@@ -11998,8 +13655,9 @@ +@@ -11998,6 +14833,8 @@ }, "node_modules/parent-module": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "callsites": "^3.0.0" - }, -@@ -12009,8 +13667,9 @@ +@@ -12009,6 +14846,8 @@ }, "node_modules/parse-json": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" -@@ -12021,49 +13680,57 @@ +@@ -12021,6 +14860,8 @@ }, "node_modules/parseurl": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8" - } +@@ -12029,6 +14870,8 @@ }, "node_modules/pascal-case": { "version": "3.1.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "license": "MIT", "dependencies": { "no-case": "^3.0.4", - "tslib": "^2.0.3" +@@ -12036,14 +14879,19 @@ } }, "node_modules/path-exists": { - "version": "3.0.0", -- "license": "MIT", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" @@ -16944,86 +16929,81 @@ index a38125e..a1067b0 100644 }, "node_modules/path-is-absolute": { "version": "1.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -12051,6 +14899,8 @@ }, "node_modules/path-key": { "version": "3.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", "engines": { "node": ">=8" - } +@@ -12058,10 +14908,14 @@ }, "node_modules/path-parse": { "version": "1.0.7", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", -+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" ++ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" }, "node_modules/path-scurry": { "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, -- "license": "BlueOak-1.0.0", + "license": "BlueOak-1.0.0", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" -@@ -12076,30 +13743,31 @@ +@@ -12076,20 +14930,23 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.2", -- "dev": true, ++ "version": "10.4.3", ++ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", ++ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, - "license": "ISC", - "engines": { - "node": "14 || >=16.14" - } -+ "version": "10.4.3", -+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", -+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", -+ "dev": true ++ "license": "ISC" }, "node_modules/path-to-regexp": { - "version": "0.1.7", -- "dev": true, -- "license": "MIT" -+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", -+ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", -+ "dev": true +- "version": "0.1.7", ++ "version": "0.1.10", ++ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", ++ "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", + "dev": true, + "license": "MIT" }, "node_modules/path-type": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - } +@@ -12098,6 +14955,8 @@ }, "node_modules/pegjs": { "version": "0.10.0", + "resolved": "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz", + "integrity": "sha512-qI5+oFNEGi3L5HAxDwN2LA4Gg7irF70Zs25edhjld9QemOgp0CbvMtbFcMvFtEo1OityPrcCzkQFB8JP/hxgow==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "pegjs": "bin/pegjs" - }, -@@ -12109,12 +13777,13 @@ +@@ -12109,12 +14968,15 @@ }, "node_modules/pend": { "version": "1.2.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", -+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" ++ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "license": "MIT" }, "node_modules/pg": { - "version": "8.11.5", @@ -17032,119 +17012,145 @@ index a38125e..a1067b0 100644 + "version": "8.11.6", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.6.tgz", + "integrity": "sha512-6CyL4F0j3vPmakU9rWdeRY8qF5Cjc3OE86y6YpgDI6YtKHhNyCjGEIE8U5ZRfBjKTZikwolKIFWh3I22MeRnoA==", ++ "license": "MIT", "dependencies": { "pg-connection-string": "^2.6.4", "pg-pool": "^3.6.2", -@@ -12139,23 +13808,27 @@ +@@ -12139,15 +15001,21 @@ }, "node_modules/pg-cloudflare": { "version": "1.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", + "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", + "license": "MIT", "optional": true }, "node_modules/pg-connection-string": { "version": "2.5.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", -+ "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" ++ "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==", + "license": "MIT" }, "node_modules/pg-cursor": { - "version": "2.10.3", -- "license": "MIT", -+ "version": "2.11.0", -+ "resolved": "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.11.0.tgz", -+ "integrity": "sha512-TLCOCtu+rqMarzjUi+/Ffc2DV5ZqO/27y5GqnK9Z3w51rWXMwC8FcO96Uf9/ORo5o+qRXEVJxM9Ts3K2K31MLg==", ++ "version": "2.12.0", ++ "resolved": "https://registry.npmjs.org/pg-cursor/-/pg-cursor-2.12.0.tgz", ++ "integrity": "sha512-rppw54OnuYZfMUjiJI2zJMwAjjt2V9EtLUb+t7V5tqwSE5Jxod+7vA7Y0FI6Nq976jNLciA0hoVkwvjjB8qzEw==", + "license": "MIT", "peerDependencies": { "pg": "^8" - } +@@ -12155,26 +15023,32 @@ }, "node_modules/pg-int8": { "version": "1.0.1", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "license": "ISC", "engines": { "node": ">=4.0.0" } -@@ -12175,14 +13848,16 @@ + }, + "node_modules/pg-pool": { +- "version": "3.6.2", +- "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", +- "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", ++ "version": "3.7.0", ++ "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.7.0.tgz", ++ "integrity": "sha512-ZOBQForurqh4zZWjrgSwwAtzJ7QiRX0ovFkZr2klsen3Nm0aoh33Ls0fzfv3imeH/nw/O27cjdz5kzYJfeGp/g==", ++ "license": "MIT", + "peerDependencies": { + "pg": ">=8.0" + } + }, + "node_modules/pg-protocol": { +- "version": "1.6.1", +- "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", +- "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" ++ "version": "1.7.0", ++ "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.7.0.tgz", ++ "integrity": "sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==", ++ "license": "MIT" }, "node_modules/pg-query-stream": { "version": "4.2.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pg-query-stream/-/pg-query-stream-4.2.4.tgz", + "integrity": "sha512-Et3gTrWn4C2rj4LVioNq1QDd7aH/3mSJcBm79jZALv3wopvx9bWENtbOYZbHQ6KM+IkfFxs0JF1ZLjMDJ9/N6Q==", + "license": "MIT", "dependencies": { "pg-cursor": "^2.7.4" - } +@@ -12182,6 +15056,8 @@ }, "node_modules/pg-types": { "version": "2.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "license": "MIT", "dependencies": { "pg-int8": "1.0.1", - "postgres-array": "~2.0.0", -@@ -12201,26 +13876,30 @@ +@@ -12195,12 +15071,15 @@ + } + }, + "node_modules/pg/node_modules/pg-connection-string": { +- "version": "2.6.4", +- "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", +- "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" ++ "version": "2.7.0", ++ "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.7.0.tgz", ++ "integrity": "sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==", ++ "license": "MIT" }, "node_modules/pgpass": { "version": "1.0.5", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "license": "MIT", "dependencies": { "split2": "^4.1.0" - } +@@ -12208,6 +15087,8 @@ }, "node_modules/pgsql-ast-parser": { "version": "7.2.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pgsql-ast-parser/-/pgsql-ast-parser-7.2.1.tgz", + "integrity": "sha512-j8scRJdTBSA1W6nETwevP2dH+BQGdPPFuc0mXolvCRIkRQGTpPoo1hH4a7EQ2KkA4N4quAcNvhOyaIcM7W00yg==", + "license": "MIT", "dependencies": { "moo": "^0.5.1", - "nearley": "^2.19.5" +@@ -12215,11 +15096,15 @@ } }, "node_modules/picocolors": { - "version": "1.0.0", -- "license": "ISC" -+ "version": "1.0.1", -+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", -+ "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", ++ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", "engines": { "node": ">=8.6" - }, -@@ -12230,8 +13909,9 @@ +@@ -12230,6 +15115,8 @@ }, "node_modules/pify": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", + "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=10" - }, -@@ -12241,7 +13921,8 @@ +@@ -12241,6 +15128,8 @@ }, "node_modules/pinia": { "version": "2.1.7", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.1.7.tgz", + "integrity": "sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==", + "license": "MIT", "dependencies": { "@vue/devtools-api": "^6.5.0", - "vue-demi": ">=0.14.5" -@@ -12264,9 +13945,10 @@ +@@ -12264,7 +15153,9 @@ } }, "node_modules/pinia/node_modules/vue-demi": { @@ -17153,140 +17159,127 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", "hasInstallScript": true, -- "license": "MIT", + "license": "MIT", "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" -@@ -12289,7 +13971,8 @@ +@@ -12289,6 +15180,8 @@ }, "node_modules/pkg-dir": { "version": "4.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "license": "MIT", "dependencies": { "find-up": "^4.0.0" - }, -@@ -12299,7 +13982,8 @@ +@@ -12299,6 +15192,8 @@ }, "node_modules/pkg-dir/node_modules/find-up": { "version": "4.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", "dependencies": { "locate-path": "^5.0.0", - "path-exists": "^4.0.0" -@@ -12310,7 +13994,8 @@ +@@ -12310,6 +15205,8 @@ }, "node_modules/pkg-dir/node_modules/locate-path": { "version": "5.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", "dependencies": { "p-locate": "^4.1.0" - }, -@@ -12320,7 +14005,8 @@ +@@ -12320,6 +15217,8 @@ }, "node_modules/pkg-dir/node_modules/p-limit": { "version": "2.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", "dependencies": { "p-try": "^2.0.0" - }, -@@ -12333,31 +14019,27 @@ +@@ -12333,6 +15232,8 @@ }, "node_modules/pkg-dir/node_modules/p-locate": { "version": "4.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", "dependencies": { "p-limit": "^2.2.0" - }, - "engines": { -- "node": ">=8" -- } -- }, +@@ -12341,15 +15242,10 @@ + "node": ">=8" + } + }, - "node_modules/pkg-dir/node_modules/p-try": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=6" -+ "node": ">=8" - } - }, +- } +- }, "node_modules/pkg-dir/node_modules/path-exists": { "version": "4.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", "engines": { "node": ">=8" - } +@@ -12357,6 +15253,8 @@ }, "node_modules/pkg-up": { "version": "3.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "license": "MIT", "dependencies": { "find-up": "^3.0.0" - }, -@@ -12367,7 +14049,8 @@ +@@ -12367,6 +15265,8 @@ }, "node_modules/pkg-up/node_modules/find-up": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", "dependencies": { "locate-path": "^3.0.0" - }, -@@ -12377,7 +14060,8 @@ +@@ -12377,6 +15277,8 @@ }, "node_modules/pkg-up/node_modules/locate-path": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", "dependencies": { "p-locate": "^3.0.0", - "path-exists": "^3.0.0" -@@ -12388,7 +14072,8 @@ +@@ -12388,6 +15290,8 @@ }, "node_modules/pkg-up/node_modules/p-limit": { "version": "2.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", "dependencies": { "p-try": "^2.0.0" - }, -@@ -12401,7 +14086,8 @@ +@@ -12401,6 +15305,8 @@ }, "node_modules/pkg-up/node_modules/p-locate": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", "dependencies": { "p-limit": "^2.0.0" - }, -@@ -12409,18 +14095,20 @@ +@@ -12409,15 +15315,19 @@ "node": ">=6" } }, - "node_modules/pkg-up/node_modules/p-try": { - "version": "2.2.0", -- "license": "MIT", + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=4" @@ -17298,33 +17291,26 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-92Sz6XBlfHlb9tK5UCDzIFAuIkHHpemA9zwUaqvo+w7sFMSmVMGmvKcbptof/eJObq63PGnMhM75x7qxhTR78Q==", "dev": true, "hasInstallScript": true, -- "license": "Apache-2.0", - "dependencies": { - "playwright-core": "1.28.1" - }, -@@ -12433,8 +14121,9 @@ + "license": "Apache-2.0", +@@ -12433,6 +15343,8 @@ }, "node_modules/playwright-core": { "version": "1.28.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.28.1.tgz", + "integrity": "sha512-3PixLnGPno0E8rSBJjtwqTwJe3Yw72QwBBBxNoukIj3lEeBNXwbNiKrNuB1oyQgTBw5QHUhNO3SteEtHaMK6ag==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "bin": { - "playwright": "cli.js" - }, -@@ -12444,8 +14133,9 @@ +@@ -12444,6 +15356,8 @@ }, "node_modules/plist": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@xmldom/xmldom": "^0.8.8", - "base64-js": "^1.5.1", -@@ -12455,10 +14145,19 @@ +@@ -12455,10 +15369,20 @@ "node": ">=10.4.0" } }, @@ -17333,6 +17319,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">= 0.4" + } @@ -17341,349 +17328,332 @@ index a38125e..a1067b0 100644 - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", -+ "version": "8.4.41", -+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", -+ "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", ++ "version": "8.4.47", ++ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", ++ "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", "funding": [ { "type": "opencollective", -@@ -12475,7 +14174,7 @@ +@@ -12473,10 +15397,11 @@ + "url": "https://github.com/sponsors/ai" + } ], ++ "license": "MIT", "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.0", -+ "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" +- "source-map-js": "^1.2.0" ++ "picocolors": "^1.1.0", ++ "source-map-js": "^1.2.1" }, "engines": { -@@ -12484,7 +14183,8 @@ + "node": "^10 || ^12 || >=14" +@@ -12484,6 +15409,8 @@ }, "node_modules/postcss-html": { "version": "1.5.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-1.5.0.tgz", + "integrity": "sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA==", + "license": "MIT", "dependencies": { "htmlparser2": "^8.0.0", - "js-tokens": "^8.0.0", -@@ -12496,17 +14196,20 @@ +@@ -12496,16 +15423,22 @@ } }, "node_modules/postcss-html/node_modules/js-tokens": { - "version": "8.0.2", -- "license": "MIT" + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-8.0.3.tgz", -+ "integrity": "sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==" ++ "integrity": "sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==", + "license": "MIT" }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", -- "license": "ISC", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" - }, -@@ -12515,8 +14218,9 @@ +@@ -12515,7 +15448,9 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", -- "license": "MIT", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", -@@ -12530,8 +14234,9 @@ +@@ -12530,7 +15465,9 @@ } }, "node_modules/postcss-modules-scope": { - "version": "3.0.0", -- "license": "ISC", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "license": "ISC", "dependencies": { "postcss-selector-parser": "^6.0.4" - }, -@@ -12544,7 +14249,8 @@ +@@ -12544,6 +15481,8 @@ }, "node_modules/postcss-modules-values": { "version": "4.0.0", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" - }, -@@ -12556,13 +14262,15 @@ +@@ -12556,12 +15495,16 @@ } }, "node_modules/postcss-resolve-nested-selector": { - "version": "0.1.1", -- "dev": true, -- "license": "MIT" + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", + "integrity": "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/postcss-safe-parser": { "version": "6.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", + "license": "MIT", "engines": { "node": ">=12.0" - }, -@@ -12575,8 +14283,9 @@ +@@ -12575,7 +15518,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.13", -- "license": "MIT", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" -@@ -12587,32 +14296,37 @@ +@@ -12587,10 +15532,14 @@ }, "node_modules/postcss-value-parser": { "version": "4.2.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", -+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" ++ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" }, "node_modules/postgres-array": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "license": "MIT", "engines": { "node": ">=4" - } +@@ -12598,6 +15547,8 @@ }, "node_modules/postgres-bytea": { "version": "1.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -12605,6 +15556,8 @@ }, "node_modules/postgres-date": { "version": "1.0.7", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -12612,6 +15565,8 @@ }, "node_modules/postgres-interval": { "version": "1.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "license": "MIT", "dependencies": { "xtend": "^4.0.0" - }, -@@ -12621,8 +14335,9 @@ +@@ -12621,7 +15576,9 @@ } }, "node_modules/prebuild-install": { - "version": "7.1.1", -- "license": "MIT", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", + "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", + "license": "MIT", "dependencies": { "detect-libc": "^2.0.0", - "expand-template": "^2.0.3", -@@ -12646,15 +14361,17 @@ +@@ -12646,6 +15603,8 @@ }, "node_modules/prelude-ls": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8.0" - } +@@ -12654,6 +15613,8 @@ }, "node_modules/pretty-error": { "version": "4.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "license": "MIT", "dependencies": { "lodash": "^4.17.20", - "renderkid": "^3.0.0" -@@ -12662,18 +14379,21 @@ +@@ -12662,10 +15623,14 @@ }, "node_modules/process-nextick-args": { "version": "2.0.1", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", -+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" ++ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" }, "node_modules/progress": { "version": "2.0.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", "engines": { "node": ">=0.4.0" - } +@@ -12673,6 +15638,8 @@ }, "node_modules/progress-webpack-plugin": { "version": "1.0.16", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz", + "integrity": "sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==", + "license": "MIT", "dependencies": { "chalk": "^2.1.0", - "figures": "^2.0.0", -@@ -12688,7 +14408,8 @@ +@@ -12688,6 +15655,8 @@ }, "node_modules/progress-webpack-plugin/node_modules/ansi-styles": { "version": "3.2.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" - }, -@@ -12698,7 +14419,8 @@ +@@ -12698,6 +15667,8 @@ }, "node_modules/progress-webpack-plugin/node_modules/chalk": { "version": "2.4.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", -@@ -12710,25 +14432,29 @@ +@@ -12710,6 +15681,8 @@ }, "node_modules/progress-webpack-plugin/node_modules/color-convert": { "version": "1.9.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", "dependencies": { "color-name": "1.1.3" - } +@@ -12717,10 +15690,14 @@ }, "node_modules/progress-webpack-plugin/node_modules/color-name": { "version": "1.1.3", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", -+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" ++ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" }, "node_modules/progress-webpack-plugin/node_modules/escape-string-regexp": { "version": "1.0.5", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", "engines": { "node": ">=0.8.0" - } +@@ -12728,6 +15705,8 @@ }, "node_modules/progress-webpack-plugin/node_modules/figures": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" - }, -@@ -12738,14 +14464,16 @@ +@@ -12738,6 +15717,8 @@ }, "node_modules/progress-webpack-plugin/node_modules/has-flag": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", "engines": { "node": ">=4" - } +@@ -12745,6 +15726,8 @@ }, "node_modules/progress-webpack-plugin/node_modules/supports-color": { "version": "5.5.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" - }, -@@ -12755,8 +14483,9 @@ +@@ -12755,6 +15738,8 @@ }, "node_modules/promise-retry": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" -@@ -12767,8 +14496,9 @@ +@@ -12767,6 +15752,8 @@ }, "node_modules/proxy-addr": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" -@@ -12779,15 +14509,17 @@ +@@ -12779,6 +15766,8 @@ }, "node_modules/proxy-addr/node_modules/ipaddr.js": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.10" +@@ -12786,7 +15775,9 @@ } }, "node_modules/pump": { - "version": "3.0.0", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", -+ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", +- "version": "3.0.0", ++ "version": "3.0.2", ++ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", ++ "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", - "once": "^1.3.1" -@@ -12795,15 +14527,18 @@ +@@ -12795,6 +15786,8 @@ }, "node_modules/punycode": { "version": "2.3.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", "engines": { "node": ">=6" - } +@@ -12802,6 +15795,9 @@ }, "node_modules/q": { "version": "1.5.1", @@ -17691,22 +17661,25 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" -@@ -12811,8 +14546,9 @@ +@@ -12810,11 +15806,13 @@ + } }, "node_modules/qs": { - "version": "6.11.0", -+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", -+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", +- "version": "6.11.0", ++ "version": "6.13.0", ++ "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", ++ "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dev": true, -- "license": "BSD-3-Clause", + "license": "BSD-3-Clause", "dependencies": { - "side-channel": "^1.0.4" +- "side-channel": "^1.0.4" ++ "side-channel": "^1.0.6" }, -@@ -12825,6 +14561,8 @@ + "engines": { + "node": ">=0.6" +@@ -12825,6 +15823,8 @@ }, "node_modules/queue-microtask": { "version": "1.2.3", @@ -17715,149 +17688,129 @@ index a38125e..a1067b0 100644 "dev": true, "funding": [ { -@@ -12839,12 +14577,12 @@ - "type": "consulting", - "url": "https://feross.org/support" - } -- ], -- "license": "MIT" -+ ] +@@ -12844,6 +15844,8 @@ }, "node_modules/quick-lru": { "version": "5.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "license": "MIT", "engines": { "node": ">=10" - }, -@@ -12854,11 +14592,13 @@ +@@ -12854,10 +15856,14 @@ }, "node_modules/railroad-diagrams": { "version": "1.0.0", -- "license": "CC0-1.0" + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", -+ "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" ++ "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==", + "license": "CC0-1.0" }, "node_modules/randexp": { "version": "0.4.6", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "license": "MIT", "dependencies": { "discontinuous-range": "1.0.0", - "ret": "~0.1.10" -@@ -12869,23 +14609,26 @@ +@@ -12869,6 +15875,8 @@ }, "node_modules/randombytes": { "version": "2.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "license": "MIT", "dependencies": { "safe-buffer": "^5.1.0" - } +@@ -12876,6 +15884,8 @@ }, "node_modules/range-parser": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.6" - } +@@ -12884,6 +15894,8 @@ }, "node_modules/raw-body": { "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", -@@ -12898,16 +14641,18 @@ +@@ -12898,6 +15910,8 @@ }, "node_modules/raw-body/node_modules/bytes": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8" - } +@@ -12906,6 +15920,8 @@ }, "node_modules/raw-body/node_modules/iconv-lite": { "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, -@@ -12917,7 +14662,8 @@ +@@ -12917,6 +15933,8 @@ }, "node_modules/rc": { "version": "1.2.8", -- "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", - "ini": "~1.3.0", -@@ -12928,17 +14674,24 @@ +@@ -12928,8 +15946,16 @@ "rc": "cli.js" } }, + "node_modules/rc/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", -+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" ++ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", ++ "license": "ISC" + }, "node_modules/rc/node_modules/strip-json-comments": { "version": "2.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -12937,6 +15963,8 @@ }, "node_modules/read-config-file": { "version": "6.3.2", + "resolved": "https://registry.npmjs.org/read-config-file/-/read-config-file-6.3.2.tgz", + "integrity": "sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "config-file-ts": "^0.2.4", - "dotenv": "^9.0.2", -@@ -12953,8 +14706,9 @@ +@@ -12953,6 +15981,8 @@ }, "node_modules/read-pkg": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", -@@ -12966,8 +14720,9 @@ +@@ -12966,6 +15996,8 @@ }, "node_modules/read-pkg-up": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "find-up": "^2.0.0", - "read-pkg": "^3.0.0" -@@ -12976,10 +14731,78 @@ +@@ -12976,8 +16008,83 @@ "node": ">=4" } }, @@ -17866,6 +17819,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, @@ -17878,6 +17832,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" @@ -17891,6 +17846,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, @@ -17903,6 +17859,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, ++ "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, @@ -17915,6 +17872,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=4" + } @@ -17924,6 +17882,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=4" + } @@ -17933,232 +17892,234 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "pify": "^3.0.0" - }, -@@ -12989,15 +14812,17 @@ +@@ -12989,6 +16096,8 @@ }, "node_modules/read-pkg/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=4" - } +@@ -12997,6 +16106,8 @@ }, "node_modules/readable-stream": { "version": "3.6.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { "inherits": "^2.0.3", - "string_decoder": "^1.1.1", -@@ -13009,8 +14834,9 @@ +@@ -13009,6 +16120,8 @@ }, "node_modules/readdir-glob": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", + "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "peer": true, - "dependencies": { - "minimatch": "^5.1.0" -@@ -13018,7 +14844,8 @@ +@@ -13018,6 +16131,8 @@ }, "node_modules/readdirp": { "version": "3.6.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", "dependencies": { "picomatch": "^2.2.1" - }, -@@ -13028,7 +14855,8 @@ +@@ -13028,6 +16143,8 @@ }, "node_modules/rechoir": { "version": "0.7.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "license": "MIT", "dependencies": { "resolve": "^1.9.0" - }, -@@ -13038,8 +14866,9 @@ +@@ -13038,6 +16155,8 @@ }, "node_modules/redent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" -@@ -13050,13 +14879,15 @@ +@@ -13050,11 +16169,15 @@ }, "node_modules/regenerate": { "version": "1.4.2", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", -+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", -+ "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", +- "version": "10.1.1", ++ "version": "10.2.0", ++ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", ++ "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "regenerate": "^1.4.2" - }, -@@ -13065,26 +14896,30 @@ +@@ -13065,12 +16188,16 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.14.0", -- "dev": true, -- "license": "MIT" + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/regenerator-transform": { "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.8.4" +@@ -13078,13 +16205,16 @@ } }, "node_modules/regexp.prototype.flags": { - "version": "1.5.1", -+ "version": "1.5.2", -+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", -+ "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", ++ "version": "1.5.3", ++ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", ++ "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" -+ "call-bind": "^1.0.6", ++ "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", -+ "set-function-name": "^2.0.1" ++ "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" -@@ -13095,8 +14930,9 @@ +@@ -13095,6 +16225,8 @@ }, "node_modules/regexpp": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - }, -@@ -13106,8 +14942,9 @@ +@@ -13105,14 +16237,16 @@ + } }, "node_modules/regexpu-core": { - "version": "5.3.2", -+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", -+ "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", +- "version": "5.3.2", ++ "version": "6.1.1", ++ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.1.1.tgz", ++ "integrity": "sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/regjsgen": "^0.8.0", +- "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", -@@ -13122,8 +14959,9 @@ - }, - "node_modules/regjsparser": { - "version": "0.9.1", -+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", -+ "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, -- "license": "BSD-2-Clause", - "dependencies": { - "jsesc": "~0.5.0" +- "regenerate-unicode-properties": "^10.1.0", +- "regjsparser": "^0.9.1", ++ "regenerate-unicode-properties": "^10.2.0", ++ "regjsgen": "^0.8.0", ++ "regjsparser": "^0.11.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" }, -@@ -13133,6 +14971,8 @@ +@@ -13120,26 +16254,30 @@ + "node": ">=4" + } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", -+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", -+ "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", ++ "node_modules/regjsgen": { ++ "version": "0.8.0", ++ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", ++ "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", ++ "dev": true, ++ "license": "MIT" ++ }, + "node_modules/regjsparser": { +- "version": "0.9.1", ++ "version": "0.11.1", ++ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.11.1.tgz", ++ "integrity": "sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ==", "dev": true, + "license": "BSD-2-Clause", + "dependencies": { +- "jsesc": "~0.5.0" ++ "jsesc": "~3.0.2" + }, "bin": { - "jsesc": "bin/jsesc" -@@ -13140,14 +14980,16 @@ + "regjsparser": "bin/parser" + } }, +- "node_modules/regjsparser/node_modules/jsesc": { +- "version": "0.5.0", +- "dev": true, +- "bin": { +- "jsesc": "bin/jsesc" +- } +- }, "node_modules/relateurl": { "version": "0.2.7", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "license": "MIT", "engines": { "node": ">= 0.10" - } +@@ -13147,6 +16285,8 @@ }, "node_modules/renderkid": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "license": "MIT", "dependencies": { "css-select": "^4.1.3", - "dom-converter": "^0.2.0", -@@ -13158,7 +15000,8 @@ +@@ -13158,6 +16298,8 @@ }, "node_modules/renderkid/node_modules/dom-serializer": { "version": "1.4.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", -@@ -13170,7 +15013,8 @@ +@@ -13170,6 +16312,8 @@ }, "node_modules/renderkid/node_modules/domhandler": { "version": "4.3.1", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" - }, -@@ -13183,7 +15027,8 @@ +@@ -13183,6 +16327,8 @@ }, "node_modules/renderkid/node_modules/domutils": { "version": "2.8.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", -@@ -13195,13 +15040,16 @@ +@@ -13195,6 +16341,8 @@ }, "node_modules/renderkid/node_modules/entities": { "version": "2.2.0", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" - } +@@ -13202,6 +16350,8 @@ }, "node_modules/renderkid/node_modules/htmlparser2": { "version": "6.1.0", @@ -18167,85 +18128,72 @@ index a38125e..a1067b0 100644 "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { -@@ -13209,7 +15057,6 @@ - "url": "https://github.com/sponsors/fb55" - } - ], -- "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", -@@ -13219,32 +15066,37 @@ +@@ -13219,6 +16369,8 @@ }, "node_modules/require-directory": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } +@@ -13227,6 +16379,8 @@ }, "node_modules/require-from-string": { "version": "2.0.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", "engines": { "node": ">=0.10.0" - } +@@ -13234,16 +16388,22 @@ }, "node_modules/require-main-filename": { "version": "2.0.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/requires-port": { "version": "1.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/resolve": { "version": "1.22.8", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", "dependencies": { "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", -@@ -13259,11 +15111,13 @@ +@@ -13259,10 +16419,14 @@ }, "node_modules/resolve-alpn": { "version": "1.2.1", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", -+ "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" ++ "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "license": "MIT" }, "node_modules/resolve-cwd": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" - }, -@@ -13271,24 +15125,18 @@ +@@ -13271,23 +16435,19 @@ "node": ">=8" } }, - "node_modules/resolve-cwd/node_modules/resolve-from": { + "node_modules/resolve-from": { "version": "5.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", "engines": { "node": ">=8" } @@ -18260,24 +18208,21 @@ index a38125e..a1067b0 100644 - }, "node_modules/responselike": { "version": "2.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "license": "MIT", "dependencies": { "lowercase-keys": "^2.0.0" - }, -@@ -13298,8 +15146,9 @@ +@@ -13298,6 +16458,8 @@ }, "node_modules/restore-cursor": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" -@@ -13308,25 +15157,34 @@ +@@ -13308,8 +16470,17 @@ "node": ">=8" } }, @@ -18285,68 +18230,63 @@ index a38125e..a1067b0 100644 + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", -+ "dev": true ++ "dev": true, ++ "license": "ISC" + }, "node_modules/ret": { "version": "0.1.15", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "license": "MIT", "engines": { "node": ">=0.12" - } +@@ -13317,6 +16488,8 @@ }, "node_modules/retry": { "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 4" - } +@@ -13325,6 +16498,8 @@ }, "node_modules/reusify": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" -@@ -13334,7 +15192,9 @@ +@@ -13334,6 +16509,9 @@ }, "node_modules/rimraf": { "version": "3.0.2", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", "dependencies": { "glob": "^7.1.3" - }, -@@ -13347,7 +15207,8 @@ +@@ -13347,6 +16525,8 @@ }, "node_modules/roarr": { "version": "2.15.4", -- "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "license": "BSD-3-Clause", "optional": true, "dependencies": { - "boolean": "^3.0.1", -@@ -13363,14 +15224,17 @@ +@@ -13363,6 +16543,8 @@ }, "node_modules/run-async": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.12.0" - } +@@ -13371,6 +16553,8 @@ }, "node_modules/run-parallel": { "version": "1.2.0", @@ -18355,33 +18295,23 @@ index a38125e..a1067b0 100644 "dev": true, "funding": [ { -@@ -13386,15 +15250,15 @@ - "url": "https://feross.org/support" - } - ], -- "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } +@@ -13393,6 +16577,8 @@ }, "node_modules/rxjs": { "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "tslib": "^1.9.0" - }, -@@ -13404,16 +15268,18 @@ +@@ -13404,16 +16590,20 @@ }, "node_modules/rxjs/node_modules/tslib": { "version": "1.14.1", -- "dev": true, -- "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", -+ "dev": true + "dev": true, + "license": "0BSD" }, "node_modules/safe-array-concat": { - "version": "1.0.1", @@ -18389,7 +18319,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", @@ -18398,7 +18328,7 @@ index a38125e..a1067b0 100644 "has-symbols": "^1.0.3", "isarray": "^2.0.5" }, -@@ -13426,6 +15292,8 @@ +@@ -13426,6 +16616,8 @@ }, "node_modules/safe-buffer": { "version": "5.2.1", @@ -18407,13 +18337,8 @@ index a38125e..a1067b0 100644 "funding": [ { "type": "github", -@@ -13439,37 +15307,43 @@ - "type": "consulting", - "url": "https://feross.org/support" - } -- ], -- "license": "MIT" -+ ] +@@ -13443,24 +16635,33 @@ + "license": "MIT" }, "node_modules/safe-regex-test": { - "version": "1.0.0", @@ -18421,7 +18346,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", @@ -18438,57 +18363,53 @@ index a38125e..a1067b0 100644 }, "node_modules/safer-buffer": { "version": "2.1.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", -+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" ++ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" }, "node_modules/sanitize-filename": { "version": "1.6.3", + "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", + "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", "dev": true, -- "license": "WTFPL OR ISC", + "license": "WTFPL OR ISC", "dependencies": { - "truncate-utf8-bytes": "^1.0.0" - } +@@ -13469,6 +16670,8 @@ }, "node_modules/sass": { "version": "1.42.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.42.1.tgz", + "integrity": "sha512-/zvGoN8B7dspKc5mC6HlaygyCBRvnyzzgD5khiaCfglWztY99cYoiTUksVx11NlnemrcfH5CEaCpsUKoW0cQqg==", + "license": "MIT", "dependencies": { "chokidar": ">=3.0.0 <4.0.0" - }, -@@ -13482,7 +15356,8 @@ +@@ -13482,6 +16685,8 @@ }, "node_modules/sass-loader": { "version": "12.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.3.0.tgz", + "integrity": "sha512-6l9qwhdOb7qSrtOu96QQ81LVl8v6Dp9j1w3akOm0aWHyrTYtagDt5+kS32N4yq4hHk3M+rdqoRMH+lIdqvW6HA==", + "license": "MIT", "dependencies": { "klona": "^2.0.4", - "neo-async": "^2.6.2" -@@ -13513,12 +15388,14 @@ +@@ -13513,11 +16718,15 @@ } }, "node_modules/sax": { - "version": "1.3.0", -- "license": "ISC" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", -+ "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" ++ "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "license": "ISC" }, "node_modules/schema-utils": { "version": "2.7.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", -@@ -13532,15 +15409,45 @@ +@@ -13532,13 +16741,48 @@ "url": "https://opencollective.com/webpack" } }, @@ -18496,6 +18417,7 @@ index a38125e..a1067b0 100644 + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", @@ -18511,6 +18433,7 @@ index a38125e..a1067b0 100644 + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } @@ -18518,91 +18441,93 @@ index a38125e..a1067b0 100644 + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "license": "MIT" + }, "node_modules/select-hose": { "version": "2.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/selfsigned": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@types/node-forge": "^1.3.0", - "node-forge": "^1" -@@ -13551,20 +15458,23 @@ +@@ -13551,6 +16795,8 @@ }, "node_modules/semver": { "version": "6.3.1", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", "bin": { "semver": "bin/semver.js" - } +@@ -13558,11 +16804,15 @@ }, "node_modules/semver-compare": { "version": "1.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "license": "MIT", "optional": true }, "node_modules/send": { - "version": "0.18.0", -+ "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", -+ "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", +- "version": "0.18.0", ++ "version": "0.19.0", ++ "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", ++ "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", -@@ -13586,21 +15496,24 @@ +@@ -13586,6 +16836,8 @@ }, "node_modules/send/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ms": "2.0.0" - } +@@ -13594,11 +16846,25 @@ }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true + "dev": true, + "license": "MIT" }, ++ "node_modules/send/node_modules/encodeurl": { ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", ++ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", ++ "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": ">= 0.8" ++ } ++ }, "node_modules/send/node_modules/mime": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "mime": "cli.js" - }, -@@ -13610,15 +15523,19 @@ +@@ -13608,16 +16874,15 @@ + "node": ">=4" + } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", +- "node_modules/send/node_modules/ms": { +- "version": "2.1.3", - "dev": true, - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", -+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", -+ "dev": true - }, +- }, "node_modules/seq-queue": { - "version": "0.0.5" + "version": "0.0.5", @@ -18611,127 +18536,123 @@ index a38125e..a1067b0 100644 }, "node_modules/serialize-error": { "version": "7.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "license": "MIT", "optional": true, "dependencies": { - "type-fest": "^0.13.1" -@@ -13632,7 +15549,8 @@ +@@ -13632,6 +16897,8 @@ }, "node_modules/serialize-error/node_modules/type-fest": { "version": "0.13.1", -- "license": "(MIT OR CC0-1.0)", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "license": "(MIT OR CC0-1.0)", "optional": true, "engines": { - "node": ">=10" -@@ -13643,15 +15561,17 @@ +@@ -13643,6 +16910,8 @@ }, "node_modules/serialize-javascript": { "version": "6.0.2", -- "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" - } +@@ -13650,6 +16919,8 @@ }, "node_modules/serve-index": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", -@@ -13667,24 +15587,27 @@ +@@ -13667,6 +16938,8 @@ }, "node_modules/serve-index/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ms": "2.0.0" - } +@@ -13675,6 +16948,8 @@ }, "node_modules/serve-index/node_modules/depd": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.6" - } +@@ -13683,6 +16958,8 @@ }, "node_modules/serve-index/node_modules/http-errors": { "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", -@@ -13697,31 +15620,36 @@ +@@ -13697,21 +16974,29 @@ }, "node_modules/serve-index/node_modules/inherits": { "version": "2.0.3", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/serve-index/node_modules/setprototypeof": { "version": "1.1.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/serve-index/node_modules/statuses": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.6" +@@ -13719,14 +17004,16 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", -+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", -+ "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", +- "version": "1.15.0", ++ "version": "1.16.2", ++ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", ++ "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "encodeurl": "~1.0.2", +- "encodeurl": "~1.0.2", ++ "encodeurl": "~2.0.0", "escape-html": "~1.0.3", -@@ -13734,31 +15662,37 @@ + "parseurl": "~1.3.3", +- "send": "0.18.0" ++ "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" +@@ -13734,31 +17021,40 @@ }, "node_modules/set-blocking": { "version": "2.0.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/set-function-length": { - "version": "1.1.1", @@ -18739,7 +18660,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", @@ -18761,7 +18682,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "define-data-property": "^1.0.1", + "define-data-property": "^1.1.4", @@ -18772,47 +18693,44 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -13766,16 +15700,19 @@ +@@ -13766,15 +17062,21 @@ }, "node_modules/setimmediate": { "version": "1.0.5", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", -+ "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" ++ "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" }, "node_modules/setprototypeof": { "version": "1.2.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/shallow-clone": { "version": "3.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", "dependencies": { "kind-of": "^6.0.2" - }, -@@ -13785,7 +15722,8 @@ +@@ -13785,6 +17087,8 @@ }, "node_modules/shebang-command": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" - }, -@@ -13795,30 +15733,46 @@ +@@ -13795,30 +17099,49 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", "engines": { "node": ">=8" } @@ -18823,7 +18741,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", @@ -18847,6 +18765,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, ++ "license": "ISC", + "engines": { + "node": ">=14" + }, @@ -18861,13 +18780,7 @@ index a38125e..a1067b0 100644 "funding": [ { "type": "github", -@@ -13832,11 +15786,12 @@ - "type": "consulting", - "url": "https://feross.org/support" - } -- ], -- "license": "MIT" -+ ] +@@ -13837,6 +17160,8 @@ }, "node_modules/simple-get": { "version": "4.0.1", @@ -18876,26 +18789,16 @@ index a38125e..a1067b0 100644 "funding": [ { "type": "github", -@@ -13851,7 +15806,6 @@ - "url": "https://feross.org/support" - } - ], -- "license": "MIT", - "dependencies": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", -@@ -13860,8 +15814,9 @@ +@@ -13860,6 +17185,8 @@ }, "node_modules/simple-update-notifier": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", + "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "semver": "^7.5.3" - }, -@@ -13869,24 +15824,11 @@ +@@ -13869,24 +17196,12 @@ "node": ">=10" } }, @@ -18916,14 +18819,14 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, -- "license": "ISC", + "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, -@@ -13894,23 +15836,46 @@ +@@ -13894,21 +17209,48 @@ "node": ">=10" } }, @@ -18935,6 +18838,7 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "license": "ISC" ++ "license": "MIT", + "engines": { + "node": ">=8" + } @@ -18945,7 +18849,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, -- "license": "MIT", + "license": "MIT", + "optional": true, + "dependencies": { + "ansi-styles": "^4.0.0", @@ -18961,6 +18865,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, ++ "license": "MIT", + "optional": true, + "engines": { + "node": ">= 6.0.0", @@ -18972,148 +18877,145 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", -@@ -13919,11 +15884,13 @@ +@@ -13919,25 +17261,32 @@ }, "node_modules/sortablejs": { "version": "1.14.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz", -+ "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==" ++ "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==", + "license": "MIT" }, "node_modules/source-map": { "version": "0.6.1", -- "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { +- "version": "1.2.0", +- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", +- "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", ++ "version": "1.2.1", ++ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", ++ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", ++ "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } -@@ -13938,7 +15905,8 @@ }, "node_modules/source-map-support": { "version": "0.5.21", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", - "source-map": "^0.6.0" -@@ -13946,40 +15914,47 @@ +@@ -13946,10 +17295,15 @@ }, "node_modules/sourcemap-codec": { "version": "1.4.8", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", -+ "deprecated": "Please use @jridgewell/sourcemap-codec instead" ++ "deprecated": "Please use @jridgewell/sourcemap-codec instead", + "license": "MIT" }, "node_modules/spdx-correct": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" +@@ -13958,12 +17312,16 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.3.0", -- "dev": true, -- "license": "CC-BY-3.0" + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", -+ "dev": true + "dev": true, + "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" +@@ -13972,12 +17330,16 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.16", -- "dev": true, -- "license": "CC0-1.0" + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", -+ "dev": true + "dev": true, + "license": "CC0-1.0" }, "node_modules/spdy": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", -@@ -13993,8 +15968,9 @@ +@@ -13993,6 +17355,8 @@ }, "node_modules/spdy-transport": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", -@@ -14006,12 +15982,14 @@ +@@ -14006,10 +17370,14 @@ }, "node_modules/spectre.css": { "version": "0.5.9", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/spectre.css/-/spectre.css-0.5.9.tgz", -+ "integrity": "sha512-9jUqwZmCnvflrxFGcK+ize43TvjwDjqMwZPVubEtSIHzvinH0TBUESm1LcOJx3Ur7bdPaeOHQIjOqBl1Y5kLFw==" ++ "integrity": "sha512-9jUqwZmCnvflrxFGcK+ize43TvjwDjqMwZPVubEtSIHzvinH0TBUESm1LcOJx3Ur7bdPaeOHQIjOqBl1Y5kLFw==", + "license": "MIT" }, "node_modules/split": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "through": "2" - }, -@@ -14021,18 +15999,21 @@ +@@ -14021,6 +17389,8 @@ }, "node_modules/split2": { "version": "4.2.0", -- "license": "ISC", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "license": "ISC", "engines": { "node": ">= 10.x" - } +@@ -14028,10 +17398,14 @@ }, "node_modules/sprintf-js": { "version": "1.1.2", -- "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", -+ "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" ++ "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", + "license": "BSD-3-Clause" }, "node_modules/sql-formatter": { "version": "13.0.4", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/sql-formatter/-/sql-formatter-13.0.4.tgz", + "integrity": "sha512-6pns27iQ5yT8jmle4cqvpfXNl29/AGOT4KtmzhtI2zgH1J0RbpZdduqTRzem7UCta+gvrj4HC1O9l6mTSUHoRg==", + "license": "MIT", "dependencies": { "argparse": "^2.0.1", - "get-stdin": "=8.0.0", -@@ -14043,7 +16024,9 @@ +@@ -14043,7 +17417,9 @@ } }, "node_modules/sql-highlight": { @@ -19124,23 +19026,16 @@ index a38125e..a1067b0 100644 "funding": [ "https://github.com/scriptcoded/sql-highlight?sponsor=1", { -@@ -14051,20 +16034,22 @@ - "url": "https://github.com/sponsors/scriptcoded" - } - ], -- "license": "MIT", - "engines": { - "node": ">=14" - } +@@ -14058,6 +17434,8 @@ }, "node_modules/sqlstring": { "version": "2.3.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz", + "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==", + "license": "MIT", "engines": { "node": ">= 0.6" - } +@@ -14065,6 +17443,8 @@ }, "node_modules/ssh2": { "version": "1.14.0", @@ -19149,7 +19044,7 @@ index a38125e..a1067b0 100644 "hasInstallScript": true, "dependencies": { "asn1": "^0.2.6", -@@ -14080,8 +16065,10 @@ +@@ -14080,6 +17460,9 @@ }, "node_modules/standard-version": { "version": "9.3.2", @@ -19157,67 +19052,59 @@ index a38125e..a1067b0 100644 + "integrity": "sha512-u1rfKP4o4ew7Yjbfycv80aNMN2feTiqseAhUhrrx2XtdQGmu7gucpziXe68Z4YfHVqlxVEzo4aUA0Iu3VQOTgQ==", + "deprecated": "standard-version is deprecated. If you're a GitHub user, I recommend https://github.com/googleapis/release-please as an alternative.", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "chalk": "^2.4.2", - "conventional-changelog": "3.1.24", -@@ -14108,8 +16095,9 @@ +@@ -14108,6 +17491,8 @@ }, "node_modules/standard-version/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" - }, -@@ -14119,8 +16107,9 @@ +@@ -14119,6 +17504,8 @@ }, "node_modules/standard-version/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", -@@ -14132,8 +16121,9 @@ +@@ -14132,6 +17519,8 @@ }, "node_modules/standard-version/node_modules/cliui": { "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", -@@ -14142,29 +16132,47 @@ +@@ -14142,6 +17531,8 @@ }, "node_modules/standard-version/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "color-name": "1.1.3" - } +@@ -14150,11 +17541,30 @@ }, "node_modules/standard-version/node_modules/color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", -+ "dev": true -+ }, + "dev": true, + "license": "MIT" + }, + "node_modules/standard-version/node_modules/conventional-changelog-conventionalcommits": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.1.tgz", + "integrity": "sha512-lzWJpPZhbM1R0PIzkwzGBCnAkH5RKJzJfFQZcl/D+2lsJxAwGnDKBqn/F4C1RD31GJNn8NuKWQzAZDAVXPp2Mw==", - "dev": true, -- "license": "MIT" ++ "dev": true, ++ "license": "ISC", + "dependencies": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", @@ -19226,48 +19113,42 @@ index a38125e..a1067b0 100644 + "engines": { + "node": ">=10" + } - }, ++ }, "node_modules/standard-version/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.8.0" - } +@@ -14163,6 +17573,8 @@ }, "node_modules/standard-version/node_modules/find-up": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" -@@ -14178,16 +16186,18 @@ +@@ -14178,6 +17590,8 @@ }, "node_modules/standard-version/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=4" - } +@@ -14186,6 +17600,8 @@ }, "node_modules/standard-version/node_modules/locate-path": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-locate": "^5.0.0" - }, -@@ -14198,21 +16208,11 @@ +@@ -14198,19 +17614,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, @@ -19287,31 +19168,27 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" - }, -@@ -14225,8 +16225,9 @@ +@@ -14225,6 +17632,8 @@ }, "node_modules/standard-version/node_modules/p-locate": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-limit": "^3.0.2" - }, -@@ -14239,19 +16240,18 @@ +@@ -14239,6 +17648,8 @@ }, "node_modules/standard-version/node_modules/path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" +@@ -14246,12 +17657,11 @@ } }, "node_modules/standard-version/node_modules/semver": { @@ -19320,64 +19197,58 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, -- "license": "ISC", + "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, -@@ -14261,8 +16261,9 @@ +@@ -14261,6 +17671,8 @@ }, "node_modules/standard-version/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" - }, -@@ -14272,8 +16273,9 @@ +@@ -14272,6 +17684,8 @@ }, "node_modules/standard-version/node_modules/wrap-ansi": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", -@@ -14288,8 +16290,9 @@ +@@ -14288,6 +17702,8 @@ }, "node_modules/standard-version/node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, -@@ -14302,8 +16305,9 @@ +@@ -14302,6 +17718,8 @@ }, "node_modules/standard-version/node_modules/wrap-ansi/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" - }, -@@ -14313,26 +16317,15 @@ +@@ -14313,24 +17731,15 @@ }, "node_modules/standard-version/node_modules/wrap-ansi/node_modules/color-name": { "version": "1.1.4", -- "dev": true, -- "license": "MIT" -- }, ++ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", ++ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, - "node_modules/standard-version/node_modules/y18n": { - "version": "5.0.8", - "dev": true, @@ -19390,20 +19261,15 @@ index a38125e..a1067b0 100644 - "version": "4.0.0", - "dev": true, - "license": "ISC" -+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", -+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", -+ "dev": true - }, +- }, "node_modules/standard-version/node_modules/yargs": { "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", -@@ -14346,33 +16339,58 @@ +@@ -14346,8 +17755,33 @@ "node": ">=10" } }, @@ -19412,6 +19278,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, ++ "license": "ISC", + "engines": { + "node": ">=10" + } @@ -19421,6 +19288,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=10" + }, @@ -19433,51 +19301,45 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", + "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 6" - } +@@ -14356,6 +17790,8 @@ }, "node_modules/statuses": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8" - } +@@ -14364,6 +17800,8 @@ }, "node_modules/string_decoder": { "version": "1.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" - } +@@ -14371,6 +17809,8 @@ }, "node_modules/string-width": { "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", -@@ -14385,8 +16403,9 @@ +@@ -14385,6 +17825,8 @@ "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", -@@ -14397,13 +16416,15 @@ +@@ -14397,13 +17839,16 @@ } }, "node_modules/string.prototype.trim": { @@ -19486,7 +19348,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", @@ -19498,7 +19360,7 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -14413,26 +16434,31 @@ +@@ -14413,26 +17858,33 @@ } }, "node_modules/string.prototype.trimend": { @@ -19507,7 +19369,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", @@ -19526,7 +19388,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", @@ -19540,55 +19402,51 @@ index a38125e..a1067b0 100644 }, "funding": { "url": "https://github.com/sponsors/ljharb" -@@ -14440,12 +16466,15 @@ +@@ -14440,11 +17892,16 @@ }, "node_modules/stringify-package": { "version": "1.0.1", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz", + "integrity": "sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==", + "deprecated": "This module is not used anymore, and has been replaced by @npmcli/package-json", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/strip-ansi": { "version": "6.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" - }, -@@ -14456,8 +16485,9 @@ +@@ -14456,6 +17913,8 @@ "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" - }, -@@ -14467,23 +16497,30 @@ +@@ -14467,6 +17926,8 @@ }, "node_modules/strip-bom": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=4" +@@ -14474,14 +17935,22 @@ } }, "node_modules/strip-final-newline": { - "version": "2.0.0", -- "license": "MIT", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=12" @@ -19602,86 +19460,72 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "min-indent": "^1.0.0" - }, -@@ -14493,8 +16530,9 @@ +@@ -14493,6 +17962,8 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - }, -@@ -14503,8 +16541,9 @@ +@@ -14503,7 +17974,9 @@ } }, "node_modules/style-loader": { - "version": "3.3.3", -- "license": "MIT", + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "license": "MIT", "engines": { "node": ">= 12.13.0" - }, -@@ -14518,13 +16557,15 @@ +@@ -14518,11 +17991,15 @@ }, "node_modules/style-search": { "version": "0.1.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/stylelint": { "version": "15.11.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.11.0.tgz", + "integrity": "sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@csstools/css-parser-algorithms": "^2.3.1", - "@csstools/css-tokenizer": "^2.2.0", -@@ -14580,8 +16621,9 @@ +@@ -14580,6 +18057,8 @@ }, "node_modules/stylelint-config-html": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz", + "integrity": "sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": "^12 || >=14" - }, -@@ -14595,8 +16637,9 @@ +@@ -14595,6 +18074,8 @@ }, "node_modules/stylelint-config-recommended": { "version": "13.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz", + "integrity": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": "^14.13.1 || >=16.0.0" - }, -@@ -14606,8 +16649,9 @@ +@@ -14606,6 +18087,8 @@ }, "node_modules/stylelint-config-recommended-vue": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.5.0.tgz", + "integrity": "sha512-65TAK/clUqkNtkZLcuytoxU0URQYlml+30Nhop7sRkCZ/mtWdXt7T+spPSB3KMKlb+82aEVJ4OrcstyDBdbosg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "semver": "^7.3.5", - "stylelint-config-html": ">=1.0.0", -@@ -14624,24 +16668,11 @@ +@@ -14624,24 +18107,12 @@ "stylelint": ">=14.0.0" } }, @@ -19702,14 +19546,14 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, -- "license": "ISC", + "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, -@@ -14649,15 +16680,33 @@ +@@ -14649,13 +18120,33 @@ "node": ">=10" } }, @@ -19731,6 +19575,7 @@ index a38125e..a1067b0 100644 + "url": "https://github.com/sponsors/stylelint" + } + ], ++ "license": "MIT", + "engines": { + "node": ">=18.12.0" + }, @@ -19743,11 +19588,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-34.0.0.tgz", + "integrity": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "stylelint-config-recommended": "^13.0.0" - }, -@@ -14669,9 +16718,10 @@ +@@ -14669,7 +18160,9 @@ } }, "node_modules/stylelint-scss": { @@ -19756,107 +19599,88 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-5.3.2.tgz", + "integrity": "sha512-4LzLaayFhFyneJwLo0IUa8knuIvj+zF0vBFueQs4e3tEaAMIQX8q5th8ziKkgOavr6y/y9yoBe+RXN/edwLzsQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "known-css-properties": "^0.29.0", - "postcss-media-query-parser": "^0.2.3", -@@ -14685,13 +16735,15 @@ +@@ -14685,11 +18178,15 @@ }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/stylelint/node_modules/camelcase": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=10" - }, -@@ -14701,8 +16753,9 @@ +@@ -14701,6 +18198,8 @@ }, "node_modules/stylelint/node_modules/camelcase-keys": { "version": "7.0.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", + "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "camelcase": "^6.3.0", - "map-obj": "^4.1.0", -@@ -14718,8 +16771,9 @@ +@@ -14718,6 +18217,8 @@ }, "node_modules/stylelint/node_modules/cosmiconfig": { "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", -@@ -14743,8 +16797,9 @@ +@@ -14743,6 +18244,8 @@ }, "node_modules/stylelint/node_modules/decamelize": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", + "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=10" - }, -@@ -14754,8 +16809,9 @@ +@@ -14754,6 +18257,8 @@ }, "node_modules/stylelint/node_modules/file-entry-cache": { "version": "7.0.2", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-7.0.2.tgz", + "integrity": "sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "flat-cache": "^3.2.0" - }, -@@ -14765,8 +16821,9 @@ +@@ -14765,6 +18270,8 @@ }, "node_modules/stylelint/node_modules/find-up": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" -@@ -14780,8 +16837,9 @@ +@@ -14780,6 +18287,8 @@ }, "node_modules/stylelint/node_modules/indent-string": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=12" - }, -@@ -14791,8 +16849,9 @@ +@@ -14791,6 +18300,8 @@ }, "node_modules/stylelint/node_modules/locate-path": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-locate": "^5.0.0" - }, -@@ -14803,21 +16862,11 @@ +@@ -14803,19 +18314,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, @@ -19876,98 +19700,81 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", + "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@types/minimist": "^1.2.2", - "camelcase-keys": "^7.0.0", -@@ -14841,8 +16890,9 @@ +@@ -14841,6 +18343,8 @@ }, "node_modules/stylelint/node_modules/normalize-package-data": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", -@@ -14855,8 +16905,9 @@ +@@ -14855,6 +18359,8 @@ }, "node_modules/stylelint/node_modules/p-limit": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" - }, -@@ -14869,8 +16920,9 @@ +@@ -14869,6 +18375,8 @@ }, "node_modules/stylelint/node_modules/p-locate": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "p-limit": "^3.0.2" - }, -@@ -14883,8 +16935,9 @@ +@@ -14883,6 +18391,8 @@ }, "node_modules/stylelint/node_modules/parse-json": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", -@@ -14900,16 +16953,18 @@ +@@ -14900,6 +18410,8 @@ }, "node_modules/stylelint/node_modules/path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - } +@@ -14908,6 +18420,8 @@ }, "node_modules/stylelint/node_modules/read-pkg": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", + "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^3.0.2", -@@ -14925,8 +16980,9 @@ +@@ -14925,6 +18439,8 @@ }, "node_modules/stylelint/node_modules/read-pkg-up": { "version": "8.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", + "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "find-up": "^5.0.0", - "read-pkg": "^6.0.0", -@@ -14941,8 +16997,9 @@ +@@ -14941,6 +18457,8 @@ }, "node_modules/stylelint/node_modules/redent": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", + "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "indent-string": "^5.0.0", - "strip-indent": "^4.0.0" -@@ -14954,21 +17011,11 @@ +@@ -14954,21 +18472,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, @@ -19985,60 +19792,52 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, -- "license": "ISC", + "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, -@@ -14978,8 +17025,9 @@ +@@ -14978,6 +18487,8 @@ }, "node_modules/stylelint/node_modules/strip-indent": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "min-indent": "^1.0.1" - }, -@@ -14992,8 +17040,9 @@ +@@ -14992,6 +18503,8 @@ }, "node_modules/stylelint/node_modules/trim-newlines": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", + "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=12" - }, -@@ -15003,8 +17052,9 @@ +@@ -15003,6 +18516,8 @@ }, "node_modules/stylelint/node_modules/type-fest": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", "dev": true, -- "license": "(MIT OR CC0-1.0)", + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=10" - }, -@@ -15013,9 +17063,10 @@ +@@ -15013,7 +18528,9 @@ } }, "node_modules/stylelint/node_modules/typescript": { - "version": "5.3.2", -+ "version": "5.5.4", -+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", -+ "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", ++ "version": "5.6.3", ++ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", ++ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "optional": true, - "peer": true, - "bin": { -@@ -15026,14 +17077,31 @@ +@@ -15026,13 +18543,33 @@ "node": ">=14.17" } }, @@ -20048,7 +19847,9 @@ index a38125e..a1067b0 100644 + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", -+ "dev": true, + "dev": true, +- "license": "ISC" ++ "license": "ISC", + "engines": { + "node": ">=10" + } @@ -20057,8 +19858,8 @@ index a38125e..a1067b0 100644 + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, -- "license": "ISC" ++ "dev": true, ++ "license": "MIT", + "engines": { + "node": ">=10" + }, @@ -20068,23 +19869,21 @@ index a38125e..a1067b0 100644 }, "node_modules/sumchecker": { "version": "3.0.1", -- "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "license": "Apache-2.0", "dependencies": { "debug": "^4.1.0" - }, -@@ -15043,7 +17111,8 @@ +@@ -15043,6 +18580,8 @@ }, "node_modules/supports-color": { "version": "7.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" - }, -@@ -15052,20 +17121,25 @@ +@@ -15052,7 +18591,9 @@ } }, "node_modules/supports-hyperlinks": { @@ -20093,10 +19892,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz", + "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" +@@ -15061,10 +18602,15 @@ }, "engines": { "node": ">=14.18" @@ -20107,13 +19905,12 @@ index a38125e..a1067b0 100644 }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", "engines": { "node": ">= 0.4" - }, -@@ -15075,12 +17149,15 @@ +@@ -15075,10 +18621,14 @@ }, "node_modules/svg-tags": { "version": "1.0.0", @@ -20127,11 +19924,9 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", + "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", "dev": true, -- "license": "BSD-3-Clause", + "license": "BSD-3-Clause", "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", -@@ -15092,30 +17169,11 @@ +@@ -15092,28 +18642,10 @@ "node": ">=10.0.0" } }, @@ -20160,140 +19955,123 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", -@@ -15130,15 +17188,17 @@ +@@ -15130,6 +18662,8 @@ }, "node_modules/tapable": { "version": "2.2.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "license": "MIT", "engines": { "node": ">=6" - } +@@ -15137,6 +18671,8 @@ }, "node_modules/tar": { "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "dev": true, -- "license": "ISC", + "license": "ISC", "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", -@@ -15153,7 +17213,8 @@ +@@ -15153,6 +18689,8 @@ }, "node_modules/tar-fs": { "version": "2.1.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "license": "MIT", "dependencies": { "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", -@@ -15163,11 +17224,13 @@ +@@ -15163,10 +18701,14 @@ }, "node_modules/tar-fs/node_modules/chownr": { "version": "1.1.4", -- "license": "ISC" + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", -+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" ++ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "license": "ISC" }, "node_modules/tar-stream": { "version": "2.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "license": "MIT", "dependencies": { "bl": "^4.0.3", - "end-of-stream": "^1.4.1", -@@ -15181,8 +17244,9 @@ +@@ -15181,6 +18723,8 @@ }, "node_modules/tar/node_modules/mkdirp": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "mkdirp": "bin/cmd.js" - }, -@@ -15192,13 +17256,15 @@ +@@ -15192,11 +18736,15 @@ }, "node_modules/tar/node_modules/yallist": { "version": "4.0.0", -- "dev": true, -- "license": "ISC" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", -+ "dev": true + "dev": true, + "license": "ISC" }, "node_modules/temp-file": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz", + "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "async-exit-hook": "^2.0.1", - "fs-extra": "^10.0.0" -@@ -15206,8 +17272,9 @@ +@@ -15206,6 +18754,8 @@ }, "node_modules/temp-file/node_modules/fs-extra": { "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", -@@ -15219,8 +17286,9 @@ +@@ -15219,6 +18769,8 @@ }, "node_modules/temp-file/node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "universalify": "^2.0.0" - }, -@@ -15230,15 +17298,17 @@ +@@ -15230,6 +18782,8 @@ }, "node_modules/temp-file/node_modules/universalify": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 10.0.0" +@@ -15237,7 +18791,9 @@ } }, "node_modules/terser": { - "version": "5.31.0", -- "license": "BSD-2-Clause", -+ "version": "5.31.6", -+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", -+ "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", ++ "version": "5.36.0", ++ "resolved": "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz", ++ "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==", + "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", -@@ -15254,7 +17324,8 @@ +@@ -15254,6 +18810,8 @@ }, "node_modules/terser-webpack-plugin": { "version": "5.3.10", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", -@@ -15284,9 +17355,38 @@ +@@ -15284,8 +18842,41 @@ } } }, @@ -20301,6 +20079,7 @@ index a38125e..a1067b0 100644 + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", @@ -20316,6 +20095,7 @@ index a38125e..a1067b0 100644 + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } @@ -20323,35 +20103,34 @@ index a38125e..a1067b0 100644 + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "license": "MIT" + }, "node_modules/terser-webpack-plugin/node_modules/schema-utils": { "version": "3.3.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", -@@ -15301,8 +17401,9 @@ +@@ -15301,7 +18892,9 @@ } }, "node_modules/terser/node_modules/acorn": { - "version": "8.11.2", -- "license": "MIT", -+ "version": "8.12.1", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", -+ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", ++ "version": "8.13.0", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", ++ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", + "license": "MIT", "bin": { "acorn": "bin/acorn" - }, -@@ -15312,43 +17413,53 @@ +@@ -15312,28 +18905,41 @@ }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", -+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" ++ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" }, "node_modules/text-extensions": { - "version": "1.9.0", @@ -20359,7 +20138,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", + "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.10" + "node": ">=8" @@ -20370,144 +20149,137 @@ index a38125e..a1067b0 100644 }, "node_modules/text-table": { "version": "0.2.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/through": { "version": "2.3.8", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/through2": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "readable-stream": "3" - } +@@ -15342,11 +18948,22 @@ }, "node_modules/thunky": { "version": "1.1.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", -+ "dev": true ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/tinyexec": { ++ "version": "0.3.1", ++ "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", ++ "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", + "dev": true, + "license": "MIT" }, "node_modules/tmp": { "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "os-tmpdir": "~1.0.2" - }, -@@ -15358,30 +17469,34 @@ +@@ -15358,6 +18975,8 @@ }, "node_modules/tmp-promise": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz", + "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "tmp": "^0.2.0" - } +@@ -15366,6 +18985,8 @@ }, "node_modules/tmp-promise/node_modules/tmp": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=14.14" - } +@@ -15374,6 +18995,8 @@ }, "node_modules/to-fast-properties": { "version": "2.0.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "license": "MIT", "engines": { "node": ">=4" - } +@@ -15381,6 +19004,8 @@ }, "node_modules/to-regex-range": { "version": "5.0.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", "dependencies": { "is-number": "^7.0.0" - }, -@@ -15391,43 +17506,49 @@ +@@ -15391,6 +19016,8 @@ }, "node_modules/toidentifier": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=0.6" - } +@@ -15399,11 +19026,15 @@ }, "node_modules/tr46": { "version": "0.0.3", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/tree-kill": { "version": "1.2.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "license": "MIT", "bin": { "tree-kill": "cli.js" - } +@@ -15411,6 +19042,8 @@ }, "node_modules/trim-newlines": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=8" - } +@@ -15419,6 +19052,8 @@ }, "node_modules/truncate-utf8-bytes": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", + "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", "dev": true, -- "license": "WTFPL", + "license": "WTFPL", "dependencies": { - "utf8-byte-length": "^1.0.1" - } +@@ -15427,6 +19062,8 @@ }, "node_modules/ts-loader": { "version": "9.2.9", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.2.9.tgz", + "integrity": "sha512-b0+vUY2/enb0qYtDQuNlDnJ9900NTiPiJcDJ6sY7ax1CCCwXfYIqPOMm/BwW7jsF1km+Oz8W9s31HLuD+FLIMg==", + "license": "MIT", "dependencies": { "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", -@@ -15442,22 +17563,10 @@ +@@ -15442,22 +19079,11 @@ "webpack": "^5.0.0" } }, @@ -20523,17 +20295,17 @@ index a38125e..a1067b0 100644 - }, "node_modules/ts-loader/node_modules/semver": { - "version": "7.5.4", -- "license": "ISC", -- "dependencies": { -- "lru-cache": "^6.0.0" -- }, + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", +- "dependencies": { +- "lru-cache": "^6.0.0" +- }, "bin": { "semver": "bin/semver.js" }, -@@ -15465,14 +17574,11 @@ +@@ -15465,12 +19091,10 @@ "node": ">=10" } }, @@ -20547,24 +20319,20 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", -@@ -15512,9 +17618,10 @@ +@@ -15512,7 +19136,9 @@ } }, "node_modules/ts-node/node_modules/acorn": { - "version": "8.11.2", -+ "version": "8.12.1", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", -+ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", ++ "version": "8.13.0", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", ++ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "acorn": "bin/acorn" - }, -@@ -15523,9 +17630,10 @@ +@@ -15523,7 +19149,9 @@ } }, "node_modules/tsconfig-paths": { @@ -20573,97 +20341,84 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", -@@ -15535,8 +17643,9 @@ +@@ -15535,6 +19163,8 @@ }, "node_modules/tsconfig-paths/node_modules/json5": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "minimist": "^1.2.0" - }, -@@ -15545,13 +17654,15 @@ +@@ -15545,11 +19175,15 @@ } }, "node_modules/tslib": { - "version": "2.6.2", -- "license": "0BSD" -+ "version": "2.7.0", -+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", -+ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" ++ "version": "2.8.0", ++ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.0.tgz", ++ "integrity": "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==", + "license": "0BSD" }, "node_modules/tsutils": { "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "tslib": "^1.8.1" - }, -@@ -15564,12 +17675,14 @@ +@@ -15564,11 +19198,15 @@ }, "node_modules/tsutils/node_modules/tslib": { "version": "1.14.1", -- "dev": true, -- "license": "0BSD" + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", -+ "dev": true + "dev": true, + "license": "0BSD" }, "node_modules/tunnel-agent": { "version": "0.6.0", -- "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" - }, -@@ -15579,12 +17692,14 @@ +@@ -15579,10 +19217,14 @@ }, "node_modules/tweetnacl": { "version": "0.14.5", -- "license": "Unlicense" + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", -+ "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" ++ "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "license": "Unlicense" }, "node_modules/type-check": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "prelude-ls": "^1.2.1" - }, -@@ -15594,7 +17709,8 @@ +@@ -15594,6 +19236,8 @@ }, "node_modules/type-fest": { "version": "2.19.0", -- "license": "(MIT OR CC0-1.0)", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=12.20" - }, -@@ -15604,8 +17720,9 @@ +@@ -15604,6 +19248,8 @@ }, "node_modules/type-is": { "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" -@@ -15615,27 +17732,30 @@ +@@ -15615,27 +19261,32 @@ } }, "node_modules/typed-array-buffer": { @@ -20672,7 +20427,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", @@ -20691,7 +20446,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", @@ -20704,7 +20459,7 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -15645,15 +17765,17 @@ +@@ -15645,15 +19296,18 @@ } }, "node_modules/typed-array-byte-offset": { @@ -20713,7 +20468,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", @@ -20728,7 +20483,7 @@ index a38125e..a1067b0 100644 }, "engines": { "node": ">= 0.4" -@@ -15663,13 +17785,20 @@ +@@ -15663,13 +19317,21 @@ } }, "node_modules/typed-array-length": { @@ -20737,7 +20492,7 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", @@ -20753,355 +20508,337 @@ index a38125e..a1067b0 100644 }, "funding": { "url": "https://github.com/sponsors/ljharb" -@@ -15677,12 +17806,14 @@ +@@ -15677,11 +19339,15 @@ }, "node_modules/typedarray": { "version": "0.0.6", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/typescript": { "version": "4.6.4", -- "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", + "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", - "tsserver": "bin/tsserver" -@@ -15692,9 +17823,10 @@ +@@ -15692,7 +19358,9 @@ } }, "node_modules/uglify-js": { - "version": "3.17.4", -+ "version": "3.19.2", -+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.2.tgz", -+ "integrity": "sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==", ++ "version": "3.19.3", ++ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", ++ "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" -@@ -15705,8 +17837,9 @@ +@@ -15705,6 +19373,8 @@ }, "node_modules/unbox-primitive": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", -@@ -15719,20 +17852,24 @@ +@@ -15719,10 +19389,15 @@ }, "node_modules/undici-types": { "version": "5.26.5", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", -+ "dev": true ++ "dev": true, + "license": "MIT" }, "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", -+ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", +- "version": "2.0.0", ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", ++ "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=4" - } +@@ -15731,6 +19406,8 @@ }, "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" -@@ -15743,24 +17880,27 @@ +@@ -15742,7 +19419,9 @@ + } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", -+ "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", +- "version": "2.1.0", ++ "version": "2.2.0", ++ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", ++ "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=4" - } +@@ -15751,6 +19430,8 @@ }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=4" - } +@@ -15759,6 +19440,8 @@ }, "node_modules/unicorn-magic": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">=18" - }, -@@ -15770,22 +17910,25 @@ +@@ -15770,6 +19453,8 @@ }, "node_modules/universalify": { "version": "0.1.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", "engines": { "node": ">= 4.0.0" - } +@@ -15777,6 +19462,8 @@ }, "node_modules/unpipe": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.8" - } +@@ -15785,6 +19472,8 @@ }, "node_modules/unzip-crx-3": { "version": "0.2.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz", + "integrity": "sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==", + "license": "MIT", "dependencies": { "jszip": "^3.1.0", - "mkdirp": "^0.5.1", -@@ -15793,7 +17936,9 @@ +@@ -15793,7 +19482,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", -+ "version": "1.1.0", -+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", -+ "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", ++ "version": "1.1.1", ++ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", ++ "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "funding": [ { "type": "opencollective", -@@ -15808,10 +17953,9 @@ - "url": "https://github.com/sponsors/ai" - } +@@ -15810,8 +19501,8 @@ ], -- "license": "MIT", + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" -+ "escalade": "^3.1.2", -+ "picocolors": "^1.0.1" ++ "escalade": "^3.2.0", ++ "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" -@@ -15822,58 +17966,68 @@ +@@ -15822,6 +19513,8 @@ }, "node_modules/uri-js": { "version": "4.4.1", -- "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" - } +@@ -15829,19 +19522,27 @@ }, "node_modules/utf8-byte-length": { "version": "1.0.5", -- "dev": true, -- "license": "(WTFPL OR MIT)" + "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", + "integrity": "sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==", -+ "dev": true + "dev": true, + "license": "(WTFPL OR MIT)" }, "node_modules/util-deprecate": { "version": "1.0.2", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", -+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" ++ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" }, "node_modules/utila": { "version": "0.4.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", -+ "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" ++ "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "license": "MIT" }, "node_modules/utils-merge": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { - "node": ">= 0.4.0" - } +@@ -15850,6 +19551,8 @@ }, "node_modules/uuid": { "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "uuid": "dist/bin/uuid" - } +@@ -15858,20 +19561,28 @@ }, "node_modules/v-mask": { "version": "2.3.0", -- "license": "MIT" + "resolved": "https://registry.npmjs.org/v-mask/-/v-mask-2.3.0.tgz", -+ "integrity": "sha512-ap7pTtCTvj25CqX4VYXqudCBd0+XvYyhiiLbzWQQR7AMQosJ2+DPu0a94P9stk0EGmGcmYxJaPkFkfjD8hquWQ==" ++ "integrity": "sha512-ap7pTtCTvj25CqX4VYXqudCBd0+XvYyhiiLbzWQQR7AMQosJ2+DPu0a94P9stk0EGmGcmYxJaPkFkfjD8hquWQ==", + "license": "MIT" }, "node_modules/v8-compile-cache": { "version": "2.4.0", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", -- "dev": true, -- "license": "MIT" + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", -+ "dev": true + "dev": true, + "license": "MIT" }, "node_modules/validate-npm-package-license": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" -@@ -15881,22 +18035,38 @@ +@@ -15881,34 +19592,55 @@ }, "node_modules/vary": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true, -- "license": "MIT", + "license": "MIT", "engines": { "node": ">= 0.8" } }, +- "node_modules/vue": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.27.tgz", +- "integrity": "sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==", + "node_modules/verror": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", + "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", + "dev": true, ++ "license": "MIT", + "optional": true, -+ "dependencies": { -+ "assert-plus": "^1.0.0", -+ "core-util-is": "1.0.2", -+ "extsprintf": "^1.2.0" -+ }, -+ "engines": { -+ "node": ">=0.6.0" -+ } -+ }, - "node_modules/vue": { -- "version": "3.4.27", -- "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.27.tgz", -- "integrity": "sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==", -+ "version": "3.4.38", -+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.38.tgz", -+ "integrity": "sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==", "dependencies": { - "@vue/compiler-dom": "3.4.27", - "@vue/compiler-sfc": "3.4.27", - "@vue/runtime-dom": "3.4.27", - "@vue/server-renderer": "3.4.27", - "@vue/shared": "3.4.27" +- }, +- "peerDependencies": { +- "typescript": "*" ++ "assert-plus": "^1.0.0", ++ "core-util-is": "1.0.2", ++ "extsprintf": "^1.2.0" + }, +- "peerDependenciesMeta": { +- "typescript": { ++ "engines": { ++ "node": ">=0.6.0" ++ } ++ }, ++ "node_modules/vue": { ++ "version": "3.4.38", ++ "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.38.tgz", ++ "integrity": "sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==", ++ "license": "MIT", ++ "dependencies": { + "@vue/compiler-dom": "3.4.38", + "@vue/compiler-sfc": "3.4.38", + "@vue/runtime-dom": "3.4.38", + "@vue/server-renderer": "3.4.38", + "@vue/shared": "3.4.38" - }, - "peerDependencies": { - "typescript": "*" -@@ -15909,8 +18079,9 @@ ++ }, ++ "peerDependencies": { ++ "typescript": "*" ++ }, ++ "peerDependenciesMeta": { ++ "typescript": { + "optional": true + } + } }, "node_modules/vue-eslint-parser": { "version": "8.3.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", + "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "debug": "^4.3.2", - "eslint-scope": "^7.0.0", -@@ -15931,9 +18102,10 @@ +@@ -15931,7 +19663,9 @@ } }, "node_modules/vue-eslint-parser/node_modules/acorn": { - "version": "8.11.2", -+ "version": "8.12.1", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", -+ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", ++ "version": "8.13.0", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", ++ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", "dev": true, -- "license": "MIT", + "license": "MIT", "bin": { - "acorn": "bin/acorn" - }, -@@ -15943,8 +18115,9 @@ +@@ -15943,6 +19677,8 @@ }, "node_modules/vue-eslint-parser/node_modules/eslint-scope": { "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" -@@ -15958,8 +18131,9 @@ +@@ -15958,6 +19694,8 @@ }, "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, -- "license": "Apache-2.0", + "license": "Apache-2.0", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, -@@ -15969,8 +18143,9 @@ +@@ -15969,6 +19707,8 @@ }, "node_modules/vue-eslint-parser/node_modules/espree": { "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", -@@ -15985,30 +18160,18 @@ +@@ -15985,30 +19725,20 @@ }, "node_modules/vue-eslint-parser/node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, -- "license": "BSD-2-Clause", + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -21123,14 +20860,14 @@ index a38125e..a1067b0 100644 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, -- "license": "ISC", + "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, -@@ -16016,11 +18179,6 @@ +@@ -16016,15 +19746,11 @@ "node": ">=10" } }, @@ -21142,23 +20879,27 @@ index a38125e..a1067b0 100644 "node_modules/vue-i18n": { "version": "9.13.1", "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.13.1.tgz", -@@ -16042,7 +18200,8 @@ + "integrity": "sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==", ++ "license": "MIT", + "dependencies": { + "@intlify/core-base": "9.13.1", + "@intlify/shared": "9.13.1", +@@ -16042,6 +19768,8 @@ }, "node_modules/vue-loader": { "version": "16.8.3", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.8.3.tgz", + "integrity": "sha512-7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA==", + "license": "MIT", "dependencies": { "chalk": "^4.1.0", - "hash-sum": "^2.0.0", -@@ -16054,73 +18213,75 @@ +@@ -16054,72 +19782,82 @@ }, "node_modules/vue-resize": { "version": "2.0.0-alpha.1", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz", + "integrity": "sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==", + "license": "MIT", "peerDependencies": { "vue": "^3.0.0" } @@ -21170,6 +20911,7 @@ index a38125e..a1067b0 100644 + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.38.tgz", + "integrity": "sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==", ++ "license": "MIT", "dependencies": { - "@babel/parser": "^7.24.4", - "@vue/shared": "3.4.27", @@ -21187,6 +20929,7 @@ index a38125e..a1067b0 100644 + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz", + "integrity": "sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==", ++ "license": "MIT", "dependencies": { - "@vue/compiler-core": "3.4.27", - "@vue/shared": "3.4.27" @@ -21207,6 +20950,7 @@ index a38125e..a1067b0 100644 + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.38.tgz", + "integrity": "sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==", ++ "license": "MIT", + "dependencies": { + "@babel/parser": "^7.24.7", + "@vue/compiler-core": "3.4.38", @@ -21227,6 +20971,7 @@ index a38125e..a1067b0 100644 + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz", + "integrity": "sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==", ++ "license": "MIT", "dependencies": { - "@vue/compiler-dom": "3.4.27", - "@vue/shared": "3.4.27" @@ -21240,15 +20985,17 @@ index a38125e..a1067b0 100644 - "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", -+ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" ++ "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==", ++ "license": "MIT" }, "node_modules/vue/node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", -+ "version": "0.30.11", -+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", -+ "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", ++ "version": "0.30.12", ++ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz", ++ "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", ++ "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@jridgewell/sourcemap-codec": "^1.5.0" @@ -21256,50 +21003,46 @@ index a38125e..a1067b0 100644 }, "node_modules/vuedraggable": { "version": "4.1.0", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-4.1.0.tgz", + "integrity": "sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==", + "license": "MIT", "dependencies": { "sortablejs": "1.14.0" - }, -@@ -16129,8 +18290,9 @@ +@@ -16129,7 +19867,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.1", -- "license": "MIT", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" -@@ -16141,31 +18303,33 @@ +@@ -16141,6 +19881,8 @@ }, "node_modules/wbuf": { "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, -- "license": "MIT", + "license": "MIT", "dependencies": { - "minimalistic-assert": "^1.0.0" - } +@@ -16149,23 +19891,26 @@ }, "node_modules/webidl-conversions": { "version": "3.0.1", -- "dev": true, -- "license": "BSD-2-Clause" + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", -+ "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/webpack": { - "version": "5.91.0", -- "license": "MIT", -+ "version": "5.94.0", -+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", -+ "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", ++ "version": "5.95.0", ++ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.95.0.tgz", ++ "integrity": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==", + "license": "MIT", "dependencies": { - "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.5", @@ -21316,154 +21059,48 @@ index a38125e..a1067b0 100644 "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", -@@ -16199,7 +18363,8 @@ +@@ -16199,6 +19944,8 @@ }, "node_modules/webpack-cli": { "version": "4.9.2", -- "license": "MIT", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz", + "integrity": "sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==", + "license": "MIT", "dependencies": { "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^1.1.1", -@@ -16220,35 +18385,113 @@ - "engines": { - "node": ">=10.13.0" - }, -- "peerDependencies": { -- "webpack": "4.x.x || 5.x.x" -+ "peerDependencies": { -+ "webpack": "4.x.x || 5.x.x" -+ }, -+ "peerDependenciesMeta": { -+ "@webpack-cli/generators": { -+ "optional": true -+ }, -+ "@webpack-cli/migrate": { -+ "optional": true -+ }, -+ "webpack-bundle-analyzer": { -+ "optional": true -+ }, -+ "webpack-dev-server": { -+ "optional": true -+ } -+ } -+ }, -+ "node_modules/webpack-cli/node_modules/commander": { -+ "version": "7.2.0", +@@ -16240,10812 +19987,147 @@ + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", -+ "engines": { -+ "node": ">= 10" -+ } -+ }, -+ "node_modules/webpack-cli/node_modules/execa": { -+ "version": "5.1.1", -+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", -+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", -+ "dependencies": { -+ "cross-spawn": "^7.0.3", -+ "get-stream": "^6.0.0", -+ "human-signals": "^2.1.0", -+ "is-stream": "^2.0.0", -+ "merge-stream": "^2.0.0", -+ "npm-run-path": "^4.0.1", -+ "onetime": "^5.1.2", -+ "signal-exit": "^3.0.3", -+ "strip-final-newline": "^2.0.0" -+ }, -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sindresorhus/execa?sponsor=1" -+ } -+ }, -+ "node_modules/webpack-cli/node_modules/get-stream": { -+ "version": "6.0.1", -+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", -+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", -+ "engines": { -+ "node": ">=10" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, -+ "node_modules/webpack-cli/node_modules/human-signals": { -+ "version": "2.1.0", -+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", -+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", -+ "engines": { -+ "node": ">=10.17.0" -+ } -+ }, -+ "node_modules/webpack-cli/node_modules/is-stream": { -+ "version": "2.0.1", -+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", -+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", -+ "engines": { -+ "node": ">=8" -+ }, -+ "funding": { -+ "url": "https://github.com/sponsors/sindresorhus" -+ } -+ }, -+ "node_modules/webpack-cli/node_modules/npm-run-path": { -+ "version": "4.0.1", -+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", -+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", -+ "dependencies": { -+ "path-key": "^3.0.0" - }, -- "peerDependenciesMeta": { -- "@webpack-cli/generators": { -- "optional": true -- }, -- "@webpack-cli/migrate": { -- "optional": true -- }, -- "webpack-bundle-analyzer": { -- "optional": true -- }, -- "webpack-dev-server": { -- "optional": true -- } -+ "engines": { -+ "node": ">=8" - } - }, -- "node_modules/webpack-cli/node_modules/commander": { -- "version": "7.2.0", -- "license": "MIT", -+ "node_modules/webpack-cli/node_modules/signal-exit": { -+ "version": "3.0.7", -+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", -+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" -+ }, -+ "node_modules/webpack-cli/node_modules/strip-final-newline": { -+ "version": "2.0.0", -+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", -+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", "engines": { -- "node": ">= 10" -+ "node": ">=6" + "node": ">= 10" } }, - "node_modules/webpack-dev-middleware": { - "version": "5.3.4", -+ "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", -+ "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", - "dev": true, +- "node_modules/webpack-dev-middleware": { +- "version": "5.3.4", +- "dev": true, - "license": "MIT", - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", -@@ -16267,41 +18510,11 @@ - "webpack": "^4.0.0 || ^5.0.0" - } - }, +- "dependencies": { +- "colorette": "^2.0.10", +- "memfs": "^3.4.3", +- "mime-types": "^2.1.31", +- "range-parser": "^1.2.1", +- "schema-utils": "^4.0.0" +- }, +- "engines": { +- "node": ">= 12.13.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/webpack" +- }, +- "peerDependencies": { +- "webpack": "^4.0.0 || ^5.0.0" +- } +- }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.12.0", - "dev": true, @@ -21495,30 +21132,78 @@ index a38125e..a1067b0 100644 - "dev": true, - "license": "MIT" - }, - "node_modules/webpack-dev-middleware/node_modules/schema-utils": { - "version": "4.2.0", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", -+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, +- "node_modules/webpack-dev-middleware/node_modules/schema-utils": { +- "version": "4.2.0", +- "dev": true, - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", -@@ -16318,8 +18531,9 @@ - }, - "node_modules/webpack-dev-server": { - "version": "4.11.1", -+ "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", -+ "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", - "dev": true, +- "dependencies": { +- "@types/json-schema": "^7.0.9", +- "ajv": "^8.9.0", +- "ajv-formats": "^2.1.1", +- "ajv-keywords": "^5.1.0" +- }, +- "engines": { +- "node": ">= 12.13.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/webpack" +- } +- }, +- "node_modules/webpack-dev-server": { +- "version": "4.11.1", +- "dev": true, - "license": "MIT", - "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", -@@ -16370,41 +18584,11 @@ - } - } - }, +- "dependencies": { +- "@types/bonjour": "^3.5.9", +- "@types/connect-history-api-fallback": "^1.3.5", +- "@types/express": "^4.17.13", +- "@types/serve-index": "^1.9.1", +- "@types/serve-static": "^1.13.10", +- "@types/sockjs": "^0.3.33", +- "@types/ws": "^8.5.1", +- "ansi-html-community": "^0.0.8", +- "bonjour-service": "^1.0.11", +- "chokidar": "^3.5.3", +- "colorette": "^2.0.10", +- "compression": "^1.7.4", +- "connect-history-api-fallback": "^2.0.0", +- "default-gateway": "^6.0.3", +- "express": "^4.17.3", +- "graceful-fs": "^4.2.6", +- "html-entities": "^2.3.2", +- "http-proxy-middleware": "^2.0.3", +- "ipaddr.js": "^2.0.1", +- "open": "^8.0.9", +- "p-retry": "^4.5.0", +- "rimraf": "^3.0.2", +- "schema-utils": "^4.0.0", +- "selfsigned": "^2.1.1", +- "serve-index": "^1.9.1", +- "sockjs": "^0.3.24", +- "spdy": "^4.0.2", +- "webpack-dev-middleware": "^5.3.1", +- "ws": "^8.4.2" +- }, +- "bin": { +- "webpack-dev-server": "bin/webpack-dev-server.js" +- }, +- "engines": { +- "node": ">= 12.13.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/webpack" +- }, +- "peerDependencies": { +- "webpack": "^4.37.0 || ^5.0.0" +- }, +- "peerDependenciesMeta": { +- "webpack-cli": { +- "optional": true +- } +- } +- }, - "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.12.0", - "dev": true, @@ -21550,281 +21235,259 @@ index a38125e..a1067b0 100644 - "dev": true, - "license": "MIT" - }, - "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "4.2.0", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", -+ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, -- "license": "MIT", +- "node_modules/webpack-dev-server/node_modules/schema-utils": { +- "version": "4.2.0", +- "dev": true, ++ "node_modules/webpack-cli/node_modules/execa": { ++ "version": "5.1.1", ++ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", ++ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", -@@ -16421,7 +18605,8 @@ - }, - "node_modules/webpack-merge": { - "version": "5.10.0", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", -+ "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", - "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", -@@ -16433,14 +18618,16 @@ - }, - "node_modules/webpack-sources": { - "version": "3.2.3", -- "license": "MIT", -+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", -+ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", +- "@types/json-schema": "^7.0.9", +- "ajv": "^8.9.0", +- "ajv-formats": "^2.1.1", +- "ajv-keywords": "^5.1.0" ++ "cross-spawn": "^7.0.3", ++ "get-stream": "^6.0.0", ++ "human-signals": "^2.1.0", ++ "is-stream": "^2.0.0", ++ "merge-stream": "^2.0.0", ++ "npm-run-path": "^4.0.1", ++ "onetime": "^5.1.2", ++ "signal-exit": "^3.0.3", ++ "strip-final-newline": "^2.0.0" + }, "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/acorn": { +- "node": ">= 12.13.0" ++ "node": ">=10" + }, + "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/webpack" +- } +- }, +- "node_modules/webpack-merge": { +- "version": "5.10.0", +- "license": "MIT", +- "dependencies": { +- "clone-deep": "^4.0.1", +- "flat": "^5.0.2", +- "wildcard": "^2.0.0" +- }, +- "engines": { +- "node": ">=10.0.0" +- } +- }, +- "node_modules/webpack-sources": { +- "version": "3.2.3", +- "license": "MIT", +- "engines": { +- "node": ">=10.13.0" +- } +- }, +- "node_modules/webpack/node_modules/acorn": { - "version": "8.11.2", - "license": "MIT", -+ "version": "8.12.1", -+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", -+ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", - "bin": { - "acorn": "bin/acorn" - }, -@@ -16448,16 +18635,46 @@ - "node": ">=0.4.0" - } - }, +- "bin": { +- "acorn": "bin/acorn" +- }, +- "engines": { +- "node": ">=0.4.0" +- } +- }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.9.0", - "license": "MIT", -+ "node_modules/webpack/node_modules/acorn-import-attributes": { -+ "version": "1.9.5", -+ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", -+ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", - "peerDependencies": { - "acorn": "^8" - } - }, -+ "node_modules/webpack/node_modules/ajv": { -+ "version": "6.12.6", -+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", -+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", -+ "dependencies": { -+ "fast-deep-equal": "^3.1.1", -+ "fast-json-stable-stringify": "^2.0.0", -+ "json-schema-traverse": "^0.4.1", -+ "uri-js": "^4.2.2" -+ }, -+ "funding": { -+ "type": "github", -+ "url": "https://github.com/sponsors/epoberezkin" -+ } -+ }, -+ "node_modules/webpack/node_modules/ajv-keywords": { -+ "version": "3.5.2", -+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", -+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", -+ "peerDependencies": { -+ "ajv": "^6.9.1" -+ } -+ }, -+ "node_modules/webpack/node_modules/json-schema-traverse": { -+ "version": "0.4.1", -+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", -+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" -+ }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", +- "peerDependencies": { +- "acorn": "^8" +- } +- }, +- "node_modules/webpack/node_modules/schema-utils": { +- "version": "3.3.0", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", -+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", -@@ -16473,8 +18690,9 @@ - }, - "node_modules/websocket-driver": { - "version": "0.7.4", -+ "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", -+ "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "dev": true, +- "dependencies": { +- "@types/json-schema": "^7.0.8", +- "ajv": "^6.12.5", +- "ajv-keywords": "^3.5.2" +- }, +- "engines": { +- "node": ">= 10.13.0" +- }, +- "funding": { +- "type": "opencollective", +- "url": "https://opencollective.com/webpack" +- } +- }, +- "node_modules/websocket-driver": { +- "version": "0.7.4", +- "dev": true, - "license": "Apache-2.0", - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", -@@ -16486,16 +18704,18 @@ - }, - "node_modules/websocket-extensions": { - "version": "0.1.4", -+ "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", -+ "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "dev": true, +- "dependencies": { +- "http-parser-js": ">=0.5.1", +- "safe-buffer": ">=5.1.0", +- "websocket-extensions": ">=0.1.1" +- }, +- "engines": { +- "node": ">=0.8.0" +- } +- }, +- "node_modules/websocket-extensions": { +- "version": "0.1.4", +- "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/whatwg-url": { - "version": "5.0.0", -+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", -+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, +- "engines": { +- "node": ">=0.8.0" +- } +- }, +- "node_modules/whatwg-url": { +- "version": "5.0.0", +- "dev": true, - "license": "MIT", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" -@@ -16503,7 +18723,8 @@ - }, - "node_modules/which": { - "version": "2.0.2", +- "dependencies": { +- "tr46": "~0.0.3", +- "webidl-conversions": "^3.0.0" +- } +- }, +- "node_modules/which": { +- "version": "2.0.2", - "license": "ISC", -+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", -+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, -@@ -16516,8 +18737,9 @@ - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", -+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", -+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, +- "dependencies": { +- "isexe": "^2.0.0" +- }, +- "bin": { +- "node-which": "bin/node-which" +- }, +- "engines": { +- "node": ">= 8" +- } +- }, +- "node_modules/which-boxed-primitive": { +- "version": "1.0.2", +- "dev": true, - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", -@@ -16531,19 +18753,21 @@ - }, - "node_modules/which-module": { - "version": "2.0.1", +- "dependencies": { +- "is-bigint": "^1.0.1", +- "is-boolean-object": "^1.1.0", +- "is-number-object": "^1.0.4", +- "is-string": "^1.0.5", +- "is-symbol": "^1.0.3" +- }, +- "funding": { +- "url": "https://github.com/sponsors/ljharb" +- } +- }, +- "node_modules/which-module": { +- "version": "2.0.1", - "dev": true, - "license": "ISC" -+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", -+ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", -+ "dev": true - }, - "node_modules/which-typed-array": { +- }, +- "node_modules/which-typed-array": { - "version": "1.1.13", -+ "version": "1.1.15", -+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", -+ "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "dev": true, +- "dev": true, - "license": "MIT", - "dependencies": { +- "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", -+ "available-typed-arrays": "^1.0.7", -+ "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", +- "for-each": "^0.3.3", +- "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" -+ "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" -@@ -16554,16 +18778,28 @@ - }, - "node_modules/wildcard": { - "version": "2.0.1", +- }, +- "engines": { +- "node": ">= 0.4" +- }, +- "funding": { +- "url": "https://github.com/sponsors/ljharb" +- } +- }, +- "node_modules/wildcard": { +- "version": "2.0.1", - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", -+ "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" -+ }, -+ "node_modules/word-wrap": { -+ "version": "1.2.5", -+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", -+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", -+ "dev": true, -+ "engines": { -+ "node": ">=0.10.0" -+ } - }, - "node_modules/wordwrap": { - "version": "1.0.0", +- }, +- "node_modules/wordwrap": { +- "version": "1.0.0", - "dev": true, - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", -+ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", -+ "dev": true - }, - "node_modules/wrap-ansi": { - "version": "3.0.1", +- }, +- "node_modules/wrap-ansi": { +- "version": "3.0.1", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", -+ "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", - "dependencies": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" -@@ -16575,8 +18811,9 @@ - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", -+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", -+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, +- "dependencies": { +- "string-width": "^2.1.1", +- "strip-ansi": "^4.0.0" +- }, +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/wrap-ansi-cjs": { +- "name": "wrap-ansi", +- "version": "7.0.0", +- "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", -@@ -16591,21 +18828,24 @@ - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "3.0.1", +- "dependencies": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- }, +- "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/chalk/wrap-ansi?sponsor=1" +- } +- }, +- "node_modules/wrap-ansi/node_modules/ansi-regex": { +- "version": "3.0.1", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", -+ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { +- "version": "2.0.0", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", -+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "engines": { - "node": ">=4" - } - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "2.1.1", +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/wrap-ansi/node_modules/string-width": { +- "version": "2.1.1", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", -+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" -@@ -16616,7 +18856,8 @@ - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "4.0.0", +- "dependencies": { +- "is-fullwidth-code-point": "^2.0.0", +- "strip-ansi": "^4.0.0" +- }, +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/wrap-ansi/node_modules/strip-ansi": { +- "version": "4.0.0", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", -+ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dependencies": { - "ansi-regex": "^3.0.0" - }, -@@ -16626,12 +18867,14 @@ - }, - "node_modules/wrappy": { - "version": "1.0.2", +- "dependencies": { +- "ansi-regex": "^3.0.0" +- }, +- "engines": { +- "node": ">=4" +- } +- }, +- "node_modules/wrappy": { +- "version": "1.0.2", - "license": "ISC" -+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", -+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/write-file-atomic": { - "version": "5.0.1", -+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", -+ "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", - "dev": true, +- }, +- "node_modules/write-file-atomic": { +- "version": "5.0.1", +- "dev": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^4.0.1" -@@ -16640,21 +18883,11 @@ - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, +- "dependencies": { +- "imurmurhash": "^0.1.4", +- "signal-exit": "^4.0.1" +- }, +- "engines": { +- "node": "^14.17.0 || ^16.13.0 || >=18.0.0" +- } +- }, - "node_modules/write-file-atomic/node_modules/signal-exit": { - "version": "4.1.0", - "dev": true, @@ -21836,133 +21499,112 @@ index a38125e..a1067b0 100644 - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/ws": { +- "node_modules/ws": { - "version": "8.14.2", -+ "version": "8.18.0", -+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", -+ "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", - "dev": true, +- "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, -@@ -16673,23 +18906,26 @@ - }, - "node_modules/xmlbuilder": { - "version": "15.1.1", -+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", -+ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", - "dev": true, +- "engines": { +- "node": ">=10.0.0" +- }, +- "peerDependencies": { +- "bufferutil": "^4.0.1", +- "utf-8-validate": ">=5.0.2" +- }, +- "peerDependenciesMeta": { +- "bufferutil": { +- "optional": true +- }, +- "utf-8-validate": { +- "optional": true +- } +- } +- }, +- "node_modules/xmlbuilder": { +- "version": "15.1.1", +- "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", +- "engines": { +- "node": ">=8.0" +- } +- }, +- "node_modules/xtend": { +- "version": "4.0.2", - "license": "MIT", -+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", -+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/xvfb-maybe": { - "version": "0.2.1", -+ "resolved": "https://registry.npmjs.org/xvfb-maybe/-/xvfb-maybe-0.2.1.tgz", -+ "integrity": "sha512-9IyRz3l6Qyhl6LvnGRF5jMPB4oBEepQnuzvVAFTynP6ACLLSevqigICJ9d/+ofl29m2daeaVBChnPYUnaeJ7yA==", - "dev": true, +- "engines": { +- "node": ">=0.4" +- } +- }, +- "node_modules/xvfb-maybe": { +- "version": "0.2.1", +- "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^2.2.0", - "which": "^1.2.4" -@@ -16700,21 +18936,24 @@ - }, - "node_modules/xvfb-maybe/node_modules/debug": { - "version": "2.6.9", -+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", -+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, +- "dependencies": { +- "debug": "^2.2.0", +- "which": "^1.2.4" +- }, +- "bin": { +- "xvfb-maybe": "src/xvfb-maybe.js" +- } +- }, +- "node_modules/xvfb-maybe/node_modules/debug": { +- "version": "2.6.9", +- "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/xvfb-maybe/node_modules/ms": { - "version": "2.0.0", +- "dependencies": { +- "ms": "2.0.0" +- } +- }, +- "node_modules/xvfb-maybe/node_modules/ms": { +- "version": "2.0.0", - "dev": true, - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", -+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", -+ "dev": true - }, - "node_modules/xvfb-maybe/node_modules/which": { - "version": "1.3.1", -+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", -+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, +- }, +- "node_modules/xvfb-maybe/node_modules/which": { +- "version": "1.3.1", +- "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, -@@ -16723,126 +18962,55 @@ - } - }, - "node_modules/y18n": { +- "dependencies": { +- "isexe": "^2.0.0" +- }, +- "bin": { +- "which": "bin/which" +- } +- }, +- "node_modules/y18n": { - "version": "4.0.3", -+ "version": "5.0.8", -+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", -+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, +- "dev": true, - "license": "ISC" -+ "engines": { -+ "node": ">=10" -+ } - }, - "node_modules/yaku": { - "version": "0.16.7", +- }, +- "node_modules/yaku": { +- "version": "0.16.7", - "license": "MIT" -+ "resolved": "https://registry.npmjs.org/yaku/-/yaku-0.16.7.tgz", -+ "integrity": "sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==" - }, - "node_modules/yallist": { - "version": "3.1.1", +- }, +- "node_modules/yallist": { +- "version": "3.1.1", - "license": "ISC" -+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", -+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yargs": { +- }, +- "node_modules/yargs": { - "version": "15.4.1", -+ "version": "17.7.2", -+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", -+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, +- "dev": true, - "license": "MIT", - "dependencies": { +- "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", -+ "cliui": "^8.0.1", -+ "escalade": "^3.1.1", -+ "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", +- "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" -+ "string-width": "^4.2.3", -+ "y18n": "^5.0.5", -+ "yargs-parser": "^21.1.1" - }, - "engines": { +- }, +- "engines": { - "node": ">=8" -+ "node": ">=12" - } - }, - "node_modules/yargs-parser": { +- } +- }, +- "node_modules/yargs-parser": { - "version": "20.2.9", - "dev": true, - "license": "ISC", @@ -22036,73 +21678,11082 @@ index a38125e..a1067b0 100644 - }, - "node_modules/yargs/node_modules/yargs-parser": { - "version": "18.1.3", -+ "version": "21.1.1", -+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", -+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, +- "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { +- "engines": { - "node": ">=6" +- } +- }, +- "node_modules/yauzl": { +- "version": "2.10.0", +- "license": "MIT", +- "dependencies": { +- "buffer-crc32": "~0.2.3", +- "fd-slicer": "~1.1.0" +- } +- }, +- "node_modules/yn": { +- "version": "3.1.1", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=6" +- } +- }, +- "node_modules/yocto-queue": { +- "version": "0.1.0", +- "dev": true, +- "license": "MIT", +- "engines": { +- "node": ">=10" +- }, +- "funding": { +- "url": "https://github.com/sponsors/sindresorhus" +- } +- }, +- "node_modules/zip-stream": { +- "version": "4.1.1", +- "dev": true, +- "license": "MIT", +- "peer": true, +- "dependencies": { +- "archiver-utils": "^3.0.4", +- "compress-commons": "^4.1.2", +- "readable-stream": "^3.6.0" +- }, +- "engines": { +- "node": ">= 10" +- } +- }, +- "node_modules/zip-stream/node_modules/archiver-utils": { +- "version": "3.0.4", +- "dev": true, +- "license": "MIT", +- "peer": true, +- "dependencies": { +- "glob": "^7.2.3", +- "graceful-fs": "^4.2.0", +- "lazystream": "^1.0.0", +- "lodash.defaults": "^4.2.0", +- "lodash.difference": "^4.5.0", +- "lodash.flatten": "^4.4.0", +- "lodash.isplainobject": "^4.0.6", +- "lodash.union": "^4.6.0", +- "normalize-path": "^3.0.0", +- "readable-stream": "^3.6.0" +- }, +- "engines": { +- "node": ">= 10" +- } +- } +- }, +- "dependencies": { +- "@aashutoshrathi/word-wrap": { +- "version": "1.2.6", +- "dev": true +- }, +- "@ampproject/remapping": { +- "version": "2.2.1", +- "peer": true, +- "requires": { +- "@jridgewell/gen-mapping": "^0.3.0", +- "@jridgewell/trace-mapping": "^0.3.9" +- } +- }, +- "@babel/code-frame": { +- "version": "7.23.4", +- "requires": { +- "@babel/highlight": "^7.23.4", +- "chalk": "^2.4.2" +- }, +- "dependencies": { +- "ansi-styles": { +- "version": "3.2.1", +- "requires": { +- "color-convert": "^1.9.0" +- } +- }, +- "chalk": { +- "version": "2.4.2", +- "requires": { +- "ansi-styles": "^3.2.1", +- "escape-string-regexp": "^1.0.5", +- "supports-color": "^5.3.0" +- } +- }, +- "color-convert": { +- "version": "1.9.3", +- "requires": { +- "color-name": "1.1.3" +- } +- }, +- "color-name": { +- "version": "1.1.3" +- }, +- "escape-string-regexp": { +- "version": "1.0.5" +- }, +- "has-flag": { +- "version": "3.0.0" +- }, +- "supports-color": { +- "version": "5.5.0", +- "requires": { +- "has-flag": "^3.0.0" +- } +- } +- } +- }, +- "@babel/compat-data": { +- "version": "7.23.3" +- }, +- "@babel/core": { +- "version": "7.23.3", +- "peer": true, +- "requires": { +- "@ampproject/remapping": "^2.2.0", +- "@babel/code-frame": "^7.22.13", +- "@babel/generator": "^7.23.3", +- "@babel/helper-compilation-targets": "^7.22.15", +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helpers": "^7.23.2", +- "@babel/parser": "^7.23.3", +- "@babel/template": "^7.22.15", +- "@babel/traverse": "^7.23.3", +- "@babel/types": "^7.23.3", +- "convert-source-map": "^2.0.0", +- "debug": "^4.1.0", +- "gensync": "^1.0.0-beta.2", +- "json5": "^2.2.3", +- "semver": "^6.3.1" +- } +- }, +- "@babel/eslint-parser": { +- "version": "7.15.8", +- "dev": true, +- "requires": { +- "eslint-scope": "^5.1.1", +- "eslint-visitor-keys": "^2.1.0", +- "semver": "^6.3.0" +- } +- }, +- "@babel/generator": { +- "version": "7.23.4", +- "requires": { +- "@babel/types": "^7.23.4", +- "@jridgewell/gen-mapping": "^0.3.2", +- "@jridgewell/trace-mapping": "^0.3.17", +- "jsesc": "^2.5.1" +- } +- }, +- "@babel/helper-annotate-as-pure": { +- "version": "7.22.5", +- "dev": true, +- "requires": { +- "@babel/types": "^7.22.5" +- } +- }, +- "@babel/helper-builder-binary-assignment-operator-visitor": { +- "version": "7.22.15", +- "dev": true, +- "requires": { +- "@babel/types": "^7.22.15" +- } +- }, +- "@babel/helper-compilation-targets": { +- "version": "7.22.15", +- "requires": { +- "@babel/compat-data": "^7.22.9", +- "@babel/helper-validator-option": "^7.22.15", +- "browserslist": "^4.21.9", +- "lru-cache": "^5.1.1", +- "semver": "^6.3.1" +- } +- }, +- "@babel/helper-create-class-features-plugin": { +- "version": "7.22.15", +- "dev": true, +- "requires": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-environment-visitor": "^7.22.5", +- "@babel/helper-function-name": "^7.22.5", +- "@babel/helper-member-expression-to-functions": "^7.22.15", +- "@babel/helper-optimise-call-expression": "^7.22.5", +- "@babel/helper-replace-supers": "^7.22.9", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", +- "@babel/helper-split-export-declaration": "^7.22.6", +- "semver": "^6.3.1" +- } +- }, +- "@babel/helper-create-regexp-features-plugin": { +- "version": "7.22.15", +- "dev": true, +- "requires": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "regexpu-core": "^5.3.1", +- "semver": "^6.3.1" +- } +- }, +- "@babel/helper-define-polyfill-provider": { +- "version": "0.2.4", +- "dev": true, +- "requires": { +- "@babel/helper-compilation-targets": "^7.13.0", +- "@babel/helper-module-imports": "^7.12.13", +- "@babel/helper-plugin-utils": "^7.13.0", +- "@babel/traverse": "^7.13.0", +- "debug": "^4.1.1", +- "lodash.debounce": "^4.0.8", +- "resolve": "^1.14.2", +- "semver": "^6.1.2" +- } +- }, +- "@babel/helper-environment-visitor": { +- "version": "7.22.20" +- }, +- "@babel/helper-function-name": { +- "version": "7.23.0", +- "requires": { +- "@babel/template": "^7.22.15", +- "@babel/types": "^7.23.0" +- } +- }, +- "@babel/helper-hoist-variables": { +- "version": "7.22.5", +- "requires": { +- "@babel/types": "^7.22.5" +- } +- }, +- "@babel/helper-member-expression-to-functions": { +- "version": "7.23.0", +- "dev": true, +- "requires": { +- "@babel/types": "^7.23.0" +- } +- }, +- "@babel/helper-module-imports": { +- "version": "7.22.15", +- "requires": { +- "@babel/types": "^7.22.15" +- } +- }, +- "@babel/helper-module-transforms": { +- "version": "7.23.3", +- "requires": { +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-module-imports": "^7.22.15", +- "@babel/helper-simple-access": "^7.22.5", +- "@babel/helper-split-export-declaration": "^7.22.6", +- "@babel/helper-validator-identifier": "^7.22.20" +- } +- }, +- "@babel/helper-optimise-call-expression": { +- "version": "7.22.5", +- "dev": true, +- "requires": { +- "@babel/types": "^7.22.5" +- } +- }, +- "@babel/helper-plugin-utils": { +- "version": "7.22.5", +- "dev": true +- }, +- "@babel/helper-remap-async-to-generator": { +- "version": "7.22.20", +- "dev": true, +- "requires": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-wrap-function": "^7.22.20" +- } +- }, +- "@babel/helper-replace-supers": { +- "version": "7.22.20", +- "dev": true, +- "requires": { +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-member-expression-to-functions": "^7.22.15", +- "@babel/helper-optimise-call-expression": "^7.22.5" +- } +- }, +- "@babel/helper-simple-access": { +- "version": "7.22.5", +- "requires": { +- "@babel/types": "^7.22.5" +- } +- }, +- "@babel/helper-skip-transparent-expression-wrappers": { +- "version": "7.22.5", +- "dev": true, +- "requires": { +- "@babel/types": "^7.22.5" +- } +- }, +- "@babel/helper-split-export-declaration": { +- "version": "7.22.6", +- "requires": { +- "@babel/types": "^7.22.5" +- } +- }, +- "@babel/helper-string-parser": { +- "version": "7.23.4" +- }, +- "@babel/helper-validator-identifier": { +- "version": "7.22.20" +- }, +- "@babel/helper-validator-option": { +- "version": "7.22.15" +- }, +- "@babel/helper-wrap-function": { +- "version": "7.22.20", +- "dev": true, +- "requires": { +- "@babel/helper-function-name": "^7.22.5", +- "@babel/template": "^7.22.15", +- "@babel/types": "^7.22.19" +- } +- }, +- "@babel/helpers": { +- "version": "7.23.4", +- "peer": true, +- "requires": { +- "@babel/template": "^7.22.15", +- "@babel/traverse": "^7.23.4", +- "@babel/types": "^7.23.4" +- } +- }, +- "@babel/highlight": { +- "version": "7.23.4", +- "requires": { +- "@babel/helper-validator-identifier": "^7.22.20", +- "chalk": "^2.4.2", +- "js-tokens": "^4.0.0" +- }, +- "dependencies": { +- "ansi-styles": { +- "version": "3.2.1", +- "requires": { +- "color-convert": "^1.9.0" +- } +- }, +- "chalk": { +- "version": "2.4.2", +- "requires": { +- "ansi-styles": "^3.2.1", +- "escape-string-regexp": "^1.0.5", +- "supports-color": "^5.3.0" +- } +- }, +- "color-convert": { +- "version": "1.9.3", +- "requires": { +- "color-name": "1.1.3" +- } +- }, +- "color-name": { +- "version": "1.1.3" +- }, +- "escape-string-regexp": { +- "version": "1.0.5" +- }, +- "has-flag": { +- "version": "3.0.0" +- }, +- "supports-color": { +- "version": "5.5.0", +- "requires": { +- "has-flag": "^3.0.0" +- } +- } +- } +- }, +- "@babel/parser": { +- "version": "7.24.6", +- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz", +- "integrity": "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==" +- }, +- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", +- "@babel/plugin-transform-optional-chaining": "^7.23.3" +- } +- }, +- "@babel/plugin-proposal-async-generator-functions": { +- "version": "7.20.7", +- "dev": true, +- "requires": { +- "@babel/helper-environment-visitor": "^7.18.9", +- "@babel/helper-plugin-utils": "^7.20.2", +- "@babel/helper-remap-async-to-generator": "^7.18.9", +- "@babel/plugin-syntax-async-generators": "^7.8.4" +- } +- }, +- "@babel/plugin-proposal-class-properties": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-create-class-features-plugin": "^7.18.6", +- "@babel/helper-plugin-utils": "^7.18.6" +- } +- }, +- "@babel/plugin-proposal-class-static-block": { +- "version": "7.21.0", +- "dev": true, +- "requires": { +- "@babel/helper-create-class-features-plugin": "^7.21.0", +- "@babel/helper-plugin-utils": "^7.20.2", +- "@babel/plugin-syntax-class-static-block": "^7.14.5" +- } +- }, +- "@babel/plugin-proposal-dynamic-import": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.18.6", +- "@babel/plugin-syntax-dynamic-import": "^7.8.3" +- } +- }, +- "@babel/plugin-proposal-export-namespace-from": { +- "version": "7.18.9", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.18.9", +- "@babel/plugin-syntax-export-namespace-from": "^7.8.3" +- } +- }, +- "@babel/plugin-proposal-json-strings": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.18.6", +- "@babel/plugin-syntax-json-strings": "^7.8.3" +- } +- }, +- "@babel/plugin-proposal-logical-assignment-operators": { +- "version": "7.20.7", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.20.2", +- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" +- } +- }, +- "@babel/plugin-proposal-nullish-coalescing-operator": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.18.6", +- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" +- } +- }, +- "@babel/plugin-proposal-numeric-separator": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.18.6", +- "@babel/plugin-syntax-numeric-separator": "^7.10.4" +- } +- }, +- "@babel/plugin-proposal-object-rest-spread": { +- "version": "7.20.7", +- "dev": true, +- "requires": { +- "@babel/compat-data": "^7.20.5", +- "@babel/helper-compilation-targets": "^7.20.7", +- "@babel/helper-plugin-utils": "^7.20.2", +- "@babel/plugin-syntax-object-rest-spread": "^7.8.3", +- "@babel/plugin-transform-parameters": "^7.20.7" +- } +- }, +- "@babel/plugin-proposal-optional-catch-binding": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.18.6", +- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" +- } +- }, +- "@babel/plugin-proposal-optional-chaining": { +- "version": "7.21.0", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.20.2", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", +- "@babel/plugin-syntax-optional-chaining": "^7.8.3" +- } +- }, +- "@babel/plugin-proposal-private-methods": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-create-class-features-plugin": "^7.18.6", +- "@babel/helper-plugin-utils": "^7.18.6" +- } +- }, +- "@babel/plugin-proposal-private-property-in-object": { +- "version": "7.21.11", +- "dev": true, +- "requires": { +- "@babel/helper-annotate-as-pure": "^7.18.6", +- "@babel/helper-create-class-features-plugin": "^7.21.0", +- "@babel/helper-plugin-utils": "^7.20.2", +- "@babel/plugin-syntax-private-property-in-object": "^7.14.5" +- } +- }, +- "@babel/plugin-proposal-unicode-property-regex": { +- "version": "7.18.6", +- "dev": true, +- "requires": { +- "@babel/helper-create-regexp-features-plugin": "^7.18.6", +- "@babel/helper-plugin-utils": "^7.18.6" +- } +- }, +- "@babel/plugin-syntax-async-generators": { +- "version": "7.8.4", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.0" +- } +- }, +- "@babel/plugin-syntax-class-properties": { +- "version": "7.12.13", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.12.13" +- } +- }, +- "@babel/plugin-syntax-class-static-block": { +- "version": "7.14.5", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.14.5" +- } +- }, +- "@babel/plugin-syntax-dynamic-import": { +- "version": "7.8.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.0" +- } +- }, +- "@babel/plugin-syntax-export-namespace-from": { +- "version": "7.8.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.3" +- } +- }, +- "@babel/plugin-syntax-json-strings": { +- "version": "7.8.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.0" +- } +- }, +- "@babel/plugin-syntax-logical-assignment-operators": { +- "version": "7.10.4", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.10.4" +- } +- }, +- "@babel/plugin-syntax-nullish-coalescing-operator": { +- "version": "7.8.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.0" +- } +- }, +- "@babel/plugin-syntax-numeric-separator": { +- "version": "7.10.4", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.10.4" +- } +- }, +- "@babel/plugin-syntax-object-rest-spread": { +- "version": "7.8.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.0" +- } +- }, +- "@babel/plugin-syntax-optional-catch-binding": { +- "version": "7.8.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.0" +- } +- }, +- "@babel/plugin-syntax-optional-chaining": { +- "version": "7.8.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.8.0" +- } +- }, +- "@babel/plugin-syntax-private-property-in-object": { +- "version": "7.14.5", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.14.5" +- } +- }, +- "@babel/plugin-syntax-top-level-await": { +- "version": "7.14.5", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.14.5" +- } +- }, +- "@babel/plugin-syntax-typescript": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-arrow-functions": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-async-to-generator": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-module-imports": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-remap-async-to-generator": "^7.22.20" +- } +- }, +- "@babel/plugin-transform-block-scoped-functions": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-block-scoping": { +- "version": "7.23.4", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-classes": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-compilation-targets": "^7.22.15", +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-function-name": "^7.23.0", +- "@babel/helper-optimise-call-expression": "^7.22.5", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-replace-supers": "^7.22.20", +- "@babel/helper-split-export-declaration": "^7.22.6", +- "globals": "^11.1.0" +- } +- }, +- "@babel/plugin-transform-computed-properties": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/template": "^7.22.15" +- } +- }, +- "@babel/plugin-transform-destructuring": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-dotall-regex": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-create-regexp-features-plugin": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-duplicate-keys": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-exponentiation-operator": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-for-of": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-function-name": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-compilation-targets": "^7.22.15", +- "@babel/helper-function-name": "^7.23.0", +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-literals": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-member-expression-literals": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-modules-amd": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-modules-commonjs": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-simple-access": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-modules-systemjs": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-hoist-variables": "^7.22.5", +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-validator-identifier": "^7.22.20" +- } +- }, +- "@babel/plugin-transform-modules-umd": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-module-transforms": "^7.23.3", +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-named-capturing-groups-regex": { +- "version": "7.22.5", +- "dev": true, +- "requires": { +- "@babel/helper-create-regexp-features-plugin": "^7.22.5", +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-new-target": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-object-super": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-replace-supers": "^7.22.20" +- } +- }, +- "@babel/plugin-transform-optional-chaining": { +- "version": "7.23.4", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", +- "@babel/plugin-syntax-optional-chaining": "^7.8.3" +- } +- }, +- "@babel/plugin-transform-parameters": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-property-literals": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-regenerator": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "regenerator-transform": "^0.15.2" +- } +- }, +- "@babel/plugin-transform-reserved-words": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-shorthand-properties": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-spread": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-sticky-regex": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-template-literals": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-typeof-symbol": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-typescript": { +- "version": "7.23.4", +- "dev": true, +- "requires": { +- "@babel/helper-annotate-as-pure": "^7.22.5", +- "@babel/helper-create-class-features-plugin": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5", +- "@babel/plugin-syntax-typescript": "^7.23.3" +- } +- }, +- "@babel/plugin-transform-unicode-escapes": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/plugin-transform-unicode-regex": { +- "version": "7.23.3", +- "dev": true, +- "requires": { +- "@babel/helper-create-regexp-features-plugin": "^7.22.15", +- "@babel/helper-plugin-utils": "^7.22.5" +- } +- }, +- "@babel/preset-env": { +- "version": "7.15.8", +- "dev": true, +- "requires": { +- "@babel/compat-data": "^7.15.0", +- "@babel/helper-compilation-targets": "^7.15.4", +- "@babel/helper-plugin-utils": "^7.14.5", +- "@babel/helper-validator-option": "^7.14.5", +- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", +- "@babel/plugin-proposal-async-generator-functions": "^7.15.8", +- "@babel/plugin-proposal-class-properties": "^7.14.5", +- "@babel/plugin-proposal-class-static-block": "^7.15.4", +- "@babel/plugin-proposal-dynamic-import": "^7.14.5", +- "@babel/plugin-proposal-export-namespace-from": "^7.14.5", +- "@babel/plugin-proposal-json-strings": "^7.14.5", +- "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", +- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", +- "@babel/plugin-proposal-numeric-separator": "^7.14.5", +- "@babel/plugin-proposal-object-rest-spread": "^7.15.6", +- "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", +- "@babel/plugin-proposal-optional-chaining": "^7.14.5", +- "@babel/plugin-proposal-private-methods": "^7.14.5", +- "@babel/plugin-proposal-private-property-in-object": "^7.15.4", +- "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", +- "@babel/plugin-syntax-async-generators": "^7.8.4", +- "@babel/plugin-syntax-class-properties": "^7.12.13", +- "@babel/plugin-syntax-class-static-block": "^7.14.5", +- "@babel/plugin-syntax-dynamic-import": "^7.8.3", +- "@babel/plugin-syntax-export-namespace-from": "^7.8.3", +- "@babel/plugin-syntax-json-strings": "^7.8.3", +- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", +- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", +- "@babel/plugin-syntax-numeric-separator": "^7.10.4", +- "@babel/plugin-syntax-object-rest-spread": "^7.8.3", +- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", +- "@babel/plugin-syntax-optional-chaining": "^7.8.3", +- "@babel/plugin-syntax-private-property-in-object": "^7.14.5", +- "@babel/plugin-syntax-top-level-await": "^7.14.5", +- "@babel/plugin-transform-arrow-functions": "^7.14.5", +- "@babel/plugin-transform-async-to-generator": "^7.14.5", +- "@babel/plugin-transform-block-scoped-functions": "^7.14.5", +- "@babel/plugin-transform-block-scoping": "^7.15.3", +- "@babel/plugin-transform-classes": "^7.15.4", +- "@babel/plugin-transform-computed-properties": "^7.14.5", +- "@babel/plugin-transform-destructuring": "^7.14.7", +- "@babel/plugin-transform-dotall-regex": "^7.14.5", +- "@babel/plugin-transform-duplicate-keys": "^7.14.5", +- "@babel/plugin-transform-exponentiation-operator": "^7.14.5", +- "@babel/plugin-transform-for-of": "^7.15.4", +- "@babel/plugin-transform-function-name": "^7.14.5", +- "@babel/plugin-transform-literals": "^7.14.5", +- "@babel/plugin-transform-member-expression-literals": "^7.14.5", +- "@babel/plugin-transform-modules-amd": "^7.14.5", +- "@babel/plugin-transform-modules-commonjs": "^7.15.4", +- "@babel/plugin-transform-modules-systemjs": "^7.15.4", +- "@babel/plugin-transform-modules-umd": "^7.14.5", +- "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", +- "@babel/plugin-transform-new-target": "^7.14.5", +- "@babel/plugin-transform-object-super": "^7.14.5", +- "@babel/plugin-transform-parameters": "^7.15.4", +- "@babel/plugin-transform-property-literals": "^7.14.5", +- "@babel/plugin-transform-regenerator": "^7.14.5", +- "@babel/plugin-transform-reserved-words": "^7.14.5", +- "@babel/plugin-transform-shorthand-properties": "^7.14.5", +- "@babel/plugin-transform-spread": "^7.15.8", +- "@babel/plugin-transform-sticky-regex": "^7.14.5", +- "@babel/plugin-transform-template-literals": "^7.14.5", +- "@babel/plugin-transform-typeof-symbol": "^7.14.5", +- "@babel/plugin-transform-unicode-escapes": "^7.14.5", +- "@babel/plugin-transform-unicode-regex": "^7.14.5", +- "@babel/preset-modules": "^0.1.4", +- "@babel/types": "^7.15.6", +- "babel-plugin-polyfill-corejs2": "^0.2.2", +- "babel-plugin-polyfill-corejs3": "^0.2.5", +- "babel-plugin-polyfill-regenerator": "^0.2.2", +- "core-js-compat": "^3.16.0", +- "semver": "^6.3.0" +- } +- }, +- "@babel/preset-modules": { +- "version": "0.1.6", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.0.0", +- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", +- "@babel/plugin-transform-dotall-regex": "^7.4.4", +- "@babel/types": "^7.4.4", +- "esutils": "^2.0.2" +- } +- }, +- "@babel/preset-typescript": { +- "version": "7.16.7", +- "dev": true, +- "requires": { +- "@babel/helper-plugin-utils": "^7.16.7", +- "@babel/helper-validator-option": "^7.16.7", +- "@babel/plugin-transform-typescript": "^7.16.7" +- } +- }, +- "@babel/regjsgen": { +- "version": "0.8.0", +- "dev": true +- }, +- "@babel/runtime": { +- "version": "7.23.4", +- "dev": true, +- "requires": { +- "regenerator-runtime": "^0.14.0" +- } +- }, +- "@babel/template": { +- "version": "7.22.15", +- "requires": { +- "@babel/code-frame": "^7.22.13", +- "@babel/parser": "^7.22.15", +- "@babel/types": "^7.22.15" +- } +- }, +- "@babel/traverse": { +- "version": "7.23.4", +- "requires": { +- "@babel/code-frame": "^7.23.4", +- "@babel/generator": "^7.23.4", +- "@babel/helper-environment-visitor": "^7.22.20", +- "@babel/helper-function-name": "^7.23.0", +- "@babel/helper-hoist-variables": "^7.22.5", +- "@babel/helper-split-export-declaration": "^7.22.6", +- "@babel/parser": "^7.23.4", +- "@babel/types": "^7.23.4", +- "debug": "^4.1.0", +- "globals": "^11.1.0" +- } +- }, +- "@babel/types": { +- "version": "7.23.4", +- "requires": { +- "@babel/helper-string-parser": "^7.23.4", +- "@babel/helper-validator-identifier": "^7.22.20", +- "to-fast-properties": "^2.0.0" +- } +- }, +- "@commitlint/cli": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/format": "^19.0.3", +- "@commitlint/lint": "^19.0.3", +- "@commitlint/load": "^19.0.3", +- "@commitlint/read": "^19.0.3", +- "@commitlint/types": "^19.0.3", +- "execa": "^8.0.1", +- "yargs": "^17.0.0" +- }, +- "dependencies": { +- "cliui": { +- "version": "8.0.1", +- "dev": true, +- "requires": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.1", +- "wrap-ansi": "^7.0.0" +- } +- }, +- "execa": { +- "version": "8.0.1", +- "dev": true, +- "requires": { +- "cross-spawn": "^7.0.3", +- "get-stream": "^8.0.1", +- "human-signals": "^5.0.0", +- "is-stream": "^3.0.0", +- "merge-stream": "^2.0.0", +- "npm-run-path": "^5.1.0", +- "onetime": "^6.0.0", +- "signal-exit": "^4.1.0", +- "strip-final-newline": "^3.0.0" +- } +- }, +- "get-stream": { +- "version": "8.0.1", +- "dev": true +- }, +- "human-signals": { +- "version": "5.0.0", +- "dev": true +- }, +- "is-stream": { +- "version": "3.0.0", +- "dev": true +- }, +- "mimic-fn": { +- "version": "4.0.0", +- "dev": true +- }, +- "npm-run-path": { +- "version": "5.3.0", +- "dev": true, +- "requires": { +- "path-key": "^4.0.0" +- } +- }, +- "onetime": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "mimic-fn": "^4.0.0" +- } +- }, +- "path-key": { +- "version": "4.0.0", +- "dev": true +- }, +- "signal-exit": { +- "version": "4.1.0", +- "dev": true +- }, +- "strip-final-newline": { +- "version": "3.0.0", +- "dev": true +- }, +- "wrap-ansi": { +- "version": "7.0.0", +- "dev": true, +- "requires": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- } +- }, +- "y18n": { +- "version": "5.0.8", +- "dev": true +- }, +- "yargs": { +- "version": "17.7.2", +- "dev": true, +- "requires": { +- "cliui": "^8.0.1", +- "escalade": "^3.1.1", +- "get-caller-file": "^2.0.5", +- "require-directory": "^2.1.1", +- "string-width": "^4.2.3", +- "y18n": "^5.0.5", +- "yargs-parser": "^21.1.1" +- } +- }, +- "yargs-parser": { +- "version": "21.1.1", +- "dev": true +- } +- } +- }, +- "@commitlint/config-conventional": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/types": "^19.0.3", +- "conventional-changelog-conventionalcommits": "^7.0.2" +- }, +- "dependencies": { +- "conventional-changelog-conventionalcommits": { +- "version": "7.0.2", +- "dev": true, +- "requires": { +- "compare-func": "^2.0.0" +- } +- } +- } +- }, +- "@commitlint/config-validator": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/types": "^19.0.3", +- "ajv": "^8.11.0" +- }, +- "dependencies": { +- "ajv": { +- "version": "8.12.0", +- "dev": true, +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- } +- }, +- "json-schema-traverse": { +- "version": "1.0.0", +- "dev": true +- } +- } +- }, +- "@commitlint/ensure": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/types": "^19.0.3", +- "lodash.camelcase": "^4.3.0", +- "lodash.kebabcase": "^4.1.1", +- "lodash.snakecase": "^4.1.1", +- "lodash.startcase": "^4.4.0", +- "lodash.upperfirst": "^4.3.1" +- } +- }, +- "@commitlint/execute-rule": { +- "version": "19.0.0", +- "dev": true +- }, +- "@commitlint/format": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/types": "^19.0.3", +- "chalk": "^5.3.0" +- }, +- "dependencies": { +- "chalk": { +- "version": "5.3.0", +- "dev": true +- } +- } +- }, +- "@commitlint/is-ignored": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/types": "^19.0.3", +- "semver": "^7.6.0" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.6.0", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "@commitlint/lint": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/is-ignored": "^19.0.3", +- "@commitlint/parse": "^19.0.3", +- "@commitlint/rules": "^19.0.3", +- "@commitlint/types": "^19.0.3" +- } +- }, +- "@commitlint/load": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/config-validator": "^19.0.3", +- "@commitlint/execute-rule": "^19.0.0", +- "@commitlint/resolve-extends": "^19.0.3", +- "@commitlint/types": "^19.0.3", +- "chalk": "^5.3.0", +- "cosmiconfig": "^8.3.6", +- "cosmiconfig-typescript-loader": "^5.0.0", +- "lodash.isplainobject": "^4.0.6", +- "lodash.merge": "^4.6.2", +- "lodash.uniq": "^4.5.0" +- }, +- "dependencies": { +- "chalk": { +- "version": "5.3.0", +- "dev": true +- }, +- "cosmiconfig": { +- "version": "8.3.6", +- "dev": true, +- "requires": { +- "import-fresh": "^3.3.0", +- "js-yaml": "^4.1.0", +- "parse-json": "^5.2.0", +- "path-type": "^4.0.0" +- } +- }, +- "cosmiconfig-typescript-loader": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "jiti": "^1.19.1" +- } +- }, +- "parse-json": { +- "version": "5.2.0", +- "dev": true, +- "requires": { +- "@babel/code-frame": "^7.0.0", +- "error-ex": "^1.3.1", +- "json-parse-even-better-errors": "^2.3.0", +- "lines-and-columns": "^1.1.6" +- } +- }, +- "typescript": { +- "version": "5.4.2", +- "dev": true, +- "peer": true +- } +- } +- }, +- "@commitlint/message": { +- "version": "19.0.0", +- "dev": true +- }, +- "@commitlint/parse": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/types": "^19.0.3", +- "conventional-changelog-angular": "^7.0.0", +- "conventional-commits-parser": "^5.0.0" +- }, +- "dependencies": { +- "conventional-changelog-angular": { +- "version": "7.0.0", +- "dev": true, +- "requires": { +- "compare-func": "^2.0.0" +- } +- }, +- "conventional-commits-parser": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "is-text-path": "^2.0.0", +- "JSONStream": "^1.3.5", +- "meow": "^12.0.1", +- "split2": "^4.0.0" +- } +- }, +- "is-text-path": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "text-extensions": "^2.0.0" +- } +- }, +- "meow": { +- "version": "12.1.1", +- "dev": true +- }, +- "text-extensions": { +- "version": "2.4.0", +- "dev": true +- } +- } +- }, +- "@commitlint/read": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/top-level": "^19.0.0", +- "@commitlint/types": "^19.0.3", +- "git-raw-commits": "^4.0.0", +- "minimist": "^1.2.8" +- }, +- "dependencies": { +- "dargs": { +- "version": "8.1.0", +- "dev": true +- }, +- "git-raw-commits": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "dargs": "^8.0.0", +- "meow": "^12.0.1", +- "split2": "^4.0.0" +- } +- }, +- "meow": { +- "version": "12.1.1", +- "dev": true +- } +- } +- }, +- "@commitlint/resolve-extends": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/config-validator": "^19.0.3", +- "@commitlint/types": "^19.0.3", +- "global-directory": "^4.0.1", +- "import-meta-resolve": "^4.0.0", +- "lodash.mergewith": "^4.6.2", +- "resolve-from": "^5.0.0" +- }, +- "dependencies": { +- "resolve-from": { +- "version": "5.0.0", +- "dev": true +- } +- } +- }, +- "@commitlint/rules": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@commitlint/ensure": "^19.0.3", +- "@commitlint/message": "^19.0.0", +- "@commitlint/to-lines": "^19.0.0", +- "@commitlint/types": "^19.0.3", +- "execa": "^8.0.1" +- }, +- "dependencies": { +- "execa": { +- "version": "8.0.1", +- "dev": true, +- "requires": { +- "cross-spawn": "^7.0.3", +- "get-stream": "^8.0.1", +- "human-signals": "^5.0.0", +- "is-stream": "^3.0.0", +- "merge-stream": "^2.0.0", +- "npm-run-path": "^5.1.0", +- "onetime": "^6.0.0", +- "signal-exit": "^4.1.0", +- "strip-final-newline": "^3.0.0" +- } +- }, +- "get-stream": { +- "version": "8.0.1", +- "dev": true +- }, +- "human-signals": { +- "version": "5.0.0", +- "dev": true +- }, +- "is-stream": { +- "version": "3.0.0", +- "dev": true +- }, +- "mimic-fn": { +- "version": "4.0.0", +- "dev": true +- }, +- "npm-run-path": { +- "version": "5.3.0", +- "dev": true, +- "requires": { +- "path-key": "^4.0.0" +- } +- }, +- "onetime": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "mimic-fn": "^4.0.0" +- } +- }, +- "path-key": { +- "version": "4.0.0", +- "dev": true +- }, +- "signal-exit": { +- "version": "4.1.0", +- "dev": true +- }, +- "strip-final-newline": { +- "version": "3.0.0", +- "dev": true +- } +- } +- }, +- "@commitlint/to-lines": { +- "version": "19.0.0", +- "dev": true +- }, +- "@commitlint/top-level": { +- "version": "19.0.0", +- "dev": true, +- "requires": { +- "find-up": "^7.0.0" +- }, +- "dependencies": { +- "find-up": { +- "version": "7.0.0", +- "dev": true, +- "requires": { +- "locate-path": "^7.2.0", +- "path-exists": "^5.0.0", +- "unicorn-magic": "^0.1.0" +- } +- }, +- "locate-path": { +- "version": "7.2.0", +- "dev": true, +- "requires": { +- "p-locate": "^6.0.0" +- } +- }, +- "p-limit": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "yocto-queue": "^1.0.0" +- } +- }, +- "p-locate": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "p-limit": "^4.0.0" +- } +- }, +- "path-exists": { +- "version": "5.0.0", +- "dev": true +- }, +- "yocto-queue": { +- "version": "1.0.0", +- "dev": true +- } +- } +- }, +- "@commitlint/types": { +- "version": "19.0.3", +- "dev": true, +- "requires": { +- "@types/conventional-commits-parser": "^5.0.0", +- "chalk": "^5.3.0" +- }, +- "dependencies": { +- "chalk": { +- "version": "5.3.0", +- "dev": true +- } +- } +- }, +- "@cspotcode/source-map-support": { +- "version": "0.8.1", +- "dev": true, +- "requires": { +- "@jridgewell/trace-mapping": "0.3.9" +- }, +- "dependencies": { +- "@jridgewell/trace-mapping": { +- "version": "0.3.9", +- "dev": true, +- "requires": { +- "@jridgewell/resolve-uri": "^3.0.3", +- "@jridgewell/sourcemap-codec": "^1.4.10" +- } +- } +- } +- }, +- "@csstools/css-parser-algorithms": { +- "version": "2.3.2", +- "dev": true, +- "requires": {} +- }, +- "@csstools/css-tokenizer": { +- "version": "2.2.1", +- "dev": true +- }, +- "@csstools/media-query-list-parser": { +- "version": "2.1.5", +- "dev": true, +- "requires": {} +- }, +- "@csstools/selector-specificity": { +- "version": "3.0.0", +- "dev": true, +- "requires": {} +- }, +- "@develar/schema-utils": { +- "version": "2.6.5", +- "dev": true, +- "requires": { +- "ajv": "^6.12.0", +- "ajv-keywords": "^3.4.1" +- } +- }, +- "@discoveryjs/json-ext": { +- "version": "0.5.7" +- }, +- "@electron/asar": { +- "version": "3.2.10", +- "dev": true, +- "requires": { +- "commander": "^5.0.0", +- "glob": "^7.1.6", +- "minimatch": "^3.0.4" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- } +- } +- }, +- "@electron/get": { +- "version": "2.0.3", +- "requires": { +- "debug": "^4.1.1", +- "env-paths": "^2.2.0", +- "fs-extra": "^8.1.0", +- "global-agent": "^3.0.0", +- "got": "^11.8.5", +- "progress": "^2.0.3", +- "semver": "^6.2.0", +- "sumchecker": "^3.0.1" +- } +- }, +- "@electron/notarize": { +- "version": "2.2.1", +- "dev": true, +- "requires": { +- "debug": "^4.1.1", +- "fs-extra": "^9.0.1", +- "promise-retry": "^2.0.1" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "9.1.0", +- "dev": true, +- "requires": { +- "at-least-node": "^1.0.0", +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "@electron/osx-sign": { +- "version": "1.0.5", +- "dev": true, +- "requires": { +- "compare-version": "^0.1.2", +- "debug": "^4.3.4", +- "fs-extra": "^10.0.0", +- "isbinaryfile": "^4.0.8", +- "minimist": "^1.2.6", +- "plist": "^3.0.5" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "isbinaryfile": { +- "version": "4.0.10", +- "dev": true +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "@electron/remote": { +- "version": "2.1.2", +- "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.1.2.tgz", +- "integrity": "sha512-EPwNx+nhdrTBxyCqXt/pftoQg/ybtWDW3DUWHafejvnB1ZGGfMpv6e15D8KeempocjXe78T7WreyGGb3mlZxdA==", +- "requires": {} +- }, +- "@electron/universal": { +- "version": "1.5.1", +- "dev": true, +- "requires": { +- "@electron/asar": "^3.2.1", +- "@malept/cross-spawn-promise": "^1.1.0", +- "debug": "^4.3.1", +- "dir-compare": "^3.0.0", +- "fs-extra": "^9.0.1", +- "minimatch": "^3.0.4", +- "plist": "^3.0.4" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "fs-extra": { +- "version": "9.1.0", +- "dev": true, +- "requires": { +- "at-least-node": "^1.0.0", +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "@eslint/eslintrc": { +- "version": "0.4.3", +- "dev": true, +- "requires": { +- "ajv": "^6.12.4", +- "debug": "^4.1.1", +- "espree": "^7.3.0", +- "globals": "^13.9.0", +- "ignore": "^4.0.6", +- "import-fresh": "^3.2.1", +- "js-yaml": "^3.13.1", +- "minimatch": "^3.0.4", +- "strip-json-comments": "^3.1.1" +- }, +- "dependencies": { +- "argparse": { +- "version": "1.0.10", +- "dev": true, +- "requires": { +- "sprintf-js": "~1.0.2" +- } +- }, +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "globals": { +- "version": "13.23.0", +- "dev": true, +- "requires": { +- "type-fest": "^0.20.2" +- } +- }, +- "ignore": { +- "version": "4.0.6", +- "dev": true +- }, +- "js-yaml": { +- "version": "3.14.1", +- "dev": true, +- "requires": { +- "argparse": "^1.0.7", +- "esprima": "^4.0.0" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- }, +- "sprintf-js": { +- "version": "1.0.3", +- "dev": true +- }, +- "type-fest": { +- "version": "0.20.2", +- "dev": true +- } +- } +- }, +- "@fabio286/ssh2-promise": { +- "version": "1.0.4b", +- "requires": { +- "@heroku/socksv5": "^0.0.9", +- "ssh2": "~1.14.0" +- } +- }, +- "@faker-js/faker": { +- "version": "6.1.2" +- }, +- "@floating-ui/core": { +- "version": "1.5.0", +- "requires": { +- "@floating-ui/utils": "^0.1.3" +- } +- }, +- "@floating-ui/dom": { +- "version": "1.1.1", +- "requires": { +- "@floating-ui/core": "^1.1.0" +- } +- }, +- "@floating-ui/utils": { +- "version": "0.1.6" +- }, +- "@heroku/socksv5": { +- "version": "0.0.9", +- "requires": { +- "ip-address": "^5.8.8" +- } +- }, +- "@humanwhocodes/config-array": { +- "version": "0.5.0", +- "dev": true, +- "requires": { +- "@humanwhocodes/object-schema": "^1.2.0", +- "debug": "^4.1.1", +- "minimatch": "^3.0.4" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- } +- } +- }, +- "@humanwhocodes/object-schema": { +- "version": "1.2.1", +- "dev": true +- }, +- "@hutson/parse-repository-url": { +- "version": "3.0.2", +- "dev": true +- }, +- "@intlify/core-base": { +- "version": "9.13.1", +- "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.13.1.tgz", +- "integrity": "sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==", +- "requires": { +- "@intlify/message-compiler": "9.13.1", +- "@intlify/shared": "9.13.1" +- } +- }, +- "@intlify/message-compiler": { +- "version": "9.13.1", +- "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.13.1.tgz", +- "integrity": "sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==", +- "requires": { +- "@intlify/shared": "9.13.1", +- "source-map-js": "^1.0.2" +- } +- }, +- "@intlify/shared": { +- "version": "9.13.1", +- "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.13.1.tgz", +- "integrity": "sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==" +- }, +- "@isaacs/cliui": { +- "version": "8.0.2", +- "dev": true, +- "requires": { +- "string-width": "^5.1.2", +- "string-width-cjs": "npm:string-width@^4.2.0", +- "strip-ansi": "^7.0.1", +- "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", +- "wrap-ansi": "^8.1.0", +- "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" +- }, +- "dependencies": { +- "ansi-regex": { +- "version": "6.0.1", +- "dev": true +- }, +- "ansi-styles": { +- "version": "6.2.1", +- "dev": true +- }, +- "emoji-regex": { +- "version": "9.2.2", +- "dev": true +- }, +- "string-width": { +- "version": "5.1.2", +- "dev": true, +- "requires": { +- "eastasianwidth": "^0.2.0", +- "emoji-regex": "^9.2.2", +- "strip-ansi": "^7.0.1" +- } +- }, +- "strip-ansi": { +- "version": "7.1.0", +- "dev": true, +- "requires": { +- "ansi-regex": "^6.0.1" +- } +- }, +- "wrap-ansi": { +- "version": "8.1.0", +- "dev": true, +- "requires": { +- "ansi-styles": "^6.1.0", +- "string-width": "^5.0.1", +- "strip-ansi": "^7.0.1" +- } +- } +- } +- }, +- "@jamescoyle/vue-icon": { +- "version": "0.1.2" +- }, +- "@jridgewell/gen-mapping": { +- "version": "0.3.3", +- "requires": { +- "@jridgewell/set-array": "^1.0.1", +- "@jridgewell/sourcemap-codec": "^1.4.10", +- "@jridgewell/trace-mapping": "^0.3.9" +- } +- }, +- "@jridgewell/resolve-uri": { +- "version": "3.1.1" +- }, +- "@jridgewell/set-array": { +- "version": "1.1.2" +- }, +- "@jridgewell/source-map": { +- "version": "0.3.5", +- "requires": { +- "@jridgewell/gen-mapping": "^0.3.0", +- "@jridgewell/trace-mapping": "^0.3.9" +- } +- }, +- "@jridgewell/sourcemap-codec": { +- "version": "1.4.15" +- }, +- "@jridgewell/trace-mapping": { +- "version": "0.3.20", +- "requires": { +- "@jridgewell/resolve-uri": "^3.1.0", +- "@jridgewell/sourcemap-codec": "^1.4.14" +- } +- }, +- "@leichtgewicht/ip-codec": { +- "version": "2.0.4", +- "dev": true +- }, +- "@malept/cross-spawn-promise": { +- "version": "1.1.1", +- "dev": true, +- "requires": { +- "cross-spawn": "^7.0.1" +- } +- }, +- "@malept/flatpak-bundler": { +- "version": "0.4.0", +- "dev": true, +- "requires": { +- "debug": "^4.1.1", +- "fs-extra": "^9.0.0", +- "lodash": "^4.17.15", +- "tmp-promise": "^3.0.2" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "9.1.0", +- "dev": true, +- "requires": { +- "at-least-node": "^1.0.0", +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "@mdi/js": { +- "version": "7.2.96" +- }, +- "@nodelib/fs.scandir": { +- "version": "2.1.5", +- "dev": true, +- "requires": { +- "@nodelib/fs.stat": "2.0.5", +- "run-parallel": "^1.1.9" +- } +- }, +- "@nodelib/fs.stat": { +- "version": "2.0.5", +- "dev": true +- }, +- "@nodelib/fs.walk": { +- "version": "1.2.8", +- "dev": true, +- "requires": { +- "@nodelib/fs.scandir": "2.1.5", +- "fastq": "^1.6.0" +- } +- }, +- "@pkgjs/parseargs": { +- "version": "0.11.0", +- "dev": true, +- "optional": true +- }, +- "@playwright/test": { +- "version": "1.28.1", +- "dev": true, +- "requires": { +- "@types/node": "*", +- "playwright-core": "1.28.1" +- } +- }, +- "@sindresorhus/is": { +- "version": "4.6.0" +- }, +- "@szmarczak/http-timer": { +- "version": "4.0.6", +- "requires": { +- "defer-to-connect": "^2.0.0" +- } +- }, +- "@tootallnate/once": { +- "version": "2.0.0", +- "dev": true +- }, +- "@tsconfig/node10": { +- "version": "1.0.9", +- "dev": true +- }, +- "@tsconfig/node12": { +- "version": "1.0.11", +- "dev": true +- }, +- "@tsconfig/node14": { +- "version": "1.0.3", +- "dev": true +- }, +- "@tsconfig/node16": { +- "version": "1.0.4", +- "dev": true +- }, +- "@turf/helpers": { +- "version": "6.5.0" +- }, +- "@types/better-sqlite3": { +- "version": "7.5.0", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/body-parser": { +- "version": "1.19.5", +- "dev": true, +- "requires": { +- "@types/connect": "*", +- "@types/node": "*" +- } +- }, +- "@types/bonjour": { +- "version": "3.5.13", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/cacheable-request": { +- "version": "6.0.3", +- "requires": { +- "@types/http-cache-semantics": "*", +- "@types/keyv": "^3.1.4", +- "@types/node": "*", +- "@types/responselike": "^1.0.0" +- } +- }, +- "@types/connect": { +- "version": "3.4.38", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/connect-history-api-fallback": { +- "version": "1.5.4", +- "dev": true, +- "requires": { +- "@types/express-serve-static-core": "*", +- "@types/node": "*" +- } +- }, +- "@types/conventional-commits-parser": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/debug": { +- "version": "4.1.12", +- "dev": true, +- "requires": { +- "@types/ms": "*" +- } +- }, +- "@types/eslint": { +- "version": "8.44.7", +- "requires": { +- "@types/estree": "*", +- "@types/json-schema": "*" +- } +- }, +- "@types/eslint-scope": { +- "version": "3.7.7", +- "requires": { +- "@types/eslint": "*", +- "@types/estree": "*" +- } +- }, +- "@types/estree": { +- "version": "1.0.5" +- }, +- "@types/express": { +- "version": "4.17.21", +- "dev": true, +- "requires": { +- "@types/body-parser": "*", +- "@types/express-serve-static-core": "^4.17.33", +- "@types/qs": "*", +- "@types/serve-static": "*" +- } +- }, +- "@types/express-serve-static-core": { +- "version": "4.17.41", +- "dev": true, +- "requires": { +- "@types/node": "*", +- "@types/qs": "*", +- "@types/range-parser": "*", +- "@types/send": "*" +- } +- }, +- "@types/fs-extra": { +- "version": "9.0.13", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/geojson": { +- "version": "7946.0.13", +- "dev": true +- }, +- "@types/html-minifier-terser": { +- "version": "6.1.0" +- }, +- "@types/http-cache-semantics": { +- "version": "4.0.4" +- }, +- "@types/http-errors": { +- "version": "2.0.4", +- "dev": true +- }, +- "@types/http-proxy": { +- "version": "1.17.14", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/json-schema": { +- "version": "7.0.15" +- }, +- "@types/json5": { +- "version": "0.0.29", +- "dev": true +- }, +- "@types/keyv": { +- "version": "3.1.4", +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/leaflet": { +- "version": "1.7.11", +- "dev": true, +- "requires": { +- "@types/geojson": "*" +- } +- }, +- "@types/marked": { +- "version": "4.0.8", +- "dev": true +- }, +- "@types/mime": { +- "version": "1.3.5", +- "dev": true +- }, +- "@types/minimist": { +- "version": "1.2.5", +- "dev": true +- }, +- "@types/ms": { +- "version": "0.7.34", +- "dev": true +- }, +- "@types/node": { +- "version": "17.0.45" +- }, +- "@types/node-forge": { +- "version": "1.3.10", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/normalize-package-data": { +- "version": "2.4.4", +- "dev": true +- }, +- "@types/pg": { +- "version": "8.6.6", +- "dev": true, +- "requires": { +- "@types/node": "*", +- "pg-protocol": "*", +- "pg-types": "^2.2.0" +- } +- }, +- "@types/qs": { +- "version": "6.9.10", +- "dev": true +- }, +- "@types/range-parser": { +- "version": "1.2.7", +- "dev": true +- }, +- "@types/responselike": { +- "version": "1.0.3", +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/retry": { +- "version": "0.12.0", +- "dev": true +- }, +- "@types/semver": { +- "version": "7.5.6" +- }, +- "@types/send": { +- "version": "0.17.4", +- "dev": true, +- "requires": { +- "@types/mime": "^1", +- "@types/node": "*" +- } +- }, +- "@types/serve-index": { +- "version": "1.9.4", +- "dev": true, +- "requires": { +- "@types/express": "*" +- } +- }, +- "@types/serve-static": { +- "version": "1.15.5", +- "dev": true, +- "requires": { +- "@types/http-errors": "*", +- "@types/mime": "*", +- "@types/node": "*" +- } +- }, +- "@types/sockjs": { +- "version": "0.3.36", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/ssh2": { +- "version": "1.11.17", +- "dev": true, +- "requires": { +- "@types/node": "^18.11.18" +- }, +- "dependencies": { +- "@types/node": { +- "version": "18.18.13", +- "dev": true, +- "requires": { +- "undici-types": "~5.26.4" +- } +- } +- } +- }, +- "@types/web-bluetooth": { +- "version": "0.0.17" +- }, +- "@types/ws": { +- "version": "8.5.10", +- "dev": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@types/yauzl": { +- "version": "2.10.3", +- "optional": true, +- "requires": { +- "@types/node": "*" +- } +- }, +- "@typescript-eslint/eslint-plugin": { +- "version": "5.18.0", +- "dev": true, +- "requires": { +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/type-utils": "5.18.0", +- "@typescript-eslint/utils": "5.18.0", +- "debug": "^4.3.2", +- "functional-red-black-tree": "^1.0.1", +- "ignore": "^5.1.8", +- "regexpp": "^3.2.0", +- "semver": "^7.3.5", +- "tsutils": "^3.21.0" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "@typescript-eslint/parser": { +- "version": "5.18.0", +- "dev": true, +- "requires": { +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/typescript-estree": "5.18.0", +- "debug": "^4.3.2" +- } +- }, +- "@typescript-eslint/scope-manager": { +- "version": "5.18.0", +- "dev": true, +- "requires": { +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/visitor-keys": "5.18.0" +- } +- }, +- "@typescript-eslint/type-utils": { +- "version": "5.18.0", +- "dev": true, +- "requires": { +- "@typescript-eslint/utils": "5.18.0", +- "debug": "^4.3.2", +- "tsutils": "^3.21.0" +- } +- }, +- "@typescript-eslint/types": { +- "version": "5.18.0", +- "dev": true +- }, +- "@typescript-eslint/typescript-estree": { +- "version": "5.18.0", +- "dev": true, +- "requires": { +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/visitor-keys": "5.18.0", +- "debug": "^4.3.2", +- "globby": "^11.0.4", +- "is-glob": "^4.0.3", +- "semver": "^7.3.5", +- "tsutils": "^3.21.0" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "@typescript-eslint/utils": { +- "version": "5.18.0", +- "dev": true, +- "requires": { +- "@types/json-schema": "^7.0.9", +- "@typescript-eslint/scope-manager": "5.18.0", +- "@typescript-eslint/types": "5.18.0", +- "@typescript-eslint/typescript-estree": "5.18.0", +- "eslint-scope": "^5.1.1", +- "eslint-utils": "^3.0.0" +- } +- }, +- "@typescript-eslint/visitor-keys": { +- "version": "5.18.0", +- "dev": true, +- "requires": { +- "@typescript-eslint/types": "5.18.0", +- "eslint-visitor-keys": "^3.0.0" +- }, +- "dependencies": { +- "eslint-visitor-keys": { +- "version": "3.4.3", +- "dev": true +- } +- } +- }, +- "@vue/compiler-core": { +- "version": "3.2.47", +- "requires": { +- "@babel/parser": "^7.16.4", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "source-map": "^0.6.1" +- } +- }, +- "@vue/compiler-dom": { +- "version": "3.2.47", +- "requires": { +- "@vue/compiler-core": "3.2.47", +- "@vue/shared": "3.2.47" +- } +- }, +- "@vue/compiler-sfc": { +- "version": "3.2.47", +- "requires": { +- "@babel/parser": "^7.16.4", +- "@vue/compiler-core": "3.2.47", +- "@vue/compiler-dom": "3.2.47", +- "@vue/compiler-ssr": "3.2.47", +- "@vue/reactivity-transform": "3.2.47", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "magic-string": "^0.25.7", +- "postcss": "^8.1.10", +- "source-map": "^0.6.1" +- } +- }, +- "@vue/compiler-ssr": { +- "version": "3.2.47", +- "requires": { +- "@vue/compiler-dom": "3.2.47", +- "@vue/shared": "3.2.47" +- } +- }, +- "@vue/devtools-api": { +- "version": "6.5.1" +- }, +- "@vue/reactivity": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.27.tgz", +- "integrity": "sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==", +- "requires": { +- "@vue/shared": "3.4.27" +- }, +- "dependencies": { +- "@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- } +- } +- }, +- "@vue/reactivity-transform": { +- "version": "3.2.47", +- "requires": { +- "@babel/parser": "^7.16.4", +- "@vue/compiler-core": "3.2.47", +- "@vue/shared": "3.2.47", +- "estree-walker": "^2.0.2", +- "magic-string": "^0.25.7" +- } +- }, +- "@vue/runtime-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.27.tgz", +- "integrity": "sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==", +- "requires": { +- "@vue/reactivity": "3.4.27", +- "@vue/shared": "3.4.27" +- }, +- "dependencies": { +- "@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- } +- } +- }, +- "@vue/runtime-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.27.tgz", +- "integrity": "sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==", +- "requires": { +- "@vue/runtime-core": "3.4.27", +- "@vue/shared": "3.4.27", +- "csstype": "^3.1.3" +- }, +- "dependencies": { +- "@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- } +- } +- }, +- "@vue/server-renderer": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.27.tgz", +- "integrity": "sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==", +- "requires": { +- "@vue/compiler-ssr": "3.4.27", +- "@vue/shared": "3.4.27" +- }, +- "dependencies": { +- "@vue/compiler-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.27.tgz", +- "integrity": "sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==", +- "requires": { +- "@babel/parser": "^7.24.4", +- "@vue/shared": "3.4.27", +- "entities": "^4.5.0", +- "estree-walker": "^2.0.2", +- "source-map-js": "^1.2.0" +- } +- }, +- "@vue/compiler-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz", +- "integrity": "sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==", +- "requires": { +- "@vue/compiler-core": "3.4.27", +- "@vue/shared": "3.4.27" +- } +- }, +- "@vue/compiler-ssr": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz", +- "integrity": "sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==", +- "requires": { +- "@vue/compiler-dom": "3.4.27", +- "@vue/shared": "3.4.27" +- } +- }, +- "@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- } +- } +- }, +- "@vue/shared": { +- "version": "3.2.47" +- }, +- "@vueuse/core": { +- "version": "10.4.1", +- "requires": { +- "@types/web-bluetooth": "^0.0.17", +- "@vueuse/metadata": "10.4.1", +- "@vueuse/shared": "10.4.1", +- "vue-demi": ">=0.14.5" +- }, +- "dependencies": { +- "vue-demi": { +- "version": "0.14.6", +- "requires": {} +- } +- } +- }, +- "@vueuse/metadata": { +- "version": "10.4.1" +- }, +- "@vueuse/shared": { +- "version": "10.4.1", +- "requires": { +- "vue-demi": ">=0.14.5" +- }, +- "dependencies": { +- "vue-demi": { +- "version": "0.14.6", +- "requires": {} +- } +- } +- }, +- "@webassemblyjs/ast": { +- "version": "1.12.1", +- "requires": { +- "@webassemblyjs/helper-numbers": "1.11.6", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6" +- } +- }, +- "@webassemblyjs/floating-point-hex-parser": { +- "version": "1.11.6" +- }, +- "@webassemblyjs/helper-api-error": { +- "version": "1.11.6" +- }, +- "@webassemblyjs/helper-buffer": { +- "version": "1.12.1" +- }, +- "@webassemblyjs/helper-numbers": { +- "version": "1.11.6", +- "requires": { +- "@webassemblyjs/floating-point-hex-parser": "1.11.6", +- "@webassemblyjs/helper-api-error": "1.11.6", +- "@xtuc/long": "4.2.2" +- } +- }, +- "@webassemblyjs/helper-wasm-bytecode": { +- "version": "1.11.6" +- }, +- "@webassemblyjs/helper-wasm-section": { +- "version": "1.12.1", +- "requires": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/wasm-gen": "1.12.1" +- } +- }, +- "@webassemblyjs/ieee754": { +- "version": "1.11.6", +- "requires": { +- "@xtuc/ieee754": "^1.2.0" +- } +- }, +- "@webassemblyjs/leb128": { +- "version": "1.11.6", +- "requires": { +- "@xtuc/long": "4.2.2" +- } +- }, +- "@webassemblyjs/utf8": { +- "version": "1.11.6" +- }, +- "@webassemblyjs/wasm-edit": { +- "version": "1.12.1", +- "requires": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/helper-wasm-section": "1.12.1", +- "@webassemblyjs/wasm-gen": "1.12.1", +- "@webassemblyjs/wasm-opt": "1.12.1", +- "@webassemblyjs/wasm-parser": "1.12.1", +- "@webassemblyjs/wast-printer": "1.12.1" +- } +- }, +- "@webassemblyjs/wasm-gen": { +- "version": "1.12.1", +- "requires": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/ieee754": "1.11.6", +- "@webassemblyjs/leb128": "1.11.6", +- "@webassemblyjs/utf8": "1.11.6" +- } +- }, +- "@webassemblyjs/wasm-opt": { +- "version": "1.12.1", +- "requires": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-buffer": "1.12.1", +- "@webassemblyjs/wasm-gen": "1.12.1", +- "@webassemblyjs/wasm-parser": "1.12.1" +- } +- }, +- "@webassemblyjs/wasm-parser": { +- "version": "1.12.1", +- "requires": { +- "@webassemblyjs/ast": "1.12.1", +- "@webassemblyjs/helper-api-error": "1.11.6", +- "@webassemblyjs/helper-wasm-bytecode": "1.11.6", +- "@webassemblyjs/ieee754": "1.11.6", +- "@webassemblyjs/leb128": "1.11.6", +- "@webassemblyjs/utf8": "1.11.6" +- } +- }, +- "@webassemblyjs/wast-printer": { +- "version": "1.12.1", +- "requires": { +- "@webassemblyjs/ast": "1.12.1", +- "@xtuc/long": "4.2.2" +- } +- }, +- "@webpack-cli/configtest": { +- "version": "1.2.0", +- "requires": {} +- }, +- "@webpack-cli/info": { +- "version": "1.5.0", +- "requires": { +- "envinfo": "^7.7.3" +- } +- }, +- "@webpack-cli/serve": { +- "version": "1.7.0", +- "requires": {} +- }, +- "@xmldom/xmldom": { +- "version": "0.8.10", +- "dev": true +- }, +- "@xtuc/ieee754": { +- "version": "1.2.0" +- }, +- "@xtuc/long": { +- "version": "4.2.2" +- }, +- "7zip-bin": { +- "version": "5.2.0", +- "dev": true +- }, +- "accepts": { +- "version": "1.3.8", +- "dev": true, +- "requires": { +- "mime-types": "~2.1.34", +- "negotiator": "0.6.3" +- } +- }, +- "ace-builds": { +- "version": "1.34.1", +- "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.34.1.tgz", +- "integrity": "sha512-hwRzr6BkRwsq5A19yA9E36KNNtn0+zESYolnWK3TADJsWVQS0T24nvbgdjXwqk2JEMQXE4PlqAw+ZgprvFtKjw==" +- }, +- "acorn": { +- "version": "7.4.1", +- "dev": true +- }, +- "acorn-jsx": { +- "version": "5.3.2", +- "dev": true, +- "requires": {} +- }, +- "acorn-walk": { +- "version": "8.3.0", +- "dev": true +- }, +- "add-stream": { +- "version": "1.0.0", +- "dev": true +- }, +- "agent-base": { +- "version": "6.0.2", +- "dev": true, +- "requires": { +- "debug": "4" +- } +- }, +- "ajv": { +- "version": "6.12.6", +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "fast-json-stable-stringify": "^2.0.0", +- "json-schema-traverse": "^0.4.1", +- "uri-js": "^4.2.2" +- } +- }, +- "ajv-formats": { +- "version": "2.1.1", +- "requires": { +- "ajv": "^8.0.0" +- }, +- "dependencies": { +- "ajv": { +- "version": "8.12.0", +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- } +- }, +- "json-schema-traverse": { +- "version": "1.0.0" +- } +- } +- }, +- "ajv-keywords": { +- "version": "3.5.2", +- "requires": {} +- }, +- "all-contributors-cli": { +- "version": "6.20.5", +- "dev": true, +- "requires": { +- "@babel/runtime": "^7.7.6", +- "async": "^3.1.0", +- "chalk": "^4.0.0", +- "didyoumean": "^1.2.1", +- "inquirer": "^7.3.3", +- "json-fixer": "^1.6.8", +- "lodash": "^4.11.2", +- "node-fetch": "^2.6.0", +- "pify": "^5.0.0", +- "yargs": "^15.0.1" +- } +- }, +- "ansi-colors": { +- "version": "4.1.3", +- "dev": true +- }, +- "ansi-escapes": { +- "version": "4.3.2", +- "dev": true, +- "requires": { +- "type-fest": "^0.21.3" +- }, +- "dependencies": { +- "type-fest": { +- "version": "0.21.3", +- "dev": true +- } +- } +- }, +- "ansi-html-community": { +- "version": "0.0.8", +- "dev": true +- }, +- "ansi-regex": { +- "version": "5.0.1" +- }, +- "ansi-styles": { +- "version": "4.3.0", +- "requires": { +- "color-convert": "^2.0.1" +- } +- }, +- "anymatch": { +- "version": "3.1.3", +- "requires": { +- "normalize-path": "^3.0.0", +- "picomatch": "^2.0.4" +- } +- }, +- "app-builder-bin": { +- "version": "4.0.0", +- "dev": true +- }, +- "app-builder-lib": { +- "version": "24.13.3", +- "dev": true, +- "requires": { +- "@develar/schema-utils": "~2.6.5", +- "@electron/notarize": "2.2.1", +- "@electron/osx-sign": "1.0.5", +- "@electron/universal": "1.5.1", +- "@malept/flatpak-bundler": "^0.4.0", +- "@types/fs-extra": "9.0.13", +- "async-exit-hook": "^2.0.1", +- "bluebird-lst": "^1.0.9", +- "builder-util": "24.13.1", +- "builder-util-runtime": "9.2.4", +- "chromium-pickle-js": "^0.2.0", +- "debug": "^4.3.4", +- "ejs": "^3.1.8", +- "electron-publish": "24.13.1", +- "form-data": "^4.0.0", +- "fs-extra": "^10.1.0", +- "hosted-git-info": "^4.1.0", +- "is-ci": "^3.0.0", +- "isbinaryfile": "^5.0.0", +- "js-yaml": "^4.1.0", +- "lazy-val": "^1.0.5", +- "minimatch": "^5.1.1", +- "read-config-file": "6.3.2", +- "sanitize-filename": "^1.6.3", +- "semver": "^7.3.8", +- "tar": "^6.1.12", +- "temp-file": "^3.4.0" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "semver": { +- "version": "7.6.2", +- "dev": true +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "archiver": { +- "version": "5.3.2", +- "dev": true, +- "peer": true, +- "requires": { +- "archiver-utils": "^2.1.0", +- "async": "^3.2.4", +- "buffer-crc32": "^0.2.1", +- "readable-stream": "^3.6.0", +- "readdir-glob": "^1.1.2", +- "tar-stream": "^2.2.0", +- "zip-stream": "^4.1.0" +- } +- }, +- "archiver-utils": { +- "version": "2.1.0", +- "dev": true, +- "peer": true, +- "requires": { +- "glob": "^7.1.4", +- "graceful-fs": "^4.2.0", +- "lazystream": "^1.0.0", +- "lodash.defaults": "^4.2.0", +- "lodash.difference": "^4.5.0", +- "lodash.flatten": "^4.4.0", +- "lodash.isplainobject": "^4.0.6", +- "lodash.union": "^4.6.0", +- "normalize-path": "^3.0.0", +- "readable-stream": "^2.0.0" +- }, +- "dependencies": { +- "isarray": { +- "version": "1.0.0", +- "dev": true, +- "peer": true +- }, +- "readable-stream": { +- "version": "2.3.8", +- "dev": true, +- "peer": true, +- "requires": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +- "process-nextick-args": "~2.0.0", +- "safe-buffer": "~5.1.1", +- "string_decoder": "~1.1.1", +- "util-deprecate": "~1.0.1" +- } +- }, +- "safe-buffer": { +- "version": "5.1.2", +- "dev": true, +- "peer": true +- }, +- "string_decoder": { +- "version": "1.1.1", +- "dev": true, +- "peer": true, +- "requires": { +- "safe-buffer": "~5.1.0" +- } +- } +- } +- }, +- "arg": { +- "version": "4.1.3", +- "dev": true +- }, +- "argparse": { +- "version": "2.0.1" +- }, +- "array-buffer-byte-length": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "is-array-buffer": "^3.0.1" +- } +- }, +- "array-flatten": { +- "version": "2.1.2", +- "dev": true +- }, +- "array-ify": { +- "version": "1.0.0", +- "dev": true +- }, +- "array-includes": { +- "version": "3.1.7", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "get-intrinsic": "^1.2.1", +- "is-string": "^1.0.7" +- } +- }, +- "array-union": { +- "version": "2.1.0", +- "dev": true +- }, +- "array.prototype.flat": { +- "version": "1.3.2", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "es-shim-unscopables": "^1.0.0" +- } +- }, +- "arraybuffer.prototype.slice": { +- "version": "1.0.2", +- "dev": true, +- "requires": { +- "array-buffer-byte-length": "^1.0.0", +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "get-intrinsic": "^1.2.1", +- "is-array-buffer": "^3.0.2", +- "is-shared-array-buffer": "^1.0.2" +- } +- }, +- "arrify": { +- "version": "1.0.1", +- "dev": true +- }, +- "asn1": { +- "version": "0.2.6", +- "requires": { +- "safer-buffer": "~2.1.0" +- } +- }, +- "astral-regex": { +- "version": "2.0.0", +- "dev": true +- }, +- "async": { +- "version": "3.2.5", +- "dev": true +- }, +- "async-exit-hook": { +- "version": "2.0.1", +- "dev": true +- }, +- "asynckit": { +- "version": "0.4.0", +- "dev": true +- }, +- "at-least-node": { +- "version": "1.0.0", +- "dev": true +- }, +- "atomically": { +- "version": "1.7.0" +- }, +- "available-typed-arrays": { +- "version": "1.0.5", +- "dev": true +- }, +- "babel-loader": { +- "version": "8.2.5", +- "requires": { +- "find-cache-dir": "^3.3.1", +- "loader-utils": "^2.0.0", +- "make-dir": "^3.1.0", +- "schema-utils": "^2.6.5" +- } +- }, +- "babel-plugin-polyfill-corejs2": { +- "version": "0.2.3", +- "dev": true, +- "requires": { +- "@babel/compat-data": "^7.13.11", +- "@babel/helper-define-polyfill-provider": "^0.2.4", +- "semver": "^6.1.1" +- } +- }, +- "babel-plugin-polyfill-corejs3": { +- "version": "0.2.5", +- "dev": true, +- "requires": { +- "@babel/helper-define-polyfill-provider": "^0.2.2", +- "core-js-compat": "^3.16.2" +- } +- }, +- "babel-plugin-polyfill-regenerator": { +- "version": "0.2.3", +- "dev": true, +- "requires": { +- "@babel/helper-define-polyfill-provider": "^0.2.4" +- } +- }, +- "balanced-match": { +- "version": "1.0.2" +- }, +- "base64-js": { +- "version": "1.5.1" +- }, +- "batch": { +- "version": "0.6.1", +- "dev": true +- }, +- "bcrypt-pbkdf": { +- "version": "1.0.2", +- "requires": { +- "tweetnacl": "^0.14.3" +- } +- }, +- "better-sqlite3": { +- "version": "10.0.0", +- "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-10.0.0.tgz", +- "integrity": "sha512-rOz0JY8bt9oMgrFssP7GnvA5R3yln73y/NizzWqy3WlFth8Ux8+g4r/N9fjX97nn4X1YX6MTER2doNpTu5pqiA==", +- "requires": { +- "bindings": "^1.5.0", +- "prebuild-install": "^7.1.1" +- } +- }, +- "big-integer": { +- "version": "1.6.52" +- }, +- "big.js": { +- "version": "5.2.2" +- }, +- "binary-extensions": { +- "version": "2.2.0" +- }, +- "bindings": { +- "version": "1.5.0", +- "requires": { +- "file-uri-to-path": "1.0.0" +- } +- }, +- "bl": { +- "version": "4.1.0", +- "requires": { +- "buffer": "^5.5.0", +- "inherits": "^2.0.4", +- "readable-stream": "^3.4.0" +- } +- }, +- "bluebird": { +- "version": "3.7.2", +- "dev": true +- }, +- "bluebird-lst": { +- "version": "1.0.9", +- "dev": true, +- "requires": { +- "bluebird": "^3.5.5" +- } +- }, +- "body-parser": { +- "version": "1.20.2", +- "dev": true, +- "requires": { +- "bytes": "3.1.2", +- "content-type": "~1.0.5", +- "debug": "2.6.9", +- "depd": "2.0.0", +- "destroy": "1.2.0", +- "http-errors": "2.0.0", +- "iconv-lite": "0.4.24", +- "on-finished": "2.4.1", +- "qs": "6.11.0", +- "raw-body": "2.5.2", +- "type-is": "~1.6.18", +- "unpipe": "1.0.0" +- }, +- "dependencies": { +- "bytes": { +- "version": "3.1.2", +- "dev": true +- }, +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- } +- }, +- "iconv-lite": { +- "version": "0.4.24", +- "dev": true, +- "requires": { +- "safer-buffer": ">= 2.1.2 < 3" +- } +- }, +- "ms": { +- "version": "2.0.0", +- "dev": true +- } +- } +- }, +- "bonjour-service": { +- "version": "1.1.1", +- "dev": true, +- "requires": { +- "array-flatten": "^2.1.2", +- "dns-equal": "^1.0.0", +- "fast-deep-equal": "^3.1.3", +- "multicast-dns": "^7.2.5" +- } +- }, +- "boolbase": { +- "version": "1.0.0" +- }, +- "boolean": { +- "version": "3.2.0", +- "optional": true +- }, +- "brace-expansion": { +- "version": "2.0.1", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0" +- } +- }, +- "braces": { +- "version": "3.0.2", +- "requires": { +- "fill-range": "^7.0.1" +- } +- }, +- "browserslist": { +- "version": "4.22.1", +- "requires": { +- "caniuse-lite": "^1.0.30001541", +- "electron-to-chromium": "^1.4.535", +- "node-releases": "^2.0.13", +- "update-browserslist-db": "^1.0.13" +- } +- }, +- "buffer": { +- "version": "5.7.1", +- "requires": { +- "base64-js": "^1.3.1", +- "ieee754": "^1.1.13" +- } +- }, +- "buffer-crc32": { +- "version": "0.2.13" +- }, +- "buffer-equal": { +- "version": "1.0.1", +- "dev": true +- }, +- "buffer-from": { +- "version": "1.1.2" +- }, +- "buildcheck": { +- "version": "0.0.6" +- }, +- "builder-util": { +- "version": "24.13.1", +- "dev": true, +- "requires": { +- "@types/debug": "^4.1.6", +- "7zip-bin": "~5.2.0", +- "app-builder-bin": "4.0.0", +- "bluebird-lst": "^1.0.9", +- "builder-util-runtime": "9.2.4", +- "chalk": "^4.1.2", +- "cross-spawn": "^7.0.3", +- "debug": "^4.3.4", +- "fs-extra": "^10.1.0", +- "http-proxy-agent": "^5.0.0", +- "https-proxy-agent": "^5.0.1", +- "is-ci": "^3.0.0", +- "js-yaml": "^4.1.0", +- "source-map-support": "^0.5.19", +- "stat-mode": "^1.0.0", +- "temp-file": "^3.4.0" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "builder-util-runtime": { +- "version": "9.2.4", +- "dev": true, +- "requires": { +- "debug": "^4.3.4", +- "sax": "^1.2.4" +- } +- }, +- "bytes": { +- "version": "3.0.0", +- "dev": true +- }, +- "cacheable-lookup": { +- "version": "5.0.4" +- }, +- "cacheable-request": { +- "version": "7.0.4", +- "requires": { +- "clone-response": "^1.0.2", +- "get-stream": "^5.1.0", +- "http-cache-semantics": "^4.0.0", +- "keyv": "^4.0.0", +- "lowercase-keys": "^2.0.0", +- "normalize-url": "^6.0.1", +- "responselike": "^2.0.0" +- } +- }, +- "call-bind": { +- "version": "1.0.5", +- "dev": true, +- "requires": { +- "function-bind": "^1.1.2", +- "get-intrinsic": "^1.2.1", +- "set-function-length": "^1.1.1" +- } +- }, +- "callsites": { +- "version": "3.1.0", +- "dev": true +- }, +- "camel-case": { +- "version": "4.1.2", +- "requires": { +- "pascal-case": "^3.1.2", +- "tslib": "^2.0.3" +- } +- }, +- "camelcase": { +- "version": "5.3.1", +- "dev": true +- }, +- "camelcase-keys": { +- "version": "6.2.2", +- "dev": true, +- "requires": { +- "camelcase": "^5.3.1", +- "map-obj": "^4.0.0", +- "quick-lru": "^4.0.1" +- }, +- "dependencies": { +- "quick-lru": { +- "version": "4.0.1", +- "dev": true +- } +- } +- }, +- "caniuse-lite": { +- "version": "1.0.30001564" +- }, +- "chalk": { +- "version": "4.1.2", +- "requires": { +- "ansi-styles": "^4.1.0", +- "supports-color": "^7.1.0" +- } +- }, +- "chardet": { +- "version": "0.7.0", +- "dev": true +- }, +- "chokidar": { +- "version": "3.5.3", +- "requires": { +- "anymatch": "~3.1.2", +- "braces": "~3.0.2", +- "fsevents": "~2.3.2", +- "glob-parent": "~5.1.2", +- "is-binary-path": "~2.1.0", +- "is-glob": "~4.0.1", +- "normalize-path": "~3.0.0", +- "readdirp": "~3.6.0" +- } +- }, +- "chownr": { +- "version": "2.0.0", +- "dev": true +- }, +- "chrome-trace-event": { +- "version": "1.0.3" +- }, +- "chromium-pickle-js": { +- "version": "0.2.0", +- "dev": true +- }, +- "ci-info": { +- "version": "3.9.0", +- "dev": true +- }, +- "clean-css": { +- "version": "5.3.2", +- "requires": { +- "source-map": "~0.6.0" +- } +- }, +- "cli-cursor": { +- "version": "3.1.0", +- "dev": true, +- "requires": { +- "restore-cursor": "^3.1.0" +- } +- }, +- "cli-width": { +- "version": "3.0.0", +- "dev": true +- }, +- "cliui": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.0", +- "wrap-ansi": "^6.2.0" +- }, +- "dependencies": { +- "wrap-ansi": { +- "version": "6.2.0", +- "dev": true, +- "requires": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- } +- } +- } +- }, +- "clone-deep": { +- "version": "4.0.1", +- "requires": { +- "is-plain-object": "^2.0.4", +- "kind-of": "^6.0.2", +- "shallow-clone": "^3.0.0" +- }, +- "dependencies": { +- "is-plain-object": { +- "version": "2.0.4", +- "requires": { +- "isobject": "^3.0.1" +- } +- } +- } +- }, +- "clone-response": { +- "version": "1.0.3", +- "requires": { +- "mimic-response": "^1.0.0" +- } +- }, +- "color-convert": { +- "version": "2.0.1", +- "requires": { +- "color-name": "~1.1.4" +- } +- }, +- "color-name": { +- "version": "1.1.4" +- }, +- "colord": { +- "version": "2.9.3", +- "dev": true +- }, +- "colorette": { +- "version": "2.0.20" +- }, +- "combined-stream": { +- "version": "1.0.8", +- "dev": true, +- "requires": { +- "delayed-stream": "~1.0.0" +- } +- }, +- "commander": { +- "version": "5.1.0", +- "dev": true +- }, +- "commondir": { +- "version": "1.0.1" +- }, +- "compare-func": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "array-ify": "^1.0.0", +- "dot-prop": "^5.1.0" +- }, +- "dependencies": { +- "dot-prop": { +- "version": "5.3.0", +- "dev": true, +- "requires": { +- "is-obj": "^2.0.0" +- } +- } +- } +- }, +- "compare-version": { +- "version": "0.1.2", +- "dev": true +- }, +- "compress-commons": { +- "version": "4.1.2", +- "dev": true, +- "peer": true, +- "requires": { +- "buffer-crc32": "^0.2.13", +- "crc32-stream": "^4.0.2", +- "normalize-path": "^3.0.0", +- "readable-stream": "^3.6.0" +- } +- }, +- "compressible": { +- "version": "2.0.18", +- "dev": true, +- "requires": { +- "mime-db": ">= 1.43.0 < 2" +- } +- }, +- "compression": { +- "version": "1.7.4", +- "dev": true, +- "requires": { +- "accepts": "~1.3.5", +- "bytes": "3.0.0", +- "compressible": "~2.0.16", +- "debug": "2.6.9", +- "on-headers": "~1.0.2", +- "safe-buffer": "5.1.2", +- "vary": "~1.1.2" +- }, +- "dependencies": { +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- } +- }, +- "ms": { +- "version": "2.0.0", +- "dev": true +- }, +- "safe-buffer": { +- "version": "5.1.2", +- "dev": true +- } +- } +- }, +- "concat-map": { +- "version": "0.0.1" +- }, +- "concat-stream": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "buffer-from": "^1.0.0", +- "inherits": "^2.0.3", +- "readable-stream": "^3.0.2", +- "typedarray": "^0.0.6" +- } +- }, +- "conf": { +- "version": "10.2.0", +- "requires": { +- "ajv": "^8.6.3", +- "ajv-formats": "^2.1.1", +- "atomically": "^1.7.0", +- "debounce-fn": "^4.0.0", +- "dot-prop": "^6.0.1", +- "env-paths": "^2.2.1", +- "json-schema-typed": "^7.0.3", +- "onetime": "^5.1.2", +- "pkg-up": "^3.1.0", +- "semver": "^7.3.5" +- }, +- "dependencies": { +- "ajv": { +- "version": "8.12.0", +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- } +- }, +- "json-schema-traverse": { +- "version": "1.0.0" +- }, +- "lru-cache": { +- "version": "6.0.0", +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0" +- } +- } +- }, +- "config-file-ts": { +- "version": "0.2.6", +- "dev": true, +- "requires": { +- "glob": "^10.3.10", +- "typescript": "^5.3.3" +- }, +- "dependencies": { +- "glob": { +- "version": "10.3.15", +- "dev": true, +- "requires": { +- "foreground-child": "^3.1.0", +- "jackspeak": "^2.3.6", +- "minimatch": "^9.0.1", +- "minipass": "^7.0.4", +- "path-scurry": "^1.11.0" +- } +- }, +- "minimatch": { +- "version": "9.0.4", +- "dev": true, +- "requires": { +- "brace-expansion": "^2.0.1" +- } +- }, +- "minipass": { +- "version": "7.1.1", +- "dev": true +- }, +- "typescript": { +- "version": "5.4.5", +- "dev": true +- } +- } +- }, +- "connect-history-api-fallback": { +- "version": "2.0.0", +- "dev": true +- }, +- "content-disposition": { +- "version": "0.5.4", +- "dev": true, +- "requires": { +- "safe-buffer": "5.2.1" +- } +- }, +- "content-type": { +- "version": "1.0.5", +- "dev": true +- }, +- "conventional-changelog": { +- "version": "3.1.24", +- "dev": true, +- "requires": { +- "conventional-changelog-angular": "^5.0.12", +- "conventional-changelog-atom": "^2.0.8", +- "conventional-changelog-codemirror": "^2.0.8", +- "conventional-changelog-conventionalcommits": "^4.5.0", +- "conventional-changelog-core": "^4.2.1", +- "conventional-changelog-ember": "^2.0.9", +- "conventional-changelog-eslint": "^3.0.9", +- "conventional-changelog-express": "^2.0.6", +- "conventional-changelog-jquery": "^3.0.11", +- "conventional-changelog-jshint": "^2.0.9", +- "conventional-changelog-preset-loader": "^2.3.4" +- } +- }, +- "conventional-changelog-angular": { +- "version": "5.0.13", +- "dev": true, +- "requires": { +- "compare-func": "^2.0.0", +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-atom": { +- "version": "2.0.8", +- "dev": true, +- "requires": { +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-codemirror": { +- "version": "2.0.8", +- "dev": true, +- "requires": { +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-config-spec": { +- "version": "2.1.0", +- "dev": true +- }, +- "conventional-changelog-conventionalcommits": { +- "version": "4.6.1", +- "dev": true, +- "requires": { +- "compare-func": "^2.0.0", +- "lodash": "^4.17.15", +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-core": { +- "version": "4.2.4", +- "dev": true, +- "requires": { +- "add-stream": "^1.0.0", +- "conventional-changelog-writer": "^5.0.0", +- "conventional-commits-parser": "^3.2.0", +- "dateformat": "^3.0.0", +- "get-pkg-repo": "^4.0.0", +- "git-raw-commits": "^2.0.8", +- "git-remote-origin-url": "^2.0.0", +- "git-semver-tags": "^4.1.1", +- "lodash": "^4.17.15", +- "normalize-package-data": "^3.0.0", +- "q": "^1.5.1", +- "read-pkg": "^3.0.0", +- "read-pkg-up": "^3.0.0", +- "through2": "^4.0.0" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "normalize-package-data": { +- "version": "3.0.3", +- "dev": true, +- "requires": { +- "hosted-git-info": "^4.0.1", +- "is-core-module": "^2.5.0", +- "semver": "^7.3.4", +- "validate-npm-package-license": "^3.0.1" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "conventional-changelog-ember": { +- "version": "2.0.9", +- "dev": true, +- "requires": { +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-eslint": { +- "version": "3.0.9", +- "dev": true, +- "requires": { +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-express": { +- "version": "2.0.6", +- "dev": true, +- "requires": { +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-jquery": { +- "version": "3.0.11", +- "dev": true, +- "requires": { +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-jshint": { +- "version": "2.0.9", +- "dev": true, +- "requires": { +- "compare-func": "^2.0.0", +- "q": "^1.5.1" +- } +- }, +- "conventional-changelog-preset-loader": { +- "version": "2.3.4", +- "dev": true +- }, +- "conventional-changelog-writer": { +- "version": "5.0.1", +- "dev": true, +- "requires": { +- "conventional-commits-filter": "^2.0.7", +- "dateformat": "^3.0.0", +- "handlebars": "^4.7.7", +- "json-stringify-safe": "^5.0.1", +- "lodash": "^4.17.15", +- "meow": "^8.0.0", +- "semver": "^6.0.0", +- "split": "^1.0.0", +- "through2": "^4.0.0" +- } +- }, +- "conventional-commits-filter": { +- "version": "2.0.7", +- "dev": true, +- "requires": { +- "lodash.ismatch": "^4.4.0", +- "modify-values": "^1.0.0" +- } +- }, +- "conventional-commits-parser": { +- "version": "3.2.4", +- "dev": true, +- "requires": { +- "is-text-path": "^1.0.1", +- "JSONStream": "^1.0.4", +- "lodash": "^4.17.15", +- "meow": "^8.0.0", +- "split2": "^3.0.0", +- "through2": "^4.0.0" +- }, +- "dependencies": { +- "split2": { +- "version": "3.2.2", +- "dev": true, +- "requires": { +- "readable-stream": "^3.0.0" +- } +- } +- } +- }, +- "conventional-recommended-bump": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "concat-stream": "^2.0.0", +- "conventional-changelog-preset-loader": "^2.3.4", +- "conventional-commits-filter": "^2.0.7", +- "conventional-commits-parser": "^3.2.0", +- "git-raw-commits": "^2.0.8", +- "git-semver-tags": "^4.1.1", +- "meow": "^8.0.0", +- "q": "^1.5.1" +- } +- }, +- "convert-source-map": { +- "version": "2.0.0", +- "peer": true +- }, +- "cookie": { +- "version": "0.6.0", +- "dev": true +- }, +- "cookie-signature": { +- "version": "1.0.6", +- "dev": true +- }, +- "core-js-compat": { +- "version": "3.33.3", +- "dev": true, +- "requires": { +- "browserslist": "^4.22.1" +- } +- }, +- "core-util-is": { +- "version": "1.0.2" +- }, +- "cpu-features": { +- "version": "0.0.10", +- "requires": { +- "buildcheck": "~0.0.6", +- "nan": "^2.19.0" +- } +- }, +- "crc-32": { +- "version": "1.2.2", +- "dev": true, +- "peer": true +- }, +- "crc32-stream": { +- "version": "4.0.3", +- "dev": true, +- "peer": true, +- "requires": { +- "crc-32": "^1.2.0", +- "readable-stream": "^3.4.0" +- } +- }, +- "create-require": { +- "version": "1.1.1", +- "dev": true +- }, +- "cross-env": { +- "version": "7.0.3", +- "requires": { +- "cross-spawn": "^7.0.1" +- } +- }, +- "cross-spawn": { +- "version": "7.0.3", +- "requires": { +- "path-key": "^3.1.0", +- "shebang-command": "^2.0.0", +- "which": "^2.0.1" +- } +- }, +- "css-functions-list": { +- "version": "3.2.1", +- "dev": true +- }, +- "css-loader": { +- "version": "6.5.1", +- "requires": { +- "icss-utils": "^5.1.0", +- "postcss": "^8.2.15", +- "postcss-modules-extract-imports": "^3.0.0", +- "postcss-modules-local-by-default": "^4.0.0", +- "postcss-modules-scope": "^3.0.0", +- "postcss-modules-values": "^4.0.0", +- "postcss-value-parser": "^4.1.0", +- "semver": "^7.3.5" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0" +- } +- } +- }, +- "css-select": { +- "version": "4.3.0", +- "requires": { +- "boolbase": "^1.0.0", +- "css-what": "^6.0.1", +- "domhandler": "^4.3.1", +- "domutils": "^2.8.0", +- "nth-check": "^2.0.1" +- }, +- "dependencies": { +- "dom-serializer": { +- "version": "1.4.1", +- "requires": { +- "domelementtype": "^2.0.1", +- "domhandler": "^4.2.0", +- "entities": "^2.0.0" +- } +- }, +- "domhandler": { +- "version": "4.3.1", +- "requires": { +- "domelementtype": "^2.2.0" +- } +- }, +- "domutils": { +- "version": "2.8.0", +- "requires": { +- "dom-serializer": "^1.0.1", +- "domelementtype": "^2.2.0", +- "domhandler": "^4.2.0" +- } +- }, +- "entities": { +- "version": "2.2.0" +- } +- } +- }, +- "css-tree": { +- "version": "2.3.1", +- "dev": true, +- "requires": { +- "mdn-data": "2.0.30", +- "source-map-js": "^1.0.1" +- } +- }, +- "css-what": { +- "version": "6.1.0" +- }, +- "cssesc": { +- "version": "3.0.0" +- }, +- "csstype": { +- "version": "3.1.3", +- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", +- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" +- }, +- "dargs": { +- "version": "7.0.0", +- "dev": true +- }, +- "dateformat": { +- "version": "3.0.3", +- "dev": true +- }, +- "debounce-fn": { +- "version": "4.0.0", +- "requires": { +- "mimic-fn": "^3.0.0" +- } +- }, +- "debug": { +- "version": "4.3.4", +- "requires": { +- "ms": "2.1.2" +- } +- }, +- "decamelize": { +- "version": "1.2.0", +- "dev": true +- }, +- "decamelize-keys": { +- "version": "1.1.1", +- "dev": true, +- "requires": { +- "decamelize": "^1.1.0", +- "map-obj": "^1.0.0" +- }, +- "dependencies": { +- "map-obj": { +- "version": "1.0.1", +- "dev": true +- } +- } +- }, +- "decompress-response": { +- "version": "6.0.0", +- "requires": { +- "mimic-response": "^3.1.0" +- }, +- "dependencies": { +- "mimic-response": { +- "version": "3.1.0" +- } +- } +- }, +- "deep-extend": { +- "version": "0.6.0" +- }, +- "deep-is": { +- "version": "0.1.4", +- "dev": true +- }, +- "default-gateway": { +- "version": "6.0.3", +- "dev": true, +- "requires": { +- "execa": "^5.0.0" +- } +- }, +- "defer-to-connect": { +- "version": "2.0.1" +- }, +- "define-data-property": { +- "version": "1.1.1", +- "devOptional": true, +- "requires": { +- "get-intrinsic": "^1.2.1", +- "gopd": "^1.0.1", +- "has-property-descriptors": "^1.0.0" +- } +- }, +- "define-lazy-prop": { +- "version": "2.0.0", +- "dev": true +- }, +- "define-properties": { +- "version": "1.2.1", +- "devOptional": true, +- "requires": { +- "define-data-property": "^1.0.1", +- "has-property-descriptors": "^1.0.0", +- "object-keys": "^1.1.1" +- } +- }, +- "delayed-stream": { +- "version": "1.0.0", +- "dev": true +- }, +- "denque": { +- "version": "2.1.0" +- }, +- "depd": { +- "version": "2.0.0", +- "dev": true +- }, +- "destroy": { +- "version": "1.2.0", +- "dev": true +- }, +- "detect-indent": { +- "version": "6.1.0", +- "dev": true +- }, +- "detect-libc": { +- "version": "2.0.2" +- }, +- "detect-newline": { +- "version": "3.1.0", +- "dev": true +- }, +- "detect-node": { +- "version": "2.1.0", +- "devOptional": true +- }, +- "didyoumean": { +- "version": "1.2.2", +- "dev": true +- }, +- "diff": { +- "version": "4.0.2", +- "dev": true +- }, +- "dir-compare": { +- "version": "3.3.0", +- "dev": true, +- "requires": { +- "buffer-equal": "^1.0.0", +- "minimatch": "^3.0.4" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- } +- } +- }, +- "dir-glob": { +- "version": "3.0.1", +- "dev": true, +- "requires": { +- "path-type": "^4.0.0" +- } +- }, +- "discontinuous-range": { +- "version": "1.0.0" +- }, +- "dmg-builder": { +- "version": "24.13.3", +- "dev": true, +- "requires": { +- "app-builder-lib": "24.13.3", +- "builder-util": "24.13.1", +- "builder-util-runtime": "9.2.4", +- "dmg-license": "^1.0.11", +- "fs-extra": "^10.1.0", +- "iconv-lite": "^0.6.2", +- "js-yaml": "^4.1.0" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "dns-equal": { +- "version": "1.0.0", +- "dev": true +- }, +- "dns-packet": { +- "version": "5.6.1", +- "dev": true, +- "requires": { +- "@leichtgewicht/ip-codec": "^2.0.1" +- } +- }, +- "doctrine": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "esutils": "^2.0.2" +- } +- }, +- "dom-converter": { +- "version": "0.2.0", +- "requires": { +- "utila": "~0.4" +- } +- }, +- "dom-serializer": { +- "version": "2.0.0", +- "requires": { +- "domelementtype": "^2.3.0", +- "domhandler": "^5.0.2", +- "entities": "^4.2.0" +- } +- }, +- "domelementtype": { +- "version": "2.3.0" +- }, +- "domhandler": { +- "version": "5.0.3", +- "requires": { +- "domelementtype": "^2.3.0" +- } +- }, +- "domutils": { +- "version": "3.1.0", +- "requires": { +- "dom-serializer": "^2.0.0", +- "domelementtype": "^2.3.0", +- "domhandler": "^5.0.3" +- } +- }, +- "dot-case": { +- "version": "3.0.4", +- "requires": { +- "no-case": "^3.0.4", +- "tslib": "^2.0.3" +- } +- }, +- "dot-prop": { +- "version": "6.0.1", +- "requires": { +- "is-obj": "^2.0.0" +- } +- }, +- "dotenv": { +- "version": "9.0.2", +- "dev": true +- }, +- "dotenv-expand": { +- "version": "5.1.0", +- "dev": true +- }, +- "dotgitignore": { +- "version": "2.1.0", +- "dev": true, +- "requires": { +- "find-up": "^3.0.0", +- "minimatch": "^3.0.4" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "find-up": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "locate-path": "^3.0.0" +- } +- }, +- "locate-path": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "p-locate": "^3.0.0", +- "path-exists": "^3.0.0" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- }, +- "p-limit": { +- "version": "2.3.0", +- "dev": true, +- "requires": { +- "p-try": "^2.0.0" +- } +- }, +- "p-locate": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "p-limit": "^2.0.0" +- } +- }, +- "p-try": { +- "version": "2.2.0", +- "dev": true +- } +- } +- }, +- "eastasianwidth": { +- "version": "0.2.0", +- "dev": true +- }, +- "ee-first": { +- "version": "1.1.1", +- "dev": true +- }, +- "ejs": { +- "version": "3.1.10", +- "dev": true, +- "requires": { +- "jake": "^10.8.5" +- } +- }, +- "electron": { +- "version": "30.0.8", +- "resolved": "https://registry.npmjs.org/electron/-/electron-30.0.8.tgz", +- "integrity": "sha512-ivzXJJ/9gdb4oOw+5SDuaZpSInz8C+Z021dKZfFLMltKbDa4sSqt5cRBiUg7J36Z2kdus+Jai0bdHWutYE9wAA==", +- "requires": { +- "@electron/get": "^2.0.0", +- "@types/node": "^20.9.0", +- "extract-zip": "^2.0.1" +- }, +- "dependencies": { +- "@types/node": { +- "version": "20.12.12", +- "requires": { +- "undici-types": "~5.26.4" +- } +- } +- } +- }, +- "electron-builder": { +- "version": "24.13.3", +- "dev": true, +- "requires": { +- "app-builder-lib": "24.13.3", +- "builder-util": "24.13.1", +- "builder-util-runtime": "9.2.4", +- "chalk": "^4.1.2", +- "dmg-builder": "24.13.3", +- "fs-extra": "^10.1.0", +- "is-ci": "^3.0.0", +- "lazy-val": "^1.0.5", +- "read-config-file": "6.3.2", +- "simple-update-notifier": "2.0.0", +- "yargs": "^17.6.2" +- }, +- "dependencies": { +- "cliui": { +- "version": "8.0.1", +- "dev": true, +- "requires": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.1", +- "wrap-ansi": "^7.0.0" +- } +- }, +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- }, +- "wrap-ansi": { +- "version": "7.0.0", +- "dev": true, +- "requires": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- } +- }, +- "y18n": { +- "version": "5.0.8", +- "dev": true +- }, +- "yargs": { +- "version": "17.7.2", +- "dev": true, +- "requires": { +- "cliui": "^8.0.1", +- "escalade": "^3.1.1", +- "get-caller-file": "^2.0.5", +- "require-directory": "^2.1.1", +- "string-width": "^4.2.3", +- "y18n": "^5.0.5", +- "yargs-parser": "^21.1.1" +- } +- }, +- "yargs-parser": { +- "version": "21.1.1", +- "dev": true +- } +- } +- }, +- "electron-builder-squirrel-windows": { +- "version": "24.13.3", +- "dev": true, +- "peer": true, +- "requires": { +- "app-builder-lib": "24.13.3", +- "archiver": "^5.3.1", +- "builder-util": "24.13.1", +- "fs-extra": "^10.1.0" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "peer": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "peer": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true, +- "peer": true +- } +- } +- }, +- "electron-log": { +- "version": "5.0.1" +- }, +- "electron-publish": { +- "version": "24.13.1", +- "dev": true, +- "requires": { +- "@types/fs-extra": "^9.0.11", +- "builder-util": "24.13.1", +- "builder-util-runtime": "9.2.4", +- "chalk": "^4.1.2", +- "fs-extra": "^10.1.0", +- "lazy-val": "^1.0.5", +- "mime": "^2.5.2" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "electron-store": { +- "version": "8.1.0", +- "requires": { +- "conf": "^10.2.0", +- "type-fest": "^2.17.0" +- } +- }, +- "electron-to-chromium": { +- "version": "1.4.594" +- }, +- "electron-updater": { +- "version": "4.6.5", +- "requires": { +- "@types/semver": "^7.3.6", +- "builder-util-runtime": "8.9.2", +- "fs-extra": "^10.0.0", +- "js-yaml": "^4.1.0", +- "lazy-val": "^1.0.5", +- "lodash.escaperegexp": "^4.1.2", +- "lodash.isequal": "^4.5.0", +- "semver": "^7.3.5" +- }, +- "dependencies": { +- "builder-util-runtime": { +- "version": "8.9.2", +- "requires": { +- "debug": "^4.3.2", +- "sax": "^1.2.4" +- } +- }, +- "fs-extra": { +- "version": "10.1.0", +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "lru-cache": { +- "version": "6.0.0", +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1" +- }, +- "yallist": { +- "version": "4.0.0" +- } +- } +- }, +- "electron-window-state": { +- "version": "5.0.3", +- "requires": { +- "jsonfile": "^4.0.0", +- "mkdirp": "^0.5.1" +- } +- }, +- "emoji-regex": { +- "version": "8.0.0", +- "dev": true +- }, +- "emojis-list": { +- "version": "3.0.0" +- }, +- "encodeurl": { +- "version": "1.0.2", +- "dev": true +- }, +- "encoding": { +- "version": "0.1.13", +- "requires": { +- "iconv-lite": "^0.6.2" +- } +- }, +- "end-of-stream": { +- "version": "1.4.4", +- "requires": { +- "once": "^1.4.0" +- } +- }, +- "enhanced-resolve": { +- "version": "5.16.1", +- "requires": { +- "graceful-fs": "^4.2.4", +- "tapable": "^2.2.0" +- } +- }, +- "enquirer": { +- "version": "2.4.1", +- "dev": true, +- "requires": { +- "ansi-colors": "^4.1.1", +- "strip-ansi": "^6.0.1" +- } +- }, +- "entities": { +- "version": "4.5.0" +- }, +- "env-paths": { +- "version": "2.2.1" +- }, +- "envinfo": { +- "version": "7.11.0" +- }, +- "err-code": { +- "version": "2.0.3", +- "dev": true +- }, +- "error-ex": { +- "version": "1.3.2", +- "dev": true, +- "requires": { +- "is-arrayish": "^0.2.1" +- } +- }, +- "es-abstract": { +- "version": "1.22.3", +- "dev": true, +- "requires": { +- "array-buffer-byte-length": "^1.0.0", +- "arraybuffer.prototype.slice": "^1.0.2", +- "available-typed-arrays": "^1.0.5", +- "call-bind": "^1.0.5", +- "es-set-tostringtag": "^2.0.1", +- "es-to-primitive": "^1.2.1", +- "function.prototype.name": "^1.1.6", +- "get-intrinsic": "^1.2.2", +- "get-symbol-description": "^1.0.0", +- "globalthis": "^1.0.3", +- "gopd": "^1.0.1", +- "has-property-descriptors": "^1.0.0", +- "has-proto": "^1.0.1", +- "has-symbols": "^1.0.3", +- "hasown": "^2.0.0", +- "internal-slot": "^1.0.5", +- "is-array-buffer": "^3.0.2", +- "is-callable": "^1.2.7", +- "is-negative-zero": "^2.0.2", +- "is-regex": "^1.1.4", +- "is-shared-array-buffer": "^1.0.2", +- "is-string": "^1.0.7", +- "is-typed-array": "^1.1.12", +- "is-weakref": "^1.0.2", +- "object-inspect": "^1.13.1", +- "object-keys": "^1.1.1", +- "object.assign": "^4.1.4", +- "regexp.prototype.flags": "^1.5.1", +- "safe-array-concat": "^1.0.1", +- "safe-regex-test": "^1.0.0", +- "string.prototype.trim": "^1.2.8", +- "string.prototype.trimend": "^1.0.7", +- "string.prototype.trimstart": "^1.0.7", +- "typed-array-buffer": "^1.0.0", +- "typed-array-byte-length": "^1.0.0", +- "typed-array-byte-offset": "^1.0.0", +- "typed-array-length": "^1.0.4", +- "unbox-primitive": "^1.0.2", +- "which-typed-array": "^1.1.13" +- } +- }, +- "es-module-lexer": { +- "version": "1.5.2" +- }, +- "es-set-tostringtag": { +- "version": "2.0.2", +- "dev": true, +- "requires": { +- "get-intrinsic": "^1.2.2", +- "has-tostringtag": "^1.0.0", +- "hasown": "^2.0.0" +- } +- }, +- "es-shim-unscopables": { +- "version": "1.0.2", +- "dev": true, +- "requires": { +- "hasown": "^2.0.0" +- } +- }, +- "es-to-primitive": { +- "version": "1.2.1", +- "dev": true, +- "requires": { +- "is-callable": "^1.1.4", +- "is-date-object": "^1.0.1", +- "is-symbol": "^1.0.2" +- } +- }, +- "es6-error": { +- "version": "4.1.1", +- "optional": true +- }, +- "escalade": { +- "version": "3.1.1" +- }, +- "escape-html": { +- "version": "1.0.3", +- "dev": true +- }, +- "escape-string-regexp": { +- "version": "4.0.0", +- "devOptional": true +- }, +- "eslint": { +- "version": "7.32.0", +- "dev": true, +- "requires": { +- "@babel/code-frame": "7.12.11", +- "@eslint/eslintrc": "^0.4.3", +- "@humanwhocodes/config-array": "^0.5.0", +- "ajv": "^6.10.0", +- "chalk": "^4.0.0", +- "cross-spawn": "^7.0.2", +- "debug": "^4.0.1", +- "doctrine": "^3.0.0", +- "enquirer": "^2.3.5", +- "escape-string-regexp": "^4.0.0", +- "eslint-scope": "^5.1.1", +- "eslint-utils": "^2.1.0", +- "eslint-visitor-keys": "^2.0.0", +- "espree": "^7.3.1", +- "esquery": "^1.4.0", +- "esutils": "^2.0.2", +- "fast-deep-equal": "^3.1.3", +- "file-entry-cache": "^6.0.1", +- "functional-red-black-tree": "^1.0.1", +- "glob-parent": "^5.1.2", +- "globals": "^13.6.0", +- "ignore": "^4.0.6", +- "import-fresh": "^3.0.0", +- "imurmurhash": "^0.1.4", +- "is-glob": "^4.0.0", +- "js-yaml": "^3.13.1", +- "json-stable-stringify-without-jsonify": "^1.0.1", +- "levn": "^0.4.1", +- "lodash.merge": "^4.6.2", +- "minimatch": "^3.0.4", +- "natural-compare": "^1.4.0", +- "optionator": "^0.9.1", +- "progress": "^2.0.0", +- "regexpp": "^3.1.0", +- "semver": "^7.2.1", +- "strip-ansi": "^6.0.0", +- "strip-json-comments": "^3.1.0", +- "table": "^6.0.9", +- "text-table": "^0.2.0", +- "v8-compile-cache": "^2.0.3" +- }, +- "dependencies": { +- "@babel/code-frame": { +- "version": "7.12.11", +- "dev": true, +- "requires": { +- "@babel/highlight": "^7.10.4" +- } +- }, +- "argparse": { +- "version": "1.0.10", +- "dev": true, +- "requires": { +- "sprintf-js": "~1.0.2" +- } +- }, +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "eslint-utils": { +- "version": "2.1.0", +- "dev": true, +- "requires": { +- "eslint-visitor-keys": "^1.1.0" +- }, +- "dependencies": { +- "eslint-visitor-keys": { +- "version": "1.3.0", +- "dev": true +- } +- } +- }, +- "globals": { +- "version": "13.23.0", +- "dev": true, +- "requires": { +- "type-fest": "^0.20.2" +- } +- }, +- "ignore": { +- "version": "4.0.6", +- "dev": true +- }, +- "js-yaml": { +- "version": "3.14.1", +- "dev": true, +- "requires": { +- "argparse": "^1.0.7", +- "esprima": "^4.0.0" +- } +- }, +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "sprintf-js": { +- "version": "1.0.3", +- "dev": true +- }, +- "type-fest": { +- "version": "0.20.2", +- "dev": true +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "eslint-config-standard": { +- "version": "16.0.3", +- "dev": true, +- "requires": {} +- }, +- "eslint-import-resolver-node": { +- "version": "0.3.9", +- "dev": true, +- "requires": { +- "debug": "^3.2.7", +- "is-core-module": "^2.13.0", +- "resolve": "^1.22.4" +- }, +- "dependencies": { +- "debug": { +- "version": "3.2.7", +- "dev": true, +- "requires": { +- "ms": "^2.1.1" +- } +- } +- } +- }, +- "eslint-module-utils": { +- "version": "2.8.0", +- "dev": true, +- "requires": { +- "debug": "^3.2.7" +- }, +- "dependencies": { +- "debug": { +- "version": "3.2.7", +- "dev": true, +- "requires": { +- "ms": "^2.1.1" +- } +- } +- } +- }, +- "eslint-plugin-es": { +- "version": "3.0.1", +- "dev": true, +- "requires": { +- "eslint-utils": "^2.0.0", +- "regexpp": "^3.0.0" +- }, +- "dependencies": { +- "eslint-utils": { +- "version": "2.1.0", +- "dev": true, +- "requires": { +- "eslint-visitor-keys": "^1.1.0" +- } +- }, +- "eslint-visitor-keys": { +- "version": "1.3.0", +- "dev": true +- } +- } +- }, +- "eslint-plugin-import": { +- "version": "2.24.2", +- "dev": true, +- "requires": { +- "array-includes": "^3.1.3", +- "array.prototype.flat": "^1.2.4", +- "debug": "^2.6.9", +- "doctrine": "^2.1.0", +- "eslint-import-resolver-node": "^0.3.6", +- "eslint-module-utils": "^2.6.2", +- "find-up": "^2.0.0", +- "has": "^1.0.3", +- "is-core-module": "^2.6.0", +- "minimatch": "^3.0.4", +- "object.values": "^1.1.4", +- "pkg-up": "^2.0.0", +- "read-pkg-up": "^3.0.0", +- "resolve": "^1.20.0", +- "tsconfig-paths": "^3.11.0" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- } +- }, +- "doctrine": { +- "version": "2.1.0", +- "dev": true, +- "requires": { +- "esutils": "^2.0.2" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- }, +- "ms": { +- "version": "2.0.0", +- "dev": true +- }, +- "pkg-up": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "find-up": "^2.1.0" +- } +- } +- } +- }, +- "eslint-plugin-node": { +- "version": "11.1.0", +- "dev": true, +- "requires": { +- "eslint-plugin-es": "^3.0.0", +- "eslint-utils": "^2.0.0", +- "ignore": "^5.1.1", +- "minimatch": "^3.0.4", +- "resolve": "^1.10.1", +- "semver": "^6.1.0" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "eslint-utils": { +- "version": "2.1.0", +- "dev": true, +- "requires": { +- "eslint-visitor-keys": "^1.1.0" +- } +- }, +- "eslint-visitor-keys": { +- "version": "1.3.0", +- "dev": true +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- } +- } +- }, +- "eslint-plugin-promise": { +- "version": "5.2.0", +- "dev": true, +- "requires": {} +- }, +- "eslint-plugin-simple-import-sort": { +- "version": "10.0.0", +- "dev": true, +- "requires": {} +- }, +- "eslint-plugin-vue": { +- "version": "8.0.3", +- "dev": true, +- "requires": { +- "eslint-utils": "^3.0.0", +- "natural-compare": "^1.4.0", +- "semver": "^7.3.5", +- "vue-eslint-parser": "^8.0.1" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "eslint-scope": { +- "version": "5.1.1", +- "requires": { +- "esrecurse": "^4.3.0", +- "estraverse": "^4.1.1" +- } +- }, +- "eslint-utils": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "eslint-visitor-keys": "^2.0.0" +- } +- }, +- "eslint-visitor-keys": { +- "version": "2.1.0", +- "dev": true +- }, +- "espree": { +- "version": "7.3.1", +- "dev": true, +- "requires": { +- "acorn": "^7.4.0", +- "acorn-jsx": "^5.3.1", +- "eslint-visitor-keys": "^1.3.0" +- }, +- "dependencies": { +- "eslint-visitor-keys": { +- "version": "1.3.0", +- "dev": true +- } +- } +- }, +- "esprima": { +- "version": "4.0.1", +- "dev": true +- }, +- "esquery": { +- "version": "1.5.0", +- "dev": true, +- "requires": { +- "estraverse": "^5.1.0" +- }, +- "dependencies": { +- "estraverse": { +- "version": "5.3.0", +- "dev": true +- } +- } +- }, +- "esrecurse": { +- "version": "4.3.0", +- "requires": { +- "estraverse": "^5.2.0" +- }, +- "dependencies": { +- "estraverse": { +- "version": "5.3.0" +- } +- } +- }, +- "estraverse": { +- "version": "4.3.0" +- }, +- "estree-walker": { +- "version": "2.0.2" +- }, +- "esutils": { +- "version": "2.0.3", +- "dev": true +- }, +- "etag": { +- "version": "1.8.1", +- "dev": true +- }, +- "eventemitter3": { +- "version": "4.0.7", +- "dev": true +- }, +- "events": { +- "version": "3.3.0" +- }, +- "execa": { +- "version": "5.1.1", +- "requires": { +- "cross-spawn": "^7.0.3", +- "get-stream": "^6.0.0", +- "human-signals": "^2.1.0", +- "is-stream": "^2.0.0", +- "merge-stream": "^2.0.0", +- "npm-run-path": "^4.0.1", +- "onetime": "^5.1.2", +- "signal-exit": "^3.0.3", +- "strip-final-newline": "^2.0.0" +- }, +- "dependencies": { +- "get-stream": { +- "version": "6.0.1" +- } +- } +- }, +- "expand-template": { +- "version": "2.0.3" +- }, +- "express": { +- "version": "4.19.2", +- "dev": true, +- "requires": { +- "accepts": "~1.3.8", +- "array-flatten": "1.1.1", +- "body-parser": "1.20.2", +- "content-disposition": "0.5.4", +- "content-type": "~1.0.4", +- "cookie": "0.6.0", +- "cookie-signature": "1.0.6", +- "debug": "2.6.9", +- "depd": "2.0.0", +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +- "etag": "~1.8.1", +- "finalhandler": "1.2.0", +- "fresh": "0.5.2", +- "http-errors": "2.0.0", +- "merge-descriptors": "1.0.1", +- "methods": "~1.1.2", +- "on-finished": "2.4.1", +- "parseurl": "~1.3.3", +- "path-to-regexp": "0.1.7", +- "proxy-addr": "~2.0.7", +- "qs": "6.11.0", +- "range-parser": "~1.2.1", +- "safe-buffer": "5.2.1", +- "send": "0.18.0", +- "serve-static": "1.15.0", +- "setprototypeof": "1.2.0", +- "statuses": "2.0.1", +- "type-is": "~1.6.18", +- "utils-merge": "1.0.1", +- "vary": "~1.1.2" +- }, +- "dependencies": { +- "array-flatten": { +- "version": "1.1.1", +- "dev": true +- }, +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- } +- }, +- "ms": { +- "version": "2.0.0", +- "dev": true +- } +- } +- }, +- "external-editor": { +- "version": "3.1.0", +- "dev": true, +- "requires": { +- "chardet": "^0.7.0", +- "iconv-lite": "^0.4.24", +- "tmp": "^0.0.33" +- }, +- "dependencies": { +- "iconv-lite": { +- "version": "0.4.24", +- "dev": true, +- "requires": { +- "safer-buffer": ">= 2.1.2 < 3" +- } +- } +- } +- }, +- "extract-zip": { +- "version": "2.0.1", +- "requires": { +- "@types/yauzl": "^2.9.1", +- "debug": "^4.1.1", +- "get-stream": "^5.1.0", +- "yauzl": "^2.10.0" +- } +- }, +- "fast-deep-equal": { +- "version": "3.1.3" +- }, +- "fast-glob": { +- "version": "3.3.2", +- "dev": true, +- "requires": { +- "@nodelib/fs.stat": "^2.0.2", +- "@nodelib/fs.walk": "^1.2.3", +- "glob-parent": "^5.1.2", +- "merge2": "^1.3.0", +- "micromatch": "^4.0.4" +- } +- }, +- "fast-json-stable-stringify": { +- "version": "2.1.0" +- }, +- "fast-levenshtein": { +- "version": "2.0.6", +- "dev": true +- }, +- "fastest-levenshtein": { +- "version": "1.0.16" +- }, +- "fastq": { +- "version": "1.15.0", +- "dev": true, +- "requires": { +- "reusify": "^1.0.4" +- } +- }, +- "faye-websocket": { +- "version": "0.11.4", +- "dev": true, +- "requires": { +- "websocket-driver": ">=0.5.1" +- } +- }, +- "fd-slicer": { +- "version": "1.1.0", +- "requires": { +- "pend": "~1.2.0" +- } +- }, +- "figures": { +- "version": "3.2.0", +- "dev": true, +- "requires": { +- "escape-string-regexp": "^1.0.5" +- }, +- "dependencies": { +- "escape-string-regexp": { +- "version": "1.0.5", +- "dev": true +- } +- } +- }, +- "file-entry-cache": { +- "version": "6.0.1", +- "dev": true, +- "requires": { +- "flat-cache": "^3.0.4" +- } +- }, +- "file-loader": { +- "version": "6.2.0", +- "requires": { +- "loader-utils": "^2.0.0", +- "schema-utils": "^3.0.0" +- }, +- "dependencies": { +- "schema-utils": { +- "version": "3.3.0", +- "requires": { +- "@types/json-schema": "^7.0.8", +- "ajv": "^6.12.5", +- "ajv-keywords": "^3.5.2" +- } +- } +- } +- }, +- "file-uri-to-path": { +- "version": "1.0.0" +- }, +- "filelist": { +- "version": "1.0.4", +- "dev": true, +- "requires": { +- "minimatch": "^5.0.1" +- } +- }, +- "fill-range": { +- "version": "7.0.1", +- "requires": { +- "to-regex-range": "^5.0.1" +- } +- }, +- "finalhandler": { +- "version": "1.2.0", +- "dev": true, +- "requires": { +- "debug": "2.6.9", +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +- "on-finished": "2.4.1", +- "parseurl": "~1.3.3", +- "statuses": "2.0.1", +- "unpipe": "~1.0.0" +- }, +- "dependencies": { +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- } +- }, +- "ms": { +- "version": "2.0.0", +- "dev": true +- } +- } +- }, +- "find-cache-dir": { +- "version": "3.3.2", +- "requires": { +- "commondir": "^1.0.1", +- "make-dir": "^3.0.2", +- "pkg-dir": "^4.1.0" +- } +- }, +- "find-up": { +- "version": "2.1.0", +- "dev": true, +- "requires": { +- "locate-path": "^2.0.0" +- } +- }, +- "flat": { +- "version": "5.0.2" +- }, +- "flat-cache": { +- "version": "3.2.0", +- "dev": true, +- "requires": { +- "flatted": "^3.2.9", +- "keyv": "^4.5.3", +- "rimraf": "^3.0.2" +- } +- }, +- "flatted": { +- "version": "3.2.9", +- "dev": true +- }, +- "floating-vue": { +- "version": "2.0.0-beta.24", +- "requires": { +- "@floating-ui/dom": "~1.1.1", +- "vue-resize": "^2.0.0-alpha.1" +- } +- }, +- "follow-redirects": { +- "version": "1.15.6", +- "dev": true +- }, +- "for-each": { +- "version": "0.3.3", +- "dev": true, +- "requires": { +- "is-callable": "^1.1.3" +- } +- }, +- "foreground-child": { +- "version": "3.1.1", +- "dev": true, +- "requires": { +- "cross-spawn": "^7.0.0", +- "signal-exit": "^4.0.1" +- }, +- "dependencies": { +- "signal-exit": { +- "version": "4.1.0", +- "dev": true +- } +- } +- }, +- "form-data": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "asynckit": "^0.4.0", +- "combined-stream": "^1.0.8", +- "mime-types": "^2.1.12" +- } +- }, +- "forwarded": { +- "version": "0.2.0", +- "dev": true +- }, +- "fresh": { +- "version": "0.5.2", +- "dev": true +- }, +- "fs-access": { +- "version": "1.0.1", +- "dev": true, +- "requires": { +- "null-check": "^1.0.0" +- } +- }, +- "fs-constants": { +- "version": "1.0.0" +- }, +- "fs-extra": { +- "version": "8.1.0", +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^4.0.0", +- "universalify": "^0.1.0" +- } +- }, +- "fs-minipass": { +- "version": "2.1.0", +- "dev": true, +- "requires": { +- "minipass": "^3.0.0" +- }, +- "dependencies": { +- "minipass": { +- "version": "3.3.6", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "fs-monkey": { +- "version": "1.0.5", +- "dev": true +- }, +- "fs.realpath": { +- "version": "1.0.0" +- }, +- "function-bind": { +- "version": "1.1.2" +- }, +- "function.prototype.name": { +- "version": "1.1.6", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1", +- "functions-have-names": "^1.2.3" +- } +- }, +- "functional-red-black-tree": { +- "version": "1.0.1", +- "dev": true +- }, +- "functions-have-names": { +- "version": "1.2.3", +- "dev": true +- }, +- "generate-function": { +- "version": "2.3.1", +- "requires": { +- "is-property": "^1.0.2" +- } +- }, +- "gensync": { +- "version": "1.0.0-beta.2", +- "peer": true +- }, +- "get-caller-file": { +- "version": "2.0.5", +- "dev": true +- }, +- "get-intrinsic": { +- "version": "1.2.2", +- "devOptional": true, +- "requires": { +- "function-bind": "^1.1.2", +- "has-proto": "^1.0.1", +- "has-symbols": "^1.0.3", +- "hasown": "^2.0.0" +- } +- }, +- "get-pkg-repo": { +- "version": "4.2.1", +- "dev": true, +- "requires": { +- "@hutson/parse-repository-url": "^3.0.0", +- "hosted-git-info": "^4.0.0", +- "through2": "^2.0.0", +- "yargs": "^16.2.0" +- }, +- "dependencies": { +- "cliui": { +- "version": "7.0.4", +- "dev": true, +- "requires": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.0", +- "wrap-ansi": "^7.0.0" +- } +- }, +- "isarray": { +- "version": "1.0.0", +- "dev": true +- }, +- "readable-stream": { +- "version": "2.3.8", +- "dev": true, +- "requires": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +- "process-nextick-args": "~2.0.0", +- "safe-buffer": "~5.1.1", +- "string_decoder": "~1.1.1", +- "util-deprecate": "~1.0.1" +- } +- }, +- "safe-buffer": { +- "version": "5.1.2", +- "dev": true +- }, +- "string_decoder": { +- "version": "1.1.1", +- "dev": true, +- "requires": { +- "safe-buffer": "~5.1.0" +- } +- }, +- "through2": { +- "version": "2.0.5", +- "dev": true, +- "requires": { +- "readable-stream": "~2.3.6", +- "xtend": "~4.0.1" +- } +- }, +- "wrap-ansi": { +- "version": "7.0.0", +- "dev": true, +- "requires": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- } +- }, +- "y18n": { +- "version": "5.0.8", +- "dev": true +- }, +- "yargs": { +- "version": "16.2.0", +- "dev": true, +- "requires": { +- "cliui": "^7.0.2", +- "escalade": "^3.1.1", +- "get-caller-file": "^2.0.5", +- "require-directory": "^2.1.1", +- "string-width": "^4.2.0", +- "y18n": "^5.0.5", +- "yargs-parser": "^20.2.2" +- } +- } +- } +- }, +- "get-stdin": { +- "version": "8.0.0" +- }, +- "get-stream": { +- "version": "5.2.0", +- "requires": { +- "pump": "^3.0.0" +- } +- }, +- "get-symbol-description": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.1.1" +- } +- }, +- "git-raw-commits": { +- "version": "2.0.11", +- "dev": true, +- "requires": { +- "dargs": "^7.0.0", +- "lodash": "^4.17.15", +- "meow": "^8.0.0", +- "split2": "^3.0.0", +- "through2": "^4.0.0" +- }, +- "dependencies": { +- "split2": { +- "version": "3.2.2", +- "dev": true, +- "requires": { +- "readable-stream": "^3.0.0" +- } +- } +- } +- }, +- "git-remote-origin-url": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "gitconfiglocal": "^1.0.0", +- "pify": "^2.3.0" +- }, +- "dependencies": { +- "pify": { +- "version": "2.3.0", +- "dev": true +- } +- } +- }, +- "git-semver-tags": { +- "version": "4.1.1", +- "dev": true, +- "requires": { +- "meow": "^8.0.0", +- "semver": "^6.0.0" +- } +- }, +- "gitconfiglocal": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "ini": "^1.3.2" +- } +- }, +- "github-from-package": { +- "version": "0.0.0" +- }, +- "glob": { +- "version": "7.2.3", +- "requires": { +- "fs.realpath": "^1.0.0", +- "inflight": "^1.0.4", +- "inherits": "2", +- "minimatch": "^3.1.1", +- "once": "^1.3.0", +- "path-is-absolute": "^1.0.0" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- } +- } +- }, +- "glob-parent": { +- "version": "5.1.2", +- "requires": { +- "is-glob": "^4.0.1" +- } +- }, +- "glob-to-regexp": { +- "version": "0.4.1" +- }, +- "global-agent": { +- "version": "3.0.0", +- "optional": true, +- "requires": { +- "boolean": "^3.0.1", +- "es6-error": "^4.1.1", +- "matcher": "^3.0.0", +- "roarr": "^2.15.3", +- "semver": "^7.3.2", +- "serialize-error": "^7.0.1" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "optional": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "optional": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "optional": true +- } +- } +- }, +- "global-directory": { +- "version": "4.0.1", +- "dev": true, +- "requires": { +- "ini": "4.1.1" +- }, +- "dependencies": { +- "ini": { +- "version": "4.1.1", +- "dev": true +- } +- } +- }, +- "global-modules": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "global-prefix": "^3.0.0" +- } +- }, +- "global-prefix": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "ini": "^1.3.5", +- "kind-of": "^6.0.2", +- "which": "^1.3.1" +- }, +- "dependencies": { +- "which": { +- "version": "1.3.1", +- "dev": true, +- "requires": { +- "isexe": "^2.0.0" +- } +- } +- } +- }, +- "globals": { +- "version": "11.12.0" +- }, +- "globalthis": { +- "version": "1.0.3", +- "devOptional": true, +- "requires": { +- "define-properties": "^1.1.3" +- } +- }, +- "globby": { +- "version": "11.1.0", +- "dev": true, +- "requires": { +- "array-union": "^2.1.0", +- "dir-glob": "^3.0.1", +- "fast-glob": "^3.2.9", +- "ignore": "^5.2.0", +- "merge2": "^1.4.1", +- "slash": "^3.0.0" +- } +- }, +- "globjoin": { +- "version": "0.1.4", +- "dev": true +- }, +- "gopd": { +- "version": "1.0.1", +- "devOptional": true, +- "requires": { +- "get-intrinsic": "^1.1.3" +- } +- }, +- "got": { +- "version": "11.8.6", +- "requires": { +- "@sindresorhus/is": "^4.0.0", +- "@szmarczak/http-timer": "^4.0.5", +- "@types/cacheable-request": "^6.0.1", +- "@types/responselike": "^1.0.0", +- "cacheable-lookup": "^5.0.3", +- "cacheable-request": "^7.0.2", +- "decompress-response": "^6.0.0", +- "http2-wrapper": "^1.0.0-beta.5.2", +- "lowercase-keys": "^2.0.0", +- "p-cancelable": "^2.0.0", +- "responselike": "^2.0.0" +- } +- }, +- "graceful-fs": { +- "version": "4.2.11" +- }, +- "handle-thing": { +- "version": "2.0.1", +- "dev": true +- }, +- "handlebars": { +- "version": "4.7.8", +- "dev": true, +- "requires": { +- "minimist": "^1.2.5", +- "neo-async": "^2.6.2", +- "source-map": "^0.6.1", +- "uglify-js": "^3.1.4", +- "wordwrap": "^1.0.0" +- } +- }, +- "hard-rejection": { +- "version": "2.1.0", +- "dev": true +- }, +- "has": { +- "version": "1.0.4", +- "dev": true +- }, +- "has-bigints": { +- "version": "1.0.2", +- "dev": true +- }, +- "has-flag": { +- "version": "4.0.0" +- }, +- "has-property-descriptors": { +- "version": "1.0.1", +- "devOptional": true, +- "requires": { +- "get-intrinsic": "^1.2.2" +- } +- }, +- "has-proto": { +- "version": "1.0.1", +- "devOptional": true +- }, +- "has-symbols": { +- "version": "1.0.3", +- "devOptional": true +- }, +- "has-tostringtag": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "has-symbols": "^1.0.2" +- } +- }, +- "hash-sum": { +- "version": "2.0.0" +- }, +- "hasown": { +- "version": "2.0.0", +- "requires": { +- "function-bind": "^1.1.2" +- } +- }, +- "he": { +- "version": "1.2.0" +- }, +- "hosted-git-info": { +- "version": "4.1.0", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "hpack.js": { +- "version": "2.1.6", +- "dev": true, +- "requires": { +- "inherits": "^2.0.1", +- "obuf": "^1.0.0", +- "readable-stream": "^2.0.1", +- "wbuf": "^1.1.0" +- }, +- "dependencies": { +- "isarray": { +- "version": "1.0.0", +- "dev": true +- }, +- "readable-stream": { +- "version": "2.3.8", +- "dev": true, +- "requires": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +- "process-nextick-args": "~2.0.0", +- "safe-buffer": "~5.1.1", +- "string_decoder": "~1.1.1", +- "util-deprecate": "~1.0.1" +- } +- }, +- "safe-buffer": { +- "version": "5.1.2", +- "dev": true +- }, +- "string_decoder": { +- "version": "1.1.1", +- "dev": true, +- "requires": { +- "safe-buffer": "~5.1.0" +- } +- } +- } +- }, +- "html-entities": { +- "version": "2.4.0", +- "dev": true +- }, +- "html-minifier-terser": { +- "version": "6.1.0", +- "requires": { +- "camel-case": "^4.1.2", +- "clean-css": "^5.2.2", +- "commander": "^8.3.0", +- "he": "^1.2.0", +- "param-case": "^3.0.4", +- "relateurl": "^0.2.7", +- "terser": "^5.10.0" +- }, +- "dependencies": { +- "commander": { +- "version": "8.3.0" +- } +- } +- }, +- "html-tags": { +- "version": "3.3.1", +- "dev": true +- }, +- "html-webpack-plugin": { +- "version": "5.5.3", +- "requires": { +- "@types/html-minifier-terser": "^6.0.0", +- "html-minifier-terser": "^6.0.2", +- "lodash": "^4.17.21", +- "pretty-error": "^4.0.0", +- "tapable": "^2.0.0" +- } +- }, +- "htmlparser2": { +- "version": "8.0.2", +- "requires": { +- "domelementtype": "^2.3.0", +- "domhandler": "^5.0.3", +- "domutils": "^3.0.1", +- "entities": "^4.4.0" +- } +- }, +- "http-cache-semantics": { +- "version": "4.1.1" +- }, +- "http-deceiver": { +- "version": "1.2.7", +- "dev": true +- }, +- "http-errors": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "depd": "2.0.0", +- "inherits": "2.0.4", +- "setprototypeof": "1.2.0", +- "statuses": "2.0.1", +- "toidentifier": "1.0.1" +- } +- }, +- "http-parser-js": { +- "version": "0.5.8", +- "dev": true +- }, +- "http-proxy": { +- "version": "1.18.1", +- "dev": true, +- "requires": { +- "eventemitter3": "^4.0.0", +- "follow-redirects": "^1.0.0", +- "requires-port": "^1.0.0" +- } +- }, +- "http-proxy-agent": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "@tootallnate/once": "2", +- "agent-base": "6", +- "debug": "4" +- } +- }, +- "http-proxy-middleware": { +- "version": "2.0.6", +- "dev": true, +- "requires": { +- "@types/http-proxy": "^1.17.8", +- "http-proxy": "^1.18.1", +- "is-glob": "^4.0.1", +- "is-plain-obj": "^3.0.0", +- "micromatch": "^4.0.2" +- }, +- "dependencies": { +- "is-plain-obj": { +- "version": "3.0.0", +- "dev": true +- } +- } +- }, +- "http2-wrapper": { +- "version": "1.0.3", +- "requires": { +- "quick-lru": "^5.1.1", +- "resolve-alpn": "^1.0.0" +- } +- }, +- "https-proxy-agent": { +- "version": "5.0.1", +- "dev": true, +- "requires": { +- "agent-base": "6", +- "debug": "4" +- } +- }, +- "human-signals": { +- "version": "2.1.0" +- }, +- "husky": { +- "version": "9.0.11", +- "dev": true +- }, +- "iconv-lite": { +- "version": "0.6.3", +- "requires": { +- "safer-buffer": ">= 2.1.2 < 3.0.0" +- } +- }, +- "icss-utils": { +- "version": "5.1.0", +- "requires": {} +- }, +- "ieee754": { +- "version": "1.2.1" +- }, +- "ignore": { +- "version": "5.3.0", +- "dev": true +- }, +- "immediate": { +- "version": "3.0.6" +- }, +- "import-fresh": { +- "version": "3.3.0", +- "dev": true, +- "requires": { +- "parent-module": "^1.0.0", +- "resolve-from": "^4.0.0" +- } +- }, +- "import-lazy": { +- "version": "4.0.0", +- "dev": true +- }, +- "import-local": { +- "version": "3.1.0", +- "requires": { +- "pkg-dir": "^4.2.0", +- "resolve-cwd": "^3.0.0" +- } +- }, +- "import-meta-resolve": { +- "version": "4.0.0", +- "dev": true +- }, +- "imurmurhash": { +- "version": "0.1.4", +- "dev": true +- }, +- "indent-string": { +- "version": "4.0.0", +- "dev": true +- }, +- "inflight": { +- "version": "1.0.6", +- "requires": { +- "once": "^1.3.0", +- "wrappy": "1" +- } +- }, +- "inherits": { +- "version": "2.0.4" +- }, +- "ini": { +- "version": "1.3.8" +- }, +- "inquirer": { +- "version": "7.3.3", +- "dev": true, +- "requires": { +- "ansi-escapes": "^4.2.1", +- "chalk": "^4.1.0", +- "cli-cursor": "^3.1.0", +- "cli-width": "^3.0.0", +- "external-editor": "^3.0.3", +- "figures": "^3.0.0", +- "lodash": "^4.17.19", +- "mute-stream": "0.0.8", +- "run-async": "^2.4.0", +- "rxjs": "^6.6.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0", +- "through": "^2.3.6" +- } +- }, +- "internal-slot": { +- "version": "1.0.6", +- "dev": true, +- "requires": { +- "get-intrinsic": "^1.2.2", +- "hasown": "^2.0.0", +- "side-channel": "^1.0.4" +- } +- }, +- "interpret": { +- "version": "2.2.0" +- }, +- "ip-address": { +- "version": "5.9.4", +- "requires": { +- "jsbn": "1.1.0", +- "lodash": "^4.17.15", +- "sprintf-js": "1.1.2" +- } +- }, +- "ipaddr.js": { +- "version": "2.1.0", +- "dev": true +- }, +- "is-array-buffer": { +- "version": "3.0.2", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.2.0", +- "is-typed-array": "^1.1.10" +- } +- }, +- "is-arrayish": { +- "version": "0.2.1", +- "dev": true +- }, +- "is-bigint": { +- "version": "1.0.4", +- "dev": true, +- "requires": { +- "has-bigints": "^1.0.1" +- } +- }, +- "is-binary-path": { +- "version": "2.1.0", +- "requires": { +- "binary-extensions": "^2.0.0" +- } +- }, +- "is-boolean-object": { +- "version": "1.1.2", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "has-tostringtag": "^1.0.0" +- } +- }, +- "is-callable": { +- "version": "1.2.7", +- "dev": true +- }, +- "is-ci": { +- "version": "3.0.1", +- "dev": true, +- "requires": { +- "ci-info": "^3.2.0" +- } +- }, +- "is-core-module": { +- "version": "2.13.1", +- "requires": { +- "hasown": "^2.0.0" +- } +- }, +- "is-date-object": { +- "version": "1.0.5", +- "dev": true, +- "requires": { +- "has-tostringtag": "^1.0.0" +- } +- }, +- "is-docker": { +- "version": "2.2.1", +- "dev": true +- }, +- "is-extglob": { +- "version": "2.1.1" +- }, +- "is-fullwidth-code-point": { +- "version": "3.0.0", +- "dev": true +- }, +- "is-glob": { +- "version": "4.0.3", +- "requires": { +- "is-extglob": "^2.1.1" +- } +- }, +- "is-negative-zero": { +- "version": "2.0.2", +- "dev": true +- }, +- "is-number": { +- "version": "7.0.0" +- }, +- "is-number-object": { +- "version": "1.0.7", +- "dev": true, +- "requires": { +- "has-tostringtag": "^1.0.0" +- } +- }, +- "is-obj": { +- "version": "2.0.0" +- }, +- "is-plain-obj": { +- "version": "1.1.0", +- "dev": true +- }, +- "is-plain-object": { +- "version": "5.0.0", +- "dev": true +- }, +- "is-property": { +- "version": "1.0.2" +- }, +- "is-regex": { +- "version": "1.1.4", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "has-tostringtag": "^1.0.0" +- } +- }, +- "is-shared-array-buffer": { +- "version": "1.0.2", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2" +- } +- }, +- "is-stream": { +- "version": "2.0.1" +- }, +- "is-string": { +- "version": "1.0.7", +- "dev": true, +- "requires": { +- "has-tostringtag": "^1.0.0" +- } +- }, +- "is-symbol": { +- "version": "1.0.4", +- "dev": true, +- "requires": { +- "has-symbols": "^1.0.2" +- } +- }, +- "is-text-path": { +- "version": "1.0.1", +- "dev": true, +- "requires": { +- "text-extensions": "^1.0.0" +- } +- }, +- "is-typed-array": { +- "version": "1.1.12", +- "dev": true, +- "requires": { +- "which-typed-array": "^1.1.11" +- } +- }, +- "is-weakref": { +- "version": "1.0.2", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2" +- } +- }, +- "is-wsl": { +- "version": "2.2.0", +- "dev": true, +- "requires": { +- "is-docker": "^2.0.0" +- } +- }, +- "isarray": { +- "version": "2.0.5", +- "dev": true +- }, +- "isbinaryfile": { +- "version": "5.0.2", +- "dev": true +- }, +- "isexe": { +- "version": "2.0.0" +- }, +- "isobject": { +- "version": "3.0.1" +- }, +- "jackspeak": { +- "version": "2.3.6", +- "dev": true, +- "requires": { +- "@isaacs/cliui": "^8.0.2", +- "@pkgjs/parseargs": "^0.11.0" +- } +- }, +- "jake": { +- "version": "10.9.1", +- "dev": true, +- "requires": { +- "async": "^3.2.3", +- "chalk": "^4.0.2", +- "filelist": "^1.0.4", +- "minimatch": "^3.1.2" +- }, +- "dependencies": { +- "brace-expansion": { +- "version": "1.1.11", +- "dev": true, +- "requires": { +- "balanced-match": "^1.0.0", +- "concat-map": "0.0.1" +- } +- }, +- "minimatch": { +- "version": "3.1.2", +- "dev": true, +- "requires": { +- "brace-expansion": "^1.1.7" +- } +- } +- } +- }, +- "jest-worker": { +- "version": "27.5.1", +- "requires": { +- "@types/node": "*", +- "merge-stream": "^2.0.0", +- "supports-color": "^8.0.0" +- }, +- "dependencies": { +- "supports-color": { +- "version": "8.1.1", +- "requires": { +- "has-flag": "^4.0.0" +- } +- } +- } +- }, +- "jiti": { +- "version": "1.21.0", +- "dev": true +- }, +- "js-tokens": { +- "version": "4.0.0" +- }, +- "js-yaml": { +- "version": "4.1.0", +- "requires": { +- "argparse": "^2.0.1" +- } +- }, +- "jsbn": { +- "version": "1.1.0" +- }, +- "jsesc": { +- "version": "2.5.2" +- }, +- "json-buffer": { +- "version": "3.0.1" +- }, +- "json-fixer": { +- "version": "1.6.15", +- "dev": true, +- "requires": { +- "@babel/runtime": "^7.18.9", +- "chalk": "^4.1.2", +- "pegjs": "^0.10.0" +- } +- }, +- "json-parse-better-errors": { +- "version": "1.0.2", +- "dev": true +- }, +- "json-parse-even-better-errors": { +- "version": "2.3.1" +- }, +- "json-schema-traverse": { +- "version": "0.4.1" +- }, +- "json-schema-typed": { +- "version": "7.0.3" +- }, +- "json-stable-stringify-without-jsonify": { +- "version": "1.0.1", +- "dev": true +- }, +- "json-stringify-safe": { +- "version": "5.0.1", +- "devOptional": true +- }, +- "json2php": { +- "version": "0.0.7" +- }, +- "json5": { +- "version": "2.2.3" +- }, +- "jsonfile": { +- "version": "4.0.0", +- "requires": { +- "graceful-fs": "^4.1.6" +- } +- }, +- "jsonparse": { +- "version": "1.3.1", +- "dev": true +- }, +- "JSONStream": { +- "version": "1.3.5", +- "dev": true, +- "requires": { +- "jsonparse": "^1.2.0", +- "through": ">=2.2.7 <3" +- } +- }, +- "jszip": { +- "version": "3.10.1", +- "requires": { +- "lie": "~3.3.0", +- "pako": "~1.0.2", +- "readable-stream": "~2.3.6", +- "setimmediate": "^1.0.5" +- }, +- "dependencies": { +- "isarray": { +- "version": "1.0.0" +- }, +- "readable-stream": { +- "version": "2.3.8", +- "requires": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +- "process-nextick-args": "~2.0.0", +- "safe-buffer": "~5.1.1", +- "string_decoder": "~1.1.1", +- "util-deprecate": "~1.0.1" +- } +- }, +- "safe-buffer": { +- "version": "5.1.2" +- }, +- "string_decoder": { +- "version": "1.1.1", +- "requires": { +- "safe-buffer": "~5.1.0" +- } +- } +- } +- }, +- "keyv": { +- "version": "4.5.4", +- "requires": { +- "json-buffer": "3.0.1" +- } +- }, +- "kind-of": { +- "version": "6.0.3" +- }, +- "klona": { +- "version": "2.0.6" +- }, +- "known-css-properties": { +- "version": "0.29.0", +- "dev": true +- }, +- "lazy-val": { +- "version": "1.0.5" +- }, +- "lazystream": { +- "version": "1.0.1", +- "dev": true, +- "peer": true, +- "requires": { +- "readable-stream": "^2.0.5" +- }, +- "dependencies": { +- "isarray": { +- "version": "1.0.0", +- "dev": true, +- "peer": true +- }, +- "readable-stream": { +- "version": "2.3.8", +- "dev": true, +- "peer": true, +- "requires": { +- "core-util-is": "~1.0.0", +- "inherits": "~2.0.3", +- "isarray": "~1.0.0", +- "process-nextick-args": "~2.0.0", +- "safe-buffer": "~5.1.1", +- "string_decoder": "~1.1.1", +- "util-deprecate": "~1.0.1" +- } +- }, +- "safe-buffer": { +- "version": "5.1.2", +- "dev": true, +- "peer": true +- }, +- "string_decoder": { +- "version": "1.1.1", +- "dev": true, +- "peer": true, +- "requires": { +- "safe-buffer": "~5.1.0" +- } +- } +- } +- }, +- "leaflet": { +- "version": "1.7.1" +- }, +- "levn": { +- "version": "0.4.1", +- "dev": true, +- "requires": { +- "prelude-ls": "^1.2.1", +- "type-check": "~0.4.0" +- } +- }, +- "lie": { +- "version": "3.3.0", +- "requires": { +- "immediate": "~3.0.5" +- } +- }, +- "lines-and-columns": { +- "version": "1.2.4", +- "dev": true +- }, +- "load-json-file": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.2", +- "parse-json": "^4.0.0", +- "pify": "^3.0.0", +- "strip-bom": "^3.0.0" +- }, +- "dependencies": { +- "pify": { +- "version": "3.0.0", +- "dev": true +- } +- } +- }, +- "loader-runner": { +- "version": "4.3.0" +- }, +- "loader-utils": { +- "version": "2.0.4", +- "requires": { +- "big.js": "^5.2.2", +- "emojis-list": "^3.0.0", +- "json5": "^2.1.2" +- } +- }, +- "locate-path": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "p-locate": "^2.0.0", +- "path-exists": "^3.0.0" +- } +- }, +- "lodash": { +- "version": "4.17.21" +- }, +- "lodash.camelcase": { +- "version": "4.3.0", +- "dev": true +- }, +- "lodash.debounce": { +- "version": "4.0.8", +- "dev": true +- }, +- "lodash.defaults": { +- "version": "4.2.0", +- "dev": true, +- "peer": true +- }, +- "lodash.difference": { +- "version": "4.5.0", +- "dev": true, +- "peer": true +- }, +- "lodash.escaperegexp": { +- "version": "4.1.2" +- }, +- "lodash.flatten": { +- "version": "4.4.0", +- "dev": true, +- "peer": true +- }, +- "lodash.isequal": { +- "version": "4.5.0" +- }, +- "lodash.ismatch": { +- "version": "4.4.0", +- "dev": true +- }, +- "lodash.isplainobject": { +- "version": "4.0.6", +- "dev": true +- }, +- "lodash.kebabcase": { +- "version": "4.1.1", +- "dev": true +- }, +- "lodash.merge": { +- "version": "4.6.2", +- "dev": true +- }, +- "lodash.mergewith": { +- "version": "4.6.2", +- "dev": true +- }, +- "lodash.snakecase": { +- "version": "4.1.1", +- "dev": true +- }, +- "lodash.startcase": { +- "version": "4.4.0", +- "dev": true +- }, +- "lodash.truncate": { +- "version": "4.4.2", +- "dev": true +- }, +- "lodash.union": { +- "version": "4.6.0", +- "dev": true, +- "peer": true +- }, +- "lodash.uniq": { +- "version": "4.5.0", +- "dev": true +- }, +- "lodash.upperfirst": { +- "version": "4.3.1", +- "dev": true +- }, +- "log-update": { +- "version": "2.3.0", +- "requires": { +- "ansi-escapes": "^3.0.0", +- "cli-cursor": "^2.0.0", +- "wrap-ansi": "^3.0.1" +- }, +- "dependencies": { +- "ansi-escapes": { +- "version": "3.2.0" +- }, +- "cli-cursor": { +- "version": "2.1.0", +- "requires": { +- "restore-cursor": "^2.0.0" +- } +- }, +- "mimic-fn": { +- "version": "1.2.0" +- }, +- "onetime": { +- "version": "2.0.1", +- "requires": { +- "mimic-fn": "^1.0.0" +- } +- }, +- "restore-cursor": { +- "version": "2.0.0", +- "requires": { +- "onetime": "^2.0.0", +- "signal-exit": "^3.0.2" +- } +- } +- } +- }, +- "long": { +- "version": "5.2.3" +- }, +- "lower-case": { +- "version": "2.0.2", +- "requires": { +- "tslib": "^2.0.3" +- } +- }, +- "lowercase-keys": { +- "version": "2.0.0" +- }, +- "lru-cache": { +- "version": "5.1.1", +- "requires": { +- "yallist": "^3.0.2" +- } +- }, +- "magic-string": { +- "version": "0.25.9", +- "requires": { +- "sourcemap-codec": "^1.4.8" +- } +- }, +- "make-dir": { +- "version": "3.1.0", +- "requires": { +- "semver": "^6.0.0" +- } +- }, +- "make-error": { +- "version": "1.3.6", +- "dev": true +- }, +- "map-obj": { +- "version": "4.3.0", +- "dev": true +- }, +- "marked": { +- "version": "12.0.0" +- }, +- "matcher": { +- "version": "3.0.0", +- "optional": true, +- "requires": { +- "escape-string-regexp": "^4.0.0" +- } +- }, +- "mathml-tag-names": { +- "version": "2.1.3", +- "dev": true +- }, +- "mdn-data": { +- "version": "2.0.30", +- "dev": true +- }, +- "media-typer": { +- "version": "0.3.0", +- "dev": true +- }, +- "memfs": { +- "version": "3.5.3", +- "dev": true, +- "requires": { +- "fs-monkey": "^1.0.4" +- } +- }, +- "meow": { +- "version": "8.1.2", +- "dev": true, +- "requires": { +- "@types/minimist": "^1.2.0", +- "camelcase-keys": "^6.2.2", +- "decamelize-keys": "^1.1.0", +- "hard-rejection": "^2.1.0", +- "minimist-options": "4.1.0", +- "normalize-package-data": "^3.0.0", +- "read-pkg-up": "^7.0.1", +- "redent": "^3.0.0", +- "trim-newlines": "^3.0.0", +- "type-fest": "^0.18.0", +- "yargs-parser": "^20.2.3" +- }, +- "dependencies": { +- "find-up": { +- "version": "4.1.0", +- "dev": true, +- "requires": { +- "locate-path": "^5.0.0", +- "path-exists": "^4.0.0" +- } +- }, +- "locate-path": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "p-locate": "^4.1.0" +- } +- }, +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "normalize-package-data": { +- "version": "3.0.3", +- "dev": true, +- "requires": { +- "hosted-git-info": "^4.0.1", +- "is-core-module": "^2.5.0", +- "semver": "^7.3.4", +- "validate-npm-package-license": "^3.0.1" +- } +- }, +- "p-limit": { +- "version": "2.3.0", +- "dev": true, +- "requires": { +- "p-try": "^2.0.0" +- } +- }, +- "p-locate": { +- "version": "4.1.0", +- "dev": true, +- "requires": { +- "p-limit": "^2.2.0" +- } +- }, +- "p-try": { +- "version": "2.2.0", +- "dev": true +- }, +- "parse-json": { +- "version": "5.2.0", +- "dev": true, +- "requires": { +- "@babel/code-frame": "^7.0.0", +- "error-ex": "^1.3.1", +- "json-parse-even-better-errors": "^2.3.0", +- "lines-and-columns": "^1.1.6" +- } +- }, +- "path-exists": { +- "version": "4.0.0", +- "dev": true +- }, +- "read-pkg": { +- "version": "5.2.0", +- "dev": true, +- "requires": { +- "@types/normalize-package-data": "^2.4.0", +- "normalize-package-data": "^2.5.0", +- "parse-json": "^5.0.0", +- "type-fest": "^0.6.0" +- }, +- "dependencies": { +- "hosted-git-info": { +- "version": "2.8.9", +- "dev": true +- }, +- "normalize-package-data": { +- "version": "2.5.0", +- "dev": true, +- "requires": { +- "hosted-git-info": "^2.1.4", +- "resolve": "^1.10.0", +- "semver": "2 || 3 || 4 || 5", +- "validate-npm-package-license": "^3.0.1" +- } +- }, +- "semver": { +- "version": "5.7.2", +- "dev": true +- }, +- "type-fest": { +- "version": "0.6.0", +- "dev": true +- } +- } +- }, +- "read-pkg-up": { +- "version": "7.0.1", +- "dev": true, +- "requires": { +- "find-up": "^4.1.0", +- "read-pkg": "^5.2.0", +- "type-fest": "^0.8.1" +- }, +- "dependencies": { +- "type-fest": { +- "version": "0.8.1", +- "dev": true +- } +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "type-fest": { +- "version": "0.18.1", +- "dev": true +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "merge-descriptors": { +- "version": "1.0.1", +- "dev": true +- }, +- "merge-stream": { +- "version": "2.0.0" +- }, +- "merge2": { +- "version": "1.4.1", +- "dev": true +- }, +- "methods": { +- "version": "1.1.2", +- "dev": true +- }, +- "micromatch": { +- "version": "4.0.5", +- "requires": { +- "braces": "^3.0.2", +- "picomatch": "^2.3.1" +- } +- }, +- "mime": { +- "version": "2.6.0", +- "dev": true +- }, +- "mime-db": { +- "version": "1.52.0" +- }, +- "mime-types": { +- "version": "2.1.35", +- "requires": { +- "mime-db": "1.52.0" +- } +- }, +- "mimic-fn": { +- "version": "3.1.0" +- }, +- "mimic-response": { +- "version": "1.0.1" +- }, +- "min-indent": { +- "version": "1.0.1", +- "dev": true +- }, +- "mini-css-extract-plugin": { +- "version": "2.4.7", +- "requires": { +- "schema-utils": "^4.0.0" +- }, +- "dependencies": { +- "ajv": { +- "version": "8.12.0", +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- } +- }, +- "ajv-keywords": { +- "version": "5.1.0", +- "requires": { +- "fast-deep-equal": "^3.1.3" +- } +- }, +- "json-schema-traverse": { +- "version": "1.0.0" +- }, +- "schema-utils": { +- "version": "4.2.0", +- "requires": { +- "@types/json-schema": "^7.0.9", +- "ajv": "^8.9.0", +- "ajv-formats": "^2.1.1", +- "ajv-keywords": "^5.1.0" +- } +- } +- } +- }, +- "minimalistic-assert": { +- "version": "1.0.1", +- "dev": true +- }, +- "minimatch": { +- "version": "5.1.6", +- "dev": true, +- "requires": { +- "brace-expansion": "^2.0.1" +- } +- }, +- "minimist": { +- "version": "1.2.8" +- }, +- "minimist-options": { +- "version": "4.1.0", +- "dev": true, +- "requires": { +- "arrify": "^1.0.1", +- "is-plain-obj": "^1.1.0", +- "kind-of": "^6.0.3" +- } +- }, +- "minipass": { +- "version": "5.0.0", +- "dev": true +- }, +- "minizlib": { +- "version": "2.1.2", +- "dev": true, +- "requires": { +- "minipass": "^3.0.0", +- "yallist": "^4.0.0" +- }, +- "dependencies": { +- "minipass": { +- "version": "3.3.6", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "mkdirp": { +- "version": "0.5.6", +- "requires": { +- "minimist": "^1.2.6" +- } +- }, +- "mkdirp-classic": { +- "version": "0.5.3" +- }, +- "modify-values": { +- "version": "1.0.1", +- "dev": true +- }, +- "moment": { +- "version": "2.30.1" +- }, +- "moo": { +- "version": "0.5.2" +- }, +- "ms": { +- "version": "2.1.2" +- }, +- "multicast-dns": { +- "version": "7.2.5", +- "dev": true, +- "requires": { +- "dns-packet": "^5.2.2", +- "thunky": "^1.0.2" +- } +- }, +- "mute-stream": { +- "version": "0.0.8", +- "dev": true +- }, +- "mysql2": { +- "version": "3.9.7", +- "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.9.7.tgz", +- "integrity": "sha512-KnJT8vYRcNAZv73uf9zpXqNbvBG7DJrs+1nACsjZP1HMJ1TgXEy8wnNilXAn/5i57JizXKtrUtwDB7HxT9DDpw==", +- "requires": { +- "denque": "^2.1.0", +- "generate-function": "^2.3.1", +- "iconv-lite": "^0.6.3", +- "long": "^5.2.1", +- "lru-cache": "^8.0.0", +- "named-placeholders": "^1.1.3", +- "seq-queue": "^0.0.5", +- "sqlstring": "^2.3.2" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "8.0.5" +- } +- } +- }, +- "named-placeholders": { +- "version": "1.1.3", +- "requires": { +- "lru-cache": "^7.14.1" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "7.18.3" +- } +- } +- }, +- "nan": { +- "version": "2.19.0" +- }, +- "nanoid": { +- "version": "3.3.7" +- }, +- "napi-build-utils": { +- "version": "1.0.2" +- }, +- "natural-compare": { +- "version": "1.4.0", +- "dev": true +- }, +- "nearley": { +- "version": "2.20.1", +- "requires": { +- "commander": "^2.19.0", +- "moo": "^0.5.0", +- "railroad-diagrams": "^1.0.0", +- "randexp": "0.4.6" +- }, +- "dependencies": { +- "commander": { +- "version": "2.20.3" +- } +- } +- }, +- "negotiator": { +- "version": "0.6.3", +- "dev": true +- }, +- "neo-async": { +- "version": "2.6.2" +- }, +- "no-case": { +- "version": "3.0.4", +- "requires": { +- "lower-case": "^2.0.2", +- "tslib": "^2.0.3" +- } +- }, +- "node-abi": { +- "version": "3.51.0", +- "requires": { +- "semver": "^7.3.5" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0" +- } +- } +- }, +- "node-fetch": { +- "version": "2.7.0", +- "dev": true, +- "requires": { +- "whatwg-url": "^5.0.0" +- } +- }, +- "node-firebird": { +- "version": "1.1.8", +- "resolved": "https://registry.npmjs.org/node-firebird/-/node-firebird-1.1.8.tgz", +- "integrity": "sha512-G64hTeb5hsIocxau76ba9G/htT0Uy6ouJoYQ9zaWuui2GRbQUNxvuc9YMT8I2Mh+/66/+r0rhrV8xQEYwUtPKw==", +- "requires": { +- "big-integer": "^1.6.51", +- "long": "^5.2.3" +- } +- }, +- "node-forge": { +- "version": "1.3.1", +- "dev": true +- }, +- "node-loader": { +- "version": "2.0.0", +- "requires": { +- "loader-utils": "^2.0.0" +- } +- }, +- "node-releases": { +- "version": "2.0.13" +- }, +- "normalize-package-data": { +- "version": "2.5.0", +- "dev": true, +- "requires": { +- "hosted-git-info": "^2.1.4", +- "resolve": "^1.10.0", +- "semver": "2 || 3 || 4 || 5", +- "validate-npm-package-license": "^3.0.1" +- }, +- "dependencies": { +- "hosted-git-info": { +- "version": "2.8.9", +- "dev": true +- }, +- "semver": { +- "version": "5.7.2", +- "dev": true +- } +- } +- }, +- "normalize-path": { +- "version": "3.0.0" +- }, +- "normalize-url": { +- "version": "6.1.0" +- }, +- "npm-run-path": { +- "version": "4.0.1", +- "requires": { +- "path-key": "^3.0.0" +- } +- }, +- "nth-check": { +- "version": "2.1.1", +- "requires": { +- "boolbase": "^1.0.0" +- } +- }, +- "null-check": { +- "version": "1.0.0", +- "dev": true +- }, +- "object-inspect": { +- "version": "1.13.1", +- "dev": true +- }, +- "object-keys": { +- "version": "1.1.1", +- "devOptional": true +- }, +- "object.assign": { +- "version": "4.1.4", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.1.4", +- "has-symbols": "^1.0.3", +- "object-keys": "^1.1.1" +- } +- }, +- "object.values": { +- "version": "1.1.7", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" +- } +- }, +- "obuf": { +- "version": "1.1.2", +- "dev": true +- }, +- "on-finished": { +- "version": "2.4.1", +- "dev": true, +- "requires": { +- "ee-first": "1.1.1" +- } +- }, +- "on-headers": { +- "version": "1.0.2", +- "dev": true +- }, +- "once": { +- "version": "1.4.0", +- "requires": { +- "wrappy": "1" +- } +- }, +- "onetime": { +- "version": "5.1.2", +- "requires": { +- "mimic-fn": "^2.1.0" +- }, +- "dependencies": { +- "mimic-fn": { +- "version": "2.1.0" +- } +- } +- }, +- "open": { +- "version": "8.4.2", +- "dev": true, +- "requires": { +- "define-lazy-prop": "^2.0.0", +- "is-docker": "^2.1.1", +- "is-wsl": "^2.2.0" +- } +- }, +- "optionator": { +- "version": "0.9.3", +- "dev": true, +- "requires": { +- "@aashutoshrathi/word-wrap": "^1.2.3", +- "deep-is": "^0.1.3", +- "fast-levenshtein": "^2.0.6", +- "levn": "^0.4.1", +- "prelude-ls": "^1.2.1", +- "type-check": "^0.4.0" +- } +- }, +- "os-tmpdir": { +- "version": "1.0.2", +- "dev": true +- }, +- "p-cancelable": { +- "version": "2.1.1" +- }, +- "p-limit": { +- "version": "1.3.0", +- "dev": true, +- "requires": { +- "p-try": "^1.0.0" +- } +- }, +- "p-locate": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "p-limit": "^1.1.0" +- } +- }, +- "p-retry": { +- "version": "4.6.2", +- "dev": true, +- "requires": { +- "@types/retry": "0.12.0", +- "retry": "^0.13.1" +- }, +- "dependencies": { +- "retry": { +- "version": "0.13.1", +- "dev": true +- } +- } +- }, +- "p-try": { +- "version": "1.0.0", +- "dev": true +- }, +- "pako": { +- "version": "1.0.11" +- }, +- "param-case": { +- "version": "3.0.4", +- "requires": { +- "dot-case": "^3.0.4", +- "tslib": "^2.0.3" +- } +- }, +- "parent-module": { +- "version": "1.0.1", +- "dev": true, +- "requires": { +- "callsites": "^3.0.0" +- } +- }, +- "parse-json": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "error-ex": "^1.3.1", +- "json-parse-better-errors": "^1.0.1" +- } +- }, +- "parseurl": { +- "version": "1.3.3", +- "dev": true +- }, +- "pascal-case": { +- "version": "3.1.2", +- "requires": { +- "no-case": "^3.0.4", +- "tslib": "^2.0.3" +- } +- }, +- "path-exists": { +- "version": "3.0.0" +- }, +- "path-is-absolute": { +- "version": "1.0.1" +- }, +- "path-key": { +- "version": "3.1.1" +- }, +- "path-parse": { +- "version": "1.0.7" +- }, +- "path-scurry": { +- "version": "1.11.1", +- "dev": true, +- "requires": { +- "lru-cache": "^10.2.0", +- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "10.2.2", +- "dev": true +- } +- } +- }, +- "path-to-regexp": { +- "version": "0.1.7", +- "dev": true +- }, +- "path-type": { +- "version": "4.0.0", +- "dev": true +- }, +- "pegjs": { +- "version": "0.10.0", +- "dev": true +- }, +- "pend": { +- "version": "1.2.0" +- }, +- "pg": { +- "version": "8.11.5", +- "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", +- "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", +- "requires": { +- "pg-cloudflare": "^1.1.1", +- "pg-connection-string": "^2.6.4", +- "pg-pool": "^3.6.2", +- "pg-protocol": "^1.6.1", +- "pg-types": "^2.1.0", +- "pgpass": "1.x" +- }, +- "dependencies": { +- "pg-connection-string": { +- "version": "2.6.4", +- "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", +- "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" +- } +- } +- }, +- "pg-cloudflare": { +- "version": "1.1.1", +- "optional": true +- }, +- "pg-connection-string": { +- "version": "2.5.0" +- }, +- "pg-cursor": { +- "version": "2.10.3", +- "requires": {} +- }, +- "pg-int8": { +- "version": "1.0.1" +- }, +- "pg-pool": { +- "version": "3.6.2", +- "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", +- "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", +- "requires": {} +- }, +- "pg-protocol": { +- "version": "1.6.1", +- "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", +- "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" +- }, +- "pg-query-stream": { +- "version": "4.2.4", +- "requires": { +- "pg-cursor": "^2.7.4" +- } +- }, +- "pg-types": { +- "version": "2.2.0", +- "requires": { +- "pg-int8": "1.0.1", +- "postgres-array": "~2.0.0", +- "postgres-bytea": "~1.0.0", +- "postgres-date": "~1.0.4", +- "postgres-interval": "^1.1.0" +- } +- }, +- "pgpass": { +- "version": "1.0.5", +- "requires": { +- "split2": "^4.1.0" +- } +- }, +- "pgsql-ast-parser": { +- "version": "7.2.1", +- "requires": { +- "moo": "^0.5.1", +- "nearley": "^2.19.5" +- } +- }, +- "picocolors": { +- "version": "1.0.0" +- }, +- "picomatch": { +- "version": "2.3.1" +- }, +- "pify": { +- "version": "5.0.0", +- "dev": true +- }, +- "pinia": { +- "version": "2.1.7", +- "requires": { +- "@vue/devtools-api": "^6.5.0", +- "vue-demi": ">=0.14.5" +- }, +- "dependencies": { +- "vue-demi": { +- "version": "0.14.6", +- "requires": {} +- } +- } +- }, +- "pkg-dir": { +- "version": "4.2.0", +- "requires": { +- "find-up": "^4.0.0" +- }, +- "dependencies": { +- "find-up": { +- "version": "4.1.0", +- "requires": { +- "locate-path": "^5.0.0", +- "path-exists": "^4.0.0" +- } +- }, +- "locate-path": { +- "version": "5.0.0", +- "requires": { +- "p-locate": "^4.1.0" +- } +- }, +- "p-limit": { +- "version": "2.3.0", +- "requires": { +- "p-try": "^2.0.0" +- } +- }, +- "p-locate": { +- "version": "4.1.0", +- "requires": { +- "p-limit": "^2.2.0" +- } +- }, +- "p-try": { +- "version": "2.2.0" +- }, +- "path-exists": { +- "version": "4.0.0" +- } +- } +- }, +- "pkg-up": { +- "version": "3.1.0", +- "requires": { +- "find-up": "^3.0.0" +- }, +- "dependencies": { +- "find-up": { +- "version": "3.0.0", +- "requires": { +- "locate-path": "^3.0.0" +- } +- }, +- "locate-path": { +- "version": "3.0.0", +- "requires": { +- "p-locate": "^3.0.0", +- "path-exists": "^3.0.0" +- } +- }, +- "p-limit": { +- "version": "2.3.0", +- "requires": { +- "p-try": "^2.0.0" +- } +- }, +- "p-locate": { +- "version": "3.0.0", +- "requires": { +- "p-limit": "^2.0.0" +- } +- }, +- "p-try": { +- "version": "2.2.0" +- } +- } +- }, +- "playwright": { +- "version": "1.28.1", +- "dev": true, +- "requires": { +- "playwright-core": "1.28.1" +- } +- }, +- "playwright-core": { +- "version": "1.28.1", +- "dev": true +- }, +- "plist": { +- "version": "3.1.0", +- "dev": true, +- "requires": { +- "@xmldom/xmldom": "^0.8.8", +- "base64-js": "^1.5.1", +- "xmlbuilder": "^15.1.1" +- } +- }, +- "postcss": { +- "version": "8.4.38", +- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", +- "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", +- "requires": { +- "nanoid": "^3.3.7", +- "picocolors": "^1.0.0", +- "source-map-js": "^1.2.0" +- } +- }, +- "postcss-html": { +- "version": "1.5.0", +- "requires": { +- "htmlparser2": "^8.0.0", +- "js-tokens": "^8.0.0", +- "postcss": "^8.4.0", +- "postcss-safe-parser": "^6.0.0" +- }, +- "dependencies": { +- "js-tokens": { +- "version": "8.0.2" +- } +- } +- }, +- "postcss-media-query-parser": { +- "version": "0.2.3", +- "dev": true +- }, +- "postcss-modules-extract-imports": { +- "version": "3.0.0", +- "requires": {} +- }, +- "postcss-modules-local-by-default": { +- "version": "4.0.3", +- "requires": { +- "icss-utils": "^5.0.0", +- "postcss-selector-parser": "^6.0.2", +- "postcss-value-parser": "^4.1.0" +- } +- }, +- "postcss-modules-scope": { +- "version": "3.0.0", +- "requires": { +- "postcss-selector-parser": "^6.0.4" +- } +- }, +- "postcss-modules-values": { +- "version": "4.0.0", +- "requires": { +- "icss-utils": "^5.0.0" +- } +- }, +- "postcss-resolve-nested-selector": { +- "version": "0.1.1", +- "dev": true +- }, +- "postcss-safe-parser": { +- "version": "6.0.0", +- "requires": {} +- }, +- "postcss-selector-parser": { +- "version": "6.0.13", +- "requires": { +- "cssesc": "^3.0.0", +- "util-deprecate": "^1.0.2" +- } +- }, +- "postcss-value-parser": { +- "version": "4.2.0" +- }, +- "postgres-array": { +- "version": "2.0.0" +- }, +- "postgres-bytea": { +- "version": "1.0.0" +- }, +- "postgres-date": { +- "version": "1.0.7" +- }, +- "postgres-interval": { +- "version": "1.2.0", +- "requires": { +- "xtend": "^4.0.0" +- } +- }, +- "prebuild-install": { +- "version": "7.1.1", +- "requires": { +- "detect-libc": "^2.0.0", +- "expand-template": "^2.0.3", +- "github-from-package": "0.0.0", +- "minimist": "^1.2.3", +- "mkdirp-classic": "^0.5.3", +- "napi-build-utils": "^1.0.1", +- "node-abi": "^3.3.0", +- "pump": "^3.0.0", +- "rc": "^1.2.7", +- "simple-get": "^4.0.0", +- "tar-fs": "^2.0.0", +- "tunnel-agent": "^0.6.0" +- } +- }, +- "prelude-ls": { +- "version": "1.2.1", +- "dev": true +- }, +- "pretty-error": { +- "version": "4.0.0", +- "requires": { +- "lodash": "^4.17.20", +- "renderkid": "^3.0.0" +- } +- }, +- "process-nextick-args": { +- "version": "2.0.1" +- }, +- "progress": { +- "version": "2.0.3" +- }, +- "progress-webpack-plugin": { +- "version": "1.0.16", +- "requires": { +- "chalk": "^2.1.0", +- "figures": "^2.0.0", +- "log-update": "^2.3.0" +- }, +- "dependencies": { +- "ansi-styles": { +- "version": "3.2.1", +- "requires": { +- "color-convert": "^1.9.0" +- } +- }, +- "chalk": { +- "version": "2.4.2", +- "requires": { +- "ansi-styles": "^3.2.1", +- "escape-string-regexp": "^1.0.5", +- "supports-color": "^5.3.0" +- } +- }, +- "color-convert": { +- "version": "1.9.3", +- "requires": { +- "color-name": "1.1.3" +- } +- }, +- "color-name": { +- "version": "1.1.3" +- }, +- "escape-string-regexp": { +- "version": "1.0.5" +- }, +- "figures": { +- "version": "2.0.0", +- "requires": { +- "escape-string-regexp": "^1.0.5" +- } +- }, +- "has-flag": { +- "version": "3.0.0" +- }, +- "supports-color": { +- "version": "5.5.0", +- "requires": { +- "has-flag": "^3.0.0" +- } +- } +- } +- }, +- "promise-retry": { +- "version": "2.0.1", +- "dev": true, +- "requires": { +- "err-code": "^2.0.2", +- "retry": "^0.12.0" +- } +- }, +- "proxy-addr": { +- "version": "2.0.7", +- "dev": true, +- "requires": { +- "forwarded": "0.2.0", +- "ipaddr.js": "1.9.1" +- }, +- "dependencies": { +- "ipaddr.js": { +- "version": "1.9.1", +- "dev": true +- } +- } +- }, +- "pump": { +- "version": "3.0.0", +- "requires": { +- "end-of-stream": "^1.1.0", +- "once": "^1.3.1" +- } +- }, +- "punycode": { +- "version": "2.3.1" +- }, +- "q": { +- "version": "1.5.1", +- "dev": true +- }, +- "qs": { +- "version": "6.11.0", +- "dev": true, +- "requires": { +- "side-channel": "^1.0.4" +- } +- }, +- "queue-microtask": { +- "version": "1.2.3", +- "dev": true +- }, +- "quick-lru": { +- "version": "5.1.1" +- }, +- "railroad-diagrams": { +- "version": "1.0.0" +- }, +- "randexp": { +- "version": "0.4.6", +- "requires": { +- "discontinuous-range": "1.0.0", +- "ret": "~0.1.10" +- } +- }, +- "randombytes": { +- "version": "2.1.0", +- "requires": { +- "safe-buffer": "^5.1.0" +- } +- }, +- "range-parser": { +- "version": "1.2.1", +- "dev": true +- }, +- "raw-body": { +- "version": "2.5.2", +- "dev": true, +- "requires": { +- "bytes": "3.1.2", +- "http-errors": "2.0.0", +- "iconv-lite": "0.4.24", +- "unpipe": "1.0.0" +- }, +- "dependencies": { +- "bytes": { +- "version": "3.1.2", +- "dev": true +- }, +- "iconv-lite": { +- "version": "0.4.24", +- "dev": true, +- "requires": { +- "safer-buffer": ">= 2.1.2 < 3" +- } +- } +- } +- }, +- "rc": { +- "version": "1.2.8", +- "requires": { +- "deep-extend": "^0.6.0", +- "ini": "~1.3.0", +- "minimist": "^1.2.0", +- "strip-json-comments": "~2.0.1" +- }, +- "dependencies": { +- "strip-json-comments": { +- "version": "2.0.1" +- } +- } +- }, +- "read-config-file": { +- "version": "6.3.2", +- "dev": true, +- "requires": { +- "config-file-ts": "^0.2.4", +- "dotenv": "^9.0.2", +- "dotenv-expand": "^5.1.0", +- "js-yaml": "^4.1.0", +- "json5": "^2.2.0", +- "lazy-val": "^1.0.4" +- } +- }, +- "read-pkg": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "load-json-file": "^4.0.0", +- "normalize-package-data": "^2.3.2", +- "path-type": "^3.0.0" +- }, +- "dependencies": { +- "path-type": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "pify": "^3.0.0" +- } +- }, +- "pify": { +- "version": "3.0.0", +- "dev": true +- } +- } +- }, +- "read-pkg-up": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "find-up": "^2.0.0", +- "read-pkg": "^3.0.0" +- } +- }, +- "readable-stream": { +- "version": "3.6.2", +- "requires": { +- "inherits": "^2.0.3", +- "string_decoder": "^1.1.1", +- "util-deprecate": "^1.0.1" +- } +- }, +- "readdir-glob": { +- "version": "1.1.3", +- "dev": true, +- "peer": true, +- "requires": { +- "minimatch": "^5.1.0" +- } +- }, +- "readdirp": { +- "version": "3.6.0", +- "requires": { +- "picomatch": "^2.2.1" +- } +- }, +- "rechoir": { +- "version": "0.7.1", +- "requires": { +- "resolve": "^1.9.0" +- } +- }, +- "redent": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "indent-string": "^4.0.0", +- "strip-indent": "^3.0.0" +- } +- }, +- "regenerate": { +- "version": "1.4.2", +- "dev": true +- }, +- "regenerate-unicode-properties": { +- "version": "10.1.1", +- "dev": true, +- "requires": { +- "regenerate": "^1.4.2" +- } +- }, +- "regenerator-runtime": { +- "version": "0.14.0", +- "dev": true +- }, +- "regenerator-transform": { +- "version": "0.15.2", +- "dev": true, +- "requires": { +- "@babel/runtime": "^7.8.4" +- } +- }, +- "regexp.prototype.flags": { +- "version": "1.5.1", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "set-function-name": "^2.0.0" +- } +- }, +- "regexpp": { +- "version": "3.2.0", +- "dev": true +- }, +- "regexpu-core": { +- "version": "5.3.2", +- "dev": true, +- "requires": { +- "@babel/regjsgen": "^0.8.0", +- "regenerate": "^1.4.2", +- "regenerate-unicode-properties": "^10.1.0", +- "regjsparser": "^0.9.1", +- "unicode-match-property-ecmascript": "^2.0.0", +- "unicode-match-property-value-ecmascript": "^2.1.0" +- } +- }, +- "regjsparser": { +- "version": "0.9.1", +- "dev": true, +- "requires": { +- "jsesc": "~0.5.0" +- }, +- "dependencies": { +- "jsesc": { +- "version": "0.5.0", +- "dev": true +- } +- } +- }, +- "relateurl": { +- "version": "0.2.7" +- }, +- "renderkid": { +- "version": "3.0.0", +- "requires": { +- "css-select": "^4.1.3", +- "dom-converter": "^0.2.0", +- "htmlparser2": "^6.1.0", +- "lodash": "^4.17.21", +- "strip-ansi": "^6.0.1" +- }, +- "dependencies": { +- "dom-serializer": { +- "version": "1.4.1", +- "requires": { +- "domelementtype": "^2.0.1", +- "domhandler": "^4.2.0", +- "entities": "^2.0.0" +- } +- }, +- "domhandler": { +- "version": "4.3.1", +- "requires": { +- "domelementtype": "^2.2.0" +- } +- }, +- "domutils": { +- "version": "2.8.0", +- "requires": { +- "dom-serializer": "^1.0.1", +- "domelementtype": "^2.2.0", +- "domhandler": "^4.2.0" +- } +- }, +- "entities": { +- "version": "2.2.0" +- }, +- "htmlparser2": { +- "version": "6.1.0", +- "requires": { +- "domelementtype": "^2.0.1", +- "domhandler": "^4.0.0", +- "domutils": "^2.5.2", +- "entities": "^2.0.0" +- } +- } +- } +- }, +- "require-directory": { +- "version": "2.1.1", +- "dev": true +- }, +- "require-from-string": { +- "version": "2.0.2" +- }, +- "require-main-filename": { +- "version": "2.0.0", +- "dev": true +- }, +- "requires-port": { +- "version": "1.0.0", +- "dev": true +- }, +- "resolve": { +- "version": "1.22.8", +- "requires": { +- "is-core-module": "^2.13.0", +- "path-parse": "^1.0.7", +- "supports-preserve-symlinks-flag": "^1.0.0" +- } +- }, +- "resolve-alpn": { +- "version": "1.2.1" +- }, +- "resolve-cwd": { +- "version": "3.0.0", +- "requires": { +- "resolve-from": "^5.0.0" +- }, +- "dependencies": { +- "resolve-from": { +- "version": "5.0.0" +- } +- } +- }, +- "resolve-from": { +- "version": "4.0.0", +- "dev": true +- }, +- "responselike": { +- "version": "2.0.1", +- "requires": { +- "lowercase-keys": "^2.0.0" +- } +- }, +- "restore-cursor": { +- "version": "3.1.0", +- "dev": true, +- "requires": { +- "onetime": "^5.1.0", +- "signal-exit": "^3.0.2" +- } +- }, +- "ret": { +- "version": "0.1.15" +- }, +- "retry": { +- "version": "0.12.0", +- "dev": true +- }, +- "reusify": { +- "version": "1.0.4", +- "dev": true +- }, +- "rimraf": { +- "version": "3.0.2", +- "requires": { +- "glob": "^7.1.3" +- } +- }, +- "roarr": { +- "version": "2.15.4", +- "optional": true, +- "requires": { +- "boolean": "^3.0.1", +- "detect-node": "^2.0.4", +- "globalthis": "^1.0.1", +- "json-stringify-safe": "^5.0.1", +- "semver-compare": "^1.0.0", +- "sprintf-js": "^1.1.2" +- } +- }, +- "run-async": { +- "version": "2.4.1", +- "dev": true +- }, +- "run-parallel": { +- "version": "1.2.0", +- "dev": true, +- "requires": { +- "queue-microtask": "^1.2.2" +- } +- }, +- "rxjs": { +- "version": "6.6.7", +- "dev": true, +- "requires": { +- "tslib": "^1.9.0" +- }, +- "dependencies": { +- "tslib": { +- "version": "1.14.1", +- "dev": true +- } +- } +- }, +- "safe-array-concat": { +- "version": "1.0.1", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.2.1", +- "has-symbols": "^1.0.3", +- "isarray": "^2.0.5" +- } +- }, +- "safe-buffer": { +- "version": "5.2.1" +- }, +- "safe-regex-test": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.1.3", +- "is-regex": "^1.1.4" +- } +- }, +- "safer-buffer": { +- "version": "2.1.2" +- }, +- "sanitize-filename": { +- "version": "1.6.3", +- "dev": true, +- "requires": { +- "truncate-utf8-bytes": "^1.0.0" +- } +- }, +- "sass": { +- "version": "1.42.1", +- "requires": { +- "chokidar": ">=3.0.0 <4.0.0" +- } +- }, +- "sass-loader": { +- "version": "12.3.0", +- "requires": { +- "klona": "^2.0.4", +- "neo-async": "^2.6.2" +- } +- }, +- "sax": { +- "version": "1.3.0" +- }, +- "schema-utils": { +- "version": "2.7.1", +- "requires": { +- "@types/json-schema": "^7.0.5", +- "ajv": "^6.12.4", +- "ajv-keywords": "^3.5.2" +- } +- }, +- "select-hose": { +- "version": "2.0.0", +- "dev": true +- }, +- "selfsigned": { +- "version": "2.4.1", +- "dev": true, +- "requires": { +- "@types/node-forge": "^1.3.0", +- "node-forge": "^1" +- } +- }, +- "semver": { +- "version": "6.3.1" +- }, +- "semver-compare": { +- "version": "1.0.0", +- "optional": true +- }, +- "send": { +- "version": "0.18.0", +- "dev": true, +- "requires": { +- "debug": "2.6.9", +- "depd": "2.0.0", +- "destroy": "1.2.0", +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +- "etag": "~1.8.1", +- "fresh": "0.5.2", +- "http-errors": "2.0.0", +- "mime": "1.6.0", +- "ms": "2.1.3", +- "on-finished": "2.4.1", +- "range-parser": "~1.2.1", +- "statuses": "2.0.1" +- }, +- "dependencies": { +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- }, +- "dependencies": { +- "ms": { +- "version": "2.0.0", +- "dev": true +- } +- } +- }, +- "mime": { +- "version": "1.6.0", +- "dev": true +- }, +- "ms": { +- "version": "2.1.3", +- "dev": true +- } +- } +- }, +- "seq-queue": { +- "version": "0.0.5" +- }, +- "serialize-error": { +- "version": "7.0.1", +- "optional": true, +- "requires": { +- "type-fest": "^0.13.1" +- }, +- "dependencies": { +- "type-fest": { +- "version": "0.13.1", +- "optional": true +- } +- } +- }, +- "serialize-javascript": { +- "version": "6.0.2", +- "requires": { +- "randombytes": "^2.1.0" +- } +- }, +- "serve-index": { +- "version": "1.9.1", +- "dev": true, +- "requires": { +- "accepts": "~1.3.4", +- "batch": "0.6.1", +- "debug": "2.6.9", +- "escape-html": "~1.0.3", +- "http-errors": "~1.6.2", +- "mime-types": "~2.1.17", +- "parseurl": "~1.3.2" +- }, +- "dependencies": { +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- } +- }, +- "depd": { +- "version": "1.1.2", +- "dev": true +- }, +- "http-errors": { +- "version": "1.6.3", +- "dev": true, +- "requires": { +- "depd": "~1.1.2", +- "inherits": "2.0.3", +- "setprototypeof": "1.1.0", +- "statuses": ">= 1.4.0 < 2" +- } +- }, +- "inherits": { +- "version": "2.0.3", +- "dev": true +- }, +- "ms": { +- "version": "2.0.0", +- "dev": true +- }, +- "setprototypeof": { +- "version": "1.1.0", +- "dev": true +- }, +- "statuses": { +- "version": "1.5.0", +- "dev": true +- } +- } +- }, +- "serve-static": { +- "version": "1.15.0", +- "dev": true, +- "requires": { +- "encodeurl": "~1.0.2", +- "escape-html": "~1.0.3", +- "parseurl": "~1.3.3", +- "send": "0.18.0" +- } +- }, +- "set-blocking": { +- "version": "2.0.0", +- "dev": true +- }, +- "set-function-length": { +- "version": "1.1.1", +- "dev": true, +- "requires": { +- "define-data-property": "^1.1.1", +- "get-intrinsic": "^1.2.1", +- "gopd": "^1.0.1", +- "has-property-descriptors": "^1.0.0" +- } +- }, +- "set-function-name": { +- "version": "2.0.1", +- "dev": true, +- "requires": { +- "define-data-property": "^1.0.1", +- "functions-have-names": "^1.2.3", +- "has-property-descriptors": "^1.0.0" +- } +- }, +- "setimmediate": { +- "version": "1.0.5" +- }, +- "setprototypeof": { +- "version": "1.2.0", +- "dev": true +- }, +- "shallow-clone": { +- "version": "3.0.1", +- "requires": { +- "kind-of": "^6.0.2" +- } +- }, +- "shebang-command": { +- "version": "2.0.0", +- "requires": { +- "shebang-regex": "^3.0.0" +- } +- }, +- "shebang-regex": { +- "version": "3.0.0" +- }, +- "side-channel": { +- "version": "1.0.4", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.0", +- "get-intrinsic": "^1.0.2", +- "object-inspect": "^1.9.0" +- } +- }, +- "signal-exit": { +- "version": "3.0.7" +- }, +- "simple-concat": { +- "version": "1.0.1" +- }, +- "simple-get": { +- "version": "4.0.1", +- "requires": { +- "decompress-response": "^6.0.0", +- "once": "^1.3.1", +- "simple-concat": "^1.0.0" +- } +- }, +- "simple-update-notifier": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "semver": "^7.5.3" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "slash": { +- "version": "3.0.0", +- "dev": true +- }, +- "sockjs": { +- "version": "0.3.24", +- "dev": true, +- "requires": { +- "faye-websocket": "^0.11.3", +- "uuid": "^8.3.2", +- "websocket-driver": "^0.7.4" +- } +- }, +- "sortablejs": { +- "version": "1.14.0" +- }, +- "source-map": { +- "version": "0.6.1" +- }, +- "source-map-js": { +- "version": "1.2.0", +- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", +- "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==" +- }, +- "source-map-support": { +- "version": "0.5.21", +- "requires": { +- "buffer-from": "^1.0.0", +- "source-map": "^0.6.0" +- } +- }, +- "sourcemap-codec": { +- "version": "1.4.8" +- }, +- "spdx-correct": { +- "version": "3.2.0", +- "dev": true, +- "requires": { +- "spdx-expression-parse": "^3.0.0", +- "spdx-license-ids": "^3.0.0" +- } +- }, +- "spdx-exceptions": { +- "version": "2.3.0", +- "dev": true +- }, +- "spdx-expression-parse": { +- "version": "3.0.1", +- "dev": true, +- "requires": { +- "spdx-exceptions": "^2.1.0", +- "spdx-license-ids": "^3.0.0" +- } +- }, +- "spdx-license-ids": { +- "version": "3.0.16", +- "dev": true +- }, +- "spdy": { +- "version": "4.0.2", +- "dev": true, +- "requires": { +- "debug": "^4.1.0", +- "handle-thing": "^2.0.0", +- "http-deceiver": "^1.2.7", +- "select-hose": "^2.0.0", +- "spdy-transport": "^3.0.0" +- } +- }, +- "spdy-transport": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "debug": "^4.1.0", +- "detect-node": "^2.0.4", +- "hpack.js": "^2.1.6", +- "obuf": "^1.1.2", +- "readable-stream": "^3.0.6", +- "wbuf": "^1.7.3" +- } +- }, +- "spectre.css": { +- "version": "0.5.9" +- }, +- "split": { +- "version": "1.0.1", +- "dev": true, +- "requires": { +- "through": "2" +- } +- }, +- "split2": { +- "version": "4.2.0" +- }, +- "sprintf-js": { +- "version": "1.1.2" +- }, +- "sql-formatter": { +- "version": "13.0.4", +- "requires": { +- "argparse": "^2.0.1", +- "get-stdin": "=8.0.0", +- "nearley": "^2.20.1" +- } +- }, +- "sql-highlight": { +- "version": "4.4.0" +- }, +- "sqlstring": { +- "version": "2.3.3" +- }, +- "ssh2": { +- "version": "1.14.0", +- "requires": { +- "asn1": "^0.2.6", +- "bcrypt-pbkdf": "^1.0.2", +- "cpu-features": "~0.0.8", +- "nan": "^2.17.0" +- } +- }, +- "standard-version": { +- "version": "9.3.2", +- "dev": true, +- "requires": { +- "chalk": "^2.4.2", +- "conventional-changelog": "3.1.24", +- "conventional-changelog-config-spec": "2.1.0", +- "conventional-changelog-conventionalcommits": "4.6.1", +- "conventional-recommended-bump": "6.1.0", +- "detect-indent": "^6.0.0", +- "detect-newline": "^3.1.0", +- "dotgitignore": "^2.1.0", +- "figures": "^3.1.0", +- "find-up": "^5.0.0", +- "fs-access": "^1.0.1", +- "git-semver-tags": "^4.0.0", +- "semver": "^7.1.1", +- "stringify-package": "^1.0.1", +- "yargs": "^16.0.0" +- }, +- "dependencies": { +- "ansi-styles": { +- "version": "3.2.1", +- "dev": true, +- "requires": { +- "color-convert": "^1.9.0" +- } +- }, +- "chalk": { +- "version": "2.4.2", +- "dev": true, +- "requires": { +- "ansi-styles": "^3.2.1", +- "escape-string-regexp": "^1.0.5", +- "supports-color": "^5.3.0" +- } +- }, +- "cliui": { +- "version": "7.0.4", +- "dev": true, +- "requires": { +- "string-width": "^4.2.0", +- "strip-ansi": "^6.0.0", +- "wrap-ansi": "^7.0.0" +- } +- }, +- "color-convert": { +- "version": "1.9.3", +- "dev": true, +- "requires": { +- "color-name": "1.1.3" +- } +- }, +- "color-name": { +- "version": "1.1.3", +- "dev": true +- }, +- "escape-string-regexp": { +- "version": "1.0.5", +- "dev": true +- }, +- "find-up": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "locate-path": "^6.0.0", +- "path-exists": "^4.0.0" +- } +- }, +- "has-flag": { +- "version": "3.0.0", +- "dev": true +- }, +- "locate-path": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "p-locate": "^5.0.0" +- } +- }, +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "p-limit": { +- "version": "3.1.0", +- "dev": true, +- "requires": { +- "yocto-queue": "^0.1.0" +- } +- }, +- "p-locate": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "p-limit": "^3.0.2" +- } +- }, +- "path-exists": { +- "version": "4.0.0", +- "dev": true +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "supports-color": { +- "version": "5.5.0", +- "dev": true, +- "requires": { +- "has-flag": "^3.0.0" +- } +- }, +- "wrap-ansi": { +- "version": "7.0.0", +- "dev": true, +- "requires": { +- "ansi-styles": "^4.0.0", +- "string-width": "^4.1.0", +- "strip-ansi": "^6.0.0" +- }, +- "dependencies": { +- "ansi-styles": { +- "version": "4.3.0", +- "dev": true, +- "requires": { +- "color-convert": "^2.0.1" +- } +- }, +- "color-convert": { +- "version": "2.0.1", +- "dev": true, +- "requires": { +- "color-name": "~1.1.4" +- } +- }, +- "color-name": { +- "version": "1.1.4", +- "dev": true +- } +- } +- }, +- "y18n": { +- "version": "5.0.8", +- "dev": true +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- }, +- "yargs": { +- "version": "16.2.0", +- "dev": true, +- "requires": { +- "cliui": "^7.0.2", +- "escalade": "^3.1.1", +- "get-caller-file": "^2.0.5", +- "require-directory": "^2.1.1", +- "string-width": "^4.2.0", +- "y18n": "^5.0.5", +- "yargs-parser": "^20.2.2" +- } +- } +- } +- }, +- "stat-mode": { +- "version": "1.0.0", +- "dev": true +- }, +- "statuses": { +- "version": "2.0.1", +- "dev": true +- }, +- "string_decoder": { +- "version": "1.3.0", +- "requires": { +- "safe-buffer": "~5.2.0" +- } +- }, +- "string-width": { +- "version": "4.2.3", +- "dev": true, +- "requires": { +- "emoji-regex": "^8.0.0", +- "is-fullwidth-code-point": "^3.0.0", +- "strip-ansi": "^6.0.1" +- } +- }, +- "string-width-cjs": { +- "version": "npm:string-width@4.2.3", +- "dev": true, +- "requires": { +- "emoji-regex": "^8.0.0", +- "is-fullwidth-code-point": "^3.0.0", +- "strip-ansi": "^6.0.1" +- } +- }, +- "string.prototype.trim": { +- "version": "1.2.8", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" +- } +- }, +- "string.prototype.trimend": { +- "version": "1.0.7", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" +- } +- }, +- "string.prototype.trimstart": { +- "version": "1.0.7", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "define-properties": "^1.2.0", +- "es-abstract": "^1.22.1" +- } +- }, +- "stringify-package": { +- "version": "1.0.1", +- "dev": true +- }, +- "strip-ansi": { +- "version": "6.0.1", +- "requires": { +- "ansi-regex": "^5.0.1" +- } +- }, +- "strip-ansi-cjs": { +- "version": "npm:strip-ansi@6.0.1", +- "dev": true, +- "requires": { +- "ansi-regex": "^5.0.1" +- } +- }, +- "strip-bom": { +- "version": "3.0.0", +- "dev": true +- }, +- "strip-final-newline": { +- "version": "2.0.0" +- }, +- "strip-indent": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "min-indent": "^1.0.0" +- } +- }, +- "strip-json-comments": { +- "version": "3.1.1", +- "dev": true +- }, +- "style-loader": { +- "version": "3.3.3", +- "requires": {} +- }, +- "style-search": { +- "version": "0.1.0", +- "dev": true +- }, +- "stylelint": { +- "version": "15.11.0", +- "dev": true, +- "requires": { +- "@csstools/css-parser-algorithms": "^2.3.1", +- "@csstools/css-tokenizer": "^2.2.0", +- "@csstools/media-query-list-parser": "^2.1.4", +- "@csstools/selector-specificity": "^3.0.0", +- "balanced-match": "^2.0.0", +- "colord": "^2.9.3", +- "cosmiconfig": "^8.2.0", +- "css-functions-list": "^3.2.1", +- "css-tree": "^2.3.1", +- "debug": "^4.3.4", +- "fast-glob": "^3.3.1", +- "fastest-levenshtein": "^1.0.16", +- "file-entry-cache": "^7.0.0", +- "global-modules": "^2.0.0", +- "globby": "^11.1.0", +- "globjoin": "^0.1.4", +- "html-tags": "^3.3.1", +- "ignore": "^5.2.4", +- "import-lazy": "^4.0.0", +- "imurmurhash": "^0.1.4", +- "is-plain-object": "^5.0.0", +- "known-css-properties": "^0.29.0", +- "mathml-tag-names": "^2.1.3", +- "meow": "^10.1.5", +- "micromatch": "^4.0.5", +- "normalize-path": "^3.0.0", +- "picocolors": "^1.0.0", +- "postcss": "^8.4.28", +- "postcss-resolve-nested-selector": "^0.1.1", +- "postcss-safe-parser": "^6.0.0", +- "postcss-selector-parser": "^6.0.13", +- "postcss-value-parser": "^4.2.0", +- "resolve-from": "^5.0.0", +- "string-width": "^4.2.3", +- "strip-ansi": "^6.0.1", +- "style-search": "^0.1.0", +- "supports-hyperlinks": "^3.0.0", +- "svg-tags": "^1.0.0", +- "table": "^6.8.1", +- "write-file-atomic": "^5.0.1" +- }, +- "dependencies": { +- "balanced-match": { +- "version": "2.0.0", +- "dev": true +- }, +- "camelcase": { +- "version": "6.3.0", +- "dev": true +- }, +- "camelcase-keys": { +- "version": "7.0.2", +- "dev": true, +- "requires": { +- "camelcase": "^6.3.0", +- "map-obj": "^4.1.0", +- "quick-lru": "^5.1.1", +- "type-fest": "^1.2.1" +- } +- }, +- "cosmiconfig": { +- "version": "8.3.6", +- "dev": true, +- "requires": { +- "import-fresh": "^3.3.0", +- "js-yaml": "^4.1.0", +- "parse-json": "^5.2.0", +- "path-type": "^4.0.0" +- } +- }, +- "decamelize": { +- "version": "5.0.1", +- "dev": true +- }, +- "file-entry-cache": { +- "version": "7.0.2", +- "dev": true, +- "requires": { +- "flat-cache": "^3.2.0" +- } +- }, +- "find-up": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "locate-path": "^6.0.0", +- "path-exists": "^4.0.0" +- } +- }, +- "indent-string": { +- "version": "5.0.0", +- "dev": true +- }, +- "locate-path": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "p-locate": "^5.0.0" +- } +- }, +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "meow": { +- "version": "10.1.5", +- "dev": true, +- "requires": { +- "@types/minimist": "^1.2.2", +- "camelcase-keys": "^7.0.0", +- "decamelize": "^5.0.0", +- "decamelize-keys": "^1.1.0", +- "hard-rejection": "^2.1.0", +- "minimist-options": "4.1.0", +- "normalize-package-data": "^3.0.2", +- "read-pkg-up": "^8.0.0", +- "redent": "^4.0.0", +- "trim-newlines": "^4.0.2", +- "type-fest": "^1.2.2", +- "yargs-parser": "^20.2.9" +- } +- }, +- "normalize-package-data": { +- "version": "3.0.3", +- "dev": true, +- "requires": { +- "hosted-git-info": "^4.0.1", +- "is-core-module": "^2.5.0", +- "semver": "^7.3.4", +- "validate-npm-package-license": "^3.0.1" +- } +- }, +- "p-limit": { +- "version": "3.1.0", +- "dev": true, +- "requires": { +- "yocto-queue": "^0.1.0" +- } +- }, +- "p-locate": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "p-limit": "^3.0.2" +- } +- }, +- "parse-json": { +- "version": "5.2.0", +- "dev": true, +- "requires": { +- "@babel/code-frame": "^7.0.0", +- "error-ex": "^1.3.1", +- "json-parse-even-better-errors": "^2.3.0", +- "lines-and-columns": "^1.1.6" +- } +- }, +- "path-exists": { +- "version": "4.0.0", +- "dev": true +- }, +- "read-pkg": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "@types/normalize-package-data": "^2.4.0", +- "normalize-package-data": "^3.0.2", +- "parse-json": "^5.2.0", +- "type-fest": "^1.0.1" +- } +- }, +- "read-pkg-up": { +- "version": "8.0.0", +- "dev": true, +- "requires": { +- "find-up": "^5.0.0", +- "read-pkg": "^6.0.0", +- "type-fest": "^1.0.1" +- } +- }, +- "redent": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "indent-string": "^5.0.0", +- "strip-indent": "^4.0.0" +- } +- }, +- "resolve-from": { +- "version": "5.0.0", +- "dev": true +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "strip-indent": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "min-indent": "^1.0.1" +- } +- }, +- "trim-newlines": { +- "version": "4.1.1", +- "dev": true +- }, +- "type-fest": { +- "version": "1.4.0", +- "dev": true +- }, +- "typescript": { +- "version": "5.3.2", +- "dev": true, +- "optional": true, +- "peer": true +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "stylelint-config-html": { +- "version": "1.1.0", +- "dev": true, +- "requires": {} +- }, +- "stylelint-config-recommended": { +- "version": "13.0.0", +- "dev": true, +- "requires": {} +- }, +- "stylelint-config-recommended-vue": { +- "version": "1.5.0", +- "dev": true, +- "requires": { +- "semver": "^7.3.5", +- "stylelint-config-html": ">=1.0.0", +- "stylelint-config-recommended": ">=6.0.0" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "stylelint-config-standard": { +- "version": "34.0.0", +- "dev": true, +- "requires": { +- "stylelint-config-recommended": "^13.0.0" +- } +- }, +- "stylelint-scss": { +- "version": "5.3.1", +- "dev": true, +- "requires": { +- "known-css-properties": "^0.29.0", +- "postcss-media-query-parser": "^0.2.3", +- "postcss-resolve-nested-selector": "^0.1.1", +- "postcss-selector-parser": "^6.0.13", +- "postcss-value-parser": "^4.2.0" +- } +- }, +- "sumchecker": { +- "version": "3.0.1", +- "requires": { +- "debug": "^4.1.0" +- } +- }, +- "supports-color": { +- "version": "7.2.0", +- "requires": { +- "has-flag": "^4.0.0" +- } +- }, +- "supports-hyperlinks": { +- "version": "3.0.0", +- "dev": true, +- "requires": { +- "has-flag": "^4.0.0", +- "supports-color": "^7.0.0" +- } +- }, +- "supports-preserve-symlinks-flag": { +- "version": "1.0.0" +- }, +- "svg-tags": { +- "version": "1.0.0", +- "dev": true +- }, +- "table": { +- "version": "6.8.1", +- "dev": true, +- "requires": { +- "ajv": "^8.0.1", +- "lodash.truncate": "^4.4.2", +- "slice-ansi": "^4.0.0", +- "string-width": "^4.2.3", +- "strip-ansi": "^6.0.1" +- }, +- "dependencies": { +- "ajv": { +- "version": "8.12.0", +- "dev": true, +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- } +- }, +- "json-schema-traverse": { +- "version": "1.0.0", +- "dev": true +- }, +- "slice-ansi": { +- "version": "4.0.0", +- "dev": true, +- "requires": { +- "ansi-styles": "^4.0.0", +- "astral-regex": "^2.0.0", +- "is-fullwidth-code-point": "^3.0.0" +- } +- } +- } +- }, +- "tapable": { +- "version": "2.2.1" +- }, +- "tar": { +- "version": "6.2.1", +- "dev": true, +- "requires": { +- "chownr": "^2.0.0", +- "fs-minipass": "^2.0.0", +- "minipass": "^5.0.0", +- "minizlib": "^2.1.1", +- "mkdirp": "^1.0.3", +- "yallist": "^4.0.0" +- }, +- "dependencies": { +- "mkdirp": { +- "version": "1.0.4", +- "dev": true +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "tar-fs": { +- "version": "2.1.1", +- "requires": { +- "chownr": "^1.1.1", +- "mkdirp-classic": "^0.5.2", +- "pump": "^3.0.0", +- "tar-stream": "^2.1.4" +- }, +- "dependencies": { +- "chownr": { +- "version": "1.1.4" +- } +- } +- }, +- "tar-stream": { +- "version": "2.2.0", +- "requires": { +- "bl": "^4.0.3", +- "end-of-stream": "^1.4.1", +- "fs-constants": "^1.0.0", +- "inherits": "^2.0.3", +- "readable-stream": "^3.1.1" +- } +- }, +- "temp-file": { +- "version": "3.4.0", +- "dev": true, +- "requires": { +- "async-exit-hook": "^2.0.1", +- "fs-extra": "^10.0.0" +- }, +- "dependencies": { +- "fs-extra": { +- "version": "10.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.2.0", +- "jsonfile": "^6.0.1", +- "universalify": "^2.0.0" +- } +- }, +- "jsonfile": { +- "version": "6.1.0", +- "dev": true, +- "requires": { +- "graceful-fs": "^4.1.6", +- "universalify": "^2.0.0" +- } +- }, +- "universalify": { +- "version": "2.0.1", +- "dev": true +- } +- } +- }, +- "terser": { +- "version": "5.31.0", +- "requires": { +- "@jridgewell/source-map": "^0.3.3", +- "acorn": "^8.8.2", +- "commander": "^2.20.0", +- "source-map-support": "~0.5.20" +- }, +- "dependencies": { +- "acorn": { +- "version": "8.11.2" +- }, +- "commander": { +- "version": "2.20.3" +- } +- } +- }, +- "terser-webpack-plugin": { +- "version": "5.3.10", +- "requires": { +- "@jridgewell/trace-mapping": "^0.3.20", +- "jest-worker": "^27.4.5", +- "schema-utils": "^3.1.1", +- "serialize-javascript": "^6.0.1", +- "terser": "^5.26.0" +- }, +- "dependencies": { +- "schema-utils": { +- "version": "3.3.0", +- "requires": { +- "@types/json-schema": "^7.0.8", +- "ajv": "^6.12.5", +- "ajv-keywords": "^3.5.2" +- } +- } +- } +- }, +- "text-extensions": { +- "version": "1.9.0", +- "dev": true +- }, +- "text-table": { +- "version": "0.2.0", +- "dev": true +- }, +- "through": { +- "version": "2.3.8", +- "dev": true +- }, +- "through2": { +- "version": "4.0.2", +- "dev": true, +- "requires": { +- "readable-stream": "3" +- } +- }, +- "thunky": { +- "version": "1.1.0", +- "dev": true +- }, +- "tmp": { +- "version": "0.0.33", +- "dev": true, +- "requires": { +- "os-tmpdir": "~1.0.2" +- } +- }, +- "tmp-promise": { +- "version": "3.0.3", +- "dev": true, +- "requires": { +- "tmp": "^0.2.0" +- }, +- "dependencies": { +- "tmp": { +- "version": "0.2.3", +- "dev": true +- } +- } +- }, +- "to-fast-properties": { +- "version": "2.0.0" +- }, +- "to-regex-range": { +- "version": "5.0.1", +- "requires": { +- "is-number": "^7.0.0" +- } +- }, +- "toidentifier": { +- "version": "1.0.1", +- "dev": true +- }, +- "tr46": { +- "version": "0.0.3", +- "dev": true +- }, +- "tree-kill": { +- "version": "1.2.2" +- }, +- "trim-newlines": { +- "version": "3.0.1", +- "dev": true +- }, +- "truncate-utf8-bytes": { +- "version": "1.0.2", +- "dev": true, +- "requires": { +- "utf8-byte-length": "^1.0.1" +- } +- }, +- "ts-loader": { +- "version": "9.2.9", +- "requires": { +- "chalk": "^4.1.0", +- "enhanced-resolve": "^5.0.0", +- "micromatch": "^4.0.0", +- "semver": "^7.3.4" +- }, +- "dependencies": { +- "lru-cache": { +- "version": "6.0.0", +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0" +- } +- } +- }, +- "ts-node": { +- "version": "10.9.1", +- "dev": true, +- "requires": { +- "@cspotcode/source-map-support": "^0.8.0", +- "@tsconfig/node10": "^1.0.7", +- "@tsconfig/node12": "^1.0.7", +- "@tsconfig/node14": "^1.0.0", +- "@tsconfig/node16": "^1.0.2", +- "acorn": "^8.4.1", +- "acorn-walk": "^8.1.1", +- "arg": "^4.1.0", +- "create-require": "^1.1.0", +- "diff": "^4.0.1", +- "make-error": "^1.1.1", +- "v8-compile-cache-lib": "^3.0.1", +- "yn": "3.1.1" +- }, +- "dependencies": { +- "acorn": { +- "version": "8.11.2", +- "dev": true +- } +- } +- }, +- "tsconfig-paths": { +- "version": "3.14.2", +- "dev": true, +- "requires": { +- "@types/json5": "^0.0.29", +- "json5": "^1.0.2", +- "minimist": "^1.2.6", +- "strip-bom": "^3.0.0" +- }, +- "dependencies": { +- "json5": { +- "version": "1.0.2", +- "dev": true, +- "requires": { +- "minimist": "^1.2.0" +- } +- } +- } +- }, +- "tslib": { +- "version": "2.6.2" +- }, +- "tsutils": { +- "version": "3.21.0", +- "dev": true, +- "requires": { +- "tslib": "^1.8.1" +- }, +- "dependencies": { +- "tslib": { +- "version": "1.14.1", +- "dev": true +- } +- } +- }, +- "tunnel-agent": { +- "version": "0.6.0", +- "requires": { +- "safe-buffer": "^5.0.1" +- } +- }, +- "tweetnacl": { +- "version": "0.14.5" +- }, +- "type-check": { +- "version": "0.4.0", +- "dev": true, +- "requires": { +- "prelude-ls": "^1.2.1" +- } +- }, +- "type-fest": { +- "version": "2.19.0" +- }, +- "type-is": { +- "version": "1.6.18", +- "dev": true, +- "requires": { +- "media-typer": "0.3.0", +- "mime-types": "~2.1.24" +- } +- }, +- "typed-array-buffer": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "get-intrinsic": "^1.2.1", +- "is-typed-array": "^1.1.10" +- } +- }, +- "typed-array-byte-length": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "for-each": "^0.3.3", +- "has-proto": "^1.0.1", +- "is-typed-array": "^1.1.10" +- } +- }, +- "typed-array-byte-offset": { +- "version": "1.0.0", +- "dev": true, +- "requires": { +- "available-typed-arrays": "^1.0.5", +- "call-bind": "^1.0.2", +- "for-each": "^0.3.3", +- "has-proto": "^1.0.1", +- "is-typed-array": "^1.1.10" +- } +- }, +- "typed-array-length": { +- "version": "1.0.4", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "for-each": "^0.3.3", +- "is-typed-array": "^1.1.9" +- } +- }, +- "typedarray": { +- "version": "0.0.6", +- "dev": true +- }, +- "typescript": { +- "version": "4.6.4" +- }, +- "uglify-js": { +- "version": "3.17.4", +- "dev": true, +- "optional": true +- }, +- "unbox-primitive": { +- "version": "1.0.2", +- "dev": true, +- "requires": { +- "call-bind": "^1.0.2", +- "has-bigints": "^1.0.2", +- "has-symbols": "^1.0.3", +- "which-boxed-primitive": "^1.0.2" +- } +- }, +- "undici-types": { +- "version": "5.26.5" +- }, +- "unicode-canonical-property-names-ecmascript": { +- "version": "2.0.0", +- "dev": true +- }, +- "unicode-match-property-ecmascript": { +- "version": "2.0.0", +- "dev": true, +- "requires": { +- "unicode-canonical-property-names-ecmascript": "^2.0.0", +- "unicode-property-aliases-ecmascript": "^2.0.0" +- } +- }, +- "unicode-match-property-value-ecmascript": { +- "version": "2.1.0", +- "dev": true +- }, +- "unicode-property-aliases-ecmascript": { +- "version": "2.1.0", +- "dev": true +- }, +- "unicorn-magic": { +- "version": "0.1.0", +- "dev": true +- }, +- "universalify": { +- "version": "0.1.2" +- }, +- "unpipe": { +- "version": "1.0.0", +- "dev": true +- }, +- "unzip-crx-3": { +- "version": "0.2.0", +- "requires": { +- "jszip": "^3.1.0", +- "mkdirp": "^0.5.1", +- "yaku": "^0.16.6" +- } +- }, +- "update-browserslist-db": { +- "version": "1.0.13", +- "requires": { +- "escalade": "^3.1.1", +- "picocolors": "^1.0.0" +- } +- }, +- "uri-js": { +- "version": "4.4.1", +- "requires": { +- "punycode": "^2.1.0" +- } +- }, +- "utf8-byte-length": { +- "version": "1.0.5", +- "dev": true +- }, +- "util-deprecate": { +- "version": "1.0.2" +- }, +- "utila": { +- "version": "0.4.0" +- }, +- "utils-merge": { +- "version": "1.0.1", +- "dev": true +- }, +- "uuid": { +- "version": "8.3.2", +- "dev": true +- }, +- "v-mask": { +- "version": "2.3.0" +- }, +- "v8-compile-cache": { +- "version": "2.4.0", +- "dev": true +- }, +- "v8-compile-cache-lib": { +- "version": "3.0.1", +- "dev": true +- }, +- "validate-npm-package-license": { +- "version": "3.0.4", +- "dev": true, +- "requires": { +- "spdx-correct": "^3.0.0", +- "spdx-expression-parse": "^3.0.0" +- } +- }, +- "vary": { +- "version": "1.1.2", +- "dev": true +- }, +- "vue": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.27.tgz", +- "integrity": "sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==", +- "requires": { +- "@vue/compiler-dom": "3.4.27", +- "@vue/compiler-sfc": "3.4.27", +- "@vue/runtime-dom": "3.4.27", +- "@vue/server-renderer": "3.4.27", +- "@vue/shared": "3.4.27" +- }, +- "dependencies": { +- "@vue/compiler-core": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.27.tgz", +- "integrity": "sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==", +- "requires": { +- "@babel/parser": "^7.24.4", +- "@vue/shared": "3.4.27", +- "entities": "^4.5.0", +- "estree-walker": "^2.0.2", +- "source-map-js": "^1.2.0" +- } +- }, +- "@vue/compiler-dom": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz", +- "integrity": "sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==", +- "requires": { +- "@vue/compiler-core": "3.4.27", +- "@vue/shared": "3.4.27" +- } +- }, +- "@vue/compiler-sfc": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.27.tgz", +- "integrity": "sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==", +- "requires": { +- "@babel/parser": "^7.24.4", +- "@vue/compiler-core": "3.4.27", +- "@vue/compiler-dom": "3.4.27", +- "@vue/compiler-ssr": "3.4.27", +- "@vue/shared": "3.4.27", +- "estree-walker": "^2.0.2", +- "magic-string": "^0.30.10", +- "postcss": "^8.4.38", +- "source-map-js": "^1.2.0" +- } +- }, +- "@vue/compiler-ssr": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz", +- "integrity": "sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==", +- "requires": { +- "@vue/compiler-dom": "3.4.27", +- "@vue/shared": "3.4.27" +- } +- }, +- "@vue/shared": { +- "version": "3.4.27", +- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", +- "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" +- }, +- "magic-string": { +- "version": "0.30.10", +- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", +- "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", +- "requires": { +- "@jridgewell/sourcemap-codec": "^1.4.15" +- } +- } +- } +- }, +- "vue-eslint-parser": { +- "version": "8.3.0", +- "dev": true, +- "requires": { +- "debug": "^4.3.2", +- "eslint-scope": "^7.0.0", +- "eslint-visitor-keys": "^3.1.0", +- "espree": "^9.0.0", +- "esquery": "^1.4.0", +- "lodash": "^4.17.21", +- "semver": "^7.3.5" +- }, +- "dependencies": { +- "acorn": { +- "version": "8.11.2", +- "dev": true +- }, +- "eslint-scope": { +- "version": "7.2.2", +- "dev": true, +- "requires": { +- "esrecurse": "^4.3.0", +- "estraverse": "^5.2.0" +- } +- }, +- "eslint-visitor-keys": { +- "version": "3.4.3", +- "dev": true +- }, +- "espree": { +- "version": "9.6.1", +- "dev": true, +- "requires": { +- "acorn": "^8.9.0", +- "acorn-jsx": "^5.3.2", +- "eslint-visitor-keys": "^3.4.1" +- } +- }, +- "estraverse": { +- "version": "5.3.0", +- "dev": true +- }, +- "lru-cache": { +- "version": "6.0.0", +- "dev": true, +- "requires": { +- "yallist": "^4.0.0" +- } +- }, +- "semver": { +- "version": "7.5.4", +- "dev": true, +- "requires": { +- "lru-cache": "^6.0.0" +- } +- }, +- "yallist": { +- "version": "4.0.0", +- "dev": true +- } +- } +- }, +- "vue-i18n": { +- "version": "9.13.1", +- "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.13.1.tgz", +- "integrity": "sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==", +- "requires": { +- "@intlify/core-base": "9.13.1", +- "@intlify/shared": "9.13.1", +- "@vue/devtools-api": "^6.5.0" +- } +- }, +- "vue-loader": { +- "version": "16.8.3", +- "requires": { +- "chalk": "^4.1.0", +- "hash-sum": "^2.0.0", +- "loader-utils": "^2.0.0" +- } +- }, +- "vue-resize": { +- "version": "2.0.0-alpha.1", +- "requires": {} +- }, +- "vuedraggable": { +- "version": "4.1.0", +- "requires": { +- "sortablejs": "1.14.0" ++ "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, +- "watchpack": { +- "version": "2.4.1", +- "requires": { +- "glob-to-regexp": "^0.4.1", +- "graceful-fs": "^4.1.2" ++ "node_modules/webpack-cli/node_modules/get-stream": { ++ "version": "6.0.1", ++ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", ++ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", ++ "license": "MIT", ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "wbuf": { +- "version": "1.7.3", +- "dev": true, +- "requires": { +- "minimalistic-assert": "^1.0.0" ++ "node_modules/webpack-cli/node_modules/human-signals": { ++ "version": "2.1.0", ++ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", ++ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", ++ "license": "Apache-2.0", ++ "engines": { ++ "node": ">=10.17.0" + } + }, +- "webidl-conversions": { +- "version": "3.0.1", +- "dev": true +- }, +- "webpack": { +- "version": "5.91.0", +- "requires": { +- "@types/eslint-scope": "^3.7.3", +- "@types/estree": "^1.0.5", +- "@webassemblyjs/ast": "^1.12.1", +- "@webassemblyjs/wasm-edit": "^1.12.1", +- "@webassemblyjs/wasm-parser": "^1.12.1", +- "acorn": "^8.7.1", +- "acorn-import-assertions": "^1.9.0", +- "browserslist": "^4.21.10", +- "chrome-trace-event": "^1.0.2", +- "enhanced-resolve": "^5.16.0", +- "es-module-lexer": "^1.2.1", +- "eslint-scope": "5.1.1", +- "events": "^3.2.0", +- "glob-to-regexp": "^0.4.1", +- "graceful-fs": "^4.2.11", +- "json-parse-even-better-errors": "^2.3.1", +- "loader-runner": "^4.2.0", +- "mime-types": "^2.1.27", +- "neo-async": "^2.6.2", +- "schema-utils": "^3.2.0", +- "tapable": "^2.1.1", +- "terser-webpack-plugin": "^5.3.10", +- "watchpack": "^2.4.1", +- "webpack-sources": "^3.2.3" ++ "node_modules/webpack-cli/node_modules/is-stream": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", ++ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", ++ "license": "MIT", ++ "engines": { ++ "node": ">=8" + }, +- "dependencies": { +- "acorn": { +- "version": "8.11.2" +- }, +- "acorn-import-assertions": { +- "version": "1.9.0", +- "requires": {} +- }, +- "schema-utils": { +- "version": "3.3.0", +- "requires": { +- "@types/json-schema": "^7.0.8", +- "ajv": "^6.12.5", +- "ajv-keywords": "^3.5.2" +- } +- } ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" + } + }, +- "webpack-cli": { +- "version": "4.9.2", +- "requires": { +- "@discoveryjs/json-ext": "^0.5.0", +- "@webpack-cli/configtest": "^1.1.1", +- "@webpack-cli/info": "^1.4.1", +- "@webpack-cli/serve": "^1.6.1", +- "colorette": "^2.0.14", +- "commander": "^7.0.0", +- "execa": "^5.0.0", +- "fastest-levenshtein": "^1.0.12", +- "import-local": "^3.0.2", +- "interpret": "^2.2.0", +- "rechoir": "^0.7.0", +- "webpack-merge": "^5.7.3" +- }, ++ "node_modules/webpack-cli/node_modules/npm-run-path": { ++ "version": "4.0.1", ++ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", ++ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", ++ "license": "MIT", + "dependencies": { +- "commander": { +- "version": "7.2.0" +- } ++ "path-key": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=8" ++ } ++ }, ++ "node_modules/webpack-cli/node_modules/signal-exit": { ++ "version": "3.0.7", ++ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", ++ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", ++ "license": "ISC" ++ }, ++ "node_modules/webpack-cli/node_modules/strip-final-newline": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", ++ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", ++ "license": "MIT", ++ "engines": { ++ "node": ">=6" + } + }, +- "webpack-dev-middleware": { ++ "node_modules/webpack-dev-middleware": { + "version": "5.3.4", ++ "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", ++ "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "dev": true, +- "requires": { ++ "license": "MIT", ++ "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, ++ "engines": { ++ "node": ">= 12.13.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/webpack" ++ }, ++ "peerDependencies": { ++ "webpack": "^4.0.0 || ^5.0.0" ++ } ++ }, ++ "node_modules/webpack-dev-middleware/node_modules/schema-utils": { ++ "version": "4.2.0", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", ++ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", ++ "dev": true, ++ "license": "MIT", + "dependencies": { +- "ajv": { +- "version": "8.12.0", +- "dev": true, +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- } +- }, +- "ajv-keywords": { +- "version": "5.1.0", +- "dev": true, +- "requires": { +- "fast-deep-equal": "^3.1.3" +- } +- }, +- "json-schema-traverse": { +- "version": "1.0.0", +- "dev": true +- }, +- "schema-utils": { +- "version": "4.2.0", +- "dev": true, +- "requires": { +- "@types/json-schema": "^7.0.9", +- "ajv": "^8.9.0", +- "ajv-formats": "^2.1.1", +- "ajv-keywords": "^5.1.0" +- } +- } ++ "@types/json-schema": "^7.0.9", ++ "ajv": "^8.9.0", ++ "ajv-formats": "^2.1.1", ++ "ajv-keywords": "^5.1.0" ++ }, ++ "engines": { ++ "node": ">= 12.13.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/webpack" + } + }, +- "webpack-dev-server": { ++ "node_modules/webpack-dev-server": { + "version": "4.11.1", ++ "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", ++ "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", + "dev": true, +- "requires": { ++ "license": "MIT", ++ "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", +@@ -27076,325 +20158,557 @@ + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, +- "dependencies": { +- "ajv": { +- "version": "8.12.0", +- "dev": true, +- "requires": { +- "fast-deep-equal": "^3.1.1", +- "json-schema-traverse": "^1.0.0", +- "require-from-string": "^2.0.2", +- "uri-js": "^4.2.2" +- } +- }, +- "ajv-keywords": { +- "version": "5.1.0", +- "dev": true, +- "requires": { +- "fast-deep-equal": "^3.1.3" +- } +- }, +- "json-schema-traverse": { +- "version": "1.0.0", +- "dev": true +- }, +- "schema-utils": { +- "version": "4.2.0", +- "dev": true, +- "requires": { +- "@types/json-schema": "^7.0.9", +- "ajv": "^8.9.0", +- "ajv-formats": "^2.1.1", +- "ajv-keywords": "^5.1.0" +- } ++ "bin": { ++ "webpack-dev-server": "bin/webpack-dev-server.js" ++ }, ++ "engines": { ++ "node": ">= 12.13.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/webpack" ++ }, ++ "peerDependencies": { ++ "webpack": "^4.37.0 || ^5.0.0" ++ }, ++ "peerDependenciesMeta": { ++ "webpack-cli": { ++ "optional": true + } + } + }, +- "webpack-merge": { ++ "node_modules/webpack-dev-server/node_modules/schema-utils": { ++ "version": "4.2.0", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", ++ "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", ++ "dev": true, ++ "license": "MIT", ++ "dependencies": { ++ "@types/json-schema": "^7.0.9", ++ "ajv": "^8.9.0", ++ "ajv-formats": "^2.1.1", ++ "ajv-keywords": "^5.1.0" ++ }, ++ "engines": { ++ "node": ">= 12.13.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/webpack" ++ } ++ }, ++ "node_modules/webpack-merge": { + "version": "5.10.0", +- "requires": { ++ "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", ++ "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", ++ "license": "MIT", ++ "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" ++ }, ++ "engines": { ++ "node": ">=10.0.0" ++ } ++ }, ++ "node_modules/webpack-sources": { ++ "version": "3.2.3", ++ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", ++ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", ++ "license": "MIT", ++ "engines": { ++ "node": ">=10.13.0" ++ } ++ }, ++ "node_modules/webpack/node_modules/acorn": { ++ "version": "8.13.0", ++ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", ++ "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", ++ "license": "MIT", ++ "bin": { ++ "acorn": "bin/acorn" ++ }, ++ "engines": { ++ "node": ">=0.4.0" ++ } ++ }, ++ "node_modules/webpack/node_modules/acorn-import-attributes": { ++ "version": "1.9.5", ++ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", ++ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", ++ "license": "MIT", ++ "peerDependencies": { ++ "acorn": "^8" ++ } ++ }, ++ "node_modules/webpack/node_modules/ajv": { ++ "version": "6.12.6", ++ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", ++ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", ++ "license": "MIT", ++ "dependencies": { ++ "fast-deep-equal": "^3.1.1", ++ "fast-json-stable-stringify": "^2.0.0", ++ "json-schema-traverse": "^0.4.1", ++ "uri-js": "^4.2.2" ++ }, ++ "funding": { ++ "type": "github", ++ "url": "https://github.com/sponsors/epoberezkin" ++ } ++ }, ++ "node_modules/webpack/node_modules/ajv-keywords": { ++ "version": "3.5.2", ++ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", ++ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", ++ "license": "MIT", ++ "peerDependencies": { ++ "ajv": "^6.9.1" + } + }, +- "webpack-sources": { +- "version": "3.2.3" ++ "node_modules/webpack/node_modules/json-schema-traverse": { ++ "version": "0.4.1", ++ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", ++ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", ++ "license": "MIT" ++ }, ++ "node_modules/webpack/node_modules/schema-utils": { ++ "version": "3.3.0", ++ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", ++ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", ++ "license": "MIT", ++ "dependencies": { ++ "@types/json-schema": "^7.0.8", ++ "ajv": "^6.12.5", ++ "ajv-keywords": "^3.5.2" ++ }, ++ "engines": { ++ "node": ">= 10.13.0" ++ }, ++ "funding": { ++ "type": "opencollective", ++ "url": "https://opencollective.com/webpack" ++ } + }, +- "websocket-driver": { ++ "node_modules/websocket-driver": { + "version": "0.7.4", ++ "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", ++ "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, +- "requires": { ++ "license": "Apache-2.0", ++ "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" ++ }, ++ "engines": { ++ "node": ">=0.8.0" + } + }, +- "websocket-extensions": { ++ "node_modules/websocket-extensions": { + "version": "0.1.4", +- "dev": true ++ "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", ++ "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", ++ "dev": true, ++ "license": "Apache-2.0", ++ "engines": { ++ "node": ">=0.8.0" ++ } + }, +- "whatwg-url": { ++ "node_modules/whatwg-url": { + "version": "5.0.0", ++ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", ++ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, +- "requires": { ++ "license": "MIT", ++ "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, +- "which": { ++ "node_modules/which": { + "version": "2.0.2", +- "requires": { ++ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", ++ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", ++ "license": "ISC", ++ "dependencies": { + "isexe": "^2.0.0" ++ }, ++ "bin": { ++ "node-which": "bin/node-which" ++ }, ++ "engines": { ++ "node": ">= 8" + } + }, +- "which-boxed-primitive": { ++ "node_modules/which-boxed-primitive": { + "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", ++ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, +- "requires": { ++ "license": "MIT", ++ "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "which-module": { ++ "node_modules/which-module": { + "version": "2.0.1", +- "dev": true ++ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", ++ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", ++ "dev": true, ++ "license": "ISC" + }, +- "which-typed-array": { +- "version": "1.1.13", ++ "node_modules/which-typed-array": { ++ "version": "1.1.15", ++ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", ++ "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, +- "requires": { +- "available-typed-arrays": "^1.0.5", +- "call-bind": "^1.0.4", ++ "license": "MIT", ++ "dependencies": { ++ "available-typed-arrays": "^1.0.7", ++ "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", +- "has-tostringtag": "^1.0.0" ++ "has-tostringtag": "^1.0.2" ++ }, ++ "engines": { ++ "node": ">= 0.4" ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/ljharb" + } + }, +- "wildcard": { +- "version": "2.0.1" ++ "node_modules/wildcard": { ++ "version": "2.0.1", ++ "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", ++ "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", ++ "license": "MIT" ++ }, ++ "node_modules/word-wrap": { ++ "version": "1.2.5", ++ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", ++ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", ++ "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": ">=0.10.0" ++ } + }, +- "wordwrap": { ++ "node_modules/wordwrap": { + "version": "1.0.0", +- "dev": true ++ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", ++ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", ++ "dev": true, ++ "license": "MIT" + }, +- "wrap-ansi": { ++ "node_modules/wrap-ansi": { + "version": "3.0.1", +- "requires": { ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", ++ "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", ++ "license": "MIT", ++ "dependencies": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + }, +- "dependencies": { +- "ansi-regex": { +- "version": "3.0.1" +- }, +- "is-fullwidth-code-point": { +- "version": "2.0.0" +- }, +- "string-width": { +- "version": "2.1.1", +- "requires": { +- "is-fullwidth-code-point": "^2.0.0", +- "strip-ansi": "^4.0.0" +- } +- }, +- "strip-ansi": { +- "version": "4.0.0", +- "requires": { +- "ansi-regex": "^3.0.0" +- } +- } ++ "engines": { ++ "node": ">=4" + } + }, +- "wrap-ansi-cjs": { +- "version": "npm:wrap-ansi@7.0.0", ++ "node_modules/wrap-ansi-cjs": { ++ "name": "wrap-ansi", ++ "version": "7.0.0", ++ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", ++ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, +- "requires": { ++ "license": "MIT", ++ "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" ++ }, ++ "engines": { ++ "node": ">=10" ++ }, ++ "funding": { ++ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" ++ } ++ }, ++ "node_modules/wrap-ansi/node_modules/ansi-regex": { ++ "version": "3.0.1", ++ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", ++ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", ++ "license": "MIT", ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", ++ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", ++ "license": "MIT", ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/wrap-ansi/node_modules/string-width": { ++ "version": "2.1.1", ++ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", ++ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", ++ "license": "MIT", ++ "dependencies": { ++ "is-fullwidth-code-point": "^2.0.0", ++ "strip-ansi": "^4.0.0" ++ }, ++ "engines": { ++ "node": ">=4" ++ } ++ }, ++ "node_modules/wrap-ansi/node_modules/strip-ansi": { ++ "version": "4.0.0", ++ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", ++ "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", ++ "license": "MIT", ++ "dependencies": { ++ "ansi-regex": "^3.0.0" ++ }, ++ "engines": { ++ "node": ">=4" + } + }, +- "wrappy": { +- "version": "1.0.2" ++ "node_modules/wrappy": { ++ "version": "1.0.2", ++ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", ++ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", ++ "license": "ISC" + }, +- "write-file-atomic": { ++ "node_modules/write-file-atomic": { + "version": "5.0.1", ++ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", ++ "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dev": true, +- "requires": { ++ "license": "ISC", ++ "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, +- "dependencies": { +- "signal-exit": { +- "version": "4.1.0", +- "dev": true +- } ++ "engines": { ++ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, +- "ws": { +- "version": "8.14.2", ++ "node_modules/ws": { ++ "version": "8.18.0", ++ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", ++ "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, +- "requires": {} ++ "license": "MIT", ++ "engines": { ++ "node": ">=10.0.0" ++ }, ++ "peerDependencies": { ++ "bufferutil": "^4.0.1", ++ "utf-8-validate": ">=5.0.2" ++ }, ++ "peerDependenciesMeta": { ++ "bufferutil": { ++ "optional": true ++ }, ++ "utf-8-validate": { ++ "optional": true ++ } ++ } + }, +- "xmlbuilder": { ++ "node_modules/xmlbuilder": { + "version": "15.1.1", +- "dev": true ++ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", ++ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", ++ "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": ">=8.0" ++ } + }, +- "xtend": { +- "version": "4.0.2" ++ "node_modules/xtend": { ++ "version": "4.0.2", ++ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", ++ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", ++ "license": "MIT", ++ "engines": { ++ "node": ">=0.4" ++ } + }, +- "xvfb-maybe": { ++ "node_modules/xvfb-maybe": { + "version": "0.2.1", ++ "resolved": "https://registry.npmjs.org/xvfb-maybe/-/xvfb-maybe-0.2.1.tgz", ++ "integrity": "sha512-9IyRz3l6Qyhl6LvnGRF5jMPB4oBEepQnuzvVAFTynP6ACLLSevqigICJ9d/+ofl29m2daeaVBChnPYUnaeJ7yA==", + "dev": true, +- "requires": { ++ "license": "MIT", ++ "dependencies": { + "debug": "^2.2.0", + "which": "^1.2.4" + }, ++ "bin": { ++ "xvfb-maybe": "src/xvfb-maybe.js" ++ } ++ }, ++ "node_modules/xvfb-maybe/node_modules/debug": { ++ "version": "2.6.9", ++ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", ++ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", ++ "dev": true, ++ "license": "MIT", + "dependencies": { +- "debug": { +- "version": "2.6.9", +- "dev": true, +- "requires": { +- "ms": "2.0.0" +- } +- }, +- "ms": { +- "version": "2.0.0", +- "dev": true +- }, +- "which": { +- "version": "1.3.1", +- "dev": true, +- "requires": { +- "isexe": "^2.0.0" +- } +- } ++ "ms": "2.0.0" + } + }, +- "y18n": { +- "version": "4.0.3", +- "dev": true ++ "node_modules/xvfb-maybe/node_modules/ms": { ++ "version": "2.0.0", ++ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", ++ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", ++ "dev": true, ++ "license": "MIT" ++ }, ++ "node_modules/xvfb-maybe/node_modules/which": { ++ "version": "1.3.1", ++ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", ++ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", ++ "dev": true, ++ "license": "ISC", ++ "dependencies": { ++ "isexe": "^2.0.0" ++ }, ++ "bin": { ++ "which": "bin/which" ++ } ++ }, ++ "node_modules/y18n": { ++ "version": "5.0.8", ++ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", ++ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", ++ "dev": true, ++ "license": "ISC", ++ "engines": { ++ "node": ">=10" ++ } + }, +- "yaku": { +- "version": "0.16.7" ++ "node_modules/yaku": { ++ "version": "0.16.7", ++ "resolved": "https://registry.npmjs.org/yaku/-/yaku-0.16.7.tgz", ++ "integrity": "sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==", ++ "license": "MIT" + }, +- "yallist": { +- "version": "3.1.1" ++ "node_modules/yallist": { ++ "version": "3.1.1", ++ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", ++ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", ++ "license": "ISC" + }, +- "yargs": { +- "version": "15.4.1", ++ "node_modules/yargs": { ++ "version": "17.7.2", ++ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", ++ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, +- "requires": { +- "cliui": "^6.0.0", +- "decamelize": "^1.2.0", +- "find-up": "^4.1.0", +- "get-caller-file": "^2.0.1", ++ "license": "MIT", ++ "dependencies": { ++ "cliui": "^8.0.1", ++ "escalade": "^3.1.1", ++ "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", +- "require-main-filename": "^2.0.0", +- "set-blocking": "^2.0.0", +- "string-width": "^4.2.0", +- "which-module": "^2.0.0", +- "y18n": "^4.0.0", +- "yargs-parser": "^18.1.2" ++ "string-width": "^4.2.3", ++ "y18n": "^5.0.5", ++ "yargs-parser": "^21.1.1" + }, +- "dependencies": { +- "find-up": { +- "version": "4.1.0", +- "dev": true, +- "requires": { +- "locate-path": "^5.0.0", +- "path-exists": "^4.0.0" +- } +- }, +- "locate-path": { +- "version": "5.0.0", +- "dev": true, +- "requires": { +- "p-locate": "^4.1.0" +- } +- }, +- "p-limit": { +- "version": "2.3.0", +- "dev": true, +- "requires": { +- "p-try": "^2.0.0" +- } +- }, +- "p-locate": { +- "version": "4.1.0", +- "dev": true, +- "requires": { +- "p-limit": "^2.2.0" +- } +- }, +- "p-try": { +- "version": "2.2.0", +- "dev": true +- }, +- "path-exists": { +- "version": "4.0.0", +- "dev": true +- }, +- "yargs-parser": { +- "version": "18.1.3", +- "dev": true, +- "requires": { +- "camelcase": "^5.0.0", +- "decamelize": "^1.2.0" +- } +- } ++ "engines": { + "node": ">=12" } }, - "node_modules/yauzl": { +- "yargs-parser": { +- "version": "20.2.9", +- "dev": true ++ "node_modules/yargs-parser": { ++ "version": "21.1.1", ++ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", ++ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", ++ "dev": true, ++ "license": "ISC", ++ "engines": { ++ "node": ">=12" ++ } + }, +- "yauzl": { ++ "node_modules/yauzl": { "version": "2.10.0", -- "license": "MIT", +- "requires": { + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dependencies": { ++ "license": "MIT", ++ "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" -@@ -16850,18 +19018,20 @@ - }, - "node_modules/yn": { - "version": "3.1.1", -+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", -+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, -- "license": "MIT", - "engines": { - "node": ">=6" } }, - "node_modules/yocto-queue": { +- "yn": { ++ "node_modules/yn": { + "version": "3.1.1", +- "dev": true ++ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", ++ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", ++ "dev": true, ++ "license": "MIT", ++ "engines": { ++ "node": ">=6" ++ } + }, +- "yocto-queue": { - "version": "0.1.0", +- "dev": true ++ "node_modules/yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", - "dev": true, -- "license": "MIT", - "engines": { -- "node": ">=10" ++ "dev": true, ++ "license": "MIT", ++ "engines": { + "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" -@@ -16869,8 +19039,9 @@ ++ }, ++ "funding": { ++ "url": "https://github.com/sponsors/sindresorhus" ++ } }, - "node_modules/zip-stream": { +- "zip-stream": { ++ "node_modules/zip-stream": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz", + "integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==", "dev": true, -- "license": "MIT", ++ "license": "MIT", "peer": true, - "dependencies": { +- "requires": { ++ "dependencies": { "archiver-utils": "^3.0.4", -@@ -16883,8 +19054,9 @@ - }, - "node_modules/zip-stream/node_modules/archiver-utils": { - "version": "3.0.4", + "compress-commons": "^4.1.2", + "readable-stream": "^3.6.0" + }, ++ "engines": { ++ "node": ">= 10" ++ } ++ }, ++ "node_modules/zip-stream/node_modules/archiver-utils": { ++ "version": "3.0.4", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz", + "integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==", - "dev": true, -- "license": "MIT", - "peer": true, ++ "dev": true, ++ "license": "MIT", ++ "peer": true, "dependencies": { - "glob": "^7.2.3", - +- "archiver-utils": { +- "version": "3.0.4", +- "dev": true, +- "peer": true, +- "requires": { +- "glob": "^7.2.3", +- "graceful-fs": "^4.2.0", +- "lazystream": "^1.0.0", +- "lodash.defaults": "^4.2.0", +- "lodash.difference": "^4.5.0", +- "lodash.flatten": "^4.4.0", +- "lodash.isplainobject": "^4.0.6", +- "lodash.union": "^4.6.0", +- "normalize-path": "^3.0.0", +- "readable-stream": "^3.6.0" +- } +- } ++ "glob": "^7.2.3", ++ "graceful-fs": "^4.2.0", ++ "lazystream": "^1.0.0", ++ "lodash.defaults": "^4.2.0", ++ "lodash.difference": "^4.5.0", ++ "lodash.flatten": "^4.4.0", ++ "lodash.isplainobject": "^4.0.6", ++ "lodash.union": "^4.6.0", ++ "normalize-path": "^3.0.0", ++ "readable-stream": "^3.6.0" ++ }, ++ "engines": { ++ "node": ">= 10" + } + } + } diff --git a/pkgs/by-name/an/antares/package.nix b/pkgs/by-name/an/antares/package.nix index c433cab7ebcc..eea89f2ff8dd 100644 --- a/pkgs/by-name/an/antares/package.nix +++ b/pkgs/by-name/an/antares/package.nix @@ -8,20 +8,21 @@ buildNpmPackage rec { pname = "antares"; - version = "0.7.28"; + version = "0.7.29"; src = fetchFromGitHub { owner = "antares-sql"; repo = "antares"; rev = "v${version}"; - hash = "sha256-nEI1G0A1c+xjALbIcItzh4CFxAeQPOD8h+Bs0aYnEfU="; + hash = "sha256-3zgr3Eefx3WDUW9/1NOaneUbFy3GTnJ3tGgivtW1K/g="; }; - npmDepsHash = "sha256-lSkZTa2zt8BeucOih8XjQ7QW/tg34umIRe4a4DDBW34="; + npmDepsHash = "sha256-WJ5HVVa4rEOsvr52L/OGk+vlxRiKLJTxWmUnpN1FnbY="; patches = [ - # In version 0.7.28, package-lock is not updated properly so this patch update it to be able to build the package + # Since version 0.7.28, package-lock is not updated properly so this patch update it to be able to build the package # This patch will probably be removed in the next version + # If it does not build without it, you just need to do a npm update in the antares project and copy the patch ./npm-lock.patch ]; From 9e79075ad9f6533d934b9e4ae834a88f2ff39906 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 18 Oct 2024 08:21:07 +0200 Subject: [PATCH 38/99] python312Packages.submitit: init at 1.5.2 --- .../python-modules/submitit/default.nix | 62 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 64 insertions(+) create mode 100644 pkgs/development/python-modules/submitit/default.nix diff --git a/pkgs/development/python-modules/submitit/default.nix b/pkgs/development/python-modules/submitit/default.nix new file mode 100644 index 000000000000..eb39da57d935 --- /dev/null +++ b/pkgs/development/python-modules/submitit/default.nix @@ -0,0 +1,62 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + cloudpickle, + flit-core, + typing-extensions, + pytestCheckHook, + pytest-asyncio, +}: + +buildPythonPackage rec { + pname = "submitit"; + version = "1.5.2"; + pyproject = true; + + src = fetchFromGitHub { + owner = "facebookincubator"; + repo = "submitit"; + rev = "refs/tags/${version}"; + hash = "sha256-PDQLzqQjoBAZM9FKsoRby26Pbh4nik3SltIHUw/xWcY="; + }; + + build-system = [ + setuptools + ]; + + dependencies = [ + cloudpickle + flit-core + typing-extensions + ]; + + nativeCheckInputs = [ + pytestCheckHook + pytest-asyncio + ]; + + pythonImportsCheck = [ + "submitit" + ]; + + disabledTests = [ + # These tests are broken + "test_snapshot" + "test_snapshot_excludes" + "test_job_use_snapshot_cwd" + "test_job_use_snapshot_modules" + "test_nested_pickling" + "test_setup" + "test_requeuing" + ]; + + meta = { + changelog = "https://github.com/facebookincubator/submitit/releases/tag/${version}"; + description = "Python 3.8+ toolbox for submitting jobs to Slurm"; + homepage = "https://github.com/facebookincubator/submitit"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drupol ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f9459619033f..064264aa5a10 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15144,6 +15144,8 @@ self: super: with self; { subliminal = callPackage ../development/python-modules/subliminal { }; + submitit = callPackage ../development/python-modules/submitit { }; + subprocess-tee = callPackage ../development/python-modules/subprocess-tee { }; subunit = callPackage ../development/python-modules/subunit { From cf5c8c3369f01fd3365a1ec8afecd4cf1ea2a08d Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 18 Oct 2024 09:06:00 +0200 Subject: [PATCH 39/99] python312Packages.monkeytype: init at 23.3.0 --- .../python-modules/monkeytype/default.nix | 58 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 60 insertions(+) create mode 100644 pkgs/development/python-modules/monkeytype/default.nix diff --git a/pkgs/development/python-modules/monkeytype/default.nix b/pkgs/development/python-modules/monkeytype/default.nix new file mode 100644 index 000000000000..1f24608c8d17 --- /dev/null +++ b/pkgs/development/python-modules/monkeytype/default.nix @@ -0,0 +1,58 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + libcst, + mypy-extensions, + pytestCheckHook, +}: + +buildPythonPackage rec { + pname = "monkeytype"; + version = "23.3.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "Instagram"; + repo = "MonkeyType"; + rev = "refs/tags/v${version}"; + hash = "sha256-DQ/3go53+0PQkhZcL2dX8MI/z4Iq7kTYd5EbacMNxT4="; + }; + + build-system = [ + setuptools + ]; + + dependencies = [ + libcst + mypy-extensions + ]; + + pythonImportsCheck = [ + "monkeytype" + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + disabledTests = [ + # Disable broken tests + "test_excludes_site_packages" + "test_callee_throws_recovers" + "test_nested_callee_throws_recovers" + "test_caller_handles_callee_exception" + "test_generator_trace" + "test_return_none" + "test_access_property" + ]; + + meta = { + description = "Python library that generates static type annotations by collecting runtime types"; + homepage = "https://github.com/Instagram/MonkeyType/"; + changelog = "https://github.com/Instagram/MonkeyType/blob/${src.rev}/CHANGES.rst"; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ drupol ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 064264aa5a10..65af3652b187 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8149,6 +8149,8 @@ self: super: with self; { monkeyhex = callPackage ../development/python-modules/monkeyhex { }; + monkeytype = callPackage ../development/python-modules/monkeytype { }; + monosat = pkgs.monosat.python { inherit buildPythonPackage; inherit (self) cython pytestCheckHook; From 082c42559391d57f278195c4da91347ed7c8cfe7 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sat, 19 Oct 2024 13:33:01 -0400 Subject: [PATCH 40/99] sherpa: 2.2.15 -> 2.2.16 --- pkgs/applications/science/physics/sherpa/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/physics/sherpa/default.nix b/pkgs/applications/science/physics/sherpa/default.nix index 21a5ee7ec234..7701ca0c72e5 100644 --- a/pkgs/applications/science/physics/sherpa/default.nix +++ b/pkgs/applications/science/physics/sherpa/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "sherpa"; - version = "2.2.15"; + version = "2.2.16"; src = fetchurl { url = "https://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz"; - sha256 = "sha256-3zvLa1k/bm7uOWKUsTyQM39cPBXJJlF1OgPgznl1hks="; + sha256 = "sha256-AntSN5BhtJFuDBoOFvrzoCr/W4SnX5CeAXiTcz9MjUs="; }; postPatch = lib.optionalString (stdenv.hostPlatform.libc == "glibc") '' From 393c1b3691d28188496450e727c3cde064bbe2c8 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Thu, 22 Aug 2024 15:43:27 -0400 Subject: [PATCH 41/99] yoda: 1.9.10 -> 2.0.1 --- .../physics/fastnlo-toolkit/default.nix | 5 + .../fastnlo-toolkit/yoda2_support.patch | 247 ++++++++++++++++++ .../libraries/physics/yoda/default.nix | 14 +- 3 files changed, 261 insertions(+), 5 deletions(-) create mode 100644 pkgs/development/libraries/physics/fastnlo-toolkit/yoda2_support.patch diff --git a/pkgs/development/libraries/physics/fastnlo-toolkit/default.nix b/pkgs/development/libraries/physics/fastnlo-toolkit/default.nix index 3c781689bbf8..820afcbd8f68 100644 --- a/pkgs/development/libraries/physics/fastnlo-toolkit/default.nix +++ b/pkgs/development/libraries/physics/fastnlo-toolkit/default.nix @@ -22,6 +22,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-7aIMYCOkHC/17CHYiEfrxvtSJxTDivrS7BQ32cGiEy0="; }; + patches = [ + # Compatibility with YODA 2.x + ./yoda2_support.patch + ]; + buildInputs = [ boost gfortran diff --git a/pkgs/development/libraries/physics/fastnlo-toolkit/yoda2_support.patch b/pkgs/development/libraries/physics/fastnlo-toolkit/yoda2_support.patch new file mode 100644 index 000000000000..d9f4aaa5159f --- /dev/null +++ b/pkgs/development/libraries/physics/fastnlo-toolkit/yoda2_support.patch @@ -0,0 +1,247 @@ +diff --git a/src/fnlo-tk-statunc.cc b/src/fnlo-tk-statunc.cc +index 62d1eec..ad62cac 100644 +--- a/src/fnlo-tk-statunc.cc ++++ b/src/fnlo-tk-statunc.cc +@@ -30,7 +30,16 @@ + #include "fastnlotk/fastNLOLHAPDF.h" + #include "fastnlotk/speaker.h" + #ifdef WITH_YODA ++#if defined __has_include ++#if !__has_include("YODA/WriterAIDA.h") ++#define WITH_YODA2 ++#endif ++#endif ++#ifdef WITH_YODA2 ++#include "YODA/Scatter.h" ++#else + #include "YODA/Scatter2D.h" ++#endif + #include "YODA/WriterYODA.h" + #endif + +@@ -493,28 +502,25 @@ int main(int argc, char** argv) { + + //! --- 1D + if (NDim == 1) { +- //! Vectors to fill 2D scatter plot +- vector < double > x; +- vector < double > y; +- vector < double > exminus; +- vector < double > explus; +- vector < double > eyminus; +- vector < double > eyplus; ++ //! Vector to fill 2D scatter plot ++ vector points; + //! Loop over bins in outer (1st) dimension + for (unsigned int k =0 ; k x; +- vector < double > y; +- vector < double > exminus; +- vector < double > explus; +- vector < double > eyminus; +- vector < double > eyplus; ++ //! Vector to fill 2D scatter plot ++ vector points; + //! Loop over bins in inner (2nd) dimension + NDimBins[1] = fnlo.GetNDim1Bins(j); + for (unsigned int k = 0; k x; +- vector < double > y; +- vector < double > exminus; +- vector < double > explus; +- vector < double > eyminus; +- vector < double > eyplus; ++ //! Vector to fill 2D scatter plot ++ vector < YODA::Point2D > points; + //! Loop over bins in outer (1st) dimension + for (unsigned int k =0 ; k x; +- vector < double > y; +- vector < double > exminus; +- vector < double > explus; +- vector < double > eyminus; +- vector < double > eyplus; ++ vector < YODA::Point2D > points; + //! Loop over bins in inner (2nd) dimension + NDimBins[1] = fnlo->GetNDim1Bins(j); + for (unsigned int k = 0; kGetNDim1Bins(j); + for (unsigned int k = 0; k x; +- vector < double > y; +- vector < double > exminus; +- vector < double > explus; +- vector < double > eyminus; +- vector < double > eyplus; ++ vector < YODA::Point2D > points; + //! Loop over bins in inner (3rd) dimension + NDimBins[2] = fnlo->GetNDim2Bins(j,k); + for (unsigned int l = 0; l Date: Thu, 22 Aug 2024 19:48:13 -0400 Subject: [PATCH 42/99] rivet: 3.1.10 -> 4.0.1 --- .../science/physics/sherpa/default.nix | 4 +- .../libraries/physics/rivet/default.nix | 54 +++++++++---------- .../libraries/physics/thepeg/default.nix | 15 ++++-- pkgs/top-level/all-packages.nix | 1 - 4 files changed, 41 insertions(+), 33 deletions(-) diff --git a/pkgs/applications/science/physics/sherpa/default.nix b/pkgs/applications/science/physics/sherpa/default.nix index 7701ca0c72e5..64202c1ef128 100644 --- a/pkgs/applications/science/physics/sherpa/default.nix +++ b/pkgs/applications/science/physics/sherpa/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, autoconf, gfortran, hepmc2, fastjet, lhapdf, rivet, sqlite }: +{ lib, stdenv, fetchurl, autoconf, gfortran, hepmc3, fastjet, lhapdf, rivet, sqlite }: stdenv.mkDerivation rec { pname = "sherpa"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-sqlite3=${sqlite.dev}" - "--enable-hepmc2=${hepmc2}" + "--enable-hepmc3=${hepmc3}" "--enable-fastjet=${fastjet}" "--enable-lhapdf=${lhapdf}" "--enable-rivet=${rivet}" diff --git a/pkgs/development/libraries/physics/rivet/default.nix b/pkgs/development/libraries/physics/rivet/default.nix index c8db0fb22d0e..3246d9e06ec3 100644 --- a/pkgs/development/libraries/physics/rivet/default.nix +++ b/pkgs/development/libraries/physics/rivet/default.nix @@ -1,12 +1,12 @@ -{ lib, stdenv, fetchurl, fastjet, fastjet-contrib, ghostscript, hepmc, imagemagick, less, python3, rsync, texliveBasic, yoda, which, makeWrapper }: +{ lib, stdenv, fetchurl, fastjet, fastjet-contrib, ghostscript, hdf5, hepmc3, highfive, imagemagick, less, pkg-config, python3, rsync, texliveBasic, yoda, which, makeWrapper }: stdenv.mkDerivation rec { pname = "rivet"; - version = "3.1.10"; + version = "4.0.1"; src = fetchurl { url = "https://www.hepforge.org/archive/rivet/Rivet-${version}.tar.bz2"; - hash = "sha256-RYuODfHec46ZctJLJg6qCH3xLJnU/p3uU3fUfqakmRk="; + hash = "sha256-ToaS1uilOWHHeYPra6SJPDdlzyP3BXieTYZb5Iku/3k="; }; latex = texliveBasic.withPackages (ps: with ps; [ @@ -25,43 +25,43 @@ stdenv.mkDerivation rec { xstring ]); - nativeBuildInputs = [ rsync makeWrapper ]; - buildInputs = [ hepmc imagemagick python3 latex python3.pkgs.yoda ]; - propagatedBuildInputs = [ fastjet fastjet-contrib ]; + nativeBuildInputs = [ rsync makeWrapper pkg-config ]; + buildInputs = [ hepmc3 highfive imagemagick python3 latex python3.pkgs.yoda ]; + propagatedBuildInputs = [ hdf5 fastjet fastjet-contrib ]; preConfigure = '' + substituteInPlace configure \ + --replace-fail 'if test $HEPMC_VERSION -le 310; then' 'if false; then' substituteInPlace bin/rivet-build.in \ - --replace 'num_jobs=$(getconf _NPROCESSORS_ONLN)' 'num_jobs=''${NIX_BUILD_CORES:-$(getconf _NPROCESSORS_ONLN)}' \ - --replace 'which' '"${which}/bin/which"' \ - --replace 'mycxx=' 'mycxx=${stdenv.cc}/bin/${if stdenv.cc.isClang or false then "clang++" else "g++"} #' \ - --replace 'mycxxflags="' "mycxxflags=\"$NIX_CFLAGS_COMPILE $NIX_CXXSTDLIB_COMPILE $NIX_CFLAGS_LINK " + --replace-fail 'num_jobs=$(getconf _NPROCESSORS_ONLN)' 'num_jobs=''${NIX_BUILD_CORES:-$(getconf _NPROCESSORS_ONLN)}' \ + --replace-fail 'which' '"${which}/bin/which"' \ + --replace-fail 'mycxx=' 'mycxx=${stdenv.cc}/bin/${if stdenv.cc.isClang or false then "clang++" else "g++"} #' \ + --replace-fail 'mycxxflags="' "mycxxflags=\"$NIX_CFLAGS_COMPILE $NIX_CXXSTDLIB_COMPILE $NIX_CFLAGS_LINK " ''; preInstall = '' substituteInPlace bin/make-plots \ - --replace '"which"' '"${which}/bin/which"' \ - --replace '"latex"' '"'$latex'/bin/latex"' \ - --replace '"dvips"' '"'$latex'/bin/dvips"' \ - --replace '"ps2pdf"' '"${ghostscript}/bin/ps2pdf"' \ - --replace '"ps2eps"' '"${ghostscript}/bin/ps2eps"' \ - --replace '"kpsewhich"' '"'$latex'/bin/kpsewhich"' \ - --replace '"convert"' '"${imagemagick.out}/bin/convert"' + --replace-fail '"which"' '"${which}/bin/which"' \ + --replace-fail '"latex"' '"'$latex'/bin/latex"' \ + --replace-fail '"dvips"' '"'$latex'/bin/dvips"' \ + --replace-fail '"ps2pdf"' '"${ghostscript}/bin/ps2pdf"' \ + --replace-fail '"ps2eps"' '"${ghostscript}/bin/ps2eps"' \ + --replace-fail '"kpsewhich"' '"'$latex'/bin/kpsewhich"' \ + --replace-fail '"convert"' '"${imagemagick.out}/bin/convert"' substituteInPlace bin/rivet \ - --replace '"less"' '"${less}/bin/less"' - substituteInPlace bin/rivet-mkhtml \ - --replace '"make-plots"' \"$out/bin/make-plots\" \ - --replace '"rivet-cmphistos"' \"$out/bin/rivet-cmphistos\" \ - --replace 'ch_cmd = [sys.executable, os.path.join(os.path.dirname(__file__),' 'ch_cmd = [(' + --replace-fail '"less"' '"${less}/bin/less"' + substituteInPlace bin/rivet-mkhtml-tex \ + --replace-fail '"make-plots"' \"$out/bin/make-plots\" \ + --replace-fail '"rivet-cmphistos"' \"$out/bin/rivet-cmphistos\" \ + --replace-fail 'ch_cmd = [sys.executable, os.path.join(os.path.dirname(__file__),' 'ch_cmd = [(' ''; configureFlags = [ "--with-fastjet=${fastjet}" "--with-yoda=${yoda}" - ] ++ (if lib.versions.major hepmc.version == "3" then [ - "--with-hepmc3=${hepmc}" - ] else [ - "--with-hepmc=${hepmc}" - ]); + "--with-hepmc3=${hepmc3}" + "--with-highfive=${highfive}" + ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/physics/thepeg/default.nix b/pkgs/development/libraries/physics/thepeg/default.nix index b55d6869e4da..d4274b9dbed4 100644 --- a/pkgs/development/libraries/physics/thepeg/default.nix +++ b/pkgs/development/libraries/physics/thepeg/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, autoreconfHook, boost, fastjet, gsl, hepmc2, lhapdf, rivet, zlib }: +{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook, boost, fastjet, gsl, hepmc3, lhapdf, rivet, zlib }: stdenv.mkDerivation rec { pname = "thepeg"; @@ -9,12 +9,21 @@ stdenv.mkDerivation rec { hash = "sha256-rDWXmuicKWCMqSwVakn/aKrOeloSoMkvCgGoM9LTRXI="; }; + patches = [ + # Rivet 4 support + (fetchpatch { + url = "https://github.com/hep-mirrors/thepeg/commit/d974704fe48876c13cb7f544cabcf6ef30c00f48.diff"; + hash = "sha256-HzyNigbhWzSpjvvYw3+LZvnrSoV6Pmzghw/5VY5nlqk="; + }) + ]; + nativeBuildInputs = [ autoreconfHook ]; - buildInputs = [ boost fastjet gsl hepmc2 lhapdf rivet zlib ]; + buildInputs = [ boost fastjet gsl hepmc3 lhapdf rivet zlib ]; configureFlags = [ - "--with-hepmc=${hepmc2}" + "--with-hepmc=${hepmc3}" + "--with-hepmcversion=3" "--with-rivet=${rivet}" "--without-javagui" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index faa1341f021b..806f422fe54e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -37664,7 +37664,6 @@ with pkgs; }; rivet = callPackage ../development/libraries/physics/rivet { - hepmc = hepmc2; imagemagick = graphicsmagick-imagemagick-compat; }; From b479fae22e4b70bee44ffe812173de412e33d3a2 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Wed, 16 Oct 2024 14:45:00 +0200 Subject: [PATCH 43/99] envoy: 1.31.2 -> 1.32.0 Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- .../0001-nixpkgs-use-system-Python.patch | 23 +++++++------- .../en/envoy/0002-nixpkgs-use-system-Go.patch | 30 ++++--------------- ...03-nixpkgs-use-system-C-C-toolchains.patch | 11 +++---- pkgs/by-name/en/envoy/package.nix | 10 +++---- pkgs/top-level/all-packages.nix | 1 - 5 files changed, 25 insertions(+), 50 deletions(-) diff --git a/pkgs/by-name/en/envoy/0001-nixpkgs-use-system-Python.patch b/pkgs/by-name/en/envoy/0001-nixpkgs-use-system-Python.patch index 9e58599e5943..983408cab16c 100644 --- a/pkgs/by-name/en/envoy/0001-nixpkgs-use-system-Python.patch +++ b/pkgs/by-name/en/envoy/0001-nixpkgs-use-system-Python.patch @@ -1,7 +1,7 @@ -From 07af89ac82e0c5876590f89284795bffa4b0e1c8 Mon Sep 17 00:00:00 2001 +From 47406ebaf0260e5b66a92baac3717936c8386b69 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:52:59 +0200 -Subject: [PATCH 1/3] nixpkgs: use system Python +Subject: [PATCH] nixpkgs: use system Python Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- @@ -10,13 +10,13 @@ Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> 2 files changed, 5 insertions(+), 23 deletions(-) diff --git a/bazel/python_dependencies.bzl b/bazel/python_dependencies.bzl -index b015e851c0..53a2c93c59 100644 +index 9f2b336b1a..53a2c93c59 100644 --- a/bazel/python_dependencies.bzl +++ b/bazel/python_dependencies.bzl @@ -1,28 +1,25 @@ load("@com_google_protobuf//bazel:system_python.bzl", "system_python") -load("@envoy_toolshed//:packages.bzl", "load_packages") --load("@python3_11//:defs.bzl", "interpreter") +-load("@python3_12//:defs.bzl", "interpreter") load("@rules_python//python:pip.bzl", "pip_parse") def envoy_python_dependencies(): @@ -47,13 +47,13 @@ index b015e851c0..53a2c93c59 100644 extra_pip_args = ["--require-hashes"], ) diff --git a/bazel/repositories_extra.bzl b/bazel/repositories_extra.bzl -index 7fd1dc4095..001de36a16 100644 +index b92dd461ba..cef32b3140 100644 --- a/bazel/repositories_extra.bzl +++ b/bazel/repositories_extra.bzl @@ -2,19 +2,11 @@ load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies") - load("@com_github_rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_toolchains") + load("@bazel_features//:deps.bzl", "bazel_features_deps") load("@emsdk//:deps.bzl", emsdk_deps = "deps") - load("@proxy_wasm_cpp_host//bazel/cargo/wasmtime:crates.bzl", "wasmtime_fetch_remote_crates") + load("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:crates.bzl", "crate_repositories") -load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains") +load("@rules_python//python:repositories.bzl", "py_repositories") load("//bazel/external/cargo:crates.bzl", "raze_fetch_remote_crates") @@ -62,17 +62,17 @@ index 7fd1dc4095..001de36a16 100644 - return "_".join(python_version.split(".")[:-1]) - -# Python version for `rules_python` --PYTHON_VERSION = "3.11.9" +-PYTHON_VERSION = "3.12.3" -PYTHON_MINOR_VERSION = _python_minor_version(PYTHON_VERSION) - # Envoy deps that rely on a first stage of dependency loading in envoy_dependencies(). def envoy_dependencies_extra( - python_version = PYTHON_VERSION, ignore_root_user_error = False): + bazel_features_deps() emsdk_deps() - raze_fetch_remote_crates() @@ -22,11 +14,4 @@ def envoy_dependencies_extra( - rules_proto_grpc_toolchains() + crate_repositories() py_repositories() - # Registers underscored Python minor version - eg `python3_10` @@ -83,6 +83,3 @@ index 7fd1dc4095..001de36a16 100644 - ) - aspect_bazel_lib_dependencies() --- -2.45.1 - diff --git a/pkgs/by-name/en/envoy/0002-nixpkgs-use-system-Go.patch b/pkgs/by-name/en/envoy/0002-nixpkgs-use-system-Go.patch index bc48b48f7302..0e42864dadba 100644 --- a/pkgs/by-name/en/envoy/0002-nixpkgs-use-system-Go.patch +++ b/pkgs/by-name/en/envoy/0002-nixpkgs-use-system-Go.patch @@ -1,41 +1,23 @@ -From 06b51e6a0c14e5ad7cfc1dc801561e6e6e1b2014 Mon Sep 17 00:00:00 2001 +From 4be181e96199529a36e9a93c837af7173c827493 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:58:00 +0200 -Subject: [PATCH 2/3] nixpkgs: use system Go +Subject: [PATCH] nixpkgs: use system Go Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- bazel/dependency_imports.bzl | 2 +- - bazel/repositories.bzl | 3 --- - 2 files changed, 1 insertion(+), 4 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/dependency_imports.bzl b/bazel/dependency_imports.bzl -index 1bf6c54a25..4e55a129e4 100644 +index c68eb4bf3e..addee4f6af 100644 --- a/bazel/dependency_imports.bzl +++ b/bazel/dependency_imports.bzl -@@ -18,7 +18,7 @@ load("@rules_rust//rust:defs.bzl", "rust_common") +@@ -20,7 +20,7 @@ load("@rules_rust//rust:defs.bzl", "rust_common") load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains", "rust_repository_set") # go version for rules_go --GO_VERSION = "1.20" +-GO_VERSION = "1.23.1" +GO_VERSION = "host" JQ_VERSION = "1.7" YQ_VERSION = "4.24.4" -diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl -index 02f7abd725..aad9adac24 100644 ---- a/bazel/repositories.bzl -+++ b/bazel/repositories.bzl -@@ -246,9 +246,6 @@ def _go_deps(skip_targets): - if "io_bazel_rules_go" not in skip_targets: - external_http_archive( - name = "io_bazel_rules_go", -- # TODO(wrowe, sunjayBhatia): remove when Windows RBE supports batch file invocation -- patch_args = ["-p1"], -- patches = ["@envoy//bazel:rules_go.patch"], - ) - external_http_archive("bazel_gazelle") - --- -2.45.1 - diff --git a/pkgs/by-name/en/envoy/0003-nixpkgs-use-system-C-C-toolchains.patch b/pkgs/by-name/en/envoy/0003-nixpkgs-use-system-C-C-toolchains.patch index ca304f1d817a..8b1a0b016259 100644 --- a/pkgs/by-name/en/envoy/0003-nixpkgs-use-system-C-C-toolchains.patch +++ b/pkgs/by-name/en/envoy/0003-nixpkgs-use-system-C-C-toolchains.patch @@ -1,7 +1,7 @@ -From 1213bbf5583c6615f719e0acf5f568e08bca5b35 Mon Sep 17 00:00:00 2001 +From 3ecb08a7603a07310d1a38c0f47bc54bbe1f11c8 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:59:22 +0200 -Subject: [PATCH 3/3] nixpkgs: use system C/C++ toolchains +Subject: [PATCH] nixpkgs: use system C/C++ toolchains Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- @@ -9,10 +9,10 @@ Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bazel/dependency_imports.bzl b/bazel/dependency_imports.bzl -index 4e55a129e4..6c2a5f0d82 100644 +index addee4f6af..dc1967e43b 100644 --- a/bazel/dependency_imports.bzl +++ b/bazel/dependency_imports.bzl -@@ -24,7 +24,11 @@ JQ_VERSION = "1.7" +@@ -26,7 +26,11 @@ JQ_VERSION = "1.7" YQ_VERSION = "4.24.4" def envoy_dependency_imports(go_version = GO_VERSION, jq_version = JQ_VERSION, yq_version = YQ_VERSION): @@ -25,6 +25,3 @@ index 4e55a129e4..6c2a5f0d82 100644 go_rules_dependencies() go_register_toolchains(go_version) if go_version != "host": --- -2.45.1 - diff --git a/pkgs/by-name/en/envoy/package.nix b/pkgs/by-name/en/envoy/package.nix index b6a0b7701410..5e58bee216d0 100644 --- a/pkgs/by-name/en/envoy/package.nix +++ b/pkgs/by-name/en/envoy/package.nix @@ -25,16 +25,16 @@ let # However, the version string is more useful for end-users. # These are contained in a attrset of their own to make it obvious that # people should update both. - version = "1.31.2"; - rev = "cc4a75482810de4b84c301d13deb551bd3147339"; - hash = "sha256-mfQpEGLMJV3UKqcUdbhy6/pP1sWut26zjwN6vDE7LmA="; + version = "1.32.0"; + rev = "86dc7ef91ca15fb4957a74bd599397413fc26a24"; + hash = "sha256-Wcbt62RfaNcTntmPjaAM0cP3LJangm4ht7Q0bzEpu5A="; }; # these need to be updated for any changes to fetchAttrs depsHash = { - x86_64-linux = "sha256-9KXZdSvRfi5mWOSotG//+ljsx64I4bYwzbeQFuCIwDE="; - aarch64-linux = "sha256-knrCfUYUL+bYuHSNrNeX3SwoGDf2rLYNXuukEmj4BjA="; + x86_64-linux = ""; + aarch64-linux = ""; } .${stdenv.system} or (throw "unsupported system ${stdenv.system}"); in diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 55f814f4e4c9..e8feed8af6c0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24201,7 +24201,6 @@ with pkgs; envoy = callPackage ../by-name/en/envoy/package.nix { jdk = openjdk11_headless; - gn = gn1924; }; ergochat = callPackage ../servers/irc/ergochat { }; From 0ed130bfcba6cb537837ee5076f6e1e615c56bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Wed, 16 Oct 2024 19:15:33 +0200 Subject: [PATCH 44/99] pnpm: 9.12.1 -> 9.12.2 --- pkgs/development/tools/pnpm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/pnpm/default.nix b/pkgs/development/tools/pnpm/default.nix index 67e90744c5d0..997d7e62bdba 100644 --- a/pkgs/development/tools/pnpm/default.nix +++ b/pkgs/development/tools/pnpm/default.nix @@ -8,8 +8,8 @@ let hash = "sha256-2qJ6C1QbxjUyP/lsLe2ZVGf/n+bWn/ZwIVWKqa2dzDY="; }; "9" = { - version = "9.12.1"; - hash = "sha256-kUUv36RiNK5EfUbVxPxOfgpwWPkElcS293+L7ruxVOM="; + version = "9.12.2"; + hash = "sha256-LvblR7CwfYQdYFJA3OTWNWd4MRSM0w9tVkuPT5KPc9I="; }; }; From 1cd839c46b83f0e41dc3284496b2d589a580e3c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 19 Oct 2024 09:37:56 +0200 Subject: [PATCH 45/99] pnpm: add maintainer gepbird --- pkgs/development/tools/pnpm/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/pnpm/generic.nix b/pkgs/development/tools/pnpm/generic.nix index 7050df448970..e3a0055ec318 100644 --- a/pkgs/development/tools/pnpm/generic.nix +++ b/pkgs/development/tools/pnpm/generic.nix @@ -73,7 +73,7 @@ homepage = "https://pnpm.io/"; changelog = "https://github.com/pnpm/pnpm/releases/tag/v${finalAttrs.version}"; license = licenses.mit; - maintainers = with maintainers; [ Scrumplex ]; + maintainers = with maintainers; [ Scrumplex gepbird ]; platforms = platforms.all; mainProgram = "pnpm"; }; From c261249cad27481d868215e174a8c3c1330896dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 19 Oct 2024 09:42:56 +0200 Subject: [PATCH 46/99] OWNERS: add Scrumplex and gepbird to pnpm tools --- ci/OWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/OWNERS b/ci/OWNERS index 8decab10834d..96ba4f85b0ef 100644 --- a/ci/OWNERS +++ b/ci/OWNERS @@ -351,6 +351,7 @@ pkgs/by-name/fo/forgejo/ @adamcstephens @bendlas @emilylange /pkgs/build-support/node/build-npm-package @winterqt /pkgs/build-support/node/fetch-npm-deps @winterqt /doc/languages-frameworks/javascript.section.md @winterqt +/pkgs/development/tools/pnpm @Scrumplex @gepbird # OCaml /pkgs/build-support/ocaml @ulrikstrid From b6f2a8b54a18ce449efe9410fa5fba7a9dc74b41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 19 Oct 2024 09:47:53 +0200 Subject: [PATCH 47/99] pnpm: format --- pkgs/development/tools/pnpm/default.nix | 8 +- .../tools/pnpm/fetch-deps/default.nix | 118 +++++++++--------- .../tools/pnpm/fetch-deps/serve.nix | 7 +- pkgs/development/tools/pnpm/generic.nix | 70 ++++++----- 4 files changed, 114 insertions(+), 89 deletions(-) diff --git a/pkgs/development/tools/pnpm/default.nix b/pkgs/development/tools/pnpm/default.nix index 997d7e62bdba..4e4753eff8cd 100644 --- a/pkgs/development/tools/pnpm/default.nix +++ b/pkgs/development/tools/pnpm/default.nix @@ -1,4 +1,8 @@ -{ lib, callPackage }: +{ + lib, + callPackage, +}: + let inherit (lib) mapAttrs' nameValuePair; @@ -13,7 +17,7 @@ let }; }; - callPnpm = variant: callPackage ./generic.nix {inherit (variant) version hash;}; + callPnpm = variant: callPackage ./generic.nix { inherit (variant) version hash; }; mkPnpm = versionSuffix: variant: nameValuePair "pnpm_${versionSuffix}" (callPnpm variant); in diff --git a/pkgs/development/tools/pnpm/fetch-deps/default.nix b/pkgs/development/tools/pnpm/fetch-deps/default.nix index 4ef68fdd50c8..d89160064406 100644 --- a/pkgs/development/tools/pnpm/fetch-deps/default.nix +++ b/pkgs/development/tools/pnpm/fetch-deps/default.nix @@ -9,6 +9,7 @@ pnpm, yq, }: + { fetchDeps = { @@ -31,76 +32,79 @@ outputHash = ""; outputHashAlgo = "sha256"; }; - installFlags = lib.optionalString (pnpmWorkspace != "") "--filter=${pnpmWorkspace}"; + installFlags = lib.optionalString (pnpmWorkspace != "") "--filter=${pnpmWorkspace}"; in - stdenvNoCC.mkDerivation (finalAttrs: ( - args' - // { - name = "${pname}-pnpm-deps"; + stdenvNoCC.mkDerivation ( + finalAttrs: + ( + args' + // { + name = "${pname}-pnpm-deps"; - nativeBuildInputs = [ - cacert - jq - moreutils - pnpm - yq - ]; + nativeBuildInputs = [ + cacert + jq + moreutils + pnpm + yq + ]; - impureEnvVars = lib.fetchers.proxyImpureEnvVars; + impureEnvVars = lib.fetchers.proxyImpureEnvVars; - installPhase = '' - runHook preInstall + installPhase = '' + runHook preInstall - lockfileVersion="$(yq -r .lockfileVersion pnpm-lock.yaml)" - if [[ ''${lockfileVersion:0:1} -gt ${lib.versions.major pnpm.version} ]]; then - echo "ERROR: lockfileVersion $lockfileVersion in pnpm-lock.yaml is too new for the provided pnpm version ${lib.versions.major pnpm.version}!" - exit 1 - fi + lockfileVersion="$(yq -r .lockfileVersion pnpm-lock.yaml)" + if [[ ''${lockfileVersion:0:1} -gt ${lib.versions.major pnpm.version} ]]; then + echo "ERROR: lockfileVersion $lockfileVersion in pnpm-lock.yaml is too new for the provided pnpm version ${lib.versions.major pnpm.version}!" + exit 1 + fi - export HOME=$(mktemp -d) - pnpm config set store-dir $out - # Some packages produce platform dependent outputs. We do not want to cache those in the global store - pnpm config set side-effects-cache false - # As we pin pnpm versions, we don't really care about updates - pnpm config set update-notifier false - # Run any additional pnpm configuration commands that users provide. - ${prePnpmInstall} - # pnpm is going to warn us about using --force - # --force allows us to fetch all dependencies including ones that aren't meant for our host platform - pnpm install \ - --force \ - --ignore-scripts \ - ${installFlags} \ - --frozen-lockfile + export HOME=$(mktemp -d) + pnpm config set store-dir $out + # Some packages produce platform dependent outputs. We do not want to cache those in the global store + pnpm config set side-effects-cache false + # As we pin pnpm versions, we don't really care about updates + pnpm config set update-notifier false + # Run any additional pnpm configuration commands that users provide. + ${prePnpmInstall} + # pnpm is going to warn us about using --force + # --force allows us to fetch all dependencies including ones that aren't meant for our host platform + pnpm install \ + --force \ + --ignore-scripts \ + ${installFlags} \ + --frozen-lockfile - runHook postInstall - ''; + runHook postInstall + ''; - fixupPhase = '' - runHook preFixup + fixupPhase = '' + runHook preFixup - # Remove timestamp and sort the json files - rm -rf $out/v3/tmp - for f in $(find $out -name "*.json"); do - jq --sort-keys "del(.. | .checkedAt?)" $f | sponge $f - done + # Remove timestamp and sort the json files + rm -rf $out/v3/tmp + for f in $(find $out -name "*.json"); do + jq --sort-keys "del(.. | .checkedAt?)" $f | sponge $f + done - runHook postFixup - ''; + runHook postFixup + ''; - passthru = { - serve = callPackage ./serve.nix { - inherit pnpm; - pnpmDeps = finalAttrs.finalPackage; + passthru = { + serve = callPackage ./serve.nix { + inherit pnpm; + pnpmDeps = finalAttrs.finalPackage; + }; }; - }; - dontConfigure = true; - dontBuild = true; - outputHashMode = "recursive"; - } - // hash' - )); + dontConfigure = true; + dontBuild = true; + outputHashMode = "recursive"; + } + // hash' + ) + ); configHook = makeSetupHook { name = "pnpm-config-hook"; diff --git a/pkgs/development/tools/pnpm/fetch-deps/serve.nix b/pkgs/development/tools/pnpm/fetch-deps/serve.nix index a44022d841dc..a60aaa3b928f 100644 --- a/pkgs/development/tools/pnpm/fetch-deps/serve.nix +++ b/pkgs/development/tools/pnpm/fetch-deps/serve.nix @@ -1,4 +1,9 @@ -{ writeShellApplication, pnpm, pnpmDeps }: +{ + writeShellApplication, + pnpm, + pnpmDeps, +}: + writeShellApplication { name = "serve-pnpm-store"; diff --git a/pkgs/development/tools/pnpm/generic.nix b/pkgs/development/tools/pnpm/generic.nix index e3a0055ec318..1c6c1dfec6d3 100644 --- a/pkgs/development/tools/pnpm/generic.nix +++ b/pkgs/development/tools/pnpm/generic.nix @@ -7,10 +7,11 @@ nodejs, testers, withNode ? true, - version, hash, -}: stdenvNoCC.mkDerivation (finalAttrs: { +}: + +stdenvNoCC.mkDerivation (finalAttrs: { pname = "pnpm"; inherit version; @@ -26,7 +27,10 @@ buildInputs = lib.optionals withNode [ nodejs ]; - nativeBuildInputs = [ installShellFiles nodejs ]; + nativeBuildInputs = [ + installShellFiles + nodejs + ]; installPhase = '' runHook preInstall @@ -40,40 +44,48 @@ ''; postInstall = - if lib.toInt (lib.versions.major version) < 9 then '' - export HOME="$PWD" - node $out/bin/pnpm install-completion bash - node $out/bin/pnpm install-completion fish - node $out/bin/pnpm install-completion zsh - sed -i '1 i#compdef pnpm' .config/tabtab/zsh/pnpm.zsh - installShellCompletion \ - .config/tabtab/bash/pnpm.bash \ - .config/tabtab/fish/pnpm.fish \ - .config/tabtab/zsh/pnpm.zsh - '' else '' - node $out/bin/pnpm completion bash >pnpm.bash - node $out/bin/pnpm completion fish >pnpm.fish - node $out/bin/pnpm completion zsh >pnpm.zsh - sed -i '1 i#compdef pnpm' pnpm.zsh - installShellCompletion pnpm.{bash,fish,zsh} - ''; + if lib.toInt (lib.versions.major version) < 9 then + '' + export HOME="$PWD" + node $out/bin/pnpm install-completion bash + node $out/bin/pnpm install-completion fish + node $out/bin/pnpm install-completion zsh + sed -i '1 i#compdef pnpm' .config/tabtab/zsh/pnpm.zsh + installShellCompletion \ + .config/tabtab/bash/pnpm.bash \ + .config/tabtab/fish/pnpm.fish \ + .config/tabtab/zsh/pnpm.zsh + '' + else + '' + node $out/bin/pnpm completion bash >pnpm.bash + node $out/bin/pnpm completion fish >pnpm.fish + node $out/bin/pnpm completion zsh >pnpm.zsh + sed -i '1 i#compdef pnpm' pnpm.zsh + installShellCompletion pnpm.{bash,fish,zsh} + ''; - passthru = let - fetchDepsAttrs = callPackages ./fetch-deps { pnpm = finalAttrs.finalPackage; }; - in { - inherit (fetchDepsAttrs) fetchDeps configHook; + passthru = + let + fetchDepsAttrs = callPackages ./fetch-deps { pnpm = finalAttrs.finalPackage; }; + in + { + inherit (fetchDepsAttrs) fetchDeps configHook; - tests.version = lib.optionalAttrs withNode ( - testers.testVersion { package = finalAttrs.finalPackage; } - ); - }; + tests.version = lib.optionalAttrs withNode ( + testers.testVersion { package = finalAttrs.finalPackage; } + ); + }; meta = with lib; { description = "Fast, disk space efficient package manager for JavaScript"; homepage = "https://pnpm.io/"; changelog = "https://github.com/pnpm/pnpm/releases/tag/v${finalAttrs.version}"; license = licenses.mit; - maintainers = with maintainers; [ Scrumplex gepbird ]; + maintainers = with maintainers; [ + Scrumplex + gepbird + ]; platforms = platforms.all; mainProgram = "pnpm"; }; From 02c8c757b84d9fed12354a49b463a30324b17577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 19 Oct 2024 10:17:45 +0200 Subject: [PATCH 48/99] pnpm: remove `with lib;` --- pkgs/development/tools/pnpm/generic.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/pnpm/generic.nix b/pkgs/development/tools/pnpm/generic.nix index 1c6c1dfec6d3..0eb8467a4274 100644 --- a/pkgs/development/tools/pnpm/generic.nix +++ b/pkgs/development/tools/pnpm/generic.nix @@ -77,16 +77,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { ); }; - meta = with lib; { + meta = { description = "Fast, disk space efficient package manager for JavaScript"; homepage = "https://pnpm.io/"; changelog = "https://github.com/pnpm/pnpm/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex gepbird ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "pnpm"; }; }) From cb5946cd93f721af497d63595e93f1fee188edc5 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sat, 19 Oct 2024 18:35:02 +0100 Subject: [PATCH 49/99] envoy: fix up Rust Envoy 1.32 has added some more dependencies on rules_rust bits, so we need to support that now. In particular, for some reason, we always fail with a message about needing repinning, so we repin during the IFD phase, but we need to point rules_rust at the nixpkgs Rust toolchain, make it build the cargo-bazel tool (because the one in nixpkgs is the wrong version), and then clean up afterwards. --- pkgs/by-name/en/envoy/bazel_nix.BUILD.bazel | 54 ++++++++++++++++++++ pkgs/by-name/en/envoy/package.nix | 52 +++++++++++++++++-- pkgs/by-name/en/envoy/rules_rust_extra.patch | 18 +++++++ 3 files changed, 120 insertions(+), 4 deletions(-) create mode 100644 pkgs/by-name/en/envoy/bazel_nix.BUILD.bazel create mode 100644 pkgs/by-name/en/envoy/rules_rust_extra.patch diff --git a/pkgs/by-name/en/envoy/bazel_nix.BUILD.bazel b/pkgs/by-name/en/envoy/bazel_nix.BUILD.bazel new file mode 100644 index 000000000000..5531517addfb --- /dev/null +++ b/pkgs/by-name/en/envoy/bazel_nix.BUILD.bazel @@ -0,0 +1,54 @@ +load("@bazel_tools//tools/sh:sh_toolchain.bzl", "sh_toolchain") +load("@rules_rust//rust:toolchain.bzl", "rust_toolchain") + +toolchains = { + "x86_64": "x86_64-unknown-linux-gnu", + "aarch64": "aarch64-unknown-linux-gnu", +} + +exports_files(["cargo", "rustdoc", "ruststd", "rustc"]) + +[ + rust_toolchain( + name = "rust_nix_" + k + "_impl", + binary_ext = "", + dylib_ext = ".so", + exec_triple = v, + cargo = ":cargo", + rust_doc = ":rustdoc", + rust_std = ":ruststd", + rustc = ":rustc", + stdlib_linkflags = ["-ldl", "-lpthread"], + staticlib_ext = ".a", + target_triple = v, + ) + for k, v in toolchains.items() +] + +[ + toolchain( + name = "rust_nix_" + k, + exec_compatible_with = [ + "@platforms//cpu:" + k, + "@platforms//os:linux", + ], + target_compatible_with = [ + "@platforms//cpu:" + k, + "@platforms//os:linux", + ], + toolchain = ":rust_nix_" + k + "_impl", + toolchain_type = "@rules_rust//rust:toolchain_type", + ) + for k in toolchains.keys() +] + +sh_toolchain( + name = "local_sh_impl", + path = "@bash@", +) + +toolchain( + name = "local_sh", + toolchain = ":local_sh_impl", + toolchain_type = "@bazel_tools//tools/sh:toolchain_type", +) diff --git a/pkgs/by-name/en/envoy/package.nix b/pkgs/by-name/en/envoy/package.nix index 5e58bee216d0..c2e5025e298b 100644 --- a/pkgs/by-name/en/envoy/package.nix +++ b/pkgs/by-name/en/envoy/package.nix @@ -5,6 +5,10 @@ buildBazelPackage, fetchFromGitHub, stdenv, + cacert, + cargo, + rustc, + rustPlatform, cmake, gn, go, @@ -33,12 +37,12 @@ let # these need to be updated for any changes to fetchAttrs depsHash = { - x86_64-linux = ""; - aarch64-linux = ""; + x86_64-linux = "sha256-LkDNPFT7UUCsGPG1dMnwzdIw0lzc5+3JYDoblF5oZVk="; + aarch64-linux = "sha256-DkibjmY1YND9Q2aQ41bhNdch0SKM5ghY2mjYSQfV30M="; } .${stdenv.system} or (throw "unsupported system ${stdenv.system}"); in -buildBazelPackage { +buildBazelPackage rec { pname = "envoy"; inherit (srcVer) version; bazel = bazel_6; @@ -58,6 +62,22 @@ buildBazelPackage { sed -i 's,#!/usr/bin/env python3,#!${python3}/bin/python,' bazel/foreign_cc/luajit.patch sed -i '/javabase=/d' .bazelrc sed -i '/"-Werror"/d' bazel/envoy_internal.bzl + + mkdir -p bazel/nix/ + substitute ${./bazel_nix.BUILD.bazel} bazel/nix/BUILD.bazel \ + --subst-var-by bash "$(type -p bash)" + ln -sf "${cargo}/bin/cargo" bazel/nix/cargo + ln -sf "${rustc}/bin/rustc" bazel/nix/rustc + ln -sf "${rustc}/bin/rustdoc" bazel/nix/rustdoc + ln -sf "${rustPlatform.rustLibSrc}" bazel/nix/ruststd + substituteInPlace bazel/dependency_imports.bzl \ + --replace-fail 'crate_universe_dependencies()' 'crate_universe_dependencies(rust_toolchain_cargo_template="@@//bazel/nix:cargo", rust_toolchain_rustc_template="@@//bazel/nix:rustc")' \ + --replace-fail 'crates_repository(' 'crates_repository(rust_toolchain_cargo_template="@@//bazel/nix:cargo", rust_toolchain_rustc_template="@@//bazel/nix:rustc",' + + substitute ${./rules_rust_extra.patch} bazel/nix/rules_rust_extra.patch \ + --subst-var-by bash "$(type -p bash)" + cat bazel/nix/rules_rust_extra.patch bazel/rules_rust.patch > bazel/nix/rules_rust.patch + mv bazel/nix/rules_rust.patch bazel/rules_rust.patch ''; patches = [ @@ -79,14 +99,23 @@ buildBazelPackage { jdk ninja patchelf + cacert ]; buildInputs = [ linuxHeaders ]; fetchAttrs = { sha256 = depsHash; + env.CARGO_BAZEL_REPIN = true; dontUseCmakeConfigure = true; dontUseGnConfigure = true; + postPatch = '' + ${postPatch} + + substituteInPlace bazel/dependency_imports.bzl \ + --replace-fail 'crate_universe_dependencies(' 'crate_universe_dependencies(bootstrap=True, ' \ + --replace-fail 'crates_repository(' 'crates_repository(generator="@@cargo_bazel_bootstrap//:cargo-bazel", ' + ''; preInstall = '' # Strip out the path to the build location (by deleting the comment line). find $bazelOut/external -name requirements.bzl | while read requirements; do @@ -113,6 +142,12 @@ buildBazelPackage { # fix tcmalloc failure https://github.com/envoyproxy/envoy/issues/30838 sed -i '/TCMALLOC_GCC_FLAGS = \[/a"-Wno-changes-meaning",' $bazelOut/external/com_github_google_tcmalloc/tcmalloc/copts.bzl + + # Install repinned rules_rust lockfile + cp source/extensions/dynamic_modules/sdk/rust/Cargo.Bazel.lock $bazelOut/external/Cargo.Bazel.lock + + # Don't save cargo_bazel_bootstrap or the crate index cache + rm -rf $bazelOut/external/cargo_bazel_bootstrap $bazelOut/external/dynamic_modules_rust_sdk_crate_index/.cargo_home $bazelOut/external/dynamic_modules_rust_sdk_crate_index/splicing-output ''; }; buildAttrs = { @@ -125,7 +160,7 @@ buildBazelPackage { file "$execbin" | grep -q ': ELF .*, dynamically linked,' || continue patchelf \ --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ - "$execbin" + "$execbin" || echo "$execbin" done ln -s ${bazel-gazelle}/bin $bazelOut/external/bazel_gazelle_go_repository_tools/bin @@ -139,6 +174,9 @@ buildBazelPackage { $bazelOut/external/com_github_luajit_luajit/build.py \ $bazelOut/external/local_config_sh/BUILD \ $bazelOut/external/*_pip3/BUILD.bazel + + # Install repinned rules_rust lockfile + cp $bazelOut/external/Cargo.Bazel.lock source/extensions/dynamic_modules/sdk/rust/Cargo.Bazel.lock ''; installPhase = '' install -Dm0755 bazel-bin/source/exe/envoy-static $out/bin/envoy @@ -162,6 +200,9 @@ buildBazelPackage { "--java_runtime_version=local_jdk" "--tool_java_runtime_version=local_jdk" + # Force use of system Rust. + "--extra_toolchains=//bazel/nix:rust_nix_aarch64,//bazel/nix:rust_nix_x86_64" + # undefined reference to 'grpc_core::*Metadata*::*Memento* # # During linking of the final binary, we see undefined references to grpc_core related symbols. @@ -182,6 +223,9 @@ buildBazelPackage { bazelFetchFlags = [ "--define=wasm=${wasmRuntime}" + # Force use of system Rust. + "--extra_toolchains=//bazel/nix:rust_nix_aarch64,//bazel/nix:rust_nix_x86_64" + # https://github.com/bazelbuild/rules_go/issues/3844 "--repo_env=GOPROXY=https://proxy.golang.org,direct" "--repo_env=GOSUMDB=sum.golang.org" diff --git a/pkgs/by-name/en/envoy/rules_rust_extra.patch b/pkgs/by-name/en/envoy/rules_rust_extra.patch new file mode 100644 index 000000000000..86ff5fb60ff3 --- /dev/null +++ b/pkgs/by-name/en/envoy/rules_rust_extra.patch @@ -0,0 +1,18 @@ +--- crate_universe/src/metadata/cargo_tree_rustc_wrapper.sh ++++ crate_universe/src/metadata/cargo_tree_rustc_wrapper.sh +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!@bash@ + # + # For details, see: + # `@rules_rust//crate_universe/src/metadata/cargo_tree_resolver.rs - TreeResolver::create_rustc_wrapper` + +--- util/process_wrapper/private/process_wrapper.sh ++++ util/process_wrapper/private/process_wrapper.sh +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!@bash@ + + set -euo pipefail + + From 9744efc3b0b81a8a71855869136d40820878662b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 19 Oct 2024 00:31:36 +0200 Subject: [PATCH 50/99] treewide: update pnpmDeps hashes --- pkgs/applications/audio/youtube-music/default.nix | 2 +- pkgs/applications/virtualization/podman-desktop/default.nix | 2 +- pkgs/by-name/as/astro-language-server/package.nix | 2 +- pkgs/by-name/au/autoprefixer/package.nix | 2 +- pkgs/by-name/cl/clash-verge-rev/webui.nix | 2 +- pkgs/by-name/en/en-croissant/package.nix | 2 +- pkgs/by-name/fo/follow/package.nix | 2 +- pkgs/by-name/gi/gitbutler/package.nix | 2 +- pkgs/by-name/go/goofcord/package.nix | 2 +- pkgs/by-name/ho/homebox/package.nix | 2 +- pkgs/by-name/le/legcord/package.nix | 2 +- pkgs/by-name/me/metacubexd/package.nix | 2 +- pkgs/by-name/mi/misskey/package.nix | 2 +- pkgs/by-name/n8/n8n/package.nix | 2 +- pkgs/by-name/ov/overlayed/webui.nix | 2 +- pkgs/by-name/pg/pgrok/package.nix | 2 +- pkgs/by-name/re/renovate/package.nix | 2 +- pkgs/by-name/rs/rsshub/package.nix | 2 +- pkgs/by-name/si/siyuan/package.nix | 2 +- pkgs/by-name/sk/sketchybar-app-font/package.nix | 2 +- pkgs/by-name/st/stylelint-lsp/package.nix | 2 +- pkgs/by-name/su/surrealist/package.nix | 2 +- pkgs/by-name/sy/syncyomi/package.nix | 2 +- pkgs/by-name/ta/taler-wallet-core/package.nix | 2 +- pkgs/by-name/ve/vencord/package.nix | 2 +- pkgs/by-name/ve/vesktop/package.nix | 2 +- pkgs/by-name/vi/vikunja/package.nix | 2 +- pkgs/by-name/wr/wrangler/package.nix | 2 +- pkgs/by-name/ze/zenn-cli/package.nix | 2 +- pkgs/games/heroic/default.nix | 2 +- pkgs/servers/authelia/sources.nix | 2 +- pkgs/servers/teleport/16/default.nix | 2 +- pkgs/servers/web-apps/lemmy/pin.json | 2 +- pkgs/tools/security/cdxgen/default.nix | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) diff --git a/pkgs/applications/audio/youtube-music/default.nix b/pkgs/applications/audio/youtube-music/default.nix index 046203416a03..a3f45fee24a2 100644 --- a/pkgs/applications/audio/youtube-music/default.nix +++ b/pkgs/applications/audio/youtube-music/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-lxqBmtHkyk4mnM/AJQmpyCmvhW2e96vZBkgtoREjEXY="; + hash = "sha256-6Fh1fbl7Y33EyWbWUhe70CGzhc4y+I59vPbzZydoJ18="; }; nativeBuildInputs = [ makeWrapper python3 nodejs pnpm.configHook ] diff --git a/pkgs/applications/virtualization/podman-desktop/default.nix b/pkgs/applications/virtualization/podman-desktop/default.nix index 1762e96e2a04..947def308f7a 100644 --- a/pkgs/applications/virtualization/podman-desktop/default.nix +++ b/pkgs/applications/virtualization/podman-desktop/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-mkWbFFv0IdLtog6uZM6xgTNlQPC+ytUQD8po8yiv/6Y="; + hash = "sha256-LPsNRd1c/cQeyBn3LZKnKeAsZ981sOkLYTnXIZL82LA="; }; patches = [ diff --git a/pkgs/by-name/as/astro-language-server/package.nix b/pkgs/by-name/as/astro-language-server/package.nix index 33d0b5aedc5e..d51829c07858 100644 --- a/pkgs/by-name/as/astro-language-server/package.nix +++ b/pkgs/by-name/as/astro-language-server/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmWorkspace prePnpmInstall ; - hash = "sha256-zCCDlwsKPZQVEYrv85WcMY2JlWgz0tD6iHLSJg1RkRU="; + hash = "sha256-WSnXMVWuE6VC75a1bhZHGyUg6r1yMBvoQZeKdIYE7QI="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/au/autoprefixer/package.nix b/pkgs/by-name/au/autoprefixer/package.nix index b9f036ee0cf0..b1977eba41e8 100644 --- a/pkgs/by-name/au/autoprefixer/package.nix +++ b/pkgs/by-name/au/autoprefixer/package.nix @@ -24,7 +24,7 @@ pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-AKOcKly8uBohhxx9nSo8rMrm0Ebk06LHZ1Yt9yoZj7g="; + hash = "sha256-Gu2DRDx0YRlSb+EInOfmAOYKvOba6Lq1wkOW9t9fnbA="; }; installPhase = '' diff --git a/pkgs/by-name/cl/clash-verge-rev/webui.nix b/pkgs/by-name/cl/clash-verge-rev/webui.nix index c35dca01a34c..792fbc5be8b8 100644 --- a/pkgs/by-name/cl/clash-verge-rev/webui.nix +++ b/pkgs/by-name/cl/clash-verge-rev/webui.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { pname = "${pname}-webui"; pnpmDeps = pnpm.fetchDeps { inherit pname version src; - hash = "sha256-DYsx1X1yXYEPFuMlvZtbJdefcCR8/wSUidFwsMy8oLk="; + hash = "sha256-ZKDhBdVyLIPf7CQaYUvj9dJd3lA3zsqroSjTyvOmunQ="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/en/en-croissant/package.nix b/pkgs/by-name/en/en-croissant/package.nix index 71b2de66590c..31bd99b51b8f 100644 --- a/pkgs/by-name/en/en-croissant/package.nix +++ b/pkgs/by-name/en/en-croissant/package.nix @@ -37,7 +37,7 @@ buildRustPackage rec { pnpmDeps = pnpm_9.fetchDeps { inherit pname version src; - hash = "sha256-hjSioKpvrGyo5UKvBrwln0S3aIpnJZ2PUdzBfbT7IC4="; + hash = "sha256-hvWXSegUWJvwCU5NLb2vqnl+FIWpCLxw96s9NUIgJTI="; }; cargoLock = { diff --git a/pkgs/by-name/fo/follow/package.nix b/pkgs/by-name/fo/follow/package.nix index dba8ba8eb2cc..cb09cd001e85 100644 --- a/pkgs/by-name/fo/follow/package.nix +++ b/pkgs/by-name/fo/follow/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { pnpmDeps = pnpm.fetchDeps { inherit pname version src; - hash = "sha256-JFAONU1C8pB2Hu4PJqqdqcXk9Ec+iPiAL8J+dk4oPj0="; + hash = "sha256-e9Ui3oIS0wbDLgntF7PQZCll12yvWeKLISXVoK6BjuE="; }; env = { diff --git a/pkgs/by-name/gi/gitbutler/package.nix b/pkgs/by-name/gi/gitbutler/package.nix index af81f5021fca..ea4ee4717e53 100644 --- a/pkgs/by-name/gi/gitbutler/package.nix +++ b/pkgs/by-name/gi/gitbutler/package.nix @@ -51,7 +51,7 @@ rustPlatform.buildRustPackage rec { pnpmDeps = pnpm_9.fetchDeps { inherit pname version src; - hash = "sha256-r2PkNDvOofginL5Y0K+7Qhnsev2zle1q9qraG/ub7Wo="; + hash = "sha256-rlEwFwN6DrOJZm1Hzy6qu7rLKQx69rRIqrScx9FExZM="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/go/goofcord/package.nix b/pkgs/by-name/go/goofcord/package.nix index 16ba288e1daa..92d46adbd7d6 100644 --- a/pkgs/by-name/go/goofcord/package.nix +++ b/pkgs/by-name/go/goofcord/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm'.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-8i/ip0ZIo80bLb7UNO/h856CD7i3DV9QaPaNrxhViqE="; + hash = "sha256-8dSyU9arSvISc2kDWbg/CP6L4sZjZi/Zv7TZN4ONOjQ="; }; env = { diff --git a/pkgs/by-name/ho/homebox/package.nix b/pkgs/by-name/ho/homebox/package.nix index a0bb01845f2e..c24e35ba112d 100644 --- a/pkgs/by-name/ho/homebox/package.nix +++ b/pkgs/by-name/ho/homebox/package.nix @@ -38,7 +38,7 @@ buildGo123Module { pnpmDeps = pnpm.fetchDeps { inherit pname version; src = "${src}/frontend"; - hash = "sha256-SyKET+W9Fn1WETzF4KlAtLOzNI/DOavHUbC7Yfv6kFw="; + hash = "sha256-fOb3oboNlOv/TpIrs3BsSlxIqNbbtSCE8zLMia2RIDw="; }; pnpmRoot = "../frontend"; diff --git a/pkgs/by-name/le/legcord/package.nix b/pkgs/by-name/le/legcord/package.nix index 30d3aea41e16..b980a418cbe0 100644 --- a/pkgs/by-name/le/legcord/package.nix +++ b/pkgs/by-name/le/legcord/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { pnpmDeps = pnpm.fetchDeps { inherit pname version src; - hash = "sha256-UCErcNNGAVOe1CvbYc1OSwPQzXVM5tpUUtBpLXoaQdY="; + hash = "sha256-73v8xkidY9IBUFz/M0BYEVGnoVsr3uh3jP0p6T8QBbA="; }; ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; diff --git a/pkgs/by-name/me/metacubexd/package.nix b/pkgs/by-name/me/metacubexd/package.nix index fedf5ae5fd1d..85b7083f15b9 100644 --- a/pkgs/by-name/me/metacubexd/package.nix +++ b/pkgs/by-name/me/metacubexd/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-yH7L3lb/7mfz73pWBvPCSvAlQ8hlZu+u6yLEZql8D/4="; + hash = "sha256-OFcXsAFMwY6BnyEVK9Px1g17CHCQWyPpr1My7u3XPpU="; }; buildPhase = '' diff --git a/pkgs/by-name/mi/misskey/package.nix b/pkgs/by-name/mi/misskey/package.nix index bc63c78924ef..6c23db392279 100644 --- a/pkgs/by-name/mi/misskey/package.nix +++ b/pkgs/by-name/mi/misskey/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { # https://nixos.org/manual/nixpkgs/unstable/#javascript-pnpm pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-ZEBrYqLc0+yKbroSWk01UZwA97CyOVPhqgqFArM2U8g="; + hash = "sha256-oH4raw+zIQKY+mydteKkY0LqW+13u1408ibm30j1Wss="; }; buildPhase = '' diff --git a/pkgs/by-name/n8/n8n/package.nix b/pkgs/by-name/n8/n8n/package.nix index 48081b49f2f6..00df6946c213 100644 --- a/pkgs/by-name/n8/n8n/package.nix +++ b/pkgs/by-name/n8/n8n/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-OUZpPXXGWW7ceWxpHqjQolCr+OVeVO4DgRwsU8VvgWo="; + hash = "sha256-lZLWqlR6xq7DYpnydgJK8gL7WdfZcRU+8Autzh6e7kY="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ov/overlayed/webui.nix b/pkgs/by-name/ov/overlayed/webui.nix index 7105dc8eae74..80263ab64072 100644 --- a/pkgs/by-name/ov/overlayed/webui.nix +++ b/pkgs/by-name/ov/overlayed/webui.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) src pname version; - hash = "sha256-FBJrVXTgKh8Op7TiZjA/i2LY2OOIKmqGR+GwGUecqVI="; + hash = "sha256-YTZ6uT1hcNSh+xhRvOq4q/opMOEksXT/MH3BgCnccrA="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/pg/pgrok/package.nix b/pkgs/by-name/pg/pgrok/package.nix index 0aed3b49f807..5da13036fe68 100644 --- a/pkgs/by-name/pg/pgrok/package.nix +++ b/pkgs/by-name/pg/pgrok/package.nix @@ -29,7 +29,7 @@ buildGoModule { pnpmDeps = pnpm.fetchDeps { inherit pname version src; - hash = "sha256-1PUcISW1pC9+5HZyI9SIDRyhos5f/6aW1wa2z0OKams="; + hash = "sha256-xObDEkNGMXcUqX9thAJoE45yzd7f15k2odDWv9X3RRE="; }; vendorHash = "sha256-X5FjzliIJdfJnNaUXBjv1uq5tyjMVjBbnLCBH/P0LFM="; diff --git a/pkgs/by-name/re/renovate/package.nix b/pkgs/by-name/re/renovate/package.nix index 6f20acf9d03e..2d47c1e87949 100644 --- a/pkgs/by-name/re/renovate/package.nix +++ b/pkgs/by-name/re/renovate/package.nix @@ -43,7 +43,7 @@ stdenv'.mkDerivation (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-zTbwivYqNeArgwA6tePe2vExKoT/iLV3TS5ag8PlRgQ="; + hash = "sha256-AdNleEe1wVBfhhoM6xit06ql1xEz/TLhZ7qpofwQ874="; }; env.COREPACK_ENABLE_STRICT = 0; diff --git a/pkgs/by-name/rs/rsshub/package.nix b/pkgs/by-name/rs/rsshub/package.nix index 469d3531e522..147c0bbb680d 100644 --- a/pkgs/by-name/rs/rsshub/package.nix +++ b/pkgs/by-name/rs/rsshub/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-+tlBJGJTkxjsXS0zj6rsn2j4FIQNh70gj8pVdOa3mlU="; + hash = "sha256-mAAo4SdJ8cj8aqnbm+azcnxq8lFBvOy3BlSEKz9MA0Q="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/si/siyuan/package.nix b/pkgs/by-name/si/siyuan/package.nix index 888707fcf63d..5d889a6c4e81 100644 --- a/pkgs/by-name/si/siyuan/package.nix +++ b/pkgs/by-name/si/siyuan/package.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation (finalAttrs: { src sourceRoot ; - hash = "sha256-g6O6YE1irE3Hy+Xu7MeH97Oc4bq32IDnfP1VLSiF/U4="; + hash = "sha256-ZaurLQlM81lCGdMwvl/1YDzpC/mU08Wlgx4/MAm6un4="; }; sourceRoot = "${finalAttrs.src.name}/app"; diff --git a/pkgs/by-name/sk/sketchybar-app-font/package.nix b/pkgs/by-name/sk/sketchybar-app-font/package.nix index 0a5ff82c90ae..143339093140 100644 --- a/pkgs/by-name/sk/sketchybar-app-font/package.nix +++ b/pkgs/by-name/sk/sketchybar-app-font/package.nix @@ -20,7 +20,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-u0Rr086p6gotS+p9365+P8uKEqxDNGnWCsZDCaj8eEE="; + hash = "sha256-gS1/n4UimdPi79/a1itsh172YtBr2jvRSu+u2C4NZ70="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/st/stylelint-lsp/package.nix b/pkgs/by-name/st/stylelint-lsp/package.nix index 1a2c67b3f49a..1cd0340220f4 100644 --- a/pkgs/by-name/st/stylelint-lsp/package.nix +++ b/pkgs/by-name/st/stylelint-lsp/package.nix @@ -27,7 +27,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-/QJ4buPOt5KFJxwsQp7L9WYE1RtODj4LMq21l99QwhA="; + hash = "sha256-PVA6sXbiuxqvi9u3sPoeVIJSSpSbFQHQQnTFO3w31WE="; }; buildPhase = '' diff --git a/pkgs/by-name/su/surrealist/package.nix b/pkgs/by-name/su/surrealist/package.nix index 849294960b47..82d872ea1f7b 100644 --- a/pkgs/by-name/su/surrealist/package.nix +++ b/pkgs/by-name/su/surrealist/package.nix @@ -85,7 +85,7 @@ in stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-zGs1MWJ8TEFuHOoekCNIKQo2PBnp95xLz+R8mzeJXh8="; + hash = "sha256-Y14wBYiAsctMf4Ljt7G/twGEQP2nCSDQZVG8otImnIE="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/sy/syncyomi/package.nix b/pkgs/by-name/sy/syncyomi/package.nix index 81f2982a05be..103bc5831957 100644 --- a/pkgs/by-name/sy/syncyomi/package.nix +++ b/pkgs/by-name/sy/syncyomi/package.nix @@ -27,7 +27,7 @@ buildGoModule rec { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src sourceRoot; - hash = "sha256-25Bg8sTeH/w25KdfwgZNoqBXz2d5c1QD5vGb33xpTCA="; + hash = "sha256-edcZIqshnvM3jJpZWIR/UncI0VCMLq26h/n3VvV/384="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ta/taler-wallet-core/package.nix b/pkgs/by-name/ta/taler-wallet-core/package.nix index fac494785855..cdd30749f2c2 100644 --- a/pkgs/by-name/ta/taler-wallet-core/package.nix +++ b/pkgs/by-name/ta/taler-wallet-core/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-7az1wJ6BK9nPKirtW/fmXo3013JCPf+TNk/aG/mGTfo="; + hash = "sha256-+RxTTm5t0/0hLKxhWILzb0qf6aZzbOZJYJenRpX8UdA="; }; buildInputs = [ nodejs ]; diff --git a/pkgs/by-name/ve/vencord/package.nix b/pkgs/by-name/ve/vencord/package.nix index 7ca50671c419..58b5d8da8aea 100644 --- a/pkgs/by-name/ve/vencord/package.nix +++ b/pkgs/by-name/ve/vencord/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname src; - hash = "sha256-bosCE9gBFCcM3Ww6sJmhps/cl4lovXKMieYpkqAMst8="; + hash = "sha256-YBWe4MEmFu8cksOIxuTK0deO7q0QuqgOUc9WkUNBwp0="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ve/vesktop/package.nix b/pkgs/by-name/ve/vesktop/package.nix index 4979bd32bd80..bfe935453489 100644 --- a/pkgs/by-name/ve/vesktop/package.nix +++ b/pkgs/by-name/ve/vesktop/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { src patches ; - hash = "sha256-rizJu6v04wFEpJtakC2tfPg/uylz7gAOzJiXvUwdDI4="; + hash = "sha256-BOVjbaDbZw6H6X8o945M0Bx6fqnRQjFBviOLkTYVJ1I="; }; nativeBuildInputs = diff --git a/pkgs/by-name/vi/vikunja/package.nix b/pkgs/by-name/vi/vikunja/package.nix index a62595242c3e..150b1abc8fb9 100644 --- a/pkgs/by-name/vi/vikunja/package.nix +++ b/pkgs/by-name/vi/vikunja/package.nix @@ -17,7 +17,7 @@ let pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src sourceRoot; - hash = "sha256-pp4AZnoI7gON/meZalfXmaliKR/wSjkj9GTX3My678s="; + hash = "sha256-D2dOyYsdsNV1ZSQdjpy6rfoix7yBACEHj/2XyHb7HWE="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/wr/wrangler/package.nix b/pkgs/by-name/wr/wrangler/package.nix index c18ef2dd972b..65845f5dc131 100644 --- a/pkgs/by-name/wr/wrangler/package.nix +++ b/pkgs/by-name/wr/wrangler/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-ld2+WUVJ2DtiwWmsxkYsU3ft3knHJvjMwSwZlk7reG8="; + hash = "sha256-8EItfBV2n2rnXPCTYjDZlr/tdlEn8YOdIzOsj35w5gQ="; }; buildInputs = [ diff --git a/pkgs/by-name/ze/zenn-cli/package.nix b/pkgs/by-name/ze/zenn-cli/package.nix index e6fbacccaf7b..865f0bcd8d11 100644 --- a/pkgs/by-name/ze/zenn-cli/package.nix +++ b/pkgs/by-name/ze/zenn-cli/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-FfqBe1WQc6ditizjxYLmjb8mvCjQJMpvyUDdaW29sXY="; + hash = "sha256-AjdXclrNl1AHJ4LXq9I5Rk6KGyDaWXW187o2uLwRy/o="; }; preBuild = diff --git a/pkgs/games/heroic/default.nix b/pkgs/games/heroic/default.nix index 131dea9c0285..ad68279740d6 100644 --- a/pkgs/games/heroic/default.nix +++ b/pkgs/games/heroic/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-3PiB8CT7wxGmvRuQQ5FIAmBqBm9+R55ry+N/qUYWzuk="; + hash = "sha256-/7JIeQZt3QsKrjujSucRLiHfhfSllK7FeumNA4eHqSY="; }; nativeBuildInputs = [ diff --git a/pkgs/servers/authelia/sources.nix b/pkgs/servers/authelia/sources.nix index 66dda073909b..c9a677b41dfc 100644 --- a/pkgs/servers/authelia/sources.nix +++ b/pkgs/servers/authelia/sources.nix @@ -10,5 +10,5 @@ rec { hash = "sha256-brgA485sst/jXjdhKrhQilreCYBhESro9j/63g8qQg4="; }; vendorHash = "sha256-kSuIyL+6ue8voTzHTfnAYr9q4hUzIv/lkRopGSFaLv8="; - pnpmDepsHash = "sha256-NAn7ExVmN6Sk2hOFHfBYvbNgXPQDhkFmvF1sZeTMomE="; + pnpmDepsHash = "sha256-fufxoAL0z6bhRnBI4Gu61hBeUnyFYROmfResHJforfE="; } diff --git a/pkgs/servers/teleport/16/default.nix b/pkgs/servers/teleport/16/default.nix index 1b8d89fb0fe0..75104b03d117 100644 --- a/pkgs/servers/teleport/16/default.nix +++ b/pkgs/servers/teleport/16/default.nix @@ -3,7 +3,7 @@ import ../generic.nix (args // { version = "16.2.0"; hash = "sha256-3LLoO7SNJfEfDEU7JnAhmAOIdRO+TkgiJKjT8sqzelo="; vendorHash = "sha256-iyYfht0aB9Vv2hsaqrieFHXbDhlotKQYfLn4JFqpve8="; - pnpmHash = "sha256-phDrOSFQsgA+I4PDK9LJasUBXBO8EkVtQIMx9M4v8u0="; + pnpmHash = "sha256-lcev7VwTcuCuced8uZzLoobREWtNRDFRFdfmabJPLtc="; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { diff --git a/pkgs/servers/web-apps/lemmy/pin.json b/pkgs/servers/web-apps/lemmy/pin.json index 36c61ba3d92b..d5cb6756cc98 100644 --- a/pkgs/servers/web-apps/lemmy/pin.json +++ b/pkgs/servers/web-apps/lemmy/pin.json @@ -4,5 +4,5 @@ "serverHash": "sha256-ellHimZdbB5EQSHVsppBNYyZOODpUADvUn7u6JOu1ns=", "serverCargoHash": "sha256-UdFw8RPKYLqY98So8z9kiaVCl3b8KaqIoUMK/EV2uNM=", "uiHash": "sha256-bhbZQ8tDnJ6TWYj+ki/JQW8cbVjRfLzxaXRDX9JAIm4=", - "uiPNPMDepsHash": "sha256-aJPa46a2W8xHlDzFt0QMFQtEoUSkFQtN9VhaQOvoVio=" + "uiPNPMDepsHash": "sha256-+L6evDPMlEwWk/5qedvITHYRzu1jzB1cLiCTsauPbUI=" } diff --git a/pkgs/tools/security/cdxgen/default.nix b/pkgs/tools/security/cdxgen/default.nix index c9f85d0327fc..8909dab33951 100644 --- a/pkgs/tools/security/cdxgen/default.nix +++ b/pkgs/tools/security/cdxgen/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; - hash = "sha256-skgRkj6LrzRN5diQVbGU0KeJBklGWM6dksbr2njMDk0="; + hash = "sha256-GdFU8mx9H3daxziprIOQWZWEBcz9y9Qk88sus838Xlk="; }; buildPhase = '' From 3f144b1aa0a27327231694a51873309293b2feed Mon Sep 17 00:00:00 2001 From: Artturin Date: Sat, 28 Sep 2024 04:33:56 +0300 Subject: [PATCH 51/99] doc/stdenv/cross-compilation: Add 'Using `-static` outside a `isStatic` platform' This issue often comes up when builds use `-static` in their own build system This may not be the correct location for this as it's not strictly a cross issue, but it's the best one I can think of Inspired by someone wanting to build a `riscv-busybox-initramfs` and just adding `pkgsCross.riscv32.stdenv.cc` to `nativeBuildInputs` --- doc/stdenv/cross-compilation.chapter.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/doc/stdenv/cross-compilation.chapter.md b/doc/stdenv/cross-compilation.chapter.md index 76c931ba047a..071358b994dd 100644 --- a/doc/stdenv/cross-compilation.chapter.md +++ b/doc/stdenv/cross-compilation.chapter.md @@ -181,6 +181,31 @@ Example of an error which this fixes. `[Errno 8] Exec format error: './gdk3-scan'` +#### Using `-static` outside a `isStatic` platform. {#cross-static-on-non-static-platform} + +Add `stdenv.cc.libc.static` (static output of glibc) to `buildInputs` conditionally on if `hostPlatform` uses `glibc`. + + +e.g. + +```nix +{ + buildInputs = lib.optionals (stdenv.hostPlatform.libc == "glibc") [ stdenv.cc.libc.static ]; +} +``` + +Examples of errors which this fixes. + +`cannot find -lm: No such file or directory` + +`cannot find -lc: No such file or directory` + +::: {.note} +At the time of writing it is assumed the issue only happens on `glibc` because it splits the static libraries in to a different output. + +::: {.note} +You may want to look in to using `stdenvAdapters.makeStatic` or `pkgsStatic` or a `isStatic = true` platform. + ## Cross-building packages {#sec-cross-usage} Nixpkgs can be instantiated with `localSystem` alone, in which case there is no cross-compiling and everything is built by and for that system, or also with `crossSystem`, in which case packages run on the latter, but all building happens on the former. Both parameters take the same schema as the 3 (build, host, and target) platforms defined in the previous section. As mentioned above, `lib.systems.examples` has some platforms which are used as arguments for these parameters in practice. You can use them programmatically, or on the command line: From b8b20ae9511335a783494663a004629f2a7c033a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 00:33:41 +0200 Subject: [PATCH 52/99] lisp-modules: import quicklisp dist 2024-10-12 --- pkgs/development/lisp-modules/imported.nix | 9204 +++++++++++--------- 1 file changed, 5194 insertions(+), 4010 deletions(-) diff --git a/pkgs/development/lisp-modules/imported.nix b/pkgs/development/lisp-modules/imported.nix index 3053655eb8a5..e65b626e2d9e 100644 --- a/pkgs/development/lisp-modules/imported.nix +++ b/pkgs/development/lisp-modules/imported.nix @@ -76,11 +76,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3b-bmfont = (build-asdf-system { pname = "3b-bmfont"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "3b-bmfont" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3b-bmfont/2023-02-14/3b-bmfont-20230214-git.tgz"; - sha256 = "11wnqa1wx9vji6cmxl5m5qnf12mqc6n7d5g8038r1wayq88bxia6"; + url = "http://beta.quicklisp.org/archive/3b-bmfont/2024-10-12/3b-bmfont-20241012-git.tgz"; + sha256 = "1zmkmhw8ma2j8p6crw0x6am6fx95rxkb1n3fqlgvs2rxdk273dan"; system = "3b-bmfont"; asd = "3b-bmfont"; }); @@ -140,11 +140,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bgl-shader = (build-asdf-system { pname = "3bgl-shader"; - version = "20200427-git"; + version = "20241012-git"; asds = [ "3bgl-shader" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bgl-shader/2020-04-27/3bgl-shader-20200427-git.tgz"; - sha256 = "0ykfylmmpcc1kh617c4zbq26r5nf1kgf7cb426fnffhp31pp2xkw"; + url = "http://beta.quicklisp.org/archive/3bgl-shader/2024-10-12/3bgl-shader-20241012-git.tgz"; + sha256 = "06v9a3m0cwhj2m5nz20shzgz3362sd7bv011rlknm4nz6i4q5bzz"; system = "3bgl-shader"; asd = "3bgl-shader"; }); @@ -156,11 +156,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bgl-shader-example = (build-asdf-system { pname = "3bgl-shader-example"; - version = "20200427-git"; + version = "20241012-git"; asds = [ "3bgl-shader-example" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bgl-shader/2020-04-27/3bgl-shader-20200427-git.tgz"; - sha256 = "0ykfylmmpcc1kh617c4zbq26r5nf1kgf7cb426fnffhp31pp2xkw"; + url = "http://beta.quicklisp.org/archive/3bgl-shader/2024-10-12/3bgl-shader-20241012-git.tgz"; + sha256 = "06v9a3m0cwhj2m5nz20shzgz3362sd7bv011rlknm4nz6i4q5bzz"; system = "3bgl-shader-example"; asd = "3bgl-shader-example"; }); @@ -172,11 +172,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd = (build-asdf-system { pname = "3bmd"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd"; asd = "3bmd"; }); @@ -188,11 +188,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-ext-code-blocks = (build-asdf-system { pname = "3bmd-ext-code-blocks"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-ext-code-blocks" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-ext-code-blocks"; asd = "3bmd-ext-code-blocks"; }); @@ -204,11 +204,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-ext-definition-lists = (build-asdf-system { pname = "3bmd-ext-definition-lists"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-ext-definition-lists" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-ext-definition-lists"; asd = "3bmd-ext-definition-lists"; }); @@ -220,11 +220,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-ext-math = (build-asdf-system { pname = "3bmd-ext-math"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-ext-math" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-ext-math"; asd = "3bmd-ext-math"; }); @@ -236,11 +236,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-ext-tables = (build-asdf-system { pname = "3bmd-ext-tables"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-ext-tables" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-ext-tables"; asd = "3bmd-ext-tables"; }); @@ -252,11 +252,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-ext-wiki-links = (build-asdf-system { pname = "3bmd-ext-wiki-links"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-ext-wiki-links" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-ext-wiki-links"; asd = "3bmd-ext-wiki-links"; }); @@ -268,11 +268,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-tests = (build-asdf-system { pname = "3bmd-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-tests"; asd = "3bmd-tests"; }); @@ -284,11 +284,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-youtube = (build-asdf-system { pname = "3bmd-youtube"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-youtube" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-youtube"; asd = "3bmd-youtube"; }); @@ -300,11 +300,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3bmd-youtube-tests = (build-asdf-system { pname = "3bmd-youtube-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3bmd-youtube-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3bmd/2023-10-21/3bmd-20231021-git.tgz"; - sha256 = "12xqih1gnwsn1baqm7bq3kxss73phn06gvd0v1h1vwsjd1xgpq3g"; + url = "http://beta.quicklisp.org/archive/3bmd/2024-10-12/3bmd-20241012-git.tgz"; + sha256 = "166pn6qr8n3513673afmln2ayy7kgbgfx45hfmvhmk71xjvq19zv"; system = "3bmd-youtube-tests"; asd = "3bmd-youtube-tests"; }); @@ -332,11 +332,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3d-math = (build-asdf-system { pname = "3d-math"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3d-math" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3d-math/2023-10-21/3d-math-20231021-git.tgz"; - sha256 = "0fj7dy68qvmcfhz2hvr3kbv5q09nz5v6qwam14cwzcigda86ha5g"; + url = "http://beta.quicklisp.org/archive/3d-math/2024-10-12/3d-math-20241012-git.tgz"; + sha256 = "01xnzizy76ypypzpqrg9fwnxfl5mlldc554b0791rsckkhh35xvd"; system = "3d-math"; asd = "3d-math"; }); @@ -348,11 +348,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3d-math-test = (build-asdf-system { pname = "3d-math-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3d-math-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3d-math/2023-10-21/3d-math-20231021-git.tgz"; - sha256 = "0fj7dy68qvmcfhz2hvr3kbv5q09nz5v6qwam14cwzcigda86ha5g"; + url = "http://beta.quicklisp.org/archive/3d-math/2024-10-12/3d-math-20241012-git.tgz"; + sha256 = "01xnzizy76ypypzpqrg9fwnxfl5mlldc554b0791rsckkhh35xvd"; system = "3d-math-test"; asd = "3d-math-test"; }); @@ -428,11 +428,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3d-spaces = (build-asdf-system { pname = "3d-spaces"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3d-spaces" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3d-spaces/2023-10-21/3d-spaces-20231021-git.tgz"; - sha256 = "0jsn8hdg7kghfvgfaawz6cnpn526sf59zrdj5aakglpzk376zyjg"; + url = "http://beta.quicklisp.org/archive/3d-spaces/2024-10-12/3d-spaces-20241012-git.tgz"; + sha256 = "170f2hyvrf3mvkfg9mj7rg2zafcnqbm9h9c29y716ppq1vk1pxhc"; system = "3d-spaces"; asd = "3d-spaces"; }); @@ -444,11 +444,11 @@ in lib.makeScope pkgs.newScope (self: { }); _3d-spaces-test = (build-asdf-system { pname = "3d-spaces-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "3d-spaces-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/3d-spaces/2023-10-21/3d-spaces-20231021-git.tgz"; - sha256 = "0jsn8hdg7kghfvgfaawz6cnpn526sf59zrdj5aakglpzk376zyjg"; + url = "http://beta.quicklisp.org/archive/3d-spaces/2024-10-12/3d-spaces-20241012-git.tgz"; + sha256 = "170f2hyvrf3mvkfg9mj7rg2zafcnqbm9h9c29y716ppq1vk1pxhc"; system = "3d-spaces-test"; asd = "3d-spaces-test"; }); @@ -524,11 +524,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-asdf-system = (build-asdf-system { pname = "40ants-asdf-system"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-asdf-system" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/40ants-asdf-system/2023-10-21/40ants-asdf-system-20231021-git.tgz"; - sha256 = "17hfih5b1shw2l0fw3dy3q5dxqra80k3h4jfmlnf0bp3ii0385g5"; + url = "http://beta.quicklisp.org/archive/40ants-asdf-system/2024-10-12/40ants-asdf-system-20241012-git.tgz"; + sha256 = "0wi575m0s0a9fvp1wy5ga760f71la16z1633qk6s2f87rwcjs8kw"; system = "40ants-asdf-system"; asd = "40ants-asdf-system"; }); @@ -538,13 +538,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + _40ants-asdf-system-ci = (build-asdf-system { + pname = "40ants-asdf-system-ci"; + version = "20241012-git"; + asds = [ "40ants-asdf-system-ci" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/40ants-asdf-system/2024-10-12/40ants-asdf-system-20241012-git.tgz"; + sha256 = "0wi575m0s0a9fvp1wy5ga760f71la16z1633qk6s2f87rwcjs8kw"; + system = "40ants-asdf-system-ci"; + asd = "40ants-asdf-system-ci"; + }); + systems = [ "40ants-asdf-system-ci" ]; + lispLibs = [ (getAttr "_40ants-ci" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); _40ants-asdf-system-tests = (build-asdf-system { pname = "40ants-asdf-system-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-asdf-system-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/40ants-asdf-system/2023-10-21/40ants-asdf-system-20231021-git.tgz"; - sha256 = "17hfih5b1shw2l0fw3dy3q5dxqra80k3h4jfmlnf0bp3ii0385g5"; + url = "http://beta.quicklisp.org/archive/40ants-asdf-system/2024-10-12/40ants-asdf-system-20241012-git.tgz"; + sha256 = "0wi575m0s0a9fvp1wy5ga760f71la16z1633qk6s2f87rwcjs8kw"; system = "40ants-asdf-system-tests"; asd = "40ants-asdf-system-tests"; }); @@ -556,27 +572,43 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-ci = (build-asdf-system { pname = "40ants-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ci/2023-10-21/ci-20231021-git.tgz"; - sha256 = "083r8l431jig7631r5rq9gcxcp0kcd9qfy9blxjyjyynm56mlndn"; + url = "http://beta.quicklisp.org/archive/ci/2024-10-12/ci-20241012-git.tgz"; + sha256 = "0fmy1302c89qbhn4zc58cydcv8qc3qrl6cjbf2fy53sphnmj0wgm"; system = "40ants-ci"; asd = "40ants-ci"; }); systems = [ "40ants-ci" ]; - lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "_40ants-doc" self) (getAttr "alexandria" self) (getAttr "docs-config" self) (getAttr "str" self) (getAttr "yason" self) ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "serapeum" self) (getAttr "str" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + _40ants-ci-docs = (build-asdf-system { + pname = "40ants-ci-docs"; + version = "20241012-git"; + asds = [ "40ants-ci-docs" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/ci/2024-10-12/ci-20241012-git.tgz"; + sha256 = "0fmy1302c89qbhn4zc58cydcv8qc3qrl6cjbf2fy53sphnmj0wgm"; + system = "40ants-ci-docs"; + asd = "40ants-ci-docs"; + }); + systems = [ "40ants-ci-docs" ]; + lispLibs = [ (getAttr "_40ants-ci" self) (getAttr "_40ants-doc" self) (getAttr "_40ants-logging-docs" self) (getAttr "docs-config" self) ]; meta = { hydraPlatforms = [ ]; }; }); _40ants-ci-tests = (build-asdf-system { pname = "40ants-ci-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-ci-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ci/2023-10-21/ci-20231021-git.tgz"; - sha256 = "083r8l431jig7631r5rq9gcxcp0kcd9qfy9blxjyjyynm56mlndn"; + url = "http://beta.quicklisp.org/archive/ci/2024-10-12/ci-20241012-git.tgz"; + sha256 = "0fmy1302c89qbhn4zc58cydcv8qc3qrl6cjbf2fy53sphnmj0wgm"; system = "40ants-ci-tests"; asd = "40ants-ci-tests"; }); @@ -588,11 +620,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-doc = (build-asdf-system { pname = "40ants-doc"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-doc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/doc/2023-10-21/doc-20231021-git.tgz"; - sha256 = "1vhn3f9j3hs8ra8k2nw4zndaw4d78lkvcmah2nx4jgsmpy9021c1"; + url = "http://beta.quicklisp.org/archive/doc/2024-10-12/doc-20241012-git.tgz"; + sha256 = "1vkczfcdgg1dmzb5jzxvc50kywbz7il130qrj0smlg1grwgw10a2"; system = "40ants-doc"; asd = "40ants-doc"; }); @@ -604,11 +636,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-doc-full = (build-asdf-system { pname = "40ants-doc-full"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-doc-full" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/doc/2023-10-21/doc-20231021-git.tgz"; - sha256 = "1vhn3f9j3hs8ra8k2nw4zndaw4d78lkvcmah2nx4jgsmpy9021c1"; + url = "http://beta.quicklisp.org/archive/doc/2024-10-12/doc-20241012-git.tgz"; + sha256 = "1vkczfcdgg1dmzb5jzxvc50kywbz7il130qrj0smlg1grwgw10a2"; system = "40ants-doc-full"; asd = "40ants-doc-full"; }); @@ -620,11 +652,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-doc-test = (build-asdf-system { pname = "40ants-doc-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-doc-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/doc/2023-10-21/doc-20231021-git.tgz"; - sha256 = "1vhn3f9j3hs8ra8k2nw4zndaw4d78lkvcmah2nx4jgsmpy9021c1"; + url = "http://beta.quicklisp.org/archive/doc/2024-10-12/doc-20241012-git.tgz"; + sha256 = "1vkczfcdgg1dmzb5jzxvc50kywbz7il130qrj0smlg1grwgw10a2"; system = "40ants-doc-test"; asd = "40ants-doc-test"; }); @@ -636,11 +668,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-logging = (build-asdf-system { pname = "40ants-logging"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-logging" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/logging/2023-10-21/logging-20231021-git.tgz"; - sha256 = "1hd0cfqpxvvp0p3rs8q8mnf0h5dapiw3f5z22nyn6xybngdqgp8z"; + url = "http://beta.quicklisp.org/archive/logging/2024-10-12/logging-20241012-git.tgz"; + sha256 = "1rkh0ls12qkwxs7szvnr5fz2bi1wwxsz7z72ywnin13hisvgkkwz"; system = "40ants-logging"; asd = "40ants-logging"; }); @@ -652,11 +684,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-logging-ci = (build-asdf-system { pname = "40ants-logging-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-logging-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/logging/2023-10-21/logging-20231021-git.tgz"; - sha256 = "1hd0cfqpxvvp0p3rs8q8mnf0h5dapiw3f5z22nyn6xybngdqgp8z"; + url = "http://beta.quicklisp.org/archive/logging/2024-10-12/logging-20241012-git.tgz"; + sha256 = "1rkh0ls12qkwxs7szvnr5fz2bi1wwxsz7z72ywnin13hisvgkkwz"; system = "40ants-logging-ci"; asd = "40ants-logging-ci"; }); @@ -668,11 +700,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-logging-docs = (build-asdf-system { pname = "40ants-logging-docs"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-logging-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/logging/2023-10-21/logging-20231021-git.tgz"; - sha256 = "1hd0cfqpxvvp0p3rs8q8mnf0h5dapiw3f5z22nyn6xybngdqgp8z"; + url = "http://beta.quicklisp.org/archive/logging/2024-10-12/logging-20241012-git.tgz"; + sha256 = "1rkh0ls12qkwxs7szvnr5fz2bi1wwxsz7z72ywnin13hisvgkkwz"; system = "40ants-logging-docs"; asd = "40ants-logging-docs"; }); @@ -684,11 +716,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-logging-example = (build-asdf-system { pname = "40ants-logging-example"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-logging-example" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/logging/2023-10-21/logging-20231021-git.tgz"; - sha256 = "1hd0cfqpxvvp0p3rs8q8mnf0h5dapiw3f5z22nyn6xybngdqgp8z"; + url = "http://beta.quicklisp.org/archive/logging/2024-10-12/logging-20241012-git.tgz"; + sha256 = "1rkh0ls12qkwxs7szvnr5fz2bi1wwxsz7z72ywnin13hisvgkkwz"; system = "40ants-logging-example"; asd = "40ants-logging-example"; }); @@ -700,11 +732,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-logging-tests = (build-asdf-system { pname = "40ants-logging-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-logging-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/logging/2023-10-21/logging-20231021-git.tgz"; - sha256 = "1hd0cfqpxvvp0p3rs8q8mnf0h5dapiw3f5z22nyn6xybngdqgp8z"; + url = "http://beta.quicklisp.org/archive/logging/2024-10-12/logging-20241012-git.tgz"; + sha256 = "1rkh0ls12qkwxs7szvnr5fz2bi1wwxsz7z72ywnin13hisvgkkwz"; system = "40ants-logging-tests"; asd = "40ants-logging-tests"; }); @@ -716,11 +748,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-slynk = (build-asdf-system { pname = "40ants-slynk"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-slynk" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/40ants-slynk/2023-10-21/40ants-slynk-20231021-git.tgz"; - sha256 = "0jvwd1my5nsf63r4ync9w3pp9z32bazcr3fppha45sa0jwna1jgi"; + url = "http://beta.quicklisp.org/archive/40ants-slynk/2024-10-12/40ants-slynk-20241012-git.tgz"; + sha256 = "0rz32aaya177s8c4lsasyfff91b2ancjlw8bi50xz150kwqqqmmx"; system = "40ants-slynk"; asd = "40ants-slynk"; }); @@ -732,11 +764,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-slynk-ci = (build-asdf-system { pname = "40ants-slynk-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-slynk-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/40ants-slynk/2023-10-21/40ants-slynk-20231021-git.tgz"; - sha256 = "0jvwd1my5nsf63r4ync9w3pp9z32bazcr3fppha45sa0jwna1jgi"; + url = "http://beta.quicklisp.org/archive/40ants-slynk/2024-10-12/40ants-slynk-20241012-git.tgz"; + sha256 = "0rz32aaya177s8c4lsasyfff91b2ancjlw8bi50xz150kwqqqmmx"; system = "40ants-slynk-ci"; asd = "40ants-slynk-ci"; }); @@ -748,11 +780,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-slynk-docs = (build-asdf-system { pname = "40ants-slynk-docs"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-slynk-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/40ants-slynk/2023-10-21/40ants-slynk-20231021-git.tgz"; - sha256 = "0jvwd1my5nsf63r4ync9w3pp9z32bazcr3fppha45sa0jwna1jgi"; + url = "http://beta.quicklisp.org/archive/40ants-slynk/2024-10-12/40ants-slynk-20241012-git.tgz"; + sha256 = "0rz32aaya177s8c4lsasyfff91b2ancjlw8bi50xz150kwqqqmmx"; system = "40ants-slynk-docs"; asd = "40ants-slynk-docs"; }); @@ -764,11 +796,11 @@ in lib.makeScope pkgs.newScope (self: { }); _40ants-slynk-tests = (build-asdf-system { pname = "40ants-slynk-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "40ants-slynk-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/40ants-slynk/2023-10-21/40ants-slynk-20231021-git.tgz"; - sha256 = "0jvwd1my5nsf63r4ync9w3pp9z32bazcr3fppha45sa0jwna1jgi"; + url = "http://beta.quicklisp.org/archive/40ants-slynk/2024-10-12/40ants-slynk-20241012-git.tgz"; + sha256 = "0rz32aaya177s8c4lsasyfff91b2ancjlw8bi50xz150kwqqqmmx"; system = "40ants-slynk-tests"; asd = "40ants-slynk-tests"; }); @@ -890,22 +922,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - abstract-arrays = (build-asdf-system { - pname = "abstract-arrays"; - version = "20230618-git"; - asds = [ "abstract-arrays" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/abstract-arrays/2023-06-18/abstract-arrays-20230618-git.tgz"; - sha256 = "13vxmq916jxjnvqmzjibyysvq15jdcdbb1hag21z1cik473a3bq4"; - system = "abstract-arrays"; - asd = "abstract-arrays"; - }); - systems = [ "abstract-arrays" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "closer-mop" self) (getAttr "extensible-compound-types" self) (getAttr "introspect-environment" self) (getAttr "polymorphic-functions" self) (getAttr "trivial-types" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); abstract-classes = (build-asdf-system { pname = "abstract-classes"; version = "20190307-hg"; @@ -924,11 +940,11 @@ in lib.makeScope pkgs.newScope (self: { }); access = (build-asdf-system { pname = "access"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "access" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/access/2022-07-07/access-20220707-git.tgz"; - sha256 = "0jgq4xz4pmi7wrgiqvvpkl9k89dhnhsaac68x6mw0w2v7h31vzph"; + url = "http://beta.quicklisp.org/archive/access/2024-10-12/access-20241012-git.tgz"; + sha256 = "0zdjqhb9rvnlq6nzmsp7372gi91k1rq9bz510m6hcki7g3r01iv5"; system = "access"; asd = "access"; }); @@ -938,11 +954,11 @@ in lib.makeScope pkgs.newScope (self: { }); acclimation = (build-asdf-system { pname = "acclimation"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "acclimation" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/acclimation/2023-06-18/acclimation-20230618-git.tgz"; - sha256 = "028nakav74h9b1q45gsd5xp8m9068ssc3abgl6b3q7y2bfy9p78a"; + url = "http://beta.quicklisp.org/archive/acclimation/2024-10-12/acclimation-20241012-git.tgz"; + sha256 = "1rp4794czi01hlv67mgykxym1hqsyn04ldgwiqjwf4lj5d3p7aj4"; system = "acclimation"; asd = "acclimation"; }); @@ -952,11 +968,11 @@ in lib.makeScope pkgs.newScope (self: { }); acclimation-temperature = (build-asdf-system { pname = "acclimation-temperature"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "acclimation-temperature" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/acclimation/2023-06-18/acclimation-20230618-git.tgz"; - sha256 = "028nakav74h9b1q45gsd5xp8m9068ssc3abgl6b3q7y2bfy9p78a"; + url = "http://beta.quicklisp.org/archive/acclimation/2024-10-12/acclimation-20241012-git.tgz"; + sha256 = "1rp4794czi01hlv67mgykxym1hqsyn04ldgwiqjwf4lj5d3p7aj4"; system = "acclimation-temperature"; asd = "acclimation-temperature"; }); @@ -1016,11 +1032,11 @@ in lib.makeScope pkgs.newScope (self: { }); action-list = (build-asdf-system { pname = "action-list"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "action-list" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/action-list/2023-10-21/action-list-20231021-git.tgz"; - sha256 = "1vb5jqj8glvyzw4c9rjap2sxbmsmvylmk3gfr6yvgy6rg0670nbg"; + url = "http://beta.quicklisp.org/archive/action-list/2024-10-12/action-list-20241012-git.tgz"; + sha256 = "0ky38svlm0xhgsmh5maqj314q4wl3apg7532q8apy37axg1y3xvh"; system = "action-list"; asd = "action-list"; }); @@ -1030,13 +1046,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + add-two = (build-asdf-system { + pname = "add-two"; + version = "20241012-git"; + asds = [ "add-two" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/whereiseveryone.command-line-args/2024-10-12/whereiseveryone.command-line-args-20241012-git.tgz"; + sha256 = "140xnz2v0v3hfg3dp2fhidw8ns6lxd3a5knm07wqdp48ksg119wy"; + system = "add-two"; + asd = "add-two"; + }); + systems = [ "add-two" ]; + lispLibs = [ (getAttr "cl-annot" self) (getAttr "whereiseveryone_dot_command-line-args" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); adhoc = (build-asdf-system { pname = "adhoc"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "adhoc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/adhoc/2023-10-21/adhoc-20231021-git.tgz"; - sha256 = "1v2a9v821irg630q4d5jk9ljsm5qakg5idaq4p4bii1w8n6smxp7"; + url = "http://beta.quicklisp.org/archive/adhoc/2024-10-12/adhoc-20241012-git.tgz"; + sha256 = "1h7mnwybapxzpv0zlwr1mr91lsd7wiv722ifa21gczllvrg5qai6"; system = "adhoc"; asd = "adhoc"; }); @@ -1048,11 +1080,11 @@ in lib.makeScope pkgs.newScope (self: { }); adhoc-tests = (build-asdf-system { pname = "adhoc-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "adhoc-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/adhoc/2023-10-21/adhoc-20231021-git.tgz"; - sha256 = "1v2a9v821irg630q4d5jk9ljsm5qakg5idaq4p4bii1w8n6smxp7"; + url = "http://beta.quicklisp.org/archive/adhoc/2024-10-12/adhoc-20241012-git.tgz"; + sha256 = "1h7mnwybapxzpv0zlwr1mr91lsd7wiv722ifa21gczllvrg5qai6"; system = "adhoc-tests"; asd = "adhoc-tests"; }); @@ -1096,11 +1128,11 @@ in lib.makeScope pkgs.newScope (self: { }); adopt = (build-asdf-system { pname = "adopt"; - version = "20220331-hg"; + version = "20241012-hg"; asds = [ "adopt" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/adopt/2022-03-31/adopt-20220331-hg.tgz"; - sha256 = "0lfg12crl68nz0avdyx4j0x0p8vrysr2bl1817iaaa48jp6qp588"; + url = "http://beta.quicklisp.org/archive/adopt/2024-10-12/adopt-20241012-hg.tgz"; + sha256 = "1q36b9bp76daprnhd97h00x56kccmii8pc9w2ra6yihkfbcas41q"; system = "adopt"; asd = "adopt"; }); @@ -1144,16 +1176,48 @@ in lib.makeScope pkgs.newScope (self: { }); adp = (build-asdf-system { pname = "adp"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "adp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/adp/2023-10-21/adp-20231021-git.tgz"; - sha256 = "1k3jcmh2wiq74hd2crww5zqzcnd4fnirzc02n5xs2f99nm1x97s1"; + url = "http://beta.quicklisp.org/archive/adp/2024-10-12/adp-20241012-git.tgz"; + sha256 = "04h91m2x1vcn8iidhx1y2cwb8j55siiifhx1ksy7hyn9hf39b2kv"; system = "adp"; asd = "adp"; }); systems = [ "adp" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "scribble" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "named-readtables" self) (getAttr "scribble" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + adp-github = (build-asdf-system { + pname = "adp-github"; + version = "20241012-git"; + asds = [ "adp-github" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/adp-github/2024-10-12/adp-github-20241012-git.tgz"; + sha256 = "1g33l2k6pc5m8d0d3dl4rf8p364563jpyk22rywrh5188m9nayjc"; + system = "adp-github"; + asd = "adp-github"; + }); + systems = [ "adp-github" ]; + lispLibs = [ (getAttr "adp" self) (getAttr "alexandria" self) (getAttr "closer-mop" self) (getAttr "trivial-arguments" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + adp-plain = (build-asdf-system { + pname = "adp-plain"; + version = "20241012-git"; + asds = [ "adp-plain" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/adp-plain/2024-10-12/adp-plain-20241012-git.tgz"; + sha256 = "0dnfx7hhdibkg0qphs3wsfll2kmpkfpg4hxfjv2paxnsmqdhspnz"; + system = "adp-plain"; + asd = "adp-plain"; + }); + systems = [ "adp-plain" ]; + lispLibs = [ (getAttr "adp" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -1208,11 +1272,11 @@ in lib.makeScope pkgs.newScope (self: { }); agnostic-lizard = (build-asdf-system { pname = "agnostic-lizard"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "agnostic-lizard" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/agnostic-lizard/2022-11-06/agnostic-lizard-20221106-git.tgz"; - sha256 = "13r1pzxkhci0pd8grhvim09lgvaykjyspnj58xq1rp1c017xnpmf"; + url = "http://beta.quicklisp.org/archive/agnostic-lizard/2024-10-12/agnostic-lizard-20241012-git.tgz"; + sha256 = "0amzshh6v3mp24j0h2cinv4zvdlg4kih04md5biakwhnmcw4j4pr"; system = "agnostic-lizard"; asd = "agnostic-lizard"; }); @@ -1224,11 +1288,11 @@ in lib.makeScope pkgs.newScope (self: { }); agnostic-lizard-debugger-prototype = (build-asdf-system { pname = "agnostic-lizard-debugger-prototype"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "agnostic-lizard-debugger-prototype" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/agnostic-lizard/2022-11-06/agnostic-lizard-20221106-git.tgz"; - sha256 = "13r1pzxkhci0pd8grhvim09lgvaykjyspnj58xq1rp1c017xnpmf"; + url = "http://beta.quicklisp.org/archive/agnostic-lizard/2024-10-12/agnostic-lizard-20241012-git.tgz"; + sha256 = "0amzshh6v3mp24j0h2cinv4zvdlg4kih04md5biakwhnmcw4j4pr"; system = "agnostic-lizard-debugger-prototype"; asd = "agnostic-lizard-debugger-prototype"; }); @@ -1252,22 +1316,6 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "alexandria" self) (getAttr "optima" self) ]; meta = {}; }); - ahungry-fleece = (build-asdf-system { - pname = "ahungry-fleece"; - version = "20230214-git"; - asds = [ "ahungry-fleece" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/ahungry-fleece/2023-02-14/ahungry-fleece-20230214-git.tgz"; - sha256 = "1q0bd4fhfypfdvv338gf0gbc8fh65m0p662ik7c9rraijgddi9ry"; - system = "ahungry-fleece"; - asd = "ahungry-fleece"; - }); - systems = [ "ahungry-fleece" ]; - lispLibs = [ (getAttr "archive" self) (getAttr "chipz" self) (getAttr "cl-json" self) (getAttr "cl-yaml" self) (getAttr "md5" self) (getAttr "split-sequence" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); alexa = (build-asdf-system { pname = "alexa"; version = "20180831-git"; @@ -1302,11 +1350,11 @@ in lib.makeScope pkgs.newScope (self: { }); alexandria = (build-asdf-system { pname = "alexandria"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "alexandria" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/alexandria/2023-10-21/alexandria-20231021-git.tgz"; - sha256 = "0pdj779j3nwzn8f1661vf00rrjrbks1xgiq0rvwjw6qyxsfqfnl9"; + url = "http://beta.quicklisp.org/archive/alexandria/2024-10-12/alexandria-20241012-git.tgz"; + sha256 = "0jq0n59s0r9yl374f0zpdnaflb5g853yqvax7ka8rnypspyykwdw"; system = "alexandria"; asd = "alexandria"; }); @@ -1316,11 +1364,11 @@ in lib.makeScope pkgs.newScope (self: { }); alexandria_plus = (build-asdf-system { pname = "alexandria+"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "alexandria+" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/alexandria-plus/2022-11-06/alexandria-plus-20221106-git.tgz"; - sha256 = "1w9r19610h599303gqlx2x5n8mmdynss2gyl7xilg5h6v8z3hkfl"; + url = "http://beta.quicklisp.org/archive/alexandria-plus/2024-10-12/alexandria-plus-20241012-git.tgz"; + sha256 = "05j88i289nx2dgc8r3n3h8x3ma31gk8xk2bpvxc5y9yzfl2mp0hk"; system = "alexandria+"; asd = "alexandria+"; }); @@ -1346,6 +1394,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + allioli = (build-asdf-system { + pname = "allioli"; + version = "20241012-git"; + asds = [ "allioli" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/allioli/2024-10-12/allioli-20241012-git.tgz"; + sha256 = "00504wf4rxrwpc171czlk56zzbf798c39jzhbipm7ba3iz28qkai"; + system = "allioli"; + asd = "allioli"; + }); + systems = [ "allioli" ]; + lispLibs = [ (getAttr "fare-quasiquote-extras" self) (getAttr "named-readtables" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); also-alsa = (build-asdf-system { pname = "also-alsa"; version = "20231021-git"; @@ -1362,6 +1426,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + alternate-asdf-system-connections = (build-asdf-system { + pname = "alternate-asdf-system-connections"; + version = "20241012-git"; + asds = [ "alternate-asdf-system-connections" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/alternate-asdf-system-connections/2024-10-12/alternate-asdf-system-connections-20241012-git.tgz"; + sha256 = "0wlmr29a8azs5kjvwdaqmfn2iwqid0f659cmj34ywchgxahdr6p6"; + system = "alternate-asdf-system-connections"; + asd = "alternate-asdf-system-connections"; + }); + systems = [ "alternate-asdf-system-connections" ]; + lispLibs = [ (getAttr "asdf-system-connections" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); amazon-ecs = (build-asdf-system { pname = "amazon-ecs"; version = "20110418-git"; @@ -1426,11 +1506,11 @@ in lib.makeScope pkgs.newScope (self: { }); anatevka = (build-asdf-system { pname = "anatevka"; - version = "v1.0.0"; + version = "v1.0.1"; asds = [ "anatevka" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/anatevka/2022-11-06/anatevka-v1.0.0.tgz"; - sha256 = "1c8y91nv1jln22j7b82qiad861zfjs9a8nxm18r1dxblszpyygsk"; + url = "http://beta.quicklisp.org/archive/anatevka/2024-10-12/anatevka-v1.0.1.tgz"; + sha256 = "1cxrbbb947pccy6532cxqrdlkfpm0m6z135mnyaiplfsd77jy772"; system = "anatevka"; asd = "anatevka"; }); @@ -1442,27 +1522,27 @@ in lib.makeScope pkgs.newScope (self: { }); anatevka-tests = (build-asdf-system { pname = "anatevka-tests"; - version = "v1.0.0"; + version = "v1.0.1"; asds = [ "anatevka-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/anatevka/2022-11-06/anatevka-v1.0.0.tgz"; - sha256 = "1c8y91nv1jln22j7b82qiad861zfjs9a8nxm18r1dxblszpyygsk"; + url = "http://beta.quicklisp.org/archive/anatevka/2024-10-12/anatevka-v1.0.1.tgz"; + sha256 = "1cxrbbb947pccy6532cxqrdlkfpm0m6z135mnyaiplfsd77jy772"; system = "anatevka-tests"; asd = "anatevka-tests"; }); systems = [ "anatevka-tests" ]; - lispLibs = [ (getAttr "anatevka" self) (getAttr "closer-mop" self) (getAttr "fiasco" self) ]; + lispLibs = [ (getAttr "anatevka" self) (getAttr "closer-mop" self) (getAttr "fiasco" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; }); ansi-escape = (build-asdf-system { pname = "ansi-escape"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ansi-escape" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/croatoan/2023-10-21/croatoan-20231021-git.tgz"; - sha256 = "0x2rlckyn8kn5mqy0fib8piggz694g3naarz2dvha1hsy4jhb1wg"; + url = "http://beta.quicklisp.org/archive/croatoan/2024-10-12/croatoan-20241012-git.tgz"; + sha256 = "04776x4i8inxs8n4mgy9xf0q39bzv4mfz4cl880sxwk6mnhwnn4c"; system = "ansi-escape"; asd = "ansi-escape"; }); @@ -1474,11 +1554,11 @@ in lib.makeScope pkgs.newScope (self: { }); ansi-escape-test = (build-asdf-system { pname = "ansi-escape-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ansi-escape-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/croatoan/2023-10-21/croatoan-20231021-git.tgz"; - sha256 = "0x2rlckyn8kn5mqy0fib8piggz694g3naarz2dvha1hsy4jhb1wg"; + url = "http://beta.quicklisp.org/archive/croatoan/2024-10-12/croatoan-20241012-git.tgz"; + sha256 = "04776x4i8inxs8n4mgy9xf0q39bzv4mfz4cl880sxwk6mnhwnn4c"; system = "ansi-escape-test"; asd = "ansi-escape-test"; }); @@ -1509,7 +1589,7 @@ in lib.makeScope pkgs.newScope (self: { version = "master-df14cb8c-git"; asds = [ "antik" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/antik/2019-10-08/antik-master-df14cb8c-git.tgz"; + url = "http://beta.quicklisp.org/archive/antik/2024-10-12/antik-master-df14cb8c-git.tgz"; sha256 = "1n08cx4n51z8v4bxyak166lp495xda3x7llfxcdpxndxqxcammr0"; system = "antik"; asd = "antik"; @@ -1525,7 +1605,7 @@ in lib.makeScope pkgs.newScope (self: { version = "master-df14cb8c-git"; asds = [ "antik-base" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/antik/2019-10-08/antik-master-df14cb8c-git.tgz"; + url = "http://beta.quicklisp.org/archive/antik/2024-10-12/antik-master-df14cb8c-git.tgz"; sha256 = "1n08cx4n51z8v4bxyak166lp495xda3x7llfxcdpxndxqxcammr0"; system = "antik-base"; asd = "antik-base"; @@ -1538,11 +1618,11 @@ in lib.makeScope pkgs.newScope (self: { }); anypool = (build-asdf-system { pname = "anypool"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "anypool" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/anypool/2023-10-21/anypool-20231021-git.tgz"; - sha256 = "07ha0x6qv1qw68iim3bcr5fk2pnxk0knk8lwyylbvm9rqjmd672i"; + url = "http://beta.quicklisp.org/archive/anypool/2024-10-12/anypool-20241012-git.tgz"; + sha256 = "1ffssc5fzh7gj0z94xxfb3mk5cwja65lrhxyfgib15a6yxqf1kk1"; system = "anypool"; asd = "anypool"; }); @@ -1554,11 +1634,11 @@ in lib.makeScope pkgs.newScope (self: { }); aplesque = (build-asdf-system { pname = "aplesque"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "aplesque" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "aplesque"; asd = "aplesque"; }); @@ -1618,11 +1698,11 @@ in lib.makeScope pkgs.newScope (self: { }); april = (build-asdf-system { pname = "april"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april"; asd = "april"; }); @@ -1634,11 +1714,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-demo_dot_cnn = (build-asdf-system { pname = "april-demo.cnn"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-demo.cnn" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-demo.cnn"; asd = "april-demo.cnn"; }); @@ -1650,11 +1730,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-demo_dot_fnn = (build-asdf-system { pname = "april-demo.fnn"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-demo.fnn" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-demo.fnn"; asd = "april-demo.fnn"; }); @@ -1664,29 +1744,13 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - april-demo_dot_ncurses = (build-asdf-system { - pname = "april-demo.ncurses"; - version = "20231021-git"; - asds = [ "april-demo.ncurses" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; - system = "april-demo.ncurses"; - asd = "april-demo.ncurses"; - }); - systems = [ "april-demo.ncurses" ]; - lispLibs = [ (getAttr "april" self) (getAttr "croatoan" self) (getAttr "lparallel" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); april-lib_dot_dfns_dot_array = (build-asdf-system { pname = "april-lib.dfns.array"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-lib.dfns.array" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-lib.dfns.array"; asd = "april-lib.dfns.array"; }); @@ -1698,11 +1762,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-lib_dot_dfns_dot_graph = (build-asdf-system { pname = "april-lib.dfns.graph"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-lib.dfns.graph" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-lib.dfns.graph"; asd = "april-lib.dfns.graph"; }); @@ -1714,11 +1778,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-lib_dot_dfns_dot_numeric = (build-asdf-system { pname = "april-lib.dfns.numeric"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-lib.dfns.numeric" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-lib.dfns.numeric"; asd = "april-lib.dfns.numeric"; }); @@ -1730,11 +1794,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-lib_dot_dfns_dot_power = (build-asdf-system { pname = "april-lib.dfns.power"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-lib.dfns.power" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-lib.dfns.power"; asd = "april-lib.dfns.power"; }); @@ -1746,11 +1810,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-lib_dot_dfns_dot_string = (build-asdf-system { pname = "april-lib.dfns.string"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-lib.dfns.string" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-lib.dfns.string"; asd = "april-lib.dfns.string"; }); @@ -1762,11 +1826,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-lib_dot_dfns_dot_tree = (build-asdf-system { pname = "april-lib.dfns.tree"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-lib.dfns.tree" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-lib.dfns.tree"; asd = "april-lib.dfns.tree"; }); @@ -1778,11 +1842,11 @@ in lib.makeScope pkgs.newScope (self: { }); april-xt_dot_uzuki = (build-asdf-system { pname = "april-xt.uzuki"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "april-xt.uzuki" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "april-xt.uzuki"; asd = "april-xt.uzuki"; }); @@ -1794,11 +1858,11 @@ in lib.makeScope pkgs.newScope (self: { }); arc-compat = (build-asdf-system { pname = "arc-compat"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "arc-compat" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/arc-compat/2023-06-18/arc-compat-20230618-git.tgz"; - sha256 = "01pysyx5wq5hapg5v8ir3wmql3i4cx0saaf09zbf3cir6c77yjd1"; + url = "http://beta.quicklisp.org/archive/arc-compat/2024-10-12/arc-compat-20241012-git.tgz"; + sha256 = "1wmq5mvlkvdbl4562p3n7x8bhv3swjj0yqbly07y8mv0snasns8d"; system = "arc-compat"; asd = "arc-compat"; }); @@ -1810,11 +1874,11 @@ in lib.makeScope pkgs.newScope (self: { }); architecture_dot_builder-protocol = (build-asdf-system { pname = "architecture.builder-protocol"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "architecture.builder-protocol" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2023-10-21/architecture.builder-protocol-20231021-git.tgz"; - sha256 = "0lim63d70685r7l5xy5zjbjd1qjcvjk2ard92pavl7f6arqrfhfj"; + url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2024-10-12/architecture.builder-protocol-20241012-git.tgz"; + sha256 = "1ckrv0ca57xvsvd9rwjcq0yljiv76wj22p1pjpjbjfr5clb9gl0q"; system = "architecture.builder-protocol"; asd = "architecture.builder-protocol"; }); @@ -1826,11 +1890,11 @@ in lib.makeScope pkgs.newScope (self: { }); architecture_dot_builder-protocol_dot_inspection = (build-asdf-system { pname = "architecture.builder-protocol.inspection"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "architecture.builder-protocol.inspection" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2023-10-21/architecture.builder-protocol-20231021-git.tgz"; - sha256 = "0lim63d70685r7l5xy5zjbjd1qjcvjk2ard92pavl7f6arqrfhfj"; + url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2024-10-12/architecture.builder-protocol-20241012-git.tgz"; + sha256 = "1ckrv0ca57xvsvd9rwjcq0yljiv76wj22p1pjpjbjfr5clb9gl0q"; system = "architecture.builder-protocol.inspection"; asd = "architecture.builder-protocol.inspection"; }); @@ -1842,11 +1906,11 @@ in lib.makeScope pkgs.newScope (self: { }); architecture_dot_builder-protocol_dot_json = (build-asdf-system { pname = "architecture.builder-protocol.json"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "architecture.builder-protocol.json" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2023-10-21/architecture.builder-protocol-20231021-git.tgz"; - sha256 = "0lim63d70685r7l5xy5zjbjd1qjcvjk2ard92pavl7f6arqrfhfj"; + url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2024-10-12/architecture.builder-protocol-20241012-git.tgz"; + sha256 = "1ckrv0ca57xvsvd9rwjcq0yljiv76wj22p1pjpjbjfr5clb9gl0q"; system = "architecture.builder-protocol.json"; asd = "architecture.builder-protocol.json"; }); @@ -1858,11 +1922,11 @@ in lib.makeScope pkgs.newScope (self: { }); architecture_dot_builder-protocol_dot_print-tree = (build-asdf-system { pname = "architecture.builder-protocol.print-tree"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "architecture.builder-protocol.print-tree" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2023-10-21/architecture.builder-protocol-20231021-git.tgz"; - sha256 = "0lim63d70685r7l5xy5zjbjd1qjcvjk2ard92pavl7f6arqrfhfj"; + url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2024-10-12/architecture.builder-protocol-20241012-git.tgz"; + sha256 = "1ckrv0ca57xvsvd9rwjcq0yljiv76wj22p1pjpjbjfr5clb9gl0q"; system = "architecture.builder-protocol.print-tree"; asd = "architecture.builder-protocol.print-tree"; }); @@ -1874,11 +1938,11 @@ in lib.makeScope pkgs.newScope (self: { }); architecture_dot_builder-protocol_dot_universal-builder = (build-asdf-system { pname = "architecture.builder-protocol.universal-builder"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "architecture.builder-protocol.universal-builder" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2023-10-21/architecture.builder-protocol-20231021-git.tgz"; - sha256 = "0lim63d70685r7l5xy5zjbjd1qjcvjk2ard92pavl7f6arqrfhfj"; + url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2024-10-12/architecture.builder-protocol-20241012-git.tgz"; + sha256 = "1ckrv0ca57xvsvd9rwjcq0yljiv76wj22p1pjpjbjfr5clb9gl0q"; system = "architecture.builder-protocol.universal-builder"; asd = "architecture.builder-protocol.universal-builder"; }); @@ -1890,11 +1954,11 @@ in lib.makeScope pkgs.newScope (self: { }); architecture_dot_builder-protocol_dot_xpath = (build-asdf-system { pname = "architecture.builder-protocol.xpath"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "architecture.builder-protocol.xpath" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2023-10-21/architecture.builder-protocol-20231021-git.tgz"; - sha256 = "0lim63d70685r7l5xy5zjbjd1qjcvjk2ard92pavl7f6arqrfhfj"; + url = "http://beta.quicklisp.org/archive/architecture.builder-protocol/2024-10-12/architecture.builder-protocol-20241012-git.tgz"; + sha256 = "1ckrv0ca57xvsvd9rwjcq0yljiv76wj22p1pjpjbjfr5clb9gl0q"; system = "architecture.builder-protocol.xpath"; asd = "architecture.builder-protocol.xpath"; }); @@ -2014,11 +2078,11 @@ in lib.makeScope pkgs.newScope (self: { }); array-utils = (build-asdf-system { pname = "array-utils"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "array-utils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/array-utils/2023-10-21/array-utils-20231021-git.tgz"; - sha256 = "0ldnvmnb4vcwrx1xd1r5av407bky3dqmxcfbgy1h9h9aqm66ax7f"; + url = "http://beta.quicklisp.org/archive/array-utils/2024-10-12/array-utils-20241012-git.tgz"; + sha256 = "0rya7k9sfpyrn5vrn12wywpgsr2f0pmcywv51ixzb0sv8ska0mhs"; system = "array-utils"; asd = "array-utils"; }); @@ -2028,11 +2092,11 @@ in lib.makeScope pkgs.newScope (self: { }); array-utils-test = (build-asdf-system { pname = "array-utils-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "array-utils-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/array-utils/2023-10-21/array-utils-20231021-git.tgz"; - sha256 = "0ldnvmnb4vcwrx1xd1r5av407bky3dqmxcfbgy1h9h9aqm66ax7f"; + url = "http://beta.quicklisp.org/archive/array-utils/2024-10-12/array-utils-20241012-git.tgz"; + sha256 = "0rya7k9sfpyrn5vrn12wywpgsr2f0pmcywv51ixzb0sv8ska0mhs"; system = "array-utils-test"; asd = "array-utils-test"; }); @@ -2060,27 +2124,27 @@ in lib.makeScope pkgs.newScope (self: { }); arrow-macros = (build-asdf-system { pname = "arrow-macros"; - version = "20201220-git"; + version = "20241012-git"; asds = [ "arrow-macros" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/arrow-macros/2020-12-20/arrow-macros-20201220-git.tgz"; - sha256 = "1b7vldvhn8zx60h010573gmqv2igarpnb6h3pq8qydhwfza0xd4g"; + url = "http://beta.quicklisp.org/archive/arrow-macros/2024-10-12/arrow-macros-20241012-git.tgz"; + sha256 = "0q4vpysk4h9ghs5zmnzzilky9jyz7i8n0x0p98nq528crbrkh6c4"; system = "arrow-macros"; asd = "arrow-macros"; }); systems = [ "arrow-macros" ]; - lispLibs = [ (getAttr "alexandria" self) ]; + lispLibs = [ ]; meta = { hydraPlatforms = [ ]; }; }); arrow-macros-test = (build-asdf-system { pname = "arrow-macros-test"; - version = "20201220-git"; + version = "20241012-git"; asds = [ "arrow-macros-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/arrow-macros/2020-12-20/arrow-macros-20201220-git.tgz"; - sha256 = "1b7vldvhn8zx60h010573gmqv2igarpnb6h3pq8qydhwfza0xd4g"; + url = "http://beta.quicklisp.org/archive/arrow-macros/2024-10-12/arrow-macros-20241012-git.tgz"; + sha256 = "0q4vpysk4h9ghs5zmnzzilky9jyz7i8n0x0p98nq528crbrkh6c4"; system = "arrow-macros-test"; asd = "arrow-macros-test"; }); @@ -2186,11 +2250,11 @@ in lib.makeScope pkgs.newScope (self: { }); asdf-driver = (build-asdf-system { pname = "asdf-driver"; - version = "3.3.6"; + version = "3.3.7"; asds = [ "asdf-driver" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/uiop/2023-06-18/uiop-3.3.6.tgz"; - sha256 = "080lcdw90j30gg2vv9bnwj21aq08mp1kk4nax3ffkjssnrnjwhmr"; + url = "http://beta.quicklisp.org/archive/uiop/2024-10-12/uiop-3.3.7.tgz"; + sha256 = "0xvzxglkf9hlly7if0l307k31kwglk2ay4k393545c1l5l1ac584"; system = "asdf-driver"; asd = "asdf-driver"; }); @@ -2406,11 +2470,11 @@ in lib.makeScope pkgs.newScope (self: { }); assoc-utils = (build-asdf-system { pname = "assoc-utils"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "assoc-utils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/assoc-utils/2022-11-06/assoc-utils-20221106-git.tgz"; - sha256 = "0mqb5iw4qwga66y7flifb1n0y5hp4gc3x8xfg4cild46x7mjqxws"; + url = "http://beta.quicklisp.org/archive/assoc-utils/2024-10-12/assoc-utils-20241012-git.tgz"; + sha256 = "0rgfv9qni9dnmm3qnaf1x67h0z38vw2zbmbsdk3a4x5s8ckxln6r"; system = "assoc-utils"; asd = "assoc-utils"; }); @@ -2422,16 +2486,16 @@ in lib.makeScope pkgs.newScope (self: { }); assoc-utils-test = (build-asdf-system { pname = "assoc-utils-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "assoc-utils-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/assoc-utils/2022-11-06/assoc-utils-20221106-git.tgz"; - sha256 = "0mqb5iw4qwga66y7flifb1n0y5hp4gc3x8xfg4cild46x7mjqxws"; + url = "http://beta.quicklisp.org/archive/assoc-utils/2024-10-12/assoc-utils-20241012-git.tgz"; + sha256 = "0rgfv9qni9dnmm3qnaf1x67h0z38vw2zbmbsdk3a4x5s8ckxln6r"; system = "assoc-utils-test"; asd = "assoc-utils-test"; }); systems = [ "assoc-utils-test" ]; - lispLibs = [ (getAttr "assoc-utils" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; + lispLibs = [ (getAttr "assoc-utils" self) (getAttr "rove" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -2470,11 +2534,11 @@ in lib.makeScope pkgs.newScope (self: { }); async-process = (build-asdf-system { pname = "async-process"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "async-process" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/async-process/2023-10-21/async-process-20231021-git.tgz"; - sha256 = "1m2sfgfg6c0gqqy1pqsahsiw3j25y473mfw7sx0akkqbhwhm7mjb"; + url = "http://beta.quicklisp.org/archive/async-process/2024-10-12/async-process-20241012-git.tgz"; + sha256 = "0691z0vs5c65m24p1yi12iy27j59layzvzyy1yl19704x05442qh"; system = "async-process"; asd = "async-process"; }); @@ -2502,11 +2566,11 @@ in lib.makeScope pkgs.newScope (self: { }); atomics = (build-asdf-system { pname = "atomics"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "atomics" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/atomics/2023-10-21/atomics-20231021-git.tgz"; - sha256 = "02xiqgmn4kzgsb51szrh73jr6gl9gcjajgiiffvabzzdjiic6l2z"; + url = "http://beta.quicklisp.org/archive/atomics/2024-10-12/atomics-20241012-git.tgz"; + sha256 = "1ah6fgvfva0axnhj4sp1qy6gjyw41fkhpnv998di0wbp6hls8j39"; system = "atomics"; asd = "atomics"; }); @@ -2518,11 +2582,11 @@ in lib.makeScope pkgs.newScope (self: { }); atomics-test = (build-asdf-system { pname = "atomics-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "atomics-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/atomics/2023-10-21/atomics-20231021-git.tgz"; - sha256 = "02xiqgmn4kzgsb51szrh73jr6gl9gcjajgiiffvabzzdjiic6l2z"; + url = "http://beta.quicklisp.org/archive/atomics/2024-10-12/atomics-20241012-git.tgz"; + sha256 = "1ah6fgvfva0axnhj4sp1qy6gjyw41fkhpnv998di0wbp6hls8j39"; system = "atomics-test"; asd = "atomics-test"; }); @@ -2582,11 +2646,11 @@ in lib.makeScope pkgs.newScope (self: { }); auto-restart = (build-asdf-system { pname = "auto-restart"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "auto-restart" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/auto-restart/2022-11-06/auto-restart-20221106-git.tgz"; - sha256 = "1kzcxq57s3qfshvlp9w2yxs6kiyrvssrl94pa3vdf3x7644swrzi"; + url = "http://beta.quicklisp.org/archive/auto-restart/2024-10-12/auto-restart-20241012-git.tgz"; + sha256 = "1kz50w4x7glin8fyrfysazz07r4rrk90daml35yrwnz08vi3dfw7"; system = "auto-restart"; asd = "auto-restart"; }); @@ -2614,11 +2678,11 @@ in lib.makeScope pkgs.newScope (self: { }); automaton = (build-asdf-system { pname = "automaton"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "automaton" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "automaton"; asd = "automaton"; }); @@ -2694,16 +2758,16 @@ in lib.makeScope pkgs.newScope (self: { }); aws-sdk = (build-asdf-system { pname = "aws-sdk"; - version = "20230215-git"; + version = "20241012-git"; asds = [ "aws-sdk" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/aws-sdk-lisp/2023-02-15/aws-sdk-lisp-20230215-git.tgz"; - sha256 = "0h10y5qj1jjv4nnwn0qm3bwbx67bxrvnjf578nzwn8bk85x3wvl1"; + url = "http://beta.quicklisp.org/archive/aws-sdk-lisp/2024-10-12/aws-sdk-lisp-20241012-git.tgz"; + sha256 = "0iqm441fr1qx5py7cvrv4jl9zgfsm813igwvq3rj90606g6lyxjc"; system = "aws-sdk"; asd = "aws-sdk"; }); systems = [ "aws-sdk" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "assoc-utils" self) (getAttr "aws-sign4" self) (getAttr "babel" self) (getAttr "cl-ppcre" self) (getAttr "dexador" self) (getAttr "ironclad" self) (getAttr "kebab" self) (getAttr "local-time" self) (getAttr "parser_dot_ini" self) (getAttr "quri" self) (getAttr "trivial-timeout" self) (getAttr "trivial-types" self) (getAttr "xmls" self) (getAttr "yason" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "assoc-utils" self) (getAttr "aws-sign4" self) (getAttr "babel" self) (getAttr "cl-base64" self) (getAttr "cl-ppcre" self) (getAttr "dexador" self) (getAttr "ironclad" self) (getAttr "kebab" self) (getAttr "local-time" self) (getAttr "parser_dot_ini" self) (getAttr "quri" self) (getAttr "trivial-timeout" self) (getAttr "trivial-types" self) (getAttr "xmls" self) (getAttr "yason" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -2790,11 +2854,11 @@ in lib.makeScope pkgs.newScope (self: { }); babel = (build-asdf-system { pname = "babel"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "babel" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/babel/2023-02-14/babel-20230214-git.tgz"; - sha256 = "1sndap9ykyyvrzlqm9smgqy49r3n67l926yg0hb7pm00plj0y380"; + url = "http://beta.quicklisp.org/archive/babel/2024-10-12/babel-20241012-git.tgz"; + sha256 = "0359bj3yr6frybcmg8qr5vi4q8hzbsb7hmvxdc0jgkfz3c33q667"; system = "babel"; asd = "babel"; }); @@ -2804,11 +2868,11 @@ in lib.makeScope pkgs.newScope (self: { }); babel-streams = (build-asdf-system { pname = "babel-streams"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "babel-streams" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/babel/2023-02-14/babel-20230214-git.tgz"; - sha256 = "1sndap9ykyyvrzlqm9smgqy49r3n67l926yg0hb7pm00plj0y380"; + url = "http://beta.quicklisp.org/archive/babel/2024-10-12/babel-20241012-git.tgz"; + sha256 = "0359bj3yr6frybcmg8qr5vi4q8hzbsb7hmvxdc0jgkfz3c33q667"; system = "babel-streams"; asd = "babel-streams"; }); @@ -2820,11 +2884,11 @@ in lib.makeScope pkgs.newScope (self: { }); babel-tests = (build-asdf-system { pname = "babel-tests"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "babel-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/babel/2023-02-14/babel-20230214-git.tgz"; - sha256 = "1sndap9ykyyvrzlqm9smgqy49r3n67l926yg0hb7pm00plj0y380"; + url = "http://beta.quicklisp.org/archive/babel/2024-10-12/babel-20241012-git.tgz"; + sha256 = "0359bj3yr6frybcmg8qr5vi4q8hzbsb7hmvxdc0jgkfz3c33q667"; system = "babel-tests"; asd = "babel-tests"; }); @@ -2932,11 +2996,11 @@ in lib.makeScope pkgs.newScope (self: { }); bdef = (build-asdf-system { pname = "bdef"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "bdef" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/bdef/2023-10-21/bdef-20231021-git.tgz"; - sha256 = "0rx7dm5hj2llp6x6j6dxg0arn8854xf18k3kqvbrm3wk5nz19w98"; + url = "http://beta.quicklisp.org/archive/bdef/2024-10-12/bdef-20241012-git.tgz"; + sha256 = "16jz9fxxjcpnmhx0yagv8xs7l0b7qh8yx7i7p8fnlxz3pn7726y6"; system = "bdef"; asd = "bdef"; }); @@ -3074,66 +3138,18 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - bike = (build-asdf-system { - pname = "bike"; - version = "20231021-git"; - asds = [ "bike" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/bike/2023-10-21/bike-20231021-git.tgz"; - sha256 = "0z1200blyri0h6dm6p6h4z4icn860nnhgw5x1iyl4rx237ssdwf2"; - system = "bike"; - asd = "bike"; - }); - systems = [ "bike" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bike-internals" self) (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cl-ppcre" self) (getAttr "closer-mop" self) (getAttr "flexi-streams" self) (getAttr "global-vars" self) (getAttr "named-readtables" self) (getAttr "split-sequence" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - bike-examples = (build-asdf-system { - pname = "bike-examples"; - version = "20231021-git"; - asds = [ "bike-examples" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/bike/2023-10-21/bike-20231021-git.tgz"; - sha256 = "0z1200blyri0h6dm6p6h4z4icn860nnhgw5x1iyl4rx237ssdwf2"; - system = "bike-examples"; - asd = "bike-examples"; - }); - systems = [ "bike-examples" ]; - lispLibs = [ (getAttr "bike" self) (getAttr "float-features" self) (getAttr "trivial-features" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); bike-internals = (build-asdf-system { pname = "bike-internals"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "bike-internals" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/bike/2023-10-21/bike-20231021-git.tgz"; - sha256 = "0z1200blyri0h6dm6p6h4z4icn860nnhgw5x1iyl4rx237ssdwf2"; + url = "http://beta.quicklisp.org/archive/bike/2024-10-12/bike-20241012-git.tgz"; + sha256 = "0ssv4n39wl3i0r8gy2sg6rxfz571jcfsd6db9ndy13drqnhyda6s"; system = "bike-internals"; asd = "bike-internals"; }); systems = [ "bike-internals" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cl-ppcre" self) (getAttr "flexi-streams" self) (getAttr "global-vars" self) (getAttr "split-sequence" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - bike-tests = (build-asdf-system { - pname = "bike-tests"; - version = "20231021-git"; - asds = [ "bike-tests" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/bike/2023-10-21/bike-20231021-git.tgz"; - sha256 = "0z1200blyri0h6dm6p6h4z4icn860nnhgw5x1iyl4rx237ssdwf2"; - system = "bike-tests"; - asd = "bike-tests"; - }); - systems = [ "bike-tests" ]; - lispLibs = [ (getAttr "bike" self) (getAttr "fiveam" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cl-ppcre" self) (getAttr "closer-mop" self) (getAttr "flexi-streams" self) (getAttr "global-vars" self) (getAttr "split-sequence" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -3156,11 +3172,11 @@ in lib.makeScope pkgs.newScope (self: { }); binary-lass = (build-asdf-system { pname = "binary-lass"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "binary-lass" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lass/2023-10-21/lass-20231021-git.tgz"; - sha256 = "1wax2kykc9ff0sk2linp9v8fcsm5ay6idpq365vivady9fh504r5"; + url = "http://beta.quicklisp.org/archive/lass/2024-10-12/lass-20241012-git.tgz"; + sha256 = "1b6a3v763i5fcdxczffd59kh4m73p4ilz6az85apd22apc8lr80z"; system = "binary-lass"; asd = "binary-lass"; }); @@ -3204,16 +3220,16 @@ in lib.makeScope pkgs.newScope (self: { }); binary-structures = (build-asdf-system { pname = "binary-structures"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "binary-structures" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/binary-structures/2023-10-21/binary-structures-20231021-git.tgz"; - sha256 = "0agiwvr7asqjlrhxgypmzrlgvy1gjfnrl768vvmg2q7n72km13z3"; + url = "http://beta.quicklisp.org/archive/binary-structures/2024-10-12/binary-structures-20241012-git.tgz"; + sha256 = "1ygfa4xgd0wliggmmxlqqh9nd7hfsgjwl168l8s9r595vx6fnzmb"; system = "binary-structures"; asd = "binary-structures"; }); systems = [ "binary-structures" ]; - lispLibs = [ (getAttr "babel" self) (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "nibbles" self) (getAttr "trivial-extensible-sequences" self) ]; + lispLibs = [ (getAttr "babel" self) (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "form-fiddle" self) (getAttr "nibbles" self) (getAttr "trivial-extensible-sequences" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -3268,11 +3284,11 @@ in lib.makeScope pkgs.newScope (self: { }); binding-arrows = (build-asdf-system { pname = "binding-arrows"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "binding-arrows" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/binding-arrows/2023-10-21/binding-arrows-20231021-git.tgz"; - sha256 = "05m2p7p8wmy2by51yd467ry0xyl020p9kbyrb86qfglgsl0xzykn"; + url = "http://beta.quicklisp.org/archive/binding-arrows/2024-10-12/binding-arrows-20241012-git.tgz"; + sha256 = "0kzybw5qlb49czh9v2lnxniz9jzqx306a6lnarfv59x48a7cch22"; system = "binding-arrows"; asd = "binding-arrows"; }); @@ -3282,6 +3298,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + binding-knx = (build-asdf-system { + pname = "binding-knx"; + version = "20241012-git"; + asds = [ "binding-knx" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/chipi/2024-10-12/chipi-20241012-git.tgz"; + sha256 = "0xpfclvl5v031cjnjvr3bcfc87rayw624m9yrw35f5r31p8m283g"; + system = "binding-knx"; + asd = "binding-knx"; + }); + systems = [ "binding-knx" ]; + lispLibs = [ (getAttr "chipi" self) (getAttr "knx-conn" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); binfix = (build-asdf-system { pname = "binfix"; version = "20190813-git"; @@ -3344,11 +3376,11 @@ in lib.makeScope pkgs.newScope (self: { }); birch = (build-asdf-system { pname = "birch"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "birch" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/birch/2022-02-20/birch-20220220-git.tgz"; - sha256 = "0b2wh1n9b5r1dyvgg9hhh97plbj4j5anasfbii92s2g8h2ilb4yb"; + url = "http://beta.quicklisp.org/archive/birch/2024-10-12/birch-20241012-git.tgz"; + sha256 = "1b24xng92ra7420s3zy44pybk4h7xg4kjwdk35arl46badgi28r1"; system = "birch"; asd = "birch"; }); @@ -3360,11 +3392,11 @@ in lib.makeScope pkgs.newScope (self: { }); birch_dot_test = (build-asdf-system { pname = "birch.test"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "birch.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/birch/2022-02-20/birch-20220220-git.tgz"; - sha256 = "0b2wh1n9b5r1dyvgg9hhh97plbj4j5anasfbii92s2g8h2ilb4yb"; + url = "http://beta.quicklisp.org/archive/birch/2024-10-12/birch-20241012-git.tgz"; + sha256 = "1b24xng92ra7420s3zy44pybk4h7xg4kjwdk35arl46badgi28r1"; system = "birch.test"; asd = "birch.test"; }); @@ -3680,11 +3712,11 @@ in lib.makeScope pkgs.newScope (self: { }); blackbird = (build-asdf-system { pname = "blackbird"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "blackbird" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/blackbird/2022-11-06/blackbird-20221106-git.tgz"; - sha256 = "1r0f9473akzm6zyj494ma5p39hfkixa8aj17dhcdfa4kmqf9f6al"; + url = "http://beta.quicklisp.org/archive/blackbird/2024-10-12/blackbird-20241012-git.tgz"; + sha256 = "0bqg8sn816qfar410w2c2k07vqh9sig8zbkvlmwj1bk33snvmam8"; system = "blackbird"; asd = "blackbird"; }); @@ -3694,11 +3726,11 @@ in lib.makeScope pkgs.newScope (self: { }); blackbird-test = (build-asdf-system { pname = "blackbird-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "blackbird-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/blackbird/2022-11-06/blackbird-20221106-git.tgz"; - sha256 = "1r0f9473akzm6zyj494ma5p39hfkixa8aj17dhcdfa4kmqf9f6al"; + url = "http://beta.quicklisp.org/archive/blackbird/2024-10-12/blackbird-20241012-git.tgz"; + sha256 = "0bqg8sn816qfar410w2c2k07vqh9sig8zbkvlmwj1bk33snvmam8"; system = "blackbird-test"; asd = "blackbird-test"; }); @@ -3806,11 +3838,11 @@ in lib.makeScope pkgs.newScope (self: { }); bmas = (build-asdf-system { pname = "bmas"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "bmas" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-bmas/2023-06-18/cl-bmas-20230618-git.tgz"; - sha256 = "0k8dxz49bmmd9d1dbmkwm9kb8hmgj9bzq0bycpr3250prin855ip"; + url = "http://beta.quicklisp.org/archive/cl-bmas/2024-10-12/cl-bmas-20241012-git.tgz"; + sha256 = "1j4wniwcxz4kqzw7q3ac8rpz2xhd0qfdgl5dylswh02ifdgq9z4m"; system = "bmas"; asd = "bmas"; }); @@ -4156,6 +4188,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + boondoggle = (build-asdf-system { + pname = "boondoggle"; + version = "20241012-git"; + asds = [ "boondoggle" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quilc/2024-10-12/quilc-20241012-git.tgz"; + sha256 = "0qy3fzd5cljq1dg5l3nd36wk7a6vna8lm22q0vncchpxvsdgnjpy"; + system = "boondoggle"; + asd = "boondoggle"; + }); + systems = [ "boondoggle" ]; + lispLibs = [ (getAttr "cl-quil" self) (getAttr "command-line-arguments" self) (getAttr "drakma" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + boondoggle-tests = (build-asdf-system { + pname = "boondoggle-tests"; + version = "20241012-git"; + asds = [ "boondoggle-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quilc/2024-10-12/quilc-20241012-git.tgz"; + sha256 = "0qy3fzd5cljq1dg5l3nd36wk7a6vna8lm22q0vncchpxvsdgnjpy"; + system = "boondoggle-tests"; + asd = "boondoggle-tests"; + }); + systems = [ "boondoggle-tests" ]; + lispLibs = [ (getAttr "boondoggle" self) (getAttr "cl-quil" self) (getAttr "fiasco" self) (getAttr "sapaclisp" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); bordeaux-fft = (build-asdf-system { pname = "bordeaux-fft"; version = "20150608-http"; @@ -4174,11 +4238,11 @@ in lib.makeScope pkgs.newScope (self: { }); bordeaux-threads = (build-asdf-system { pname = "bordeaux-threads"; - version = "v0.9.3"; + version = "v0.9.4"; asds = [ "bordeaux-threads" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/bordeaux-threads/2023-10-21/bordeaux-threads-v0.9.3.tgz"; - sha256 = "06kf639gyysfcls79nrs92z43wdwi97mr9bblfnmdhpi415cwzm9"; + url = "http://beta.quicklisp.org/archive/bordeaux-threads/2024-10-12/bordeaux-threads-v0.9.4.tgz"; + sha256 = "1ds1aa3rd38hq5i1nwd9qi8icxmdag0shcwwsf7km91v9214385d"; system = "bordeaux-threads"; asd = "bordeaux-threads"; }); @@ -4726,11 +4790,11 @@ in lib.makeScope pkgs.newScope (self: { }); calm = (build-asdf-system { pname = "calm"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "calm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/calm/2023-10-21/calm-20231021-git.tgz"; - sha256 = "0h45h6clv08mmzp6qgz05hr76sai9kph4jwxhkx2p0hhgkwn7k9c"; + url = "http://beta.quicklisp.org/archive/calm/2024-10-12/calm-20241012-git.tgz"; + sha256 = "0c8d7aagx02cqk42pyj62hpqz3yarncigsw0g2ccc64sk74v67js"; system = "calm"; asd = "calm"; }); @@ -4934,11 +4998,11 @@ in lib.makeScope pkgs.newScope (self: { }); carrier = (build-asdf-system { pname = "carrier"; - version = "20181210-git"; + version = "20241012-git"; asds = [ "carrier" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/carrier/2018-12-10/carrier-20181210-git.tgz"; - sha256 = "1xry7alc9x86y1g5k417vhvlgkwgfrl80zpsyfdwdsz7hrwff41d"; + url = "http://beta.quicklisp.org/archive/carrier/2024-10-12/carrier-20241012-git.tgz"; + sha256 = "04w6hzqqbcvi8niqj35xz098gjfg4pdv6fbihfbna3c5v7q59gr1"; system = "carrier"; asd = "carrier"; }); @@ -4966,11 +5030,11 @@ in lib.makeScope pkgs.newScope (self: { }); caveman-middleware-dbimanager = (build-asdf-system { pname = "caveman-middleware-dbimanager"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "caveman-middleware-dbimanager" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/caveman/2022-11-06/caveman-20221106-git.tgz"; - sha256 = "041i1g78cn6mjv8ba4bylw57f3px2rp5a0jnj17rwkfhfcvc76md"; + url = "http://beta.quicklisp.org/archive/caveman/2024-10-12/caveman-20241012-git.tgz"; + sha256 = "1q07mmm41zymh464j4mldf3lv1sb9amzdcwinkywqhwnjmnx6axi"; system = "caveman-middleware-dbimanager"; asd = "caveman-middleware-dbimanager"; }); @@ -4982,11 +5046,11 @@ in lib.makeScope pkgs.newScope (self: { }); caveman2 = (build-asdf-system { pname = "caveman2"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "caveman2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/caveman/2022-11-06/caveman-20221106-git.tgz"; - sha256 = "041i1g78cn6mjv8ba4bylw57f3px2rp5a0jnj17rwkfhfcvc76md"; + url = "http://beta.quicklisp.org/archive/caveman/2024-10-12/caveman-20241012-git.tgz"; + sha256 = "1q07mmm41zymh464j4mldf3lv1sb9amzdcwinkywqhwnjmnx6axi"; system = "caveman2"; asd = "caveman2"; }); @@ -4998,11 +5062,11 @@ in lib.makeScope pkgs.newScope (self: { }); caveman2-db = (build-asdf-system { pname = "caveman2-db"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "caveman2-db" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/caveman/2022-11-06/caveman-20221106-git.tgz"; - sha256 = "041i1g78cn6mjv8ba4bylw57f3px2rp5a0jnj17rwkfhfcvc76md"; + url = "http://beta.quicklisp.org/archive/caveman/2024-10-12/caveman-20241012-git.tgz"; + sha256 = "1q07mmm41zymh464j4mldf3lv1sb9amzdcwinkywqhwnjmnx6axi"; system = "caveman2-db"; asd = "caveman2-db"; }); @@ -5014,11 +5078,11 @@ in lib.makeScope pkgs.newScope (self: { }); caveman2-test = (build-asdf-system { pname = "caveman2-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "caveman2-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/caveman/2022-11-06/caveman-20221106-git.tgz"; - sha256 = "041i1g78cn6mjv8ba4bylw57f3px2rp5a0jnj17rwkfhfcvc76md"; + url = "http://beta.quicklisp.org/archive/caveman/2024-10-12/caveman-20241012-git.tgz"; + sha256 = "1q07mmm41zymh464j4mldf3lv1sb9amzdcwinkywqhwnjmnx6axi"; system = "caveman2-test"; asd = "caveman2-test"; }); @@ -5108,6 +5172,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cbor = (build-asdf-system { + pname = "cbor"; + version = "20241012-git"; + asds = [ "cbor" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cbor/2024-10-12/cbor-20241012-git.tgz"; + sha256 = "0bkjfi449m651hbsm39dc9863mcry3ynz1j59wb2kl8zwxm1qg2r"; + system = "cbor"; + asd = "cbor"; + }); + systems = [ "cbor" ]; + lispLibs = [ (getAttr "closer-mop" self) (getAttr "ieee-floats" self) (getAttr "local-time" self) (getAttr "trivial-utf-8" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); ccl-compat = (build-asdf-system { pname = "ccl-compat"; version = "20171130-git"; @@ -5126,27 +5206,43 @@ in lib.makeScope pkgs.newScope (self: { }); ccldoc = (build-asdf-system { pname = "ccldoc"; - version = "20200427-git"; + version = "20241012-git"; asds = [ "ccldoc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ccldoc/2020-04-27/ccldoc-20200427-git.tgz"; - sha256 = "0pxjk07drvxrk65g46lbpz2y0xgxgn04k6yvirl0hk2dry0myinp"; + url = "http://beta.quicklisp.org/archive/ccldoc/2024-10-12/ccldoc-20241012-git.tgz"; + sha256 = "15pc25pwnlg2lhzxniln53fr2i2cqa6fpr60nv4i1743x9ahp35l"; system = "ccldoc"; asd = "ccldoc"; }); systems = [ "ccldoc" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "ccl-compat" self) (getAttr "cl-who" self) (getAttr "s-xml" self) (getAttr "split-sequence" self) ]; + lispLibs = [ (getAttr "ccl-compat" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + ccldoc-docbook = (build-asdf-system { + pname = "ccldoc-docbook"; + version = "20241012-git"; + asds = [ "ccldoc-docbook" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/ccldoc/2024-10-12/ccldoc-20241012-git.tgz"; + sha256 = "15pc25pwnlg2lhzxniln53fr2i2cqa6fpr60nv4i1743x9ahp35l"; + system = "ccldoc-docbook"; + asd = "ccldoc-docbook"; + }); + systems = [ "ccldoc-docbook" ]; + lispLibs = [ (getAttr "ccldoc" self) (getAttr "s-xml" self) ]; meta = { hydraPlatforms = [ ]; }; }); ccldoc-libraries = (build-asdf-system { pname = "ccldoc-libraries"; - version = "20200427-git"; + version = "20241012-git"; asds = [ "ccldoc-libraries" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ccldoc/2020-04-27/ccldoc-20200427-git.tgz"; - sha256 = "0pxjk07drvxrk65g46lbpz2y0xgxgn04k6yvirl0hk2dry0myinp"; + url = "http://beta.quicklisp.org/archive/ccldoc/2024-10-12/ccldoc-20241012-git.tgz"; + sha256 = "15pc25pwnlg2lhzxniln53fr2i2cqa6fpr60nv4i1743x9ahp35l"; system = "ccldoc-libraries"; asd = "ccldoc-libraries"; }); @@ -5156,6 +5252,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + ceigen-lite = (build-asdf-system { + pname = "ceigen-lite"; + version = "20241012-git"; + asds = [ "ceigen-lite" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-ceigen-lite/2024-10-12/cl-ceigen-lite-20241012-git.tgz"; + sha256 = "0k2b6x913mnv1f5712xvvv7d6j3lrja4isjg6cyad694py59d09q"; + system = "ceigen-lite"; + asd = "ceigen-lite"; + }); + systems = [ "ceigen-lite" ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "cl-autowrap" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cells = (build-asdf-system { pname = "cells"; version = "20230618-git"; @@ -5190,11 +5302,11 @@ in lib.makeScope pkgs.newScope (self: { }); cephes = (build-asdf-system { pname = "cephes"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cephes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cephes.cl/2023-10-21/cephes.cl-20231021-git.tgz"; - sha256 = "1h115lxlqgw39vp97psx1xy4g668rx1b233zp3nhn18rj6hniadr"; + url = "http://beta.quicklisp.org/archive/cephes.cl/2024-10-12/cephes.cl-20241012-git.tgz"; + sha256 = "1p0npidiy9zjb90gyihdmx0nmm87a5akph1jhs6y7z50fx8470hb"; system = "cephes"; asd = "cephes"; }); @@ -5206,11 +5318,11 @@ in lib.makeScope pkgs.newScope (self: { }); cepl = (build-asdf-system { pname = "cepl"; - version = "release-quicklisp-d1a10b6c-git"; + version = "release-quicklisp-543c9fc1-git"; asds = [ "cepl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cepl/2021-02-28/cepl-release-quicklisp-d1a10b6c-git.tgz"; - sha256 = "0izbw2advqm3wailj3dpq6zqfrfirwn14pw5qmqh8i71r51xwmm2"; + url = "http://beta.quicklisp.org/archive/cepl/2024-10-12/cepl-release-quicklisp-543c9fc1-git.tgz"; + sha256 = "0g5frci6ljmy6pyyrjhh2kw894l3fl3wsz27k75xw49cd8xm24mh"; system = "cepl"; asd = "cepl"; }); @@ -5222,11 +5334,11 @@ in lib.makeScope pkgs.newScope (self: { }); cepl_dot_build = (build-asdf-system { pname = "cepl.build"; - version = "release-quicklisp-d1a10b6c-git"; + version = "release-quicklisp-543c9fc1-git"; asds = [ "cepl.build" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cepl/2021-02-28/cepl-release-quicklisp-d1a10b6c-git.tgz"; - sha256 = "0izbw2advqm3wailj3dpq6zqfrfirwn14pw5qmqh8i71r51xwmm2"; + url = "http://beta.quicklisp.org/archive/cepl/2024-10-12/cepl-release-quicklisp-543c9fc1-git.tgz"; + sha256 = "0g5frci6ljmy6pyyrjhh2kw894l3fl3wsz27k75xw49cd8xm24mh"; system = "cepl.build"; asd = "cepl.build"; }); @@ -5430,11 +5542,11 @@ in lib.makeScope pkgs.newScope (self: { }); cerberus = (build-asdf-system { pname = "cerberus"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "cerberus" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cerberus/2022-11-06/cerberus-20221106-git.tgz"; - sha256 = "04yi0wqykx5v8drdw7ln382gxdklv60mg4aqrxg2j5wlsyacs0kb"; + url = "http://beta.quicklisp.org/archive/cerberus/2024-10-12/cerberus-20241012-git.tgz"; + sha256 = "131x0raccj5majd72hmmlp67dsj2zdizm2xzdhw6s0jbxjbhdgfs"; system = "cerberus"; asd = "cerberus"; }); @@ -5446,11 +5558,11 @@ in lib.makeScope pkgs.newScope (self: { }); cerberus-kdc = (build-asdf-system { pname = "cerberus-kdc"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "cerberus-kdc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cerberus/2022-11-06/cerberus-20221106-git.tgz"; - sha256 = "04yi0wqykx5v8drdw7ln382gxdklv60mg4aqrxg2j5wlsyacs0kb"; + url = "http://beta.quicklisp.org/archive/cerberus/2024-10-12/cerberus-20241012-git.tgz"; + sha256 = "131x0raccj5majd72hmmlp67dsj2zdizm2xzdhw6s0jbxjbhdgfs"; system = "cerberus-kdc"; asd = "cerberus"; }); @@ -5492,13 +5604,45 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cf = (build-asdf-system { + pname = "cf"; + version = "20241012-git"; + asds = [ "cf" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-cf/2024-10-12/cl-cf-20241012-git.tgz"; + sha256 = "1w4asb8v81q2rf8fhhq88c2ib4ax5fbm0655kvdpfvkz1457yi25"; + system = "cf"; + asd = "cf"; + }); + systems = [ "cf" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + cf-tests = (build-asdf-system { + pname = "cf-tests"; + version = "20241012-git"; + asds = [ "cf-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-cf/2024-10-12/cl-cf-20241012-git.tgz"; + sha256 = "1w4asb8v81q2rf8fhhq88c2ib4ax5fbm0655kvdpfvkz1457yi25"; + system = "cf-tests"; + asd = "cf-tests"; + }); + systems = [ "cf-tests" ]; + lispLibs = [ (getAttr "cf" self) (getAttr "fiveam" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cffi = (build-asdf-system { pname = "cffi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi/2023-10-21/cffi-20231021-git.tgz"; - sha256 = "1d4kckxsqpyk3ihjv01c0hhxnswn4fnx4m6257z1dfhwya02s8bk"; + url = "http://beta.quicklisp.org/archive/cffi/2024-10-12/cffi-20241012-git.tgz"; + sha256 = "1b2j32rapgw8rn7m9sm2k8r8x9jds7vshkm90i5lw9v4xnp8x4m7"; system = "cffi"; asd = "cffi"; }); @@ -5524,11 +5668,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-examples = (build-asdf-system { pname = "cffi-examples"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi/2023-10-21/cffi-20231021-git.tgz"; - sha256 = "1d4kckxsqpyk3ihjv01c0hhxnswn4fnx4m6257z1dfhwya02s8bk"; + url = "http://beta.quicklisp.org/archive/cffi/2024-10-12/cffi-20241012-git.tgz"; + sha256 = "1b2j32rapgw8rn7m9sm2k8r8x9jds7vshkm90i5lw9v4xnp8x4m7"; system = "cffi-examples"; asd = "cffi-examples"; }); @@ -5540,11 +5684,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-grovel = (build-asdf-system { pname = "cffi-grovel"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-grovel" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi/2023-10-21/cffi-20231021-git.tgz"; - sha256 = "1d4kckxsqpyk3ihjv01c0hhxnswn4fnx4m6257z1dfhwya02s8bk"; + url = "http://beta.quicklisp.org/archive/cffi/2024-10-12/cffi-20241012-git.tgz"; + sha256 = "1b2j32rapgw8rn7m9sm2k8r8x9jds7vshkm90i5lw9v4xnp8x4m7"; system = "cffi-grovel"; asd = "cffi-grovel"; }); @@ -5554,11 +5698,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-libffi = (build-asdf-system { pname = "cffi-libffi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-libffi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi/2023-10-21/cffi-20231021-git.tgz"; - sha256 = "1d4kckxsqpyk3ihjv01c0hhxnswn4fnx4m6257z1dfhwya02s8bk"; + url = "http://beta.quicklisp.org/archive/cffi/2024-10-12/cffi-20241012-git.tgz"; + sha256 = "1b2j32rapgw8rn7m9sm2k8r8x9jds7vshkm90i5lw9v4xnp8x4m7"; system = "cffi-libffi"; asd = "cffi-libffi"; }); @@ -5570,11 +5714,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-object = (build-asdf-system { pname = "cffi-object"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-object" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi-object/2023-10-21/cffi-object-20231021-git.tgz"; - sha256 = "04wdwp2r5nk74agxbkdwpy9c52f939v03s55fn0f0k5dii056wlz"; + url = "http://beta.quicklisp.org/archive/cffi-object/2024-10-12/cffi-object-20241012-git.tgz"; + sha256 = "0hdxy2lqf0q04j57y6plnlh2v6w7y7prsypxk9f4vdlnp2ah3lln"; system = "cffi-object"; asd = "cffi-object"; }); @@ -5586,11 +5730,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-object_dot_ops = (build-asdf-system { pname = "cffi-object.ops"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-object.ops" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi-object/2023-10-21/cffi-object-20231021-git.tgz"; - sha256 = "04wdwp2r5nk74agxbkdwpy9c52f939v03s55fn0f0k5dii056wlz"; + url = "http://beta.quicklisp.org/archive/cffi-object/2024-10-12/cffi-object-20241012-git.tgz"; + sha256 = "0hdxy2lqf0q04j57y6plnlh2v6w7y7prsypxk9f4vdlnp2ah3lln"; system = "cffi-object.ops"; asd = "cffi-object.ops"; }); @@ -5602,11 +5746,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-ops = (build-asdf-system { pname = "cffi-ops"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-ops" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi-ops/2023-10-21/cffi-ops-20231021-git.tgz"; - sha256 = "1bn9dqr3l5i460agiyd7p0vf07k5dx6rnrpvnhsw2ivp2qf2lbas"; + url = "http://beta.quicklisp.org/archive/cffi-ops/2024-10-12/cffi-ops-20241012-git.tgz"; + sha256 = "0hi3svwfb7m1wq892wlrsgj52jkh3x6msnimax28221baj6g64gg"; system = "cffi-ops"; asd = "cffi-ops"; }); @@ -5618,11 +5762,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-tests = (build-asdf-system { pname = "cffi-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi/2023-10-21/cffi-20231021-git.tgz"; - sha256 = "1d4kckxsqpyk3ihjv01c0hhxnswn4fnx4m6257z1dfhwya02s8bk"; + url = "http://beta.quicklisp.org/archive/cffi/2024-10-12/cffi-20241012-git.tgz"; + sha256 = "1b2j32rapgw8rn7m9sm2k8r8x9jds7vshkm90i5lw9v4xnp8x4m7"; system = "cffi-tests"; asd = "cffi-tests"; }); @@ -5634,11 +5778,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-toolchain = (build-asdf-system { pname = "cffi-toolchain"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-toolchain" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi/2023-10-21/cffi-20231021-git.tgz"; - sha256 = "1d4kckxsqpyk3ihjv01c0hhxnswn4fnx4m6257z1dfhwya02s8bk"; + url = "http://beta.quicklisp.org/archive/cffi/2024-10-12/cffi-20241012-git.tgz"; + sha256 = "1b2j32rapgw8rn7m9sm2k8r8x9jds7vshkm90i5lw9v4xnp8x4m7"; system = "cffi-toolchain"; asd = "cffi-toolchain"; }); @@ -5648,11 +5792,11 @@ in lib.makeScope pkgs.newScope (self: { }); cffi-uffi-compat = (build-asdf-system { pname = "cffi-uffi-compat"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cffi-uffi-compat" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cffi/2023-10-21/cffi-20231021-git.tgz"; - sha256 = "1d4kckxsqpyk3ihjv01c0hhxnswn4fnx4m6257z1dfhwya02s8bk"; + url = "http://beta.quicklisp.org/archive/cffi/2024-10-12/cffi-20241012-git.tgz"; + sha256 = "1b2j32rapgw8rn7m9sm2k8r8x9jds7vshkm90i5lw9v4xnp8x4m7"; system = "cffi-uffi-compat"; asd = "cffi-uffi-compat"; }); @@ -5758,11 +5902,11 @@ in lib.makeScope pkgs.newScope (self: { }); chanl = (build-asdf-system { pname = "chanl"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "chanl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/chanl/2023-06-18/chanl-20230618-git.tgz"; - sha256 = "1z9lh7yqkbd5cn2zk5jwrlx1cz1mcz3mrk19wpjxi04x681ib1j5"; + url = "http://beta.quicklisp.org/archive/chanl/2024-10-12/chanl-20241012-git.tgz"; + sha256 = "1gyvsajvqjzfmcbccnysw7qyvhyqdlfcwl57lhsfwz9gif50y1fw"; system = "chanl"; asd = "chanl"; }); @@ -5786,6 +5930,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + charje_dot_documentation = (build-asdf-system { + pname = "charje.documentation"; + version = "20241012-git"; + asds = [ "charje.documentation" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/charje.documentation/2024-10-12/charje.documentation-20241012-git.tgz"; + sha256 = "0rdfi4sj5ad6krwypmsr934ic6y5xlj6iixdwwxrxj9fihfq47zb"; + system = "charje.documentation"; + asd = "charje.documentation"; + }); + systems = [ "charje.documentation" ]; + lispLibs = [ (getAttr "alexandria" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cheat-js = (build-asdf-system { pname = "cheat-js"; version = "20121013-git"; @@ -6008,6 +6168,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + chipi = (build-asdf-system { + pname = "chipi"; + version = "20241012-git"; + asds = [ "chipi" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/chipi/2024-10-12/chipi-20241012-git.tgz"; + sha256 = "0xpfclvl5v031cjnjvr3bcfc87rayw624m9yrw35f5r31p8m283g"; + system = "chipi"; + asd = "chipi"; + }); + systems = [ "chipi" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "binding-arrows" self) (getAttr "cl-cron" self) (getAttr "drakma" self) (getAttr "local-time" self) (getAttr "parse-float" self) (getAttr "sento" self) (getAttr "timer-wheel" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + chipi-web = (build-asdf-system { + pname = "chipi-web"; + version = "20241012-git"; + asds = [ "chipi-web" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/chipi/2024-10-12/chipi-20241012-git.tgz"; + sha256 = "0xpfclvl5v031cjnjvr3bcfc87rayw624m9yrw35f5r31p8m283g"; + system = "chipi-web"; + asd = "chipi-web"; + }); + systems = [ "chipi-web" ]; + lispLibs = [ (getAttr "chipi" self) (getAttr "cl-base64" self) (getAttr "cl-ppcre" self) (getAttr "com_dot_inuoe_dot_jzon" self) (getAttr "drakma" self) (getAttr "hunchentoot" self) (getAttr "ironclad" self) (getAttr "marshal" self) (getAttr "snooze" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); chipmunk-blob = (build-asdf-system { pname = "chipmunk-blob"; version = "stable-git"; @@ -6200,11 +6392,11 @@ in lib.makeScope pkgs.newScope (self: { }); chunga = (build-asdf-system { pname = "chunga"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "chunga" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/chunga/2023-10-21/chunga-20231021-git.tgz"; - sha256 = "0vra4srbnd0qgvvmpk17rqm5i4v01fg1wb411d2jdd4gx9cikkfr"; + url = "http://beta.quicklisp.org/archive/chunga/2024-10-12/chunga-20241012-git.tgz"; + sha256 = "17jswsp31dh1jpg2n60nn34wxf4z6vvxjq1avy50z9fnzywvikyi"; system = "chunga"; asd = "chunga"; }); @@ -6214,11 +6406,11 @@ in lib.makeScope pkgs.newScope (self: { }); ci-utils = (build-asdf-system { pname = "ci-utils"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "ci-utils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ci-utils/2022-11-06/ci-utils-20221106-git.tgz"; - sha256 = "0srypwhcfwmy6ppv724y0vhm0icninv2zzb2f8h1985zch73cqw3"; + url = "http://beta.quicklisp.org/archive/ci-utils/2024-10-12/ci-utils-20241012-git.tgz"; + sha256 = "1wrr1v2r7kd668hyz54x28xh153l2qkl1gra3bk4wmqi3x7xyxdg"; system = "ci-utils"; asd = "ci-utils"; }); @@ -6230,11 +6422,11 @@ in lib.makeScope pkgs.newScope (self: { }); ci-utils-features = (build-asdf-system { pname = "ci-utils-features"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "ci-utils-features" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ci-utils/2022-11-06/ci-utils-20221106-git.tgz"; - sha256 = "0srypwhcfwmy6ppv724y0vhm0icninv2zzb2f8h1985zch73cqw3"; + url = "http://beta.quicklisp.org/archive/ci-utils/2024-10-12/ci-utils-20241012-git.tgz"; + sha256 = "1wrr1v2r7kd668hyz54x28xh153l2qkl1gra3bk4wmqi3x7xyxdg"; system = "ci-utils-features"; asd = "ci-utils-features"; }); @@ -6246,11 +6438,11 @@ in lib.makeScope pkgs.newScope (self: { }); ciao = (build-asdf-system { pname = "ciao"; - version = "20230215-git"; + version = "20241012-git"; asds = [ "ciao" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ciao/2023-02-15/ciao-20230215-git.tgz"; - sha256 = "1sqp9yisd7j6j5gd2vbid2xvigbhglpj7wwm3glifg1lmmqijnpv"; + url = "http://beta.quicklisp.org/archive/ciao/2024-10-12/ciao-20241012-git.tgz"; + sha256 = "1x443k02kl5iyq6awv2vqm08d9x9f92hjivqv2c5xdamki7y513s"; system = "ciao"; asd = "ciao"; }); @@ -6324,11 +6516,11 @@ in lib.makeScope pkgs.newScope (self: { }); ckr-tables = (build-asdf-system { pname = "ckr-tables"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ckr-tables" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lisp-critic/2023-10-21/lisp-critic-20231021-git.tgz"; - sha256 = "15zg05pqfs2dhc5j7gfkwjmxawaizjpyb0p7386mpl4w93l9h84l"; + url = "http://beta.quicklisp.org/archive/lisp-critic/2024-10-12/lisp-critic-20241012-git.tgz"; + sha256 = "19czs2m8h3kgwjd10pdk9r5kazbgly8g82a5q3bs7pqkja42i7x7"; system = "ckr-tables"; asd = "ckr-tables"; }); @@ -6370,11 +6562,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-6502 = (build-asdf-system { pname = "cl-6502"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-6502" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-6502/2023-10-21/cl-6502-20231021-git.tgz"; - sha256 = "1ma2i6ljky1zfivrwpra3fmhcm7s2ppi4bxxl7sms8n7gkpkv41s"; + url = "http://beta.quicklisp.org/archive/cl-6502/2024-10-12/cl-6502-20241012-git.tgz"; + sha256 = "1cj38bi12i7ji3m8dd8gxb17dlna2v8s3b3h6b0a9pvmv6wchpmz"; system = "cl-6502"; asd = "cl-6502"; }); @@ -6386,11 +6578,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-aa = (build-asdf-system { pname = "cl-aa"; - version = "20180228-git"; + version = "20241012-git"; asds = [ "cl-aa" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; - sha256 = "0nckw4zb6s96hll8hrxzvgs2an3bfm0pxcywshbm4bq4rn7niqg4"; + url = "http://beta.quicklisp.org/archive/cl-vectors/2024-10-12/cl-vectors-20241012-git.tgz"; + sha256 = "1nkmmn38y6af10ysff3g2qkf5lb2601dcjp5rffsjh6bv2ik2jd5"; system = "cl-aa"; asd = "cl-aa"; }); @@ -6400,11 +6592,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-aa-misc = (build-asdf-system { pname = "cl-aa-misc"; - version = "20180228-git"; + version = "20241012-git"; asds = [ "cl-aa-misc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; - sha256 = "0nckw4zb6s96hll8hrxzvgs2an3bfm0pxcywshbm4bq4rn7niqg4"; + url = "http://beta.quicklisp.org/archive/cl-vectors/2024-10-12/cl-vectors-20241012-git.tgz"; + sha256 = "1nkmmn38y6af10ysff3g2qkf5lb2601dcjp5rffsjh6bv2ik2jd5"; system = "cl-aa-misc"; asd = "cl-aa-misc"; }); @@ -6496,11 +6688,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-algebraic-data-type = (build-asdf-system { pname = "cl-algebraic-data-type"; - version = "20191007-git"; + version = "20241012-git"; asds = [ "cl-algebraic-data-type" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-algebraic-data-type/2019-10-07/cl-algebraic-data-type-20191007-git.tgz"; - sha256 = "1lnqxcv8pd5z8n0g5p2l0dbljx9pqiv18hxl0vhsh7ldhkrjv2jx"; + url = "http://beta.quicklisp.org/archive/cl-algebraic-data-type/2024-10-12/cl-algebraic-data-type-20241012-git.tgz"; + sha256 = "02bfx9g4267f7f85banmfy15adyvlzaz3flia8zmhlzhpx7j4bj6"; system = "cl-algebraic-data-type"; asd = "cl-algebraic-data-type"; }); @@ -6512,11 +6704,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-all = (build-asdf-system { pname = "cl-all"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-all" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-all/2023-10-21/cl-all-20231021-git.tgz"; - sha256 = "1k8mxj35fcczkz8vwl6yxmbdq5a115ilmk2h4c7qn2sz09qd9j1g"; + url = "http://beta.quicklisp.org/archive/cl-all/2024-10-12/cl-all-20241012-git.tgz"; + sha256 = "02n30b3yp949fxwnb9wr3m9hd5h1kcmxcbjc8c5fj4ihphf8sd7d"; system = "cl-all"; asd = "cl-all"; }); @@ -7562,11 +7754,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ansi-term = (build-asdf-system { pname = "cl-ansi-term"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "cl-ansi-term" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ansi-term/2021-10-20/cl-ansi-term-20211020-git.tgz"; - sha256 = "1wz8xx1dk5v1v5cvfh4a5cf5mdrn8lnz8mpf55c34inb0bxjlx87"; + url = "http://beta.quicklisp.org/archive/cl-ansi-term/2024-10-12/cl-ansi-term-20241012-git.tgz"; + sha256 = "01nrlyb8lqca9z16ndlyy22wqy83ixcr02yibfypj255x6xbql1x"; system = "cl-ansi-term"; asd = "cl-ansi-term"; }); @@ -7734,6 +7926,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-aseprite = (build-asdf-system { + pname = "cl-aseprite"; + version = "20241012-git"; + asds = [ "cl-aseprite" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-aseprite/2024-10-12/cl-aseprite-20241012-git.tgz"; + sha256 = "0xjrfi232d0my4ncafp1l2yfas8nj0k8nsbppkq70anic5ihbhch"; + system = "cl-aseprite"; + asd = "cl-aseprite"; + }); + systems = [ "cl-aseprite" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "chipz" self) (getAttr "let-plus" self) (getAttr "lisp-binary" self) (getAttr "trivial-types" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-association-rules = (build-asdf-system { pname = "cl-association-rules"; version = "20170403-git"; @@ -7766,13 +7974,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-astar = (build-asdf-system { + pname = "cl-astar"; + version = "20241012-git"; + asds = [ "cl-astar" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-astar/2024-10-12/cl-astar-20241012-git.tgz"; + sha256 = "0fdwyg3xnj5sxn4cqycydg0cp1l3ii0brk7ad1sh28m703zmndxv"; + system = "cl-astar"; + asd = "cl-astar"; + }); + systems = [ "cl-astar" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "float-features" self) (getAttr "let-plus" self) (getAttr "trivial-adjust-simple-array" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-async = (build-asdf-system { pname = "cl-async"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-async" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-async/2023-10-21/cl-async-20231021-git.tgz"; - sha256 = "0s2ylrwfcnn7c934cd5cv3nswbln0phx2mqviq5ampmghjvjrghy"; + url = "http://beta.quicklisp.org/archive/cl-async/2024-10-12/cl-async-20241012-git.tgz"; + sha256 = "0z0gnwfb0flrxpbjmvzap0kmyz8r898x5jriyna365plc50hlcdr"; system = "cl-async"; asd = "cl-async"; }); @@ -7798,11 +8022,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-async-base = (build-asdf-system { pname = "cl-async-base"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-async-base" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-async/2023-10-21/cl-async-20231021-git.tgz"; - sha256 = "0s2ylrwfcnn7c934cd5cv3nswbln0phx2mqviq5ampmghjvjrghy"; + url = "http://beta.quicklisp.org/archive/cl-async/2024-10-12/cl-async-20241012-git.tgz"; + sha256 = "0z0gnwfb0flrxpbjmvzap0kmyz8r898x5jriyna365plc50hlcdr"; system = "cl-async-base"; asd = "cl-async"; }); @@ -7828,11 +8052,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-async-repl = (build-asdf-system { pname = "cl-async-repl"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-async-repl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-async/2023-10-21/cl-async-20231021-git.tgz"; - sha256 = "0s2ylrwfcnn7c934cd5cv3nswbln0phx2mqviq5ampmghjvjrghy"; + url = "http://beta.quicklisp.org/archive/cl-async/2024-10-12/cl-async-20241012-git.tgz"; + sha256 = "0z0gnwfb0flrxpbjmvzap0kmyz8r898x5jriyna365plc50hlcdr"; system = "cl-async-repl"; asd = "cl-async-repl"; }); @@ -7842,11 +8066,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-async-ssl = (build-asdf-system { pname = "cl-async-ssl"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-async-ssl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-async/2023-10-21/cl-async-20231021-git.tgz"; - sha256 = "0s2ylrwfcnn7c934cd5cv3nswbln0phx2mqviq5ampmghjvjrghy"; + url = "http://beta.quicklisp.org/archive/cl-async/2024-10-12/cl-async-20241012-git.tgz"; + sha256 = "0z0gnwfb0flrxpbjmvzap0kmyz8r898x5jriyna365plc50hlcdr"; system = "cl-async-ssl"; asd = "cl-async-ssl"; }); @@ -7856,11 +8080,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-async-test = (build-asdf-system { pname = "cl-async-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-async-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-async/2023-10-21/cl-async-20231021-git.tgz"; - sha256 = "0s2ylrwfcnn7c934cd5cv3nswbln0phx2mqviq5ampmghjvjrghy"; + url = "http://beta.quicklisp.org/archive/cl-async/2024-10-12/cl-async-20241012-git.tgz"; + sha256 = "0z0gnwfb0flrxpbjmvzap0kmyz8r898x5jriyna365plc50hlcdr"; system = "cl-async-test"; asd = "cl-async-test"; }); @@ -7872,11 +8096,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-async-util = (build-asdf-system { pname = "cl-async-util"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-async-util" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-async/2023-10-21/cl-async-20231021-git.tgz"; - sha256 = "0s2ylrwfcnn7c934cd5cv3nswbln0phx2mqviq5ampmghjvjrghy"; + url = "http://beta.quicklisp.org/archive/cl-async/2024-10-12/cl-async-20241012-git.tgz"; + sha256 = "0z0gnwfb0flrxpbjmvzap0kmyz8r898x5jriyna365plc50hlcdr"; system = "cl-async-util"; asd = "cl-async"; }); @@ -7950,11 +8174,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-autowrap = (build-asdf-system { pname = "cl-autowrap"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-autowrap" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-autowrap/2023-10-21/cl-autowrap-20231021-git.tgz"; - sha256 = "063pc7akxbsaayzpgz16dzkh0434s80h61k7mi7xq5isgzfjka2k"; + url = "http://beta.quicklisp.org/archive/cl-autowrap/2024-10-12/cl-autowrap-20241012-git.tgz"; + sha256 = "1sfvhyrwm9dhxi0y42xp7mx8mvs6lmq3bzxdx34frxni5srcgly0"; system = "cl-autowrap"; asd = "cl-autowrap"; }); @@ -7966,11 +8190,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-autowrap-test = (build-asdf-system { pname = "cl-autowrap-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-autowrap-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-autowrap/2023-10-21/cl-autowrap-20231021-git.tgz"; - sha256 = "063pc7akxbsaayzpgz16dzkh0434s80h61k7mi7xq5isgzfjka2k"; + url = "http://beta.quicklisp.org/archive/cl-autowrap/2024-10-12/cl-autowrap-20241012-git.tgz"; + sha256 = "1sfvhyrwm9dhxi0y42xp7mx8mvs6lmq3bzxdx34frxni5srcgly0"; system = "cl-autowrap-test"; asd = "cl-autowrap-test"; }); @@ -8014,11 +8238,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-base32 = (build-asdf-system { pname = "cl-base32"; - version = "20130420-git"; + version = "20241012-git"; asds = [ "cl-base32" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-base32/2013-04-20/cl-base32-20130420-git.tgz"; - sha256 = "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"; + url = "http://beta.quicklisp.org/archive/cl-base32/2024-10-12/cl-base32-20241012-git.tgz"; + sha256 = "0kc0rxwx2ak5kvrzl8y8x3csm0d6appi5k0as2jgm3ig5vgcs5cn"; system = "cl-base32"; asd = "cl-base32"; }); @@ -8028,22 +8252,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - cl-base32-tests = (build-asdf-system { - pname = "cl-base32-tests"; - version = "20130420-git"; - asds = [ "cl-base32-tests" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-base32/2013-04-20/cl-base32-20130420-git.tgz"; - sha256 = "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"; - system = "cl-base32-tests"; - asd = "cl-base32"; - }); - systems = [ "cl-base32-tests" ]; - lispLibs = [ (getAttr "cl-base32" self) (getAttr "lisp-unit" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); cl-base58 = (build-asdf-system { pname = "cl-base58"; version = "20150113-git"; @@ -8220,11 +8428,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-bmp = (build-asdf-system { pname = "cl-bmp"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-bmp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-bmp/2023-10-21/cl-bmp-20231021-git.tgz"; - sha256 = "1khicvwhbfpbaywdc0m1lpcqai6lf7cvy4idahaahk5704dlb3l0"; + url = "http://beta.quicklisp.org/archive/cl-bmp/2024-10-12/cl-bmp-20241012-git.tgz"; + sha256 = "1mcayxjppka40q9xx1qwdvrjjblclnggnicg70i95xqnv5sdwdhz"; system = "cl-bmp"; asd = "cl-bmp"; }); @@ -8236,27 +8444,27 @@ in lib.makeScope pkgs.newScope (self: { }); cl-bnf = (build-asdf-system { pname = "cl-bnf"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-bnf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-bnf/2023-02-14/cl-bnf-20230214-git.tgz"; - sha256 = "05lskaz5kwl4sk8mb13l4kvr3q0q56dyarmznpp1cjpan6rdyr4x"; + url = "http://beta.quicklisp.org/archive/cl-bnf/2024-10-12/cl-bnf-20241012-git.tgz"; + sha256 = "0aa7hnkj71f37lxzlhsppwcmk3yv42hclq08c4jrdnv8jmdb8r0l"; system = "cl-bnf"; asd = "cl-bnf"; }); systems = [ "cl-bnf" ]; - lispLibs = [ ]; + lispLibs = [ (getAttr "flexi-streams" self) (getAttr "utf8-input-stream" self) ]; meta = { hydraPlatforms = [ ]; }; }); cl-bnf-examples = (build-asdf-system { pname = "cl-bnf-examples"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-bnf-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-bnf/2023-02-14/cl-bnf-20230214-git.tgz"; - sha256 = "05lskaz5kwl4sk8mb13l4kvr3q0q56dyarmznpp1cjpan6rdyr4x"; + url = "http://beta.quicklisp.org/archive/cl-bnf/2024-10-12/cl-bnf-20241012-git.tgz"; + sha256 = "0aa7hnkj71f37lxzlhsppwcmk3yv42hclq08c4jrdnv8jmdb8r0l"; system = "cl-bnf-examples"; asd = "cl-bnf-examples"; }); @@ -8268,11 +8476,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-bnf-tests = (build-asdf-system { pname = "cl-bnf-tests"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-bnf-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-bnf/2023-02-14/cl-bnf-20230214-git.tgz"; - sha256 = "05lskaz5kwl4sk8mb13l4kvr3q0q56dyarmznpp1cjpan6rdyr4x"; + url = "http://beta.quicklisp.org/archive/cl-bnf/2024-10-12/cl-bnf-20241012-git.tgz"; + sha256 = "0aa7hnkj71f37lxzlhsppwcmk3yv42hclq08c4jrdnv8jmdb8r0l"; system = "cl-bnf-tests"; asd = "cl-bnf-tests"; }); @@ -8364,11 +8572,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-brewer-ci = (build-asdf-system { pname = "cl-brewer-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-brewer-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-brewer/2023-10-21/cl-brewer-20231021-git.tgz"; - sha256 = "1xpgy3lci0ip9bwrx8sdwbllgq57mq3apzafxbmci5jdsa2rxh9r"; + url = "http://beta.quicklisp.org/archive/cl-brewer/2024-10-12/cl-brewer-20241012-git.tgz"; + sha256 = "0izf6v4qx82jhk7ln28jhdmnr3lb0r5iqjj0by9igq5sk3y1my4x"; system = "cl-brewer-ci"; asd = "cl-brewer-ci"; }); @@ -8380,11 +8588,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-brewer-deploy-hooks = (build-asdf-system { pname = "cl-brewer-deploy-hooks"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-brewer-deploy-hooks" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-brewer/2023-10-21/cl-brewer-20231021-git.tgz"; - sha256 = "1xpgy3lci0ip9bwrx8sdwbllgq57mq3apzafxbmci5jdsa2rxh9r"; + url = "http://beta.quicklisp.org/archive/cl-brewer/2024-10-12/cl-brewer-20241012-git.tgz"; + sha256 = "0izf6v4qx82jhk7ln28jhdmnr3lb0r5iqjj0by9igq5sk3y1my4x"; system = "cl-brewer-deploy-hooks"; asd = "cl-brewer-deploy-hooks"; }); @@ -8396,11 +8604,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-brewer-tests = (build-asdf-system { pname = "cl-brewer-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-brewer-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-brewer/2023-10-21/cl-brewer-20231021-git.tgz"; - sha256 = "1xpgy3lci0ip9bwrx8sdwbllgq57mq3apzafxbmci5jdsa2rxh9r"; + url = "http://beta.quicklisp.org/archive/cl-brewer/2024-10-12/cl-brewer-20241012-git.tgz"; + sha256 = "0izf6v4qx82jhk7ln28jhdmnr3lb0r5iqjj0by9igq5sk3y1my4x"; system = "cl-brewer-tests"; asd = "cl-brewer-tests"; }); @@ -8412,11 +8620,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-buchberger = (build-asdf-system { pname = "cl-buchberger"; - version = "20201016-git"; + version = "20241012-git"; asds = [ "cl-buchberger" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-buchberger/2020-10-16/cl-buchberger-20201016-git.tgz"; - sha256 = "105kwri3hjla1cydc323y8dfi4cjg0g4hxjzdh13inmvxwcf049w"; + url = "http://beta.quicklisp.org/archive/cl-buchberger/2024-10-12/cl-buchberger-20241012-git.tgz"; + sha256 = "0hn340y52xfgj788zh449jrh7blfv6yqfnkmqg2vghy92s8jcr1i"; system = "cl-buchberger"; asd = "cl-buchberger"; }); @@ -8852,22 +9060,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - cl-cheshire-cat = (build-asdf-system { - pname = "cl-cheshire-cat"; - version = "20121125-git"; - asds = [ "cl-cheshire-cat" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-cheshire-cat/2012-11-25/cl-cheshire-cat-20121125-git.tgz"; - sha256 = "1kgm1pa2c4r90nfs38x7fsw730nw13z7p6f11rv67hdjcydh2f11"; - system = "cl-cheshire-cat"; - asd = "cl-cheshire-cat"; - }); - systems = [ "cl-cheshire-cat" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-fad" self) (getAttr "cl-ppcre" self) (getAttr "cl-store" self) (getAttr "hunchentoot" self) (getAttr "split-sequence" self) (getAttr "usocket" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); cl-clblas = (build-asdf-system { pname = "cl-clblas"; version = "20181018-git"; @@ -8964,11 +9156,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-collider = (build-asdf-system { pname = "cl-collider"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-collider" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-collider/2023-10-21/cl-collider-20231021-git.tgz"; - sha256 = "1fbqic0w27b5al8vm6zvgfhsq6yjl2zl4ppjmxvyx6pl0i0bm281"; + url = "http://beta.quicklisp.org/archive/cl-collider/2024-10-12/cl-collider-20241012-git.tgz"; + sha256 = "0h0fyx7glxnzwyam2aflma6003h8fcvcf5nj5f7svarw9brcc2xa"; system = "cl-collider"; asd = "cl-collider"; }); @@ -9010,18 +9202,34 @@ in lib.makeScope pkgs.newScope (self: { }); cl-colors2 = (build-asdf-system { pname = "cl-colors2"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-colors2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-colors2/2023-10-21/cl-colors2-20231021-git.tgz"; - sha256 = "0vjssnsg589db138kgy6wvgbmff27kn895s3zva55kyq62khgj1p"; + url = "http://beta.quicklisp.org/archive/cl-colors2/2024-10-12/cl-colors2-20241012-git.tgz"; + sha256 = "053bidgbqziv5visdq09gy8zf30cvqh1w06l23yygn1yrg7m7302"; system = "cl-colors2"; asd = "cl-colors2"; }); systems = [ "cl-colors2" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) (getAttr "parse-number" self) ]; meta = {}; }); + cl-concord = (build-asdf-system { + pname = "cl-concord"; + version = "20241012-git"; + asds = [ "cl-concord" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-concord/2024-10-12/cl-concord-20241012-git.tgz"; + sha256 = "01i13lp3z2v2w165h0xh72r1vyfbjr6k1gwk4hff1rf2yx2yg9k1"; + system = "cl-concord"; + asd = "cl-concord"; + }); + systems = [ "cl-concord" ]; + lispLibs = [ (getAttr "cl-redis" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-conllu = (build-asdf-system { pname = "cl-conllu"; version = "20211209-git"; @@ -9104,11 +9312,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-containers = (build-asdf-system { pname = "cl-containers"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-containers" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-containers/2023-10-21/cl-containers-20231021-git.tgz"; - sha256 = "1nrql8s1j123v5gscy99lxvhlzp0ijig9x94w30v3lwfa58hf90l"; + url = "http://beta.quicklisp.org/archive/cl-containers/2024-10-12/cl-containers-20241012-git.tgz"; + sha256 = "0xpa5yhsndh33cs4q6vgjc8jxwlmv8lxkg4bamfi0f3ad4smi7zl"; system = "cl-containers"; asd = "cl-containers"; }); @@ -9118,11 +9326,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-containers-test = (build-asdf-system { pname = "cl-containers-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-containers-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-containers/2023-10-21/cl-containers-20231021-git.tgz"; - sha256 = "1nrql8s1j123v5gscy99lxvhlzp0ijig9x94w30v3lwfa58hf90l"; + url = "http://beta.quicklisp.org/archive/cl-containers/2024-10-12/cl-containers-20241012-git.tgz"; + sha256 = "0xpa5yhsndh33cs4q6vgjc8jxwlmv8lxkg4bamfi0f3ad4smi7zl"; system = "cl-containers-test"; asd = "cl-containers-test"; }); @@ -9134,11 +9342,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-cookie = (build-asdf-system { pname = "cl-cookie"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "cl-cookie" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-cookie/2022-07-07/cl-cookie-20220707-git.tgz"; - sha256 = "07hqamcdpdxmx2j7prawgl6cdr13b2jbrhrrhfik5n00ah4yw524"; + url = "http://beta.quicklisp.org/archive/cl-cookie/2024-10-12/cl-cookie-20241012-git.tgz"; + sha256 = "172lw0sm6i9nvlx0iv0851rsm5pc28xqqf6a75pwv1fvr6srq8qh"; system = "cl-cookie"; asd = "cl-cookie"; }); @@ -9148,16 +9356,16 @@ in lib.makeScope pkgs.newScope (self: { }); cl-cookie-test = (build-asdf-system { pname = "cl-cookie-test"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "cl-cookie-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-cookie/2022-07-07/cl-cookie-20220707-git.tgz"; - sha256 = "07hqamcdpdxmx2j7prawgl6cdr13b2jbrhrrhfik5n00ah4yw524"; + url = "http://beta.quicklisp.org/archive/cl-cookie/2024-10-12/cl-cookie-20241012-git.tgz"; + sha256 = "172lw0sm6i9nvlx0iv0851rsm5pc28xqqf6a75pwv1fvr6srq8qh"; system = "cl-cookie-test"; asd = "cl-cookie-test"; }); systems = [ "cl-cookie-test" ]; - lispLibs = [ (getAttr "cl-cookie" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; + lispLibs = [ (getAttr "cl-cookie" self) (getAttr "rove" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -9354,11 +9562,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-csv = (build-asdf-system { pname = "cl-csv"; - version = "20201016-git"; + version = "20241012-git"; asds = [ "cl-csv" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz"; - sha256 = "0gcmlbwx5m3kwgk12qi80w08ak8fgdnvyia429fz6gnxmhg0k54x"; + url = "http://beta.quicklisp.org/archive/cl-csv/2024-10-12/cl-csv-20241012-git.tgz"; + sha256 = "0pb89l3bi2cnk7sav2w0dmlvjxij1wpy3w6n9c4b6imjs0pznrxi"; system = "cl-csv"; asd = "cl-csv"; }); @@ -9368,11 +9576,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-csv-clsql = (build-asdf-system { pname = "cl-csv-clsql"; - version = "20201016-git"; + version = "20241012-git"; asds = [ "cl-csv-clsql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz"; - sha256 = "0gcmlbwx5m3kwgk12qi80w08ak8fgdnvyia429fz6gnxmhg0k54x"; + url = "http://beta.quicklisp.org/archive/cl-csv/2024-10-12/cl-csv-20241012-git.tgz"; + sha256 = "0pb89l3bi2cnk7sav2w0dmlvjxij1wpy3w6n9c4b6imjs0pznrxi"; system = "cl-csv-clsql"; asd = "cl-csv-clsql"; }); @@ -9384,11 +9592,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-csv-data-table = (build-asdf-system { pname = "cl-csv-data-table"; - version = "20201016-git"; + version = "20241012-git"; asds = [ "cl-csv-data-table" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-csv/2020-10-16/cl-csv-20201016-git.tgz"; - sha256 = "0gcmlbwx5m3kwgk12qi80w08ak8fgdnvyia429fz6gnxmhg0k54x"; + url = "http://beta.quicklisp.org/archive/cl-csv/2024-10-12/cl-csv-20241012-git.tgz"; + sha256 = "0pb89l3bi2cnk7sav2w0dmlvjxij1wpy3w6n9c4b6imjs0pznrxi"; system = "cl-csv-data-table"; asd = "cl-csv-data-table"; }); @@ -9478,11 +9686,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-custom-hash-table = (build-asdf-system { pname = "cl-custom-hash-table"; - version = "20201220-git"; + version = "20241012-git"; asds = [ "cl-custom-hash-table" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz"; - sha256 = "1lyp3lhqq3p2n04agaar5v50ai3vd6zvi6yq4phw3fcl2jzdjhk3"; + url = "http://beta.quicklisp.org/archive/cl-custom-hash-table/2024-10-12/cl-custom-hash-table-20241012-git.tgz"; + sha256 = "1sb5anv9kh7wv165nra95v0qkk1gvp3mn461zi7m0fla1290g598"; system = "cl-custom-hash-table"; asd = "cl-custom-hash-table"; }); @@ -9492,11 +9700,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-custom-hash-table-test = (build-asdf-system { pname = "cl-custom-hash-table-test"; - version = "20201220-git"; + version = "20241012-git"; asds = [ "cl-custom-hash-table-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-custom-hash-table/2020-12-20/cl-custom-hash-table-20201220-git.tgz"; - sha256 = "1lyp3lhqq3p2n04agaar5v50ai3vd6zvi6yq4phw3fcl2jzdjhk3"; + url = "http://beta.quicklisp.org/archive/cl-custom-hash-table/2024-10-12/cl-custom-hash-table-20241012-git.tgz"; + sha256 = "1sb5anv9kh7wv165nra95v0qkk1gvp3mn461zi7m0fla1290g598"; system = "cl-custom-hash-table-test"; asd = "cl-custom-hash-table-test"; }); @@ -9506,45 +9714,13 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - cl-darksky = (build-asdf-system { - pname = "cl-darksky"; - version = "20180711-git"; - asds = [ "cl-darksky" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-darksky/2018-07-11/cl-darksky-20180711-git.tgz"; - sha256 = "049rziv10z0ygvm0fi98jlxdd5xcqf9gp6ah7jwn9bcxwg5y0wcf"; - system = "cl-darksky"; - asd = "cl-darksky"; - }); - systems = [ "cl-darksky" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "dexador" self) (getAttr "jonathan" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - cl-darksky-test = (build-asdf-system { - pname = "cl-darksky-test"; - version = "20180711-git"; - asds = [ "cl-darksky-test" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-darksky/2018-07-11/cl-darksky-20180711-git.tgz"; - sha256 = "049rziv10z0ygvm0fi98jlxdd5xcqf9gp6ah7jwn9bcxwg5y0wcf"; - system = "cl-darksky-test"; - asd = "cl-darksky-test"; - }); - systems = [ "cl-darksky-test" ]; - lispLibs = [ (getAttr "cl-darksky" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); cl-data-structures = (build-asdf-system { pname = "cl-data-structures"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-data-structures" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-data-structures/2023-10-21/cl-data-structures-20231021-git.tgz"; - sha256 = "0bj8758yrvxvinj8lc7rr4ni7i5y3bkx8y4dzy2dayh64xkq30ca"; + url = "http://beta.quicklisp.org/archive/cl-data-structures/2024-10-12/cl-data-structures-20241012-git.tgz"; + sha256 = "0h49h1x9dgr53imj0r4lgx0zvdsv3mnh7lyayzy9hlysy2ixp425"; system = "cl-data-structures"; asd = "cl-data-structures"; }); @@ -9556,11 +9732,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-data-structures-tests = (build-asdf-system { pname = "cl-data-structures-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-data-structures-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-data-structures/2023-10-21/cl-data-structures-20231021-git.tgz"; - sha256 = "0bj8758yrvxvinj8lc7rr4ni7i5y3bkx8y4dzy2dayh64xkq30ca"; + url = "http://beta.quicklisp.org/archive/cl-data-structures/2024-10-12/cl-data-structures-20241012-git.tgz"; + sha256 = "0h49h1x9dgr53imj0r4lgx0zvdsv3mnh7lyayzy9hlysy2ixp425"; system = "cl-data-structures-tests"; asd = "cl-data-structures-tests"; }); @@ -9588,11 +9764,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-dbi = (build-asdf-system { pname = "cl-dbi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-dbi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-dbi/2023-10-21/cl-dbi-20231021-git.tgz"; - sha256 = "1jjm2hh8vvbdblhsms6nrb5gll8ng7pqyv99zj6zk2f5h5a42a2l"; + url = "http://beta.quicklisp.org/archive/cl-dbi/2024-10-12/cl-dbi-20241012-git.tgz"; + sha256 = "17szd6sz1hlwl5fm4qjgyd8ax01wkbhv8hxcyy8qscx39sc0cnpy"; system = "cl-dbi"; asd = "cl-dbi"; }); @@ -9712,11 +9888,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-digraph = (build-asdf-system { pname = "cl-digraph"; - version = "20231021-hg"; + version = "20241012-hg"; asds = [ "cl-digraph" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-digraph/2023-10-21/cl-digraph-20231021-hg.tgz"; - sha256 = "0ls4lz5d143d4dnby2cyz8p0yipmfag4jvinblffin520an92x63"; + url = "http://beta.quicklisp.org/archive/cl-digraph/2024-10-12/cl-digraph-20241012-hg.tgz"; + sha256 = "18avbb608rv5radbczilfzb2857wz7pad49hwhr5za5qycjam8ss"; system = "cl-digraph"; asd = "cl-digraph"; }); @@ -9726,11 +9902,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-digraph_dot_dot = (build-asdf-system { pname = "cl-digraph.dot"; - version = "20231021-hg"; + version = "20241012-hg"; asds = [ "cl-digraph.dot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-digraph/2023-10-21/cl-digraph-20231021-hg.tgz"; - sha256 = "0ls4lz5d143d4dnby2cyz8p0yipmfag4jvinblffin520an92x63"; + url = "http://beta.quicklisp.org/archive/cl-digraph/2024-10-12/cl-digraph-20241012-hg.tgz"; + sha256 = "18avbb608rv5radbczilfzb2857wz7pad49hwhr5za5qycjam8ss"; system = "cl-digraph.dot"; asd = "cl-digraph.dot"; }); @@ -9740,6 +9916,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-digraph_dot_test = (build-asdf-system { + pname = "cl-digraph.test"; + version = "20241012-hg"; + asds = [ "cl-digraph.test" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-digraph/2024-10-12/cl-digraph-20241012-hg.tgz"; + sha256 = "18avbb608rv5radbczilfzb2857wz7pad49hwhr5za5qycjam8ss"; + system = "cl-digraph.test"; + asd = "cl-digraph.test"; + }); + systems = [ "cl-digraph.test" ]; + lispLibs = [ (getAttr "_1am" self) (getAttr "alexandria" self) (getAttr "cl-digraph" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-diskspace = (build-asdf-system { pname = "cl-diskspace"; version = "20220331-git"; @@ -9822,11 +10014,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-dot = (build-asdf-system { pname = "cl-dot"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "cl-dot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-dot/2022-07-07/cl-dot-20220707-git.tgz"; - sha256 = "0mcvzqfcg5rzr8rz8aa2yr2jl3ifflaksvps08zj71hbhiacqpxa"; + url = "http://beta.quicklisp.org/archive/cl-dot/2024-10-12/cl-dot-20241012-git.tgz"; + sha256 = "1874jsc51pkyh6rz27qdhhsdyzx1mr7zx7v65m849wp49qlxs1ya"; system = "cl-dot"; asd = "cl-dot"; }); @@ -10122,11 +10314,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-environments = (build-asdf-system { pname = "cl-environments"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "cl-environments" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-environments/2021-10-20/cl-environments-20211020-git.tgz"; - sha256 = "0k3f1sldd6nwphz80vc4k28z9g56rylln4admag628cyswx4qz99"; + url = "http://beta.quicklisp.org/archive/cl-environments/2024-10-12/cl-environments-20241012-git.tgz"; + sha256 = "0pafk4c0qdzqp0l23fi1pgrqycbcrwm51wq0x0jvr7975yfx2lim"; system = "cl-environments"; asd = "cl-environments"; }); @@ -10134,22 +10326,6 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "alexandria" self) (getAttr "anaphora" self) (getAttr "collectors" self) (getAttr "optima" self) (getAttr "parse-declarations-1_dot_0" self) ]; meta = {}; }); - cl-epoch = (build-asdf-system { - pname = "cl-epoch"; - version = "20181210-git"; - asds = [ "cl-epoch" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-epoch/2018-12-10/cl-epoch-20181210-git.tgz"; - sha256 = "091p6j5l85afzcm3m9myxzr8j3hiwh0iyj8w0sgld85n2ykbbird"; - system = "cl-epoch"; - asd = "cl-epoch"; - }); - systems = [ "cl-epoch" ]; - lispLibs = [ ]; - meta = { - hydraPlatforms = [ ]; - }; - }); cl-etcd = (build-asdf-system { pname = "cl-etcd"; version = "20230214-git"; @@ -10278,11 +10454,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-fast-ecs = (build-asdf-system { pname = "cl-fast-ecs"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-fast-ecs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-fast-ecs/2023-10-21/cl-fast-ecs-20231021-git.tgz"; - sha256 = "0p959baqzjw6jkannffrhbv8ab2wf19vh384xbqs66ijr7llgqx9"; + url = "http://beta.quicklisp.org/archive/cl-fast-ecs/2024-10-12/cl-fast-ecs-20241012-git.tgz"; + sha256 = "0hwprzq6dnbfh4y08db615gzpdpr8vphy27whgsjhyg980503hxv"; system = "cl-fast-ecs"; asd = "cl-fast-ecs"; }); @@ -10292,6 +10468,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-fastcgi = (build-asdf-system { + pname = "cl-fastcgi"; + version = "20241012-git"; + asds = [ "cl-fastcgi" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-fastcgi/2024-10-12/cl-fastcgi-20241012-git.tgz"; + sha256 = "0hf6a8jrz8dx91px8q4201k3y919ls7cgn4qjmkqxqhjk2gxy5k7"; + system = "cl-fastcgi"; + asd = "cl-fastcgi"; + }); + systems = [ "cl-fastcgi" ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "usocket" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-fbclient = (build-asdf-system { pname = "cl-fbclient"; version = "20140113-git"; @@ -10310,11 +10502,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-fbx = (build-asdf-system { pname = "cl-fbx"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-fbx" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-fbx/2023-10-21/cl-fbx-20231021-git.tgz"; - sha256 = "1jzxjb9bf1hfa1d75npapprfvzxn4z939vghwmnkmf9w7q9f1nys"; + url = "http://beta.quicklisp.org/archive/cl-fbx/2024-10-12/cl-fbx-20241012-git.tgz"; + sha256 = "1g6s3ili3fcxy37g34ykmf2zc6nm70sh5q0diqbikikaly8kfi50"; system = "cl-fbx"; asd = "cl-fbx"; }); @@ -10454,16 +10646,16 @@ in lib.makeScope pkgs.newScope (self: { }); cl-fluent-logger = (build-asdf-system { pname = "cl-fluent-logger"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "cl-fluent-logger" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-fluent-logger/2021-10-20/cl-fluent-logger-20211020-git.tgz"; - sha256 = "14q7ymdg3hsri2z2c8fb1syqgdlk8b288v4gw645dbaxfpava2qq"; + url = "http://beta.quicklisp.org/archive/cl-fluent-logger/2024-10-12/cl-fluent-logger-20241012-git.tgz"; + sha256 = "0dqmx28d49fraqymrvaxq19d1x5nd6sb30bza7s9vgcyz404hzg4"; system = "cl-fluent-logger"; asd = "cl-fluent-logger"; }); systems = [ "cl-fluent-logger" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cl-messagepack" self) (getAttr "jonathan" self) (getAttr "local-time" self) (getAttr "pack" self) (getAttr "usocket" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "chanl" self) (getAttr "cl-messagepack" self) (getAttr "jonathan" self) (getAttr "local-time" self) (getAttr "pack" self) (getAttr "usocket" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -10534,11 +10726,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-form-types = (build-asdf-system { pname = "cl-form-types"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-form-types" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-form-types/2023-06-18/cl-form-types-20230618-git.tgz"; - sha256 = "0755anv54zlk3cdxw972x4i353zwzwckm6ybda8hk07akgryqqfk"; + url = "http://beta.quicklisp.org/archive/cl-form-types/2024-10-12/cl-form-types-20241012-git.tgz"; + sha256 = "1qc9dy9ji14nz5k2i17idbfks3ddwrwy9bf60rq95pnngkzqs3d1"; system = "cl-form-types"; asd = "cl-form-types"; }); @@ -10548,11 +10740,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-forms = (build-asdf-system { pname = "cl-forms"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-forms" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-forms/2023-10-21/cl-forms-20231021-git.tgz"; - sha256 = "1n0hix49jx172xcvjns8lpnxkd44kp0xsvwr5sr65vw6l74323br"; + url = "http://beta.quicklisp.org/archive/cl-forms/2024-10-12/cl-forms-20241012-git.tgz"; + sha256 = "19ldfrsa0nvbr0mlzy4cm9fmvxfmh6x9cn0nawaypbsrwpybfslc"; system = "cl-forms"; asd = "cl-forms"; }); @@ -10562,13 +10754,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-forms_dot_demo = (build-asdf-system { + pname = "cl-forms.demo"; + version = "20241012-git"; + asds = [ "cl-forms.demo" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-forms/2024-10-12/cl-forms-20241012-git.tgz"; + sha256 = "19ldfrsa0nvbr0mlzy4cm9fmvxfmh6x9cn0nawaypbsrwpybfslc"; + system = "cl-forms.demo"; + asd = "cl-forms.demo"; + }); + systems = [ "cl-forms.demo" ]; + lispLibs = [ (getAttr "cl-css" self) (getAttr "cl-forms" self) (getAttr "cl-forms_dot_djula" self) (getAttr "cl-forms_dot_test" self) (getAttr "cl-forms_dot_who" self) (getAttr "cl-forms_dot_who_dot_bootstrap" self) (getAttr "cl-who" self) (getAttr "djula" self) (getAttr "hunchentoot" self) (getAttr "trivial-open-browser" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-forms_dot_djula = (build-asdf-system { pname = "cl-forms.djula"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-forms.djula" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-forms/2023-10-21/cl-forms-20231021-git.tgz"; - sha256 = "1n0hix49jx172xcvjns8lpnxkd44kp0xsvwr5sr65vw6l74323br"; + url = "http://beta.quicklisp.org/archive/cl-forms/2024-10-12/cl-forms-20241012-git.tgz"; + sha256 = "19ldfrsa0nvbr0mlzy4cm9fmvxfmh6x9cn0nawaypbsrwpybfslc"; system = "cl-forms.djula"; asd = "cl-forms.djula"; }); @@ -10580,11 +10788,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-forms_dot_peppol = (build-asdf-system { pname = "cl-forms.peppol"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-forms.peppol" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-forms/2023-10-21/cl-forms-20231021-git.tgz"; - sha256 = "1n0hix49jx172xcvjns8lpnxkd44kp0xsvwr5sr65vw6l74323br"; + url = "http://beta.quicklisp.org/archive/cl-forms/2024-10-12/cl-forms-20241012-git.tgz"; + sha256 = "19ldfrsa0nvbr0mlzy4cm9fmvxfmh6x9cn0nawaypbsrwpybfslc"; system = "cl-forms.peppol"; asd = "cl-forms.peppol"; }); @@ -10596,11 +10804,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-forms_dot_test = (build-asdf-system { pname = "cl-forms.test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-forms.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-forms/2023-10-21/cl-forms-20231021-git.tgz"; - sha256 = "1n0hix49jx172xcvjns8lpnxkd44kp0xsvwr5sr65vw6l74323br"; + url = "http://beta.quicklisp.org/archive/cl-forms/2024-10-12/cl-forms-20241012-git.tgz"; + sha256 = "19ldfrsa0nvbr0mlzy4cm9fmvxfmh6x9cn0nawaypbsrwpybfslc"; system = "cl-forms.test"; asd = "cl-forms.test"; }); @@ -10612,11 +10820,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-forms_dot_who = (build-asdf-system { pname = "cl-forms.who"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-forms.who" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-forms/2023-10-21/cl-forms-20231021-git.tgz"; - sha256 = "1n0hix49jx172xcvjns8lpnxkd44kp0xsvwr5sr65vw6l74323br"; + url = "http://beta.quicklisp.org/archive/cl-forms/2024-10-12/cl-forms-20241012-git.tgz"; + sha256 = "19ldfrsa0nvbr0mlzy4cm9fmvxfmh6x9cn0nawaypbsrwpybfslc"; system = "cl-forms.who"; asd = "cl-forms.who"; }); @@ -10628,11 +10836,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-forms_dot_who_dot_bootstrap = (build-asdf-system { pname = "cl-forms.who.bootstrap"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-forms.who.bootstrap" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-forms/2023-10-21/cl-forms-20231021-git.tgz"; - sha256 = "1n0hix49jx172xcvjns8lpnxkd44kp0xsvwr5sr65vw6l74323br"; + url = "http://beta.quicklisp.org/archive/cl-forms/2024-10-12/cl-forms-20241012-git.tgz"; + sha256 = "19ldfrsa0nvbr0mlzy4cm9fmvxfmh6x9cn0nawaypbsrwpybfslc"; system = "cl-forms.who.bootstrap"; asd = "cl-forms.who.bootstrap"; }); @@ -10660,11 +10868,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-freetype2 = (build-asdf-system { pname = "cl-freetype2"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "cl-freetype2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-freetype2/2022-07-07/cl-freetype2-20220707-git.tgz"; - sha256 = "1nhq3qslja0bcgpbmzfycqhd4vw1l58zh4ia15m1h6535qxliy0q"; + url = "http://beta.quicklisp.org/archive/cl-freetype2/2024-10-12/cl-freetype2-20241012-git.tgz"; + sha256 = "00lkmawhjgqzfrsaaqmnffm7mmn3b31gzwz8g51kdjm9s16vwpjs"; system = "cl-freetype2"; asd = "cl-freetype2"; }); @@ -10674,11 +10882,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-freetype2-tests = (build-asdf-system { pname = "cl-freetype2-tests"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "cl-freetype2-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-freetype2/2022-07-07/cl-freetype2-20220707-git.tgz"; - sha256 = "1nhq3qslja0bcgpbmzfycqhd4vw1l58zh4ia15m1h6535qxliy0q"; + url = "http://beta.quicklisp.org/archive/cl-freetype2/2024-10-12/cl-freetype2-20241012-git.tgz"; + sha256 = "00lkmawhjgqzfrsaaqmnffm7mmn3b31gzwz8g51kdjm9s16vwpjs"; system = "cl-freetype2-tests"; asd = "cl-freetype2-tests"; }); @@ -10780,11 +10988,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-gamepad = (build-asdf-system { pname = "cl-gamepad"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-gamepad" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-gamepad/2023-10-21/cl-gamepad-20231021-git.tgz"; - sha256 = "1kwwrbhp0bw6mrhx9y79zgx3k4m81qyjbgdbr0fks9gs0wbj8kp6"; + url = "http://beta.quicklisp.org/archive/cl-gamepad/2024-10-12/cl-gamepad-20241012-git.tgz"; + sha256 = "015qx89rnkkqaa6qsl78zvb3sb1m4xdgjpgzn5ip5i27gw94770g"; system = "cl-gamepad"; asd = "cl-gamepad"; }); @@ -11194,11 +11402,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-github-v3 = (build-asdf-system { pname = "cl-github-v3"; - version = "20191227-git"; + version = "20241012-git"; asds = [ "cl-github-v3" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-github-v3/2019-12-27/cl-github-v3-20191227-git.tgz"; - sha256 = "1xwfw6y3vm7236rd6pdmb5akk63gpzhllx99mv4r7ia3yyf9d4f8"; + url = "http://beta.quicklisp.org/archive/cl-github-v3/2024-10-12/cl-github-v3-20241012-git.tgz"; + sha256 = "0ayhnildyjjmnyk0a1sx7qxg6vq9kcggaprqf37s5qi4kadvcsr2"; system = "cl-github-v3"; asd = "cl-github-v3"; }); @@ -16842,11 +17050,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-gltf = (build-asdf-system { pname = "cl-gltf"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-gltf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-gltf/2023-10-21/cl-gltf-20231021-git.tgz"; - sha256 = "1pn1jqdyai2q8pq7ldgcpc13c8k3amarx4q8g19jpr2rngp92w9a"; + url = "http://beta.quicklisp.org/archive/cl-gltf/2024-10-12/cl-gltf-20241012-git.tgz"; + sha256 = "0s7q6zsy85wryy3wb2hn3nprh1m4vmjzsai1mdcqlhzqyh5rm6jq"; system = "cl-gltf"; asd = "cl-gltf"; }); @@ -16858,11 +17066,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-glu = (build-asdf-system { pname = "cl-glu"; - version = "20191130-git"; + version = "20241012-git"; asds = [ "cl-glu" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-opengl/2019-11-30/cl-opengl-20191130-git.tgz"; - sha256 = "0mhqmll09f079pnd6mgswz9nvr6h5n27d4q7zpmm2igf1v460id7"; + url = "http://beta.quicklisp.org/archive/cl-opengl/2024-10-12/cl-opengl-20241012-git.tgz"; + sha256 = "1xpa3x9fx7wxrs5xmkj13yzh2wjfnlb0ihirfr9clngpv1y4gcm6"; system = "cl-glu"; asd = "cl-glu"; }); @@ -16874,11 +17082,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-glut = (build-asdf-system { pname = "cl-glut"; - version = "20191130-git"; + version = "20241012-git"; asds = [ "cl-glut" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-opengl/2019-11-30/cl-opengl-20191130-git.tgz"; - sha256 = "0mhqmll09f079pnd6mgswz9nvr6h5n27d4q7zpmm2igf1v460id7"; + url = "http://beta.quicklisp.org/archive/cl-opengl/2024-10-12/cl-opengl-20241012-git.tgz"; + sha256 = "1xpa3x9fx7wxrs5xmkj13yzh2wjfnlb0ihirfr9clngpv1y4gcm6"; system = "cl-glut"; asd = "cl-glut"; }); @@ -16890,11 +17098,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-glut-examples = (build-asdf-system { pname = "cl-glut-examples"; - version = "20191130-git"; + version = "20241012-git"; asds = [ "cl-glut-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-opengl/2019-11-30/cl-opengl-20191130-git.tgz"; - sha256 = "0mhqmll09f079pnd6mgswz9nvr6h5n27d4q7zpmm2igf1v460id7"; + url = "http://beta.quicklisp.org/archive/cl-opengl/2024-10-12/cl-opengl-20241012-git.tgz"; + sha256 = "1xpa3x9fx7wxrs5xmkj13yzh2wjfnlb0ihirfr9clngpv1y4gcm6"; system = "cl-glut-examples"; asd = "cl-glut-examples"; }); @@ -16922,11 +17130,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-gobject-introspection = (build-asdf-system { pname = "cl-gobject-introspection"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-gobject-introspection" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-gobject-introspection/2023-10-21/cl-gobject-introspection-20231021-git.tgz"; - sha256 = "0xwmj4b3whz12i474g54krp1v6h0fpvsx8lgwpk6rkli9xc71wc3"; + url = "http://beta.quicklisp.org/archive/cl-gobject-introspection/2024-10-12/cl-gobject-introspection-20241012-git.tgz"; + sha256 = "0iw8fciydh9bi2svq30hi029df16arpspk0mjzh0cm1c6kjm9dcj"; system = "cl-gobject-introspection"; asd = "cl-gobject-introspection"; }); @@ -16936,11 +17144,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-gobject-introspection-test = (build-asdf-system { pname = "cl-gobject-introspection-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-gobject-introspection-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-gobject-introspection/2023-10-21/cl-gobject-introspection-20231021-git.tgz"; - sha256 = "0xwmj4b3whz12i474g54krp1v6h0fpvsx8lgwpk6rkli9xc71wc3"; + url = "http://beta.quicklisp.org/archive/cl-gobject-introspection/2024-10-12/cl-gobject-introspection-20241012-git.tgz"; + sha256 = "0iw8fciydh9bi2svq30hi029df16arpspk0mjzh0cm1c6kjm9dcj"; system = "cl-gobject-introspection-test"; asd = "cl-gobject-introspection-test"; }); @@ -16966,6 +17174,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-gog-galaxy = (build-asdf-system { + pname = "cl-gog-galaxy"; + version = "20241012-git"; + asds = [ "cl-gog-galaxy" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-gog-galaxy/2024-10-12/cl-gog-galaxy-20241012-git.tgz"; + sha256 = "0pb8q4q1gj4n8ll5cglip4rl9gqy8y0g9kpqn2xkc3lssvxkkh63"; + system = "cl-gog-galaxy"; + asd = "cl-gog-galaxy"; + }); + systems = [ "cl-gog-galaxy" ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "trivial-features" self) (getAttr "trivial-indent" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-gopher = (build-asdf-system { pname = "cl-gopher"; version = "20231021-git"; @@ -17000,11 +17224,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-graph = (build-asdf-system { pname = "cl-graph"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-graph" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-graph/2023-02-14/cl-graph-20230214-git.tgz"; - sha256 = "0g1abkph9zb0m9zz6q2471ml9q9acdhwyapk8ra3bisqpwlxvpyf"; + url = "http://beta.quicklisp.org/archive/cl-graph/2024-10-12/cl-graph-20241012-git.tgz"; + sha256 = "1adwlkj2qp73irsswfi50ayjvz3di8fh1sqavsdl7l2d6k7yipdg"; system = "cl-graph"; asd = "cl-graph"; }); @@ -17016,11 +17240,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-graph_plus_hu_dot_dwim_dot_graphviz = (build-asdf-system { pname = "cl-graph+hu.dwim.graphviz"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-graph+hu.dwim.graphviz" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-graph/2023-02-14/cl-graph-20230214-git.tgz"; - sha256 = "0g1abkph9zb0m9zz6q2471ml9q9acdhwyapk8ra3bisqpwlxvpyf"; + url = "http://beta.quicklisp.org/archive/cl-graph/2024-10-12/cl-graph-20241012-git.tgz"; + sha256 = "1adwlkj2qp73irsswfi50ayjvz3di8fh1sqavsdl7l2d6k7yipdg"; system = "cl-graph+hu.dwim.graphviz"; asd = "cl-graph+hu.dwim.graphviz"; }); @@ -17032,11 +17256,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-grip = (build-asdf-system { pname = "cl-grip"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "cl-grip" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-grip/2021-10-20/cl-grip-20211020-git.tgz"; - sha256 = "1qplxq5082wai2blmq29a852jv5kdzwc8n9qlv0kqysjppph0hqz"; + url = "http://beta.quicklisp.org/archive/cl-grip/2024-10-12/cl-grip-20241012-git.tgz"; + sha256 = "0k9qg6pdj4xs5rshf78jmiasyqj4sy5r5hhrccskfsajw6wfmbc9"; system = "cl-grip"; asd = "cl-grip"; }); @@ -17250,11 +17474,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-hash-util = (build-asdf-system { pname = "cl-hash-util"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-hash-util" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-hash-util/2023-10-21/cl-hash-util-20231021-git.tgz"; - sha256 = "1xaqj5nd9qrd8xy8r88j90qq9fl6mhfrdvhfg5qhz42igr7mjnh3"; + url = "http://beta.quicklisp.org/archive/cl-hash-util/2024-10-12/cl-hash-util-20241012-git.tgz"; + sha256 = "1xab7v2mav241rs8w68qmg485g4f75nrac3hjcnm0cb19ickbs1m"; system = "cl-hash-util"; asd = "cl-hash-util"; }); @@ -17266,11 +17490,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-hash-util-test = (build-asdf-system { pname = "cl-hash-util-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-hash-util-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-hash-util/2023-10-21/cl-hash-util-20231021-git.tgz"; - sha256 = "1xaqj5nd9qrd8xy8r88j90qq9fl6mhfrdvhfg5qhz42igr7mjnh3"; + url = "http://beta.quicklisp.org/archive/cl-hash-util/2024-10-12/cl-hash-util-20241012-git.tgz"; + sha256 = "1xab7v2mav241rs8w68qmg485g4f75nrac3hjcnm0cb19ickbs1m"; system = "cl-hash-util-test"; asd = "cl-hash-util-test"; }); @@ -17386,11 +17610,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-html-readme = (build-asdf-system { pname = "cl-html-readme"; - version = "quicklisp-current-release-fa304a63-git"; + version = "quicklisp-current-release-f8aed591-git"; asds = [ "cl-html-readme" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-html-readme/2021-02-28/cl-html-readme-quicklisp-current-release-fa304a63-git.tgz"; - sha256 = "01z2ykfhg7wx7sz4kp1c6cj9ffbpppnfgfd2jpizd7f5id2wi3cb"; + url = "http://beta.quicklisp.org/archive/cl-html-readme/2024-10-12/cl-html-readme-quicklisp-current-release-f8aed591-git.tgz"; + sha256 = "1q23fdbhmra7hl12vd70m7q350wych6f739l8xmz6f84dwm9i8c7"; system = "cl-html-readme"; asd = "cl-html-readme"; }); @@ -17496,11 +17720,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-i18n = (build-asdf-system { pname = "cl-i18n"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-i18n" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-i18n/2023-10-21/cl-i18n-20231021-git.tgz"; - sha256 = "1i372x9kvgj5nx9ygcq7bp6lkbxsfgsdnbg4mjdpg1321q4c9qv4"; + url = "http://beta.quicklisp.org/archive/cl-i18n/2024-10-12/cl-i18n-20241012-git.tgz"; + sha256 = "1gp4ncf7ywyyh2f0zdkqibvn0wxm4hvsj672ni2vfqvhcivqfdza"; system = "cl-i18n"; asd = "cl-i18n"; }); @@ -17640,11 +17864,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-info = (build-asdf-system { pname = "cl-info"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "cl-info" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-info/2022-11-06/cl-info-20221106-git.tgz"; - sha256 = "1mg58n6qizssm8wqxnxgkrxaabmjzbrfjh9qld69y5z60zrybg1f"; + url = "http://beta.quicklisp.org/archive/cl-info/2024-10-12/cl-info-20241012-git.tgz"; + sha256 = "0vrrlcwdqnw8v34zd7wkjxh02zysam5c5s5n4l5q6s2jy0gmai0y"; system = "cl-info"; asd = "cl-info"; }); @@ -17656,11 +17880,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-info-test = (build-asdf-system { pname = "cl-info-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "cl-info-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-info/2022-11-06/cl-info-20221106-git.tgz"; - sha256 = "1mg58n6qizssm8wqxnxgkrxaabmjzbrfjh9qld69y5z60zrybg1f"; + url = "http://beta.quicklisp.org/archive/cl-info/2024-10-12/cl-info-20241012-git.tgz"; + sha256 = "0vrrlcwdqnw8v34zd7wkjxh02zysam5c5s5n4l5q6s2jy0gmai0y"; system = "cl-info-test"; asd = "cl-info-test"; }); @@ -17672,11 +17896,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ini = (build-asdf-system { pname = "cl-ini"; - version = "20201220-git"; + version = "20241012-git"; asds = [ "cl-ini" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ini/2020-12-20/cl-ini-20201220-git.tgz"; - sha256 = "12vy3gspqn0wmkyz5id1xrgv1scgb16m7pkvmbmi19vlpj2iyq7p"; + url = "http://beta.quicklisp.org/archive/cl-ini/2024-10-12/cl-ini-20241012-git.tgz"; + sha256 = "1dj2w1fs1j52wxy91qy2jrn88aqggrvsg4fngl90ssvfh3awk4wm"; system = "cl-ini"; asd = "cl-ini"; }); @@ -17688,11 +17912,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ini-test = (build-asdf-system { pname = "cl-ini-test"; - version = "20201220-git"; + version = "20241012-git"; asds = [ "cl-ini-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ini/2020-12-20/cl-ini-20201220-git.tgz"; - sha256 = "12vy3gspqn0wmkyz5id1xrgv1scgb16m7pkvmbmi19vlpj2iyq7p"; + url = "http://beta.quicklisp.org/archive/cl-ini/2024-10-12/cl-ini-20241012-git.tgz"; + sha256 = "1dj2w1fs1j52wxy91qy2jrn88aqggrvsg4fngl90ssvfh3awk4wm"; system = "cl-ini-test"; asd = "cl-ini-test"; }); @@ -17814,11 +18038,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ipfs-api2 = (build-asdf-system { pname = "cl-ipfs-api2"; - version = "20210630-git"; + version = "20241012-git"; asds = [ "cl-ipfs-api2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ipfs-api2/2021-06-30/cl-ipfs-api2-20210630-git.tgz"; - sha256 = "1h0csxk4db1hid793mk5kz3nbjyl7z4ic1zk2wy46k1vz5lnnsph"; + url = "http://beta.quicklisp.org/archive/cl-ipfs-api2/2024-10-12/cl-ipfs-api2-20241012-git.tgz"; + sha256 = "0lz19ayvcdhakckxp6z6gzlglhvnaj0qqyx1jmp211fms7dzyl0x"; system = "cl-ipfs-api2"; asd = "cl-ipfs-api2"; }); @@ -17972,11 +18196,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-js = (build-asdf-system { pname = "cl-js"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-js" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/js/2023-02-14/js-20230214-git.tgz"; - sha256 = "1bf2p506zcmsqmfm5lamvxwqzcs2p8y5rf63i3s8wi46nkgqr0m7"; + url = "http://beta.quicklisp.org/archive/js/2024-10-12/js-20241012-git.tgz"; + sha256 = "084rfqxbhrwqb3xfcx3kzmnyzacr2wb8bkxzl0srdgn17pl7hkx3"; system = "cl-js"; asd = "cl-js"; }); @@ -18242,11 +18466,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-kanren = (build-asdf-system { pname = "cl-kanren"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-kanren" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-kanren/2023-10-21/cl-kanren-20231021-git.tgz"; - sha256 = "1na3gna16cnwzfw2irb294aiiknhvc283wl7q4vzdngzx5pqfim4"; + url = "http://beta.quicklisp.org/archive/cl-kanren/2024-10-12/cl-kanren-20241012-git.tgz"; + sha256 = "136jdgh23vb7imihk9dqwpk8wzjmpvkqfhah3qrxpsw0xpir29sh"; system = "cl-kanren"; asd = "cl-kanren"; }); @@ -18258,11 +18482,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-kanren-test = (build-asdf-system { pname = "cl-kanren-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-kanren-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-kanren/2023-10-21/cl-kanren-20231021-git.tgz"; - sha256 = "1na3gna16cnwzfw2irb294aiiknhvc283wl7q4vzdngzx5pqfim4"; + url = "http://beta.quicklisp.org/archive/cl-kanren/2024-10-12/cl-kanren-20241012-git.tgz"; + sha256 = "136jdgh23vb7imihk9dqwpk8wzjmpvkqfhah3qrxpsw0xpir29sh"; system = "cl-kanren-test"; asd = "cl-kanren-test"; }); @@ -18492,6 +18716,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-lc = (build-asdf-system { + pname = "cl-lc"; + version = "20241012-git"; + asds = [ "cl-lc" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-lc/2024-10-12/cl-lc-20241012-git.tgz"; + sha256 = "07wpbwgjybhp6vdr2rbd93jwakqixr9dyymp3yz1h684ln7wvfkb"; + system = "cl-lc"; + asd = "cl-lc"; + }); + systems = [ "cl-lc" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "iterate" self) (getAttr "optima" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-ledger = (build-asdf-system { pname = "cl-ledger"; version = "20200218-git"; @@ -18542,11 +18782,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-liballegro = (build-asdf-system { pname = "cl-liballegro"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-liballegro" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-liballegro/2023-10-21/cl-liballegro-20231021-git.tgz"; - sha256 = "1w0gf32yds588mgg11gxlc3lzfbw4j7j4nilkv90zp9q8dlkixf7"; + url = "http://beta.quicklisp.org/archive/cl-liballegro/2024-10-12/cl-liballegro-20241012-git.tgz"; + sha256 = "1q263wzm25rynyhcym216l3swhrz6fhiwhdbh4iz212hw9w0kn71"; system = "cl-liballegro"; asd = "cl-liballegro"; }); @@ -18558,11 +18798,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-liballegro-nuklear = (build-asdf-system { pname = "cl-liballegro-nuklear"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-liballegro-nuklear" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-liballegro-nuklear/2023-10-21/cl-liballegro-nuklear-20231021-git.tgz"; - sha256 = "04v99fgl2kg8f4gsx1nwh7xlw1v2gy2zd5lc99syczz0fqh10jr9"; + url = "http://beta.quicklisp.org/archive/cl-liballegro-nuklear/2024-10-12/cl-liballegro-nuklear-20241012-git.tgz"; + sha256 = "15wbs1jfl60dnyzgzdibw2hkl64cx3n3v90i5jp0vd123kix217j"; system = "cl-liballegro-nuklear"; asd = "cl-liballegro-nuklear"; }); @@ -18918,11 +19158,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-log = (build-asdf-system { pname = "cl-log"; - version = ".1.0.1"; + version = "20241012-git"; asds = [ "cl-log" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-log/2013-01-28/cl-log.1.0.1.tgz"; - sha256 = "0lfy3sxr2shhv8qpyry9kk9gcwwl6bhfgzv0pczibl70mgraqnys"; + url = "http://beta.quicklisp.org/archive/cl-log/2024-10-12/cl-log-20241012-git.tgz"; + sha256 = "1r3z9swy1b59swvaa5b97is9ysrfmjvjjhhw56p7p5hqg93b92ak"; system = "cl-log"; asd = "cl-log"; }); @@ -18932,22 +19172,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - cl-log-test = (build-asdf-system { - pname = "cl-log-test"; - version = ".1.0.1"; - asds = [ "cl-log-test" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-log/2013-01-28/cl-log.1.0.1.tgz"; - sha256 = "0lfy3sxr2shhv8qpyry9kk9gcwwl6bhfgzv0pczibl70mgraqnys"; - system = "cl-log-test"; - asd = "cl-log-test"; - }); - systems = [ "cl-log-test" ]; - lispLibs = [ (getAttr "cl-log" self) (getAttr "eos" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); cl-logic = (build-asdf-system { pname = "cl-logic"; version = "20141217-git"; @@ -19110,11 +19334,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-markless = (build-asdf-system { pname = "cl-markless"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-markless" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-markless/2023-10-21/cl-markless-20231021-git.tgz"; - sha256 = "1m7hqiwm990aapa1kdwbkgydz44l3syfg2ijrxgrkq5w626l95wd"; + url = "http://beta.quicklisp.org/archive/cl-markless/2024-10-12/cl-markless-20241012-git.tgz"; + sha256 = "0csbqglj5ccjw7j95a6cb8pj195lrdk1pn0y3f37w3pjy4pg782g"; system = "cl-markless"; asd = "cl-markless"; }); @@ -19126,11 +19350,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-markless-epub = (build-asdf-system { pname = "cl-markless-epub"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-markless-epub" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-markless/2023-10-21/cl-markless-20231021-git.tgz"; - sha256 = "1m7hqiwm990aapa1kdwbkgydz44l3syfg2ijrxgrkq5w626l95wd"; + url = "http://beta.quicklisp.org/archive/cl-markless/2024-10-12/cl-markless-20241012-git.tgz"; + sha256 = "0csbqglj5ccjw7j95a6cb8pj195lrdk1pn0y3f37w3pjy4pg782g"; system = "cl-markless-epub"; asd = "cl-markless-epub"; }); @@ -19142,11 +19366,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-markless-latex = (build-asdf-system { pname = "cl-markless-latex"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-markless-latex" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-markless/2023-10-21/cl-markless-20231021-git.tgz"; - sha256 = "1m7hqiwm990aapa1kdwbkgydz44l3syfg2ijrxgrkq5w626l95wd"; + url = "http://beta.quicklisp.org/archive/cl-markless/2024-10-12/cl-markless-20241012-git.tgz"; + sha256 = "0csbqglj5ccjw7j95a6cb8pj195lrdk1pn0y3f37w3pjy4pg782g"; system = "cl-markless-latex"; asd = "cl-markless-latex"; }); @@ -19158,11 +19382,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-markless-markdown = (build-asdf-system { pname = "cl-markless-markdown"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-markless-markdown" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-markless/2023-10-21/cl-markless-20231021-git.tgz"; - sha256 = "1m7hqiwm990aapa1kdwbkgydz44l3syfg2ijrxgrkq5w626l95wd"; + url = "http://beta.quicklisp.org/archive/cl-markless/2024-10-12/cl-markless-20241012-git.tgz"; + sha256 = "0csbqglj5ccjw7j95a6cb8pj195lrdk1pn0y3f37w3pjy4pg782g"; system = "cl-markless-markdown"; asd = "cl-markless-markdown"; }); @@ -19174,11 +19398,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-markless-plump = (build-asdf-system { pname = "cl-markless-plump"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-markless-plump" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-markless/2023-10-21/cl-markless-20231021-git.tgz"; - sha256 = "1m7hqiwm990aapa1kdwbkgydz44l3syfg2ijrxgrkq5w626l95wd"; + url = "http://beta.quicklisp.org/archive/cl-markless/2024-10-12/cl-markless-20241012-git.tgz"; + sha256 = "0csbqglj5ccjw7j95a6cb8pj195lrdk1pn0y3f37w3pjy4pg782g"; system = "cl-markless-plump"; asd = "cl-markless-plump"; }); @@ -19190,27 +19414,27 @@ in lib.makeScope pkgs.newScope (self: { }); cl-markless-standalone = (build-asdf-system { pname = "cl-markless-standalone"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-markless-standalone" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-markless/2023-10-21/cl-markless-20231021-git.tgz"; - sha256 = "1m7hqiwm990aapa1kdwbkgydz44l3syfg2ijrxgrkq5w626l95wd"; + url = "http://beta.quicklisp.org/archive/cl-markless/2024-10-12/cl-markless-20241012-git.tgz"; + sha256 = "0csbqglj5ccjw7j95a6cb8pj195lrdk1pn0y3f37w3pjy4pg782g"; system = "cl-markless-standalone"; asd = "cl-markless-standalone"; }); systems = [ "cl-markless-standalone" ]; - lispLibs = [ (getAttr "cl-markless" self) (getAttr "cl-markless-epub" self) (getAttr "cl-markless-latex" self) (getAttr "cl-markless-markdown" self) (getAttr "cl-markless-plump" self) (getAttr "command-line-arguments" self) ]; + lispLibs = [ (getAttr "cl-markless" self) (getAttr "cl-markless-epub" self) (getAttr "cl-markless-latex" self) (getAttr "cl-markless-markdown" self) (getAttr "cl-markless-plump" self) (getAttr "command-line-arguments" self) (getAttr "pathname-utils" self) ]; meta = { hydraPlatforms = [ ]; }; }); cl-markless-test = (build-asdf-system { pname = "cl-markless-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-markless-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-markless/2023-10-21/cl-markless-20231021-git.tgz"; - sha256 = "1m7hqiwm990aapa1kdwbkgydz44l3syfg2ijrxgrkq5w626l95wd"; + url = "http://beta.quicklisp.org/archive/cl-markless/2024-10-12/cl-markless-20241012-git.tgz"; + sha256 = "0csbqglj5ccjw7j95a6cb8pj195lrdk1pn0y3f37w3pjy4pg782g"; system = "cl-markless-test"; asd = "cl-markless-test"; }); @@ -19588,11 +19812,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum = (build-asdf-system { pname = "cl-migratum"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum"; asd = "cl-migratum"; }); @@ -19604,11 +19828,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum_dot_cli = (build-asdf-system { pname = "cl-migratum.cli"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum.cli" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum.cli"; asd = "cl-migratum.cli"; }); @@ -19620,11 +19844,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum_dot_driver_dot_dbi = (build-asdf-system { pname = "cl-migratum.driver.dbi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum.driver.dbi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum.driver.dbi"; asd = "cl-migratum.driver.dbi"; }); @@ -19636,11 +19860,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum_dot_driver_dot_mixins = (build-asdf-system { pname = "cl-migratum.driver.mixins"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum.driver.mixins" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum.driver.mixins"; asd = "cl-migratum.driver.mixins"; }); @@ -19652,11 +19876,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum_dot_driver_dot_postmodern-postgresql = (build-asdf-system { pname = "cl-migratum.driver.postmodern-postgresql"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum.driver.postmodern-postgresql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum.driver.postmodern-postgresql"; asd = "cl-migratum.driver.postmodern-postgresql"; }); @@ -19668,11 +19892,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum_dot_driver_dot_rdbms-postgresql = (build-asdf-system { pname = "cl-migratum.driver.rdbms-postgresql"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum.driver.rdbms-postgresql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum.driver.rdbms-postgresql"; asd = "cl-migratum.driver.rdbms-postgresql"; }); @@ -19684,11 +19908,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum_dot_provider_dot_local-path = (build-asdf-system { pname = "cl-migratum.provider.local-path"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum.provider.local-path" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum.provider.local-path"; asd = "cl-migratum.provider.local-path"; }); @@ -19700,11 +19924,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-migratum_dot_test = (build-asdf-system { pname = "cl-migratum.test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-migratum.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-migratum/2023-10-21/cl-migratum-20231021-git.tgz"; - sha256 = "0vykbbrk3bq4lx27qxdj5afizvi7h8vx148x3cb790kljb0qf2vk"; + url = "http://beta.quicklisp.org/archive/cl-migratum/2024-10-12/cl-migratum-20241012-git.tgz"; + sha256 = "0bkzbvv3s2j5gs032nj82b0p3x6j3in54kqyg74x54b25q75ymvw"; system = "cl-migratum.test"; asd = "cl-migratum.test"; }); @@ -19828,11 +20052,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed = (build-asdf-system { pname = "cl-mixed"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed"; asd = "cl-mixed"; }); @@ -19844,11 +20068,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-aaudio = (build-asdf-system { pname = "cl-mixed-aaudio"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-aaudio" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-aaudio"; asd = "cl-mixed-aaudio"; }); @@ -19860,11 +20084,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-alsa = (build-asdf-system { pname = "cl-mixed-alsa"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-alsa" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-alsa"; asd = "cl-mixed-alsa"; }); @@ -19876,11 +20100,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-coreaudio = (build-asdf-system { pname = "cl-mixed-coreaudio"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-coreaudio" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-coreaudio"; asd = "cl-mixed-coreaudio"; }); @@ -19892,11 +20116,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-examples = (build-asdf-system { pname = "cl-mixed-examples"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-examples"; asd = "cl-mixed-examples"; }); @@ -19908,11 +20132,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-flac = (build-asdf-system { pname = "cl-mixed-flac"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-flac" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-flac"; asd = "cl-mixed-flac"; }); @@ -19924,11 +20148,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-jack = (build-asdf-system { pname = "cl-mixed-jack"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-jack" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-jack"; asd = "cl-mixed-jack"; }); @@ -19940,11 +20164,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-mpg123 = (build-asdf-system { pname = "cl-mixed-mpg123"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-mpg123" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-mpg123"; asd = "cl-mixed-mpg123"; }); @@ -19956,11 +20180,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-mpt = (build-asdf-system { pname = "cl-mixed-mpt"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-mpt" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-mpt"; asd = "cl-mixed-mpt"; }); @@ -19972,11 +20196,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-nxau = (build-asdf-system { pname = "cl-mixed-nxau"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-nxau" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-nxau"; asd = "cl-mixed-nxau"; }); @@ -19988,11 +20212,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-opus = (build-asdf-system { pname = "cl-mixed-opus"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-opus" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-opus"; asd = "cl-mixed-opus"; }); @@ -20004,11 +20228,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-oss = (build-asdf-system { pname = "cl-mixed-oss"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-oss" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-oss"; asd = "cl-mixed-oss"; }); @@ -20020,11 +20244,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-out123 = (build-asdf-system { pname = "cl-mixed-out123"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-out123" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-out123"; asd = "cl-mixed-out123"; }); @@ -20036,11 +20260,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-pulse = (build-asdf-system { pname = "cl-mixed-pulse"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-pulse" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-pulse"; asd = "cl-mixed-pulse"; }); @@ -20050,13 +20274,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-mixed-qoa = (build-asdf-system { + pname = "cl-mixed-qoa"; + version = "20241012-git"; + asds = [ "cl-mixed-qoa" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; + system = "cl-mixed-qoa"; + asd = "cl-mixed-qoa"; + }); + systems = [ "cl-mixed-qoa" ]; + lispLibs = [ (getAttr "cl-mixed" self) (getAttr "cl-qoa" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-mixed-sdl2 = (build-asdf-system { pname = "cl-mixed-sdl2"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-sdl2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-sdl2"; asd = "cl-mixed-sdl2"; }); @@ -20068,11 +20308,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-vorbis = (build-asdf-system { pname = "cl-mixed-vorbis"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-vorbis" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-vorbis"; asd = "cl-mixed-vorbis"; }); @@ -20084,11 +20324,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-wasapi = (build-asdf-system { pname = "cl-mixed-wasapi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-wasapi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-wasapi"; asd = "cl-mixed-wasapi"; }); @@ -20100,11 +20340,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-wav = (build-asdf-system { pname = "cl-mixed-wav"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-wav" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-wav"; asd = "cl-mixed-wav"; }); @@ -20116,11 +20356,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-winmm = (build-asdf-system { pname = "cl-mixed-winmm"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-winmm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-winmm"; asd = "cl-mixed-winmm"; }); @@ -20132,11 +20372,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mixed-xaudio2 = (build-asdf-system { pname = "cl-mixed-xaudio2"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mixed-xaudio2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mixed/2023-10-21/cl-mixed-20231021-git.tgz"; - sha256 = "0sxq4yrsbxb2sgbijkqcvl9raksrnib2f9j6dm1kak0i9ry48cqc"; + url = "http://beta.quicklisp.org/archive/cl-mixed/2024-10-12/cl-mixed-20241012-git.tgz"; + sha256 = "1wianjcr1ha9lb46q0i05fwn5cl4yzkg78mqk0ib564fbyx4y0q9"; system = "cl-mixed-xaudio2"; asd = "cl-mixed-xaudio2"; }); @@ -20212,11 +20452,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-modio = (build-asdf-system { pname = "cl-modio"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-modio" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-modio/2023-10-21/cl-modio-20231021-git.tgz"; - sha256 = "1gjjr0x116afm9cap4h765zr3k7xm50ks1yl6d6hz08y5l226lyh"; + url = "http://beta.quicklisp.org/archive/cl-modio/2024-10-12/cl-modio-20241012-git.tgz"; + sha256 = "1f755xqpibdrxiqclnsiba36bl8xgw958h0lb0rw6hjsvrx9z8dg"; system = "cl-modio"; asd = "cl-modio"; }); @@ -20372,11 +20612,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mount-info = (build-asdf-system { pname = "cl-mount-info"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mount-info" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mount-info/2023-10-21/cl-mount-info-20231021-git.tgz"; - sha256 = "0k23qk10a67xqv2pvj4s0qf5a45xfj2h6hn34q1bnmmvhfw51ivd"; + url = "http://beta.quicklisp.org/archive/cl-mount-info/2024-10-12/cl-mount-info-20241012-git.tgz"; + sha256 = "0i5vpr0s27gqrskl5qkbw23ba00abbmsskgvg2zhpdljg5qiwlcw"; system = "cl-mount-info"; asd = "cl-mount-info"; }); @@ -20388,11 +20628,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mpg123 = (build-asdf-system { pname = "cl-mpg123"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mpg123" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mpg123/2023-10-21/cl-mpg123-20231021-git.tgz"; - sha256 = "0qgkcyvwak9qwlf0yw0bjm3ba28xjli7m41q5988mkap85y53hs0"; + url = "http://beta.quicklisp.org/archive/cl-mpg123/2024-10-12/cl-mpg123-20241012-git.tgz"; + sha256 = "03ysv3psfj4agf62gn1skc26qzd9g9zx6yjxxs9lrjz7g9kwf1xk"; system = "cl-mpg123"; asd = "cl-mpg123"; }); @@ -20404,11 +20644,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mpg123-example = (build-asdf-system { pname = "cl-mpg123-example"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-mpg123-example" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mpg123/2023-10-21/cl-mpg123-20231021-git.tgz"; - sha256 = "0qgkcyvwak9qwlf0yw0bjm3ba28xjli7m41q5988mkap85y53hs0"; + url = "http://beta.quicklisp.org/archive/cl-mpg123/2024-10-12/cl-mpg123-20241012-git.tgz"; + sha256 = "03ysv3psfj4agf62gn1skc26qzd9g9zx6yjxxs9lrjz7g9kwf1xk"; system = "cl-mpg123-example"; asd = "cl-mpg123-example"; }); @@ -20564,11 +20804,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mustache = (build-asdf-system { pname = "cl-mustache"; - version = "20200325-git"; + version = "20241012-git"; asds = [ "cl-mustache" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mustache/2020-03-25/cl-mustache-20200325-git.tgz"; - sha256 = "1wsmr46c56l0chshffk3rbvd7v2jwplmgmkkyr98n5n2qnjcqrc4"; + url = "http://beta.quicklisp.org/archive/cl-mustache/2024-10-12/cl-mustache-20241012-git.tgz"; + sha256 = "0isdrz1dgjvmfqvsgs2pmrran41w9n6f44r9fpdhdkjxa5zvy46b"; system = "cl-mustache"; asd = "cl-mustache"; }); @@ -20578,11 +20818,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mustache-test = (build-asdf-system { pname = "cl-mustache-test"; - version = "20200325-git"; + version = "20241012-git"; asds = [ "cl-mustache-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mustache/2020-03-25/cl-mustache-20200325-git.tgz"; - sha256 = "1wsmr46c56l0chshffk3rbvd7v2jwplmgmkkyr98n5n2qnjcqrc4"; + url = "http://beta.quicklisp.org/archive/cl-mustache/2024-10-12/cl-mustache-20241012-git.tgz"; + sha256 = "0isdrz1dgjvmfqvsgs2pmrran41w9n6f44r9fpdhdkjxa5zvy46b"; system = "cl-mustache-test"; asd = "cl-mustache-test"; }); @@ -20738,11 +20978,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mysql = (build-asdf-system { pname = "cl-mysql"; - version = "20200610-git"; + version = "20241012-git"; asds = [ "cl-mysql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz"; - sha256 = "1jk2571w5zhrmza4mr5z4ia6g7r5hzhp8dsxnpx2ypnla9xpxv5h"; + url = "http://beta.quicklisp.org/archive/cl-mysql/2024-10-12/cl-mysql-20241012-git.tgz"; + sha256 = "0ibxfjnvcgpibsfqjx2d3dcjcabiw6dj43vmr76b55fc4qlkjvz5"; system = "cl-mysql"; asd = "cl-mysql"; }); @@ -20752,11 +20992,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-mysql-test = (build-asdf-system { pname = "cl-mysql-test"; - version = "20200610-git"; + version = "20241012-git"; asds = [ "cl-mysql-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mysql/2020-06-10/cl-mysql-20200610-git.tgz"; - sha256 = "1jk2571w5zhrmza4mr5z4ia6g7r5hzhp8dsxnpx2ypnla9xpxv5h"; + url = "http://beta.quicklisp.org/archive/cl-mysql/2024-10-12/cl-mysql-20241012-git.tgz"; + sha256 = "0ibxfjnvcgpibsfqjx2d3dcjcabiw6dj43vmr76b55fc4qlkjvz5"; system = "cl-mysql-test"; asd = "cl-mysql-test"; }); @@ -20766,130 +21006,82 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - cl-naive-store = (build-asdf-system { - pname = "cl-naive-store"; - version = "20231021-git"; - asds = [ "cl-naive-store" ]; + cl-naive-deprecation = (build-asdf-system { + pname = "cl-naive-deprecation"; + version = "20241012-git"; + asds = [ "cl-naive-deprecation" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store"; - asd = "cl-naive-store"; + url = "http://beta.quicklisp.org/archive/cl-naive-deprecation/2024-10-12/cl-naive-deprecation-20241012-git.tgz"; + sha256 = "17x6b5sr34qjfzbn2r6f5n4xa4p1qi438k792b48qiqnalkfp29m"; + system = "cl-naive-deprecation"; + asd = "cl-naive-deprecation"; }); - systems = [ "cl-naive-store" ]; - lispLibs = [ (getAttr "cl-naive-store_dot_definitions" self) (getAttr "cl-naive-store_dot_document-types" self) (getAttr "cl-naive-store_dot_naive-core" self) (getAttr "cl-naive-store_dot_naive-documents" self) (getAttr "cl-naive-store_dot_naive-indexed" self) (getAttr "cl-naive-store_dot_naive-merkle" self) ]; + systems = [ "cl-naive-deprecation" ]; + lispLibs = [ ]; meta = { hydraPlatforms = [ ]; }; }); - cl-naive-store_dot_definitions = (build-asdf-system { - pname = "cl-naive-store.definitions"; - version = "20231021-git"; - asds = [ "cl-naive-store.definitions" ]; + cl-naive-ptrees = (build-asdf-system { + pname = "cl-naive-ptrees"; + version = "20241012-git"; + asds = [ "cl-naive-ptrees" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store.definitions"; - asd = "cl-naive-store.definitions"; + url = "http://beta.quicklisp.org/archive/cl-naive-ptrees/2024-10-12/cl-naive-ptrees-20241012-git.tgz"; + sha256 = "10548wm3mpjxmjibidv1dd8wzcn3nn12pzwlpdd1li362v8l9n6y"; + system = "cl-naive-ptrees"; + asd = "cl-naive-ptrees"; }); - systems = [ "cl-naive-store.definitions" ]; - lispLibs = [ (getAttr "cl-naive-store_dot_document-types" self) (getAttr "cl-naive-store_dot_naive-core" self) ]; + systems = [ "cl-naive-ptrees" ]; + lispLibs = [ ]; meta = { hydraPlatforms = [ ]; }; }); - cl-naive-store_dot_document-types = (build-asdf-system { - pname = "cl-naive-store.document-types"; - version = "20231021-git"; - asds = [ "cl-naive-store.document-types" ]; + cl-naive-ptrees_dot_tests = (build-asdf-system { + pname = "cl-naive-ptrees.tests"; + version = "20241012-git"; + asds = [ "cl-naive-ptrees.tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store.document-types"; - asd = "cl-naive-store.document-types"; + url = "http://beta.quicklisp.org/archive/cl-naive-ptrees/2024-10-12/cl-naive-ptrees-20241012-git.tgz"; + sha256 = "10548wm3mpjxmjibidv1dd8wzcn3nn12pzwlpdd1li362v8l9n6y"; + system = "cl-naive-ptrees.tests"; + asd = "cl-naive-ptrees.tests"; }); - systems = [ "cl-naive-store.document-types" ]; - lispLibs = [ (getAttr "cl-naive-store_dot_naive-core" self) ]; + systems = [ "cl-naive-ptrees.tests" ]; + lispLibs = [ (getAttr "cl-naive-ptrees" self) (getAttr "cl-naive-tests" self) ]; meta = { hydraPlatforms = [ ]; }; }); - cl-naive-store_dot_naive-core = (build-asdf-system { - pname = "cl-naive-store.naive-core"; - version = "20231021-git"; - asds = [ "cl-naive-store.naive-core" ]; + cl-naive-tests = (build-asdf-system { + pname = "cl-naive-tests"; + version = "20241012-git"; + asds = [ "cl-naive-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store.naive-core"; - asd = "cl-naive-store.naive-core"; + url = "http://beta.quicklisp.org/archive/cl-naive-tests/2024-10-12/cl-naive-tests-20241012-git.tgz"; + sha256 = "1b7vvl5myybx92k778p3ca5367g4m6rh5k3rpr6qp9p4amd0yy2f"; + system = "cl-naive-tests"; + asd = "cl-naive-tests"; }); - systems = [ "cl-naive-store.naive-core" ]; - lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cl-cpus" self) (getAttr "cl-fad" self) (getAttr "cl-getx" self) (getAttr "cl-murmurhash" self) (getAttr "ironclad" self) (getAttr "local-time" self) (getAttr "lparallel" self) (getAttr "split-sequence" self) (getAttr "uuid" self) ]; + systems = [ "cl-naive-tests" ]; + lispLibs = [ (getAttr "cl-who" self) ]; meta = { hydraPlatforms = [ ]; }; }); - cl-naive-store_dot_naive-documents = (build-asdf-system { - pname = "cl-naive-store.naive-documents"; - version = "20231021-git"; - asds = [ "cl-naive-store.naive-documents" ]; + cl-naive-tests_dot_tests = (build-asdf-system { + pname = "cl-naive-tests.tests"; + version = "20241012-git"; + asds = [ "cl-naive-tests.tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store.naive-documents"; - asd = "cl-naive-store.naive-documents"; + url = "http://beta.quicklisp.org/archive/cl-naive-tests/2024-10-12/cl-naive-tests-20241012-git.tgz"; + sha256 = "1b7vvl5myybx92k778p3ca5367g4m6rh5k3rpr6qp9p4amd0yy2f"; + system = "cl-naive-tests.tests"; + asd = "cl-naive-tests.tests"; }); - systems = [ "cl-naive-store.naive-documents" ]; - lispLibs = [ (getAttr "cl-naive-store_dot_document-types" self) (getAttr "cl-naive-store_dot_naive-core" self) (getAttr "cl-naive-store_dot_naive-indexed" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - cl-naive-store_dot_naive-indexed = (build-asdf-system { - pname = "cl-naive-store.naive-indexed"; - version = "20231021-git"; - asds = [ "cl-naive-store.naive-indexed" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store.naive-indexed"; - asd = "cl-naive-store.naive-indexed"; - }); - systems = [ "cl-naive-store.naive-indexed" ]; - lispLibs = [ (getAttr "cl-naive-store_dot_naive-core" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - cl-naive-store_dot_naive-merkle = (build-asdf-system { - pname = "cl-naive-store.naive-merkle"; - version = "20231021-git"; - asds = [ "cl-naive-store.naive-merkle" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store.naive-merkle"; - asd = "cl-naive-store.naive-merkle"; - }); - systems = [ "cl-naive-store.naive-merkle" ]; - lispLibs = [ (getAttr "cl-naive-store_dot_naive-documents" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - cl-naive-store_dot_test = (build-asdf-system { - pname = "cl-naive-store.test"; - version = "20231021-git"; - asds = [ "cl-naive-store.test" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-naive-store/2023-10-21/cl-naive-store-20231021-git.tgz"; - sha256 = "0f51skknm29lg3miygybbagc9s4w9drfsph5mdmdjm1cks0x6v6k"; - system = "cl-naive-store.test"; - asd = "cl-naive-store.test"; - }); - systems = [ "cl-naive-store.test" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-naive-store" self) ]; + systems = [ "cl-naive-tests.tests" ]; + lispLibs = [ (getAttr "cl-naive-tests" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -20944,11 +21136,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-neovim = (build-asdf-system { pname = "cl-neovim"; - version = "20190521-git"; + version = "20241012-git"; asds = [ "cl-neovim" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-neovim/2019-05-21/cl-neovim-20190521-git.tgz"; - sha256 = "06hy30px9cppqzh0c8nkbyysbpw2l247r4g43wfw96rflrdwy6ks"; + url = "http://beta.quicklisp.org/archive/cl-neovim/2024-10-12/cl-neovim-20241012-git.tgz"; + sha256 = "1c72qy10kmccpfl90q4c0yinmy9z9mdqniqx24269h91xd3jyagc"; system = "cl-neovim"; asd = "cl-neovim"; }); @@ -20960,11 +21152,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-netpbm = (build-asdf-system { pname = "cl-netpbm"; - version = "20201016-hg"; + version = "20241012-hg"; asds = [ "cl-netpbm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-netpbm/2020-10-16/cl-netpbm-20201016-hg.tgz"; - sha256 = "1xhpyn7nkadvbv8n7sbjyfj9qzr90p66dhq1j9f0jj4lmarp8anp"; + url = "http://beta.quicklisp.org/archive/cl-netpbm/2024-10-12/cl-netpbm-20241012-hg.tgz"; + sha256 = "16dv3d6x62vvc9wdvm2dc9mrm29ypzjzn2fvy46kl0h0wg7hjz92"; system = "cl-netpbm"; asd = "cl-netpbm"; }); @@ -21168,11 +21360,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-oju = (build-asdf-system { pname = "cl-oju"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-oju" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-oju/2023-02-14/cl-oju-20230214-git.tgz"; - sha256 = "0pcb659m487w4nv3m0ryl0fbwdgc1vdz06hsm4l1gwi3w9gcq477"; + url = "http://beta.quicklisp.org/archive/cl-oju/2024-10-12/cl-oju-20241012-git.tgz"; + sha256 = "0gwzxl4pj45jq7vx6vssgzsp4xxc99bzfi6fbklc5nnlfkqq0v62"; system = "cl-oju"; asd = "cl-oju"; }); @@ -21344,11 +21536,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-opengl = (build-asdf-system { pname = "cl-opengl"; - version = "20191130-git"; + version = "20241012-git"; asds = [ "cl-opengl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-opengl/2019-11-30/cl-opengl-20191130-git.tgz"; - sha256 = "0mhqmll09f079pnd6mgswz9nvr6h5n27d4q7zpmm2igf1v460id7"; + url = "http://beta.quicklisp.org/archive/cl-opengl/2024-10-12/cl-opengl-20241012-git.tgz"; + sha256 = "1xpa3x9fx7wxrs5xmkj13yzh2wjfnlb0ihirfr9clngpv1y4gcm6"; system = "cl-opengl"; asd = "cl-opengl"; }); @@ -21360,11 +21552,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-opensearch-query-builder = (build-asdf-system { pname = "cl-opensearch-query-builder"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-opensearch-query-builder" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-opensearch-query-builder/2023-06-18/cl-opensearch-query-builder-20230618-git.tgz"; - sha256 = "0sdhp5517ikh40gd8m8qw2jczr0nd7c4i5r31kssx7763zq968i5"; + url = "http://beta.quicklisp.org/archive/cl-opensearch-query-builder/2024-10-12/cl-opensearch-query-builder-20241012-git.tgz"; + sha256 = "1pxlafahhgwyfhila0ikbpljcxgi59cqd2m6dvlib6ii90yq5dqx"; system = "cl-opensearch-query-builder"; asd = "cl-opensearch-query-builder"; }); @@ -21424,11 +21616,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-opus = (build-asdf-system { pname = "cl-opus"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-opus" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-opus/2023-10-21/cl-opus-20231021-git.tgz"; - sha256 = "1ss9k50qgbcms9m8bh414jvc6n03zjkxj8577a3s9p4764mbwrqq"; + url = "http://beta.quicklisp.org/archive/cl-opus/2024-10-12/cl-opus-20241012-git.tgz"; + sha256 = "183xjlqjwildm1fb8piiic1f6l9fx4mxf9gcagpav8r60d1wmbpm"; system = "cl-opus"; asd = "cl-opus"; }); @@ -21582,11 +21774,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-paths = (build-asdf-system { pname = "cl-paths"; - version = "20180228-git"; + version = "20241012-git"; asds = [ "cl-paths" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; - sha256 = "0nckw4zb6s96hll8hrxzvgs2an3bfm0pxcywshbm4bq4rn7niqg4"; + url = "http://beta.quicklisp.org/archive/cl-vectors/2024-10-12/cl-vectors-20241012-git.tgz"; + sha256 = "1nkmmn38y6af10ysff3g2qkf5lb2601dcjp5rffsjh6bv2ik2jd5"; system = "cl-paths"; asd = "cl-paths"; }); @@ -21596,11 +21788,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-paths-ttf = (build-asdf-system { pname = "cl-paths-ttf"; - version = "20180228-git"; + version = "20241012-git"; asds = [ "cl-paths-ttf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; - sha256 = "0nckw4zb6s96hll8hrxzvgs2an3bfm0pxcywshbm4bq4rn7niqg4"; + url = "http://beta.quicklisp.org/archive/cl-vectors/2024-10-12/cl-vectors-20241012-git.tgz"; + sha256 = "1nkmmn38y6af10ysff3g2qkf5lb2601dcjp5rffsjh6bv2ik2jd5"; system = "cl-paths-ttf"; asd = "cl-paths-ttf"; }); @@ -21640,16 +21832,16 @@ in lib.makeScope pkgs.newScope (self: { }); cl-patterns = (build-asdf-system { pname = "cl-patterns"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-patterns" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-patterns/2023-10-21/cl-patterns-20231021-git.tgz"; - sha256 = "0h7k46xb069k596z34zj9xgibv4rdlzq8b8kfhy2m6j186zy9vwg"; + url = "http://beta.quicklisp.org/archive/cl-patterns/2024-10-12/cl-patterns-20241012-git.tgz"; + sha256 = "0g0q514fn1hxq518358yy2va4cb9xxqwds9cglw133qxy0wsjllh"; system = "cl-patterns"; asd = "cl-patterns"; }); systems = [ "cl-patterns" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "closer-mop" self) (getAttr "dissect" self) (getAttr "local-time" self) (getAttr "mutility" self) (getAttr "named-readtables" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "closer-mop" self) (getAttr "local-time" self) (getAttr "mutility" self) (getAttr "named-readtables" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -21926,11 +22118,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-plus-c = (build-asdf-system { pname = "cl-plus-c"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-plus-c" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-autowrap/2023-10-21/cl-autowrap-20231021-git.tgz"; - sha256 = "063pc7akxbsaayzpgz16dzkh0434s80h61k7mi7xq5isgzfjka2k"; + url = "http://beta.quicklisp.org/archive/cl-autowrap/2024-10-12/cl-autowrap-20241012-git.tgz"; + sha256 = "1sfvhyrwm9dhxi0y42xp7mx8mvs6lmq3bzxdx34frxni5srcgly0"; system = "cl-plus-c"; asd = "cl-plus-c"; }); @@ -21942,11 +22134,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-plus-ssl-osx-fix = (build-asdf-system { pname = "cl-plus-ssl-osx-fix"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-plus-ssl-osx-fix" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2023-10-21/cl-plus-ssl-osx-fix-20231021-git.tgz"; - sha256 = "03bm88jqmkf7mwbqrw4x3zj0r6rjvmhkbhi5ijw1iqiyb451bxq9"; + url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2024-10-12/cl-plus-ssl-osx-fix-20241012-git.tgz"; + sha256 = "0rkrazia05zzwzd9vx2kl1azwgjy0d4pvfmwp5mjmqsvpklgacwv"; system = "cl-plus-ssl-osx-fix"; asd = "cl-plus-ssl-osx-fix"; }); @@ -21958,11 +22150,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-plus-ssl-osx-fix-ci = (build-asdf-system { pname = "cl-plus-ssl-osx-fix-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-plus-ssl-osx-fix-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2023-10-21/cl-plus-ssl-osx-fix-20231021-git.tgz"; - sha256 = "03bm88jqmkf7mwbqrw4x3zj0r6rjvmhkbhi5ijw1iqiyb451bxq9"; + url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2024-10-12/cl-plus-ssl-osx-fix-20241012-git.tgz"; + sha256 = "0rkrazia05zzwzd9vx2kl1azwgjy0d4pvfmwp5mjmqsvpklgacwv"; system = "cl-plus-ssl-osx-fix-ci"; asd = "cl-plus-ssl-osx-fix-ci"; }); @@ -21974,11 +22166,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-plus-ssl-osx-fix-docs = (build-asdf-system { pname = "cl-plus-ssl-osx-fix-docs"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-plus-ssl-osx-fix-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2023-10-21/cl-plus-ssl-osx-fix-20231021-git.tgz"; - sha256 = "03bm88jqmkf7mwbqrw4x3zj0r6rjvmhkbhi5ijw1iqiyb451bxq9"; + url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2024-10-12/cl-plus-ssl-osx-fix-20241012-git.tgz"; + sha256 = "0rkrazia05zzwzd9vx2kl1azwgjy0d4pvfmwp5mjmqsvpklgacwv"; system = "cl-plus-ssl-osx-fix-docs"; asd = "cl-plus-ssl-osx-fix-docs"; }); @@ -21990,11 +22182,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-plus-ssl-osx-fix-tests = (build-asdf-system { pname = "cl-plus-ssl-osx-fix-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-plus-ssl-osx-fix-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2023-10-21/cl-plus-ssl-osx-fix-20231021-git.tgz"; - sha256 = "03bm88jqmkf7mwbqrw4x3zj0r6rjvmhkbhi5ijw1iqiyb451bxq9"; + url = "http://beta.quicklisp.org/archive/cl-plus-ssl-osx-fix/2024-10-12/cl-plus-ssl-osx-fix-20241012-git.tgz"; + sha256 = "0rkrazia05zzwzd9vx2kl1azwgjy0d4pvfmwp5mjmqsvpklgacwv"; system = "cl-plus-ssl-osx-fix-tests"; asd = "cl-plus-ssl-osx-fix-tests"; }); @@ -22086,11 +22278,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-postgres = (build-asdf-system { pname = "cl-postgres"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-postgres" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/postmodern/2023-10-21/postmodern-20231021-git.tgz"; - sha256 = "1abb80zmnawzl9g09css57kviwbqw5fcxhp3fjrzw7zc3n1wfr8y"; + url = "http://beta.quicklisp.org/archive/postmodern/2024-10-12/postmodern-20241012-git.tgz"; + sha256 = "1hj0dpclzihy1rcnwhiv16abmaa54wygxyib3j2h9q4qs26w7pzb"; system = "cl-postgres"; asd = "cl-postgres"; }); @@ -22100,11 +22292,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-postgres_plus_local-time = (build-asdf-system { pname = "cl-postgres+local-time"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-postgres+local-time" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/local-time/2023-10-21/local-time-20231021-git.tgz"; - sha256 = "05h40dq8bqx7p7ri67c81fkfm4zzbichyicrdj4srs0vvlwxiqpj"; + url = "http://beta.quicklisp.org/archive/local-time/2024-10-12/local-time-20241012-git.tgz"; + sha256 = "0jb1mb5zs4ryiah8zjzhpln1z686mfmpmvg1phgpr2mh9vvlgjk2"; system = "cl-postgres+local-time"; asd = "cl-postgres+local-time"; }); @@ -22162,11 +22354,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ppcre = (build-asdf-system { pname = "cl-ppcre"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-ppcre" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ppcre/2023-06-18/cl-ppcre-20230618-git.tgz"; - sha256 = "1l9q5bz9i8n241fcjfj5a769y0n4iybkv4zjhkf7dap5dmjyxwjr"; + url = "http://beta.quicklisp.org/archive/cl-ppcre/2024-10-12/cl-ppcre-20241012-git.tgz"; + sha256 = "0aw7lh79wgn18c75v29md2x8irl8v7f96lj1mfkp7x0mkqsb0cs8"; system = "cl-ppcre"; asd = "cl-ppcre"; }); @@ -22176,11 +22368,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ppcre-template = (build-asdf-system { pname = "cl-ppcre-template"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-ppcre-template" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-unification/2023-02-14/cl-unification-20230214-git.tgz"; - sha256 = "1ngb74ngn9j6pxkp0nddgnq32jpkr2gvnb71swvziqic1d93194l"; + url = "http://beta.quicklisp.org/archive/cl-unification/2024-10-12/cl-unification-20241012-git.tgz"; + sha256 = "1q7bjj9dzazhgj32291rqy4lld1ilrpck374c21864qn3pmz31ag"; system = "cl-ppcre-template"; asd = "cl-ppcre-template"; }); @@ -22190,11 +22382,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ppcre-unicode = (build-asdf-system { pname = "cl-ppcre-unicode"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-ppcre-unicode" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ppcre/2023-06-18/cl-ppcre-20230618-git.tgz"; - sha256 = "1l9q5bz9i8n241fcjfj5a769y0n4iybkv4zjhkf7dap5dmjyxwjr"; + url = "http://beta.quicklisp.org/archive/cl-ppcre/2024-10-12/cl-ppcre-20241012-git.tgz"; + sha256 = "0aw7lh79wgn18c75v29md2x8irl8v7f96lj1mfkp7x0mkqsb0cs8"; system = "cl-ppcre-unicode"; asd = "cl-ppcre-unicode"; }); @@ -22298,11 +22490,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-project = (build-asdf-system { pname = "cl-project"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-project" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-project/2023-10-21/cl-project-20231021-git.tgz"; - sha256 = "1m1vxhmc1rx5fk099qh2csgvr87qzfza8h6wk3l16rlyxk8gy4h5"; + url = "http://beta.quicklisp.org/archive/cl-project/2024-10-12/cl-project-20241012-git.tgz"; + sha256 = "12bvhs1ll6wxwgarvyxbrm978jxpvgj9vyqcbnwqmf5kqxjlrh0j"; system = "cl-project"; asd = "cl-project"; }); @@ -22314,11 +22506,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-project-test = (build-asdf-system { pname = "cl-project-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-project-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-project/2023-10-21/cl-project-20231021-git.tgz"; - sha256 = "1m1vxhmc1rx5fk099qh2csgvr87qzfza8h6wk3l16rlyxk8gy4h5"; + url = "http://beta.quicklisp.org/archive/cl-project/2024-10-12/cl-project-20241012-git.tgz"; + sha256 = "12bvhs1ll6wxwgarvyxbrm978jxpvgj9vyqcbnwqmf5kqxjlrh0j"; system = "cl-project-test"; asd = "cl-project-test"; }); @@ -22522,11 +22714,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-protobufs_dot_asdf = (build-asdf-system { pname = "cl-protobufs.asdf"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-protobufs.asdf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-protobufs/2023-10-21/cl-protobufs-20231021-git.tgz"; - sha256 = "136lv5g3g8y7fq375p034iqk935z4nkln3f77x2aw2ljzqf0yd3g"; + url = "http://beta.quicklisp.org/archive/cl-protobufs/2024-10-12/cl-protobufs-20241012-git.tgz"; + sha256 = "08digcsyxs46pl7r5d945db5r2hbrxydqqcmzbgziq61ca4p0ifn"; system = "cl-protobufs.asdf"; asd = "cl-protobufs.asdf"; }); @@ -22538,11 +22730,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-pslib = (build-asdf-system { pname = "cl-pslib"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-pslib" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-pslib/2023-10-21/cl-pslib-20231021-git.tgz"; - sha256 = "0y582j86zgydnf6b12mgj2wv09m8qysqf5fdbzwsbx750hlkw435"; + url = "http://beta.quicklisp.org/archive/cl-pslib/2024-10-12/cl-pslib-20241012-git.tgz"; + sha256 = "12lg64nbjkxmaf212qr4i0msnsixc2cbqmxkdgqjii9rsyqdvrn6"; system = "cl-pslib"; asd = "cl-pslib"; }); @@ -22554,11 +22746,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-pslib-barcode = (build-asdf-system { pname = "cl-pslib-barcode"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-pslib-barcode" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-pslib-barcode/2023-10-21/cl-pslib-barcode-20231021-git.tgz"; - sha256 = "0smp878rzcphivhzvw0hwdzgqlbx384if2d9zd133hvz14dz0d1p"; + url = "http://beta.quicklisp.org/archive/cl-pslib-barcode/2024-10-12/cl-pslib-barcode-20241012-git.tgz"; + sha256 = "1n17yv7qr6i6dhbjrcc1binlxxkc1p5blj9nwn6g26fyvakgwrsb"; system = "cl-pslib-barcode"; asd = "cl-pslib-barcode"; }); @@ -22600,6 +22792,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-qoa = (build-asdf-system { + pname = "cl-qoa"; + version = "20241012-git"; + asds = [ "cl-qoa" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-qoa/2024-10-12/cl-qoa-20241012-git.tgz"; + sha256 = "0gxrra0mvvkyvhvg7cc4bvi3nwdsnx0dbjszp41ch6dsdhd3pcpy"; + system = "cl-qoa"; + asd = "cl-qoa"; + }); + systems = [ "cl-qoa" ]; + lispLibs = [ (getAttr "binary-structures" self) (getAttr "documentation-utils" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-qprint = (build-asdf-system { pname = "cl-qprint"; version = "20150804-git"; @@ -22660,6 +22868,54 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-quil = (build-asdf-system { + pname = "cl-quil"; + version = "20241012-git"; + asds = [ "cl-quil" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quilc/2024-10-12/quilc-20241012-git.tgz"; + sha256 = "0qy3fzd5cljq1dg5l3nd36wk7a6vna8lm22q0vncchpxvsdgnjpy"; + system = "cl-quil"; + asd = "cl-quil"; + }); + systems = [ "cl-quil" ]; + lispLibs = [ (getAttr "alexa" self) (getAttr "alexandria" self) (getAttr "cl-algebraic-data-type" self) (getAttr "cl-grnm" self) (getAttr "cl-heap" self) (getAttr "cl-permutation" self) (getAttr "clos-encounters" self) (getAttr "closer-mop" self) (getAttr "flexi-streams" self) (getAttr "global-vars" self) (getAttr "magicl" self) (getAttr "parse-float" self) (getAttr "queues_dot_priority-queue" self) (getAttr "qvm" self) (getAttr "salza2" self) (getAttr "split-sequence" self) (getAttr "trivial-garbage" self) (getAttr "yacc" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + cl-quil-benchmarking = (build-asdf-system { + pname = "cl-quil-benchmarking"; + version = "20241012-git"; + asds = [ "cl-quil-benchmarking" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quilc/2024-10-12/quilc-20241012-git.tgz"; + sha256 = "0qy3fzd5cljq1dg5l3nd36wk7a6vna8lm22q0vncchpxvsdgnjpy"; + system = "cl-quil-benchmarking"; + asd = "cl-quil-benchmarking"; + }); + systems = [ "cl-quil-benchmarking" ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cl-quil" self) (getAttr "metering" self) (getAttr "qvm-app" self) (getAttr "trivial-benchmark" self) (getAttr "trivial-garbage" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + cl-quil-tests = (build-asdf-system { + pname = "cl-quil-tests"; + version = "20241012-git"; + asds = [ "cl-quil-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quilc/2024-10-12/quilc-20241012-git.tgz"; + sha256 = "0qy3fzd5cljq1dg5l3nd36wk7a6vna8lm22q0vncchpxvsdgnjpy"; + system = "cl-quil-tests"; + asd = "cl-quil-tests"; + }); + systems = [ "cl-quil-tests" ]; + lispLibs = [ (getAttr "alexa" self) (getAttr "alexandria" self) (getAttr "cl-permutation" self) (getAttr "cl-ppcre" self) (getAttr "cl-quil" self) (getAttr "fiasco" self) (getAttr "magicl" self) (getAttr "qvm" self) (getAttr "yacc" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-rabbit = (build-asdf-system { pname = "cl-rabbit"; version = "20210411-git"; @@ -22774,11 +23030,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-readline = (build-asdf-system { pname = "cl-readline"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-readline" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-readline/2023-10-21/cl-readline-20231021-git.tgz"; - sha256 = "0xjf58vb99j41pndbiin7v4kmm0308a5d7jiin6rsbz47wrjzj52"; + url = "http://beta.quicklisp.org/archive/cl-readline/2024-10-12/cl-readline-20241012-git.tgz"; + sha256 = "0law12vnj1d5174kk9l949mgkkxm1x6kpcw5wixxjavmxxwqwric"; system = "cl-readline"; asd = "cl-readline"; }); @@ -22802,6 +23058,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-reddit = (build-asdf-system { + pname = "cl-reddit"; + version = "20241012-git"; + asds = [ "cl-reddit" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-reddit/2024-10-12/cl-reddit-20241012-git.tgz"; + sha256 = "0jnc88mdz7hsmsncqrqmc8m8f1yd3n9087750kqpnn1sp1cwskk1"; + system = "cl-reddit"; + asd = "cl-reddit"; + }); + systems = [ "cl-reddit" ]; + lispLibs = [ (getAttr "drakma" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-redis = (build-asdf-system { pname = "cl-redis"; version = "20200925-git"; @@ -22896,6 +23168,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cl-resvg = (build-asdf-system { + pname = "cl-resvg"; + version = "20241012-git"; + asds = [ "cl-resvg" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-resvg/2024-10-12/cl-resvg-20241012-git.tgz"; + sha256 = "0263na51qs0wrc9r2dqigj4a1h70pjf0mqsgbnd6hfshvx0kq1cl"; + system = "cl-resvg"; + asd = "cl-resvg"; + }); + systems = [ "cl-resvg" ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "float-features" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-rethinkdb = (build-asdf-system { pname = "cl-rethinkdb"; version = "20160825-git"; @@ -23388,11 +23676,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-sat_dot_minisat = (build-asdf-system { pname = "cl-sat.minisat"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "cl-sat.minisat" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sat.minisat/2022-03-31/cl-sat.minisat-20220331-git.tgz"; - sha256 = "1jrpsdalz9wd3aipfvigimzgzrlb6fylw9cxf1vhhmii46yg9mdr"; + url = "http://beta.quicklisp.org/archive/cl-sat.minisat/2024-10-12/cl-sat.minisat-20241012-git.tgz"; + sha256 = "00h5smjs60r1abq27w2ayg55ypsw32769pkk72mrikyn29r6z9ni"; system = "cl-sat.minisat"; asd = "cl-sat.minisat"; }); @@ -23402,11 +23690,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-sat_dot_minisat_dot_test = (build-asdf-system { pname = "cl-sat.minisat.test"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "cl-sat.minisat.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sat.minisat/2022-03-31/cl-sat.minisat-20220331-git.tgz"; - sha256 = "1jrpsdalz9wd3aipfvigimzgzrlb6fylw9cxf1vhhmii46yg9mdr"; + url = "http://beta.quicklisp.org/archive/cl-sat.minisat/2024-10-12/cl-sat.minisat-20241012-git.tgz"; + sha256 = "00h5smjs60r1abq27w2ayg55ypsw32769pkk72mrikyn29r6z9ni"; system = "cl-sat.minisat.test"; asd = "cl-sat.minisat.test"; }); @@ -23800,11 +24088,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-skkserv = (build-asdf-system { pname = "cl-skkserv"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-skkserv" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-skkserv/2023-10-21/cl-skkserv-20231021-git.tgz"; - sha256 = "1cidiyszsvgyh5s682cg90li7fxc1yfaw67hbln43hb2wrv83gls"; + url = "http://beta.quicklisp.org/archive/cl-skkserv/2024-10-12/cl-skkserv-20241012-git.tgz"; + sha256 = "1fnar6iw6hr5w37sc96zk9kdcgam8bm71l26l7c6f5daxk57labi"; system = "cl-skkserv"; asd = "cl-skkserv"; }); @@ -23940,18 +24228,34 @@ in lib.makeScope pkgs.newScope (self: { }); cl-smtp = (build-asdf-system { pname = "cl-smtp"; - version = "20210228-git"; + version = "20241012-git"; asds = [ "cl-smtp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-smtp/2021-02-28/cl-smtp-20210228-git.tgz"; - sha256 = "0vjjfapcrdc5671jz2d24h8zvpz7skq1x6pi9fvw6ls5sgms6fr0"; + url = "http://beta.quicklisp.org/archive/cl-smtp/2024-10-12/cl-smtp-20241012-git.tgz"; + sha256 = "1r4gsklf4p163hn4ylabx7lp5zkz27v6gq3rkyrvwb7qz6sv8ws4"; system = "cl-smtp"; asd = "cl-smtp"; }); systems = [ "cl-smtp" ]; - lispLibs = [ (getAttr "cl_plus_ssl" self) (getAttr "cl-base64" self) (getAttr "flexi-streams" self) (getAttr "trivial-gray-streams" self) (getAttr "usocket" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl_plus_ssl" self) (getAttr "cl-base64" self) (getAttr "flexi-streams" self) (getAttr "frugal-uuid" self) (getAttr "usocket" self) ]; meta = {}; }); + cl-smtp-tests = (build-asdf-system { + pname = "cl-smtp-tests"; + version = "20241012-git"; + asds = [ "cl-smtp-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-smtp/2024-10-12/cl-smtp-20241012-git.tgz"; + sha256 = "1r4gsklf4p163hn4ylabx7lp5zkz27v6gq3rkyrvwb7qz6sv8ws4"; + system = "cl-smtp-tests"; + asd = "cl-smtp-tests"; + }); + systems = [ "cl-smtp-tests" ]; + lispLibs = [ (getAttr "cl-smtp" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cl-soil = (build-asdf-system { pname = "cl-soil"; version = "release-quicklisp-f27087ce-git"; @@ -24144,11 +24448,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ssh-keys = (build-asdf-system { pname = "cl-ssh-keys"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-ssh-keys" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ssh-keys/2023-10-21/cl-ssh-keys-20231021-git.tgz"; - sha256 = "1nszwlgycbisjdfcvqxjs9zl9gbwkvhk0ccr4hzjr14h30p3m3px"; + url = "http://beta.quicklisp.org/archive/cl-ssh-keys/2024-10-12/cl-ssh-keys-20241012-git.tgz"; + sha256 = "037j89fjjrld46m9j71x6zfixdm7irwd58c08j0gq6w09qjlk5l2"; system = "cl-ssh-keys"; asd = "cl-ssh-keys"; }); @@ -24160,11 +24464,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-ssh-keys_dot_test = (build-asdf-system { pname = "cl-ssh-keys.test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-ssh-keys.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-ssh-keys/2023-10-21/cl-ssh-keys-20231021-git.tgz"; - sha256 = "1nszwlgycbisjdfcvqxjs9zl9gbwkvhk0ccr4hzjr14h30p3m3px"; + url = "http://beta.quicklisp.org/archive/cl-ssh-keys/2024-10-12/cl-ssh-keys-20241012-git.tgz"; + sha256 = "037j89fjjrld46m9j71x6zfixdm7irwd58c08j0gq6w09qjlk5l2"; system = "cl-ssh-keys.test"; asd = "cl-ssh-keys.test"; }); @@ -24208,11 +24512,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-steamworks = (build-asdf-system { pname = "cl-steamworks"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-steamworks" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-steamworks/2023-10-21/cl-steamworks-20231021-git.tgz"; - sha256 = "0i1mcgsvy743m0hym3088ixm32as43wji1gfvfg845hbnf5jygmm"; + url = "http://beta.quicklisp.org/archive/cl-steamworks/2024-10-12/cl-steamworks-20241012-git.tgz"; + sha256 = "0401gfmzcc29pm15yyl0p36id0yza2i02wixma2zl8ah3cxb39w5"; system = "cl-steamworks"; asd = "cl-steamworks"; }); @@ -24224,11 +24528,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-steamworks-generator = (build-asdf-system { pname = "cl-steamworks-generator"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-steamworks-generator" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-steamworks/2023-10-21/cl-steamworks-20231021-git.tgz"; - sha256 = "0i1mcgsvy743m0hym3088ixm32as43wji1gfvfg845hbnf5jygmm"; + url = "http://beta.quicklisp.org/archive/cl-steamworks/2024-10-12/cl-steamworks-20241012-git.tgz"; + sha256 = "0401gfmzcc29pm15yyl0p36id0yza2i02wixma2zl8ah3cxb39w5"; system = "cl-steamworks-generator"; asd = "cl-steamworks-generator"; }); @@ -24430,11 +24734,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-svg = (build-asdf-system { pname = "cl-svg"; - version = "20180228-git"; + version = "20241012-git"; asds = [ "cl-svg" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-svg/2018-02-28/cl-svg-20180228-git.tgz"; - sha256 = "11rmzimy6j7ln7q5y1h2kw1225rsfb6fpn89qjcq7h5lc8fay0wz"; + url = "http://beta.quicklisp.org/archive/cl-svg/2024-10-12/cl-svg-20241012-git.tgz"; + sha256 = "05zrg6sxi01xn940c7lygfgxwjkq0zmlkihbhm7lhfaszg2xj8bh"; system = "cl-svg"; asd = "cl-svg"; }); @@ -24722,27 +25026,27 @@ in lib.makeScope pkgs.newScope (self: { }); cl-telegram-bot = (build-asdf-system { pname = "cl-telegram-bot"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-telegram-bot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2023-06-18/cl-telegram-bot-20230618-git.tgz"; - sha256 = "11a1fswifiaa14ilzp1lsncwvmqwgwlcxccx16sa1j3ip44lbr3v"; + url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2024-10-12/cl-telegram-bot-20241012-git.tgz"; + sha256 = "1i1g9ax46b5jyx2nckp2q00asb46wwlin0hj5wlqlp7cb27r3dqj"; system = "cl-telegram-bot"; asd = "cl-telegram-bot"; }); systems = [ "cl-telegram-bot" ]; - lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "arrows" self) (getAttr "bordeaux-threads" self) (getAttr "cl-ppcre" self) (getAttr "cl-strings" self) (getAttr "closer-mop" self) (getAttr "dexador" self) (getAttr "jonathan" self) (getAttr "kebab" self) (getAttr "log4cl" self) (getAttr "serapeum" self) (getAttr "trivial-backtrace" self) ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "arrows" self) (getAttr "bordeaux-threads" self) (getAttr "cl-ppcre" self) (getAttr "cl-strings" self) (getAttr "closer-mop" self) (getAttr "dexador" self) (getAttr "jonathan" self) (getAttr "kebab" self) (getAttr "log4cl" self) (getAttr "serapeum" self) (getAttr "str" self) (getAttr "trivial-backtrace" self) ]; meta = { hydraPlatforms = [ ]; }; }); cl-telegram-bot-ci = (build-asdf-system { pname = "cl-telegram-bot-ci"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-telegram-bot-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2023-06-18/cl-telegram-bot-20230618-git.tgz"; - sha256 = "11a1fswifiaa14ilzp1lsncwvmqwgwlcxccx16sa1j3ip44lbr3v"; + url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2024-10-12/cl-telegram-bot-20241012-git.tgz"; + sha256 = "1i1g9ax46b5jyx2nckp2q00asb46wwlin0hj5wlqlp7cb27r3dqj"; system = "cl-telegram-bot-ci"; asd = "cl-telegram-bot-ci"; }); @@ -24754,11 +25058,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-telegram-bot-docs = (build-asdf-system { pname = "cl-telegram-bot-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-telegram-bot-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2023-06-18/cl-telegram-bot-20230618-git.tgz"; - sha256 = "11a1fswifiaa14ilzp1lsncwvmqwgwlcxccx16sa1j3ip44lbr3v"; + url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2024-10-12/cl-telegram-bot-20241012-git.tgz"; + sha256 = "1i1g9ax46b5jyx2nckp2q00asb46wwlin0hj5wlqlp7cb27r3dqj"; system = "cl-telegram-bot-docs"; asd = "cl-telegram-bot-docs"; }); @@ -24770,11 +25074,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-telegram-bot-tests = (build-asdf-system { pname = "cl-telegram-bot-tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-telegram-bot-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2023-06-18/cl-telegram-bot-20230618-git.tgz"; - sha256 = "11a1fswifiaa14ilzp1lsncwvmqwgwlcxccx16sa1j3ip44lbr3v"; + url = "http://beta.quicklisp.org/archive/cl-telegram-bot/2024-10-12/cl-telegram-bot-20241012-git.tgz"; + sha256 = "1i1g9ax46b5jyx2nckp2q00asb46wwlin0hj5wlqlp7cb27r3dqj"; system = "cl-telegram-bot-tests"; asd = "cl-telegram-bot-tests"; }); @@ -24928,11 +25232,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-threadpool = (build-asdf-system { pname = "cl-threadpool"; - version = "quickload-current-release-6f50a83e-git"; + version = "quickload-current-release-feda6ff9-git"; asds = [ "cl-threadpool" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-threadpool/2023-06-18/cl-threadpool-quickload-current-release-6f50a83e-git.tgz"; - sha256 = "17zdinrp31d6b9fdb2mi83cwmcgpj7wqzbqy5kjlfc6p6jspcqln"; + url = "http://beta.quicklisp.org/archive/cl-threadpool/2024-10-12/cl-threadpool-quickload-current-release-feda6ff9-git.tgz"; + sha256 = "0y2kai8ijz0y6j54svvdrl2f2v96pz0pl652x86lz7pl4yyg99vr"; system = "cl-threadpool"; asd = "cl-threadpool"; }); @@ -24960,11 +25264,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-tiled = (build-asdf-system { pname = "cl-tiled"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-tiled" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-tiled/2023-10-21/cl-tiled-20231021-git.tgz"; - sha256 = "0nbzpirmlg23sy5ds9p87fnd2gb8i2j8np4kvd8w8d6l5hrdqavi"; + url = "http://beta.quicklisp.org/archive/cl-tiled/2024-10-12/cl-tiled-20241012-git.tgz"; + sha256 = "0ni61iahr58i44psk4z3q1w9nsxbc49m5wbb8w0icm4f7x0ijn07"; system = "cl-tiled"; asd = "cl-tiled"; }); @@ -25088,11 +25392,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-tqdm = (build-asdf-system { pname = "cl-tqdm"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cl-tqdm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-tqdm/2023-06-18/cl-tqdm-20230618-git.tgz"; - sha256 = "12qkl7l83smdv5laz6hkgy5462dygc5i0ng9w7nila9j3zr0cc3y"; + url = "http://beta.quicklisp.org/archive/cl-tqdm/2024-10-12/cl-tqdm-20241012-git.tgz"; + sha256 = "0wlbgs7wfiy149d7zq5bpkm8g3785b1crcf2m802f9qhin2r0nzg"; system = "cl-tqdm"; asd = "cl-tqdm"; }); @@ -25102,38 +25406,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - cl-transit = (build-asdf-system { - pname = "cl-transit"; - version = "20231021-git"; - asds = [ "cl-transit" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-transit/2023-10-21/cl-transit-20231021-git.tgz"; - sha256 = "0s3wlcdaliivi48p6qcwpwfb5rpqcizy7h3ykq01khy49rx6fajm"; - system = "cl-transit"; - asd = "cl-transit"; - }); - systems = [ "cl-transit" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bit-smasher" self) (getAttr "cl-messagepack" self) (getAttr "com_dot_inuoe_dot_jzon" self) (getAttr "flexi-streams" self) (getAttr "fset" self) (getAttr "local-time" self) (getAttr "parse-float" self) (getAttr "quri" self) (getAttr "serapeum" self) (getAttr "uuid" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - cl-transit-tests = (build-asdf-system { - pname = "cl-transit-tests"; - version = "20231021-git"; - asds = [ "cl-transit-tests" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-transit/2023-10-21/cl-transit-20231021-git.tgz"; - sha256 = "0s3wlcdaliivi48p6qcwpwfb5rpqcizy7h3ykq01khy49rx6fajm"; - system = "cl-transit-tests"; - asd = "cl-transit-tests"; - }); - systems = [ "cl-transit-tests" ]; - lispLibs = [ (getAttr "cl-transit" self) (getAttr "dexador" self) (getAttr "fiveam" self) (getAttr "marshal" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); cl-transmission = (build-asdf-system { pname = "cl-transmission"; version = "20200325-git"; @@ -25358,11 +25630,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-unicode = (build-asdf-system { pname = "cl-unicode"; - version = "20210228-git"; + version = "20241012-git"; asds = [ "cl-unicode" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-unicode/2021-02-28/cl-unicode-20210228-git.tgz"; - sha256 = "1a9gbzvi5gj3z9gcia1rgmnk0dzgc82vz47bgnfvhn4q0c7mvk31"; + url = "http://beta.quicklisp.org/archive/cl-unicode/2024-10-12/cl-unicode-20241012-git.tgz"; + sha256 = "14ydcjkj94mmx40vs27w8137lgmw16jjhpr5m46mm6gqv46yvr6l"; system = "cl-unicode"; asd = "cl-unicode"; }); @@ -25372,11 +25644,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-unification = (build-asdf-system { pname = "cl-unification"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-unification" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-unification/2023-02-14/cl-unification-20230214-git.tgz"; - sha256 = "1ngb74ngn9j6pxkp0nddgnq32jpkr2gvnb71swvziqic1d93194l"; + url = "http://beta.quicklisp.org/archive/cl-unification/2024-10-12/cl-unification-20241012-git.tgz"; + sha256 = "1q7bjj9dzazhgj32291rqy4lld1ilrpck374c21864qn3pmz31ag"; system = "cl-unification"; asd = "cl-unification"; }); @@ -25386,11 +25658,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-unification-lib = (build-asdf-system { pname = "cl-unification-lib"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-unification-lib" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-unification/2023-02-14/cl-unification-20230214-git.tgz"; - sha256 = "1ngb74ngn9j6pxkp0nddgnq32jpkr2gvnb71swvziqic1d93194l"; + url = "http://beta.quicklisp.org/archive/cl-unification/2024-10-12/cl-unification-20241012-git.tgz"; + sha256 = "1q7bjj9dzazhgj32291rqy4lld1ilrpck374c21864qn3pmz31ag"; system = "cl-unification-lib"; asd = "cl-unification-lib"; }); @@ -25402,11 +25674,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-unification-test = (build-asdf-system { pname = "cl-unification-test"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cl-unification-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-unification/2023-02-14/cl-unification-20230214-git.tgz"; - sha256 = "1ngb74ngn9j6pxkp0nddgnq32jpkr2gvnb71swvziqic1d93194l"; + url = "http://beta.quicklisp.org/archive/cl-unification/2024-10-12/cl-unification-20241012-git.tgz"; + sha256 = "1q7bjj9dzazhgj32291rqy4lld1ilrpck374c21864qn3pmz31ag"; system = "cl-unification-test"; asd = "cl-unification-test"; }); @@ -25464,11 +25736,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-vectors = (build-asdf-system { pname = "cl-vectors"; - version = "20180228-git"; + version = "20241012-git"; asds = [ "cl-vectors" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-vectors/2018-02-28/cl-vectors-20180228-git.tgz"; - sha256 = "0nckw4zb6s96hll8hrxzvgs2an3bfm0pxcywshbm4bq4rn7niqg4"; + url = "http://beta.quicklisp.org/archive/cl-vectors/2024-10-12/cl-vectors-20241012-git.tgz"; + sha256 = "1nkmmn38y6af10ysff3g2qkf5lb2601dcjp5rffsjh6bv2ik2jd5"; system = "cl-vectors"; asd = "cl-vectors"; }); @@ -25606,11 +25878,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-vorbis = (build-asdf-system { pname = "cl-vorbis"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-vorbis" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-vorbis/2023-10-21/cl-vorbis-20231021-git.tgz"; - sha256 = "012rh2zbnxhsn9mmvmiid1s1dncah36v5jdpmrmjahhrkm2x6qjh"; + url = "http://beta.quicklisp.org/archive/cl-vorbis/2024-10-12/cl-vorbis-20241012-git.tgz"; + sha256 = "04p0ix2mxa8iv2dab19mlix6m3inwyb0rs5wsrf8r9l1n41dyp2p"; system = "cl-vorbis"; asd = "cl-vorbis"; }); @@ -25718,11 +25990,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-wavefront = (build-asdf-system { pname = "cl-wavefront"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-wavefront" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-wavefront/2023-10-21/cl-wavefront-20231021-git.tgz"; - sha256 = "0cz35a4dxvi7x6j5llh3i5ly2f55xzqjm9p43n7qjfngxagrg227"; + url = "http://beta.quicklisp.org/archive/cl-wavefront/2024-10-12/cl-wavefront-20241012-git.tgz"; + sha256 = "1il5i04x2ff3pnjm2pgvq0hryd9rnjdbczvinj3l3w30lj553g83"; system = "cl-wavefront"; asd = "cl-wavefront"; }); @@ -25814,11 +26086,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-webdriver-client = (build-asdf-system { pname = "cl-webdriver-client"; - version = "20211230-git"; + version = "20241012-git"; asds = [ "cl-webdriver-client" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-webdriver-client/2021-12-30/cl-webdriver-client-20211230-git.tgz"; - sha256 = "12ackxk5glsi2dg7kjn6gr1c6r6xnmd23hwsbb9fghwjl23cqlri"; + url = "http://beta.quicklisp.org/archive/cl-webdriver-client/2024-10-12/cl-webdriver-client-20241012-git.tgz"; + sha256 = "1975yyvvdxg11vgpyx93nkqr5x6i1xy47230vc40yd0c9bn6lpbr"; system = "cl-webdriver-client"; asd = "cl-webdriver-client"; }); @@ -25830,11 +26102,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-webdriver-client-test = (build-asdf-system { pname = "cl-webdriver-client-test"; - version = "20211230-git"; + version = "20241012-git"; asds = [ "cl-webdriver-client-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-webdriver-client/2021-12-30/cl-webdriver-client-20211230-git.tgz"; - sha256 = "12ackxk5glsi2dg7kjn6gr1c6r6xnmd23hwsbb9fghwjl23cqlri"; + url = "http://beta.quicklisp.org/archive/cl-webdriver-client/2024-10-12/cl-webdriver-client-20241012-git.tgz"; + sha256 = "1975yyvvdxg11vgpyx93nkqr5x6i1xy47230vc40yd0c9bn6lpbr"; system = "cl-webdriver-client-test"; asd = "cl-webdriver-client-test"; }); @@ -25846,11 +26118,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-webkit2 = (build-asdf-system { pname = "cl-webkit2"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cl-webkit2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-webkit/2023-10-21/cl-webkit-20231021-git.tgz"; - sha256 = "1n04zpsrb70sfl9mnq4kjrwqszij7fg15nfgn0242yhkyh57vw5p"; + url = "http://beta.quicklisp.org/archive/cl-webkit/2024-10-12/cl-webkit-20241012-git.tgz"; + sha256 = "1ppx4pdnx3c41hp1j8msvpyw22ck2lll2f4ap5hyfvhadp07g3m5"; system = "cl-webkit2"; asd = "cl-webkit2"; }); @@ -25860,11 +26132,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-who = (build-asdf-system { pname = "cl-who"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "cl-who" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-who/2022-03-31/cl-who-20220331-git.tgz"; - sha256 = "1rdvs113q6d46cblwhsv1vmm31p952wyzkyibqix0ypadpczlgp5"; + url = "http://beta.quicklisp.org/archive/cl-who/2024-10-12/cl-who-20241012-git.tgz"; + sha256 = "1kfpy69dw0g7w7k0akimncpkxfqq85r08i2da8nw1dhk2hp6l8jc"; system = "cl-who"; asd = "cl-who"; }); @@ -25874,11 +26146,11 @@ in lib.makeScope pkgs.newScope (self: { }); cl-who-test = (build-asdf-system { pname = "cl-who-test"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "cl-who-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-who/2022-03-31/cl-who-20220331-git.tgz"; - sha256 = "1rdvs113q6d46cblwhsv1vmm31p952wyzkyibqix0ypadpczlgp5"; + url = "http://beta.quicklisp.org/archive/cl-who/2024-10-12/cl-who-20241012-git.tgz"; + sha256 = "1kfpy69dw0g7w7k0akimncpkxfqq85r08i2da8nw1dhk2hp6l8jc"; system = "cl-who-test"; asd = "cl-who"; }); @@ -26336,11 +26608,11 @@ in lib.makeScope pkgs.newScope (self: { }); clack = (build-asdf-system { pname = "clack"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clack" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "clack"; asd = "clack"; }); @@ -26348,6 +26620,70 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "lack" self) (getAttr "lack-middleware-backtrace" self) (getAttr "lack-util" self) (getAttr "swank" self) (getAttr "usocket" self) ]; meta = {}; }); + clack-cors = (build-asdf-system { + pname = "clack-cors"; + version = "20241012-git"; + asds = [ "clack-cors" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-cors/2024-10-12/clack-cors-20241012-git.tgz"; + sha256 = "0bndzkrqmdq5cz7wfzr7kw2gy5vk8h1hmf3vplc6mqk7vr3zm6m2"; + system = "clack-cors"; + asd = "clack-cors"; + }); + systems = [ "clack-cors" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "log4cl" self) (getAttr "serapeum" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clack-cors-ci = (build-asdf-system { + pname = "clack-cors-ci"; + version = "20241012-git"; + asds = [ "clack-cors-ci" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-cors/2024-10-12/clack-cors-20241012-git.tgz"; + sha256 = "0bndzkrqmdq5cz7wfzr7kw2gy5vk8h1hmf3vplc6mqk7vr3zm6m2"; + system = "clack-cors-ci"; + asd = "clack-cors-ci"; + }); + systems = [ "clack-cors-ci" ]; + lispLibs = [ (getAttr "_40ants-ci" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clack-cors-docs = (build-asdf-system { + pname = "clack-cors-docs"; + version = "20241012-git"; + asds = [ "clack-cors-docs" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-cors/2024-10-12/clack-cors-20241012-git.tgz"; + sha256 = "0bndzkrqmdq5cz7wfzr7kw2gy5vk8h1hmf3vplc6mqk7vr3zm6m2"; + system = "clack-cors-docs"; + asd = "clack-cors-docs"; + }); + systems = [ "clack-cors-docs" ]; + lispLibs = [ (getAttr "_40ants-doc" self) (getAttr "clack-cors" self) (getAttr "docs-config" self) (getAttr "named-readtables" self) (getAttr "pythonic-string-reader" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clack-cors-tests = (build-asdf-system { + pname = "clack-cors-tests"; + version = "20241012-git"; + asds = [ "clack-cors-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-cors/2024-10-12/clack-cors-20241012-git.tgz"; + sha256 = "0bndzkrqmdq5cz7wfzr7kw2gy5vk8h1hmf3vplc6mqk7vr3zm6m2"; + system = "clack-cors-tests"; + asd = "clack-cors-tests"; + }); + systems = [ "clack-cors-tests" ]; + lispLibs = [ (getAttr "clack-test" self) (getAttr "rove" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); clack-errors = (build-asdf-system { pname = "clack-errors"; version = "20190813-git"; @@ -26398,11 +26734,11 @@ in lib.makeScope pkgs.newScope (self: { }); clack-handler-hunchentoot = (build-asdf-system { pname = "clack-handler-hunchentoot"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clack-handler-hunchentoot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "clack-handler-hunchentoot"; asd = "clack-handler-hunchentoot"; }); @@ -26414,11 +26750,11 @@ in lib.makeScope pkgs.newScope (self: { }); clack-handler-toot = (build-asdf-system { pname = "clack-handler-toot"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clack-handler-toot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "clack-handler-toot"; asd = "clack-handler-toot"; }); @@ -26430,11 +26766,11 @@ in lib.makeScope pkgs.newScope (self: { }); clack-handler-woo = (build-asdf-system { pname = "clack-handler-woo"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clack-handler-woo" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/woo/2023-10-21/woo-20231021-git.tgz"; - sha256 = "0yzphn3c544vxj52z5h5zbvhz4ab3hm5mpsbsa57p0xa1gcm03r5"; + url = "http://beta.quicklisp.org/archive/woo/2024-10-12/woo-20241012-git.tgz"; + sha256 = "0nhxlb1qhkl20vknm44gx0cq5cks33rcljczfhgbnmpkzrdpdrrl"; system = "clack-handler-woo"; asd = "clack-handler-woo"; }); @@ -26446,11 +26782,11 @@ in lib.makeScope pkgs.newScope (self: { }); clack-handler-wookie = (build-asdf-system { pname = "clack-handler-wookie"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clack-handler-wookie" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "clack-handler-wookie"; asd = "clack-handler-wookie"; }); @@ -26462,11 +26798,11 @@ in lib.makeScope pkgs.newScope (self: { }); clack-pretend = (build-asdf-system { pname = "clack-pretend"; - version = "20210630-git"; + version = "20241012-git"; asds = [ "clack-pretend" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack-pretend/2021-06-30/clack-pretend-20210630-git.tgz"; - sha256 = "1fhbznnrfkg9n3ql97h4adaqf968gn7i9xpggb4zzszc8gwiyasg"; + url = "http://beta.quicklisp.org/archive/clack-pretend/2024-10-12/clack-pretend-20241012-git.tgz"; + sha256 = "0f9y264bdxspd3sfzf9hq7v0myvq5va0drw8kji1b4gyprmg995k"; system = "clack-pretend"; asd = "clack-pretend"; }); @@ -26476,13 +26812,77 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + clack-prometheus = (build-asdf-system { + pname = "clack-prometheus"; + version = "20241012-git"; + asds = [ "clack-prometheus" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-prometheus/2024-10-12/clack-prometheus-20241012-git.tgz"; + sha256 = "1zkflszvxyhxn7m9c2f1k2snqwdzasbvscw5vpsglb50pczs9g0d"; + system = "clack-prometheus"; + asd = "clack-prometheus"; + }); + systems = [ "clack-prometheus" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "cffi-grovel" self) (getAttr "lack-middleware-mount" self) (getAttr "prometheus" self) (getAttr "prometheus-gc" self) (getAttr "prometheus_dot_collectors_dot_process" self) (getAttr "prometheus_dot_collectors_dot_sbcl" self) (getAttr "prometheus_dot_formats_dot_text" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clack-prometheus-ci = (build-asdf-system { + pname = "clack-prometheus-ci"; + version = "20241012-git"; + asds = [ "clack-prometheus-ci" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-prometheus/2024-10-12/clack-prometheus-20241012-git.tgz"; + sha256 = "1zkflszvxyhxn7m9c2f1k2snqwdzasbvscw5vpsglb50pczs9g0d"; + system = "clack-prometheus-ci"; + asd = "clack-prometheus-ci"; + }); + systems = [ "clack-prometheus-ci" ]; + lispLibs = [ (getAttr "_40ants-ci" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clack-prometheus-docs = (build-asdf-system { + pname = "clack-prometheus-docs"; + version = "20241012-git"; + asds = [ "clack-prometheus-docs" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-prometheus/2024-10-12/clack-prometheus-20241012-git.tgz"; + sha256 = "1zkflszvxyhxn7m9c2f1k2snqwdzasbvscw5vpsglb50pczs9g0d"; + system = "clack-prometheus-docs"; + asd = "clack-prometheus-docs"; + }); + systems = [ "clack-prometheus-docs" ]; + lispLibs = [ (getAttr "_40ants-doc" self) (getAttr "clack-prometheus" self) (getAttr "docs-config" self) (getAttr "named-readtables" self) (getAttr "pythonic-string-reader" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clack-prometheus-tests = (build-asdf-system { + pname = "clack-prometheus-tests"; + version = "20241012-git"; + asds = [ "clack-prometheus-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clack-prometheus/2024-10-12/clack-prometheus-20241012-git.tgz"; + sha256 = "1zkflszvxyhxn7m9c2f1k2snqwdzasbvscw5vpsglb50pczs9g0d"; + system = "clack-prometheus-tests"; + asd = "clack-prometheus-tests"; + }); + systems = [ "clack-prometheus-tests" ]; + lispLibs = [ (getAttr "rove" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); clack-socket = (build-asdf-system { pname = "clack-socket"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clack-socket" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "clack-socket"; asd = "clack-socket"; }); @@ -26540,11 +26940,11 @@ in lib.makeScope pkgs.newScope (self: { }); clack-test = (build-asdf-system { pname = "clack-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clack-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "clack-test"; asd = "clack-test"; }); @@ -26556,11 +26956,11 @@ in lib.makeScope pkgs.newScope (self: { }); clad = (build-asdf-system { pname = "clad"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "clad" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clad/2023-06-18/clad-20230618-git.tgz"; - sha256 = "0ssjjcj9mzkqgxqja7061gm63jlzshw9y0zpz4sdincai8bikyr7"; + url = "http://beta.quicklisp.org/archive/clad/2024-10-12/clad-20241012-git.tgz"; + sha256 = "1ah8d4wyd7yqchcnyjcnd27gx2m410cgybyp194ng1ipdpa4mm6n"; system = "clad"; asd = "clad"; }); @@ -26604,11 +27004,11 @@ in lib.makeScope pkgs.newScope (self: { }); classimp = (build-asdf-system { pname = "classimp"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "classimp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/classimp/2023-06-18/classimp-20230618-git.tgz"; - sha256 = "0i343lmvbssbgszz9s33hsn21hkrib1rdmkmcncyf644aa6ps598"; + url = "http://beta.quicklisp.org/archive/classimp/2024-10-12/classimp-20241012-git.tgz"; + sha256 = "1sq34s5yrljh7fffllsscay7xi11lg03alrkyrh6xfwa2w7cnqmx"; system = "classimp"; asd = "classimp"; }); @@ -26620,11 +27020,11 @@ in lib.makeScope pkgs.newScope (self: { }); classimp-samples = (build-asdf-system { pname = "classimp-samples"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "classimp-samples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/classimp/2023-06-18/classimp-20230618-git.tgz"; - sha256 = "0i343lmvbssbgszz9s33hsn21hkrib1rdmkmcncyf644aa6ps598"; + url = "http://beta.quicklisp.org/archive/classimp/2024-10-12/classimp-20241012-git.tgz"; + sha256 = "1sq34s5yrljh7fffllsscay7xi11lg03alrkyrh6xfwa2w7cnqmx"; system = "classimp-samples"; asd = "classimp-samples"; }); @@ -26666,11 +27066,11 @@ in lib.makeScope pkgs.newScope (self: { }); clast = (build-asdf-system { pname = "clast"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "clast" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clast/2023-02-14/clast-20230214-git.tgz"; - sha256 = "0v0d2h4wqpc8l0f3wsnp3xhag9diqx47crq6rjprs1ryajmzinfz"; + url = "http://beta.quicklisp.org/archive/clast/2024-10-12/clast-20241012-git.tgz"; + sha256 = "0509hrpd049s62s03wwb2mp24dfw8f0l8cg0vgq3s8wrsch7af2m"; system = "clast"; asd = "clast"; }); @@ -26682,11 +27082,11 @@ in lib.makeScope pkgs.newScope (self: { }); clath = (build-asdf-system { pname = "clath"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "clath" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clath/2023-02-14/clath-20230214-git.tgz"; - sha256 = "1i93r5q0rkxw9v0agi61m9hgwgj409rbwjvyi519gbf8wg0wzwir"; + url = "http://beta.quicklisp.org/archive/clath/2024-10-12/clath-20241012-git.tgz"; + sha256 = "0519jzm8r55am6f5w11pfbyq0bvn8jxkcz33kbrznwrf43xz5fcv"; system = "clath"; asd = "clath"; }); @@ -26714,11 +27114,11 @@ in lib.makeScope pkgs.newScope (self: { }); clavier = (build-asdf-system { pname = "clavier"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "clavier" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clavier/2023-02-14/clavier-20230214-git.tgz"; - sha256 = "1gjd0rhxs2x7gn3fw1hnxivmm4ca4f1wxlg0fqv8fdfabgzsvl5y"; + url = "http://beta.quicklisp.org/archive/clavier/2024-10-12/clavier-20241012-git.tgz"; + sha256 = "0v81ql9bbnsqaxcrv0ynm82xwifxvc6ysmfrn1lgphn4szx1p230"; system = "clavier"; asd = "clavier"; }); @@ -26730,11 +27130,11 @@ in lib.makeScope pkgs.newScope (self: { }); clavier_dot_test = (build-asdf-system { pname = "clavier.test"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "clavier.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clavier/2023-02-14/clavier-20230214-git.tgz"; - sha256 = "1gjd0rhxs2x7gn3fw1hnxivmm4ca4f1wxlg0fqv8fdfabgzsvl5y"; + url = "http://beta.quicklisp.org/archive/clavier/2024-10-12/clavier-20241012-git.tgz"; + sha256 = "0v81ql9bbnsqaxcrv0ynm82xwifxvc6ysmfrn1lgphn4szx1p230"; system = "clavier.test"; asd = "clavier.test"; }); @@ -26858,11 +27258,11 @@ in lib.makeScope pkgs.newScope (self: { }); clazy = (build-asdf-system { pname = "clazy"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "clazy" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clazy/2023-02-14/clazy-20230214-git.tgz"; - sha256 = "0hv0sd3ax6h36l3yjxl8ypj6gs60f5r6mfgpfn23cabq5cz8g705"; + url = "http://beta.quicklisp.org/archive/clazy/2024-10-12/clazy-20241012-git.tgz"; + sha256 = "0z9iy89p4grj2a803nlrnvj335c6knmnlbicpf0b4br41j6q74xj"; system = "clazy"; asd = "clazy"; }); @@ -26954,11 +27354,11 @@ in lib.makeScope pkgs.newScope (self: { }); clerk = (build-asdf-system { pname = "clerk"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "clerk" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clerk/2022-02-20/clerk-20220220-git.tgz"; - sha256 = "0x9rzdylgl6ingkg6g47wh7pb6k30mnl718y8ql1pg0vfd5y1hml"; + url = "http://beta.quicklisp.org/archive/clerk/2024-10-12/clerk-20241012-git.tgz"; + sha256 = "0p81ha537bfs8421y74vrvhi1h61f38djr3iwgab30f6sdfj4k8j"; system = "clerk"; asd = "clerk"; }); @@ -26970,11 +27370,11 @@ in lib.makeScope pkgs.newScope (self: { }); clerk-test = (build-asdf-system { pname = "clerk-test"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "clerk-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clerk/2022-02-20/clerk-20220220-git.tgz"; - sha256 = "0x9rzdylgl6ingkg6g47wh7pb6k30mnl718y8ql1pg0vfd5y1hml"; + url = "http://beta.quicklisp.org/archive/clerk/2024-10-12/clerk-20241012-git.tgz"; + sha256 = "0p81ha537bfs8421y74vrvhi1h61f38djr3iwgab30f6sdfj4k8j"; system = "clerk-test"; asd = "clerk"; }); @@ -27080,11 +27480,11 @@ in lib.makeScope pkgs.newScope (self: { }); clgplot = (build-asdf-system { pname = "clgplot"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clgplot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clgplot/2022-11-06/clgplot-20221106-git.tgz"; - sha256 = "0qhhbdwahpn9ass9am9fdpvcnfpi4jrss60kip6jkkzgir9iyz0p"; + url = "http://beta.quicklisp.org/archive/clgplot/2024-10-12/clgplot-20241012-git.tgz"; + sha256 = "0sl5g33v1lpkjimmcs22f32hgnlfhz0ydd5rgy0ykwb7jf7x3pv7"; system = "clgplot"; asd = "clgplot"; }); @@ -27096,11 +27496,11 @@ in lib.makeScope pkgs.newScope (self: { }); clgplot-test = (build-asdf-system { pname = "clgplot-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clgplot-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clgplot/2022-11-06/clgplot-20221106-git.tgz"; - sha256 = "0qhhbdwahpn9ass9am9fdpvcnfpi4jrss60kip6jkkzgir9iyz0p"; + url = "http://beta.quicklisp.org/archive/clgplot/2024-10-12/clgplot-20241012-git.tgz"; + sha256 = "0sl5g33v1lpkjimmcs22f32hgnlfhz0ydd5rgy0ykwb7jf7x3pv7"; system = "clgplot-test"; asd = "clgplot-test"; }); @@ -27160,11 +27560,11 @@ in lib.makeScope pkgs.newScope (self: { }); clim = (build-asdf-system { pname = "clim"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim"; asd = "clim"; }); @@ -27176,11 +27576,11 @@ in lib.makeScope pkgs.newScope (self: { }); clim-core = (build-asdf-system { pname = "clim-core"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-core" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-core"; asd = "clim-core"; }); @@ -27192,11 +27592,11 @@ in lib.makeScope pkgs.newScope (self: { }); clim-debugger = (build-asdf-system { pname = "clim-debugger"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-debugger" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-debugger"; asd = "clim-debugger"; }); @@ -27208,11 +27608,11 @@ in lib.makeScope pkgs.newScope (self: { }); clim-examples = (build-asdf-system { pname = "clim-examples"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-examples"; asd = "clim-examples"; }); @@ -27224,27 +27624,27 @@ in lib.makeScope pkgs.newScope (self: { }); clim-lisp = (build-asdf-system { pname = "clim-lisp"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-lisp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-lisp"; asd = "clim-lisp"; }); systems = [ "clim-lisp" ]; - lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "closer-mop" self) (getAttr "trivial-features" self) (getAttr "trivial-gray-streams" self) ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "closer-mop" self) (getAttr "cluffer" self) (getAttr "trivial-features" self) (getAttr "trivial-gray-streams" self) ]; meta = { hydraPlatforms = [ ]; }; }); clim-listener = (build-asdf-system { pname = "clim-listener"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-listener" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-listener"; asd = "clim-listener"; }); @@ -27256,27 +27656,27 @@ in lib.makeScope pkgs.newScope (self: { }); clim-pdf = (build-asdf-system { pname = "clim-pdf"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-pdf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-pdf"; asd = "clim-pdf"; }); systems = [ "clim-pdf" ]; - lispLibs = [ (getAttr "cl-pdf" self) (getAttr "clim" self) (getAttr "clim-postscript" self) (getAttr "clim-postscript-font" self) (getAttr "flexi-streams" self) ]; + lispLibs = [ (getAttr "cl-pdf" self) (getAttr "cl-pdf-parser" self) (getAttr "clim" self) (getAttr "clim-postscript" self) (getAttr "clim-postscript-font" self) (getAttr "flexi-streams" self) ]; meta = { hydraPlatforms = [ ]; }; }); clim-postscript = (build-asdf-system { pname = "clim-postscript"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-postscript" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-postscript"; asd = "clim-postscript"; }); @@ -27288,16 +27688,16 @@ in lib.makeScope pkgs.newScope (self: { }); clim-postscript-font = (build-asdf-system { pname = "clim-postscript-font"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clim-postscript-font" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clim-postscript-font"; asd = "clim-postscript-font"; }); systems = [ "clim-postscript-font" ]; - lispLibs = [ (getAttr "clim" self) (getAttr "mcclim-backend-common" self) ]; + lispLibs = [ (getAttr "clim" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -27320,11 +27720,11 @@ in lib.makeScope pkgs.newScope (self: { }); climacs = (build-asdf-system { pname = "climacs"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "climacs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/climacs/2023-02-14/climacs-20230214-git.tgz"; - sha256 = "1l6bjf99sybd3c1xv4ikwix3kh83rw5xplfkbra6xfqjyacl8n7h"; + url = "http://beta.quicklisp.org/archive/climacs/2024-10-12/climacs-20241012-git.tgz"; + sha256 = "0swbnsnavwaxpdcdsdag6iadc6v436pawbrzz6p8lkkbmbmc7yf8"; system = "climacs"; asd = "climacs"; }); @@ -27496,11 +27896,11 @@ in lib.makeScope pkgs.newScope (self: { }); clingon = (build-asdf-system { pname = "clingon"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clingon" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clingon/2023-10-21/clingon-20231021-git.tgz"; - sha256 = "1hp0g46b0rycwi3amlas1rbii5g2hyschp9grxz3b88q6437f6gc"; + url = "http://beta.quicklisp.org/archive/clingon/2024-10-12/clingon-20241012-git.tgz"; + sha256 = "0p8i9bkzzy4v0pg15dldrl73xri4kxyxa7si82bawh1dnnm53jgc"; system = "clingon"; asd = "clingon"; }); @@ -27512,11 +27912,11 @@ in lib.makeScope pkgs.newScope (self: { }); clingon_dot_demo = (build-asdf-system { pname = "clingon.demo"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clingon.demo" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clingon/2023-10-21/clingon-20231021-git.tgz"; - sha256 = "1hp0g46b0rycwi3amlas1rbii5g2hyschp9grxz3b88q6437f6gc"; + url = "http://beta.quicklisp.org/archive/clingon/2024-10-12/clingon-20241012-git.tgz"; + sha256 = "0p8i9bkzzy4v0pg15dldrl73xri4kxyxa7si82bawh1dnnm53jgc"; system = "clingon.demo"; asd = "clingon.demo"; }); @@ -27528,11 +27928,11 @@ in lib.makeScope pkgs.newScope (self: { }); clingon_dot_intro = (build-asdf-system { pname = "clingon.intro"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clingon.intro" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clingon/2023-10-21/clingon-20231021-git.tgz"; - sha256 = "1hp0g46b0rycwi3amlas1rbii5g2hyschp9grxz3b88q6437f6gc"; + url = "http://beta.quicklisp.org/archive/clingon/2024-10-12/clingon-20241012-git.tgz"; + sha256 = "0p8i9bkzzy4v0pg15dldrl73xri4kxyxa7si82bawh1dnnm53jgc"; system = "clingon.intro"; asd = "clingon.intro"; }); @@ -27544,11 +27944,11 @@ in lib.makeScope pkgs.newScope (self: { }); clingon_dot_test = (build-asdf-system { pname = "clingon.test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clingon.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clingon/2023-10-21/clingon-20231021-git.tgz"; - sha256 = "1hp0g46b0rycwi3amlas1rbii5g2hyschp9grxz3b88q6437f6gc"; + url = "http://beta.quicklisp.org/archive/clingon/2024-10-12/clingon-20241012-git.tgz"; + sha256 = "0p8i9bkzzy4v0pg15dldrl73xri4kxyxa7si82bawh1dnnm53jgc"; system = "clingon.test"; asd = "clingon.test"; }); @@ -27560,11 +27960,11 @@ in lib.makeScope pkgs.newScope (self: { }); clip = (build-asdf-system { pname = "clip"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clip" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clip/2023-10-21/clip-20231021-git.tgz"; - sha256 = "1b9xd52zk5j5c78s7f5ybi22l1imb9wf492xfv591z6yajagqljv"; + url = "http://beta.quicklisp.org/archive/clip/2024-10-12/clip-20241012-git.tgz"; + sha256 = "1ikzfza4s5xl67bz4vi05hmqmkvs5qr2ycy1f6vi1ihsdvjfify0"; system = "clip"; asd = "clip"; }); @@ -27622,6 +28022,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + clith = (build-asdf-system { + pname = "clith"; + version = "20241012-git"; + asds = [ "clith" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clith/2024-10-12/clith-20241012-git.tgz"; + sha256 = "02qfyrnihx9x6nwxgzlh2x6ymz90i524jg8gc5zsy9rcfqj2sfa7"; + system = "clith"; + asd = "clith"; + }); + systems = [ "clith" ]; + lispLibs = [ (getAttr "alexandria" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); clj = (build-asdf-system { pname = "clj"; version = "20201220-git"; @@ -27638,29 +28054,61 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + clj-arrows = (build-asdf-system { + pname = "clj-arrows"; + version = "20241012-git"; + asds = [ "clj-arrows" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clj-arrows/2024-10-12/clj-arrows-20241012-git.tgz"; + sha256 = "0b0dpjbyk41h32laqa4hwlgximafkjgrgdahabyc3blkg5v7lill"; + system = "clj-arrows"; + asd = "clj-arrows"; + }); + systems = [ "clj-arrows" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clj-arrows-test = (build-asdf-system { + pname = "clj-arrows-test"; + version = "20241012-git"; + asds = [ "clj-arrows-test" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clj-arrows/2024-10-12/clj-arrows-20241012-git.tgz"; + sha256 = "0b0dpjbyk41h32laqa4hwlgximafkjgrgdahabyc3blkg5v7lill"; + system = "clj-arrows-test"; + asd = "clj-arrows-test"; + }); + systems = [ "clj-arrows-test" ]; + lispLibs = [ (getAttr "clj-arrows" self) (getAttr "fiveam" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); clj-con = (build-asdf-system { pname = "clj-con"; - version = "20210807-git"; + version = "20241012-git"; asds = [ "clj-con" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clj-con/2021-08-07/clj-con-20210807-git.tgz"; - sha256 = "0b996cfvl8nnjf2mh8ki4gdzrr4hhnhbmlgacw74hmfb6nqjb466"; + url = "http://beta.quicklisp.org/archive/clj-con/2024-10-12/clj-con-20241012-git.tgz"; + sha256 = "05zjw4ncwwpmckxqv61zhv1lcyfm7w4ic59ypcw5bypxwgkapa7c"; system = "clj-con"; asd = "clj-con"; }); systems = [ "clj-con" ]; - lispLibs = [ (getAttr "bordeaux-threads" self) ]; + lispLibs = [ (getAttr "atomics" self) (getAttr "bordeaux-threads" self) ]; meta = { hydraPlatforms = [ ]; }; }); clj-con-test = (build-asdf-system { pname = "clj-con-test"; - version = "20210807-git"; + version = "20241012-git"; asds = [ "clj-con-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clj-con/2021-08-07/clj-con-20210807-git.tgz"; - sha256 = "0b996cfvl8nnjf2mh8ki4gdzrr4hhnhbmlgacw74hmfb6nqjb466"; + url = "http://beta.quicklisp.org/archive/clj-con/2024-10-12/clj-con-20241012-git.tgz"; + sha256 = "05zjw4ncwwpmckxqv61zhv1lcyfm7w4ic59ypcw5bypxwgkapa7c"; system = "clj-con-test"; asd = "clj-con-test"; }); @@ -27672,11 +28120,11 @@ in lib.makeScope pkgs.newScope (self: { }); clj-re = (build-asdf-system { pname = "clj-re"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clj-re" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clj-re/2022-11-06/clj-re-20221106-git.tgz"; - sha256 = "1ybcf687hybq2n9vag9i90mdx3cqajdj63q7vryxamp39zmgqks6"; + url = "http://beta.quicklisp.org/archive/clj-re/2024-10-12/clj-re-20241012-git.tgz"; + sha256 = "05d0xqnhd50hmvicaq3a08m52c12j7cmxz99mpmk10mp0cv572bl"; system = "clj-re"; asd = "clj-re"; }); @@ -27688,11 +28136,11 @@ in lib.makeScope pkgs.newScope (self: { }); clj-re-test = (build-asdf-system { pname = "clj-re-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clj-re-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clj-re/2022-11-06/clj-re-20221106-git.tgz"; - sha256 = "1ybcf687hybq2n9vag9i90mdx3cqajdj63q7vryxamp39zmgqks6"; + url = "http://beta.quicklisp.org/archive/clj-re/2024-10-12/clj-re-20241012-git.tgz"; + sha256 = "05d0xqnhd50hmvicaq3a08m52c12j7cmxz99mpmk10mp0cv572bl"; system = "clj-re-test"; asd = "clj-re-test"; }); @@ -28217,16 +28665,48 @@ in lib.makeScope pkgs.newScope (self: { }); clobber = (build-asdf-system { pname = "clobber"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clobber" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clobber/2022-11-06/clobber-20221106-git.tgz"; - sha256 = "0pqzfn2wqbzzwlwc3l84iv3i3wa9zfgnh14mq67h9qkib8wjzx3n"; + url = "http://beta.quicklisp.org/archive/clobber/2024-10-12/clobber-20241012-git.tgz"; + sha256 = "1n6j9q0czrzigw7vfahlylm1g8hmk7b1wm84jm94cgl8r5r3s8ra"; system = "clobber"; asd = "clobber"; }); systems = [ "clobber" ]; - lispLibs = [ ]; + lispLibs = [ (getAttr "clobber-base" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clobber-base = (build-asdf-system { + pname = "clobber-base"; + version = "20241012-git"; + asds = [ "clobber-base" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clobber/2024-10-12/clobber-20241012-git.tgz"; + sha256 = "1n6j9q0czrzigw7vfahlylm1g8hmk7b1wm84jm94cgl8r5r3s8ra"; + system = "clobber-base"; + asd = "clobber-base"; + }); + systems = [ "clobber-base" ]; + lispLibs = [ (getAttr "closer-mop" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + clobber-test = (build-asdf-system { + pname = "clobber-test"; + version = "20241012-git"; + asds = [ "clobber-test" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clobber/2024-10-12/clobber-20241012-git.tgz"; + sha256 = "1n6j9q0czrzigw7vfahlylm1g8hmk7b1wm84jm94cgl8r5r3s8ra"; + system = "clobber-test"; + asd = "clobber-test"; + }); + systems = [ "clobber-test" ]; + lispLibs = [ (getAttr "clobber" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -28265,27 +28745,27 @@ in lib.makeScope pkgs.newScope (self: { }); clog = (build-asdf-system { pname = "clog"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clog" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clog/2023-10-21/clog-20231021-git.tgz"; - sha256 = "1hd59lwvhd8hfgh6nrgpsqrvwsh7jrpvi2rxaig67xr0zp476hak"; + url = "http://beta.quicklisp.org/archive/clog/2024-10-12/clog-20241012-git.tgz"; + sha256 = "0hqpj9ji7kfqgcxdfnc7x202qzmb7zdkmjwcyhdllqs6b0ssw5lx"; system = "clog"; asd = "clog"; }); systems = [ "clog" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "atomics" self) (getAttr "bordeaux-threads" self) (getAttr "cl-dbi" self) (getAttr "cl-isaac" self) (getAttr "cl-pass" self) (getAttr "cl-ppcre" self) (getAttr "cl-template" self) (getAttr "clack" self) (getAttr "closer-mop" self) (getAttr "hunchentoot" self) (getAttr "lack-middleware-static" self) (getAttr "lack-request" self) (getAttr "lack-util-writer-stream" self) (getAttr "mgl-pax" self) (getAttr "parse-float" self) (getAttr "quri" self) (getAttr "sqlite" self) (getAttr "trivial-open-browser" self) (getAttr "websocket-driver" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "atomics" self) (getAttr "bordeaux-threads" self) (getAttr "cl-dbi" self) (getAttr "cl-isaac" self) (getAttr "cl-pass" self) (getAttr "cl-ppcre" self) (getAttr "cl-template" self) (getAttr "clack" self) (getAttr "closer-mop" self) (getAttr "hunchentoot" self) (getAttr "lack-middleware-static" self) (getAttr "lack-request" self) (getAttr "lack-util-writer-stream" self) (getAttr "mgl-pax" self) (getAttr "parse-float" self) (getAttr "quri" self) (getAttr "sqlite" self) (getAttr "trivial-gray-streams" self) (getAttr "websocket-driver" self) ]; meta = { hydraPlatforms = [ ]; }; }); clog-ace = (build-asdf-system { pname = "clog-ace"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clog-ace" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clog-ace/2022-11-06/clog-ace-20221106-git.tgz"; - sha256 = "0hci7qwbnjnjiy4jr6pkn3h4l9j80mypa4fi60adsz4fqm09yr41"; + url = "http://beta.quicklisp.org/archive/clog-ace/2024-10-12/clog-ace-20241012-git.tgz"; + sha256 = "01hwaiccy5i81w22kya00jscgpjw6iib2hnklqwky88i35kbb4sj"; system = "clog-ace"; asd = "clog-ace"; }); @@ -28297,11 +28777,11 @@ in lib.makeScope pkgs.newScope (self: { }); clog-collection = (build-asdf-system { pname = "clog-collection"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clog-collection" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clog-collection/2023-10-21/clog-collection-20231021-git.tgz"; - sha256 = "0jh9lpagspar6hjgq6s0gjv3qy1ykygy2gwb6dfppixz8s56fxri"; + url = "http://beta.quicklisp.org/archive/clog-collection/2024-10-12/clog-collection-20241012-git.tgz"; + sha256 = "0f6rw9sla5f7jglbisving0c97vz3a5bbn59li0jzngqp8rqwsqx"; system = "clog-collection"; asd = "clog-collection"; }); @@ -28313,11 +28793,11 @@ in lib.makeScope pkgs.newScope (self: { }); clog-plotly = (build-asdf-system { pname = "clog-plotly"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clog-plotly" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clog-plotly/2022-11-06/clog-plotly-20221106-git.tgz"; - sha256 = "0jzpd41vchn6ag93kfrl8gd3ckds9rq6jpy34dlla6y5s2mbjbif"; + url = "http://beta.quicklisp.org/archive/clog-plotly/2024-10-12/clog-plotly-20241012-git.tgz"; + sha256 = "064fhfhh5nr1g9f4pn9x2ydmxdnxmvyxhwgbl3dgqm416scjzzs1"; system = "clog-plotly"; asd = "clog-plotly"; }); @@ -28329,11 +28809,11 @@ in lib.makeScope pkgs.newScope (self: { }); clog-terminal = (build-asdf-system { pname = "clog-terminal"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "clog-terminal" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clog-terminal/2022-11-06/clog-terminal-20221106-git.tgz"; - sha256 = "1ma7x3q4gak0ndwgbpnc1par3zcc6b02mpzwrgqmyi1251868rrq"; + url = "http://beta.quicklisp.org/archive/clog-terminal/2024-10-12/clog-terminal-20241012-git.tgz"; + sha256 = "1pvrja8fvdzqmiqzl23lb7665vcpx9lhwxahns81wlykkyx7cjd5"; system = "clog-terminal"; asd = "clog-terminal"; }); @@ -28345,11 +28825,11 @@ in lib.makeScope pkgs.newScope (self: { }); clohost = (build-asdf-system { pname = "clohost"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clohost" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clohost/2023-10-21/clohost-20231021-git.tgz"; - sha256 = "1spz32lrkxshbvfa0fdml0lcyxm0vys8yan5fsi540dqhbkiqxlj"; + url = "http://beta.quicklisp.org/archive/clohost/2024-10-12/clohost-20241012-git.tgz"; + sha256 = "1qph7nrjb62qxwkv5wbzqkycdavsjvi39b97qvs5g8jsrvbl50lh"; system = "clohost"; asd = "clohost"; }); @@ -28423,6 +28903,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + clos-encounters = (build-asdf-system { + pname = "clos-encounters"; + version = "20241012-git"; + asds = [ "clos-encounters" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/clos-encounters/2024-10-12/clos-encounters-20241012-git.tgz"; + sha256 = "021ygh6s5qb7l155bcp9qv1w2dhq9csscasp77vjlms1ahpq9ixf"; + system = "clos-encounters"; + asd = "clos-encounters"; + }); + systems = [ "clos-encounters" ]; + lispLibs = [ (getAttr "closer-mop" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); clos-fixtures = (build-asdf-system { pname = "clos-fixtures"; version = "20160825-git"; @@ -28457,11 +28953,11 @@ in lib.makeScope pkgs.newScope (self: { }); closer-mop = (build-asdf-system { pname = "closer-mop"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "closer-mop" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/closer-mop/2023-10-21/closer-mop-20231021-git.tgz"; - sha256 = "0vk255xp12y5jvrpnaak52286x33qsdsjyyh2hrgjyhi0155nn1l"; + url = "http://beta.quicklisp.org/archive/closer-mop/2024-10-12/closer-mop-20241012-git.tgz"; + sha256 = "1affaqh0sm1phs6qa12vbhf69abssjcpy55cwf4fi4nd6hgcrfqr"; system = "closer-mop"; asd = "closer-mop"; }); @@ -28563,11 +29059,11 @@ in lib.makeScope pkgs.newScope (self: { }); clouseau = (build-asdf-system { pname = "clouseau"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clouseau" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "clouseau"; asd = "clouseau"; }); @@ -28889,11 +29385,11 @@ in lib.makeScope pkgs.newScope (self: { }); clss = (build-asdf-system { pname = "clss"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clss" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clss/2023-10-21/clss-20231021-git.tgz"; - sha256 = "1js9flb5nj2z1wcyplbm5zimaan7dmd8bx9qg6nxprd8f2xrw3qy"; + url = "http://beta.quicklisp.org/archive/clss/2024-10-12/clss-20241012-git.tgz"; + sha256 = "1l2yq6wi8wmb7l8fy6w4xb3mb2yd9d14ijgqdsbnwb5k2hbmndbf"; system = "clss"; asd = "clss"; }); @@ -28919,11 +29415,11 @@ in lib.makeScope pkgs.newScope (self: { }); cluffer = (build-asdf-system { pname = "cluffer"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cluffer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cluffer/2023-06-18/cluffer-20230618-git.tgz"; - sha256 = "1bncqb8lixr65vr07rpyb1i5h0jqnkfdpwbixk13q445xcl99fiz"; + url = "http://beta.quicklisp.org/archive/cluffer/2024-10-12/cluffer-20241012-git.tgz"; + sha256 = "1q5232v9vkjmiks2ciqj1fa1h3gh53rfhl301wp46jwra3r7qqyg"; system = "cluffer"; asd = "cluffer"; }); @@ -28933,11 +29429,11 @@ in lib.makeScope pkgs.newScope (self: { }); cluffer-base = (build-asdf-system { pname = "cluffer-base"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cluffer-base" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cluffer/2023-06-18/cluffer-20230618-git.tgz"; - sha256 = "1bncqb8lixr65vr07rpyb1i5h0jqnkfdpwbixk13q445xcl99fiz"; + url = "http://beta.quicklisp.org/archive/cluffer/2024-10-12/cluffer-20241012-git.tgz"; + sha256 = "1q5232v9vkjmiks2ciqj1fa1h3gh53rfhl301wp46jwra3r7qqyg"; system = "cluffer-base"; asd = "cluffer-base"; }); @@ -28949,11 +29445,11 @@ in lib.makeScope pkgs.newScope (self: { }); cluffer-simple-buffer = (build-asdf-system { pname = "cluffer-simple-buffer"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cluffer-simple-buffer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cluffer/2023-06-18/cluffer-20230618-git.tgz"; - sha256 = "1bncqb8lixr65vr07rpyb1i5h0jqnkfdpwbixk13q445xcl99fiz"; + url = "http://beta.quicklisp.org/archive/cluffer/2024-10-12/cluffer-20241012-git.tgz"; + sha256 = "1q5232v9vkjmiks2ciqj1fa1h3gh53rfhl301wp46jwra3r7qqyg"; system = "cluffer-simple-buffer"; asd = "cluffer-simple-buffer"; }); @@ -28965,11 +29461,11 @@ in lib.makeScope pkgs.newScope (self: { }); cluffer-simple-line = (build-asdf-system { pname = "cluffer-simple-line"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cluffer-simple-line" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cluffer/2023-06-18/cluffer-20230618-git.tgz"; - sha256 = "1bncqb8lixr65vr07rpyb1i5h0jqnkfdpwbixk13q445xcl99fiz"; + url = "http://beta.quicklisp.org/archive/cluffer/2024-10-12/cluffer-20241012-git.tgz"; + sha256 = "1q5232v9vkjmiks2ciqj1fa1h3gh53rfhl301wp46jwra3r7qqyg"; system = "cluffer-simple-line"; asd = "cluffer-simple-line"; }); @@ -28981,11 +29477,11 @@ in lib.makeScope pkgs.newScope (self: { }); cluffer-standard-buffer = (build-asdf-system { pname = "cluffer-standard-buffer"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cluffer-standard-buffer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cluffer/2023-06-18/cluffer-20230618-git.tgz"; - sha256 = "1bncqb8lixr65vr07rpyb1i5h0jqnkfdpwbixk13q445xcl99fiz"; + url = "http://beta.quicklisp.org/archive/cluffer/2024-10-12/cluffer-20241012-git.tgz"; + sha256 = "1q5232v9vkjmiks2ciqj1fa1h3gh53rfhl301wp46jwra3r7qqyg"; system = "cluffer-standard-buffer"; asd = "cluffer-standard-buffer"; }); @@ -28997,11 +29493,11 @@ in lib.makeScope pkgs.newScope (self: { }); cluffer-standard-line = (build-asdf-system { pname = "cluffer-standard-line"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cluffer-standard-line" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cluffer/2023-06-18/cluffer-20230618-git.tgz"; - sha256 = "1bncqb8lixr65vr07rpyb1i5h0jqnkfdpwbixk13q445xcl99fiz"; + url = "http://beta.quicklisp.org/archive/cluffer/2024-10-12/cluffer-20241012-git.tgz"; + sha256 = "1q5232v9vkjmiks2ciqj1fa1h3gh53rfhl301wp46jwra3r7qqyg"; system = "cluffer-standard-line"; asd = "cluffer-standard-line"; }); @@ -29013,11 +29509,11 @@ in lib.makeScope pkgs.newScope (self: { }); cluffer-test = (build-asdf-system { pname = "cluffer-test"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cluffer-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cluffer/2023-06-18/cluffer-20230618-git.tgz"; - sha256 = "1bncqb8lixr65vr07rpyb1i5h0jqnkfdpwbixk13q445xcl99fiz"; + url = "http://beta.quicklisp.org/archive/cluffer/2024-10-12/cluffer-20241012-git.tgz"; + sha256 = "1q5232v9vkjmiks2ciqj1fa1h3gh53rfhl301wp46jwra3r7qqyg"; system = "cluffer-test"; asd = "cluffer-test"; }); @@ -29101,11 +29597,11 @@ in lib.makeScope pkgs.newScope (self: { }); clunit2 = (build-asdf-system { pname = "clunit2"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "clunit2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clunit2/2023-10-21/clunit2-20231021-git.tgz"; - sha256 = "06kfnfi1xn7sdvjq0wfbjdb6dv8pyjc2aqckkm2bq3d88k6jzb4f"; + url = "http://beta.quicklisp.org/archive/clunit2/2024-10-12/clunit2-20241012-git.tgz"; + sha256 = "03k4wc2zz31wcqcxy8fhq095i8xzcaxrzgrlrn2va10lcjs4v51b"; system = "clunit2"; asd = "clunit2"; }); @@ -29227,11 +29723,11 @@ in lib.makeScope pkgs.newScope (self: { }); clx = (build-asdf-system { pname = "clx"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "clx" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clx/2023-06-18/clx-20230618-git.tgz"; - sha256 = "0ivw1gxipxhixzazc0jlvs7pcfkdczdis7y23f4syrxkpzmgmirh"; + url = "http://beta.quicklisp.org/archive/clx/2024-10-12/clx-20241012-git.tgz"; + sha256 = "16l0badm7dxwi7x5ynk1scrbrilnxi1nzz79h1v15xi6b41pf65w"; system = "clx"; asd = "clx"; }); @@ -29257,11 +29753,11 @@ in lib.makeScope pkgs.newScope (self: { }); cmark = (build-asdf-system { pname = "cmark"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "cmark" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-cmark/2023-02-14/cl-cmark-20230214-git.tgz"; - sha256 = "0d61z5y7pyv2y7sjbq3i5047z4jazkxnlqypr32yvyn5qdd78yfv"; + url = "http://beta.quicklisp.org/archive/cl-cmark/2024-10-12/cl-cmark-20241012-git.tgz"; + sha256 = "1l4i530161ppfz0wn1da7g7dwf644ppp1afrq2p7qfkajm7dcfg5"; system = "cmark"; asd = "cmark"; }); @@ -29273,11 +29769,11 @@ in lib.makeScope pkgs.newScope (self: { }); cmd = (build-asdf-system { pname = "cmd"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "cmd" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cmd/2023-06-18/cmd-20230618-git.tgz"; - sha256 = "03wbckzmz6pqdlz7pyar6nfg4vs4bl0b2np7n3kk3qhjbrdakc4m"; + url = "http://beta.quicklisp.org/archive/cmd/2024-10-12/cmd-20241012-git.tgz"; + sha256 = "0rs2priccm34yx8cj29214i4bwa908gqs1ss23gyjb7v5qcq1sj7"; system = "cmd"; asd = "cmd"; }); @@ -29319,6 +29815,70 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + coalton = (build-asdf-system { + pname = "coalton"; + version = "20241012-git"; + asds = [ "coalton" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "coalton"; + asd = "coalton"; + }); + systems = [ "coalton" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "coalton-asdf" self) (getAttr "coalton-compiler" self) (getAttr "trivial-garbage" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + coalton-asdf = (build-asdf-system { + pname = "coalton-asdf"; + version = "20241012-git"; + asds = [ "coalton-asdf" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "coalton-asdf"; + asd = "coalton-asdf"; + }); + systems = [ "coalton-asdf" ]; + lispLibs = [ (getAttr "coalton-compiler" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + coalton-compiler = (build-asdf-system { + pname = "coalton-compiler"; + version = "20241012-git"; + asds = [ "coalton-compiler" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "coalton-compiler"; + asd = "coalton-compiler"; + }); + systems = [ "coalton-compiler" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "concrete-syntax-tree" self) (getAttr "eclector" self) (getAttr "eclector-concrete-syntax-tree" self) (getAttr "float-features" self) (getAttr "fset" self) (getAttr "named-readtables" self) (getAttr "source-error" self) (getAttr "trivial-gray-streams" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + coalton-testing-example-project = (build-asdf-system { + pname = "coalton-testing-example-project"; + version = "20241012-git"; + asds = [ "coalton-testing-example-project" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "coalton-testing-example-project"; + asd = "coalton-testing-example-project"; + }); + systems = [ "coalton-testing-example-project" ]; + lispLibs = [ (getAttr "coalton" self) (getAttr "named-readtables" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cocoahelper = (build-asdf-system { pname = "cocoahelper"; version = "20210807-git"; @@ -29335,13 +29895,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cocoas = (build-asdf-system { + pname = "cocoas"; + version = "20241012-git"; + asds = [ "cocoas" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cocoas/2024-10-12/cocoas-20241012-git.tgz"; + sha256 = "0a3jpni8hnzd6103qj3nywy61c3jq6j9yzmg35wy4b8j94pgyvj5"; + system = "cocoas"; + asd = "cocoas"; + }); + systems = [ "cocoas" ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "float-features" self) (getAttr "trivial-main-thread" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); codata-recommended-values = (build-asdf-system { pname = "codata-recommended-values"; - version = "20200218-git"; + version = "20241012-git"; asds = [ "codata-recommended-values" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/codata-recommended-values/2020-02-18/codata-recommended-values-20200218-git.tgz"; - sha256 = "0gm27bkq4ma9kc3adnbzyhchky38halb77qc30ll2097ahwy735p"; + url = "http://beta.quicklisp.org/archive/codata-recommended-values/2024-10-12/codata-recommended-values-20241012-git.tgz"; + sha256 = "0mks9hzw5wkdjkqkcfbafm9rvbfgkn2na4bajfrhs4mn7bg4bv74"; system = "codata-recommended-values"; asd = "codata-recommended-values"; }); @@ -29353,11 +29929,11 @@ in lib.makeScope pkgs.newScope (self: { }); codex = (build-asdf-system { pname = "codex"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "codex" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/codex/2023-10-21/codex-20231021-git.tgz"; - sha256 = "104qrs5nv6kffsdbf9sv4pba6yjssyk5hc6sppf2zxmcr2xwayfz"; + url = "http://beta.quicklisp.org/archive/codex/2024-10-12/codex-20241012-git.tgz"; + sha256 = "06d1qscqnkd24fhpvsm0206a4cj3wsxma7amazhvzqy1y4girgc3"; system = "codex"; asd = "codex"; }); @@ -29369,11 +29945,11 @@ in lib.makeScope pkgs.newScope (self: { }); codex-templates = (build-asdf-system { pname = "codex-templates"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "codex-templates" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/codex/2023-10-21/codex-20231021-git.tgz"; - sha256 = "104qrs5nv6kffsdbf9sv4pba6yjssyk5hc6sppf2zxmcr2xwayfz"; + url = "http://beta.quicklisp.org/archive/codex/2024-10-12/codex-20241012-git.tgz"; + sha256 = "06d1qscqnkd24fhpvsm0206a4cj3wsxma7amazhvzqy1y4girgc3"; system = "codex-templates"; asd = "codex-templates"; }); @@ -29385,11 +29961,11 @@ in lib.makeScope pkgs.newScope (self: { }); coleslaw = (build-asdf-system { pname = "coleslaw"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "coleslaw" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/coleslaw/2023-10-21/coleslaw-20231021-git.tgz"; - sha256 = "1iw532pfmxc4d4bdqh4ac19f1n960zrh31c4mv1swcv06px509yw"; + url = "http://beta.quicklisp.org/archive/coleslaw/2024-10-12/coleslaw-20241012-git.tgz"; + sha256 = "1p9hg5qnymxzx2bzcvkzjarwxw383misq0cmqgggpzyhignx80av"; system = "coleslaw"; asd = "coleslaw"; }); @@ -29401,11 +29977,11 @@ in lib.makeScope pkgs.newScope (self: { }); coleslaw-cli = (build-asdf-system { pname = "coleslaw-cli"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "coleslaw-cli" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/coleslaw/2023-10-21/coleslaw-20231021-git.tgz"; - sha256 = "1iw532pfmxc4d4bdqh4ac19f1n960zrh31c4mv1swcv06px509yw"; + url = "http://beta.quicklisp.org/archive/coleslaw/2024-10-12/coleslaw-20241012-git.tgz"; + sha256 = "1p9hg5qnymxzx2bzcvkzjarwxw383misq0cmqgggpzyhignx80av"; system = "coleslaw-cli"; asd = "coleslaw-cli"; }); @@ -29417,11 +29993,11 @@ in lib.makeScope pkgs.newScope (self: { }); coleslaw-test = (build-asdf-system { pname = "coleslaw-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "coleslaw-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/coleslaw/2023-10-21/coleslaw-20231021-git.tgz"; - sha256 = "1iw532pfmxc4d4bdqh4ac19f1n960zrh31c4mv1swcv06px509yw"; + url = "http://beta.quicklisp.org/archive/coleslaw/2024-10-12/coleslaw-20241012-git.tgz"; + sha256 = "1p9hg5qnymxzx2bzcvkzjarwxw383misq0cmqgggpzyhignx80av"; system = "coleslaw-test"; asd = "coleslaw-test"; }); @@ -29433,11 +30009,11 @@ in lib.makeScope pkgs.newScope (self: { }); collectors = (build-asdf-system { pname = "collectors"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "collectors" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/collectors/2022-02-20/collectors-20220220-git.tgz"; - sha256 = "1mxcq7wq2jwbjd39afihpd46qkaidq76prgjbzpkv5749wf2spib"; + url = "http://beta.quicklisp.org/archive/collectors/2024-10-12/collectors-20241012-git.tgz"; + sha256 = "1kc9q05wyp8yjz5wqc73nar7l49vcnfhj4924li81v76hlb03665"; system = "collectors"; asd = "collectors"; }); @@ -29511,11 +30087,11 @@ in lib.makeScope pkgs.newScope (self: { }); colored = (build-asdf-system { pname = "colored"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "colored" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/colored/2023-10-21/colored-20231021-git.tgz"; - sha256 = "058984j8waw8my6vfjiccdh5jijn9kn2q7lk481zv0ygapqh373x"; + url = "http://beta.quicklisp.org/archive/colored/2024-10-12/colored-20241012-git.tgz"; + sha256 = "0msw83gs5m887n1ha54jhflqjxb2mc7yv1hifspv9g16fn6h355c"; system = "colored"; asd = "colored"; }); @@ -29527,11 +30103,11 @@ in lib.makeScope pkgs.newScope (self: { }); colored-test = (build-asdf-system { pname = "colored-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "colored-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/colored/2023-10-21/colored-20231021-git.tgz"; - sha256 = "058984j8waw8my6vfjiccdh5jijn9kn2q7lk481zv0ygapqh373x"; + url = "http://beta.quicklisp.org/archive/colored/2024-10-12/colored-20241012-git.tgz"; + sha256 = "0msw83gs5m887n1ha54jhflqjxb2mc7yv1hifspv9g16fn6h355c"; system = "colored-test"; asd = "colored-test"; }); @@ -29557,11 +30133,11 @@ in lib.makeScope pkgs.newScope (self: { }); com-on = (build-asdf-system { pname = "com-on"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "com-on" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/com-on/2023-10-21/com-on-20231021-git.tgz"; - sha256 = "1mwjhqbrpqq0x4l0zc3cqmrykrv3qjl2lklcnypddjf2l25f9gf6"; + url = "http://beta.quicklisp.org/archive/com-on/2024-10-12/com-on-20241012-git.tgz"; + sha256 = "1a3by2kx3iq0zl4304zhs89dfkp8xdjmdlnfmgywdg3wjdkxakci"; system = "com-on"; asd = "com-on"; }); @@ -29573,11 +30149,11 @@ in lib.makeScope pkgs.newScope (self: { }); com-on-test = (build-asdf-system { pname = "com-on-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "com-on-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/com-on/2023-10-21/com-on-20231021-git.tgz"; - sha256 = "1mwjhqbrpqq0x4l0zc3cqmrykrv3qjl2lklcnypddjf2l25f9gf6"; + url = "http://beta.quicklisp.org/archive/com-on/2024-10-12/com-on-20241012-git.tgz"; + sha256 = "1a3by2kx3iq0zl4304zhs89dfkp8xdjmdlnfmgywdg3wjdkxakci"; system = "com-on-test"; asd = "com-on-test"; }); @@ -29667,6 +30243,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + com_dot_danielkeogh_dot_graph = (build-asdf-system { + pname = "com.danielkeogh.graph"; + version = "20241012-git"; + asds = [ "com.danielkeogh.graph" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/com.danielkeogh.graph/2024-10-12/com.danielkeogh.graph-20241012-git.tgz"; + sha256 = "1hy9g49aqi1li0cdxzjmzgiskh00vlxbp1kjwiyk8a8kqzg69hj2"; + system = "com.danielkeogh.graph"; + asd = "com.danielkeogh.graph"; + }); + systems = [ "com.danielkeogh.graph" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-speedy-queue" self) (getAttr "trivial-indent" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + com_dot_danielkeogh_dot_graph-tests = (build-asdf-system { + pname = "com.danielkeogh.graph-tests"; + version = "20241012-git"; + asds = [ "com.danielkeogh.graph-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/com.danielkeogh.graph/2024-10-12/com.danielkeogh.graph-20241012-git.tgz"; + sha256 = "1hy9g49aqi1li0cdxzjmzgiskh00vlxbp1kjwiyk8a8kqzg69hj2"; + system = "com.danielkeogh.graph-tests"; + asd = "com.danielkeogh.graph-tests"; + }); + systems = [ "com.danielkeogh.graph-tests" ]; + lispLibs = [ (getAttr "com_dot_danielkeogh_dot_graph" self) (getAttr "fiveam" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); com_dot_dvlsoft_dot_rcfiles = (build-asdf-system { pname = "com.dvlsoft.rcfiles"; version = "20111203-http"; @@ -29893,11 +30501,11 @@ in lib.makeScope pkgs.newScope (self: { }); com_dot_inuoe_dot_jzon = (build-asdf-system { pname = "com.inuoe.jzon"; - version = "v1.1.2"; + version = "v1.1.4"; asds = [ "com.inuoe.jzon" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/jzon/2023-10-21/jzon-v1.1.2.tgz"; - sha256 = "1m7fcnjp9yd82x334h95192zsjc3y1pl6myvc8w9lzvcxbafvvz2"; + url = "http://beta.quicklisp.org/archive/jzon/2024-10-12/jzon-v1.1.4.tgz"; + sha256 = "0z7xpylyk8rakz449rxqpz4hazn91ap2dnf0689iigdvvl3yqz3g"; system = "com.inuoe.jzon"; asd = "com.inuoe.jzon"; }); @@ -29907,11 +30515,11 @@ in lib.makeScope pkgs.newScope (self: { }); com_dot_inuoe_dot_jzon-tests = (build-asdf-system { pname = "com.inuoe.jzon-tests"; - version = "v1.1.2"; + version = "v1.1.4"; asds = [ "com.inuoe.jzon-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/jzon/2023-10-21/jzon-v1.1.2.tgz"; - sha256 = "1m7fcnjp9yd82x334h95192zsjc3y1pl6myvc8w9lzvcxbafvvz2"; + url = "http://beta.quicklisp.org/archive/jzon/2024-10-12/jzon-v1.1.4.tgz"; + sha256 = "0z7xpylyk8rakz449rxqpz4hazn91ap2dnf0689iigdvvl3yqz3g"; system = "com.inuoe.jzon-tests"; asd = "com.inuoe.jzon-tests"; }); @@ -30145,43 +30753,43 @@ in lib.makeScope pkgs.newScope (self: { }); common-lisp-jupyter = (build-asdf-system { pname = "common-lisp-jupyter"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "common-lisp-jupyter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/common-lisp-jupyter/2023-10-21/common-lisp-jupyter-20231021-git.tgz"; - sha256 = "0fj3yallizxld8zsxvva4l5mbp1i4rm73r4balp3r8c6lkrapsrm"; + url = "http://beta.quicklisp.org/archive/common-lisp-jupyter/2024-10-12/common-lisp-jupyter-20241012-git.tgz"; + sha256 = "1qbrzv0myxfxq7rzm2y9cm2xymkl982982h2kbsl7d1yd5hrjvl6"; system = "common-lisp-jupyter"; asd = "common-lisp-jupyter"; }); systems = [ "common-lisp-jupyter" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "bordeaux-threads" self) (getAttr "cl-base64" self) (getAttr "cl-indentify" self) (getAttr "closer-mop" self) (getAttr "dissect" self) (getAttr "eclector" self) (getAttr "ironclad" self) (getAttr "jupyter-lab-extension" self) (getAttr "multilang-documentation" self) (getAttr "puri" self) (getAttr "pzmq" self) (getAttr "shasht" self) (getAttr "static-vectors" self) (getAttr "trivial-do" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) (getAttr "trivial-gray-streams" self) (getAttr "trivial-mimes" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "bordeaux-threads" self) (getAttr "cl-base64" self) (getAttr "cl-indentify" self) (getAttr "closer-mop" self) (getAttr "dissect" self) (getAttr "eclector" self) (getAttr "ironclad" self) (getAttr "jupyter-lab-extension" self) (getAttr "multilang-documentation" self) (getAttr "nontrivial-gray-streams" self) (getAttr "puri" self) (getAttr "pzmq" self) (getAttr "shasht" self) (getAttr "static-vectors" self) (getAttr "trivial-do" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) (getAttr "trivial-mimes" self) ]; meta = { hydraPlatforms = [ ]; }; }); commondoc-markdown = (build-asdf-system { pname = "commondoc-markdown"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "commondoc-markdown" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/commondoc-markdown/2023-06-18/commondoc-markdown-20230618-git.tgz"; - sha256 = "070kg2gm9ynx5kvd70y1fiz57pw1qbd9v22b0v3p882sfihlm5x7"; + url = "http://beta.quicklisp.org/archive/commondoc-markdown/2024-10-12/commondoc-markdown-20241012-git.tgz"; + sha256 = "12n8yx8jhz8713r63gmrymplm1mfczm7q7a343d13wl6gng1gjs1"; system = "commondoc-markdown"; asd = "commondoc-markdown"; }); systems = [ "commondoc-markdown" ]; - lispLibs = [ (getAttr "_3bmd" self) (getAttr "_3bmd-ext-code-blocks" self) (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "common-doc" self) (getAttr "common-html" self) (getAttr "esrap" self) (getAttr "ironclad" self) (getAttr "quri" self) (getAttr "str" self) ]; + lispLibs = [ (getAttr "_3bmd" self) (getAttr "_3bmd-ext-code-blocks" self) (getAttr "_3bmd-ext-tables" self) (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "common-doc" self) (getAttr "common-html" self) (getAttr "esrap" self) (getAttr "ironclad" self) (getAttr "plump" self) (getAttr "quri" self) (getAttr "str" self) ]; meta = { hydraPlatforms = [ ]; }; }); commondoc-markdown-docs = (build-asdf-system { pname = "commondoc-markdown-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "commondoc-markdown-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/commondoc-markdown/2023-06-18/commondoc-markdown-20230618-git.tgz"; - sha256 = "070kg2gm9ynx5kvd70y1fiz57pw1qbd9v22b0v3p882sfihlm5x7"; + url = "http://beta.quicklisp.org/archive/commondoc-markdown/2024-10-12/commondoc-markdown-20241012-git.tgz"; + sha256 = "12n8yx8jhz8713r63gmrymplm1mfczm7q7a343d13wl6gng1gjs1"; system = "commondoc-markdown-docs"; asd = "commondoc-markdown-docs"; }); @@ -30193,11 +30801,11 @@ in lib.makeScope pkgs.newScope (self: { }); commondoc-markdown-test = (build-asdf-system { pname = "commondoc-markdown-test"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "commondoc-markdown-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/commondoc-markdown/2023-06-18/commondoc-markdown-20230618-git.tgz"; - sha256 = "070kg2gm9ynx5kvd70y1fiz57pw1qbd9v22b0v3p882sfihlm5x7"; + url = "http://beta.quicklisp.org/archive/commondoc-markdown/2024-10-12/commondoc-markdown-20241012-git.tgz"; + sha256 = "12n8yx8jhz8713r63gmrymplm1mfczm7q7a343d13wl6gng1gjs1"; system = "commondoc-markdown-test"; asd = "commondoc-markdown-test"; }); @@ -30273,11 +30881,11 @@ in lib.makeScope pkgs.newScope (self: { }); compiler-macro-notes = (build-asdf-system { pname = "compiler-macro-notes"; - version = "v0.2.1"; + version = "v0.3.1"; asds = [ "compiler-macro-notes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/compiler-macro-notes/2022-11-06/compiler-macro-notes-v0.2.1.tgz"; - sha256 = "13zzygv0j0a6xacwir4yllpan8j9zh68n9kgkpppg1br8x8s78pk"; + url = "http://beta.quicklisp.org/archive/compiler-macro-notes/2024-10-12/compiler-macro-notes-v0.3.1.tgz"; + sha256 = "0pchhvk14fx54p7qq92dnf0g4jnapqr6p2a4za6bhzd8im1d9gad"; system = "compiler-macro-notes"; asd = "compiler-macro-notes"; }); @@ -30401,11 +31009,11 @@ in lib.makeScope pkgs.newScope (self: { }); conditional-commands = (build-asdf-system { pname = "conditional-commands"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "conditional-commands" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "conditional-commands"; asd = "conditional-commands"; }); @@ -30561,11 +31169,11 @@ in lib.makeScope pkgs.newScope (self: { }); consfigurator = (build-asdf-system { pname = "consfigurator"; - version = "v1.3.1"; + version = "v1.4.4"; asds = [ "consfigurator" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/consfigurator/2023-06-18/consfigurator-v1.3.1.tgz"; - sha256 = "0qx07b8cfsn32p214g631lh7p6xbqk7hi6f8jmb5aj7m3hxpwxxr"; + url = "http://beta.quicklisp.org/archive/consfigurator/2024-10-12/consfigurator-v1.4.4.tgz"; + sha256 = "1f4q5w58phj5a6i2fj712ggz2p8b5m4v77qzsvbb3xmy2vhppvv0"; system = "consfigurator"; asd = "consfigurator"; }); @@ -30641,11 +31249,11 @@ in lib.makeScope pkgs.newScope (self: { }); contextl = (build-asdf-system { pname = "contextl"; - version = "20211230-git"; + version = "20241012-git"; asds = [ "contextl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/contextl/2021-12-30/contextl-20211230-git.tgz"; - sha256 = "0apgznz4g6lpmd86lq7w0xddfjgnirk83ig7p0j6i93xadhy9wh0"; + url = "http://beta.quicklisp.org/archive/contextl/2024-10-12/contextl-20241012-git.tgz"; + sha256 = "1jsa5wyjzzfw9pii3d6x20mh8ijnpb291g3i0y2ccj0x8z3xfyyk"; system = "contextl"; asd = "contextl"; }); @@ -30671,22 +31279,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - convolution-kernel = (build-asdf-system { - pname = "convolution-kernel"; - version = "20220707-git"; - asds = [ "convolution-kernel" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/convolution-kernel/2022-07-07/convolution-kernel-20220707-git.tgz"; - sha256 = "0r2mgwl75fxcc019mxg3s32mkx6fhi8fcy5rzz1jba1wrcw380z3"; - system = "convolution-kernel"; - asd = "convolution-kernel"; - }); - systems = [ "convolution-kernel" ]; - lispLibs = [ (getAttr "mfiano-utils" self) (getAttr "tile-grid" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); copy-directory = (build-asdf-system { pname = "copy-directory"; version = "20160628-git"; @@ -30865,11 +31457,11 @@ in lib.makeScope pkgs.newScope (self: { }); croatoan = (build-asdf-system { pname = "croatoan"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "croatoan" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/croatoan/2023-10-21/croatoan-20231021-git.tgz"; - sha256 = "0x2rlckyn8kn5mqy0fib8piggz694g3naarz2dvha1hsy4jhb1wg"; + url = "http://beta.quicklisp.org/archive/croatoan/2024-10-12/croatoan-20241012-git.tgz"; + sha256 = "04776x4i8inxs8n4mgy9xf0q39bzv4mfz4cl880sxwk6mnhwnn4c"; system = "croatoan"; asd = "croatoan"; }); @@ -30881,11 +31473,11 @@ in lib.makeScope pkgs.newScope (self: { }); croatoan-ncurses = (build-asdf-system { pname = "croatoan-ncurses"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "croatoan-ncurses" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/croatoan/2023-10-21/croatoan-20231021-git.tgz"; - sha256 = "0x2rlckyn8kn5mqy0fib8piggz694g3naarz2dvha1hsy4jhb1wg"; + url = "http://beta.quicklisp.org/archive/croatoan/2024-10-12/croatoan-20241012-git.tgz"; + sha256 = "04776x4i8inxs8n4mgy9xf0q39bzv4mfz4cl880sxwk6mnhwnn4c"; system = "croatoan-ncurses"; asd = "croatoan-ncurses"; }); @@ -30897,11 +31489,11 @@ in lib.makeScope pkgs.newScope (self: { }); croatoan-test = (build-asdf-system { pname = "croatoan-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "croatoan-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/croatoan/2023-10-21/croatoan-20231021-git.tgz"; - sha256 = "0x2rlckyn8kn5mqy0fib8piggz694g3naarz2dvha1hsy4jhb1wg"; + url = "http://beta.quicklisp.org/archive/croatoan/2024-10-12/croatoan-20241012-git.tgz"; + sha256 = "04776x4i8inxs8n4mgy9xf0q39bzv4mfz4cl880sxwk6mnhwnn4c"; system = "croatoan-test"; asd = "croatoan-test"; }); @@ -31113,11 +31705,11 @@ in lib.makeScope pkgs.newScope (self: { }); ctype = (build-asdf-system { pname = "ctype"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ctype" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ctype/2023-10-21/ctype-20231021-git.tgz"; - sha256 = "0ih816l96bxx0w4jm2z4694p1dvpb52yrw6sar63b8bjkiyq79kd"; + url = "http://beta.quicklisp.org/archive/ctype/2024-10-12/ctype-20241012-git.tgz"; + sha256 = "0qnssrjssb7258i3a1s1bv3z6plx4pzrkg65i8an25bvwrjwpvqv"; system = "ctype"; asd = "ctype"; }); @@ -31333,11 +31925,11 @@ in lib.makeScope pkgs.newScope (self: { }); cxx-jit = (build-asdf-system { pname = "cxx-jit"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "cxx-jit" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-cxx-jit/2022-03-31/cl-cxx-jit-20220331-git.tgz"; - sha256 = "0mbi5r4b4jbk50yy4pv7ngsjj50579f9c362dzh0sbrxk8vd3gkp"; + url = "http://beta.quicklisp.org/archive/cl-cxx-jit/2024-10-12/cl-cxx-jit-20241012-git.tgz"; + sha256 = "1xnhkhynikqs61s488jjzklbvwb46yxqx3zi98ifszj4r8ndi3ym"; system = "cxx-jit"; asd = "cxx-jit"; }); @@ -31347,6 +31939,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + cxx-jit-test = (build-asdf-system { + pname = "cxx-jit-test"; + version = "20241012-git"; + asds = [ "cxx-jit-test" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-cxx-jit/2024-10-12/cl-cxx-jit-20241012-git.tgz"; + sha256 = "1xnhkhynikqs61s488jjzklbvwb46yxqx3zi98ifszj4r8ndi3ym"; + system = "cxx-jit-test"; + asd = "cxx-jit-test"; + }); + systems = [ "cxx-jit-test" ]; + lispLibs = [ (getAttr "cxx-jit" self) (getAttr "rove" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); cxx-test = (build-asdf-system { pname = "cxx-test"; version = "20230214-git"; @@ -31365,11 +31973,11 @@ in lib.makeScope pkgs.newScope (self: { }); cytoscape-clj = (build-asdf-system { pname = "cytoscape-clj"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "cytoscape-clj" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cytoscape-clj/2023-10-21/cytoscape-clj-20231021-git.tgz"; - sha256 = "0xfn8lsfh5qgdriqvb6w57hygjm0p61bky725a9n7fgcny7v8d3x"; + url = "http://beta.quicklisp.org/archive/cytoscape-clj/2024-10-12/cytoscape-clj-20241012-git.tgz"; + sha256 = "0kyjgffm8nlvz75dbyz4fp1v8sr7j2bd7axxyn226s30gwzhihck"; system = "cytoscape-clj"; asd = "cytoscape-clj"; }); @@ -31397,11 +32005,11 @@ in lib.makeScope pkgs.newScope (self: { }); damn-fast-priority-queue = (build-asdf-system { pname = "damn-fast-priority-queue"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "damn-fast-priority-queue" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/damn-fast-priority-queue/2022-11-06/damn-fast-priority-queue-20221106-git.tgz"; - sha256 = "14917b1z7ag3a7f88p4fk4649iy07kn9vpq6bszdxcp1irnc5a13"; + url = "http://beta.quicklisp.org/archive/damn-fast-priority-queue/2024-10-12/damn-fast-priority-queue-20241012-git.tgz"; + sha256 = "1mbigpgi7qbqvpj59l1f7p2qcg00ybvqzdca1j1b9hx62h224ndw"; system = "damn-fast-priority-queue"; asd = "damn-fast-priority-queue"; }); @@ -31413,11 +32021,11 @@ in lib.makeScope pkgs.newScope (self: { }); damn-fast-stable-priority-queue = (build-asdf-system { pname = "damn-fast-stable-priority-queue"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "damn-fast-stable-priority-queue" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/damn-fast-priority-queue/2022-11-06/damn-fast-priority-queue-20221106-git.tgz"; - sha256 = "14917b1z7ag3a7f88p4fk4649iy07kn9vpq6bszdxcp1irnc5a13"; + url = "http://beta.quicklisp.org/archive/damn-fast-priority-queue/2024-10-12/damn-fast-priority-queue-20241012-git.tgz"; + sha256 = "1mbigpgi7qbqvpj59l1f7p2qcg00ybvqzdca1j1b9hx62h224ndw"; system = "damn-fast-stable-priority-queue"; asd = "damn-fast-stable-priority-queue"; }); @@ -31573,11 +32181,11 @@ in lib.makeScope pkgs.newScope (self: { }); darts_dot_lib_dot_uuid = (build-asdf-system { pname = "darts.lib.uuid"; - version = "20210807-git"; + version = "20241012-git"; asds = [ "darts.lib.uuid" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dartscluuid/2021-08-07/dartscluuid-20210807-git.tgz"; - sha256 = "068lsbjnx4bkhz7s2022jsh8zsvqak98s8hcy1rs10bgi36hrrkh"; + url = "http://beta.quicklisp.org/archive/dartscluuid/2024-10-12/dartscluuid-20241012-git.tgz"; + sha256 = "17i2icz6k6vb5mp95rsjr8ldzhjjlcn7dyylvxjrccbxbrblnnsl"; system = "darts.lib.uuid"; asd = "darts.lib.uuid"; }); @@ -31589,11 +32197,11 @@ in lib.makeScope pkgs.newScope (self: { }); darts_dot_lib_dot_uuid-test = (build-asdf-system { pname = "darts.lib.uuid-test"; - version = "20210807-git"; + version = "20241012-git"; asds = [ "darts.lib.uuid-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dartscluuid/2021-08-07/dartscluuid-20210807-git.tgz"; - sha256 = "068lsbjnx4bkhz7s2022jsh8zsvqak98s8hcy1rs10bgi36hrrkh"; + url = "http://beta.quicklisp.org/archive/dartscluuid/2024-10-12/dartscluuid-20241012-git.tgz"; + sha256 = "17i2icz6k6vb5mp95rsjr8ldzhjjlcn7dyylvxjrccbxbrblnnsl"; system = "darts.lib.uuid-test"; asd = "darts.lib.uuid-test"; }); @@ -31637,11 +32245,11 @@ in lib.makeScope pkgs.newScope (self: { }); data-frame = (build-asdf-system { pname = "data-frame"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "data-frame" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/data-frame/2023-10-21/data-frame-20231021-git.tgz"; - sha256 = "12ij1sgg2yxygdxfbm6ijnagkaxijcbrw5jshi8i6pix997pb619"; + url = "http://beta.quicklisp.org/archive/data-frame/2024-10-12/data-frame-20241012-git.tgz"; + sha256 = "1sqyvb6hscz070d5ap5v5yvql4nx69c7jkp29za5dj84rsvbckcp"; system = "data-frame"; asd = "data-frame"; }); @@ -31653,11 +32261,11 @@ in lib.makeScope pkgs.newScope (self: { }); data-lens = (build-asdf-system { pname = "data-lens"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "data-lens" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/data-lens/2023-10-21/data-lens-20231021-git.tgz"; - sha256 = "00rm86rn27bcg544w3qip0890jrbixcvxnmgw7b2gbrvci8f6al8"; + url = "http://beta.quicklisp.org/archive/data-lens/2024-10-12/data-lens-20241012-git.tgz"; + sha256 = "1bark9r3br5ndcbkiagq891gn82xdiy8hrgzp72656yyadsrid5i"; system = "data-lens"; asd = "data-lens"; }); @@ -31667,6 +32275,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + data-lens_plus_fset = (build-asdf-system { + pname = "data-lens+fset"; + version = "20241012-git"; + asds = [ "data-lens+fset" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/data-lens/2024-10-12/data-lens-20241012-git.tgz"; + sha256 = "1bark9r3br5ndcbkiagq891gn82xdiy8hrgzp72656yyadsrid5i"; + system = "data-lens+fset"; + asd = "data-lens+fset"; + }); + systems = [ "data-lens+fset" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "data-lens" self) (getAttr "fset" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); data-sift = (build-asdf-system { pname = "data-sift"; version = "20130128-git"; @@ -31763,11 +32387,11 @@ in lib.makeScope pkgs.newScope (self: { }); datafly = (build-asdf-system { pname = "datafly"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "datafly" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/datafly/2023-10-21/datafly-20231021-git.tgz"; - sha256 = "0hz1cg4gas4888841msnjnx0bnirvcmx4sdayjysvqazzf65giy8"; + url = "http://beta.quicklisp.org/archive/datafly/2024-10-12/datafly-20241012-git.tgz"; + sha256 = "103zp5s778lys4lsn7hvyis65757338n0l9gzl595qfim4apx8g0"; system = "datafly"; asd = "datafly"; }); @@ -31779,11 +32403,11 @@ in lib.makeScope pkgs.newScope (self: { }); datafly-test = (build-asdf-system { pname = "datafly-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "datafly-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/datafly/2023-10-21/datafly-20231021-git.tgz"; - sha256 = "0hz1cg4gas4888841msnjnx0bnirvcmx4sdayjysvqazzf65giy8"; + url = "http://beta.quicklisp.org/archive/datafly/2024-10-12/datafly-20241012-git.tgz"; + sha256 = "103zp5s778lys4lsn7hvyis65757338n0l9gzl595qfim4apx8g0"; system = "datafly-test"; asd = "datafly-test"; }); @@ -31891,11 +32515,11 @@ in lib.makeScope pkgs.newScope (self: { }); dbd-mysql = (build-asdf-system { pname = "dbd-mysql"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dbd-mysql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-dbi/2023-10-21/cl-dbi-20231021-git.tgz"; - sha256 = "1jjm2hh8vvbdblhsms6nrb5gll8ng7pqyv99zj6zk2f5h5a42a2l"; + url = "http://beta.quicklisp.org/archive/cl-dbi/2024-10-12/cl-dbi-20241012-git.tgz"; + sha256 = "17szd6sz1hlwl5fm4qjgyd8ax01wkbhv8hxcyy8qscx39sc0cnpy"; system = "dbd-mysql"; asd = "dbd-mysql"; }); @@ -31905,11 +32529,11 @@ in lib.makeScope pkgs.newScope (self: { }); dbd-postgres = (build-asdf-system { pname = "dbd-postgres"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dbd-postgres" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-dbi/2023-10-21/cl-dbi-20231021-git.tgz"; - sha256 = "1jjm2hh8vvbdblhsms6nrb5gll8ng7pqyv99zj6zk2f5h5a42a2l"; + url = "http://beta.quicklisp.org/archive/cl-dbi/2024-10-12/cl-dbi-20241012-git.tgz"; + sha256 = "17szd6sz1hlwl5fm4qjgyd8ax01wkbhv8hxcyy8qscx39sc0cnpy"; system = "dbd-postgres"; asd = "dbd-postgres"; }); @@ -31919,11 +32543,11 @@ in lib.makeScope pkgs.newScope (self: { }); dbd-sqlite3 = (build-asdf-system { pname = "dbd-sqlite3"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dbd-sqlite3" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-dbi/2023-10-21/cl-dbi-20231021-git.tgz"; - sha256 = "1jjm2hh8vvbdblhsms6nrb5gll8ng7pqyv99zj6zk2f5h5a42a2l"; + url = "http://beta.quicklisp.org/archive/cl-dbi/2024-10-12/cl-dbi-20241012-git.tgz"; + sha256 = "17szd6sz1hlwl5fm4qjgyd8ax01wkbhv8hxcyy8qscx39sc0cnpy"; system = "dbd-sqlite3"; asd = "dbd-sqlite3"; }); @@ -31933,25 +32557,25 @@ in lib.makeScope pkgs.newScope (self: { }); dbi = (build-asdf-system { pname = "dbi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dbi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-dbi/2023-10-21/cl-dbi-20231021-git.tgz"; - sha256 = "1jjm2hh8vvbdblhsms6nrb5gll8ng7pqyv99zj6zk2f5h5a42a2l"; + url = "http://beta.quicklisp.org/archive/cl-dbi/2024-10-12/cl-dbi-20241012-git.tgz"; + sha256 = "17szd6sz1hlwl5fm4qjgyd8ax01wkbhv8hxcyy8qscx39sc0cnpy"; system = "dbi"; asd = "dbi"; }); systems = [ "dbi" ]; - lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "closer-mop" self) (getAttr "split-sequence" self) ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cl-ppcre" self) (getAttr "closer-mop" self) (getAttr "split-sequence" self) ]; meta = {}; }); dbi-test = (build-asdf-system { pname = "dbi-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dbi-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-dbi/2023-10-21/cl-dbi-20231021-git.tgz"; - sha256 = "1jjm2hh8vvbdblhsms6nrb5gll8ng7pqyv99zj6zk2f5h5a42a2l"; + url = "http://beta.quicklisp.org/archive/cl-dbi/2024-10-12/cl-dbi-20241012-git.tgz"; + sha256 = "17szd6sz1hlwl5fm4qjgyd8ax01wkbhv8hxcyy8qscx39sc0cnpy"; system = "dbi-test"; asd = "dbi-test"; }); @@ -31961,16 +32585,16 @@ in lib.makeScope pkgs.newScope (self: { }); dbus = (build-asdf-system { pname = "dbus"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "dbus" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dbus/2021-10-20/dbus-20211020-git.tgz"; - sha256 = "1gw5414q7r6yi2bm1wk2fhqnvhxzc5c6812z3qh67c9dyizcjy2a"; + url = "http://beta.quicklisp.org/archive/dbus/2024-10-12/dbus-20241012-git.tgz"; + sha256 = "1y880074m9g0swxrzpbplmkdxc6r62gzyigglf4x2i0zyss3gf65"; system = "dbus"; asd = "dbus"; }); systems = [ "dbus" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "asdf-package-system" self) (getAttr "babel" self) (getAttr "cl-xmlspam" self) (getAttr "flexi-streams" self) (getAttr "ieee-floats" self) (getAttr "iolib" self) (getAttr "ironclad" self) (getAttr "split-sequence" self) (getAttr "trivial-garbage" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "asdf-package-system" self) (getAttr "babel" self) (getAttr "cl-xmlspam" self) (getAttr "cxml" self) (getAttr "flexi-streams" self) (getAttr "ieee-floats" self) (getAttr "iolib" self) (getAttr "ironclad" self) (getAttr "split-sequence" self) (getAttr "trivial-garbage" self) ]; meta = {}; }); dct = (build-asdf-system { @@ -32149,11 +32773,11 @@ in lib.makeScope pkgs.newScope (self: { }); defenum = (build-asdf-system { pname = "defenum"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "defenum" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/defenum/2023-02-14/defenum-20230214-git.tgz"; - sha256 = "1nrgqq2cbmg2zgx8wmhrqcrbfkq71hsabsnjpnyb2a6ismz6d5vg"; + url = "http://beta.quicklisp.org/archive/defenum/2024-10-12/defenum-20241012-git.tgz"; + sha256 = "1856w0vsjj9fcyqrry5k4b2iv87xms5wlw8xbqawjax6w5hdsrhk"; system = "defenum"; asd = "defenum"; }); @@ -32197,11 +32821,11 @@ in lib.makeScope pkgs.newScope (self: { }); definer = (build-asdf-system { pname = "definer"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "definer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/definer/2023-02-14/definer-20230214-git.tgz"; - sha256 = "0wgzmmdnlw74cc4nz4hvx8r3759f114bf3n8zxzbw0181llpy5ff"; + url = "http://beta.quicklisp.org/archive/definer/2024-10-12/definer-20241012-git.tgz"; + sha256 = "0vd7gcj55pdzgxq2309pxshplg3rjx95xikkc2ylqrcm9nf3d2zb"; system = "definer"; asd = "definer"; }); @@ -32213,11 +32837,11 @@ in lib.makeScope pkgs.newScope (self: { }); definitions = (build-asdf-system { pname = "definitions"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "definitions" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/definitions/2023-10-21/definitions-20231021-git.tgz"; - sha256 = "1gs6w7m26574lan7xqajvnivp2cq5n9iqr76zmbgwqk6pn02kyki"; + url = "http://beta.quicklisp.org/archive/definitions/2024-10-12/definitions-20241012-git.tgz"; + sha256 = "16wg9rzxc193qvhzay69czr19wzy16b53vm1gy6p25gqvz90zryd"; system = "definitions"; asd = "definitions"; }); @@ -32261,11 +32885,11 @@ in lib.makeScope pkgs.newScope (self: { }); deflate = (build-asdf-system { pname = "deflate"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "deflate" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/deflate/2023-06-18/deflate-20230618-git.tgz"; - sha256 = "1zarfhbkq1v6cwccvk1znga134glnnk7dx58l0fwpr437bd3gdvi"; + url = "http://beta.quicklisp.org/archive/deflate/2024-10-12/deflate-20241012-git.tgz"; + sha256 = "1b225rgc3b2b2k941aj8mz4fkyysi0my368r042wzykq28lwwwij"; system = "deflate"; asd = "deflate"; }); @@ -32293,11 +32917,11 @@ in lib.makeScope pkgs.newScope (self: { }); defmain = (build-asdf-system { pname = "defmain"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "defmain" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/defmain/2022-11-06/defmain-20221106-git.tgz"; - sha256 = "08mmb0rgbipmjhmpvr1889n1665309pwsa16qsrsbmgnmmaznw6a"; + url = "http://beta.quicklisp.org/archive/defmain/2024-10-12/defmain-20241012-git.tgz"; + sha256 = "0lb45xmpan188vcysc7d579gg1mc7qi3xyyqc6mqr49571zshzb1"; system = "defmain"; asd = "defmain"; }); @@ -32309,11 +32933,11 @@ in lib.makeScope pkgs.newScope (self: { }); defmain-test = (build-asdf-system { pname = "defmain-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "defmain-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/defmain/2022-11-06/defmain-20221106-git.tgz"; - sha256 = "08mmb0rgbipmjhmpvr1889n1665309pwsa16qsrsbmgnmmaznw6a"; + url = "http://beta.quicklisp.org/archive/defmain/2024-10-12/defmain-20241012-git.tgz"; + sha256 = "0lb45xmpan188vcysc7d579gg1mc7qi3xyyqc6mqr49571zshzb1"; system = "defmain-test"; asd = "defmain-test"; }); @@ -32579,70 +33203,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - dense-arrays = (build-asdf-system { - pname = "dense-arrays"; - version = "20230618-git"; - asds = [ "dense-arrays" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/dense-arrays/2023-06-18/dense-arrays-20230618-git.tgz"; - sha256 = "039w29ms0klvvjp88280gl8x436khrqcvp7z13gnc4ilm74dpws5"; - system = "dense-arrays"; - asd = "dense-arrays"; - }); - systems = [ "dense-arrays" ]; - lispLibs = [ (getAttr "abstract-arrays" self) (getAttr "alexandria" self) (getAttr "asdf-system-connections" self) (getAttr "cl-form-types" self) (getAttr "closer-mop" self) (getAttr "compiler-macro-notes" self) (getAttr "extensible-compound-types" self) (getAttr "fiveam" self) (getAttr "iterate" self) (getAttr "polymorphic-functions" self) (getAttr "trivial-garbage" self) (getAttr "trivial-types" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - dense-arrays_plus_cuda = (build-asdf-system { - pname = "dense-arrays+cuda"; - version = "20230618-git"; - asds = [ "dense-arrays+cuda" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/dense-arrays/2023-06-18/dense-arrays-20230618-git.tgz"; - sha256 = "039w29ms0klvvjp88280gl8x436khrqcvp7z13gnc4ilm74dpws5"; - system = "dense-arrays+cuda"; - asd = "dense-arrays+cuda"; - }); - systems = [ "dense-arrays+cuda" ]; - lispLibs = [ (getAttr "cl-cuda" self) (getAttr "dense-arrays" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - dense-arrays-plus = (build-asdf-system { - pname = "dense-arrays-plus"; - version = "20230618-git"; - asds = [ "dense-arrays-plus" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/dense-arrays/2023-06-18/dense-arrays-20230618-git.tgz"; - sha256 = "039w29ms0klvvjp88280gl8x436khrqcvp7z13gnc4ilm74dpws5"; - system = "dense-arrays-plus"; - asd = "dense-arrays-plus"; - }); - systems = [ "dense-arrays-plus" ]; - lispLibs = [ (getAttr "dense-arrays-plus-lite" self) (getAttr "fiveam" self) (getAttr "generic-cl" self) (getAttr "py4cl2" self) (getAttr "reader" self) (getAttr "static-vectors" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - dense-arrays-plus-lite = (build-asdf-system { - pname = "dense-arrays-plus-lite"; - version = "20230618-git"; - asds = [ "dense-arrays-plus-lite" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/dense-arrays/2023-06-18/dense-arrays-20230618-git.tgz"; - sha256 = "039w29ms0klvvjp88280gl8x436khrqcvp7z13gnc4ilm74dpws5"; - system = "dense-arrays-plus-lite"; - asd = "dense-arrays-plus-lite"; - }); - systems = [ "dense-arrays-plus-lite" ]; - lispLibs = [ (getAttr "dense-arrays" self) (getAttr "extensible-compound-types-interfaces" self) (getAttr "extensible-optimizing-coerce" self) (getAttr "trivial-package-local-nicknames" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); deoxybyte-gzip = (build-asdf-system { pname = "deoxybyte-gzip"; version = "20140113-git"; @@ -32789,27 +33349,27 @@ in lib.makeScope pkgs.newScope (self: { }); deploy = (build-asdf-system { pname = "deploy"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "deploy" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/deploy/2023-10-21/deploy-20231021-git.tgz"; - sha256 = "1jxp75gyqdbladlid0p11d7v39bdc9j2bv5hi0nks4hyjmnw60hp"; + url = "http://beta.quicklisp.org/archive/deploy/2024-10-12/deploy-20241012-git.tgz"; + sha256 = "1ysi8fjgb7kq3cycb6ms44j0m70xbd140fh4qgcpj7fm26p2a59p"; system = "deploy"; asd = "deploy"; }); systems = [ "deploy" ]; - lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "trivial-features" self) ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "sha3" self) (getAttr "trivial-features" self) ]; meta = { hydraPlatforms = [ ]; }; }); deploy-test = (build-asdf-system { pname = "deploy-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "deploy-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/deploy/2023-10-21/deploy-20231021-git.tgz"; - sha256 = "1jxp75gyqdbladlid0p11d7v39bdc9j2bv5hi0nks4hyjmnw60hp"; + url = "http://beta.quicklisp.org/archive/deploy/2024-10-12/deploy-20241012-git.tgz"; + sha256 = "1ysi8fjgb7kq3cycb6ms44j0m70xbd140fh4qgcpj7fm26p2a59p"; system = "deploy-test"; asd = "deploy-test"; }); @@ -32821,11 +33381,11 @@ in lib.makeScope pkgs.newScope (self: { }); depot = (build-asdf-system { pname = "depot"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "depot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/depot/2023-10-21/depot-20231021-git.tgz"; - sha256 = "0ri70fbjbzg08qnx6jcpq26nclj0mmvlw4an37rs15bcp1vnayci"; + url = "http://beta.quicklisp.org/archive/depot/2024-10-12/depot-20241012-git.tgz"; + sha256 = "1k9p4jqylh7i53sngi0yn2hww6y6lxqc7c0hd3j3p8jc4q3h4zn4"; system = "depot"; asd = "depot"; }); @@ -32837,11 +33397,11 @@ in lib.makeScope pkgs.newScope (self: { }); depot-in-memory = (build-asdf-system { pname = "depot-in-memory"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "depot-in-memory" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/depot/2023-10-21/depot-20231021-git.tgz"; - sha256 = "0ri70fbjbzg08qnx6jcpq26nclj0mmvlw4an37rs15bcp1vnayci"; + url = "http://beta.quicklisp.org/archive/depot/2024-10-12/depot-20241012-git.tgz"; + sha256 = "1k9p4jqylh7i53sngi0yn2hww6y6lxqc7c0hd3j3p8jc4q3h4zn4"; system = "depot-in-memory"; asd = "depot-in-memory"; }); @@ -32853,11 +33413,11 @@ in lib.makeScope pkgs.newScope (self: { }); depot-test = (build-asdf-system { pname = "depot-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "depot-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/depot/2023-10-21/depot-20231021-git.tgz"; - sha256 = "0ri70fbjbzg08qnx6jcpq26nclj0mmvlw4an37rs15bcp1vnayci"; + url = "http://beta.quicklisp.org/archive/depot/2024-10-12/depot-20241012-git.tgz"; + sha256 = "1k9p4jqylh7i53sngi0yn2hww6y6lxqc7c0hd3j3p8jc4q3h4zn4"; system = "depot-test"; asd = "depot-test"; }); @@ -32869,11 +33429,11 @@ in lib.makeScope pkgs.newScope (self: { }); depot-virtual = (build-asdf-system { pname = "depot-virtual"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "depot-virtual" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/depot/2023-10-21/depot-20231021-git.tgz"; - sha256 = "0ri70fbjbzg08qnx6jcpq26nclj0mmvlw4an37rs15bcp1vnayci"; + url = "http://beta.quicklisp.org/archive/depot/2024-10-12/depot-20241012-git.tgz"; + sha256 = "1k9p4jqylh7i53sngi0yn2hww6y6lxqc7c0hd3j3p8jc4q3h4zn4"; system = "depot-virtual"; asd = "depot-virtual"; }); @@ -32885,11 +33445,11 @@ in lib.makeScope pkgs.newScope (self: { }); depot-zip = (build-asdf-system { pname = "depot-zip"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "depot-zip" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/depot/2023-10-21/depot-20231021-git.tgz"; - sha256 = "0ri70fbjbzg08qnx6jcpq26nclj0mmvlw4an37rs15bcp1vnayci"; + url = "http://beta.quicklisp.org/archive/depot/2024-10-12/depot-20241012-git.tgz"; + sha256 = "1k9p4jqylh7i53sngi0yn2hww6y6lxqc7c0hd3j3p8jc4q3h4zn4"; system = "depot-zip"; asd = "depot-zip"; }); @@ -32901,11 +33461,11 @@ in lib.makeScope pkgs.newScope (self: { }); deptree = (build-asdf-system { pname = "deptree"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "deptree" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/deptree/2023-10-21/deptree-20231021-git.tgz"; - sha256 = "0nfybk203fbaksl3bgrgpqr2l6rl0k80xv9dm2f7712r335hxcwg"; + url = "http://beta.quicklisp.org/archive/deptree/2024-10-12/deptree-20241012-git.tgz"; + sha256 = "10ybmw28c52ahbm7xjn795367lssp6088v6705fmqbl0fgjpvxnw"; system = "deptree"; asd = "deptree"; }); @@ -32997,11 +33557,11 @@ in lib.makeScope pkgs.newScope (self: { }); dexador = (build-asdf-system { pname = "dexador"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dexador" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dexador/2023-10-21/dexador-20231021-git.tgz"; - sha256 = "1505ns3ac9dpp02kf1rm089kdg634g0rv2j4877cjwasc03mksip"; + url = "http://beta.quicklisp.org/archive/dexador/2024-10-12/dexador-20241012-git.tgz"; + sha256 = "19y95k821665vcy7gbxhh4rqwk7fh4brv1sgkaykncpw2l2lll5r"; system = "dexador"; asd = "dexador"; }); @@ -33011,11 +33571,11 @@ in lib.makeScope pkgs.newScope (self: { }); dexador-test = (build-asdf-system { pname = "dexador-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dexador-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dexador/2023-10-21/dexador-20231021-git.tgz"; - sha256 = "1505ns3ac9dpp02kf1rm089kdg634g0rv2j4877cjwasc03mksip"; + url = "http://beta.quicklisp.org/archive/dexador/2024-10-12/dexador-20241012-git.tgz"; + sha256 = "19y95k821665vcy7gbxhh4rqwk7fh4brv1sgkaykncpw2l2lll5r"; system = "dexador-test"; asd = "dexador-test"; }); @@ -33025,6 +33585,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + dexador-usocket = (build-asdf-system { + pname = "dexador-usocket"; + version = "20241012-git"; + asds = [ "dexador-usocket" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/dexador/2024-10-12/dexador-20241012-git.tgz"; + sha256 = "19y95k821665vcy7gbxhh4rqwk7fh4brv1sgkaykncpw2l2lll5r"; + system = "dexador-usocket"; + asd = "dexador-usocket"; + }); + systems = [ "dexador-usocket" ]; + lispLibs = [ (getAttr "cl_plus_ssl" self) (getAttr "dexador" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); dfio = (build-asdf-system { pname = "dfio"; version = "20221106-git"; @@ -33139,11 +33715,11 @@ in lib.makeScope pkgs.newScope (self: { }); dissect = (build-asdf-system { pname = "dissect"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dissect" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dissect/2023-10-21/dissect-20231021-git.tgz"; - sha256 = "0nqmk35r03gggijm8fd0lbk4ghfvqvq5yqkn09dh1j31lmnyws4i"; + url = "http://beta.quicklisp.org/archive/dissect/2024-10-12/dissect-20241012-git.tgz"; + sha256 = "1ym1zggwrj15l7y2mcz5l2gfk68prqxhdswffd9s5014pa6zyysr"; system = "dissect"; asd = "dissect"; }); @@ -33169,11 +33745,11 @@ in lib.makeScope pkgs.newScope (self: { }); djula = (build-asdf-system { pname = "djula"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "djula" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/djula/2023-10-21/djula-20231021-git.tgz"; - sha256 = "0rk6348sz8mf2jfnk4rm6ai479r1bmmcnc2lx8jjjlji0b5sis3b"; + url = "http://beta.quicklisp.org/archive/djula/2024-10-12/djula-20241012-git.tgz"; + sha256 = "1m4k0ywkpvbpljd8r9vfmsw2zkphwcfwgbdp911zkiv5rcnmgykw"; system = "djula"; asd = "djula"; }); @@ -33183,11 +33759,11 @@ in lib.makeScope pkgs.newScope (self: { }); djula-demo = (build-asdf-system { pname = "djula-demo"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "djula-demo" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/djula/2023-10-21/djula-20231021-git.tgz"; - sha256 = "0rk6348sz8mf2jfnk4rm6ai479r1bmmcnc2lx8jjjlji0b5sis3b"; + url = "http://beta.quicklisp.org/archive/djula/2024-10-12/djula-20241012-git.tgz"; + sha256 = "1m4k0ywkpvbpljd8r9vfmsw2zkphwcfwgbdp911zkiv5rcnmgykw"; system = "djula-demo"; asd = "djula-demo"; }); @@ -33199,11 +33775,11 @@ in lib.makeScope pkgs.newScope (self: { }); djula-gettext = (build-asdf-system { pname = "djula-gettext"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "djula-gettext" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/djula/2023-10-21/djula-20231021-git.tgz"; - sha256 = "0rk6348sz8mf2jfnk4rm6ai479r1bmmcnc2lx8jjjlji0b5sis3b"; + url = "http://beta.quicklisp.org/archive/djula/2024-10-12/djula-20241012-git.tgz"; + sha256 = "1m4k0ywkpvbpljd8r9vfmsw2zkphwcfwgbdp911zkiv5rcnmgykw"; system = "djula-gettext"; asd = "djula-gettext"; }); @@ -33215,11 +33791,11 @@ in lib.makeScope pkgs.newScope (self: { }); djula-locale = (build-asdf-system { pname = "djula-locale"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "djula-locale" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/djula/2023-10-21/djula-20231021-git.tgz"; - sha256 = "0rk6348sz8mf2jfnk4rm6ai479r1bmmcnc2lx8jjjlji0b5sis3b"; + url = "http://beta.quicklisp.org/archive/djula/2024-10-12/djula-20241012-git.tgz"; + sha256 = "1m4k0ywkpvbpljd8r9vfmsw2zkphwcfwgbdp911zkiv5rcnmgykw"; system = "djula-locale"; asd = "djula-locale"; }); @@ -33231,11 +33807,11 @@ in lib.makeScope pkgs.newScope (self: { }); djula-test = (build-asdf-system { pname = "djula-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "djula-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/djula/2023-10-21/djula-20231021-git.tgz"; - sha256 = "0rk6348sz8mf2jfnk4rm6ai479r1bmmcnc2lx8jjjlji0b5sis3b"; + url = "http://beta.quicklisp.org/archive/djula/2024-10-12/djula-20241012-git.tgz"; + sha256 = "1m4k0ywkpvbpljd8r9vfmsw2zkphwcfwgbdp911zkiv5rcnmgykw"; system = "djula-test"; asd = "djula-test"; }); @@ -33247,11 +33823,11 @@ in lib.makeScope pkgs.newScope (self: { }); djula-translate = (build-asdf-system { pname = "djula-translate"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "djula-translate" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/djula/2023-10-21/djula-20231021-git.tgz"; - sha256 = "0rk6348sz8mf2jfnk4rm6ai479r1bmmcnc2lx8jjjlji0b5sis3b"; + url = "http://beta.quicklisp.org/archive/djula/2024-10-12/djula-20241012-git.tgz"; + sha256 = "1m4k0ywkpvbpljd8r9vfmsw2zkphwcfwgbdp911zkiv5rcnmgykw"; system = "djula-translate"; asd = "djula-translate"; }); @@ -33311,11 +33887,11 @@ in lib.makeScope pkgs.newScope (self: { }); dns-client = (build-asdf-system { pname = "dns-client"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dns-client" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dns-client/2023-10-21/dns-client-20231021-git.tgz"; - sha256 = "01kwm6v7yk7mx3i6vi7rr2iz1gvgnlsjd9piirc9ryzcifj9fy7v"; + url = "http://beta.quicklisp.org/archive/dns-client/2024-10-12/dns-client-20241012-git.tgz"; + sha256 = "1lbxryi0hx1i0ib3rz3ci89pfdyzikhv4dg0lk5piggrkdji2fx3"; system = "dns-client"; asd = "dns-client"; }); @@ -33405,11 +33981,11 @@ in lib.makeScope pkgs.newScope (self: { }); docs-builder = (build-asdf-system { pname = "docs-builder"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "docs-builder" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/docs-builder/2023-06-18/docs-builder-20230618-git.tgz"; - sha256 = "0lvyms70qxkj5rq3m9kacvpvliz1lxmhzlvr8dj29xwrlg44i5kv"; + url = "http://beta.quicklisp.org/archive/docs-builder/2024-10-12/docs-builder-20241012-git.tgz"; + sha256 = "09pg4frik728g7njrpkb8jmzw6q9f47ng4c123lmqlmjha9bs03c"; system = "docs-builder"; asd = "docs-builder"; }); @@ -33421,11 +33997,11 @@ in lib.makeScope pkgs.newScope (self: { }); docs-config = (build-asdf-system { pname = "docs-config"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "docs-config" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/docs-builder/2023-06-18/docs-builder-20230618-git.tgz"; - sha256 = "0lvyms70qxkj5rq3m9kacvpvliz1lxmhzlvr8dj29xwrlg44i5kv"; + url = "http://beta.quicklisp.org/archive/docs-builder/2024-10-12/docs-builder-20241012-git.tgz"; + sha256 = "09pg4frik728g7njrpkb8jmzw6q9f47ng4c123lmqlmjha9bs03c"; system = "docs-config"; asd = "docs-config"; }); @@ -33673,11 +34249,11 @@ in lib.makeScope pkgs.newScope (self: { }); dref = (build-asdf-system { pname = "dref"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dref" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mgl-pax/2023-10-21/mgl-pax-20231021-git.tgz"; - sha256 = "03if07sjx77x9sdva2sqh920lfj1gvkxbnsrnddk6q79kr2icjyg"; + url = "http://beta.quicklisp.org/archive/mgl-pax/2024-10-12/mgl-pax-20241012-git.tgz"; + sha256 = "17szk2ijccssa9n7zg8qh6hc706hahvzcrzlx716hmgq2hfwvvy0"; system = "dref"; asd = "dref"; }); @@ -33689,11 +34265,11 @@ in lib.makeScope pkgs.newScope (self: { }); dref-test = (build-asdf-system { pname = "dref-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "dref-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mgl-pax/2023-10-21/mgl-pax-20231021-git.tgz"; - sha256 = "03if07sjx77x9sdva2sqh920lfj1gvkxbnsrnddk6q79kr2icjyg"; + url = "http://beta.quicklisp.org/archive/mgl-pax/2024-10-12/mgl-pax-20241012-git.tgz"; + sha256 = "17szk2ijccssa9n7zg8qh6hc706hahvzcrzlx716hmgq2hfwvvy0"; system = "dref-test"; asd = "dref-test"; }); @@ -33705,11 +34281,11 @@ in lib.makeScope pkgs.newScope (self: { }); drei-mcclim = (build-asdf-system { pname = "drei-mcclim"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "drei-mcclim" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "drei-mcclim"; asd = "drei-mcclim"; }); @@ -33751,13 +34327,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + duckdb = (build-asdf-system { + pname = "duckdb"; + version = "20241012-git"; + asds = [ "duckdb" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-duckdb/2024-10-12/cl-duckdb-20241012-git.tgz"; + sha256 = "144c8c4m8vwmdg1ny5hjsvxmm8k6jijmrabyf2hmcnvk7hdy5sq0"; + system = "duckdb"; + asd = "duckdb"; + }); + systems = [ "duckdb" ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cffi-libffi" self) (getAttr "cl-ascii-table" self) (getAttr "cl-ppcre" self) (getAttr "cl-spark" self) (getAttr "float-features" self) (getAttr "frugal-uuid" self) (getAttr "let-plus" self) (getAttr "local-time" self) (getAttr "local-time-duration" self) (getAttr "periods" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); dufy = (build-asdf-system { pname = "dufy"; - version = "20210531-git"; + version = "20241012-git"; asds = [ "dufy" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dufy/2021-05-31/dufy-20210531-git.tgz"; - sha256 = "10qyrc5xkivwm6xmcfls1alad83ck7b2yyxbnhgc2vmnrk6j1012"; + url = "http://beta.quicklisp.org/archive/dufy/2024-10-12/dufy-20241012-git.tgz"; + sha256 = "1fj1ad7jh8i72jvdc5ypdk1j1mlkr7dc9xs4khii9adj3jl1nb0v"; system = "dufy"; asd = "dufy"; }); @@ -33945,11 +34537,11 @@ in lib.makeScope pkgs.newScope (self: { }); dynamic-wind = (build-asdf-system { pname = "dynamic-wind"; - version = "20211230-git"; + version = "20241012-git"; asds = [ "dynamic-wind" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/contextl/2021-12-30/contextl-20211230-git.tgz"; - sha256 = "0apgznz4g6lpmd86lq7w0xddfjgnirk83ig7p0j6i93xadhy9wh0"; + url = "http://beta.quicklisp.org/archive/contextl/2024-10-12/contextl-20241012-git.tgz"; + sha256 = "1jsa5wyjzzfw9pii3d6x20mh8ijnpb291g3i0y2ccj0x8z3xfyyk"; system = "dynamic-wind"; asd = "dynamic-wind"; }); @@ -34055,11 +34647,11 @@ in lib.makeScope pkgs.newScope (self: { }); easter-gauss = (build-asdf-system { pname = "easter-gauss"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "easter-gauss" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/easter-gauss/2023-10-21/easter-gauss-20231021-git.tgz"; - sha256 = "160p8fzj0cl425y018l6gmyjf5xfp8w0zgwk363s9lvs9v7ayl65"; + url = "http://beta.quicklisp.org/archive/easter-gauss/2024-10-12/easter-gauss-20241012-git.tgz"; + sha256 = "1wgr7j8b32yq0ajy4a3g08yr7z4p987gfjsrd6gai5i9zqxkbyih"; system = "easter-gauss"; asd = "easter-gauss"; }); @@ -34071,11 +34663,11 @@ in lib.makeScope pkgs.newScope (self: { }); easy-audio = (build-asdf-system { pname = "easy-audio"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "easy-audio" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/easy-audio/2022-07-07/easy-audio-20220707-git.tgz"; - sha256 = "157h1d5r403wyjvyv02gzd67xf01spsgx044j4a4nx2cziqr7w6k"; + url = "http://beta.quicklisp.org/archive/easy-audio/2024-10-12/easy-audio-20241012-git.tgz"; + sha256 = "1vlk2lzipz7sspizv4fiv6nmxhgq9piangc6gfxz6m5k3r74mwrg"; system = "easy-audio"; asd = "easy-audio"; }); @@ -34103,11 +34695,11 @@ in lib.makeScope pkgs.newScope (self: { }); easy-macros = (build-asdf-system { pname = "easy-macros"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "easy-macros" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/easy-macros/2022-11-06/easy-macros-20221106-git.tgz"; - sha256 = "0mashvad1ssh2kmr0wxgas13vxs6dsfb6b1q69cpxmpmx6sc067g"; + url = "http://beta.quicklisp.org/archive/easy-macros/2024-10-12/easy-macros-20241012-git.tgz"; + sha256 = "12ixfmxbxszhdcv2fnd9q8m573bn6q2nvn656bpwnzvka9si6vrq"; system = "easy-macros"; asd = "easy-macros"; }); @@ -34119,11 +34711,11 @@ in lib.makeScope pkgs.newScope (self: { }); easy-routes = (build-asdf-system { pname = "easy-routes"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "easy-routes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/easy-routes/2023-10-21/easy-routes-20231021-git.tgz"; - sha256 = "1banw54kz2llzb9h5sm47ckfc9l348m7qncm0npsy0w837rxkyzx"; + url = "http://beta.quicklisp.org/archive/easy-routes/2024-10-12/easy-routes-20241012-git.tgz"; + sha256 = "0bz91g0vd1nn9b23npmrjw2ig6fahjs3b6iiw7ncajc2w5x9w1y4"; system = "easy-routes"; asd = "easy-routes"; }); @@ -34135,11 +34727,11 @@ in lib.makeScope pkgs.newScope (self: { }); easy-routes_plus_djula = (build-asdf-system { pname = "easy-routes+djula"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "easy-routes+djula" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/easy-routes/2023-10-21/easy-routes-20231021-git.tgz"; - sha256 = "1banw54kz2llzb9h5sm47ckfc9l348m7qncm0npsy0w837rxkyzx"; + url = "http://beta.quicklisp.org/archive/easy-routes/2024-10-12/easy-routes-20241012-git.tgz"; + sha256 = "0bz91g0vd1nn9b23npmrjw2ig6fahjs3b6iiw7ncajc2w5x9w1y4"; system = "easy-routes+djula"; asd = "easy-routes+djula"; }); @@ -34151,11 +34743,11 @@ in lib.makeScope pkgs.newScope (self: { }); easy-routes_plus_errors = (build-asdf-system { pname = "easy-routes+errors"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "easy-routes+errors" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/easy-routes/2023-10-21/easy-routes-20231021-git.tgz"; - sha256 = "1banw54kz2llzb9h5sm47ckfc9l348m7qncm0npsy0w837rxkyzx"; + url = "http://beta.quicklisp.org/archive/easy-routes/2024-10-12/easy-routes-20241012-git.tgz"; + sha256 = "0bz91g0vd1nn9b23npmrjw2ig6fahjs3b6iiw7ncajc2w5x9w1y4"; system = "easy-routes+errors"; asd = "easy-routes+errors"; }); @@ -34391,11 +34983,11 @@ in lib.makeScope pkgs.newScope (self: { }); eclector = (build-asdf-system { pname = "eclector"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "eclector" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/eclector/2023-10-21/eclector-20231021-git.tgz"; - sha256 = "0rh1kvm5sqqinqzzhdngfj14jq0raaxn6mlnjvvs92wgsvyfliy8"; + url = "http://beta.quicklisp.org/archive/eclector/2024-10-12/eclector-20241012-git.tgz"; + sha256 = "06qhll5k0hq652gdzvvhcv4amqg9z7qillnn3z9cm8z9sv1n912v"; system = "eclector"; asd = "eclector"; }); @@ -34407,11 +34999,11 @@ in lib.makeScope pkgs.newScope (self: { }); eclector-concrete-syntax-tree = (build-asdf-system { pname = "eclector-concrete-syntax-tree"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "eclector-concrete-syntax-tree" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/eclector/2023-10-21/eclector-20231021-git.tgz"; - sha256 = "0rh1kvm5sqqinqzzhdngfj14jq0raaxn6mlnjvvs92wgsvyfliy8"; + url = "http://beta.quicklisp.org/archive/eclector/2024-10-12/eclector-20241012-git.tgz"; + sha256 = "06qhll5k0hq652gdzvvhcv4amqg9z7qillnn3z9cm8z9sv1n912v"; system = "eclector-concrete-syntax-tree"; asd = "eclector-concrete-syntax-tree"; }); @@ -34421,6 +35013,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + eclector_dot_syntax-extensions = (build-asdf-system { + pname = "eclector.syntax-extensions"; + version = "20241012-git"; + asds = [ "eclector.syntax-extensions" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/eclector/2024-10-12/eclector-20241012-git.tgz"; + sha256 = "06qhll5k0hq652gdzvvhcv4amqg9z7qillnn3z9cm8z9sv1n912v"; + system = "eclector.syntax-extensions"; + asd = "eclector.syntax-extensions"; + }); + systems = [ "eclector.syntax-extensions" ]; + lispLibs = [ (getAttr "eclector" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); eco = (build-asdf-system { pname = "eco"; version = "20190813-git"; @@ -34567,11 +35175,11 @@ in lib.makeScope pkgs.newScope (self: { }); enchant = (build-asdf-system { pname = "enchant"; - version = "20211209-git"; + version = "20241012-git"; asds = [ "enchant" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-enchant/2021-12-09/cl-enchant-20211209-git.tgz"; - sha256 = "1d0b8743g4y75jl69rq75m8csa5af2fwlxkfvs2p06rsx9dljh79"; + url = "http://beta.quicklisp.org/archive/cl-enchant/2024-10-12/cl-enchant-20241012-git.tgz"; + sha256 = "1fcxyb9b8g0v2il2q4xj7z19y1qfxvgd34zax8sdjvl4rp66b08v"; system = "enchant"; asd = "enchant"; }); @@ -34579,22 +35187,6 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "cffi" self) ]; meta = {}; }); - enchant-autoload = (build-asdf-system { - pname = "enchant-autoload"; - version = "20211209-git"; - asds = [ "enchant-autoload" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-enchant/2021-12-09/cl-enchant-20211209-git.tgz"; - sha256 = "1d0b8743g4y75jl69rq75m8csa5af2fwlxkfvs2p06rsx9dljh79"; - system = "enchant-autoload"; - asd = "enchant-autoload"; - }); - systems = [ "enchant-autoload" ]; - lispLibs = [ (getAttr "enchant" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); enhanced-boolean = (build-asdf-system { pname = "enhanced-boolean"; version = "1.0"; @@ -34965,11 +35557,11 @@ in lib.makeScope pkgs.newScope (self: { }); equals = (build-asdf-system { pname = "equals"; - version = "20140826-git"; + version = "20241012-git"; asds = [ "equals" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/equals/2014-08-26/equals-20140826-git.tgz"; - sha256 = "0z80z2xb7vlwfgx4sfmj1yba8gs6cgwb86iqrby25h4h34w7kj1w"; + url = "http://beta.quicklisp.org/archive/equals/2024-10-12/equals-20241012-git.tgz"; + sha256 = "1pzhj748dgjcw6qffkykxx156y78wy3bsbqmq5ijkybfjpnfsg27"; system = "equals"; asd = "equals"; }); @@ -34981,11 +35573,11 @@ in lib.makeScope pkgs.newScope (self: { }); erjoalgo-webutil = (build-asdf-system { pname = "erjoalgo-webutil"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "erjoalgo-webutil" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/erjoalgo-webutil/2023-10-21/erjoalgo-webutil-20231021-git.tgz"; - sha256 = "0zrp88sal627dhk84vkkgiwf388238f6zyw8bwlrpzcy6yffccrs"; + url = "http://beta.quicklisp.org/archive/erjoalgo-webutil/2024-10-12/erjoalgo-webutil-20241012-git.tgz"; + sha256 = "1mf9f23p6pagdi97k306a6122a5djx06nfwsxnx61gbyir2cpl2c"; system = "erjoalgo-webutil"; asd = "erjoalgo-webutil"; }); @@ -35061,11 +35653,11 @@ in lib.makeScope pkgs.newScope (self: { }); erudite = (build-asdf-system { pname = "erudite"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "erudite" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/erudite/2022-11-06/erudite-20221106-git.tgz"; - sha256 = "0za0wrblmk2kclc3wvlvsjf5mkri5ndhgc5ppc9p4zac3fd7p67n"; + url = "http://beta.quicklisp.org/archive/erudite/2024-10-12/erudite-20241012-git.tgz"; + sha256 = "159fmpm770rnixdpzpmzvqzd2kpns5mglpdxykvv2lqlnac24jn5"; system = "erudite"; asd = "erudite"; }); @@ -35077,11 +35669,11 @@ in lib.makeScope pkgs.newScope (self: { }); erudite-test = (build-asdf-system { pname = "erudite-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "erudite-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/erudite/2022-11-06/erudite-20221106-git.tgz"; - sha256 = "0za0wrblmk2kclc3wvlvsjf5mkri5ndhgc5ppc9p4zac3fd7p67n"; + url = "http://beta.quicklisp.org/archive/erudite/2024-10-12/erudite-20241012-git.tgz"; + sha256 = "159fmpm770rnixdpzpmzvqzd2kpns5mglpdxykvv2lqlnac24jn5"; system = "erudite-test"; asd = "erudite-test"; }); @@ -35093,11 +35685,11 @@ in lib.makeScope pkgs.newScope (self: { }); esa-mcclim = (build-asdf-system { pname = "esa-mcclim"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "esa-mcclim" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "esa-mcclim"; asd = "esa-mcclim"; }); @@ -35141,11 +35733,11 @@ in lib.makeScope pkgs.newScope (self: { }); esrap = (build-asdf-system { pname = "esrap"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "esrap" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/esrap/2023-06-18/esrap-20230618-git.tgz"; - sha256 = "0gs0mfamldhaihnlk0qxg2q4bl8bamq68dif9js9fkl8apg3iykl"; + url = "http://beta.quicklisp.org/archive/esrap/2024-10-12/esrap-20241012-git.tgz"; + sha256 = "0pvid1hld03vz2zyszvsxckcpjb2lfl2vjfig6dlrmw3dx8grdj0"; system = "esrap"; asd = "esrap"; }); @@ -35265,11 +35857,11 @@ in lib.makeScope pkgs.newScope (self: { }); event-emitter = (build-asdf-system { pname = "event-emitter"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "event-emitter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/event-emitter/2022-03-31/event-emitter-20220331-git.tgz"; - sha256 = "1v1mhwypc08hiz14kg6vp4xzkhlicw29vxgawz8m5ydxl2ranwc0"; + url = "http://beta.quicklisp.org/archive/event-emitter/2024-10-12/event-emitter-20241012-git.tgz"; + sha256 = "0kj77r09wbsiq6n62vvgk9fh37p3n3ycmhln1mhswz24rhirnpyn"; system = "event-emitter"; asd = "event-emitter"; }); @@ -35279,13 +35871,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + event-emitter-benchmark = (build-asdf-system { + pname = "event-emitter-benchmark"; + version = "20241012-git"; + asds = [ "event-emitter-benchmark" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/event-emitter/2024-10-12/event-emitter-20241012-git.tgz"; + sha256 = "0kj77r09wbsiq6n62vvgk9fh37p3n3ycmhln1mhswz24rhirnpyn"; + system = "event-emitter-benchmark"; + asd = "event-emitter-benchmark"; + }); + systems = [ "event-emitter-benchmark" ]; + lispLibs = [ (getAttr "event-emitter" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); event-emitter-test = (build-asdf-system { pname = "event-emitter-test"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "event-emitter-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/event-emitter/2022-03-31/event-emitter-20220331-git.tgz"; - sha256 = "1v1mhwypc08hiz14kg6vp4xzkhlicw29vxgawz8m5ydxl2ranwc0"; + url = "http://beta.quicklisp.org/archive/event-emitter/2024-10-12/event-emitter-20241012-git.tgz"; + sha256 = "0kj77r09wbsiq6n62vvgk9fh37p3n3ycmhln1mhswz24rhirnpyn"; system = "event-emitter-test"; asd = "event-emitter-test"; }); @@ -35409,11 +36017,11 @@ in lib.makeScope pkgs.newScope (self: { }); example-bot = (build-asdf-system { pname = "example-bot"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "example-bot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lispcord/2023-06-18/lispcord-20230618-git.tgz"; - sha256 = "12v3n8gqry746f94wz7djhk3f3adzfnh8jga9c9lcsnwkgsrrc6a"; + url = "http://beta.quicklisp.org/archive/lispcord/2024-10-12/lispcord-20241012-git.tgz"; + sha256 = "11xwrrvvqdm1wdnxrxqgizgw25plsn28n2k0lm5kakax9n221brn"; system = "example-bot"; asd = "example-bot"; }); @@ -35503,70 +36111,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - extensible-compound-types = (build-asdf-system { - pname = "extensible-compound-types"; - version = "20231021-git"; - asds = [ "extensible-compound-types" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/extensible-compound-types/2023-10-21/extensible-compound-types-20231021-git.tgz"; - sha256 = "1fbsrp52dx3p27r7mawlia4fhbyyf7n4piplbpnhszv26g483k9m"; - system = "extensible-compound-types"; - asd = "extensible-compound-types"; - }); - systems = [ "extensible-compound-types" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-environments" self) (getAttr "cl-form-types" self) (getAttr "compiler-macro-notes" self) (getAttr "fiveam" self) (getAttr "in-nomine" self) (getAttr "introspect-environment" self) (getAttr "optima" self) (getAttr "swank" self) (getAttr "trivial-types" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - extensible-compound-types-cl = (build-asdf-system { - pname = "extensible-compound-types-cl"; - version = "20231021-git"; - asds = [ "extensible-compound-types-cl" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/extensible-compound-types/2023-10-21/extensible-compound-types-20231021-git.tgz"; - sha256 = "1fbsrp52dx3p27r7mawlia4fhbyyf7n4piplbpnhszv26g483k9m"; - system = "extensible-compound-types-cl"; - asd = "extensible-compound-types-cl"; - }); - systems = [ "extensible-compound-types-cl" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "asdf-system-connections" self) (getAttr "cl-form-types" self) (getAttr "extensible-compound-types" self) (getAttr "fiveam" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - extensible-compound-types-interfaces = (build-asdf-system { - pname = "extensible-compound-types-interfaces"; - version = "20231021-git"; - asds = [ "extensible-compound-types-interfaces" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/extensible-compound-types/2023-10-21/extensible-compound-types-20231021-git.tgz"; - sha256 = "1fbsrp52dx3p27r7mawlia4fhbyyf7n4piplbpnhszv26g483k9m"; - system = "extensible-compound-types-interfaces"; - asd = "extensible-compound-types-interfaces"; - }); - systems = [ "extensible-compound-types-interfaces" ]; - lispLibs = [ (getAttr "extensible-compound-types-cl" self) (getAttr "polymorphic-functions" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - extensible-optimizing-coerce = (build-asdf-system { - pname = "extensible-optimizing-coerce"; - version = "20230618-git"; - asds = [ "extensible-optimizing-coerce" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/extensible-optimizing-coerce/2023-06-18/extensible-optimizing-coerce-20230618-git.tgz"; - sha256 = "17hqnd594xyp8rb24ampndfzqkw086fq4gxa9dlp9lzbq6fwfsb0"; - system = "extensible-optimizing-coerce"; - asd = "extensible-optimizing-coerce"; - }); - systems = [ "extensible-optimizing-coerce" ]; - lispLibs = [ (getAttr "closer-mop" self) (getAttr "extensible-compound-types" self) (getAttr "extensible-compound-types-interfaces" self) (getAttr "optima" self) (getAttr "trivial-types" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); extensible-sequences = (build-asdf-system { pname = "extensible-sequences"; version = "20130813-darcs"; @@ -35585,11 +36129,11 @@ in lib.makeScope pkgs.newScope (self: { }); external-program = (build-asdf-system { pname = "external-program"; - version = "20190307-git"; + version = "20241012-git"; asds = [ "external-program" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz"; - sha256 = "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"; + url = "http://beta.quicklisp.org/archive/external-program/2024-10-12/external-program-20241012-git.tgz"; + sha256 = "1g7hawsbbfspzljj2spxxv26a5079xsa0kd7dqdclm5n71fypwx6"; system = "external-program"; asd = "external-program"; }); @@ -35599,11 +36143,11 @@ in lib.makeScope pkgs.newScope (self: { }); external-program-test = (build-asdf-system { pname = "external-program-test"; - version = "20190307-git"; + version = "20241012-git"; asds = [ "external-program-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/external-program/2019-03-07/external-program-20190307-git.tgz"; - sha256 = "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"; + url = "http://beta.quicklisp.org/archive/external-program/2024-10-12/external-program-20241012-git.tgz"; + sha256 = "1g7hawsbbfspzljj2spxxv26a5079xsa0kd7dqdclm5n71fypwx6"; system = "external-program-test"; asd = "external-program"; }); @@ -35615,11 +36159,11 @@ in lib.makeScope pkgs.newScope (self: { }); external-symbol-not-found = (build-asdf-system { pname = "external-symbol-not-found"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "external-symbol-not-found" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/external-symbol-not-found/2022-02-20/external-symbol-not-found-20220220-git.tgz"; - sha256 = "1wlz36y1dka4409ngvp583jafwb9z8y6ghmyb84wn9spj66kghz8"; + url = "http://beta.quicklisp.org/archive/external-symbol-not-found/2024-10-12/external-symbol-not-found-20241012-git.tgz"; + sha256 = "1ic982jbcy71wlni60wnb8hqg3cqw488h4jj5pd2sqmjwv1960v7"; system = "external-symbol-not-found"; asd = "external-symbol-not-found"; }); @@ -35759,11 +36303,11 @@ in lib.makeScope pkgs.newScope (self: { }); fare-csv = (build-asdf-system { pname = "fare-csv"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "fare-csv" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fare-csv/2023-02-14/fare-csv-20230214-git.tgz"; - sha256 = "0k3mf968w94m4yff1k2jh7xlnpsm016qs4448bvklacjrr72vk8x"; + url = "http://beta.quicklisp.org/archive/fare-csv/2024-10-12/fare-csv-20241012-git.tgz"; + sha256 = "153sxb0vyd1cnhfw15j3183kqhcnma0ygaf5svzibknclm16n767"; system = "fare-csv"; asd = "fare-csv"; }); @@ -35859,11 +36403,11 @@ in lib.makeScope pkgs.newScope (self: { }); fare-scripts = (build-asdf-system { pname = "fare-scripts"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "fare-scripts" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fare-scripts/2023-10-21/fare-scripts-20231021-git.tgz"; - sha256 = "1lym0k98fxqypka54m98hgzf3a5qicqmvm5hlyarpkdajgz6x5dp"; + url = "http://beta.quicklisp.org/archive/fare-scripts/2024-10-12/fare-scripts-20241012-git.tgz"; + sha256 = "08fq1ry4prlww4gr7zris7vywqs3vm1253mqfgx8vg0awrccmf98"; system = "fare-scripts"; asd = "fare-scripts"; }); @@ -35903,29 +36447,13 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - fast-generic-functions = (build-asdf-system { - pname = "fast-generic-functions"; - version = "20220220-git"; - asds = [ "fast-generic-functions" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/fast-generic-functions/2022-02-20/fast-generic-functions-20220220-git.tgz"; - sha256 = "16hf9bi2p5s77p3m3aqsihcd9iicqjhhxxpsarjv93c41qs54yad"; - system = "fast-generic-functions"; - asd = "fast-generic-functions"; - }); - systems = [ "fast-generic-functions" ]; - lispLibs = [ (getAttr "closer-mop" self) (getAttr "sealable-metaobjects" self) (getAttr "trivial-macroexpand-all" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); fast-http = (build-asdf-system { pname = "fast-http"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "fast-http" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fast-http/2023-10-21/fast-http-20231021-git.tgz"; - sha256 = "13cv9kdf3z85b78xkjvs1qmbsn9frsj0n2bbj10rwd7l2glb407g"; + url = "http://beta.quicklisp.org/archive/fast-http/2024-10-12/fast-http-20241012-git.tgz"; + sha256 = "04cxh2241l9hyzarrxs528v2jjdfm5g3prc2374m4xkrb0wiygh0"; system = "fast-http"; asd = "fast-http"; }); @@ -35935,11 +36463,11 @@ in lib.makeScope pkgs.newScope (self: { }); fast-http-test = (build-asdf-system { pname = "fast-http-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "fast-http-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fast-http/2023-10-21/fast-http-20231021-git.tgz"; - sha256 = "13cv9kdf3z85b78xkjvs1qmbsn9frsj0n2bbj10rwd7l2glb407g"; + url = "http://beta.quicklisp.org/archive/fast-http/2024-10-12/fast-http-20241012-git.tgz"; + sha256 = "04cxh2241l9hyzarrxs528v2jjdfm5g3prc2374m4xkrb0wiygh0"; system = "fast-http-test"; asd = "fast-http-test"; }); @@ -35979,13 +36507,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + fast-mpsc-queue = (build-asdf-system { + pname = "fast-mpsc-queue"; + version = "20241012-git"; + asds = [ "fast-mpsc-queue" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/fast-mpsc-queue/2024-10-12/fast-mpsc-queue-20241012-git.tgz"; + sha256 = "1ggiaryjv3lmzrk6m22y7vvbqn3z0n7ahmkyfjq6iyrd64d77ck7"; + system = "fast-mpsc-queue"; + asd = "fast-mpsc-queue"; + }); + systems = [ "fast-mpsc-queue" ]; + lispLibs = [ (getAttr "metabang-bind" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); fast-websocket = (build-asdf-system { pname = "fast-websocket"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "fast-websocket" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fast-websocket/2022-07-07/fast-websocket-20220707-git.tgz"; - sha256 = "1j7v00gbkzx4mq2v8y44jm4jx321hgrv9igfw23cvzzlyd3dzp6y"; + url = "http://beta.quicklisp.org/archive/fast-websocket/2024-10-12/fast-websocket-20241012-git.tgz"; + sha256 = "102z58d27966lpx08kc6apgaainbsdfhygb67ibyw6lxnaasy3jz"; system = "fast-websocket"; asd = "fast-websocket"; }); @@ -35997,11 +36541,11 @@ in lib.makeScope pkgs.newScope (self: { }); fast-websocket-test = (build-asdf-system { pname = "fast-websocket-test"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "fast-websocket-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fast-websocket/2022-07-07/fast-websocket-20220707-git.tgz"; - sha256 = "1j7v00gbkzx4mq2v8y44jm4jx321hgrv9igfw23cvzzlyd3dzp6y"; + url = "http://beta.quicklisp.org/archive/fast-websocket/2024-10-12/fast-websocket-20241012-git.tgz"; + sha256 = "102z58d27966lpx08kc6apgaainbsdfhygb67ibyw6lxnaasy3jz"; system = "fast-websocket-test"; asd = "fast-websocket-test"; }); @@ -36219,11 +36763,11 @@ in lib.makeScope pkgs.newScope (self: { }); file-attributes = (build-asdf-system { pname = "file-attributes"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "file-attributes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/file-attributes/2023-10-21/file-attributes-20231021-git.tgz"; - sha256 = "0ga8m22bsvb4qf6zym40wy5nz6zwjm2agvx7v7ljmrrm4s5mx96l"; + url = "http://beta.quicklisp.org/archive/file-attributes/2024-10-12/file-attributes-20241012-git.tgz"; + sha256 = "14jimsmwcp8bygm2f0fjmjv0ncc5yxl7pvh04x0kw6gs1mc7rc9x"; system = "file-attributes"; asd = "file-attributes"; }); @@ -36231,6 +36775,22 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "trivial-features" self) ]; meta = {}; }); + file-finder = (build-asdf-system { + pname = "file-finder"; + version = "20241012-git"; + asds = [ "file-finder" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/file-finder/2024-10-12/file-finder-20241012-git.tgz"; + sha256 = "11cjyyngvydcq2sbgsqkxd9060a0cb3ndqrqr318djndf30ckmqx"; + system = "file-finder"; + asd = "file-finder"; + }); + systems = [ "file-finder" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "file-attributes" self) (getAttr "local-time" self) (getAttr "named-readtables" self) (getAttr "serapeum" self) (getAttr "str" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); file-local-variable = (build-asdf-system { pname = "file-local-variable"; version = "20160318-git"; @@ -36281,11 +36841,11 @@ in lib.makeScope pkgs.newScope (self: { }); file-notify = (build-asdf-system { pname = "file-notify"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "file-notify" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/file-notify/2023-10-21/file-notify-20231021-git.tgz"; - sha256 = "0mk730ji4jdkx0x15wrnsianv86n98nh14wd6z8ljvr4k91sc7wl"; + url = "http://beta.quicklisp.org/archive/file-notify/2024-10-12/file-notify-20241012-git.tgz"; + sha256 = "1zxn0smgahbxvy8v2bwmff3262msqhqqc5qpmh4ffinx6azln1hq"; system = "file-notify"; asd = "file-notify"; }); @@ -36297,11 +36857,11 @@ in lib.makeScope pkgs.newScope (self: { }); file-select = (build-asdf-system { pname = "file-select"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "file-select" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/file-select/2023-10-21/file-select-20231021-git.tgz"; - sha256 = "1vji1b4p09lvr4zq9qv3z3y5d8m9w0qcnk2ac89i9lgx8xi58aa1"; + url = "http://beta.quicklisp.org/archive/file-select/2024-10-12/file-select-20241012-git.tgz"; + sha256 = "0vp7qfqymlw21yrlfack799xjwyh23dyxnbc5ix4fnylpi1lxjbn"; system = "file-select"; asd = "file-select"; }); @@ -36329,27 +36889,27 @@ in lib.makeScope pkgs.newScope (self: { }); filesystem-utils = (build-asdf-system { pname = "filesystem-utils"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "filesystem-utils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/filesystem-utils/2023-10-21/filesystem-utils-20231021-git.tgz"; - sha256 = "0vf81y58wd2p9blfcz80g3c3nqwljzk4v3sz29n7lhg344x81m4z"; + url = "http://beta.quicklisp.org/archive/filesystem-utils/2024-10-12/filesystem-utils-20241012-git.tgz"; + sha256 = "0h1xqpc11iachb9yg1d2xrzp1df1qadr1call904cjf45xadn62r"; system = "filesystem-utils"; asd = "filesystem-utils"; }); systems = [ "filesystem-utils" ]; - lispLibs = [ (getAttr "documentation-utils" self) (getAttr "pathname-utils" self) (getAttr "trivial-features" self) ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "pathname-utils" self) (getAttr "trivial-features" self) ]; meta = { hydraPlatforms = [ ]; }; }); filesystem-utils-test = (build-asdf-system { pname = "filesystem-utils-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "filesystem-utils-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/filesystem-utils/2023-10-21/filesystem-utils-20231021-git.tgz"; - sha256 = "0vf81y58wd2p9blfcz80g3c3nqwljzk4v3sz29n7lhg344x81m4z"; + url = "http://beta.quicklisp.org/archive/filesystem-utils/2024-10-12/filesystem-utils-20241012-git.tgz"; + sha256 = "0h1xqpc11iachb9yg1d2xrzp1df1qadr1call904cjf45xadn62r"; system = "filesystem-utils-test"; asd = "filesystem-utils-test"; }); @@ -36521,11 +37081,11 @@ in lib.makeScope pkgs.newScope (self: { }); fiveam = (build-asdf-system { pname = "fiveam"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "fiveam" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fiveam/2023-10-21/fiveam-20231021-git.tgz"; - sha256 = "1g3dsmcxzrsijz4bx5y8ixfb26kh46hsj6q94yrydz0hk5w37skf"; + url = "http://beta.quicklisp.org/archive/fiveam/2024-10-12/fiveam-20241012-git.tgz"; + sha256 = "066amfjqhagzhb602y911wbw7jh9cv1fb7bfn2ppjzm5kf7hqbnh"; system = "fiveam"; asd = "fiveam"; }); @@ -36551,11 +37111,11 @@ in lib.makeScope pkgs.newScope (self: { }); fiveam-matchers = (build-asdf-system { pname = "fiveam-matchers"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "fiveam-matchers" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fiveam-matchers/2023-10-21/fiveam-matchers-20231021-git.tgz"; - sha256 = "18calv5cc707cdb9gzpy24753icq5lwgy2bhfq28vw1njxmwr74h"; + url = "http://beta.quicklisp.org/archive/fiveam-matchers/2024-10-12/fiveam-matchers-20241012-git.tgz"; + sha256 = "1kwichcxjmqdi8whx4daggp4fdp53w17jj1rqlph9ixgr4s9kvqv"; system = "fiveam-matchers"; asd = "fiveam-matchers"; }); @@ -36597,22 +37157,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - flac-metadata = (build-asdf-system { - pname = "flac-metadata"; - version = "20220707-git"; - asds = [ "flac-metadata" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/flac-metadata/2022-07-07/flac-metadata-20220707-git.tgz"; - sha256 = "1p515ym8rwrz3mybig83z41jrbrviikp3yyqgn9qzzjcrx7x1zsg"; - system = "flac-metadata"; - asd = "flac-metadata"; - }); - systems = [ "flac-metadata" ]; - lispLibs = [ (getAttr "binary-parser" self) (getAttr "mfiano-utils" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); flare = (build-asdf-system { pname = "flare"; version = "20231021-git"; @@ -36663,11 +37207,11 @@ in lib.makeScope pkgs.newScope (self: { }); flexi-streams = (build-asdf-system { pname = "flexi-streams"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "flexi-streams" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/flexi-streams/2022-02-20/flexi-streams-20220220-git.tgz"; - sha256 = "04azqvz11s8dngy49bjl19hrfn0ip1b7m0szm4hlppq364msil7b"; + url = "http://beta.quicklisp.org/archive/flexi-streams/2024-10-12/flexi-streams-20241012-git.tgz"; + sha256 = "1bk224ryfiwsmnmq2gdfv9gld85z2rvnlx7fxcl2k122vc344akh"; system = "flexi-streams"; asd = "flexi-streams"; }); @@ -36677,11 +37221,11 @@ in lib.makeScope pkgs.newScope (self: { }); flexi-streams-test = (build-asdf-system { pname = "flexi-streams-test"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "flexi-streams-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/flexi-streams/2022-02-20/flexi-streams-20220220-git.tgz"; - sha256 = "04azqvz11s8dngy49bjl19hrfn0ip1b7m0szm4hlppq364msil7b"; + url = "http://beta.quicklisp.org/archive/flexi-streams/2024-10-12/flexi-streams-20241012-git.tgz"; + sha256 = "1bk224ryfiwsmnmq2gdfv9gld85z2rvnlx7fxcl2k122vc344akh"; system = "flexi-streams-test"; asd = "flexi-streams-test"; }); @@ -36725,11 +37269,11 @@ in lib.makeScope pkgs.newScope (self: { }); float-features = (build-asdf-system { pname = "float-features"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "float-features" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/float-features/2023-10-21/float-features-20231021-git.tgz"; - sha256 = "0871g3g9dlpgfv2v29jcnqbbxss0ih7d79zy4nlvz25krqcvvw0l"; + url = "http://beta.quicklisp.org/archive/float-features/2024-10-12/float-features-20241012-git.tgz"; + sha256 = "1vxnvaprki5rk3phj20m35pva9dpgsixm8d9rnsixq1qgrv3djjf"; system = "float-features"; asd = "float-features"; }); @@ -36739,11 +37283,11 @@ in lib.makeScope pkgs.newScope (self: { }); float-features-tests = (build-asdf-system { pname = "float-features-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "float-features-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/float-features/2023-10-21/float-features-20231021-git.tgz"; - sha256 = "0871g3g9dlpgfv2v29jcnqbbxss0ih7d79zy4nlvz25krqcvvw0l"; + url = "http://beta.quicklisp.org/archive/float-features/2024-10-12/float-features-20241012-git.tgz"; + sha256 = "1vxnvaprki5rk3phj20m35pva9dpgsixm8d9rnsixq1qgrv3djjf"; system = "float-features-tests"; asd = "float-features-tests"; }); @@ -36803,11 +37347,11 @@ in lib.makeScope pkgs.newScope (self: { }); flow = (build-asdf-system { pname = "flow"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "flow" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/flow/2023-10-21/flow-20231021-git.tgz"; - sha256 = "09g88wnz3dflwrjssl45xihy75fsd0l63ggy1z7mh93hc79ficz5"; + url = "http://beta.quicklisp.org/archive/flow/2024-10-12/flow-20241012-git.tgz"; + sha256 = "1623kkyygwkqpgrbvv1zqj13mjkycqyh88nwcjsxd0clrlhlyfz3"; system = "flow"; asd = "flow"; }); @@ -36817,11 +37361,11 @@ in lib.makeScope pkgs.newScope (self: { }); flow-visualizer = (build-asdf-system { pname = "flow-visualizer"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "flow-visualizer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/flow/2023-10-21/flow-20231021-git.tgz"; - sha256 = "09g88wnz3dflwrjssl45xihy75fsd0l63ggy1z7mh93hc79ficz5"; + url = "http://beta.quicklisp.org/archive/flow/2024-10-12/flow-20241012-git.tgz"; + sha256 = "1623kkyygwkqpgrbvv1zqj13mjkycqyh88nwcjsxd0clrlhlyfz3"; system = "flow-visualizer"; asd = "flow-visualizer"; }); @@ -36863,6 +37407,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + flx = (build-asdf-system { + pname = "flx"; + version = "20241012-git"; + asds = [ "flx" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-flx/2024-10-12/cl-flx-20241012-git.tgz"; + sha256 = "02p8qmc6wy3kf6w3rpgjvyg3jb699i5x9zk2f1p2y9h3m86d7hsw"; + system = "flx"; + asd = "flx"; + }); + systems = [ "flx" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); fmarshal = (build-asdf-system { pname = "fmarshal"; version = "20130720-git"; @@ -36961,11 +37521,11 @@ in lib.makeScope pkgs.newScope (self: { }); fn = (build-asdf-system { pname = "fn"; - version = "20171019-git"; + version = "20241012-git"; asds = [ "fn" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fn/2017-10-19/fn-20171019-git.tgz"; - sha256 = "0yyp9z6iwx476whz0n1rpjznjyqqhlylhzwpgg5xx92lxmskl752"; + url = "http://beta.quicklisp.org/archive/fn/2024-10-12/fn-20241012-git.tgz"; + sha256 = "08ydmfly5jaisfj8pkksq6npz992zlz4ni1yqlrq5yigwx41xaz0"; system = "fn"; asd = "fn"; }); @@ -37506,13 +38066,13 @@ in lib.makeScope pkgs.newScope (self: { version = "master-df14cb8c-git"; asds = [ "foreign-array" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/antik/2019-10-08/antik-master-df14cb8c-git.tgz"; + url = "http://beta.quicklisp.org/archive/antik/2024-10-12/antik-master-df14cb8c-git.tgz"; sha256 = "1n08cx4n51z8v4bxyak166lp495xda3x7llfxcdpxndxqxcammr0"; system = "foreign-array"; asd = "foreign-array"; }); systems = [ "foreign-array" ]; - lispLibs = [ (getAttr "antik-base" self) (getAttr "cffi" self) (getAttr "cffi-grovel" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) ]; + lispLibs = [ (getAttr "antik-base" self) (getAttr "cffi" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -37643,22 +38203,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - freebsd-ffi = (build-asdf-system { - pname = "freebsd-ffi"; - version = "20220707-git"; - asds = [ "freebsd-ffi" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/freebsd-ffi/2022-07-07/freebsd-ffi-20220707-git.tgz"; - sha256 = "0mhbkigxmkjn5pdn58pn80d1wv49zd4vq0i59pnj6wir1fnr7mva"; - system = "freebsd-ffi"; - asd = "freebsd-ffi"; - }); - systems = [ "freebsd-ffi" ]; - lispLibs = [ (getAttr "cffi" self) (getAttr "mfiano-utils" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); freebsd-sysctl = (build-asdf-system { pname = "freebsd-sysctl"; version = "20210228-git"; @@ -37787,6 +38331,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + frugal-uuid = (build-asdf-system { + pname = "frugal-uuid"; + version = "20241012-git"; + asds = [ "frugal-uuid" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-frugal-uuid/2024-10-12/cl-frugal-uuid-20241012-git.tgz"; + sha256 = "01hli6gh0rr6mizqp1iqfch7rd0jw6ygrskjdr5hf3r8wwwvr9hh"; + system = "frugal-uuid"; + asd = "frugal-uuid"; + }); + systems = [ "frugal-uuid" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); fs-watcher = (build-asdf-system { pname = "fs-watcher"; version = "20171130-git"; @@ -37805,16 +38365,16 @@ in lib.makeScope pkgs.newScope (self: { }); fset = (build-asdf-system { pname = "fset"; - version = "20200925-git"; + version = "20241012-git"; asds = [ "fset" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fset/2020-09-25/fset-20200925-git.tgz"; - sha256 = "15285aacb0dlhvbrkc11yffp5x2zd1jvm77zz7rrpbdwqbafp8sy"; + url = "http://beta.quicklisp.org/archive/fset/2024-10-12/fset-20241012-git.tgz"; + sha256 = "0h9j5a7vlr8g0hq99y4wgw1l1wialzs6k16nrpmd4pwiyiypzkm6"; system = "fset"; asd = "fset"; }); systems = [ "fset" ]; - lispLibs = [ (getAttr "misc-extensions" self) (getAttr "mt19937" self) (getAttr "named-readtables" self) ]; + lispLibs = [ (getAttr "misc-extensions" self) (getAttr "named-readtables" self) (getAttr "random-state" self) ]; meta = {}; }); fsocket = (build-asdf-system { @@ -37931,11 +38491,11 @@ in lib.makeScope pkgs.newScope (self: { }); functional-geometry = (build-asdf-system { pname = "functional-geometry"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "functional-geometry" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "functional-geometry"; asd = "functional-geometry"; }); @@ -37947,16 +38507,16 @@ in lib.makeScope pkgs.newScope (self: { }); functional-trees = (build-asdf-system { pname = "functional-trees"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "functional-trees" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/functional-trees/2023-10-21/functional-trees-20231021-git.tgz"; - sha256 = "0pp320fy4vqv723asdp12slljs05lbylzhi6ja1i5zklhpv4pv9l"; + url = "http://beta.quicklisp.org/archive/functional-trees/2024-10-12/functional-trees-20241012-git.tgz"; + sha256 = "02jhc2c6d7zd75cpjmwck62b3iyzsf5q2yqqpp5ymwjmnx4bnysd"; system = "functional-trees"; asd = "functional-trees"; }); systems = [ "functional-trees" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "asdf-package-system" self) (getAttr "cl-store" self) (getAttr "closer-mop" self) (getAttr "fset" self) (getAttr "iterate" self) (getAttr "serapeum" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "asdf-package-system" self) (getAttr "atomics" self) (getAttr "bordeaux-threads" self) (getAttr "cl-store" self) (getAttr "closer-mop" self) (getAttr "fset" self) (getAttr "iterate" self) (getAttr "serapeum" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -37995,11 +38555,11 @@ in lib.makeScope pkgs.newScope (self: { }); fuzzy-dates = (build-asdf-system { pname = "fuzzy-dates"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "fuzzy-dates" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/fuzzy-dates/2023-10-21/fuzzy-dates-20231021-git.tgz"; - sha256 = "09a77i9rn7cf5amw6wsx41hpnbp128vjhdw3vq82ip2gm0y4dv9d"; + url = "http://beta.quicklisp.org/archive/fuzzy-dates/2024-10-12/fuzzy-dates-20241012-git.tgz"; + sha256 = "1nnwb7dl772zax0ysc9v4z29kq639f3za7k34hdk9fyyqbln9dgl"; system = "fuzzy-dates"; asd = "fuzzy-dates"; }); @@ -38043,11 +38603,11 @@ in lib.makeScope pkgs.newScope (self: { }); gadgets = (build-asdf-system { pname = "gadgets"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "gadgets" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/gadgets/2022-02-20/gadgets-20220220-git.tgz"; - sha256 = "0g06wb3dciri2q93x2dcf58x5r8gq2kb86fgd2w4pr5r1wxwd1sm"; + url = "http://beta.quicklisp.org/archive/gadgets/2024-10-12/gadgets-20241012-git.tgz"; + sha256 = "1ba4gj8lh3ihbb66xiz7hc8cdg3gvi3q20w32nmsqdch956is34k"; system = "gadgets"; asd = "gadgets"; }); @@ -38219,11 +38779,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl = (build-asdf-system { pname = "generic-cl"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl"; asd = "generic-cl"; }); @@ -38233,11 +38793,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_arithmetic = (build-asdf-system { pname = "generic-cl.arithmetic"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.arithmetic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.arithmetic"; asd = "generic-cl.arithmetic"; }); @@ -38249,11 +38809,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_collector = (build-asdf-system { pname = "generic-cl.collector"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.collector" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.collector"; asd = "generic-cl.collector"; }); @@ -38265,11 +38825,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_comparison = (build-asdf-system { pname = "generic-cl.comparison"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.comparison" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.comparison"; asd = "generic-cl.comparison"; }); @@ -38281,11 +38841,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_container = (build-asdf-system { pname = "generic-cl.container"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.container" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.container"; asd = "generic-cl.container"; }); @@ -38297,11 +38857,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_internal = (build-asdf-system { pname = "generic-cl.internal"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.internal" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.internal"; asd = "generic-cl.internal"; }); @@ -38313,11 +38873,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_iterator = (build-asdf-system { pname = "generic-cl.iterator"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.iterator" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.iterator"; asd = "generic-cl.iterator"; }); @@ -38329,11 +38889,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_lazy-seq = (build-asdf-system { pname = "generic-cl.lazy-seq"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.lazy-seq" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.lazy-seq"; asd = "generic-cl.lazy-seq"; }); @@ -38345,11 +38905,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_map = (build-asdf-system { pname = "generic-cl.map"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.map" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.map"; asd = "generic-cl.map"; }); @@ -38361,11 +38921,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_math = (build-asdf-system { pname = "generic-cl.math"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.math" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.math"; asd = "generic-cl.math"; }); @@ -38377,11 +38937,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_object = (build-asdf-system { pname = "generic-cl.object"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.object" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.object"; asd = "generic-cl.object"; }); @@ -38393,11 +38953,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_sequence = (build-asdf-system { pname = "generic-cl.sequence"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.sequence" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.sequence"; asd = "generic-cl.sequence"; }); @@ -38409,11 +38969,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_set = (build-asdf-system { pname = "generic-cl.set"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.set" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.set"; asd = "generic-cl.set"; }); @@ -38425,11 +38985,11 @@ in lib.makeScope pkgs.newScope (self: { }); generic-cl_dot_util = (build-asdf-system { pname = "generic-cl.util"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "generic-cl.util" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/generic-cl/2021-10-20/generic-cl-20211020-git.tgz"; - sha256 = "0glvig5jsyc4735n9sz6adp48lpfcdajhbmgggmxq8pb9j2cab7q"; + url = "http://beta.quicklisp.org/archive/generic-cl/2024-10-12/generic-cl-20241012-git.tgz"; + sha256 = "14qlfzfd8gvvbhl766801g9258z1dirmszzp1wrf24wj9yf4m0f4"; system = "generic-cl.util"; asd = "generic-cl.util"; }); @@ -38871,11 +39431,11 @@ in lib.makeScope pkgs.newScope (self: { }); github-api-cl = (build-asdf-system { pname = "github-api-cl"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "github-api-cl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/github-api-cl/2023-10-21/github-api-cl-20231021-git.tgz"; - sha256 = "1fxlgppkgg47pbv8mzz9dd1g8axmzixahq0dbglknr1hr8q1n150"; + url = "http://beta.quicklisp.org/archive/github-api-cl/2024-10-12/github-api-cl-20241012-git.tgz"; + sha256 = "04kvhap041v26axg4pzzymnibzh430yvja8c6dhic27g2639kswh"; system = "github-api-cl"; asd = "github-api-cl"; }); @@ -38887,11 +39447,11 @@ in lib.makeScope pkgs.newScope (self: { }); github-gist-api-cl = (build-asdf-system { pname = "github-gist-api-cl"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "github-gist-api-cl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/github-api-cl/2023-10-21/github-api-cl-20231021-git.tgz"; - sha256 = "1fxlgppkgg47pbv8mzz9dd1g8axmzixahq0dbglknr1hr8q1n150"; + url = "http://beta.quicklisp.org/archive/github-api-cl/2024-10-12/github-api-cl-20241012-git.tgz"; + sha256 = "04kvhap041v26axg4pzzymnibzh430yvja8c6dhic27g2639kswh"; system = "github-gist-api-cl"; asd = "github-gist-api-cl"; }); @@ -39015,16 +39575,16 @@ in lib.makeScope pkgs.newScope (self: { }); glfw = (build-asdf-system { pname = "glfw"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "glfw" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/glfw/2023-10-21/glfw-20231021-git.tgz"; - sha256 = "04sblfcfjgfyfmgy0wrc4qdnxrw0bv020pisv7xvlshbal1rhgv2"; + url = "http://beta.quicklisp.org/archive/glfw/2024-10-12/glfw-20241012-git.tgz"; + sha256 = "1n421gvrzs76v57icy0c4zhz84ymin91vbv5gkkj4i00cnggwdxv"; system = "glfw"; asd = "glfw"; }); systems = [ "glfw" ]; - lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "float-features" self) ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "cl-opengl" self) (getAttr "documentation-utils" self) (getAttr "float-features" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -39263,11 +39823,11 @@ in lib.makeScope pkgs.newScope (self: { }); glsl-toolkit = (build-asdf-system { pname = "glsl-toolkit"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "glsl-toolkit" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/glsl-toolkit/2023-10-21/glsl-toolkit-20231021-git.tgz"; - sha256 = "1mz99q4l4bjlcj56i291ai2ibjdjkag2v8zm9qawqbvfan8s2g0i"; + url = "http://beta.quicklisp.org/archive/glsl-toolkit/2024-10-12/glsl-toolkit-20241012-git.tgz"; + sha256 = "0yh6y2k2v5ivzwfnvnprlcih8jn7fv3pzz2wn85fpvbfw4mg120x"; system = "glsl-toolkit"; asd = "glsl-toolkit"; }); @@ -39325,6 +39885,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + golden-utils = (build-asdf-system { + pname = "golden-utils"; + version = "20241012-git"; + asds = [ "golden-utils" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/golden-utils/2024-10-12/golden-utils-20241012-git.tgz"; + sha256 = "09vq29wjr3x7h3fshwxg8h1psy4p73yl61cjljarpqjhsgz7lmbp"; + system = "golden-utils"; + asd = "golden-utils"; + }); + systems = [ "golden-utils" ]; + lispLibs = [ (getAttr "alexandria" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); gooptest = (build-asdf-system { pname = "gooptest"; version = "20200925-git"; @@ -39565,11 +40141,11 @@ in lib.makeScope pkgs.newScope (self: { }); gt = (build-asdf-system { pname = "gt"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "gt" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-utils/2023-10-21/cl-utils-20231021-git.tgz"; - sha256 = "14q97p3w1mplhaxy8dam26yvqwr60jp13isgsi4px077w8ny37qq"; + url = "http://beta.quicklisp.org/archive/cl-utils/2024-10-12/cl-utils-20241012-git.tgz"; + sha256 = "133alv8368k9pjkvh3vsfsk50whw7si4i2i7b8z256knpb2d35gh"; system = "gt"; asd = "gt"; }); @@ -39757,11 +40333,11 @@ in lib.makeScope pkgs.newScope (self: { }); hamcrest = (build-asdf-system { pname = "hamcrest"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "hamcrest" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-hamcrest/2023-02-14/cl-hamcrest-20230214-git.tgz"; - sha256 = "0m5czvkc9jpqd2ldxw6a2677iwdq4glvzw5ah2d114z7nm6i13sm"; + url = "http://beta.quicklisp.org/archive/cl-hamcrest/2024-10-12/cl-hamcrest-20241012-git.tgz"; + sha256 = "05l5i5cmm1yqg8x9ayffaf3a9xf742k02wkxwpkc125ih5x0ggws"; system = "hamcrest"; asd = "hamcrest"; }); @@ -39771,13 +40347,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + hamcrest-ci = (build-asdf-system { + pname = "hamcrest-ci"; + version = "20241012-git"; + asds = [ "hamcrest-ci" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-hamcrest/2024-10-12/cl-hamcrest-20241012-git.tgz"; + sha256 = "05l5i5cmm1yqg8x9ayffaf3a9xf742k02wkxwpkc125ih5x0ggws"; + system = "hamcrest-ci"; + asd = "hamcrest-ci"; + }); + systems = [ "hamcrest-ci" ]; + lispLibs = [ (getAttr "_40ants-ci" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); hamcrest-tests = (build-asdf-system { pname = "hamcrest-tests"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "hamcrest-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-hamcrest/2023-02-14/cl-hamcrest-20230214-git.tgz"; - sha256 = "0m5czvkc9jpqd2ldxw6a2677iwdq4glvzw5ah2d114z7nm6i13sm"; + url = "http://beta.quicklisp.org/archive/cl-hamcrest/2024-10-12/cl-hamcrest-20241012-git.tgz"; + sha256 = "05l5i5cmm1yqg8x9ayffaf3a9xf742k02wkxwpkc125ih5x0ggws"; system = "hamcrest-tests"; asd = "hamcrest-tests"; }); @@ -39789,11 +40381,11 @@ in lib.makeScope pkgs.newScope (self: { }); harmony = (build-asdf-system { pname = "harmony"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "harmony" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/harmony/2023-10-21/harmony-20231021-git.tgz"; - sha256 = "00ch1dn1zpkv8z06a2ymmv2r659lb9vjpkxzdvabxlzic5sxzrzi"; + url = "http://beta.quicklisp.org/archive/harmony/2024-10-12/harmony-20241012-git.tgz"; + sha256 = "0bzqwcbnpb529bdp35c4s3p4p6rsrjnsvll2bkkrwpxlwzdd3fim"; system = "harmony"; asd = "harmony"; }); @@ -39869,11 +40461,11 @@ in lib.makeScope pkgs.newScope (self: { }); hashtrie = (build-asdf-system { pname = "hashtrie"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "hashtrie" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/hashtrie/2023-02-14/hashtrie-20230214-git.tgz"; - sha256 = "0jhlqq1a5wzr7arkdrg75r4qp2hk3cbn1lcmz2lcl3g1153my9xx"; + url = "http://beta.quicklisp.org/archive/hashtrie/2024-10-12/hashtrie-20241012-git.tgz"; + sha256 = "1qn7azbl2p3hjvrb87bb06d3njsi5ksmdcv4mk80iadq06w0rn0n"; system = "hashtrie"; asd = "hashtrie"; }); @@ -39885,11 +40477,11 @@ in lib.makeScope pkgs.newScope (self: { }); hashtrie-tests = (build-asdf-system { pname = "hashtrie-tests"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "hashtrie-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/hashtrie/2023-02-14/hashtrie-20230214-git.tgz"; - sha256 = "0jhlqq1a5wzr7arkdrg75r4qp2hk3cbn1lcmz2lcl3g1153my9xx"; + url = "http://beta.quicklisp.org/archive/hashtrie/2024-10-12/hashtrie-20241012-git.tgz"; + sha256 = "1qn7azbl2p3hjvrb87bb06d3njsi5ksmdcv4mk80iadq06w0rn0n"; system = "hashtrie-tests"; asd = "hashtrie-tests"; }); @@ -39963,11 +40555,11 @@ in lib.makeScope pkgs.newScope (self: { }); helambdap = (build-asdf-system { pname = "helambdap"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "helambdap" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/helambdap/2023-10-21/helambdap-20231021-git.tgz"; - sha256 = "1kzapbf9l2bw8i9m9sxv0dfnkksrxq81d5hbn34pm25abk0i937j"; + url = "http://beta.quicklisp.org/archive/helambdap/2024-10-12/helambdap-20241012-git.tgz"; + sha256 = "0z7hnphjxfr5z5h9gp5940pbbh163w3nnis2fan2wrrh0l88scn3"; system = "helambdap"; asd = "helambdap"; }); @@ -39979,11 +40571,11 @@ in lib.makeScope pkgs.newScope (self: { }); hello-builder = (build-asdf-system { pname = "hello-builder"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "hello-builder" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clog/2023-10-21/clog-20231021-git.tgz"; - sha256 = "1hd59lwvhd8hfgh6nrgpsqrvwsh7jrpvi2rxaig67xr0zp476hak"; + url = "http://beta.quicklisp.org/archive/clog/2024-10-12/clog-20241012-git.tgz"; + sha256 = "0hqpj9ji7kfqgcxdfnc7x202qzmb7zdkmjwcyhdllqs6b0ssw5lx"; system = "hello-builder"; asd = "hello-builder"; }); @@ -39995,11 +40587,11 @@ in lib.makeScope pkgs.newScope (self: { }); hello-clog = (build-asdf-system { pname = "hello-clog"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "hello-clog" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clog/2023-10-21/clog-20231021-git.tgz"; - sha256 = "1hd59lwvhd8hfgh6nrgpsqrvwsh7jrpvi2rxaig67xr0zp476hak"; + url = "http://beta.quicklisp.org/archive/clog/2024-10-12/clog-20241012-git.tgz"; + sha256 = "0hqpj9ji7kfqgcxdfnc7x202qzmb7zdkmjwcyhdllqs6b0ssw5lx"; system = "hello-clog"; asd = "hello-clog"; }); @@ -40169,6 +40761,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + hiccl = (build-asdf-system { + pname = "hiccl"; + version = "20241012-git"; + asds = [ "hiccl" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/hiccl/2024-10-12/hiccl-20241012-git.tgz"; + sha256 = "0d92q8kb8xn6c9gsm822339f9qmpf9lpzy6s6abvxbhhyfk136yp"; + system = "hiccl"; + asd = "hiccl"; + }); + systems = [ "hiccl" ]; + lispLibs = [ (getAttr "serapeum" self) (getAttr "str" self) (getAttr "trivia" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + hiccl-test = (build-asdf-system { + pname = "hiccl-test"; + version = "20241012-git"; + asds = [ "hiccl-test" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/hiccl/2024-10-12/hiccl-20241012-git.tgz"; + sha256 = "0d92q8kb8xn6c9gsm822339f9qmpf9lpzy6s6abvxbhhyfk136yp"; + system = "hiccl-test"; + asd = "hiccl-test"; + }); + systems = [ "hiccl-test" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "fiveam" self) (getAttr "hiccl" self) (getAttr "lquery" self) (getAttr "plump" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); hl7-client = (build-asdf-system { pname = "hl7-client"; version = "20150407-git"; @@ -40265,6 +40889,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + hsx = (build-asdf-system { + pname = "hsx"; + version = "20241012-git"; + asds = [ "hsx" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/hsx/2024-10-12/hsx-20241012-git.tgz"; + sha256 = "0aldv9cjzl9n4p1arlmvbjdy3zwhxcmx1ajp5lwdz5vq4mivw3zy"; + system = "hsx"; + asd = "hsx"; + }); + systems = [ "hsx" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "str" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + hsx-test = (build-asdf-system { + pname = "hsx-test"; + version = "20241012-git"; + asds = [ "hsx-test" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/hsx/2024-10-12/hsx-20241012-git.tgz"; + sha256 = "0aldv9cjzl9n4p1arlmvbjdy3zwhxcmx1ajp5lwdz5vq4mivw3zy"; + system = "hsx-test"; + asd = "hsx-test"; + }); + systems = [ "hsx-test" ]; + lispLibs = [ (getAttr "mstrings" self) (getAttr "named-readtables" self) (getAttr "rove" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); ht-simple-ajax = (build-asdf-system { pname = "ht-simple-ajax"; version = "20130421-git"; @@ -40471,11 +41127,11 @@ in lib.makeScope pkgs.newScope (self: { }); http2 = (build-asdf-system { pname = "http2"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "http2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/http2/2023-06-18/http2-20230618-git.tgz"; - sha256 = "15jzyjxfd6g1h752ffrjxyqwgqyhkp83hxkxx36w8m5q9nl1yhxz"; + url = "http://beta.quicklisp.org/archive/http2/2024-10-12/http2-20241012-git.tgz"; + sha256 = "1zb21np8rksz7b0vkfr3hg8y1a4m20vgkks3v39cc1yclnrfavii"; system = "http2"; asd = "http2"; }); @@ -41036,10 +41692,10 @@ in lib.makeScope pkgs.newScope (self: { }); hu_dot_dwim_dot_partial-eval = (build-asdf-system { pname = "hu.dwim.partial-eval"; - version = "20171130-darcs"; + version = "stable-git"; asds = [ "hu.dwim.partial-eval" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/hu.dwim.partial-eval/2017-11-30/hu.dwim.partial-eval-20171130-darcs.tgz"; + url = "http://beta.quicklisp.org/archive/hu.dwim.partial-eval/2024-10-12/hu.dwim.partial-eval-stable-git.tgz"; sha256 = "1zsh1rk9rcxkrqavhx2slpczii23y51fn66n68vsw5d97g9k6gzz"; system = "hu.dwim.partial-eval"; asd = "hu.dwim.partial-eval"; @@ -41050,38 +41706,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - hu_dot_dwim_dot_partial-eval_dot_documentation = (build-asdf-system { - pname = "hu.dwim.partial-eval.documentation"; - version = "20171130-darcs"; - asds = [ "hu.dwim.partial-eval.documentation" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/hu.dwim.partial-eval/2017-11-30/hu.dwim.partial-eval-20171130-darcs.tgz"; - sha256 = "1zsh1rk9rcxkrqavhx2slpczii23y51fn66n68vsw5d97g9k6gzz"; - system = "hu.dwim.partial-eval.documentation"; - asd = "hu.dwim.partial-eval.documentation"; - }); - systems = [ "hu.dwim.partial-eval.documentation" ]; - lispLibs = [ (getAttr "hu_dot_dwim_dot_asdf" self) (getAttr "hu_dot_dwim_dot_partial-eval_dot_test" self) (getAttr "hu_dot_dwim_dot_presentation" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - hu_dot_dwim_dot_partial-eval_dot_test = (build-asdf-system { - pname = "hu.dwim.partial-eval.test"; - version = "20171130-darcs"; - asds = [ "hu.dwim.partial-eval.test" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/hu.dwim.partial-eval/2017-11-30/hu.dwim.partial-eval-20171130-darcs.tgz"; - sha256 = "1zsh1rk9rcxkrqavhx2slpczii23y51fn66n68vsw5d97g9k6gzz"; - system = "hu.dwim.partial-eval.test"; - asd = "hu.dwim.partial-eval.test"; - }); - systems = [ "hu.dwim.partial-eval.test" ]; - lispLibs = [ (getAttr "hu_dot_dwim_dot_asdf" self) (getAttr "hu_dot_dwim_dot_partial-eval" self) (getAttr "hu_dot_dwim_dot_stefil_plus_hu_dot_dwim_dot_def_plus_swank" self) (getAttr "hu_dot_dwim_dot_util" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); hu_dot_dwim_dot_perec = (build-asdf-system { pname = "hu.dwim.perec"; version = "20211209-darcs"; @@ -42213,11 +42837,11 @@ in lib.makeScope pkgs.newScope (self: { }); hunchentoot = (build-asdf-system { pname = "hunchentoot"; - version = "v1.3.0"; + version = "v1.3.1"; asds = [ "hunchentoot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz"; - sha256 = "1z0m45lp6rv59g69l44gj3q3d2bmjlhqzpii0vgkniam21dcimy9"; + url = "http://beta.quicklisp.org/archive/hunchentoot/2024-10-12/hunchentoot-v1.3.1.tgz"; + sha256 = "0g4lh26l2vd10ilk1hrfmpj6hpjb986jp191ha2j6p2q1pil3kgc"; system = "hunchentoot"; asd = "hunchentoot"; }); @@ -42257,22 +42881,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - hunchentoot-dev = (build-asdf-system { - pname = "hunchentoot-dev"; - version = "v1.3.0"; - asds = [ "hunchentoot-dev" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz"; - sha256 = "1z0m45lp6rv59g69l44gj3q3d2bmjlhqzpii0vgkniam21dcimy9"; - system = "hunchentoot-dev"; - asd = "hunchentoot"; - }); - systems = [ "hunchentoot-dev" ]; - lispLibs = [ (getAttr "cxml-stp" self) (getAttr "hunchentoot" self) (getAttr "hunchentoot-test" self) (getAttr "swank" self) (getAttr "xpath" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); hunchentoot-errors = (build-asdf-system { pname = "hunchentoot-errors"; version = "20231021-git"; @@ -42321,18 +42929,18 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - hunchentoot-test = (build-asdf-system { - pname = "hunchentoot-test"; - version = "v1.3.0"; - asds = [ "hunchentoot-test" ]; + hunchentoot-stuck-connection-monitor = (build-asdf-system { + pname = "hunchentoot-stuck-connection-monitor"; + version = "20241012-git"; + asds = [ "hunchentoot-stuck-connection-monitor" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/hunchentoot/2020-06-10/hunchentoot-v1.3.0.tgz"; - sha256 = "1z0m45lp6rv59g69l44gj3q3d2bmjlhqzpii0vgkniam21dcimy9"; - system = "hunchentoot-test"; - asd = "hunchentoot"; + url = "http://beta.quicklisp.org/archive/hunchentoot-stuck-connection-monitor/2024-10-12/hunchentoot-stuck-connection-monitor-20241012-git.tgz"; + sha256 = "1zbpxcym8pi9bf3m7f8f5aa2xhq048kx54sj1ka1vnz7rgccghc6"; + system = "hunchentoot-stuck-connection-monitor"; + asd = "hunchentoot-stuck-connection-monitor"; }); - systems = [ "hunchentoot-test" ]; - lispLibs = [ (getAttr "cl-ppcre" self) (getAttr "cl-who" self) (getAttr "drakma" self) (getAttr "hunchentoot" self) ]; + systems = [ "hunchentoot-stuck-connection-monitor" ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "hunchentoot" self) (getAttr "usocket" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -42655,11 +43263,11 @@ in lib.makeScope pkgs.newScope (self: { }); imago = (build-asdf-system { pname = "imago"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "imago" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/imago/2023-10-21/imago-20231021-git.tgz"; - sha256 = "0g4s3vrsg7rfn3hwh2lrfdz9k62w1flbrbibgnw64rvy618pkv41"; + url = "http://beta.quicklisp.org/archive/imago/2024-10-12/imago-20241012-git.tgz"; + sha256 = "1jhhlqbzdd68n8scl98dxfr92s1rgd43isgd317l3ynfjwz63wq1"; system = "imago"; asd = "imago"; }); @@ -42687,16 +43295,16 @@ in lib.makeScope pkgs.newScope (self: { }); in-nomine = (build-asdf-system { pname = "in-nomine"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "in-nomine" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/in-nomine/2023-06-18/in-nomine-20230618-git.tgz"; - sha256 = "1bs44mb9gd425w7d8d0f60khllq3jqb77fp3xms578if35cdv53p"; + url = "http://beta.quicklisp.org/archive/in-nomine/2024-10-12/in-nomine-20241012-git.tgz"; + sha256 = "1wcfxqj5dfmkg94rnz2nsmyw8iwicncxmklnirlngqqvlcrd0rv4"; system = "in-nomine"; asd = "in-nomine"; }); systems = [ "in-nomine" ]; - lispLibs = [ (getAttr "alexandria" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "trivial-arguments" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -42717,6 +43325,54 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + incless = (build-asdf-system { + pname = "incless"; + version = "20241012-git"; + asds = [ "incless" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/incless/2024-10-12/incless-20241012-git.tgz"; + sha256 = "1ypxhsx3fqwfng3b425bsgxbra7asny9261amdbfd6p59r51cyiy"; + system = "incless"; + asd = "incless"; + }); + systems = [ "incless" ]; + lispLibs = [ (getAttr "quaviver" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + incless-extrinsic = (build-asdf-system { + pname = "incless-extrinsic"; + version = "20241012-git"; + asds = [ "incless-extrinsic" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/incless/2024-10-12/incless-20241012-git.tgz"; + sha256 = "1ypxhsx3fqwfng3b425bsgxbra7asny9261amdbfd6p59r51cyiy"; + system = "incless-extrinsic"; + asd = "incless-extrinsic"; + }); + systems = [ "incless-extrinsic" ]; + lispLibs = [ (getAttr "incless" self) (getAttr "quaviver" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + incless-native = (build-asdf-system { + pname = "incless-native"; + version = "20241012-git"; + asds = [ "incless-native" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/incless/2024-10-12/incless-20241012-git.tgz"; + sha256 = "1ypxhsx3fqwfng3b425bsgxbra7asny9261amdbfd6p59r51cyiy"; + system = "incless-native"; + asd = "incless-native"; + }); + systems = [ "incless-native" ]; + lispLibs = [ (getAttr "incless" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); incognito-keywords = (build-asdf-system { pname = "incognito-keywords"; version = "1.1"; @@ -42751,11 +43407,11 @@ in lib.makeScope pkgs.newScope (self: { }); inferior-shell = (build-asdf-system { pname = "inferior-shell"; - version = "20200925-git"; + version = "20241012-git"; asds = [ "inferior-shell" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/inferior-shell/2020-09-25/inferior-shell-20200925-git.tgz"; - sha256 = "02qx37zzk5j4xmwh77k2qa2wvnzvaj6qml5dh2q7b6b1ljvgcj4m"; + url = "http://beta.quicklisp.org/archive/inferior-shell/2024-10-12/inferior-shell-20241012-git.tgz"; + sha256 = "1bmw0jjcpssahymqidz159pqbz5ficz56w7b97hfy1xnwkd2fwg5"; system = "inferior-shell"; asd = "inferior-shell"; }); @@ -43083,6 +43739,86 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + inravina = (build-asdf-system { + pname = "inravina"; + version = "20241012-git"; + asds = [ "inravina" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/inravina/2024-10-12/inravina-20241012-git.tgz"; + sha256 = "16kbxzsbb4vdhbf1dzgsgwj9n3cizk3sjixjgrfa8fal4nys7sa3"; + system = "inravina"; + asd = "inravina"; + }); + systems = [ "inravina" ]; + lispLibs = [ (getAttr "incless" self) (getAttr "nontrivial-gray-streams" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + inravina-examples = (build-asdf-system { + pname = "inravina-examples"; + version = "20241012-git"; + asds = [ "inravina-examples" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/inravina/2024-10-12/inravina-20241012-git.tgz"; + sha256 = "16kbxzsbb4vdhbf1dzgsgwj9n3cizk3sjixjgrfa8fal4nys7sa3"; + system = "inravina-examples"; + asd = "inravina-examples"; + }); + systems = [ "inravina-examples" ]; + lispLibs = [ (getAttr "cl-pdf" self) (getAttr "inravina-extrinsic" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + inravina-extrinsic = (build-asdf-system { + pname = "inravina-extrinsic"; + version = "20241012-git"; + asds = [ "inravina-extrinsic" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/inravina/2024-10-12/inravina-20241012-git.tgz"; + sha256 = "16kbxzsbb4vdhbf1dzgsgwj9n3cizk3sjixjgrfa8fal4nys7sa3"; + system = "inravina-extrinsic"; + asd = "inravina-extrinsic"; + }); + systems = [ "inravina-extrinsic" ]; + lispLibs = [ (getAttr "incless-extrinsic" self) (getAttr "inravina" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + inravina-native = (build-asdf-system { + pname = "inravina-native"; + version = "20241012-git"; + asds = [ "inravina-native" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/inravina/2024-10-12/inravina-20241012-git.tgz"; + sha256 = "16kbxzsbb4vdhbf1dzgsgwj9n3cizk3sjixjgrfa8fal4nys7sa3"; + system = "inravina-native"; + asd = "inravina-native"; + }); + systems = [ "inravina-native" ]; + lispLibs = [ (getAttr "inravina" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + inravina-shim = (build-asdf-system { + pname = "inravina-shim"; + version = "20241012-git"; + asds = [ "inravina-shim" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/inravina/2024-10-12/inravina-20241012-git.tgz"; + sha256 = "16kbxzsbb4vdhbf1dzgsgwj9n3cizk3sjixjgrfa8fal4nys7sa3"; + system = "inravina-shim"; + asd = "inravina-shim"; + }); + systems = [ "inravina-shim" ]; + lispLibs = [ (getAttr "incless-native" self) (getAttr "inravina" self) (getAttr "trivial-package-locks" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); instance-tracking = (build-asdf-system { pname = "instance-tracking"; version = "20221106-git"; @@ -43261,11 +43997,11 @@ in lib.makeScope pkgs.newScope (self: { }); introspect-environment = (build-asdf-system { pname = "introspect-environment"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "introspect-environment" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/introspect-environment/2022-02-20/introspect-environment-20220220-git.tgz"; - sha256 = "1p48jnr1im47529w0ciyar4hfwbivqi57zgllkmfrav09ffigk9s"; + url = "http://beta.quicklisp.org/archive/introspect-environment/2024-10-12/introspect-environment-20241012-git.tgz"; + sha256 = "1jll8h1fmf9i8nk3j3hrh62s858fzmly22zb690a2hnb685w3zlf"; system = "introspect-environment"; asd = "introspect-environment"; }); @@ -43275,11 +44011,11 @@ in lib.makeScope pkgs.newScope (self: { }); introspect-environment-test = (build-asdf-system { pname = "introspect-environment-test"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "introspect-environment-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/introspect-environment/2022-02-20/introspect-environment-20220220-git.tgz"; - sha256 = "1p48jnr1im47529w0ciyar4hfwbivqi57zgllkmfrav09ffigk9s"; + url = "http://beta.quicklisp.org/archive/introspect-environment/2024-10-12/introspect-environment-20241012-git.tgz"; + sha256 = "1jll8h1fmf9i8nk3j3hrh62s858fzmly22zb690a2hnb685w3zlf"; system = "introspect-environment-test"; asd = "introspect-environment-test"; }); @@ -43289,6 +44025,54 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + invistra = (build-asdf-system { + pname = "invistra"; + version = "20241012-git"; + asds = [ "invistra" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/invistra/2024-10-12/invistra-20241012-git.tgz"; + sha256 = "14ja35zqa85hjl9wxkwrff2wnlfflxi6lnkw0ic7jp7b59f80qas"; + system = "invistra"; + asd = "invistra"; + }); + systems = [ "invistra" ]; + lispLibs = [ (getAttr "acclimation" self) (getAttr "incless" self) (getAttr "inravina" self) (getAttr "nontrivial-gray-streams" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + invistra-extrinsic = (build-asdf-system { + pname = "invistra-extrinsic"; + version = "20241012-git"; + asds = [ "invistra-extrinsic" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/invistra/2024-10-12/invistra-20241012-git.tgz"; + sha256 = "14ja35zqa85hjl9wxkwrff2wnlfflxi6lnkw0ic7jp7b59f80qas"; + system = "invistra-extrinsic"; + asd = "invistra-extrinsic"; + }); + systems = [ "invistra-extrinsic" ]; + lispLibs = [ (getAttr "inravina-extrinsic" self) (getAttr "invistra" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + invistra-numeral = (build-asdf-system { + pname = "invistra-numeral"; + version = "20241012-git"; + asds = [ "invistra-numeral" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/invistra/2024-10-12/invistra-20241012-git.tgz"; + sha256 = "14ja35zqa85hjl9wxkwrff2wnlfflxi6lnkw0ic7jp7b59f80qas"; + system = "invistra-numeral"; + asd = "invistra-numeral"; + }); + systems = [ "invistra-numeral" ]; + lispLibs = [ (getAttr "invistra" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); iolib = (build-asdf-system { pname = "iolib"; version = "v0.8.4"; @@ -43425,11 +44209,11 @@ in lib.makeScope pkgs.newScope (self: { }); ironclad = (build-asdf-system { pname = "ironclad"; - version = "v0.59"; + version = "v0.61"; asds = [ "ironclad" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ironclad/2023-10-21/ironclad-v0.59.tgz"; - sha256 = "02abwy59v9hfdl2ya4h6l2hc1xrnvqlxzg9vlk87wmi92azpa8v9"; + url = "http://beta.quicklisp.org/archive/ironclad/2024-10-12/ironclad-v0.61.tgz"; + sha256 = "1yszjy6a0q1jvdgd7fpmnvi9851s8ivp4plscw27lbnl7jlj1pmk"; system = "ironclad"; asd = "ironclad"; }); @@ -43439,11 +44223,11 @@ in lib.makeScope pkgs.newScope (self: { }); ironclad-text = (build-asdf-system { pname = "ironclad-text"; - version = "v0.59"; + version = "v0.61"; asds = [ "ironclad-text" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ironclad/2023-10-21/ironclad-v0.59.tgz"; - sha256 = "02abwy59v9hfdl2ya4h6l2hc1xrnvqlxzg9vlk87wmi92azpa8v9"; + url = "http://beta.quicklisp.org/archive/ironclad/2024-10-12/ironclad-v0.61.tgz"; + sha256 = "1yszjy6a0q1jvdgd7fpmnvi9851s8ivp4plscw27lbnl7jlj1pmk"; system = "ironclad-text"; asd = "ironclad-text"; }); @@ -43899,11 +44683,11 @@ in lib.makeScope pkgs.newScope (self: { }); jose = (build-asdf-system { pname = "jose"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "jose" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/jose/2022-03-31/jose-20220331-git.tgz"; - sha256 = "154n6jx2f5psgzwz6k5ia6zxdjynnnbyxalxfhmm11s3rx028461"; + url = "http://beta.quicklisp.org/archive/jose/2024-10-12/jose-20241012-git.tgz"; + sha256 = "1z7xjy4ihxa8ay5vznhnxkjflfx6xmfpgwxdakk9wmkw30p2yn4h"; system = "jose"; asd = "jose"; }); @@ -44055,11 +44839,11 @@ in lib.makeScope pkgs.newScope (self: { }); json-mop = (build-asdf-system { pname = "json-mop"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "json-mop" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/json-mop/2023-10-21/json-mop-20231021-git.tgz"; - sha256 = "0l8sv1lww1ik1lpvwd53xb32qsam7p2b4lh5wb9dijd30bn78vqq"; + url = "http://beta.quicklisp.org/archive/json-mop/2024-10-12/json-mop-20241012-git.tgz"; + sha256 = "1q6mmq64hf4v448bnzfh8nxsxg5h18a9snh785r1fnvv1aij3fi1"; system = "json-mop"; asd = "json-mop"; }); @@ -44071,11 +44855,11 @@ in lib.makeScope pkgs.newScope (self: { }); json-mop-tests = (build-asdf-system { pname = "json-mop-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "json-mop-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/json-mop/2023-10-21/json-mop-20231021-git.tgz"; - sha256 = "0l8sv1lww1ik1lpvwd53xb32qsam7p2b4lh5wb9dijd30bn78vqq"; + url = "http://beta.quicklisp.org/archive/json-mop/2024-10-12/json-mop-20241012-git.tgz"; + sha256 = "1q6mmq64hf4v448bnzfh8nxsxg5h18a9snh785r1fnvv1aij3fi1"; system = "json-mop-tests"; asd = "json-mop-tests"; }); @@ -44183,16 +44967,16 @@ in lib.makeScope pkgs.newScope (self: { }); jsonrpc = (build-asdf-system { pname = "jsonrpc"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "jsonrpc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/jsonrpc/2023-10-21/jsonrpc-20231021-git.tgz"; - sha256 = "1w75mn8ydw5xk0xc9sv657ia7wjk4030gmqf3m1q12awj3bzfxqr"; + url = "http://beta.quicklisp.org/archive/jsonrpc/2024-10-12/jsonrpc-20241012-git.tgz"; + sha256 = "1wsc6bv8xpzad0lgrlldzrpb9r4aksnw7ss2ifwa7ykbzfxcr8gi"; system = "jsonrpc"; asd = "jsonrpc"; }); systems = [ "jsonrpc" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "chanl" self) (getAttr "dissect" self) (getAttr "event-emitter" self) (getAttr "usocket" self) (getAttr "vom" self) (getAttr "yason" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "chanl" self) (getAttr "dissect" self) (getAttr "trivial-timeout" self) (getAttr "usocket" self) (getAttr "vom" self) (getAttr "yason" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -44245,11 +45029,11 @@ in lib.makeScope pkgs.newScope (self: { }); jupyter-lab-extension = (build-asdf-system { pname = "jupyter-lab-extension"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "jupyter-lab-extension" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/common-lisp-jupyter/2023-10-21/common-lisp-jupyter-20231021-git.tgz"; - sha256 = "0fj3yallizxld8zsxvva4l5mbp1i4rm73r4balp3r8c6lkrapsrm"; + url = "http://beta.quicklisp.org/archive/common-lisp-jupyter/2024-10-12/common-lisp-jupyter-20241012-git.tgz"; + sha256 = "1qbrzv0myxfxq7rzm2y9cm2xymkl982982h2kbsl7d1yd5hrjvl6"; system = "jupyter-lab-extension"; asd = "jupyter-lab-extension"; }); @@ -44485,11 +45269,11 @@ in lib.makeScope pkgs.newScope (self: { }); khazern = (build-asdf-system { pname = "khazern"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "khazern" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/khazern/2023-10-21/khazern-20231021-git.tgz"; - sha256 = "1fn9sggwipard4d3fxfr9dlip1ww4i03djdflchl5dkafp8mgq77"; + url = "http://beta.quicklisp.org/archive/khazern/2024-10-12/khazern-20241012-git.tgz"; + sha256 = "1kc15gc0kahp8w9qfyb4yr1gnwqhk8dcvi5gm678bsnbqipaj30h"; system = "khazern"; asd = "khazern"; }); @@ -44501,11 +45285,11 @@ in lib.makeScope pkgs.newScope (self: { }); khazern-extrinsic = (build-asdf-system { pname = "khazern-extrinsic"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "khazern-extrinsic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/khazern/2023-10-21/khazern-20231021-git.tgz"; - sha256 = "1fn9sggwipard4d3fxfr9dlip1ww4i03djdflchl5dkafp8mgq77"; + url = "http://beta.quicklisp.org/archive/khazern/2024-10-12/khazern-20241012-git.tgz"; + sha256 = "1kc15gc0kahp8w9qfyb4yr1gnwqhk8dcvi5gm678bsnbqipaj30h"; system = "khazern-extrinsic"; asd = "khazern-extrinsic"; }); @@ -44517,11 +45301,11 @@ in lib.makeScope pkgs.newScope (self: { }); khazern-intrinsic = (build-asdf-system { pname = "khazern-intrinsic"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "khazern-intrinsic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/khazern/2023-10-21/khazern-20231021-git.tgz"; - sha256 = "1fn9sggwipard4d3fxfr9dlip1ww4i03djdflchl5dkafp8mgq77"; + url = "http://beta.quicklisp.org/archive/khazern/2024-10-12/khazern-20241012-git.tgz"; + sha256 = "1kc15gc0kahp8w9qfyb4yr1gnwqhk8dcvi5gm678bsnbqipaj30h"; system = "khazern-intrinsic"; asd = "khazern-intrinsic"; }); @@ -44533,11 +45317,11 @@ in lib.makeScope pkgs.newScope (self: { }); khazern-sequence = (build-asdf-system { pname = "khazern-sequence"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "khazern-sequence" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/khazern/2023-10-21/khazern-20231021-git.tgz"; - sha256 = "1fn9sggwipard4d3fxfr9dlip1ww4i03djdflchl5dkafp8mgq77"; + url = "http://beta.quicklisp.org/archive/khazern/2024-10-12/khazern-20241012-git.tgz"; + sha256 = "1kc15gc0kahp8w9qfyb4yr1gnwqhk8dcvi5gm678bsnbqipaj30h"; system = "khazern-sequence"; asd = "khazern-sequence"; }); @@ -44549,11 +45333,11 @@ in lib.makeScope pkgs.newScope (self: { }); khazern-sequence-extrinsic = (build-asdf-system { pname = "khazern-sequence-extrinsic"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "khazern-sequence-extrinsic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/khazern/2023-10-21/khazern-20231021-git.tgz"; - sha256 = "1fn9sggwipard4d3fxfr9dlip1ww4i03djdflchl5dkafp8mgq77"; + url = "http://beta.quicklisp.org/archive/khazern/2024-10-12/khazern-20241012-git.tgz"; + sha256 = "1kc15gc0kahp8w9qfyb4yr1gnwqhk8dcvi5gm678bsnbqipaj30h"; system = "khazern-sequence-extrinsic"; asd = "khazern-sequence-extrinsic"; }); @@ -44565,11 +45349,11 @@ in lib.makeScope pkgs.newScope (self: { }); khazern-sequence-intrinsic = (build-asdf-system { pname = "khazern-sequence-intrinsic"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "khazern-sequence-intrinsic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/khazern/2023-10-21/khazern-20231021-git.tgz"; - sha256 = "1fn9sggwipard4d3fxfr9dlip1ww4i03djdflchl5dkafp8mgq77"; + url = "http://beta.quicklisp.org/archive/khazern/2024-10-12/khazern-20241012-git.tgz"; + sha256 = "1kc15gc0kahp8w9qfyb4yr1gnwqhk8dcvi5gm678bsnbqipaj30h"; system = "khazern-sequence-intrinsic"; asd = "khazern-sequence-intrinsic"; }); @@ -44625,6 +45409,22 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ ]; meta = {}; }); + knx-conn = (build-asdf-system { + pname = "knx-conn"; + version = "20241012-git"; + asds = [ "knx-conn" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/knx-conn/2024-10-12/knx-conn-20241012-git.tgz"; + sha256 = "1zq716fr1mq096hbpndfawyi1a7pr6gsyxnv2g1b00vpgyf37c4r"; + system = "knx-conn"; + asd = "knx-conn"; + }); + systems = [ "knx-conn" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "binding-arrows" self) (getAttr "local-time" self) (getAttr "log4cl" self) (getAttr "sento" self) (getAttr "usocket" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); l-math = (build-asdf-system { pname = "l-math"; version = "20190307-git"; @@ -44691,11 +45491,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack = (build-asdf-system { pname = "lack"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack"; asd = "lack"; }); @@ -44705,11 +45505,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-app-directory = (build-asdf-system { pname = "lack-app-directory"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-app-directory" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-app-directory"; asd = "lack-app-directory"; }); @@ -44721,11 +45521,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-app-file = (build-asdf-system { pname = "lack-app-file"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-app-file" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-app-file"; asd = "lack-app-file"; }); @@ -44737,11 +45537,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-component = (build-asdf-system { pname = "lack-component"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-component" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-component"; asd = "lack-component"; }); @@ -44751,11 +45551,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-accesslog = (build-asdf-system { pname = "lack-middleware-accesslog"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-accesslog" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-middleware-accesslog"; asd = "lack-middleware-accesslog"; }); @@ -44767,11 +45567,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-anypool = (build-asdf-system { pname = "lack-middleware-anypool"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-anypool" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/anypool/2023-10-21/anypool-20231021-git.tgz"; - sha256 = "07ha0x6qv1qw68iim3bcr5fk2pnxk0knk8lwyylbvm9rqjmd672i"; + url = "http://beta.quicklisp.org/archive/anypool/2024-10-12/anypool-20241012-git.tgz"; + sha256 = "1ffssc5fzh7gj0z94xxfb3mk5cwja65lrhxyfgib15a6yxqf1kk1"; system = "lack-middleware-anypool"; asd = "lack-middleware-anypool"; }); @@ -44783,11 +45583,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-auth-basic = (build-asdf-system { pname = "lack-middleware-auth-basic"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-auth-basic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-middleware-auth-basic"; asd = "lack-middleware-auth-basic"; }); @@ -44799,11 +45599,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-backtrace = (build-asdf-system { pname = "lack-middleware-backtrace"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-backtrace" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-middleware-backtrace"; asd = "lack-middleware-backtrace"; }); @@ -44829,11 +45629,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-csrf = (build-asdf-system { pname = "lack-middleware-csrf"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-csrf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-middleware-csrf"; asd = "lack-middleware-csrf"; }); @@ -44843,13 +45643,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + lack-middleware-dbpool = (build-asdf-system { + pname = "lack-middleware-dbpool"; + version = "20241012-git"; + asds = [ "lack-middleware-dbpool" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; + system = "lack-middleware-dbpool"; + asd = "lack-middleware-dbpool"; + }); + systems = [ "lack-middleware-dbpool" ]; + lispLibs = [ (getAttr "anypool" self) (getAttr "dbi" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); lack-middleware-mito = (build-asdf-system { pname = "lack-middleware-mito"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-mito" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mito/2023-10-21/mito-20231021-git.tgz"; - sha256 = "12wx1mb4aprvvh1qv41xrggpr7ffd943mxia0ppz0pkqc8zqrg4z"; + url = "http://beta.quicklisp.org/archive/mito/2024-10-12/mito-20241012-git.tgz"; + sha256 = "0nz72qss2jji0narxffpnpfgz74grvhmwqqlydpw6wv3ji1rrrq3"; system = "lack-middleware-mito"; asd = "lack-middleware-mito"; }); @@ -44861,11 +45677,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-mount = (build-asdf-system { pname = "lack-middleware-mount"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-mount" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-middleware-mount"; asd = "lack-middleware-mount"; }); @@ -44877,11 +45693,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-session = (build-asdf-system { pname = "lack-middleware-session"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-session" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-middleware-session"; asd = "lack-middleware-session"; }); @@ -44893,11 +45709,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-middleware-static = (build-asdf-system { pname = "lack-middleware-static"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-middleware-static" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-middleware-static"; asd = "lack-middleware-static"; }); @@ -44909,11 +45725,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-request = (build-asdf-system { pname = "lack-request"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-request" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-request"; asd = "lack-request"; }); @@ -44925,11 +45741,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-response = (build-asdf-system { pname = "lack-response"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-response" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-response"; asd = "lack-response"; }); @@ -44941,11 +45757,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-session-store-dbi = (build-asdf-system { pname = "lack-session-store-dbi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-session-store-dbi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-session-store-dbi"; asd = "lack-session-store-dbi"; }); @@ -44957,11 +45773,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-session-store-redis = (build-asdf-system { pname = "lack-session-store-redis"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-session-store-redis" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-session-store-redis"; asd = "lack-session-store-redis"; }); @@ -44973,11 +45789,11 @@ in lib.makeScope pkgs.newScope (self: { }); lack-test = (build-asdf-system { pname = "lack-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-test"; asd = "lack-test"; }); @@ -44989,25 +45805,25 @@ in lib.makeScope pkgs.newScope (self: { }); lack-util = (build-asdf-system { pname = "lack-util"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-util" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-util"; asd = "lack-util"; }); systems = [ "lack-util" ]; - lispLibs = [ (getAttr "cl-isaac" self) ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cl-isaac" self) ]; meta = {}; }); lack-util-writer-stream = (build-asdf-system { pname = "lack-util-writer-stream"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lack-util-writer-stream" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; + url = "http://beta.quicklisp.org/archive/lack/2024-10-12/lack-20241012-git.tgz"; + sha256 = "0w1gw5sma9lajap0v2fvy7b5nysswrakmqvczhv48wp65i9lvcys"; system = "lack-util-writer-stream"; asd = "lack-util-writer-stream"; }); @@ -45177,11 +45993,11 @@ in lib.makeScope pkgs.newScope (self: { }); lass = (build-asdf-system { pname = "lass"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lass" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lass/2023-10-21/lass-20231021-git.tgz"; - sha256 = "1wax2kykc9ff0sk2linp9v8fcsm5ay6idpq365vivady9fh504r5"; + url = "http://beta.quicklisp.org/archive/lass/2024-10-12/lass-20241012-git.tgz"; + sha256 = "1b6a3v763i5fcdxczffd59kh4m73p4ilz6az85apd22apc8lr80z"; system = "lass"; asd = "lass"; }); @@ -45399,11 +46215,11 @@ in lib.makeScope pkgs.newScope (self: { }); lemmy-api = (build-asdf-system { pname = "lemmy-api"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lemmy-api" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lemmy-api/2023-10-21/lemmy-api-20231021-git.tgz"; - sha256 = "1m8qsxbb20k7x5sjqffjllm66qb5sjy4vj9ra167c7qrahz9cnrn"; + url = "http://beta.quicklisp.org/archive/lemmy-api/2024-10-12/lemmy-api-20241012-git.tgz"; + sha256 = "0krlf3zw4snpkgqb564xk82b1d0q2scqs05s1kalr773a5d801s7"; system = "lemmy-api"; asd = "lemmy-api"; }); @@ -45413,6 +46229,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + lemmy-api-bindings-generator = (build-asdf-system { + pname = "lemmy-api-bindings-generator"; + version = "20241012-git"; + asds = [ "lemmy-api-bindings-generator" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/lemmy-api/2024-10-12/lemmy-api-20241012-git.tgz"; + sha256 = "0krlf3zw4snpkgqb564xk82b1d0q2scqs05s1kalr773a5d801s7"; + system = "lemmy-api-bindings-generator"; + asd = "lemmy-api-bindings-generator"; + }); + systems = [ "lemmy-api-bindings-generator" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); lense = (build-asdf-system { pname = "lense"; version = "20201220-git"; @@ -45493,11 +46325,11 @@ in lib.makeScope pkgs.newScope (self: { }); letv = (build-asdf-system { pname = "letv"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "letv" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/letv/2023-06-18/letv-20230618-git.tgz"; - sha256 = "1xig71jlsvwa2p364gngpw9l0i5ljh34d1dc20wdc1qwsyp404f5"; + url = "http://beta.quicklisp.org/archive/letv/2024-10-12/letv-20241012-git.tgz"; + sha256 = "000alkhqb2n47y6849pswp7dg9pd0wwgswfrcm0sm4bz3r7dyjx1"; system = "letv"; asd = "letv"; }); @@ -45707,11 +46539,11 @@ in lib.makeScope pkgs.newScope (self: { }); lib-helper = (build-asdf-system { pname = "lib-helper"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lib-helper" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-lib-helper/2023-10-21/cl-lib-helper-20231021-git.tgz"; - sha256 = "0lrshlw8j0lgmzp0syq8i9a3mgn52lv0y56iihlp1nzfp250z23w"; + url = "http://beta.quicklisp.org/archive/cl-lib-helper/2024-10-12/cl-lib-helper-20241012-git.tgz"; + sha256 = "11aq60cs510kx9gj709q3kkgddk8aqb32pdzyikr9jylig050wyk"; system = "lib-helper"; asd = "lib-helper"; }); @@ -45723,11 +46555,11 @@ in lib.makeScope pkgs.newScope (self: { }); lib-helper-test-system = (build-asdf-system { pname = "lib-helper-test-system"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lib-helper-test-system" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-lib-helper/2023-10-21/cl-lib-helper-20231021-git.tgz"; - sha256 = "0lrshlw8j0lgmzp0syq8i9a3mgn52lv0y56iihlp1nzfp250z23w"; + url = "http://beta.quicklisp.org/archive/cl-lib-helper/2024-10-12/cl-lib-helper-20241012-git.tgz"; + sha256 = "11aq60cs510kx9gj709q3kkgddk8aqb32pdzyikr9jylig050wyk"; system = "lib-helper-test-system"; asd = "lib-helper-test-system"; }); @@ -45739,11 +46571,11 @@ in lib.makeScope pkgs.newScope (self: { }); libcmark = (build-asdf-system { pname = "libcmark"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "libcmark" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-cmark/2023-02-14/cl-cmark-20230214-git.tgz"; - sha256 = "0d61z5y7pyv2y7sjbq3i5047z4jazkxnlqypr32yvyn5qdd78yfv"; + url = "http://beta.quicklisp.org/archive/cl-cmark/2024-10-12/cl-cmark-20241012-git.tgz"; + sha256 = "1l4i530161ppfz0wn1da7g7dwf644ppp1afrq2p7qfkajm7dcfg5"; system = "libcmark"; asd = "libcmark"; }); @@ -45835,11 +46667,11 @@ in lib.makeScope pkgs.newScope (self: { }); lichat-protocol = (build-asdf-system { pname = "lichat-protocol"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lichat-protocol" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lichat-protocol/2023-10-21/lichat-protocol-20231021-git.tgz"; - sha256 = "0imaa2x6hv93bwhn8j595xspkvjpp53kasdd47v24hzi7qn46m9l"; + url = "http://beta.quicklisp.org/archive/lichat-protocol/2024-10-12/lichat-protocol-20241012-git.tgz"; + sha256 = "0y8546aaf539jnl29r4a8sa975jak1ld4d62w2n1kp8s9nb80z11"; system = "lichat-protocol"; asd = "lichat-protocol"; }); @@ -45867,11 +46699,11 @@ in lib.makeScope pkgs.newScope (self: { }); lichat-tcp-client = (build-asdf-system { pname = "lichat-tcp-client"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lichat-tcp-client" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lichat-tcp-client/2023-10-21/lichat-tcp-client-20231021-git.tgz"; - sha256 = "1l03y6iyw1yrd3nq9281wzssfw09wy32f9k893kzdwd0yvklv0m0"; + url = "http://beta.quicklisp.org/archive/lichat-tcp-client/2024-10-12/lichat-tcp-client-20241012-git.tgz"; + sha256 = "1wwh396z7185nylrsz47b6l45hyfq6mjrm620fk5bsxr3jrzxs25"; system = "lichat-tcp-client"; asd = "lichat-tcp-client"; }); @@ -46041,11 +46873,11 @@ in lib.makeScope pkgs.newScope (self: { }); linear-programming = (build-asdf-system { pname = "linear-programming"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "linear-programming" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/linear-programming/2023-06-18/linear-programming-20230618-git.tgz"; - sha256 = "13q29wki7qappqrw1m3lfazvgqsyyscmnwd8y0lmjs9d877kh40m"; + url = "http://beta.quicklisp.org/archive/linear-programming/2024-10-12/linear-programming-20241012-git.tgz"; + sha256 = "01dy54ycmalqlk4wrkw1y6vixr0mk0nxmfy3p1w5kpdwp3642h9g"; system = "linear-programming"; asd = "linear-programming"; }); @@ -46073,11 +46905,11 @@ in lib.makeScope pkgs.newScope (self: { }); linear-programming-test = (build-asdf-system { pname = "linear-programming-test"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "linear-programming-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/linear-programming/2023-06-18/linear-programming-20230618-git.tgz"; - sha256 = "13q29wki7qappqrw1m3lfazvgqsyyscmnwd8y0lmjs9d877kh40m"; + url = "http://beta.quicklisp.org/archive/linear-programming/2024-10-12/linear-programming-20241012-git.tgz"; + sha256 = "01dy54ycmalqlk4wrkw1y6vixr0mk0nxmfy3p1w5kpdwp3642h9g"; system = "linear-programming-test"; asd = "linear-programming-test"; }); @@ -46185,11 +47017,11 @@ in lib.makeScope pkgs.newScope (self: { }); lisp-binary = (build-asdf-system { pname = "lisp-binary"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lisp-binary" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lisp-binary/2023-10-21/lisp-binary-20231021-git.tgz"; - sha256 = "141hmgib601dpdvcg2pbfl39wvx7s3g97kzc37fkfs4rllylxpsg"; + url = "http://beta.quicklisp.org/archive/lisp-binary/2024-10-12/lisp-binary-20241012-git.tgz"; + sha256 = "1zgk6pbhjj4agazffv6mc3hjzyg4xh256sla83iqy5mwm172d810"; system = "lisp-binary"; asd = "lisp-binary"; }); @@ -46199,11 +47031,11 @@ in lib.makeScope pkgs.newScope (self: { }); lisp-binary-test = (build-asdf-system { pname = "lisp-binary-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lisp-binary-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lisp-binary/2023-10-21/lisp-binary-20231021-git.tgz"; - sha256 = "141hmgib601dpdvcg2pbfl39wvx7s3g97kzc37fkfs4rllylxpsg"; + url = "http://beta.quicklisp.org/archive/lisp-binary/2024-10-12/lisp-binary-20241012-git.tgz"; + sha256 = "1zgk6pbhjj4agazffv6mc3hjzyg4xh256sla83iqy5mwm172d810"; system = "lisp-binary-test"; asd = "lisp-binary-test"; }); @@ -46215,11 +47047,11 @@ in lib.makeScope pkgs.newScope (self: { }); lisp-chat = (build-asdf-system { pname = "lisp-chat"; - version = "20210228-git"; + version = "20241012-git"; asds = [ "lisp-chat" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lisp-chat/2021-02-28/lisp-chat-20210228-git.tgz"; - sha256 = "0gh78lb6m2790j5z64qij6v1s5yr501idbppg2ccyayl4f8bdpzi"; + url = "http://beta.quicklisp.org/archive/lisp-chat/2024-10-12/lisp-chat-20241012-git.tgz"; + sha256 = "16ckgxg0c3rx6qvwj5cn6rmfgxbj7587r9g342bw3nfxab0sqlzd"; system = "lisp-chat"; asd = "lisp-chat"; }); @@ -46231,11 +47063,11 @@ in lib.makeScope pkgs.newScope (self: { }); lisp-critic = (build-asdf-system { pname = "lisp-critic"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lisp-critic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lisp-critic/2023-10-21/lisp-critic-20231021-git.tgz"; - sha256 = "15zg05pqfs2dhc5j7gfkwjmxawaizjpyb0p7386mpl4w93l9h84l"; + url = "http://beta.quicklisp.org/archive/lisp-critic/2024-10-12/lisp-critic-20241012-git.tgz"; + sha256 = "19czs2m8h3kgwjd10pdk9r5kazbgly8g82a5q3bs7pqkja42i7x7"; system = "lisp-critic"; asd = "lisp-critic"; }); @@ -46357,11 +47189,11 @@ in lib.makeScope pkgs.newScope (self: { }); lisp-pay = (build-asdf-system { pname = "lisp-pay"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lisp-pay" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lisp-pay/2023-10-21/lisp-pay-20231021-git.tgz"; - sha256 = "14d8jvl126vvg2sd5c35jq4kdrl2a9nfl2xh2qk5zslaqvsknwq8"; + url = "http://beta.quicklisp.org/archive/lisp-pay/2024-10-12/lisp-pay-20241012-git.tgz"; + sha256 = "1rbkzngas67ras5cf90y3dk99md05jmnjgsh45khj4b6kzw5a4v5"; system = "lisp-pay"; asd = "lisp-pay"; }); @@ -46405,11 +47237,11 @@ in lib.makeScope pkgs.newScope (self: { }); lisp-stat = (build-asdf-system { pname = "lisp-stat"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lisp-stat" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lisp-stat/2023-10-21/lisp-stat-20231021-git.tgz"; - sha256 = "1frl5psjf5l078ml3092wj02r72k7hkx9sbv5cz9nq0i52bggqim"; + url = "http://beta.quicklisp.org/archive/lisp-stat/2024-10-12/lisp-stat-20241012-git.tgz"; + sha256 = "0igrrwlfvdqxdqwqij819zlkma6b815d10v3kzh1r6hp9fhn0r3p"; system = "lisp-stat"; asd = "lisp-stat"; }); @@ -47041,11 +47873,11 @@ in lib.makeScope pkgs.newScope (self: { }); lispcord = (build-asdf-system { pname = "lispcord"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "lispcord" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lispcord/2023-06-18/lispcord-20230618-git.tgz"; - sha256 = "12v3n8gqry746f94wz7djhk3f3adzfnh8jga9c9lcsnwkgsrrc6a"; + url = "http://beta.quicklisp.org/archive/lispcord/2024-10-12/lispcord-20241012-git.tgz"; + sha256 = "11xwrrvvqdm1wdnxrxqgizgw25plsn28n2k0lm5kakax9n221brn"; system = "lispcord"; asd = "lispcord"; }); @@ -47103,22 +47935,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - listoflist = (build-asdf-system { - pname = "listoflist"; - version = "20140826-git"; - asds = [ "listoflist" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/listoflist/2014-08-26/listoflist-20140826-git.tgz"; - sha256 = "02bj2ldn7sfjbbn9zd66lwysymrv3f6g4q9hwsjbcg4fkpbk6qk3"; - system = "listoflist"; - asd = "listoflist"; - }); - systems = [ "listoflist" ]; - lispLibs = [ (getAttr "clunit" self) (getAttr "xarray" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); listopia = (build-asdf-system { pname = "listopia"; version = "20210411-git"; @@ -47249,11 +48065,11 @@ in lib.makeScope pkgs.newScope (self: { }); lla = (build-asdf-system { pname = "lla"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "lla" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lla/2023-06-18/lla-20230618-git.tgz"; - sha256 = "18k00q0q6634cjzz5mrn4vq1w7y4pwqkvn4vrnxjja3a9hmxmz22"; + url = "http://beta.quicklisp.org/archive/lla/2024-10-12/lla-20241012-git.tgz"; + sha256 = "19j11z8m00ry2bfn3ahai155b6qz995qqg7ipzvjdr05sj4gfb58"; system = "lla"; asd = "lla"; }); @@ -47359,11 +48175,11 @@ in lib.makeScope pkgs.newScope (self: { }); local-time = (build-asdf-system { pname = "local-time"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "local-time" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/local-time/2023-10-21/local-time-20231021-git.tgz"; - sha256 = "05h40dq8bqx7p7ri67c81fkfm4zzbichyicrdj4srs0vvlwxiqpj"; + url = "http://beta.quicklisp.org/archive/local-time/2024-10-12/local-time-20241012-git.tgz"; + sha256 = "0jb1mb5zs4ryiah8zjzhpln1z686mfmpmvg1phgpr2mh9vvlgjk2"; system = "local-time"; asd = "local-time"; }); @@ -47419,11 +48235,11 @@ in lib.makeScope pkgs.newScope (self: { }); log4cl-extras = (build-asdf-system { pname = "log4cl-extras"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "log4cl-extras" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/log4cl-extras/2023-06-18/log4cl-extras-20230618-git.tgz"; - sha256 = "0nhzsh9sm19kd6nwn8k4j8rkfpjnkfx3i30zqr2kvjs0h27ljpjy"; + url = "http://beta.quicklisp.org/archive/log4cl-extras/2024-10-12/log4cl-extras-20241012-git.tgz"; + sha256 = "17p8y884163j0gab0idra297kivzdgagl2im0gkmdhgrh0dw3b53"; system = "log4cl-extras"; asd = "log4cl-extras"; }); @@ -47435,11 +48251,11 @@ in lib.makeScope pkgs.newScope (self: { }); log4cl-extras-test = (build-asdf-system { pname = "log4cl-extras-test"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "log4cl-extras-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/log4cl-extras/2023-06-18/log4cl-extras-20230618-git.tgz"; - sha256 = "0nhzsh9sm19kd6nwn8k4j8rkfpjnkfx3i30zqr2kvjs0h27ljpjy"; + url = "http://beta.quicklisp.org/archive/log4cl-extras/2024-10-12/log4cl-extras-20241012-git.tgz"; + sha256 = "17p8y884163j0gab0idra297kivzdgagl2im0gkmdhgrh0dw3b53"; system = "log4cl-extras-test"; asd = "log4cl-extras-test"; }); @@ -47655,10 +48471,10 @@ in lib.makeScope pkgs.newScope (self: { }); lracer = (build-asdf-system { pname = "lracer"; - version = "20190710-git"; + version = "20241012-git"; asds = [ "lracer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/racer/2019-07-10/racer-20190710-git.tgz"; + url = "http://beta.quicklisp.org/archive/racer/2024-10-12/racer-20241012-git.tgz"; sha256 = "120x046c6vcrj70vb6ryf04mwbr8c6a15llb68x7h1siij8vwgvk"; system = "lracer"; asd = "lracer"; @@ -47687,11 +48503,11 @@ in lib.makeScope pkgs.newScope (self: { }); lru-cache = (build-asdf-system { pname = "lru-cache"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lru-cache" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lru-cache/2023-10-21/lru-cache-20231021-git.tgz"; - sha256 = "1z53q2knbi93ipi6mpfhsjh0slg49g7prxh5sgl95xxbgck0xhm5"; + url = "http://beta.quicklisp.org/archive/lru-cache/2024-10-12/lru-cache-20241012-git.tgz"; + sha256 = "035pl11j1l129akgf33w5c0b8c6gxw1xpj54r0fzxz3dw7cs8pg1"; system = "lru-cache"; asd = "lru-cache"; }); @@ -47703,11 +48519,11 @@ in lib.makeScope pkgs.newScope (self: { }); lru-cache-test = (build-asdf-system { pname = "lru-cache-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "lru-cache-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/lru-cache/2023-10-21/lru-cache-20231021-git.tgz"; - sha256 = "1z53q2knbi93ipi6mpfhsjh0slg49g7prxh5sgl95xxbgck0xhm5"; + url = "http://beta.quicklisp.org/archive/lru-cache/2024-10-12/lru-cache-20241012-git.tgz"; + sha256 = "035pl11j1l129akgf33w5c0b8c6gxw1xpj54r0fzxz3dw7cs8pg1"; system = "lru-cache-test"; asd = "lru-cache-test"; }); @@ -47795,38 +48611,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - luckless = (build-asdf-system { - pname = "luckless"; - version = "20231021-git"; - asds = [ "luckless" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/luckless/2023-10-21/luckless-20231021-git.tgz"; - sha256 = "1l2lcm0xy664bpsvin7va03vi9kxfp874axhjq5pq4cfigmr4raj"; - system = "luckless"; - asd = "luckless"; - }); - systems = [ "luckless" ]; - lispLibs = [ (getAttr "atomics" self) (getAttr "documentation-utils" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - luckless-test = (build-asdf-system { - pname = "luckless-test"; - version = "20231021-git"; - asds = [ "luckless-test" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/luckless/2023-10-21/luckless-20231021-git.tgz"; - sha256 = "1l2lcm0xy664bpsvin7va03vi9kxfp874axhjq5pq4cfigmr4raj"; - system = "luckless-test"; - asd = "luckless-test"; - }); - systems = [ "luckless-test" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "luckless" self) (getAttr "parachute" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); lunamech-matrix-api = (build-asdf-system { pname = "lunamech-matrix-api"; version = "20230214-git"; @@ -47907,6 +48691,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + machine-state = (build-asdf-system { + pname = "machine-state"; + version = "20241012-git"; + asds = [ "machine-state" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/machine-state/2024-10-12/machine-state-20241012-git.tgz"; + sha256 = "1zmag6j9zfpnv9xfdjzb6dfg3jzvhandm1plyv50i619p0w0nagk"; + system = "machine-state"; + asd = "machine-state"; + }); + systems = [ "machine-state" ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "pathname-utils" self) (getAttr "trivial-features" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); macro-html = (build-asdf-system { pname = "macro-html"; version = "20151218-git"; @@ -48053,16 +48853,16 @@ in lib.makeScope pkgs.newScope (self: { }); magicl = (build-asdf-system { pname = "magicl"; - version = "v0.9.1"; + version = "v0.11.0"; asds = [ "magicl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/magicl/2021-04-11/magicl-v0.9.1.tgz"; - sha256 = "0x9p55qin399jhr5md88nij8fv78b64xjhww7ys364pkjnx8ak9v"; + url = "http://beta.quicklisp.org/archive/magicl/2024-10-12/magicl-v0.11.0.tgz"; + sha256 = "10scw5qhrgjhfrlia5iqn2yy2zj1d57m45g479vg56lw849whscw"; system = "magicl"; asd = "magicl"; }); systems = [ "magicl" ]; - lispLibs = [ (getAttr "abstract-classes" self) (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cffi-libffi" self) (getAttr "interface" self) (getAttr "policy-cond" self) ]; + lispLibs = [ (getAttr "abstract-classes" self) (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cffi-libffi" self) (getAttr "interface" self) (getAttr "policy-cond" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) ]; meta = { broken = true; hydraPlatforms = [ ]; @@ -48070,11 +48870,11 @@ in lib.makeScope pkgs.newScope (self: { }); magicl-examples = (build-asdf-system { pname = "magicl-examples"; - version = "v0.9.1"; + version = "v0.11.0"; asds = [ "magicl-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/magicl/2021-04-11/magicl-v0.9.1.tgz"; - sha256 = "0x9p55qin399jhr5md88nij8fv78b64xjhww7ys364pkjnx8ak9v"; + url = "http://beta.quicklisp.org/archive/magicl/2024-10-12/magicl-v0.11.0.tgz"; + sha256 = "10scw5qhrgjhfrlia5iqn2yy2zj1d57m45g479vg56lw849whscw"; system = "magicl-examples"; asd = "magicl-examples"; }); @@ -48086,59 +48886,59 @@ in lib.makeScope pkgs.newScope (self: { }); magicl-gen = (build-asdf-system { pname = "magicl-gen"; - version = "v0.9.1"; + version = "v0.11.0"; asds = [ "magicl-gen" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/magicl/2021-04-11/magicl-v0.9.1.tgz"; - sha256 = "0x9p55qin399jhr5md88nij8fv78b64xjhww7ys364pkjnx8ak9v"; + url = "http://beta.quicklisp.org/archive/magicl/2024-10-12/magicl-v0.11.0.tgz"; + sha256 = "10scw5qhrgjhfrlia5iqn2yy2zj1d57m45g479vg56lw849whscw"; system = "magicl-gen"; asd = "magicl-gen"; }); systems = [ "magicl-gen" ]; - lispLibs = [ (getAttr "abstract-classes" self) (getAttr "cffi" self) (getAttr "cffi-libffi" self) ]; + lispLibs = [ (getAttr "abstract-classes" self) (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cffi-libffi" self) (getAttr "interface" self) (getAttr "policy-cond" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; }); magicl-tests = (build-asdf-system { pname = "magicl-tests"; - version = "v0.9.1"; + version = "v0.11.0"; asds = [ "magicl-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/magicl/2021-04-11/magicl-v0.9.1.tgz"; - sha256 = "0x9p55qin399jhr5md88nij8fv78b64xjhww7ys364pkjnx8ak9v"; + url = "http://beta.quicklisp.org/archive/magicl/2024-10-12/magicl-v0.11.0.tgz"; + sha256 = "10scw5qhrgjhfrlia5iqn2yy2zj1d57m45g479vg56lw849whscw"; system = "magicl-tests"; asd = "magicl-tests"; }); systems = [ "magicl-tests" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "fiasco" self) (getAttr "magicl" self) (getAttr "magicl-examples" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "fiasco" self) (getAttr "magicl" self) (getAttr "magicl-examples" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; }); magicl-transcendental = (build-asdf-system { pname = "magicl-transcendental"; - version = "v0.9.1"; + version = "v0.11.0"; asds = [ "magicl-transcendental" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/magicl/2021-04-11/magicl-v0.9.1.tgz"; - sha256 = "0x9p55qin399jhr5md88nij8fv78b64xjhww7ys364pkjnx8ak9v"; + url = "http://beta.quicklisp.org/archive/magicl/2024-10-12/magicl-v0.11.0.tgz"; + sha256 = "10scw5qhrgjhfrlia5iqn2yy2zj1d57m45g479vg56lw849whscw"; system = "magicl-transcendental"; asd = "magicl-transcendental"; }); systems = [ "magicl-transcendental" ]; - lispLibs = [ (getAttr "abstract-classes" self) (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cffi-libffi" self) (getAttr "interface" self) (getAttr "policy-cond" self) ]; + lispLibs = [ (getAttr "abstract-classes" self) (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cffi-libffi" self) (getAttr "interface" self) (getAttr "policy-cond" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; }); maiden = (build-asdf-system { pname = "maiden"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden"; asd = "maiden"; }); @@ -48150,11 +48950,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-accounts = (build-asdf-system { pname = "maiden-accounts"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-accounts" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-accounts"; asd = "maiden-accounts"; }); @@ -48166,11 +48966,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-activatable = (build-asdf-system { pname = "maiden-activatable"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-activatable" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-activatable"; asd = "maiden-activatable"; }); @@ -48182,11 +48982,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-api-access = (build-asdf-system { pname = "maiden-api-access"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-api-access" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-api-access"; asd = "maiden-api-access"; }); @@ -48198,11 +48998,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-blocker = (build-asdf-system { pname = "maiden-blocker"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-blocker" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-blocker"; asd = "maiden-blocker"; }); @@ -48214,11 +49014,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-channel-relay = (build-asdf-system { pname = "maiden-channel-relay"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-channel-relay" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-channel-relay"; asd = "maiden-channel-relay"; }); @@ -48230,11 +49030,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-chatlog = (build-asdf-system { pname = "maiden-chatlog"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-chatlog" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-chatlog"; asd = "maiden-chatlog"; }); @@ -48246,11 +49046,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-client-entities = (build-asdf-system { pname = "maiden-client-entities"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-client-entities" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-client-entities"; asd = "maiden-client-entities"; }); @@ -48262,11 +49062,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-commands = (build-asdf-system { pname = "maiden-commands"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-commands" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-commands"; asd = "maiden-commands"; }); @@ -48278,11 +49078,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-core-manager = (build-asdf-system { pname = "maiden-core-manager"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-core-manager" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-core-manager"; asd = "maiden-core-manager"; }); @@ -48294,11 +49094,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-counter = (build-asdf-system { pname = "maiden-counter"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-counter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-counter"; asd = "maiden-counter"; }); @@ -48310,11 +49110,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-crimes = (build-asdf-system { pname = "maiden-crimes"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-crimes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-crimes"; asd = "maiden-crimes"; }); @@ -48326,11 +49126,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-dictionary = (build-asdf-system { pname = "maiden-dictionary"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-dictionary" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-dictionary"; asd = "maiden-dictionary"; }); @@ -48342,11 +49142,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-emoticon = (build-asdf-system { pname = "maiden-emoticon"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-emoticon" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-emoticon"; asd = "maiden-emoticon"; }); @@ -48358,11 +49158,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-help = (build-asdf-system { pname = "maiden-help"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-help" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-help"; asd = "maiden-help"; }); @@ -48374,11 +49174,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-irc = (build-asdf-system { pname = "maiden-irc"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-irc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-irc"; asd = "maiden-irc"; }); @@ -48390,11 +49190,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-lastfm = (build-asdf-system { pname = "maiden-lastfm"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-lastfm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-lastfm"; asd = "maiden-lastfm"; }); @@ -48406,11 +49206,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-lichat = (build-asdf-system { pname = "maiden-lichat"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-lichat" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-lichat"; asd = "maiden-lichat"; }); @@ -48422,11 +49222,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-location = (build-asdf-system { pname = "maiden-location"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-location" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-location"; asd = "maiden-location"; }); @@ -48436,13 +49236,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + maiden-lookup = (build-asdf-system { + pname = "maiden-lookup"; + version = "20241012-git"; + asds = [ "maiden-lookup" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; + system = "maiden-lookup"; + asd = "maiden-lookup"; + }); + systems = [ "maiden-lookup" ]; + lispLibs = [ (getAttr "cl-ppcre" self) (getAttr "drakma" self) (getAttr "lquery" self) (getAttr "maiden-api-access" self) (getAttr "maiden-client-entities" self) (getAttr "maiden-commands" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); maiden-markov = (build-asdf-system { pname = "maiden-markov"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-markov" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-markov"; asd = "maiden-markov"; }); @@ -48454,11 +49270,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-medals = (build-asdf-system { pname = "maiden-medals"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-medals" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-medals"; asd = "maiden-medals"; }); @@ -48470,11 +49286,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-networking = (build-asdf-system { pname = "maiden-networking"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-networking" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-networking"; asd = "maiden-networking"; }); @@ -48486,11 +49302,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-notify = (build-asdf-system { pname = "maiden-notify"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-notify" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-notify"; asd = "maiden-notify"; }); @@ -48502,11 +49318,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-permissions = (build-asdf-system { pname = "maiden-permissions"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-permissions" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-permissions"; asd = "maiden-permissions"; }); @@ -48518,11 +49334,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-relay = (build-asdf-system { pname = "maiden-relay"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-relay" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-relay"; asd = "maiden-relay"; }); @@ -48534,11 +49350,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-serialize = (build-asdf-system { pname = "maiden-serialize"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-serialize" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-serialize"; asd = "maiden-serialize"; }); @@ -48550,11 +49366,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-silly = (build-asdf-system { pname = "maiden-silly"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-silly" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-silly"; asd = "maiden-silly"; }); @@ -48566,11 +49382,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-storage = (build-asdf-system { pname = "maiden-storage"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-storage" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-storage"; asd = "maiden-storage"; }); @@ -48582,11 +49398,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-talk = (build-asdf-system { pname = "maiden-talk"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-talk" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-talk"; asd = "maiden-talk"; }); @@ -48598,11 +49414,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-throttle = (build-asdf-system { pname = "maiden-throttle"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-throttle" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-throttle"; asd = "maiden-throttle"; }); @@ -48614,11 +49430,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-time = (build-asdf-system { pname = "maiden-time"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-time" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-time"; asd = "maiden-time"; }); @@ -48630,11 +49446,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-trivia = (build-asdf-system { pname = "maiden-trivia"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-trivia" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-trivia"; asd = "maiden-trivia"; }); @@ -48646,11 +49462,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-twitter = (build-asdf-system { pname = "maiden-twitter"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-twitter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-twitter"; asd = "maiden-twitter"; }); @@ -48662,11 +49478,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-urlinfo = (build-asdf-system { pname = "maiden-urlinfo"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-urlinfo" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-urlinfo"; asd = "maiden-urlinfo"; }); @@ -48678,11 +49494,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-vote = (build-asdf-system { pname = "maiden-vote"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-vote" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-vote"; asd = "maiden-vote"; }); @@ -48694,11 +49510,11 @@ in lib.makeScope pkgs.newScope (self: { }); maiden-weather = (build-asdf-system { pname = "maiden-weather"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maiden-weather" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maiden/2023-10-21/maiden-20231021-git.tgz"; - sha256 = "0srqx84nnar7dqaijwz30alhshiynapka5m0qwxiczqwmps2vzza"; + url = "http://beta.quicklisp.org/archive/maiden/2024-10-12/maiden-20241012-git.tgz"; + sha256 = "09r11y5j6l72qmalgwvrnbvgx7gxfnlrwjb5sy83krk4cw7hx6fd"; system = "maiden-weather"; asd = "maiden-weather"; }); @@ -48710,11 +49526,11 @@ in lib.makeScope pkgs.newScope (self: { }); maidenhead = (build-asdf-system { pname = "maidenhead"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "maidenhead" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/maidenhead/2022-03-31/maidenhead-20220331-git.tgz"; - sha256 = "0bkw31jibx4sh2086jgsw4rvaz3i1dmycbwp203rjj78x7wz9743"; + url = "http://beta.quicklisp.org/archive/maidenhead/2024-10-12/maidenhead-20241012-git.tgz"; + sha256 = "10pcx2ngyj6lkfbg1b58lzcm02xl1a3smnad5lvvw30pbalwcq46"; system = "maidenhead"; asd = "maidenhead"; }); @@ -48806,11 +49622,11 @@ in lib.makeScope pkgs.newScope (self: { }); manifolds = (build-asdf-system { pname = "manifolds"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "manifolds" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/manifolds/2023-10-21/manifolds-20231021-git.tgz"; - sha256 = "17jabz9y0545g3spnpfb0ws6nj4l6zgjslbaq64ic016kfv3l0ny"; + url = "http://beta.quicklisp.org/archive/manifolds/2024-10-12/manifolds-20241012-git.tgz"; + sha256 = "1q9hy2k1xabf8whnyxjiaqypbnbq84q94z1gmqgicxyzn7h3ybw4"; system = "manifolds"; asd = "manifolds"; }); @@ -48822,11 +49638,11 @@ in lib.makeScope pkgs.newScope (self: { }); manifolds-test = (build-asdf-system { pname = "manifolds-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "manifolds-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/manifolds/2023-10-21/manifolds-20231021-git.tgz"; - sha256 = "17jabz9y0545g3spnpfb0ws6nj4l6zgjslbaq64ic016kfv3l0ny"; + url = "http://beta.quicklisp.org/archive/manifolds/2024-10-12/manifolds-20241012-git.tgz"; + sha256 = "1q9hy2k1xabf8whnyxjiaqypbnbq84q94z1gmqgicxyzn7h3ybw4"; system = "manifolds-test"; asd = "manifolds-test"; }); @@ -48982,11 +49798,11 @@ in lib.makeScope pkgs.newScope (self: { }); marshal = (build-asdf-system { pname = "marshal"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "marshal" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-marshal/2023-10-21/cl-marshal-20231021-git.tgz"; - sha256 = "032f7mn0ijhd7xbzwacjbrm6hijmrl9mrpkq2qdyqdjzs2cgn8iy"; + url = "http://beta.quicklisp.org/archive/cl-marshal/2024-10-12/cl-marshal-20241012-git.tgz"; + sha256 = "081j2gfjdg05xzcq0jzqxjb874wkjdbxk9vah7hmlw9d767mzs5b"; system = "marshal"; asd = "marshal"; }); @@ -48996,11 +49812,11 @@ in lib.makeScope pkgs.newScope (self: { }); marshal-tests = (build-asdf-system { pname = "marshal-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "marshal-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-marshal/2023-10-21/cl-marshal-20231021-git.tgz"; - sha256 = "032f7mn0ijhd7xbzwacjbrm6hijmrl9mrpkq2qdyqdjzs2cgn8iy"; + url = "http://beta.quicklisp.org/archive/cl-marshal/2024-10-12/cl-marshal-20241012-git.tgz"; + sha256 = "081j2gfjdg05xzcq0jzqxjb874wkjdbxk9vah7hmlw9d767mzs5b"; system = "marshal-tests"; asd = "marshal-tests"; }); @@ -49012,16 +49828,16 @@ in lib.makeScope pkgs.newScope (self: { }); math = (build-asdf-system { pname = "math"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "math" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/math/2023-10-21/math-20231021-git.tgz"; - sha256 = "0b9w6k0w2grahyivpzg7ils7729pfl39pkc4njc797l1jwy6znyy"; + url = "http://beta.quicklisp.org/archive/math/2024-10-12/math-20241012-git.tgz"; + sha256 = "104rga7fqq3xvdxryhmgdq8zygd00zk5xb05glwqw01ygl3bc0r3"; system = "math"; asd = "math"; }); systems = [ "math" ]; - lispLibs = [ (getAttr "cl-utilities" self) (getAttr "font-discovery" self) (getAttr "gsll" self) (getAttr "vgplot" self) ]; + lispLibs = [ (getAttr "cl-utilities" self) (getAttr "closer-mop" self) (getAttr "font-discovery" self) (getAttr "gsll" self) (getAttr "vgplot" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -49092,11 +49908,11 @@ in lib.makeScope pkgs.newScope (self: { }); maxpc-apache = (build-asdf-system { pname = "maxpc-apache"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "maxpc-apache" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "maxpc-apache"; asd = "maxpc-apache"; }); @@ -49106,6 +49922,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + maxpc-apache-test = (build-asdf-system { + pname = "maxpc-apache-test"; + version = "20241012-git"; + asds = [ "maxpc-apache-test" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; + system = "maxpc-apache-test"; + asd = "maxpc-apache-test"; + }); + systems = [ "maxpc-apache-test" ]; + lispLibs = [ (getAttr "maxpc-apache" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); maxpc-test = (build-asdf-system { pname = "maxpc-test"; version = "20200427-git"; @@ -49172,11 +50004,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim = (build-asdf-system { pname = "mcclim"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim"; asd = "mcclim"; }); @@ -49186,29 +50018,13 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - mcclim-backend-common = (build-asdf-system { - pname = "mcclim-backend-common"; - version = "20231021-git"; - asds = [ "mcclim-backend-common" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; - system = "mcclim-backend-common"; - asd = "mcclim-backend-common"; - }); - systems = [ "mcclim-backend-common" ]; - lispLibs = [ (getAttr "clim" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); mcclim-bezier = (build-asdf-system { pname = "mcclim-bezier"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-bezier" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-bezier"; asd = "mcclim-bezier"; }); @@ -49220,11 +50036,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-bitmaps = (build-asdf-system { pname = "mcclim-bitmaps"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-bitmaps" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-bitmaps"; asd = "mcclim-bitmaps"; }); @@ -49236,43 +50052,43 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-clx = (build-asdf-system { pname = "mcclim-clx"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-clx" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-clx"; asd = "mcclim-clx"; }); systems = [ "mcclim-clx" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "cl-aa" self) (getAttr "cl-dejavu" self) (getAttr "cl-paths-ttf" self) (getAttr "cl-unicode" self) (getAttr "cl-vectors" self) (getAttr "clim" self) (getAttr "clx" self) (getAttr "flexi-streams" self) (getAttr "mcclim-backend-common" self) (getAttr "trivial-garbage" self) (getAttr "zpb-ttf" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "cl-aa" self) (getAttr "cl-dejavu" self) (getAttr "cl-paths-ttf" self) (getAttr "cl-unicode" self) (getAttr "cl-vectors" self) (getAttr "clim" self) (getAttr "clx" self) (getAttr "flexi-streams" self) (getAttr "trivial-garbage" self) (getAttr "zpb-ttf" self) ]; meta = { hydraPlatforms = [ ]; }; }); mcclim-clx-fb = (build-asdf-system { pname = "mcclim-clx-fb"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-clx-fb" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-clx-fb"; asd = "mcclim-clx-fb"; }); systems = [ "mcclim-clx-fb" ]; - lispLibs = [ (getAttr "mcclim-backend-common" self) (getAttr "mcclim-clx" self) (getAttr "mcclim-render" self) ]; + lispLibs = [ (getAttr "mcclim-clx" self) (getAttr "mcclim-render" self) ]; meta = { hydraPlatforms = [ ]; }; }); mcclim-dot = (build-asdf-system { pname = "mcclim-dot"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-dot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-dot"; asd = "mcclim-dot"; }); @@ -49284,11 +50100,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-fontconfig = (build-asdf-system { pname = "mcclim-fontconfig"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-fontconfig" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-fontconfig"; asd = "mcclim-fontconfig"; }); @@ -49300,11 +50116,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-fonts = (build-asdf-system { pname = "mcclim-fonts"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-fonts" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-fonts"; asd = "mcclim-fonts"; }); @@ -49316,11 +50132,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-franz = (build-asdf-system { pname = "mcclim-franz"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-franz" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-franz"; asd = "mcclim-franz"; }); @@ -49332,11 +50148,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-harfbuzz = (build-asdf-system { pname = "mcclim-harfbuzz"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-harfbuzz" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-harfbuzz"; asd = "mcclim-harfbuzz"; }); @@ -49348,11 +50164,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-layouts = (build-asdf-system { pname = "mcclim-layouts"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-layouts" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-layouts"; asd = "mcclim-layouts"; }); @@ -49364,11 +50180,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-null = (build-asdf-system { pname = "mcclim-null"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-null" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-null"; asd = "mcclim-null"; }); @@ -49380,43 +50196,43 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-raster-image = (build-asdf-system { pname = "mcclim-raster-image"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-raster-image" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-raster-image"; asd = "mcclim-raster-image"; }); systems = [ "mcclim-raster-image" ]; - lispLibs = [ (getAttr "clim" self) (getAttr "mcclim-backend-common" self) (getAttr "mcclim-render" self) ]; + lispLibs = [ (getAttr "clim" self) (getAttr "mcclim-render" self) ]; meta = { hydraPlatforms = [ ]; }; }); mcclim-render = (build-asdf-system { pname = "mcclim-render"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-render" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-render"; asd = "mcclim-render"; }); systems = [ "mcclim-render" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-aa" self) (getAttr "cl-dejavu" self) (getAttr "cl-paths-ttf" self) (getAttr "cl-vectors" self) (getAttr "clim" self) (getAttr "flexi-streams" self) (getAttr "mcclim-backend-common" self) (getAttr "zpb-ttf" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-aa" self) (getAttr "cl-dejavu" self) (getAttr "cl-paths-ttf" self) (getAttr "cl-vectors" self) (getAttr "clim" self) (getAttr "flexi-streams" self) (getAttr "zpb-ttf" self) ]; meta = { hydraPlatforms = [ ]; }; }); mcclim-svg = (build-asdf-system { pname = "mcclim-svg"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-svg" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-svg"; asd = "mcclim-svg"; }); @@ -49428,11 +50244,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-tooltips = (build-asdf-system { pname = "mcclim-tooltips"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-tooltips" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-tooltips"; asd = "mcclim-tooltips"; }); @@ -49444,11 +50260,11 @@ in lib.makeScope pkgs.newScope (self: { }); mcclim-tree-with-cross-edges = (build-asdf-system { pname = "mcclim-tree-with-cross-edges"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mcclim-tree-with-cross-edges" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "mcclim-tree-with-cross-edges"; asd = "mcclim-tree-with-cross-edges"; }); @@ -49522,11 +50338,11 @@ in lib.makeScope pkgs.newScope (self: { }); memory-regions = (build-asdf-system { pname = "memory-regions"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "memory-regions" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/memory-regions/2023-10-21/memory-regions-20231021-git.tgz"; - sha256 = "1za57sink8gsd9flkw1csvjr4pipzscfcza2c3dm5bc9kmq9ij8p"; + url = "http://beta.quicklisp.org/archive/memory-regions/2024-10-12/memory-regions-20241012-git.tgz"; + sha256 = "0j2qfbh2kwl8k6v0h0pbh5hml8aia888kaq4kgb12nfslim81iyd"; system = "memory-regions"; asd = "memory-regions"; }); @@ -49554,11 +50370,11 @@ in lib.makeScope pkgs.newScope (self: { }); messagebox = (build-asdf-system { pname = "messagebox"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "messagebox" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/messagebox/2023-10-21/messagebox-20231021-git.tgz"; - sha256 = "1zzczzqhd6fqvj4rg352chcz9jxc099vgs37b4ba0qmph0a3bazf"; + url = "http://beta.quicklisp.org/archive/messagebox/2024-10-12/messagebox-20241012-git.tgz"; + sha256 = "0wf25rfx7vg0l1mnzjjzwjqcjaa96a95k9diijppn7y9v2knr1qq"; system = "messagebox"; asd = "messagebox"; }); @@ -49790,11 +50606,11 @@ in lib.makeScope pkgs.newScope (self: { }); method-combination-utilities = (build-asdf-system { pname = "method-combination-utilities"; - version = "20141106-git"; + version = "20241012-git"; asds = [ "method-combination-utilities" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/method-combination-utilities/2014-11-06/method-combination-utilities-20141106-git.tgz"; - sha256 = "1lgc515j87lbb48mjys0j6p8bxzifzjw5g8i825lsdmajmwj3vis"; + url = "http://beta.quicklisp.org/archive/method-combination-utilities/2024-10-12/method-combination-utilities-20241012-git.tgz"; + sha256 = "15wjzf6r9kkfw89rgzhrr60p5b4i15b90nr3wz6idkv3n4j7fsjl"; system = "method-combination-utilities"; asd = "method-combination-utilities"; }); @@ -49806,11 +50622,11 @@ in lib.makeScope pkgs.newScope (self: { }); method-combination-utilities_dot_tests = (build-asdf-system { pname = "method-combination-utilities.tests"; - version = "20141106-git"; + version = "20241012-git"; asds = [ "method-combination-utilities.tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/method-combination-utilities/2014-11-06/method-combination-utilities-20141106-git.tgz"; - sha256 = "1lgc515j87lbb48mjys0j6p8bxzifzjw5g8i825lsdmajmwj3vis"; + url = "http://beta.quicklisp.org/archive/method-combination-utilities/2024-10-12/method-combination-utilities-20241012-git.tgz"; + sha256 = "15wjzf6r9kkfw89rgzhrr60p5b4i15b90nr3wz6idkv3n4j7fsjl"; system = "method-combination-utilities.tests"; asd = "method-combination-utilities"; }); @@ -49978,11 +50794,11 @@ in lib.makeScope pkgs.newScope (self: { }); mgl-pax = (build-asdf-system { pname = "mgl-pax"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mgl-pax" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mgl-pax/2023-10-21/mgl-pax-20231021-git.tgz"; - sha256 = "03if07sjx77x9sdva2sqh920lfj1gvkxbnsrnddk6q79kr2icjyg"; + url = "http://beta.quicklisp.org/archive/mgl-pax/2024-10-12/mgl-pax-20241012-git.tgz"; + sha256 = "17szk2ijccssa9n7zg8qh6hc706hahvzcrzlx716hmgq2hfwvvy0"; system = "mgl-pax"; asd = "mgl-pax"; }); @@ -49992,11 +50808,11 @@ in lib.makeScope pkgs.newScope (self: { }); mgl-pax-bootstrap = (build-asdf-system { pname = "mgl-pax-bootstrap"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mgl-pax-bootstrap" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mgl-pax/2023-10-21/mgl-pax-20231021-git.tgz"; - sha256 = "03if07sjx77x9sdva2sqh920lfj1gvkxbnsrnddk6q79kr2icjyg"; + url = "http://beta.quicklisp.org/archive/mgl-pax/2024-10-12/mgl-pax-20241012-git.tgz"; + sha256 = "17szk2ijccssa9n7zg8qh6hc706hahvzcrzlx716hmgq2hfwvvy0"; system = "mgl-pax-bootstrap"; asd = "mgl-pax-bootstrap"; }); @@ -50008,11 +50824,11 @@ in lib.makeScope pkgs.newScope (self: { }); mgl-pax-test = (build-asdf-system { pname = "mgl-pax-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mgl-pax-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mgl-pax/2023-10-21/mgl-pax-20231021-git.tgz"; - sha256 = "03if07sjx77x9sdva2sqh920lfj1gvkxbnsrnddk6q79kr2icjyg"; + url = "http://beta.quicklisp.org/archive/mgl-pax/2024-10-12/mgl-pax-20241012-git.tgz"; + sha256 = "17szk2ijccssa9n7zg8qh6hc706hahvzcrzlx716hmgq2hfwvvy0"; system = "mgl-pax-test"; asd = "mgl-pax-test"; }); @@ -50024,11 +50840,11 @@ in lib.makeScope pkgs.newScope (self: { }); mgl-pax_dot_asdf = (build-asdf-system { pname = "mgl-pax.asdf"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mgl-pax.asdf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mgl-pax/2023-10-21/mgl-pax-20231021-git.tgz"; - sha256 = "03if07sjx77x9sdva2sqh920lfj1gvkxbnsrnddk6q79kr2icjyg"; + url = "http://beta.quicklisp.org/archive/mgl-pax/2024-10-12/mgl-pax-20241012-git.tgz"; + sha256 = "17szk2ijccssa9n7zg8qh6hc706hahvzcrzlx716hmgq2hfwvvy0"; system = "mgl-pax.asdf"; asd = "mgl-pax.asdf"; }); @@ -50198,11 +51014,11 @@ in lib.makeScope pkgs.newScope (self: { }); misc-extensions = (build-asdf-system { pname = "misc-extensions"; - version = "20150608-git"; + version = "20241012-git"; asds = [ "misc-extensions" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz"; - sha256 = "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"; + url = "http://beta.quicklisp.org/archive/misc-extensions/2024-10-12/misc-extensions-20241012-git.tgz"; + sha256 = "0pvgg376vkydp2831bnnvwrv27m4ivc78c0nhvb4848c3ik1hn5j"; system = "misc-extensions"; asd = "misc-extensions"; }); @@ -50212,16 +51028,16 @@ in lib.makeScope pkgs.newScope (self: { }); mito = (build-asdf-system { pname = "mito"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mito" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mito/2023-10-21/mito-20231021-git.tgz"; - sha256 = "12wx1mb4aprvvh1qv41xrggpr7ffd943mxia0ppz0pkqc8zqrg4z"; + url = "http://beta.quicklisp.org/archive/mito/2024-10-12/mito-20241012-git.tgz"; + sha256 = "0nz72qss2jji0narxffpnpfgz74grvhmwqqlydpw6wv3ji1rrrq3"; system = "mito"; asd = "mito"; }); systems = [ "mito" ]; - lispLibs = [ (getAttr "cl-reexport" self) (getAttr "lack-middleware-mito" self) (getAttr "mito-core" self) (getAttr "mito-migration" self) ]; + lispLibs = [ (getAttr "cl-package-locks" self) (getAttr "lack-middleware-mito" self) (getAttr "mito-core" self) (getAttr "mito-migration" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -50260,48 +51076,48 @@ in lib.makeScope pkgs.newScope (self: { }); mito-core = (build-asdf-system { pname = "mito-core"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mito-core" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mito/2023-10-21/mito-20231021-git.tgz"; - sha256 = "12wx1mb4aprvvh1qv41xrggpr7ffd943mxia0ppz0pkqc8zqrg4z"; + url = "http://beta.quicklisp.org/archive/mito/2024-10-12/mito-20241012-git.tgz"; + sha256 = "0nz72qss2jji0narxffpnpfgz74grvhmwqqlydpw6wv3ji1rrrq3"; system = "mito-core"; asd = "mito-core"; }); systems = [ "mito-core" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) (getAttr "cl-reexport" self) (getAttr "closer-mop" self) (getAttr "dbi" self) (getAttr "dissect" self) (getAttr "local-time" self) (getAttr "sxql" self) (getAttr "trivia" self) (getAttr "uuid" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) (getAttr "closer-mop" self) (getAttr "dbi" self) (getAttr "dissect" self) (getAttr "local-time" self) (getAttr "sxql" self) (getAttr "trivia" self) (getAttr "uuid" self) ]; meta = { hydraPlatforms = [ ]; }; }); mito-migration = (build-asdf-system { pname = "mito-migration"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mito-migration" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mito/2023-10-21/mito-20231021-git.tgz"; - sha256 = "12wx1mb4aprvvh1qv41xrggpr7ffd943mxia0ppz0pkqc8zqrg4z"; + url = "http://beta.quicklisp.org/archive/mito/2024-10-12/mito-20241012-git.tgz"; + sha256 = "0nz72qss2jji0narxffpnpfgz74grvhmwqqlydpw6wv3ji1rrrq3"; system = "mito-migration"; asd = "mito-migration"; }); systems = [ "mito-migration" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "chipz" self) (getAttr "cl-reexport" self) (getAttr "closer-mop" self) (getAttr "dbi" self) (getAttr "esrap" self) (getAttr "mito-core" self) (getAttr "sxql" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "chipz" self) (getAttr "closer-mop" self) (getAttr "dbi" self) (getAttr "esrap" self) (getAttr "mito-core" self) (getAttr "sxql" self) ]; meta = { hydraPlatforms = [ ]; }; }); mito-test = (build-asdf-system { pname = "mito-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mito-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mito/2023-10-21/mito-20231021-git.tgz"; - sha256 = "12wx1mb4aprvvh1qv41xrggpr7ffd943mxia0ppz0pkqc8zqrg4z"; + url = "http://beta.quicklisp.org/archive/mito/2024-10-12/mito-20241012-git.tgz"; + sha256 = "0nz72qss2jji0narxffpnpfgz74grvhmwqqlydpw6wv3ji1rrrq3"; system = "mito-test"; asd = "mito-test"; }); systems = [ "mito-test" ]; - lispLibs = [ (getAttr "mito" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; + lispLibs = [ (getAttr "dbd-mysql" self) (getAttr "dbd-postgres" self) (getAttr "dbd-sqlite3" self) (getAttr "mito" self) (getAttr "rove" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -50372,11 +51188,11 @@ in lib.makeScope pkgs.newScope (self: { }); mk-defsystem = (build-asdf-system { pname = "mk-defsystem"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "mk-defsystem" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mk-defsystem/2023-02-14/mk-defsystem-20230214-git.tgz"; - sha256 = "0qrhfsyqij2kvbzwis6xa3861j37nymqdm23j92md73vbga895ma"; + url = "http://beta.quicklisp.org/archive/mk-defsystem/2024-10-12/mk-defsystem-20241012-git.tgz"; + sha256 = "0zrr11szr50bqaxybm66ggj5bmchwljjafhxcwsyzgpqbnf06740"; system = "mk-defsystem"; asd = "mk-defsystem"; }); @@ -50498,11 +51314,11 @@ in lib.makeScope pkgs.newScope (self: { }); mmap = (build-asdf-system { pname = "mmap"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mmap" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mmap/2023-10-21/mmap-20231021-git.tgz"; - sha256 = "0vn211wjhc50ycsq27dhx8b3lq23sv8cnd5ghj1kg7z0zwpiw5y9"; + url = "http://beta.quicklisp.org/archive/mmap/2024-10-12/mmap-20241012-git.tgz"; + sha256 = "1wlxymkkbjyyp6fikxi94q26pjfz656y4d8kgm22xxvw70hppgc3"; system = "mmap"; asd = "mmap"; }); @@ -50512,11 +51328,11 @@ in lib.makeScope pkgs.newScope (self: { }); mmap-test = (build-asdf-system { pname = "mmap-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mmap-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mmap/2023-10-21/mmap-20231021-git.tgz"; - sha256 = "0vn211wjhc50ycsq27dhx8b3lq23sv8cnd5ghj1kg7z0zwpiw5y9"; + url = "http://beta.quicklisp.org/archive/mmap/2024-10-12/mmap-20241012-git.tgz"; + sha256 = "1wlxymkkbjyyp6fikxi94q26pjfz656y4d8kgm22xxvw70hppgc3"; system = "mmap-test"; asd = "mmap-test"; }); @@ -50560,11 +51376,11 @@ in lib.makeScope pkgs.newScope (self: { }); mnas-package = (build-asdf-system { pname = "mnas-package"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "mnas-package" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mnas-package/2023-06-18/mnas-package-20230618-git.tgz"; - sha256 = "17w9w1ql8d0hr5wh63r2fg5wnsl5s8xyhw8db8vx1pkpp2bq6775"; + url = "http://beta.quicklisp.org/archive/mnas-package/2024-10-12/mnas-package-20241012-git.tgz"; + sha256 = "05wkh2rzlp3csnk3p50rp3jv4jycdqa5hylqf93b2q8vjxvv67wm"; system = "mnas-package"; asd = "mnas-package"; }); @@ -50592,11 +51408,11 @@ in lib.makeScope pkgs.newScope (self: { }); mnas-string = (build-asdf-system { pname = "mnas-string"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mnas-string" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mnas-string/2023-10-21/mnas-string-20231021-git.tgz"; - sha256 = "1c606jz1fpw39s0la56hbjcr9cdg2fxy9pdvz08mab2z1nd1533a"; + url = "http://beta.quicklisp.org/archive/mnas-string/2024-10-12/mnas-string-20241012-git.tgz"; + sha256 = "1pk0fyi3pjq7h9x40hixapsa06s0dah6xd4d63jpyhp7y6fa8w6f"; system = "mnas-string"; asd = "mnas-string"; }); @@ -50832,11 +51648,11 @@ in lib.makeScope pkgs.newScope (self: { }); moira = (build-asdf-system { pname = "moira"; - version = "20171130-git"; + version = "20241012-git"; asds = [ "moira" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/moira/2017-11-30/moira-20171130-git.tgz"; - sha256 = "0r6hvq8j04y1i85f8jwhhafylgfrkg8c1z5746nsbv0v0348sf5h"; + url = "http://beta.quicklisp.org/archive/moira/2024-10-12/moira-20241012-git.tgz"; + sha256 = "01wxjg122flla4pgys57hya3fwrkyjkpp26j5ypl5885zz1ip5b7"; system = "moira"; asd = "moira"; }); @@ -51084,11 +51900,11 @@ in lib.makeScope pkgs.newScope (self: { }); mssql = (build-asdf-system { pname = "mssql"; - version = "20210124-git"; + version = "20241012-git"; asds = [ "mssql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-mssql/2021-01-24/cl-mssql-20210124-git.tgz"; - sha256 = "09i50adppgc1ybm3ka9vbindhwa2x29f9n3n0jkrryymdhb8zknm"; + url = "http://beta.quicklisp.org/archive/cl-mssql/2024-10-12/cl-mssql-20241012-git.tgz"; + sha256 = "15hnlkx6d2vw46v7h01wljzag33j5is679amv74kzk4qq91wfkx2"; system = "mssql"; asd = "mssql"; }); @@ -51210,11 +52026,11 @@ in lib.makeScope pkgs.newScope (self: { }); multiposter = (build-asdf-system { pname = "multiposter"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "multiposter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/multiposter/2023-10-21/multiposter-20231021-git.tgz"; - sha256 = "1pcj52sjd1cjplcg1b4pf7sdfl1vgqkm19j042fyww8gh61l77xa"; + url = "http://beta.quicklisp.org/archive/multiposter/2024-10-12/multiposter-20241012-git.tgz"; + sha256 = "1q1zinv4csnb0yjlndym5dlf7apax3f5qdiids3dlai09jb4hbjg"; system = "multiposter"; asd = "multiposter"; }); @@ -51274,11 +52090,11 @@ in lib.makeScope pkgs.newScope (self: { }); mutility = (build-asdf-system { pname = "mutility"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mutility" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mutility/2023-10-21/mutility-20231021-git.tgz"; - sha256 = "0mli8xb16vz8ki5d3a5c6n7s3zfsk3hzpcd8zmxn3q9w37iz3511"; + url = "http://beta.quicklisp.org/archive/mutility/2024-10-12/mutility-20241012-git.tgz"; + sha256 = "17ip4rkvval66k9r3a2hvpr4pqa087b3rqjdayl115fi6bfzncr4"; system = "mutility"; asd = "mutility"; }); @@ -51290,11 +52106,11 @@ in lib.makeScope pkgs.newScope (self: { }); mutils = (build-asdf-system { pname = "mutils"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "mutils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mutils/2023-10-21/mutils-20231021-git.tgz"; - sha256 = "02c646rydaw2wslipdivs189yawdysrmkb2hl8yxb5iz7cy8c643"; + url = "http://beta.quicklisp.org/archive/mutils/2024-10-12/mutils-20241012-git.tgz"; + sha256 = "1xmqms002bafrdrpzgqq5dr0qfiywg3p7mhvb6xny1jrk3qdqz75"; system = "mutils"; asd = "mutils"; }); @@ -51512,6 +52328,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + myweb = (build-asdf-system { + pname = "myweb"; + version = "20241012-git"; + asds = [ "myweb" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/myweb/2024-10-12/myweb-20241012-git.tgz"; + sha256 = "10r67w3cgrq0r7qmqdnv4c3pjz7kkhz9q3jj0amlknr0nsr4y2zp"; + system = "myweb"; + asd = "myweb"; + }); + systems = [ "myweb" ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cl-log" self) (getAttr "local-time" self) (getAttr "trivial-utf-8" self) (getAttr "usocket" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); nail = (build-asdf-system { pname = "nail"; version = "20230214-git"; @@ -51530,11 +52362,11 @@ in lib.makeScope pkgs.newScope (self: { }); named-closure = (build-asdf-system { pname = "named-closure"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "named-closure" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/named-closure/2023-06-18/named-closure-20230618-git.tgz"; - sha256 = "1alifwg0vw7fskrsq2b3fiiwlq6qjvmp8q30z2cwxy8ckhlchv96"; + url = "http://beta.quicklisp.org/archive/named-closure/2024-10-12/named-closure-20241012-git.tgz"; + sha256 = "1ja7lvid589n3r25vh7j21wji60dm2qika2jn51jvfbbii853x09"; system = "named-closure"; asd = "named-closure"; }); @@ -51718,11 +52550,11 @@ in lib.makeScope pkgs.newScope (self: { }); ndebug = (build-asdf-system { pname = "ndebug"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "ndebug" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ndebug/2023-02-14/ndebug-20230214-git.tgz"; - sha256 = "1rph1jqcyc7b08rllkwrldzqacf7px8zkr8gvx8qf8y51bnd5bms"; + url = "http://beta.quicklisp.org/archive/ndebug/2024-10-12/ndebug-20241012-git.tgz"; + sha256 = "168khn4190p55fjhbpnbq130lbaafq7cw0131x7n650d9f4h2hyq"; system = "ndebug"; asd = "ndebug"; }); @@ -51888,60 +52720,12 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - net_dot_didierverna_dot_declt = (build-asdf-system { - pname = "net.didierverna.declt"; - version = "4.0b2"; - asds = [ "net.didierverna.declt" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/declt/2022-07-07/declt-4.0b2.tgz"; - sha256 = "1xkbf1xqrkmr8na09b0spmrznsx2ml10i9q026zv9mpbsc7gh0i6"; - system = "net.didierverna.declt"; - asd = "net.didierverna.declt"; - }); - systems = [ "net.didierverna.declt" ]; - lispLibs = [ (getAttr "net_dot_didierverna_dot_declt_dot_core" self) (getAttr "net_dot_didierverna_dot_declt_dot_setup" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - net_dot_didierverna_dot_declt_dot_assess = (build-asdf-system { - pname = "net.didierverna.declt.assess"; - version = "4.0b2"; - asds = [ "net.didierverna.declt.assess" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/declt/2022-07-07/declt-4.0b2.tgz"; - sha256 = "1xkbf1xqrkmr8na09b0spmrznsx2ml10i9q026zv9mpbsc7gh0i6"; - system = "net.didierverna.declt.assess"; - asd = "net.didierverna.declt.assess"; - }); - systems = [ "net.didierverna.declt.assess" ]; - lispLibs = [ (getAttr "net_dot_didierverna_dot_declt_dot_setup" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - net_dot_didierverna_dot_declt_dot_core = (build-asdf-system { - pname = "net.didierverna.declt.core"; - version = "4.0b2"; - asds = [ "net.didierverna.declt.core" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/declt/2022-07-07/declt-4.0b2.tgz"; - sha256 = "1xkbf1xqrkmr8na09b0spmrznsx2ml10i9q026zv9mpbsc7gh0i6"; - system = "net.didierverna.declt.core"; - asd = "net.didierverna.declt.core"; - }); - systems = [ "net.didierverna.declt.core" ]; - lispLibs = [ (getAttr "net_dot_didierverna_dot_declt_dot_assess" self) (getAttr "net_dot_didierverna_dot_declt_dot_setup" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); net_dot_didierverna_dot_declt_dot_setup = (build-asdf-system { pname = "net.didierverna.declt.setup"; version = "4.0b2"; asds = [ "net.didierverna.declt.setup" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/declt/2022-07-07/declt-4.0b2.tgz"; + url = "http://beta.quicklisp.org/archive/declt/2024-10-12/declt-4.0b2.tgz"; sha256 = "1xkbf1xqrkmr8na09b0spmrznsx2ml10i9q026zv9mpbsc7gh0i6"; system = "net.didierverna.declt.setup"; asd = "net.didierverna.declt.setup"; @@ -52034,11 +52818,11 @@ in lib.makeScope pkgs.newScope (self: { }); net_dot_didierverna_dot_tfm = (build-asdf-system { pname = "net.didierverna.tfm"; - version = "20210411-git"; + version = "20241012-git"; asds = [ "net.didierverna.tfm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfm/2021-04-11/tfm-20210411-git.tgz"; - sha256 = "1wwphg315zq9213vhi5l8fyrfyzasym3rwf34dxfc5cyhsf0wbi6"; + url = "http://beta.quicklisp.org/archive/tfm/2024-10-12/tfm-20241012-git.tgz"; + sha256 = "15lnp9w9z5ar64bynb365n4wqh8wa7z4m4dzy320xrxnnc1w2sn2"; system = "net.didierverna.tfm"; asd = "net.didierverna.tfm"; }); @@ -52050,11 +52834,11 @@ in lib.makeScope pkgs.newScope (self: { }); net_dot_didierverna_dot_tfm_dot_core = (build-asdf-system { pname = "net.didierverna.tfm.core"; - version = "20210411-git"; + version = "20241012-git"; asds = [ "net.didierverna.tfm.core" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfm/2021-04-11/tfm-20210411-git.tgz"; - sha256 = "1wwphg315zq9213vhi5l8fyrfyzasym3rwf34dxfc5cyhsf0wbi6"; + url = "http://beta.quicklisp.org/archive/tfm/2024-10-12/tfm-20241012-git.tgz"; + sha256 = "15lnp9w9z5ar64bynb365n4wqh8wa7z4m4dzy320xrxnnc1w2sn2"; system = "net.didierverna.tfm.core"; asd = "net.didierverna.tfm.core"; }); @@ -52066,11 +52850,11 @@ in lib.makeScope pkgs.newScope (self: { }); net_dot_didierverna_dot_tfm_dot_setup = (build-asdf-system { pname = "net.didierverna.tfm.setup"; - version = "20210411-git"; + version = "20241012-git"; asds = [ "net.didierverna.tfm.setup" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfm/2021-04-11/tfm-20210411-git.tgz"; - sha256 = "1wwphg315zq9213vhi5l8fyrfyzasym3rwf34dxfc5cyhsf0wbi6"; + url = "http://beta.quicklisp.org/archive/tfm/2024-10-12/tfm-20241012-git.tgz"; + sha256 = "15lnp9w9z5ar64bynb365n4wqh8wa7z4m4dzy320xrxnnc1w2sn2"; system = "net.didierverna.tfm.setup"; asd = "net.didierverna.tfm.setup"; }); @@ -52130,27 +52914,27 @@ in lib.makeScope pkgs.newScope (self: { }); neural-classifier = (build-asdf-system { pname = "neural-classifier"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "neural-classifier" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/neural-classifier/2022-11-06/neural-classifier-20221106-git.tgz"; - sha256 = "1d23q1k3i2kbjcrvp0qml2nmmdcr12lrmga3qdrgrvsbdcqarn3c"; + url = "http://beta.quicklisp.org/archive/neural-classifier/2024-10-12/neural-classifier-20241012-git.tgz"; + sha256 = "0aq7m781c27di7lfs1a7di55f31i7x490yfd2033738biqn0x019"; system = "neural-classifier"; asd = "neural-classifier"; }); systems = [ "neural-classifier" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "magicl" self) (getAttr "snakes" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "magicl" self) (getAttr "serapeum" self) (getAttr "snakes" self) ]; meta = { hydraPlatforms = [ ]; }; }); new-op = (build-asdf-system { pname = "new-op"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "new-op" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/new-op/2023-02-14/new-op-20230214-git.tgz"; - sha256 = "0i7ail2am8s632gxz8h5w9mad68c66jszclric5yg1ihj4619qgm"; + url = "http://beta.quicklisp.org/archive/new-op/2024-10-12/new-op-20241012-git.tgz"; + sha256 = "1jrnn4xbx5gc1202hqpinh0q1gm2wcv28jr8fl6g7wm6170nscxh"; system = "new-op"; asd = "new-op"; }); @@ -52162,11 +52946,11 @@ in lib.makeScope pkgs.newScope (self: { }); nibbles = (build-asdf-system { pname = "nibbles"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "nibbles" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/nibbles/2023-10-21/nibbles-20231021-git.tgz"; - sha256 = "12qjich11hp31dhbvbsixyjbddmr6faaajigrivgbxy9kw6d279j"; + url = "http://beta.quicklisp.org/archive/nibbles/2024-10-12/nibbles-20241012-git.tgz"; + sha256 = "00j464l3l1rx2x9gzx45gz7wcpplk1wmfh5liigzlxqq0ybjc7lr"; system = "nibbles"; asd = "nibbles"; }); @@ -52176,11 +52960,11 @@ in lib.makeScope pkgs.newScope (self: { }); nibbles-streams = (build-asdf-system { pname = "nibbles-streams"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "nibbles-streams" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/nibbles-streams/2023-06-18/nibbles-streams-20230618-git.tgz"; - sha256 = "05zwv0z4331ba1g48i6npas0rk88y705ww1574ivkfh870rr5yd4"; + url = "http://beta.quicklisp.org/archive/nibbles-streams/2024-10-12/nibbles-streams-20241012-git.tgz"; + sha256 = "1m1i9nivpahk11rzdwy3xxdcdwmkx3xzb4kqcz3gh3prwhyg83a1"; system = "nibbles-streams"; asd = "nibbles-streams"; }); @@ -52208,11 +52992,11 @@ in lib.makeScope pkgs.newScope (self: { }); ningle = (build-asdf-system { pname = "ningle"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ningle" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ningle/2023-10-21/ningle-20231021-git.tgz"; - sha256 = "0rplv9c2lwk5k22p7axxkp24934kg79xlbfsvf2i0kc24wnd73b6"; + url = "http://beta.quicklisp.org/archive/ningle/2024-10-12/ningle-20241012-git.tgz"; + sha256 = "1ym6phipbg94q7344ng9yf02ykh0x5ldx8nfrbsh8p15qajsw7hc"; system = "ningle"; asd = "ningle"; }); @@ -52224,11 +53008,11 @@ in lib.makeScope pkgs.newScope (self: { }); ningle-test = (build-asdf-system { pname = "ningle-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ningle-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ningle/2023-10-21/ningle-20231021-git.tgz"; - sha256 = "0rplv9c2lwk5k22p7axxkp24934kg79xlbfsvf2i0kc24wnd73b6"; + url = "http://beta.quicklisp.org/archive/ningle/2024-10-12/ningle-20241012-git.tgz"; + sha256 = "1ym6phipbg94q7344ng9yf02ykh0x5ldx8nfrbsh8p15qajsw7hc"; system = "ningle-test"; asd = "ningle-test"; }); @@ -52256,27 +53040,75 @@ in lib.makeScope pkgs.newScope (self: { }); nodgui = (build-asdf-system { pname = "nodgui"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "nodgui" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/nodgui/2023-10-21/nodgui-20231021-git.tgz"; - sha256 = "187yf73ipbkirf94mxfmmd4a0q4xdmqghc3skc92534gzdjlyya4"; + url = "http://beta.quicklisp.org/archive/nodgui/2024-10-12/nodgui-20241012-git.tgz"; + sha256 = "088dkpqsxc4dmfsbz24wrgi192xrn8116p4zpklwfqa0fblmfzpb"; system = "nodgui"; asd = "nodgui"; }); systems = [ "nodgui" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cl-colors2" self) (getAttr "cl-jpeg" self) (getAttr "cl-ppcre-unicode" self) (getAttr "cl-unicode" self) (getAttr "clunit2" self) (getAttr "esrap" self) (getAttr "named-readtables" self) (getAttr "parse-number" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cl-colors2" self) (getAttr "cl-opengl" self) (getAttr "cl-ppcre-unicode" self) (getAttr "cl-unicode" self) (getAttr "esrap" self) (getAttr "flexi-streams" self) (getAttr "jpeg-turbo" self) (getAttr "named-readtables" self) (getAttr "parse-number" self) (getAttr "pngload" self) (getAttr "sdl2" self) (getAttr "sdl2-ttf" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) (getAttr "zpng" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + nodgui-lite = (build-asdf-system { + pname = "nodgui-lite"; + version = "20241012-git"; + asds = [ "nodgui-lite" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/nodgui/2024-10-12/nodgui-20241012-git.tgz"; + sha256 = "088dkpqsxc4dmfsbz24wrgi192xrn8116p4zpklwfqa0fblmfzpb"; + system = "nodgui-lite"; + asd = "nodgui-lite"; + }); + systems = [ "nodgui-lite" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cl-colors2" self) (getAttr "cl-ppcre-unicode" self) (getAttr "cl-unicode" self) (getAttr "esrap" self) (getAttr "flexi-streams" self) (getAttr "named-readtables" self) (getAttr "parse-number" self) (getAttr "pngload" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) (getAttr "zpng" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + noisy = (build-asdf-system { + pname = "noisy"; + version = "20241012-git"; + asds = [ "noisy" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/noisy/2024-10-12/noisy-20241012-git.tgz"; + sha256 = "0qr29rxbrrlgd3k7hb6c62yzgflaygvxabq2sbhs90r0bi3cs0dj"; + system = "noisy"; + asd = "noisy"; + }); + systems = [ "noisy" ]; + lispLibs = [ (getAttr "random-state" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + nontrivial-gray-streams = (build-asdf-system { + pname = "nontrivial-gray-streams"; + version = "20241012-git"; + asds = [ "nontrivial-gray-streams" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/nontrivial-gray-streams/2024-10-12/nontrivial-gray-streams-20241012-git.tgz"; + sha256 = "0v49nqsc5jbrg499qhk550zg4v5arjh9nch33n5g4f5bfgw7lzh3"; + system = "nontrivial-gray-streams"; + asd = "nontrivial-gray-streams"; + }); + systems = [ "nontrivial-gray-streams" ]; + lispLibs = [ ]; meta = { hydraPlatforms = [ ]; }; }); north = (build-asdf-system { pname = "north"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "north" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/north/2023-10-21/north-20231021-git.tgz"; - sha256 = "00g9m0chigk6szx3i500xri3l70hwdvldky691r74fhhjh1646iv"; + url = "http://beta.quicklisp.org/archive/north/2024-10-12/north-20241012-git.tgz"; + sha256 = "0ml49xixdr1aagj580dr0dzx7dvdqrf45yyh3pzdzbp0pzqbpjz2"; system = "north"; asd = "north"; }); @@ -52288,11 +53120,11 @@ in lib.makeScope pkgs.newScope (self: { }); north-core = (build-asdf-system { pname = "north-core"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "north-core" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/north/2023-10-21/north-20231021-git.tgz"; - sha256 = "00g9m0chigk6szx3i500xri3l70hwdvldky691r74fhhjh1646iv"; + url = "http://beta.quicklisp.org/archive/north/2024-10-12/north-20241012-git.tgz"; + sha256 = "0ml49xixdr1aagj580dr0dzx7dvdqrf45yyh3pzdzbp0pzqbpjz2"; system = "north-core"; asd = "north-core"; }); @@ -52304,11 +53136,11 @@ in lib.makeScope pkgs.newScope (self: { }); north-dexador = (build-asdf-system { pname = "north-dexador"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "north-dexador" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/north/2023-10-21/north-20231021-git.tgz"; - sha256 = "00g9m0chigk6szx3i500xri3l70hwdvldky691r74fhhjh1646iv"; + url = "http://beta.quicklisp.org/archive/north/2024-10-12/north-20241012-git.tgz"; + sha256 = "0ml49xixdr1aagj580dr0dzx7dvdqrf45yyh3pzdzbp0pzqbpjz2"; system = "north-dexador"; asd = "north-dexador"; }); @@ -52320,11 +53152,11 @@ in lib.makeScope pkgs.newScope (self: { }); north-drakma = (build-asdf-system { pname = "north-drakma"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "north-drakma" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/north/2023-10-21/north-20231021-git.tgz"; - sha256 = "00g9m0chigk6szx3i500xri3l70hwdvldky691r74fhhjh1646iv"; + url = "http://beta.quicklisp.org/archive/north/2024-10-12/north-20241012-git.tgz"; + sha256 = "0ml49xixdr1aagj580dr0dzx7dvdqrf45yyh3pzdzbp0pzqbpjz2"; system = "north-drakma"; asd = "north-drakma"; }); @@ -52336,11 +53168,11 @@ in lib.makeScope pkgs.newScope (self: { }); north-example = (build-asdf-system { pname = "north-example"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "north-example" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/north/2023-10-21/north-20231021-git.tgz"; - sha256 = "00g9m0chigk6szx3i500xri3l70hwdvldky691r74fhhjh1646iv"; + url = "http://beta.quicklisp.org/archive/north/2024-10-12/north-20241012-git.tgz"; + sha256 = "0ml49xixdr1aagj580dr0dzx7dvdqrf45yyh3pzdzbp0pzqbpjz2"; system = "north-example"; asd = "north-example"; }); @@ -52592,11 +53424,11 @@ in lib.makeScope pkgs.newScope (self: { }); num-utils = (build-asdf-system { pname = "num-utils"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "num-utils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/numerical-utilities/2023-10-21/numerical-utilities-20231021-git.tgz"; - sha256 = "1al1wxgpqanq5l51d6xwcbhqc2d8z1rfs7334r5z1468bd7yjw3g"; + url = "http://beta.quicklisp.org/archive/numerical-utilities/2024-10-12/numerical-utilities-20241012-git.tgz"; + sha256 = "00ck2bj4pqir2aan26xhirk41wzrfaziqmnngabhmwi0hz81bjs6"; system = "num-utils"; asd = "num-utils"; }); @@ -52704,11 +53536,11 @@ in lib.makeScope pkgs.newScope (self: { }); nytpu_dot_lisp-utils = (build-asdf-system { pname = "nytpu.lisp-utils"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "nytpu.lisp-utils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/nytpu.lisp-utils/2023-10-21/nytpu.lisp-utils-20231021-git.tgz"; - sha256 = "001lv374c4lx7fw05mqjzjx15y8rl8p8xn58clghqq12vpsj3vb0"; + url = "http://beta.quicklisp.org/archive/nytpu.lisp-utils/2024-10-12/nytpu.lisp-utils-20241012-git.tgz"; + sha256 = "11mn2xf0nlaqmni0s22n4jbdy8rkqkin1sqni90drd8cs6mccmsd"; system = "nytpu.lisp-utils"; asd = "nytpu.lisp-utils"; }); @@ -52896,75 +53728,43 @@ in lib.makeScope pkgs.newScope (self: { }); omg = (build-asdf-system { pname = "omg"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "omg" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/omglib/2023-10-21/omglib-20231021-git.tgz"; - sha256 = "0vjncz3p5b3j76dwv8qimils6ybcs6lsx24kzl2h1cssf8m8zrxw"; + url = "http://beta.quicklisp.org/archive/omglib/2024-10-12/omglib-20241012-git.tgz"; + sha256 = "0jp68w3sw9z8gn3498lrmysf93f22a71hsr9c886wix5zpwgqpx7"; system = "omg"; asd = "omg"; }); systems = [ "omg" ]; - lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cl-jpeg" self) (getAttr "clack" self) (getAttr "find-port" self) (getAttr "hunchentoot" self) (getAttr "inferior-shell" self) (getAttr "media-types" self) (getAttr "osicat" self) (getAttr "pngload" self) (getAttr "skippy" self) (getAttr "swank" self) (getAttr "trivial-utf-8" self) (getAttr "usocket" self) (getAttr "websocket-driver-server" self) ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cl-jpeg" self) (getAttr "cl-parallel" self) (getAttr "clack" self) (getAttr "hunchentoot" self) (getAttr "media-types" self) (getAttr "pngload" self) (getAttr "skippy" self) (getAttr "trivial-utf-8" self) (getAttr "websocket-driver-server" self) ]; meta = { hydraPlatforms = [ ]; }; }); - one-more-re-nightmare = (build-asdf-system { - pname = "one-more-re-nightmare"; - version = "20231021-git"; - asds = [ "one-more-re-nightmare" ]; + omgdaemon = (build-asdf-system { + pname = "omgdaemon"; + version = "20241012-git"; + asds = [ "omgdaemon" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/one-more-re-nightmare/2023-10-21/one-more-re-nightmare-20231021-git.tgz"; - sha256 = "0mwgjgnp8dsf2zn0290px5q89z93zs0v4dhvs3rcir4mpiw8rbsn"; - system = "one-more-re-nightmare"; - asd = "one-more-re-nightmare"; + url = "http://beta.quicklisp.org/archive/omglib/2024-10-12/omglib-20241012-git.tgz"; + sha256 = "0jp68w3sw9z8gn3498lrmysf93f22a71hsr9c886wix5zpwgqpx7"; + system = "omgdaemon"; + asd = "omgdaemon"; }); - systems = [ "one-more-re-nightmare" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "bordeaux-threads" self) (getAttr "dynamic-mixins" self) (getAttr "esrap" self) (getAttr "stealth-mixin" self) (getAttr "trivia" self) (getAttr "trivial-indent" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - one-more-re-nightmare-simd = (build-asdf-system { - pname = "one-more-re-nightmare-simd"; - version = "20231021-git"; - asds = [ "one-more-re-nightmare-simd" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/one-more-re-nightmare/2023-10-21/one-more-re-nightmare-20231021-git.tgz"; - sha256 = "0mwgjgnp8dsf2zn0290px5q89z93zs0v4dhvs3rcir4mpiw8rbsn"; - system = "one-more-re-nightmare-simd"; - asd = "one-more-re-nightmare-simd"; - }); - systems = [ "one-more-re-nightmare-simd" ]; - lispLibs = [ (getAttr "one-more-re-nightmare" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - one-more-re-nightmare-tests = (build-asdf-system { - pname = "one-more-re-nightmare-tests"; - version = "20231021-git"; - asds = [ "one-more-re-nightmare-tests" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/one-more-re-nightmare/2023-10-21/one-more-re-nightmare-20231021-git.tgz"; - sha256 = "0mwgjgnp8dsf2zn0290px5q89z93zs0v4dhvs3rcir4mpiw8rbsn"; - system = "one-more-re-nightmare-tests"; - asd = "one-more-re-nightmare-tests"; - }); - systems = [ "one-more-re-nightmare-tests" ]; - lispLibs = [ (getAttr "lparallel" self) (getAttr "one-more-re-nightmare" self) (getAttr "parachute" self) ]; + systems = [ "omgdaemon" ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "find-port" self) (getAttr "inferior-shell" self) (getAttr "iolib" self) (getAttr "log4cl" self) (getAttr "omg" self) (getAttr "osicat" self) (getAttr "swank" self) (getAttr "trivial-dump-core" self) (getAttr "trivial-utf-8" self) ]; meta = { hydraPlatforms = [ ]; }; }); ook = (build-asdf-system { pname = "ook"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "ook" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ook/2023-02-14/ook-20230214-git.tgz"; - sha256 = "176ffzw1vr6rbn56lm9c6kg3p999apn4kb8z4889cn16v0rd6m29"; + url = "http://beta.quicklisp.org/archive/ook/2024-10-12/ook-20241012-git.tgz"; + sha256 = "0vh6g6a392z77yd4vgj3izajyai7pckr90ij1xns6cf9w505aq8w"; system = "ook"; asd = "ook"; }); @@ -53008,11 +53808,11 @@ in lib.makeScope pkgs.newScope (self: { }); open-location-code = (build-asdf-system { pname = "open-location-code"; - version = "20220331-git"; + version = "20241012-git"; asds = [ "open-location-code" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/open-location-code/2022-03-31/open-location-code-20220331-git.tgz"; - sha256 = "1ii8aj9kxxikgafsycy2ngrs9f2zdvmzrhggq7z5cgmi1h0fqg1z"; + url = "http://beta.quicklisp.org/archive/open-location-code/2024-10-12/open-location-code-20241012-git.tgz"; + sha256 = "17ip3xzqr2jk9br39d58grrjbk6gsh2mq1a9irjg9a5fig0jlyb2"; system = "open-location-code"; asd = "open-location-code"; }); @@ -53054,6 +53854,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + open-with = (build-asdf-system { + pname = "open-with"; + version = "20241012-git"; + asds = [ "open-with" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/open-with/2024-10-12/open-with-20241012-git.tgz"; + sha256 = "0bc0p8nigmfq4axx6qmlxdkm4sb0d2mdi1h7bwmnh0irvmrgdy33"; + system = "open-with"; + asd = "open-with"; + }); + systems = [ "open-with" ]; + lispLibs = [ (getAttr "documentation-utils" self) (getAttr "trivial-features" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + openai-openapi-client = (build-asdf-system { + pname = "openai-openapi-client"; + version = "20241012-git"; + asds = [ "openai-openapi-client" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/openai-openapi-client/2024-10-12/openai-openapi-client-20241012-git.tgz"; + sha256 = "0qyd9i0y75gf92kf8v22n6wmh63791115r7gmg9ca9pl0dgbpmg9"; + system = "openai-openapi-client"; + asd = "openai-openapi-client"; + }); + systems = [ "openai-openapi-client" ]; + lispLibs = [ (getAttr "com_dot_inuoe_dot_jzon" self) (getAttr "dexador" self) (getAttr "openapi-generator" self) (getAttr "quri" self) (getAttr "str" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); openal-blob = (build-asdf-system { pname = "openal-blob"; version = "stable-git"; @@ -53072,16 +53904,16 @@ in lib.makeScope pkgs.newScope (self: { }); openapi-generator = (build-asdf-system { pname = "openapi-generator"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "openapi-generator" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/openapi-generator/2023-10-21/openapi-generator-20231021-git.tgz"; - sha256 = "00kq91jmlq6086zrlx5bb3pkn2zxny9p5zkzp8bgjqas5k92p23j"; + url = "http://beta.quicklisp.org/archive/openapi-generator/2024-10-12/openapi-generator-20241012-git.tgz"; + sha256 = "0zc0y8frcnsqj76sqmqsgfv0zhdz5kkpynwan3sigc78fl1nrs3q"; system = "openapi-generator"; asd = "openapi-generator"; }); systems = [ "openapi-generator" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-hash-util" self) (getAttr "cl-json-pointer" self) (getAttr "cl-project" self) (getAttr "cl-semver" self) (getAttr "com_dot_inuoe_dot_jzon" self) (getAttr "dexador" self) (getAttr "json-mop" self) (getAttr "listopia" self) (getAttr "moptilities" self) (getAttr "parse-float" self) (getAttr "pathname-utils" self) (getAttr "quri" self) (getAttr "serapeum" self) (getAttr "str" self) (getAttr "yason" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-hash-util" self) (getAttr "cl-json-pointer" self) (getAttr "cl-project" self) (getAttr "cl-semver" self) (getAttr "cl-yaml" self) (getAttr "com_dot_inuoe_dot_jzon" self) (getAttr "dexador" self) (getAttr "json-mop" self) (getAttr "listopia" self) (getAttr "moptilities" self) (getAttr "parse-float" self) (getAttr "pathname-utils" self) (getAttr "quri" self) (getAttr "serapeum" self) (getAttr "str" self) (getAttr "yason" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -53150,6 +53982,102 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + openrpc-ci = (build-asdf-system { + pname = "openrpc-ci"; + version = "20241012-git"; + asds = [ "openrpc-ci" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/openrpc/2024-10-12/openrpc-20241012-git.tgz"; + sha256 = "1s3c5yzfdzvv9wdfjl6lmap7dv5wqz6ywnxl1sbahy1k2xm3fg1s"; + system = "openrpc-ci"; + asd = "openrpc-ci"; + }); + systems = [ "openrpc-ci" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + openrpc-client = (build-asdf-system { + pname = "openrpc-client"; + version = "20241012-git"; + asds = [ "openrpc-client" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/openrpc/2024-10-12/openrpc-20241012-git.tgz"; + sha256 = "1s3c5yzfdzvv9wdfjl6lmap7dv5wqz6ywnxl1sbahy1k2xm3fg1s"; + system = "openrpc-client"; + asd = "openrpc-client"; + }); + systems = [ "openrpc-client" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "closer-mop" self) (getAttr "dexador" self) (getAttr "jsonrpc" self) (getAttr "kebab" self) (getAttr "log4cl" self) (getAttr "serapeum" self) (getAttr "str" self) (getAttr "usocket" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + openrpc-deps = (build-asdf-system { + pname = "openrpc-deps"; + version = "20241012-git"; + asds = [ "openrpc-deps" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/openrpc/2024-10-12/openrpc-20241012-git.tgz"; + sha256 = "1s3c5yzfdzvv9wdfjl6lmap7dv5wqz6ywnxl1sbahy1k2xm3fg1s"; + system = "openrpc-deps"; + asd = "openrpc-deps"; + }); + systems = [ "openrpc-deps" ]; + lispLibs = [ (getAttr "jsonrpc" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + openrpc-docs = (build-asdf-system { + pname = "openrpc-docs"; + version = "20241012-git"; + asds = [ "openrpc-docs" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/openrpc/2024-10-12/openrpc-20241012-git.tgz"; + sha256 = "1s3c5yzfdzvv9wdfjl6lmap7dv5wqz6ywnxl1sbahy1k2xm3fg1s"; + system = "openrpc-docs"; + asd = "openrpc-docs"; + }); + systems = [ "openrpc-docs" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "_40ants-doc" self) (getAttr "docs-config" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + openrpc-example = (build-asdf-system { + pname = "openrpc-example"; + version = "20241012-git"; + asds = [ "openrpc-example" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/openrpc/2024-10-12/openrpc-20241012-git.tgz"; + sha256 = "1s3c5yzfdzvv9wdfjl6lmap7dv5wqz6ywnxl1sbahy1k2xm3fg1s"; + system = "openrpc-example"; + asd = "openrpc-example"; + }); + systems = [ "openrpc-example" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "clack" self) (getAttr "clack-handler-hunchentoot" self) (getAttr "jsonrpc" self) (getAttr "openrpc-client" self) (getAttr "openrpc-server" self) (getAttr "serapeum" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + openrpc-server = (build-asdf-system { + pname = "openrpc-server"; + version = "20241012-git"; + asds = [ "openrpc-server" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/openrpc/2024-10-12/openrpc-20241012-git.tgz"; + sha256 = "1s3c5yzfdzvv9wdfjl6lmap7dv5wqz6ywnxl1sbahy1k2xm3fg1s"; + system = "openrpc-server"; + asd = "openrpc-server"; + }); + systems = [ "openrpc-server" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "clack-cors" self) (getAttr "clack-prometheus" self) (getAttr "closer-mop" self) (getAttr "jsonrpc" self) (getAttr "lack-request" self) (getAttr "lambda-fiddle" self) (getAttr "local-time" self) (getAttr "log4cl" self) (getAttr "log4cl-extras" self) (getAttr "serapeum" self) (getAttr "str" self) (getAttr "websocket-driver" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); ops-test = (build-asdf-system { pname = "ops-test"; version = "20211020-git"; @@ -53406,11 +54334,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_melusina_dot_atelier = (build-asdf-system { pname = "org.melusina.atelier"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.melusina.atelier" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-atelier/2023-10-21/cl-atelier-20231021-git.tgz"; - sha256 = "0j5m9c3z9xcw6ww3fmqpz897fa7mcih6nl9vy36ggnv1iin6x90g"; + url = "http://beta.quicklisp.org/archive/cl-atelier/2024-10-12/cl-atelier-20241012-git.tgz"; + sha256 = "0n8v4f7xq1szxhipmkvg4x5s41vqllcq6hxzcd7r0rbxi9i57pqz"; system = "org.melusina.atelier"; asd = "org.melusina.atelier"; }); @@ -53422,11 +54350,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_melusina_dot_confidence = (build-asdf-system { pname = "org.melusina.confidence"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.melusina.confidence" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-confidence/2023-10-21/cl-confidence-20231021-git.tgz"; - sha256 = "0i474vyx16whv1jl75d026rhmfpf4xd243pw4vkjln7s85h2z6l3"; + url = "http://beta.quicklisp.org/archive/cl-confidence/2024-10-12/cl-confidence-20241012-git.tgz"; + sha256 = "1azvv54zchw88gpzh4dkflz6y0pvf7wq433yc7m90fs3c70wmsjl"; system = "org.melusina.confidence"; asd = "org.melusina.confidence"; }); @@ -53438,11 +54366,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_melusina_dot_rashell = (build-asdf-system { pname = "org.melusina.rashell"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.melusina.rashell" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-rashell/2023-10-21/cl-rashell-20231021-git.tgz"; - sha256 = "0816i17rh56kvj5xma509pq2c1si62ki930nsg2c7asv3yx7724g"; + url = "http://beta.quicklisp.org/archive/cl-rashell/2024-10-12/cl-rashell-20241012-git.tgz"; + sha256 = "0fpdyhfc68xy6m0ixfvcnczlmlwasby24k47nc25x73swshlxqwq"; system = "org.melusina.rashell"; asd = "org.melusina.rashell"; }); @@ -53454,11 +54382,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_melusina_dot_webmachine = (build-asdf-system { pname = "org.melusina.webmachine"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.melusina.webmachine" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-webmachine/2023-10-21/cl-webmachine-20231021-git.tgz"; - sha256 = "0rdqk9zwdzgbc4pskq2cv1w8b1y85f1lixrpm9d92b2sbx7hhxib"; + url = "http://beta.quicklisp.org/archive/cl-webmachine/2024-10-12/cl-webmachine-20241012-git.tgz"; + sha256 = "0k31fbwsv0zdixzis625dsk9zlz04g4908wzwb8p593dksqa0sr8"; system = "org.melusina.webmachine"; asd = "org.melusina.webmachine"; }); @@ -53470,11 +54398,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_conduit-packages = (build-asdf-system { pname = "org.tfeb.conduit-packages"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.conduit-packages" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/conduit-packages/2023-10-21/conduit-packages-20231021-git.tgz"; - sha256 = "1d1hpf4a88492zr87ybcmzj0pjrirwra4kjqg7g18s7nymxmm1kr"; + url = "http://beta.quicklisp.org/archive/conduit-packages/2024-10-12/conduit-packages-20241012-git.tgz"; + sha256 = "1x89maglc4cw2c87y23zrsvh8mk22ik1anmps462w3a0j3c1ly12"; system = "org.tfeb.conduit-packages"; asd = "org.tfeb.conduit-packages"; }); @@ -53486,11 +54414,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_dsm = (build-asdf-system { pname = "org.tfeb.dsm"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "org.tfeb.dsm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/dsm/2023-02-14/dsm-20230214-git.tgz"; - sha256 = "0pzhxbvkvcwzjx1lm3jmry5l79hnh82x4a0x868wabibb7ra9fx9"; + url = "http://beta.quicklisp.org/archive/dsm/2024-10-12/dsm-20241012-git.tgz"; + sha256 = "033swj37bgbzn35fjndxqsk89i17bhsim12j8mciiziykx62c4pw"; system = "org.tfeb.dsm"; asd = "org.tfeb.dsm"; }); @@ -53502,11 +54430,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax = (build-asdf-system { pname = "org.tfeb.hax"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax"; asd = "org.tfeb.hax"; }); @@ -53518,11 +54446,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_abstract-classes = (build-asdf-system { pname = "org.tfeb.hax.abstract-classes"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.abstract-classes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.abstract-classes"; asd = "org.tfeb.hax.abstract-classes"; }); @@ -53534,11 +54462,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_binding = (build-asdf-system { pname = "org.tfeb.hax.binding"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.binding" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.binding"; asd = "org.tfeb.hax.binding"; }); @@ -53550,11 +54478,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_collecting = (build-asdf-system { pname = "org.tfeb.hax.collecting"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.collecting" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.collecting"; asd = "org.tfeb.hax.collecting"; }); @@ -53566,11 +54494,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_comment-form = (build-asdf-system { pname = "org.tfeb.hax.comment-form"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.comment-form" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.comment-form"; asd = "org.tfeb.hax.comment-form"; }); @@ -53582,11 +54510,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_cs-forms = (build-asdf-system { pname = "org.tfeb.hax.cs-forms"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.cs-forms" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.cs-forms"; asd = "org.tfeb.hax.cs-forms"; }); @@ -53598,11 +54526,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_define-functions = (build-asdf-system { pname = "org.tfeb.hax.define-functions"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.define-functions" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.define-functions"; asd = "org.tfeb.hax.define-functions"; }); @@ -53614,11 +54542,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_dynamic-state = (build-asdf-system { pname = "org.tfeb.hax.dynamic-state"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.dynamic-state" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.dynamic-state"; asd = "org.tfeb.hax.dynamic-state"; }); @@ -53630,11 +54558,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_iterate = (build-asdf-system { pname = "org.tfeb.hax.iterate"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.iterate" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.iterate"; asd = "org.tfeb.hax.iterate"; }); @@ -53646,11 +54574,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_memoize = (build-asdf-system { pname = "org.tfeb.hax.memoize"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.memoize" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.memoize"; asd = "org.tfeb.hax.memoize"; }); @@ -53662,11 +54590,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_metatronic = (build-asdf-system { pname = "org.tfeb.hax.metatronic"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.metatronic" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.metatronic"; asd = "org.tfeb.hax.metatronic"; }); @@ -53678,11 +54606,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_object-accessors = (build-asdf-system { pname = "org.tfeb.hax.object-accessors"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.object-accessors" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.object-accessors"; asd = "org.tfeb.hax.object-accessors"; }); @@ -53694,11 +54622,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_read-package = (build-asdf-system { pname = "org.tfeb.hax.read-package"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.read-package" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.read-package"; asd = "org.tfeb.hax.read-package"; }); @@ -53710,11 +54638,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_simple-loops = (build-asdf-system { pname = "org.tfeb.hax.simple-loops"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.simple-loops" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.simple-loops"; asd = "org.tfeb.hax.simple-loops"; }); @@ -53726,11 +54654,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_singleton-classes = (build-asdf-system { pname = "org.tfeb.hax.singleton-classes"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.singleton-classes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.singleton-classes"; asd = "org.tfeb.hax.singleton-classes"; }); @@ -53742,11 +54670,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_slog = (build-asdf-system { pname = "org.tfeb.hax.slog"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.slog" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.slog"; asd = "org.tfeb.hax.slog"; }); @@ -53758,11 +54686,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_spam = (build-asdf-system { pname = "org.tfeb.hax.spam"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.spam" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.spam"; asd = "org.tfeb.hax.spam"; }); @@ -53774,11 +54702,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_stringtable = (build-asdf-system { pname = "org.tfeb.hax.stringtable"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.stringtable" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.stringtable"; asd = "org.tfeb.hax.stringtable"; }); @@ -53790,11 +54718,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_trace-macroexpand = (build-asdf-system { pname = "org.tfeb.hax.trace-macroexpand"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.trace-macroexpand" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.trace-macroexpand"; asd = "org.tfeb.hax.trace-macroexpand"; }); @@ -53806,11 +54734,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_utilities = (build-asdf-system { pname = "org.tfeb.hax.utilities"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.utilities" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.utilities"; asd = "org.tfeb.hax.utilities"; }); @@ -53822,11 +54750,11 @@ in lib.makeScope pkgs.newScope (self: { }); org_dot_tfeb_dot_hax_dot_wrapping-standard = (build-asdf-system { pname = "org.tfeb.hax.wrapping-standard"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "org.tfeb.hax.wrapping-standard" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2023-10-21/tfeb-lisp-hax-20231021-git.tgz"; - sha256 = "0d7r9ac57cdsw59lnkhknj4avf09fn6vcfp2r86w7j83fqrb651z"; + url = "http://beta.quicklisp.org/archive/tfeb-lisp-hax/2024-10-12/tfeb-lisp-hax-20241012-git.tgz"; + sha256 = "08rrl3kihqkhxgghdvsd1304i4jcnmag5jzw15pp4rbqvsp36nfa"; system = "org.tfeb.hax.wrapping-standard"; asd = "org.tfeb.hax.wrapping-standard"; }); @@ -53982,11 +54910,11 @@ in lib.makeScope pkgs.newScope (self: { }); orizuru-orm = (build-asdf-system { pname = "orizuru-orm"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "orizuru-orm" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/orizuru-orm/2023-10-21/orizuru-orm-20231021-git.tgz"; - sha256 = "1njd12r04yphz722qnf80561iiggyk6yg0wxy7pbh2xwhfs5pflr"; + url = "http://beta.quicklisp.org/archive/orizuru-orm/2024-10-12/orizuru-orm-20241012-git.tgz"; + sha256 = "064sr0nxz884vrh550d8v3v9pqgs65d97lrr3828qn6bgaxwm1va"; system = "orizuru-orm"; asd = "orizuru-orm"; }); @@ -54044,11 +54972,11 @@ in lib.makeScope pkgs.newScope (self: { }); overlord = (build-asdf-system { pname = "overlord"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "overlord" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/overlord/2023-06-18/overlord-20230618-git.tgz"; - sha256 = "05lnagv4vlvap0k1pg5yfkhl1pjl0vlbflwjhl0rb9apyh7kkgia"; + url = "http://beta.quicklisp.org/archive/overlord/2024-10-12/overlord-20241012-git.tgz"; + sha256 = "1afhqx6wdqdah1fpapvr6zxpzkkqmhbrxkqxam523fqjyg4a6941"; system = "overlord"; asd = "overlord"; }); @@ -54268,11 +55196,11 @@ in lib.makeScope pkgs.newScope (self: { }); papyrus = (build-asdf-system { pname = "papyrus"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "papyrus" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/papyrus/2022-11-06/papyrus-20221106-git.tgz"; - sha256 = "0swpsxir553cs2pj6xz8cgyr3y9fh88hiv527ssa8cm7qkxcbbg9"; + url = "http://beta.quicklisp.org/archive/papyrus/2024-10-12/papyrus-20241012-git.tgz"; + sha256 = "0cnhdl2x5vs91srlfjnaznwj5vrg6qlyn2xjbyy40p8yvr5pny88"; system = "papyrus"; asd = "papyrus"; }); @@ -54284,11 +55212,11 @@ in lib.makeScope pkgs.newScope (self: { }); parachute = (build-asdf-system { pname = "parachute"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "parachute" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/parachute/2023-10-21/parachute-20231021-git.tgz"; - sha256 = "1g7zkzcd0k2gjsr91lndarg7mzfdb23rmh8h97i2y3grync9n1h6"; + url = "http://beta.quicklisp.org/archive/parachute/2024-10-12/parachute-20241012-git.tgz"; + sha256 = "1hghjrv5d5w9nz27lhwz8vvbdcjl2skm76r8adpzmi7s1f9ww121"; system = "parachute"; asd = "parachute"; }); @@ -54298,11 +55226,11 @@ in lib.makeScope pkgs.newScope (self: { }); parachute-fiveam = (build-asdf-system { pname = "parachute-fiveam"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "parachute-fiveam" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/parachute/2023-10-21/parachute-20231021-git.tgz"; - sha256 = "1g7zkzcd0k2gjsr91lndarg7mzfdb23rmh8h97i2y3grync9n1h6"; + url = "http://beta.quicklisp.org/archive/parachute/2024-10-12/parachute-20241012-git.tgz"; + sha256 = "1hghjrv5d5w9nz27lhwz8vvbdcjl2skm76r8adpzmi7s1f9ww121"; system = "parachute-fiveam"; asd = "parachute-fiveam"; }); @@ -54314,11 +55242,11 @@ in lib.makeScope pkgs.newScope (self: { }); parachute-lisp-unit = (build-asdf-system { pname = "parachute-lisp-unit"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "parachute-lisp-unit" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/parachute/2023-10-21/parachute-20231021-git.tgz"; - sha256 = "1g7zkzcd0k2gjsr91lndarg7mzfdb23rmh8h97i2y3grync9n1h6"; + url = "http://beta.quicklisp.org/archive/parachute/2024-10-12/parachute-20241012-git.tgz"; + sha256 = "1hghjrv5d5w9nz27lhwz8vvbdcjl2skm76r8adpzmi7s1f9ww121"; system = "parachute-lisp-unit"; asd = "parachute-lisp-unit"; }); @@ -54330,11 +55258,11 @@ in lib.makeScope pkgs.newScope (self: { }); parachute-prove = (build-asdf-system { pname = "parachute-prove"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "parachute-prove" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/parachute/2023-10-21/parachute-20231021-git.tgz"; - sha256 = "1g7zkzcd0k2gjsr91lndarg7mzfdb23rmh8h97i2y3grync9n1h6"; + url = "http://beta.quicklisp.org/archive/parachute/2024-10-12/parachute-20241012-git.tgz"; + sha256 = "1hghjrv5d5w9nz27lhwz8vvbdcjl2skm76r8adpzmi7s1f9ww121"; system = "parachute-prove"; asd = "parachute-prove"; }); @@ -54612,11 +55540,11 @@ in lib.makeScope pkgs.newScope (self: { }); parse-number = (build-asdf-system { pname = "parse-number"; - version = "v1.7"; + version = "v1.8"; asds = [ "parse-number" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/parse-number/2018-02-28/parse-number-v1.7.tgz"; - sha256 = "0sk06ib1bhqv9y39vwnnw44vmbc4b0kvqm37xxmkxd4dwchq82d7"; + url = "http://beta.quicklisp.org/archive/parse-number/2024-10-12/parse-number-v1.8.tgz"; + sha256 = "1yh54v02i9b55bmkfkz59qd14irw8llasp48drbilkbz1az1qg2p"; system = "parse-number"; asd = "parse-number"; }); @@ -54624,6 +55552,38 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ ]; meta = {}; }); + parse-number-range = (build-asdf-system { + pname = "parse-number-range"; + version = "1.0.1"; + asds = [ "parse-number-range" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/parse-number-range/2024-10-12/parse-number-range_1.0.1.tgz"; + sha256 = "1kd0l3bcywhwmnjil0zzvq4cjlhpj2g1wiy7h7860nflzfz7qvds"; + system = "parse-number-range"; + asd = "parse-number-range"; + }); + systems = [ "parse-number-range" ]; + lispLibs = [ (getAttr "cartesian-product-switch" self) (getAttr "enhanced-multiple-value-bind" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + parse-number-range__tests = (build-asdf-system { + pname = "parse-number-range_tests"; + version = "1.0.1"; + asds = [ "parse-number-range_tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/parse-number-range/2024-10-12/parse-number-range_1.0.1.tgz"; + sha256 = "1kd0l3bcywhwmnjil0zzvq4cjlhpj2g1wiy7h7860nflzfz7qvds"; + system = "parse-number-range_tests"; + asd = "parse-number-range_tests"; + }); + systems = [ "parse-number-range_tests" ]; + lispLibs = [ (getAttr "parachute" self) (getAttr "parse-number-range" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); parse-rgb = (build-asdf-system { pname = "parse-rgb"; version = "20231021-git"; @@ -54876,11 +55836,11 @@ in lib.makeScope pkgs.newScope (self: { }); pathname-utils = (build-asdf-system { pname = "pathname-utils"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "pathname-utils" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/pathname-utils/2023-10-21/pathname-utils-20231021-git.tgz"; - sha256 = "0j358819g2jwrpih84ksqs5ywgg82ykhk7hd6zh33kxpk5rdmm7m"; + url = "http://beta.quicklisp.org/archive/pathname-utils/2024-10-12/pathname-utils-20241012-git.tgz"; + sha256 = "1z1z3dar6g2ybxgk9zgcyb8bh5g6rh12bwl3ik6rdwy3rdd5b1q5"; system = "pathname-utils"; asd = "pathname-utils"; }); @@ -54892,11 +55852,11 @@ in lib.makeScope pkgs.newScope (self: { }); pathname-utils-test = (build-asdf-system { pname = "pathname-utils-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "pathname-utils-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/pathname-utils/2023-10-21/pathname-utils-20231021-git.tgz"; - sha256 = "0j358819g2jwrpih84ksqs5ywgg82ykhk7hd6zh33kxpk5rdmm7m"; + url = "http://beta.quicklisp.org/archive/pathname-utils/2024-10-12/pathname-utils-20241012-git.tgz"; + sha256 = "1z1z3dar6g2ybxgk9zgcyb8bh5g6rh12bwl3ik6rdwy3rdd5b1q5"; system = "pathname-utils-test"; asd = "pathname-utils-test"; }); @@ -55320,11 +56280,11 @@ in lib.makeScope pkgs.newScope (self: { }); persistent = (build-asdf-system { pname = "persistent"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "persistent" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "persistent"; asd = "persistent"; }); @@ -55384,11 +56344,11 @@ in lib.makeScope pkgs.newScope (self: { }); petalisp = (build-asdf-system { pname = "petalisp"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp"; asd = "petalisp"; }); @@ -55400,27 +56360,27 @@ in lib.makeScope pkgs.newScope (self: { }); petalisp_dot_api = (build-asdf-system { pname = "petalisp.api"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.api" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.api"; asd = "petalisp.api"; }); systems = [ "petalisp.api" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "petalisp_dot_codegen" self) (getAttr "petalisp_dot_core" self) (getAttr "petalisp_dot_ir" self) (getAttr "petalisp_dot_native-backend" self) (getAttr "petalisp_dot_utilities" self) (getAttr "split-sequence" self) (getAttr "trivia" self) (getAttr "trivial-macroexpand-all" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "petalisp_dot_codegen" self) (getAttr "petalisp_dot_core" self) (getAttr "petalisp_dot_ir" self) (getAttr "petalisp_dot_native-backend" self) (getAttr "petalisp_dot_packages" self) (getAttr "petalisp_dot_utilities" self) (getAttr "split-sequence" self) (getAttr "trivia" self) (getAttr "trivial-macroexpand-all" self) ]; meta = { hydraPlatforms = [ ]; }; }); petalisp_dot_codegen = (build-asdf-system { pname = "petalisp.codegen"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.codegen" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.codegen"; asd = "petalisp.codegen"; }); @@ -55432,27 +56392,27 @@ in lib.makeScope pkgs.newScope (self: { }); petalisp_dot_core = (build-asdf-system { pname = "petalisp.core"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.core" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.core"; asd = "petalisp.core"; }); systems = [ "petalisp.core" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "lparallel" self) (getAttr "petalisp_dot_utilities" self) (getAttr "trivia" self) (getAttr "typo" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "lparallel" self) (getAttr "petalisp_dot_packages" self) (getAttr "petalisp_dot_utilities" self) (getAttr "trivia" self) (getAttr "typo" self) ]; meta = { hydraPlatforms = [ ]; }; }); petalisp_dot_examples = (build-asdf-system { pname = "petalisp.examples"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.examples"; asd = "petalisp.examples"; }); @@ -55462,29 +56422,13 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - petalisp_dot_graphviz = (build-asdf-system { - pname = "petalisp.graphviz"; - version = "20231021-git"; - asds = [ "petalisp.graphviz" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; - system = "petalisp.graphviz"; - asd = "petalisp.graphviz"; - }); - systems = [ "petalisp.graphviz" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-dot" self) (getAttr "closer-mop" self) (getAttr "petalisp" self) (getAttr "petalisp_dot_core" self) (getAttr "petalisp_dot_ir" self) (getAttr "petalisp_dot_utilities" self) (getAttr "trivial-features" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); petalisp_dot_ir = (build-asdf-system { pname = "petalisp.ir"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.ir" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.ir"; asd = "petalisp.ir"; }); @@ -55496,11 +56440,11 @@ in lib.makeScope pkgs.newScope (self: { }); petalisp_dot_native-backend = (build-asdf-system { pname = "petalisp.native-backend"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.native-backend" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.native-backend"; asd = "petalisp.native-backend"; }); @@ -55510,13 +56454,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + petalisp_dot_packages = (build-asdf-system { + pname = "petalisp.packages"; + version = "20241012-git"; + asds = [ "petalisp.packages" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; + system = "petalisp.packages"; + asd = "petalisp.packages"; + }); + systems = [ "petalisp.packages" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); petalisp_dot_test-suite = (build-asdf-system { pname = "petalisp.test-suite"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.test-suite" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.test-suite"; asd = "petalisp.test-suite"; }); @@ -55528,11 +56488,11 @@ in lib.makeScope pkgs.newScope (self: { }); petalisp_dot_utilities = (build-asdf-system { pname = "petalisp.utilities"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "petalisp.utilities" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/petalisp/2023-10-21/petalisp-20231021-git.tgz"; - sha256 = "05mspnbncszmw75kcdhs54jyz397ij40gbsyspm7s24qhw03iqad"; + url = "http://beta.quicklisp.org/archive/petalisp/2024-10-12/petalisp-20241012-git.tgz"; + sha256 = "06njw0jx48rm52zbpwdw442j6rasqsmfd2zsi71y30aij7c9b0h9"; system = "petalisp.utilities"; asd = "petalisp.utilities"; }); @@ -55752,11 +56712,11 @@ in lib.makeScope pkgs.newScope (self: { }); phos = (build-asdf-system { pname = "phos"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "phos" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/phos/2022-02-20/phos-20220220-git.tgz"; - sha256 = "1zwci86rkbaiix0w2gd5q6nr8v2vv945pkvwp0j240iyzd4hfxr3"; + url = "http://beta.quicklisp.org/archive/phos/2024-10-12/phos-20241012-git.tgz"; + sha256 = "0lnv54iczidjpskciw7y2faazgxjwpncggdh5kggpjziq03pr7lv"; system = "phos"; asd = "phos"; }); @@ -55771,7 +56731,7 @@ in lib.makeScope pkgs.newScope (self: { version = "master-df14cb8c-git"; asds = [ "physical-dimension" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/antik/2019-10-08/antik-master-df14cb8c-git.tgz"; + url = "http://beta.quicklisp.org/archive/antik/2024-10-12/antik-master-df14cb8c-git.tgz"; sha256 = "1n08cx4n51z8v4bxyak166lp495xda3x7llfxcdpxndxqxcammr0"; system = "physical-dimension"; asd = "physical-dimension"; @@ -55798,11 +56758,11 @@ in lib.makeScope pkgs.newScope (self: { }); picl = (build-asdf-system { pname = "picl"; - version = "20210124-git"; + version = "20241012-git"; asds = [ "picl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/picl/2021-01-24/picl-20210124-git.tgz"; - sha256 = "14jwx7hv6h563ppvxicdkrqx0cxlz15im9a4grd9yvwdfxl70l4c"; + url = "http://beta.quicklisp.org/archive/picl/2024-10-12/picl-20241012-git.tgz"; + sha256 = "0pdzlmphf1bqk5xdvwf1m1l3s5whwm4ysnpl5kpwq70adx38rysk"; system = "picl"; asd = "picl"; }); @@ -56038,11 +56998,11 @@ in lib.makeScope pkgs.newScope (self: { }); plot = (build-asdf-system { pname = "plot"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "plot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/plot/2023-10-21/plot-20231021-git.tgz"; - sha256 = "1cmdpgf9srw8f1ggpkksk3fnw6mxixwl9ia592m0af4y84cqml5k"; + url = "http://beta.quicklisp.org/archive/plot/2024-10-12/plot-20241012-git.tgz"; + sha256 = "1x5kc5y0s082y24qgq138331qmfs0xxxj43ss3aw0kgx7wfpxlms"; system = "plot"; asd = "plot"; }); @@ -56086,11 +57046,11 @@ in lib.makeScope pkgs.newScope (self: { }); plump = (build-asdf-system { pname = "plump"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "plump" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/plump/2023-10-21/plump-20231021-git.tgz"; - sha256 = "09hhqb3ajvqw8smj4c6b1yqbxhaypf3hz71qrzkynxd0bhq8y6af"; + url = "http://beta.quicklisp.org/archive/plump/2024-10-12/plump-20241012-git.tgz"; + sha256 = "04wy2v69zal186gg0pvcj60184gi7cpkpx3h1w93c9nilmla0dv9"; system = "plump"; asd = "plump"; }); @@ -56116,11 +57076,11 @@ in lib.makeScope pkgs.newScope (self: { }); plump-dom = (build-asdf-system { pname = "plump-dom"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "plump-dom" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/plump/2023-10-21/plump-20231021-git.tgz"; - sha256 = "09hhqb3ajvqw8smj4c6b1yqbxhaypf3hz71qrzkynxd0bhq8y6af"; + url = "http://beta.quicklisp.org/archive/plump/2024-10-12/plump-20241012-git.tgz"; + sha256 = "04wy2v69zal186gg0pvcj60184gi7cpkpx3h1w93c9nilmla0dv9"; system = "plump-dom"; asd = "plump-dom"; }); @@ -56132,11 +57092,11 @@ in lib.makeScope pkgs.newScope (self: { }); plump-lexer = (build-asdf-system { pname = "plump-lexer"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "plump-lexer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/plump/2023-10-21/plump-20231021-git.tgz"; - sha256 = "09hhqb3ajvqw8smj4c6b1yqbxhaypf3hz71qrzkynxd0bhq8y6af"; + url = "http://beta.quicklisp.org/archive/plump/2024-10-12/plump-20241012-git.tgz"; + sha256 = "04wy2v69zal186gg0pvcj60184gi7cpkpx3h1w93c9nilmla0dv9"; system = "plump-lexer"; asd = "plump-lexer"; }); @@ -56148,11 +57108,11 @@ in lib.makeScope pkgs.newScope (self: { }); plump-parser = (build-asdf-system { pname = "plump-parser"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "plump-parser" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/plump/2023-10-21/plump-20231021-git.tgz"; - sha256 = "09hhqb3ajvqw8smj4c6b1yqbxhaypf3hz71qrzkynxd0bhq8y6af"; + url = "http://beta.quicklisp.org/archive/plump/2024-10-12/plump-20241012-git.tgz"; + sha256 = "04wy2v69zal186gg0pvcj60184gi7cpkpx3h1w93c9nilmla0dv9"; system = "plump-parser"; asd = "plump-parser"; }); @@ -56164,11 +57124,11 @@ in lib.makeScope pkgs.newScope (self: { }); plump-sexp = (build-asdf-system { pname = "plump-sexp"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "plump-sexp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/plump-sexp/2023-10-21/plump-sexp-20231021-git.tgz"; - sha256 = "09m8lkgb3k0dcz2m6w8smvw77b1ajsc3kpy80h5hcxg16wlzzgjh"; + url = "http://beta.quicklisp.org/archive/plump-sexp/2024-10-12/plump-sexp-20241012-git.tgz"; + sha256 = "19gihmsbwv42zwyc4rd1pcvj5yzf1vnhpci7r5kz1dnrmz9gzy3l"; system = "plump-sexp"; asd = "plump-sexp"; }); @@ -56260,11 +57220,11 @@ in lib.makeScope pkgs.newScope (self: { }); pngload = (build-asdf-system { pname = "pngload"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "pngload" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/pngload/2022-07-07/pngload-20220707-git.tgz"; - sha256 = "1qnd2pz6ckdm5nnf4ipli3zgiyisfqjyf1aiy7iigijv4018lrlx"; + url = "http://beta.quicklisp.org/archive/pngload/2024-10-12/pngload-20241012-git.tgz"; + sha256 = "1j5j8n8xa8hgc413lfxij3wmkwyal13p0a5q6n74zzr61f1kn6vc"; system = "pngload"; asd = "pngload"; }); @@ -56276,11 +57236,11 @@ in lib.makeScope pkgs.newScope (self: { }); pngload_dot_test = (build-asdf-system { pname = "pngload.test"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "pngload.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/pngload/2022-07-07/pngload-20220707-git.tgz"; - sha256 = "1qnd2pz6ckdm5nnf4ipli3zgiyisfqjyf1aiy7iigijv4018lrlx"; + url = "http://beta.quicklisp.org/archive/pngload/2024-10-12/pngload-20241012-git.tgz"; + sha256 = "1j5j8n8xa8hgc413lfxij3wmkwyal13p0a5q6n74zzr61f1kn6vc"; system = "pngload.test"; asd = "pngload.test"; }); @@ -56324,11 +57284,11 @@ in lib.makeScope pkgs.newScope (self: { }); policy-cond = (build-asdf-system { pname = "policy-cond"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "policy-cond" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/policy-cond/2023-10-21/policy-cond-20231021-git.tgz"; - sha256 = "0v4vjy810p5hhg2s2n14v8l7rpciwxr5w9gbh9h8lm7v5fjzclxg"; + url = "http://beta.quicklisp.org/archive/policy-cond/2024-10-12/policy-cond-20241012-git.tgz"; + sha256 = "17gm4alfb8nf85963ckahipx61xfffj0ra2cnn6yra32krzj7gnk"; system = "policy-cond"; asd = "policy-cond"; }); @@ -56370,18 +57330,18 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - polymorphic-functions = (build-asdf-system { - pname = "polymorphic-functions"; - version = "20230618-git"; - asds = [ "polymorphic-functions" ]; + polymorphic-functions-lite = (build-asdf-system { + pname = "polymorphic-functions-lite"; + version = "20241012-git"; + asds = [ "polymorphic-functions-lite" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/polymorphic-functions/2023-06-18/polymorphic-functions-20230618-git.tgz"; - sha256 = "1059l2i50ld3jm6rqarwkafgw6jnk3hcycfkjh5v64maw5q1rkyi"; - system = "polymorphic-functions"; - asd = "polymorphic-functions"; + url = "http://beta.quicklisp.org/archive/polymorphic-functions/2024-10-12/polymorphic-functions-20241012-git.tgz"; + sha256 = "1bawhbj5rh1q6qrcjnx48n78841mgri5n63pmicxxyhif2il0zq3"; + system = "polymorphic-functions-lite"; + asd = "polymorphic-functions-lite"; }); - systems = [ "polymorphic-functions" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-form-types" self) (getAttr "closer-mop" self) (getAttr "compiler-macro-notes" self) (getAttr "ctype" self) (getAttr "extensible-compound-types" self) (getAttr "fiveam" self) (getAttr "introspect-environment" self) (getAttr "let-plus" self) (getAttr "optima" self) (getAttr "split-sequence" self) (getAttr "trivial-garbage" self) ]; + systems = [ "polymorphic-functions-lite" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "fiveam" self) (getAttr "introspect-environment" self) (getAttr "optima" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -56532,11 +57492,11 @@ in lib.makeScope pkgs.newScope (self: { }); postmodern = (build-asdf-system { pname = "postmodern"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "postmodern" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/postmodern/2023-10-21/postmodern-20231021-git.tgz"; - sha256 = "1abb80zmnawzl9g09css57kviwbqw5fcxhp3fjrzw7zc3n1wfr8y"; + url = "http://beta.quicklisp.org/archive/postmodern/2024-10-12/postmodern-20241012-git.tgz"; + sha256 = "1hj0dpclzihy1rcnwhiv16abmaa54wygxyib3j2h9q4qs26w7pzb"; system = "postmodern"; asd = "postmodern"; }); @@ -56544,22 +57504,6 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cl-postgres" self) (getAttr "closer-mop" self) (getAttr "global-vars" self) (getAttr "s-sql" self) (getAttr "split-sequence" self) ]; meta = {}; }); - postmodern-localtime = (build-asdf-system { - pname = "postmodern-localtime"; - version = "20200610-git"; - asds = [ "postmodern-localtime" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/postmodern-localtime/2020-06-10/postmodern-localtime-20200610-git.tgz"; - sha256 = "0kiswbdr3vsl7xfs43h0w9c2s6fm6ammff6mpab6zba7rdmfg6d3"; - system = "postmodern-localtime"; - asd = "postmodern-localtime"; - }); - systems = [ "postmodern-localtime" ]; - lispLibs = [ (getAttr "cl-postgres" self) (getAttr "local-time" self) (getAttr "postmodern" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); postmodernity = (build-asdf-system { pname = "postmodernity"; version = "20170124-git"; @@ -56642,11 +57586,11 @@ in lib.makeScope pkgs.newScope (self: { }); ppath = (build-asdf-system { pname = "ppath"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ppath" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ppath/2023-10-21/ppath-20231021-git.tgz"; - sha256 = "1xp9igyajj4ndk0gswqx8ynblvhmwkm1lliyp543v0mf1hdq4ayk"; + url = "http://beta.quicklisp.org/archive/ppath/2024-10-12/ppath-20241012-git.tgz"; + sha256 = "122h2xlr9435gjim567cyry13ylbsixziy5bi1n4lzpfjnkq68qg"; system = "ppath"; asd = "ppath"; }); @@ -56658,11 +57602,11 @@ in lib.makeScope pkgs.newScope (self: { }); ppath-test = (build-asdf-system { pname = "ppath-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "ppath-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ppath/2023-10-21/ppath-20231021-git.tgz"; - sha256 = "1xp9igyajj4ndk0gswqx8ynblvhmwkm1lliyp543v0mf1hdq4ayk"; + url = "http://beta.quicklisp.org/archive/ppath/2024-10-12/ppath-20241012-git.tgz"; + sha256 = "122h2xlr9435gjim567cyry13ylbsixziy5bi1n4lzpfjnkq68qg"; system = "ppath-test"; asd = "ppath-test"; }); @@ -56720,6 +57664,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + precise-time = (build-asdf-system { + pname = "precise-time"; + version = "20241012-git"; + asds = [ "precise-time" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/precise-time/2024-10-12/precise-time-20241012-git.tgz"; + sha256 = "114ix5nldfg301g0af8lsnc129i7hnhgdzmnznda2fv92zf3vn8g"; + system = "precise-time"; + asd = "precise-time"; + }); + systems = [ "precise-time" ]; + lispLibs = [ (getAttr "cffi" self) (getAttr "documentation-utils" self) (getAttr "trivial-features" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + pregexp = (build-asdf-system { + pname = "pregexp"; + version = "20241012-git"; + asds = [ "pregexp" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/pregexp/2024-10-12/pregexp-20241012-git.tgz"; + sha256 = "10l9hj7a812km1hygg6iwwl1bf8jgsfyfr1ixj7bif8k8502h4nz"; + system = "pregexp"; + asd = "pregexp"; + }); + systems = [ "pregexp" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); prepl = (build-asdf-system { pname = "prepl"; version = "20231021-git"; @@ -56850,11 +57826,11 @@ in lib.makeScope pkgs.newScope (self: { }); priority-queue-benchmark = (build-asdf-system { pname = "priority-queue-benchmark"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "priority-queue-benchmark" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/damn-fast-priority-queue/2022-11-06/damn-fast-priority-queue-20221106-git.tgz"; - sha256 = "14917b1z7ag3a7f88p4fk4649iy07kn9vpq6bszdxcp1irnc5a13"; + url = "http://beta.quicklisp.org/archive/damn-fast-priority-queue/2024-10-12/damn-fast-priority-queue-20241012-git.tgz"; + sha256 = "1mbigpgi7qbqvpj59l1f7p2qcg00ybvqzdca1j1b9hx62h224ndw"; system = "priority-queue-benchmark"; asd = "priority-queue-benchmark"; }); @@ -56894,6 +57870,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + progressons = (build-asdf-system { + pname = "progressons"; + version = "20241012-git"; + asds = [ "progressons" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/progressons/2024-10-12/progressons-20241012-git.tgz"; + sha256 = "1i93khd0l1aphzh6qb4yy9cpi2nmqac08b90yx95p4zymap03nly"; + system = "progressons"; + asd = "progressons"; + }); + systems = [ "progressons" ]; + lispLibs = [ (getAttr "cl-ansi-text" self) (getAttr "str" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); projectured_dot_document = (build-asdf-system { pname = "projectured.document"; version = "quicklisp-c3a60e76-git"; @@ -57040,11 +58032,11 @@ in lib.makeScope pkgs.newScope (self: { }); prometheus-gc = (build-asdf-system { pname = "prometheus-gc"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "prometheus-gc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/prometheus-gc/2023-06-18/prometheus-gc-20230618-git.tgz"; - sha256 = "1i9hif2yyb2bgxngqg1imvw5jkdykx13fvqgs60kkq6ww6jjxwwf"; + url = "http://beta.quicklisp.org/archive/prometheus-gc/2024-10-12/prometheus-gc-20241012-git.tgz"; + sha256 = "0lfdh7j7jzklhr76fdw1z3a777h5sr5c9h1i6nv1knnm36l44zpj"; system = "prometheus-gc"; asd = "prometheus-gc"; }); @@ -57056,11 +58048,11 @@ in lib.makeScope pkgs.newScope (self: { }); prometheus-gc-ci = (build-asdf-system { pname = "prometheus-gc-ci"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "prometheus-gc-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/prometheus-gc/2023-06-18/prometheus-gc-20230618-git.tgz"; - sha256 = "1i9hif2yyb2bgxngqg1imvw5jkdykx13fvqgs60kkq6ww6jjxwwf"; + url = "http://beta.quicklisp.org/archive/prometheus-gc/2024-10-12/prometheus-gc-20241012-git.tgz"; + sha256 = "0lfdh7j7jzklhr76fdw1z3a777h5sr5c9h1i6nv1knnm36l44zpj"; system = "prometheus-gc-ci"; asd = "prometheus-gc-ci"; }); @@ -57072,11 +58064,11 @@ in lib.makeScope pkgs.newScope (self: { }); prometheus-gc-tests = (build-asdf-system { pname = "prometheus-gc-tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "prometheus-gc-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/prometheus-gc/2023-06-18/prometheus-gc-20230618-git.tgz"; - sha256 = "1i9hif2yyb2bgxngqg1imvw5jkdykx13fvqgs60kkq6ww6jjxwwf"; + url = "http://beta.quicklisp.org/archive/prometheus-gc/2024-10-12/prometheus-gc-20241012-git.tgz"; + sha256 = "0lfdh7j7jzklhr76fdw1z3a777h5sr5c9h1i6nv1knnm36l44zpj"; system = "prometheus-gc-tests"; asd = "prometheus-gc-tests"; }); @@ -57532,11 +58524,11 @@ in lib.makeScope pkgs.newScope (self: { }); psychiq = (build-asdf-system { pname = "psychiq"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "psychiq" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/psychiq/2023-10-21/psychiq-20231021-git.tgz"; - sha256 = "00w83619c88xl8lzh7pcjw31b92fx1myjbnsypr9zwwbm35zmr7g"; + url = "http://beta.quicklisp.org/archive/psychiq/2024-10-12/psychiq-20241012-git.tgz"; + sha256 = "1036yyrzvyqszn037y4189h12221mkxdyp0nlyj26qjyil3qizbl"; system = "psychiq"; asd = "psychiq"; }); @@ -57548,11 +58540,11 @@ in lib.makeScope pkgs.newScope (self: { }); psychiq-test = (build-asdf-system { pname = "psychiq-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "psychiq-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/psychiq/2023-10-21/psychiq-20231021-git.tgz"; - sha256 = "00w83619c88xl8lzh7pcjw31b92fx1myjbnsypr9zwwbm35zmr7g"; + url = "http://beta.quicklisp.org/archive/psychiq/2024-10-12/psychiq-20241012-git.tgz"; + sha256 = "1036yyrzvyqszn037y4189h12221mkxdyp0nlyj26qjyil3qizbl"; system = "psychiq-test"; asd = "psychiq-test"; }); @@ -57626,11 +58618,11 @@ in lib.makeScope pkgs.newScope (self: { }); purgatory = (build-asdf-system { pname = "purgatory"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "purgatory" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/purgatory/2023-10-21/purgatory-20231021-git.tgz"; - sha256 = "1qjg31c5a6kmkc97sv91dr2n0n79hcqkw1d8s7a079npkf6zldz9"; + url = "http://beta.quicklisp.org/archive/purgatory/2024-10-12/purgatory-20241012-git.tgz"; + sha256 = "1srafcpl01a1dv84z3sqc1wl23r8hz1nm3rrmmqiilfh2r4jfw6f"; system = "purgatory"; asd = "purgatory"; }); @@ -57642,11 +58634,11 @@ in lib.makeScope pkgs.newScope (self: { }); purgatory-tests = (build-asdf-system { pname = "purgatory-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "purgatory-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/purgatory/2023-10-21/purgatory-20231021-git.tgz"; - sha256 = "1qjg31c5a6kmkc97sv91dr2n0n79hcqkw1d8s7a079npkf6zldz9"; + url = "http://beta.quicklisp.org/archive/purgatory/2024-10-12/purgatory-20241012-git.tgz"; + sha256 = "1srafcpl01a1dv84z3sqc1wl23r8hz1nm3rrmmqiilfh2r4jfw6f"; system = "purgatory-tests"; asd = "purgatory-tests"; }); @@ -57720,11 +58712,11 @@ in lib.makeScope pkgs.newScope (self: { }); py4cl = (build-asdf-system { pname = "py4cl"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "py4cl" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/py4cl/2022-07-07/py4cl-20220707-git.tgz"; - sha256 = "14pps4r9dx9wx36vwv0r45g0fw1z6739bqacqmzwmyvdilxip977"; + url = "http://beta.quicklisp.org/archive/py4cl/2024-10-12/py4cl-20241012-git.tgz"; + sha256 = "0i2zg58zgcyw68m846sqwjb77mvps766xlp30i65h18plc8yqmpg"; system = "py4cl"; asd = "py4cl"; }); @@ -57736,11 +58728,11 @@ in lib.makeScope pkgs.newScope (self: { }); py4cl2 = (build-asdf-system { pname = "py4cl2"; - version = "v2.9.2"; + version = "v2.9.3"; asds = [ "py4cl2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/py4cl2/2023-06-18/py4cl2-v2.9.2.tgz"; - sha256 = "136145y8mys2brsvc1lcdi6zpykvwn59vgavc8r9kmsdyd5aqi8v"; + url = "http://beta.quicklisp.org/archive/py4cl2/2024-10-12/py4cl2-v2.9.3.tgz"; + sha256 = "0g7qhwnyi1la22k90z8993q8knr117f40jk73wjsvixicqc4awqq"; system = "py4cl2"; asd = "py4cl2"; }); @@ -57752,16 +58744,16 @@ in lib.makeScope pkgs.newScope (self: { }); py4cl2-cffi = (build-asdf-system { pname = "py4cl2-cffi"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "py4cl2-cffi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/py4cl2-cffi/2023-10-21/py4cl2-cffi-20231021-git.tgz"; - sha256 = "104p14qvpx77w1vcd4zwkzxclgfixvgdphk6d01psgwjr8x0zp1q"; + url = "http://beta.quicklisp.org/archive/py4cl2-cffi/2024-10-12/py4cl2-cffi-20241012-git.tgz"; + sha256 = "12ggqz8ibbzsmym51yfd19dlw751s7a1i6ra4z8m2ml3zw1k63zr"; system = "py4cl2-cffi"; asd = "py4cl2-cffi"; }); systems = [ "py4cl2-cffi" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cl-ppcre" self) (getAttr "float-features" self) (getAttr "iterate" self) (getAttr "optima" self) (getAttr "parse-number" self) (getAttr "swank" self) (getAttr "trivial-backtrace" self) (getAttr "trivial-garbage" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cl-ppcre" self) (getAttr "float-features" self) (getAttr "iterate" self) (getAttr "optima" self) (getAttr "parse-number" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -57918,16 +58910,16 @@ in lib.makeScope pkgs.newScope (self: { }); qlot = (build-asdf-system { pname = "qlot"; - version = "20231021-git"; + version = "1.5.14"; asds = [ "qlot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/qlot/2023-10-21/qlot-20231021-git.tgz"; - sha256 = "0q8nmrd79yb00wg574zi98ydyf67n9f9i63n6pcbfxypibi4i74r"; + url = "http://beta.quicklisp.org/archive/qlot/2024-10-12/qlot-1.5.14.tgz"; + sha256 = "15rg8gjwisi2gp7a0pfgdvs9mjs1xxff0a58b14nm8sf11cdggkr"; system = "qlot"; asd = "qlot"; }); systems = [ "qlot" ]; - lispLibs = [ ]; + lispLibs = [ (getAttr "archive" self) (getAttr "bordeaux-threads" self) (getAttr "cl_plus_ssl" self) (getAttr "deflate" self) (getAttr "dexador" self) (getAttr "fuzzy-match" self) (getAttr "ironclad" self) (getAttr "lparallel" self) (getAttr "quri" self) (getAttr "yason" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -57966,11 +58958,11 @@ in lib.makeScope pkgs.newScope (self: { }); qoi = (build-asdf-system { pname = "qoi"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "qoi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/qoi/2022-07-07/qoi-20220707-git.tgz"; - sha256 = "12j762h599cc9qpdpcmxiddixm168sxd2i60mbyka8x6dab64mla"; + url = "http://beta.quicklisp.org/archive/qoi/2024-10-12/qoi-20241012-git.tgz"; + sha256 = "06akq38q7m648c3kpx1pzw21fwqry7fkg6sfgbap0b7bifzg1dsn"; system = "qoi"; asd = "qoi"; }); @@ -59094,6 +60086,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + quaviver = (build-asdf-system { + pname = "quaviver"; + version = "20241012-git"; + asds = [ "quaviver" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quaviver/2024-10-12/quaviver-20241012-git.tgz"; + sha256 = "17kixyznxfwlxkfl2d2ngxas3vi7r21bgfy4g7xlngvakxw3zfzp"; + system = "quaviver"; + asd = "quaviver"; + }); + systems = [ "quaviver" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "trivial-features" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); queen = (build-asdf-system { pname = "queen"; version = "20230618-git"; @@ -59112,11 +60120,11 @@ in lib.makeScope pkgs.newScope (self: { }); query-fs = (build-asdf-system { pname = "query-fs"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "query-fs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/query-fs/2022-11-06/query-fs-20221106-git.tgz"; - sha256 = "010ljk1p8r5rm6b5fpznk9m241362fwy3qk8xdx836ncs8pzzyqf"; + url = "http://beta.quicklisp.org/archive/query-fs/2024-10-12/query-fs-20241012-git.tgz"; + sha256 = "09gz8xrjg9r5bclphgwjdnif8qx4qnx518jragq3znwvlzfb34fw"; system = "query-fs"; asd = "query-fs"; }); @@ -59238,11 +60246,11 @@ in lib.makeScope pkgs.newScope (self: { }); quick-patch = (build-asdf-system { pname = "quick-patch"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "quick-patch" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/quick-patch/2023-06-18/quick-patch-20230618-git.tgz"; - sha256 = "0finjayzf42an5a20hs80r1dnjpcln6ml3k5krhzwr46ps0qka4w"; + url = "http://beta.quicklisp.org/archive/quick-patch/2024-10-12/quick-patch-20241012-git.tgz"; + sha256 = "0a2wkqn65kl88yz7a8728x9gjy4w37hjavfqx4hyijhs1ph38wdi"; system = "quick-patch"; asd = "quick-patch"; }); @@ -59270,11 +60278,11 @@ in lib.makeScope pkgs.newScope (self: { }); quickhull = (build-asdf-system { pname = "quickhull"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "quickhull" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/quickhull/2023-10-21/quickhull-20231021-git.tgz"; - sha256 = "0ldnkxw64vz2j3zvklpy3w13w8znr72kxm925hqbc5xyz1ydqsqr"; + url = "http://beta.quicklisp.org/archive/quickhull/2024-10-12/quickhull-20241012-git.tgz"; + sha256 = "1814qq23dg2shnfdkw9w9ap53qzg2igy119bwslvflmcb1jd7bpm"; system = "quickhull"; asd = "quickhull"; }); @@ -59302,11 +60310,11 @@ in lib.makeScope pkgs.newScope (self: { }); quicklisp-starter = (build-asdf-system { pname = "quicklisp-starter"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "quicklisp-starter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-brewer/2023-10-21/cl-brewer-20231021-git.tgz"; - sha256 = "1xpgy3lci0ip9bwrx8sdwbllgq57mq3apzafxbmci5jdsa2rxh9r"; + url = "http://beta.quicklisp.org/archive/cl-brewer/2024-10-12/cl-brewer-20241012-git.tgz"; + sha256 = "0izf6v4qx82jhk7ln28jhdmnr3lb0r5iqjj0by9igq5sk3y1my4x"; system = "quicklisp-starter"; asd = "quicklisp-starter"; }); @@ -59460,6 +60468,54 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + quil-coalton = (build-asdf-system { + pname = "quil-coalton"; + version = "20241012-git"; + asds = [ "quil-coalton" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "quil-coalton"; + asd = "quil-coalton"; + }); + systems = [ "quil-coalton" ]; + lispLibs = [ (getAttr "coalton" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + quilc = (build-asdf-system { + pname = "quilc"; + version = "20241012-git"; + asds = [ "quilc" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quilc/2024-10-12/quilc-20241012-git.tgz"; + sha256 = "0qy3fzd5cljq1dg5l3nd36wk7a6vna8lm22q0vncchpxvsdgnjpy"; + system = "quilc"; + asd = "quilc"; + }); + systems = [ "quilc" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cl-ppcre" self) (getAttr "cl-quil" self) (getAttr "cl-quil-benchmarking" self) (getAttr "cl-syslog" self) (getAttr "command-line-arguments" self) (getAttr "drakma" self) (getAttr "magicl" self) (getAttr "rpcq" self) (getAttr "split-sequence" self) (getAttr "swank" self) (getAttr "trivial-features" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + quilc-tests = (build-asdf-system { + pname = "quilc-tests"; + version = "20241012-git"; + asds = [ "quilc-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/quilc/2024-10-12/quilc-20241012-git.tgz"; + sha256 = "0qy3fzd5cljq1dg5l3nd36wk7a6vna8lm22q0vncchpxvsdgnjpy"; + system = "quilc-tests"; + asd = "quilc-tests"; + }); + systems = [ "quilc-tests" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "fiasco" self) (getAttr "quilc" self) (getAttr "uuid" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); quine-mccluskey = (build-asdf-system { pname = "quine-mccluskey"; version = "20141217-git"; @@ -59478,25 +60534,25 @@ in lib.makeScope pkgs.newScope (self: { }); quri = (build-asdf-system { pname = "quri"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "quri" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/quri/2023-06-18/quri-20230618-git.tgz"; - sha256 = "0l1jnvvkyaxbf08lnqfdbv6lrkq02iqr3y3rwvqxm4fvnzp7mnpz"; + url = "http://beta.quicklisp.org/archive/quri/2024-10-12/quri-20241012-git.tgz"; + sha256 = "0vismgg72xrflzdsrv8ybq3cxf717k5296g9b731974vwlf7ibh0"; system = "quri"; asd = "quri"; }); systems = [ "quri" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "cl-utilities" self) (getAttr "split-sequence" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "cl-utilities" self) (getAttr "idna" self) (getAttr "split-sequence" self) ]; meta = {}; }); quri-test = (build-asdf-system { pname = "quri-test"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "quri-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/quri/2023-06-18/quri-20230618-git.tgz"; - sha256 = "0l1jnvvkyaxbf08lnqfdbv6lrkq02iqr3y3rwvqxm4fvnzp7mnpz"; + url = "http://beta.quicklisp.org/archive/quri/2024-10-12/quri-20241012-git.tgz"; + sha256 = "0vismgg72xrflzdsrv8ybq3cxf717k5296g9b731974vwlf7ibh0"; system = "quri-test"; asd = "quri-test"; }); @@ -59538,6 +60594,102 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + qvm = (build-asdf-system { + pname = "qvm"; + version = "20241012-git"; + asds = [ "qvm" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/qvm/2024-10-12/qvm-20241012-git.tgz"; + sha256 = "0kxgy8gdqvxp3hr14cxjk3s7d1w8myisclcaxbh7r9x8rci82a4v"; + system = "qvm"; + asd = "qvm"; + }); + systems = [ "qvm" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cffi-grovel" self) (getAttr "cl-quil" self) (getAttr "clos-encounters" self) (getAttr "global-vars" self) (getAttr "ieee-floats" self) (getAttr "lparallel" self) (getAttr "magicl" self) (getAttr "mt19937" self) (getAttr "static-vectors" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + qvm-app = (build-asdf-system { + pname = "qvm-app"; + version = "20241012-git"; + asds = [ "qvm-app" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/qvm/2024-10-12/qvm-20241012-git.tgz"; + sha256 = "0kxgy8gdqvxp3hr14cxjk3s7d1w8myisclcaxbh7r9x8rci82a4v"; + system = "qvm-app"; + asd = "qvm-app"; + }); + systems = [ "qvm-app" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cl-fad" self) (getAttr "cl-ppcre" self) (getAttr "cl-quil" self) (getAttr "cl-syslog" self) (getAttr "command-line-arguments" self) (getAttr "drakma" self) (getAttr "global-vars" self) (getAttr "hunchentoot" self) (getAttr "ieee-floats" self) (getAttr "qvm" self) (getAttr "qvm-benchmarks" self) (getAttr "swank" self) (getAttr "trivial-features" self) (getAttr "trivial-garbage" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + qvm-app-tests = (build-asdf-system { + pname = "qvm-app-tests"; + version = "20241012-git"; + asds = [ "qvm-app-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/qvm/2024-10-12/qvm-20241012-git.tgz"; + sha256 = "0kxgy8gdqvxp3hr14cxjk3s7d1w8myisclcaxbh7r9x8rci82a4v"; + system = "qvm-app-tests"; + asd = "qvm-app-tests"; + }); + systems = [ "qvm-app-tests" ]; + lispLibs = [ (getAttr "fiasco" self) (getAttr "qvm-app" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + qvm-benchmarks = (build-asdf-system { + pname = "qvm-benchmarks"; + version = "20241012-git"; + asds = [ "qvm-benchmarks" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/qvm/2024-10-12/qvm-20241012-git.tgz"; + sha256 = "0kxgy8gdqvxp3hr14cxjk3s7d1w8myisclcaxbh7r9x8rci82a4v"; + system = "qvm-benchmarks"; + asd = "qvm-benchmarks"; + }); + systems = [ "qvm-benchmarks" ]; + lispLibs = [ (getAttr "cl-quil" self) (getAttr "qvm" self) (getAttr "trivial-benchmark" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + qvm-examples = (build-asdf-system { + pname = "qvm-examples"; + version = "20241012-git"; + asds = [ "qvm-examples" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/qvm/2024-10-12/qvm-20241012-git.tgz"; + sha256 = "0kxgy8gdqvxp3hr14cxjk3s7d1w8myisclcaxbh7r9x8rci82a4v"; + system = "qvm-examples"; + asd = "qvm-examples"; + }); + systems = [ "qvm-examples" ]; + lispLibs = [ (getAttr "cl-grnm" self) (getAttr "cl-quil" self) (getAttr "qvm" self) (getAttr "qvm-app" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + qvm-tests = (build-asdf-system { + pname = "qvm-tests"; + version = "20241012-git"; + asds = [ "qvm-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/qvm/2024-10-12/qvm-20241012-git.tgz"; + sha256 = "0kxgy8gdqvxp3hr14cxjk3s7d1w8myisclcaxbh7r9x8rci82a4v"; + system = "qvm-tests"; + asd = "qvm-tests"; + }); + systems = [ "qvm-tests" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cl-quil" self) (getAttr "fiasco" self) (getAttr "qvm" self) (getAttr "qvm-examples" self) (getAttr "trivial-garbage" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); qwt = (build-asdf-system { pname = "qwt"; version = "20210531-git"; @@ -59554,22 +60706,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - racer = (build-asdf-system { - pname = "racer"; - version = "20190710-git"; - asds = [ "racer" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/racer/2019-07-10/racer-20190710-git.tgz"; - sha256 = "120x046c6vcrj70vb6ryf04mwbr8c6a15llb68x7h1siij8vwgvk"; - system = "racer"; - asd = "racer"; - }); - systems = [ "racer" ]; - lispLibs = [ (getAttr "aserve" self) (getAttr "deflate" self) (getAttr "flexi-streams" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); rail = (build-asdf-system { pname = "rail"; version = "20171227-git"; @@ -59650,13 +60786,29 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + random-sampling = (build-asdf-system { + pname = "random-sampling"; + version = "20241012-git"; + asds = [ "random-sampling" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/random-sampling/2024-10-12/random-sampling-20241012-git.tgz"; + sha256 = "0c5cf7k37fh8h9dhcj9bfk9zx245i806wh7qkvh1g659kvl2gamj"; + system = "random-sampling"; + asd = "random-sampling"; + }); + systems = [ "random-sampling" ]; + lispLibs = [ (getAttr "_3d-math" self) (getAttr "documentation-utils" self) (getAttr "random-state" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); random-state = (build-asdf-system { pname = "random-state"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "random-state" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/random-state/2023-10-21/random-state-20231021-git.tgz"; - sha256 = "1hr5a0xhqhajg2qgy65aiy2iwgj77fcijs4jnd7b9zj9004hj0hw"; + url = "http://beta.quicklisp.org/archive/random-state/2024-10-12/random-state-20241012-git.tgz"; + sha256 = "1iwcrn2fqvsw651wk60nm6x5hlmlvj04v8xxfxmzhqmx5f081f1g"; system = "random-state"; asd = "random-state"; }); @@ -59668,11 +60820,11 @@ in lib.makeScope pkgs.newScope (self: { }); random-state-test = (build-asdf-system { pname = "random-state-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "random-state-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/random-state/2023-10-21/random-state-20231021-git.tgz"; - sha256 = "1hr5a0xhqhajg2qgy65aiy2iwgj77fcijs4jnd7b9zj9004hj0hw"; + url = "http://beta.quicklisp.org/archive/random-state/2024-10-12/random-state-20241012-git.tgz"; + sha256 = "1iwcrn2fqvsw651wk60nm6x5hlmlvj04v8xxfxmzhqmx5f081f1g"; system = "random-state-test"; asd = "random-state-test"; }); @@ -59684,16 +60836,16 @@ in lib.makeScope pkgs.newScope (self: { }); random-state-viewer = (build-asdf-system { pname = "random-state-viewer"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "random-state-viewer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/random-state/2023-10-21/random-state-20231021-git.tgz"; - sha256 = "1hr5a0xhqhajg2qgy65aiy2iwgj77fcijs4jnd7b9zj9004hj0hw"; + url = "http://beta.quicklisp.org/archive/random-state/2024-10-12/random-state-20241012-git.tgz"; + sha256 = "1iwcrn2fqvsw651wk60nm6x5hlmlvj04v8xxfxmzhqmx5f081f1g"; system = "random-state-viewer"; asd = "random-state-viewer"; }); systems = [ "random-state-viewer" ]; - lispLibs = [ (getAttr "qtcore" self) (getAttr "qtgui" self) (getAttr "qtools" self) (getAttr "random-state" self) ]; + lispLibs = [ (getAttr "random-state" self) (getAttr "trivial-features" self) (getAttr "zpng" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -59972,11 +61124,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks = (build-asdf-system { pname = "reblocks"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks/2023-10-21/reblocks-20231021-git.tgz"; - sha256 = "1p2lr89f6b7w49210lvxgqa3kgias6r2wrd2w1g77h18rcl2pmlz"; + url = "http://beta.quicklisp.org/archive/reblocks/2024-10-12/reblocks-20241012-git.tgz"; + sha256 = "0s8npy7bh013qhm6ngvi7ar117ja2m098nr4krnzlcg2ivxdff3i"; system = "reblocks"; asd = "reblocks"; }); @@ -59988,27 +61140,27 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-auth = (build-asdf-system { pname = "reblocks-auth"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-auth" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-auth/2023-10-21/reblocks-auth-20231021-git.tgz"; - sha256 = "0ha1dsnr55m7sp2h59z3a7vi8l2qsx9km6kry24k9za0cjdpgjvi"; + url = "http://beta.quicklisp.org/archive/reblocks-auth/2024-10-12/reblocks-auth-20241012-git.tgz"; + sha256 = "1qydbk61a5xb2a61gj8mal0bmanhzynky1rh6lzwa10r5ybls4dq"; system = "reblocks-auth"; asd = "reblocks-auth"; }); systems = [ "reblocks-auth" ]; - lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "cl-strings" self) (getAttr "dexador" self) (getAttr "jonathan" self) (getAttr "local-time" self) (getAttr "log4cl" self) (getAttr "mailgun" self) (getAttr "mito" self) (getAttr "quri" self) (getAttr "reblocks" self) (getAttr "reblocks-lass" self) (getAttr "reblocks-ui" self) (getAttr "secret-values" self) (getAttr "uuid" self) ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "alexandria" self) (getAttr "cl-strings" self) (getAttr "dexador" self) (getAttr "jonathan" self) (getAttr "local-time" self) (getAttr "log4cl" self) (getAttr "mailgun" self) (getAttr "mito" self) (getAttr "quri" self) (getAttr "reblocks" self) (getAttr "reblocks-lass" self) (getAttr "reblocks-ui" self) (getAttr "secret-values" self) (getAttr "serapeum" self) (getAttr "uuid" self) (getAttr "yason" self) ]; meta = { hydraPlatforms = [ ]; }; }); reblocks-auth-ci = (build-asdf-system { pname = "reblocks-auth-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-auth-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-auth/2023-10-21/reblocks-auth-20231021-git.tgz"; - sha256 = "0ha1dsnr55m7sp2h59z3a7vi8l2qsx9km6kry24k9za0cjdpgjvi"; + url = "http://beta.quicklisp.org/archive/reblocks-auth/2024-10-12/reblocks-auth-20241012-git.tgz"; + sha256 = "1qydbk61a5xb2a61gj8mal0bmanhzynky1rh6lzwa10r5ybls4dq"; system = "reblocks-auth-ci"; asd = "reblocks-auth-ci"; }); @@ -60018,29 +61170,13 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - reblocks-auth-docs = (build-asdf-system { - pname = "reblocks-auth-docs"; - version = "20231021-git"; - asds = [ "reblocks-auth-docs" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-auth/2023-10-21/reblocks-auth-20231021-git.tgz"; - sha256 = "0ha1dsnr55m7sp2h59z3a7vi8l2qsx9km6kry24k9za0cjdpgjvi"; - system = "reblocks-auth-docs"; - asd = "reblocks-auth-docs"; - }); - systems = [ "reblocks-auth-docs" ]; - lispLibs = [ (getAttr "_40ants-doc" self) (getAttr "docs-config" self) (getAttr "named-readtables" self) (getAttr "pythonic-string-reader" self) (getAttr "reblocks-auth" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); reblocks-auth-example = (build-asdf-system { pname = "reblocks-auth-example"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-auth-example" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-auth/2023-10-21/reblocks-auth-20231021-git.tgz"; - sha256 = "0ha1dsnr55m7sp2h59z3a7vi8l2qsx9km6kry24k9za0cjdpgjvi"; + url = "http://beta.quicklisp.org/archive/reblocks-auth/2024-10-12/reblocks-auth-20241012-git.tgz"; + sha256 = "1qydbk61a5xb2a61gj8mal0bmanhzynky1rh6lzwa10r5ybls4dq"; system = "reblocks-auth-example"; asd = "reblocks-auth-example"; }); @@ -60052,11 +61188,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-auth-tests = (build-asdf-system { pname = "reblocks-auth-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-auth-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-auth/2023-10-21/reblocks-auth-20231021-git.tgz"; - sha256 = "0ha1dsnr55m7sp2h59z3a7vi8l2qsx9km6kry24k9za0cjdpgjvi"; + url = "http://beta.quicklisp.org/archive/reblocks-auth/2024-10-12/reblocks-auth-20241012-git.tgz"; + sha256 = "1qydbk61a5xb2a61gj8mal0bmanhzynky1rh6lzwa10r5ybls4dq"; system = "reblocks-auth-tests"; asd = "reblocks-auth-tests"; }); @@ -60068,11 +61204,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-docs = (build-asdf-system { pname = "reblocks-docs"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks/2023-10-21/reblocks-20231021-git.tgz"; - sha256 = "1p2lr89f6b7w49210lvxgqa3kgias6r2wrd2w1g77h18rcl2pmlz"; + url = "http://beta.quicklisp.org/archive/reblocks/2024-10-12/reblocks-20241012-git.tgz"; + sha256 = "0s8npy7bh013qhm6ngvi7ar117ja2m098nr4krnzlcg2ivxdff3i"; system = "reblocks-docs"; asd = "reblocks-docs"; }); @@ -60084,27 +61220,27 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-file-server = (build-asdf-system { pname = "reblocks-file-server"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-file-server" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-file-server/2023-06-18/reblocks-file-server-20230618-git.tgz"; - sha256 = "0qwfqas3ip8c9jc2hf6rywfl8j3zz6k0k4f6jcf6jv9i5bdzqdvm"; + url = "http://beta.quicklisp.org/archive/reblocks-file-server/2024-10-12/reblocks-file-server-20241012-git.tgz"; + sha256 = "1v17v0474k845l0s0bgly3zbgq2rjn5fyh8zmjnisszgkdd3bh13"; system = "reblocks-file-server"; asd = "reblocks-file-server"; }); systems = [ "reblocks-file-server" ]; - lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "cl-fad" self) (getAttr "cl-ppcre" self) (getAttr "reblocks" self) (getAttr "routes" self) (getAttr "trivial-mimes" self) ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "cl-fad" self) (getAttr "cl-ppcre" self) (getAttr "log4cl" self) (getAttr "reblocks" self) (getAttr "routes" self) (getAttr "trivial-mimes" self) ]; meta = { hydraPlatforms = [ ]; }; }); reblocks-file-server-ci = (build-asdf-system { pname = "reblocks-file-server-ci"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-file-server-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-file-server/2023-06-18/reblocks-file-server-20230618-git.tgz"; - sha256 = "0qwfqas3ip8c9jc2hf6rywfl8j3zz6k0k4f6jcf6jv9i5bdzqdvm"; + url = "http://beta.quicklisp.org/archive/reblocks-file-server/2024-10-12/reblocks-file-server-20241012-git.tgz"; + sha256 = "1v17v0474k845l0s0bgly3zbgq2rjn5fyh8zmjnisszgkdd3bh13"; system = "reblocks-file-server-ci"; asd = "reblocks-file-server-ci"; }); @@ -60116,11 +61252,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-file-server-docs = (build-asdf-system { pname = "reblocks-file-server-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-file-server-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-file-server/2023-06-18/reblocks-file-server-20230618-git.tgz"; - sha256 = "0qwfqas3ip8c9jc2hf6rywfl8j3zz6k0k4f6jcf6jv9i5bdzqdvm"; + url = "http://beta.quicklisp.org/archive/reblocks-file-server/2024-10-12/reblocks-file-server-20241012-git.tgz"; + sha256 = "1v17v0474k845l0s0bgly3zbgq2rjn5fyh8zmjnisszgkdd3bh13"; system = "reblocks-file-server-docs"; asd = "reblocks-file-server-docs"; }); @@ -60132,11 +61268,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-file-server-tests = (build-asdf-system { pname = "reblocks-file-server-tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-file-server-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-file-server/2023-06-18/reblocks-file-server-20230618-git.tgz"; - sha256 = "0qwfqas3ip8c9jc2hf6rywfl8j3zz6k0k4f6jcf6jv9i5bdzqdvm"; + url = "http://beta.quicklisp.org/archive/reblocks-file-server/2024-10-12/reblocks-file-server-20241012-git.tgz"; + sha256 = "1v17v0474k845l0s0bgly3zbgq2rjn5fyh8zmjnisszgkdd3bh13"; system = "reblocks-file-server-tests"; asd = "reblocks-file-server-tests"; }); @@ -60148,11 +61284,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-lass = (build-asdf-system { pname = "reblocks-lass"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-lass" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-lass/2023-06-18/reblocks-lass-20230618-git.tgz"; - sha256 = "0dc7m6r1dbwrslb18d6gdscfz04s38rs62bcb4w0h9vv71x75s2m"; + url = "http://beta.quicklisp.org/archive/reblocks-lass/2024-10-12/reblocks-lass-20241012-git.tgz"; + sha256 = "0aic2dnsp4hkc26fpnn0p493psz1fip9rfhbacfwaaqyxdgrh9cl"; system = "reblocks-lass"; asd = "reblocks-lass"; }); @@ -60164,11 +61300,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-lass-ci = (build-asdf-system { pname = "reblocks-lass-ci"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-lass-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-lass/2023-06-18/reblocks-lass-20230618-git.tgz"; - sha256 = "0dc7m6r1dbwrslb18d6gdscfz04s38rs62bcb4w0h9vv71x75s2m"; + url = "http://beta.quicklisp.org/archive/reblocks-lass/2024-10-12/reblocks-lass-20241012-git.tgz"; + sha256 = "0aic2dnsp4hkc26fpnn0p493psz1fip9rfhbacfwaaqyxdgrh9cl"; system = "reblocks-lass-ci"; asd = "reblocks-lass-ci"; }); @@ -60180,11 +61316,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-lass-docs = (build-asdf-system { pname = "reblocks-lass-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-lass-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-lass/2023-06-18/reblocks-lass-20230618-git.tgz"; - sha256 = "0dc7m6r1dbwrslb18d6gdscfz04s38rs62bcb4w0h9vv71x75s2m"; + url = "http://beta.quicklisp.org/archive/reblocks-lass/2024-10-12/reblocks-lass-20241012-git.tgz"; + sha256 = "0aic2dnsp4hkc26fpnn0p493psz1fip9rfhbacfwaaqyxdgrh9cl"; system = "reblocks-lass-docs"; asd = "reblocks-lass-docs"; }); @@ -60196,11 +61332,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-lass-tests = (build-asdf-system { pname = "reblocks-lass-tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-lass-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-lass/2023-06-18/reblocks-lass-20230618-git.tgz"; - sha256 = "0dc7m6r1dbwrslb18d6gdscfz04s38rs62bcb4w0h9vv71x75s2m"; + url = "http://beta.quicklisp.org/archive/reblocks-lass/2024-10-12/reblocks-lass-20241012-git.tgz"; + sha256 = "0aic2dnsp4hkc26fpnn0p493psz1fip9rfhbacfwaaqyxdgrh9cl"; system = "reblocks-lass-tests"; asd = "reblocks-lass-tests"; }); @@ -60212,27 +61348,27 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-navigation-widget = (build-asdf-system { pname = "reblocks-navigation-widget"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-navigation-widget" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2023-06-18/reblocks-navigation-widget-20230618-git.tgz"; - sha256 = "0hcfw0855rmlhjdawm8zqn24w5hkbs8xndlwvg5xd8nz6b0z40z6"; + url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2024-10-12/reblocks-navigation-widget-20241012-git.tgz"; + sha256 = "0gwfzlf8054g3iizbkbbzkxfmr8xlcvgcqycx7crlgzc8qksrqhm"; system = "reblocks-navigation-widget"; asd = "reblocks-navigation-widget"; }); systems = [ "reblocks-navigation-widget" ]; - lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "log4cl" self) (getAttr "reblocks" self) (getAttr "reblocks-ui" self) ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "log4cl" self) (getAttr "reblocks" self) (getAttr "str" self) ]; meta = { hydraPlatforms = [ ]; }; }); reblocks-navigation-widget-ci = (build-asdf-system { pname = "reblocks-navigation-widget-ci"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-navigation-widget-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2023-06-18/reblocks-navigation-widget-20230618-git.tgz"; - sha256 = "0hcfw0855rmlhjdawm8zqn24w5hkbs8xndlwvg5xd8nz6b0z40z6"; + url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2024-10-12/reblocks-navigation-widget-20241012-git.tgz"; + sha256 = "0gwfzlf8054g3iizbkbbzkxfmr8xlcvgcqycx7crlgzc8qksrqhm"; system = "reblocks-navigation-widget-ci"; asd = "reblocks-navigation-widget-ci"; }); @@ -60244,11 +61380,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-navigation-widget-docs = (build-asdf-system { pname = "reblocks-navigation-widget-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-navigation-widget-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2023-06-18/reblocks-navigation-widget-20230618-git.tgz"; - sha256 = "0hcfw0855rmlhjdawm8zqn24w5hkbs8xndlwvg5xd8nz6b0z40z6"; + url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2024-10-12/reblocks-navigation-widget-20241012-git.tgz"; + sha256 = "0gwfzlf8054g3iizbkbbzkxfmr8xlcvgcqycx7crlgzc8qksrqhm"; system = "reblocks-navigation-widget-docs"; asd = "reblocks-navigation-widget-docs"; }); @@ -60260,11 +61396,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-navigation-widget-tests = (build-asdf-system { pname = "reblocks-navigation-widget-tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-navigation-widget-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2023-06-18/reblocks-navigation-widget-20230618-git.tgz"; - sha256 = "0hcfw0855rmlhjdawm8zqn24w5hkbs8xndlwvg5xd8nz6b0z40z6"; + url = "http://beta.quicklisp.org/archive/reblocks-navigation-widget/2024-10-12/reblocks-navigation-widget-20241012-git.tgz"; + sha256 = "0gwfzlf8054g3iizbkbbzkxfmr8xlcvgcqycx7crlgzc8qksrqhm"; system = "reblocks-navigation-widget-tests"; asd = "reblocks-navigation-widget-tests"; }); @@ -60276,11 +61412,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-parenscript = (build-asdf-system { pname = "reblocks-parenscript"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-parenscript" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2023-06-18/reblocks-parenscript-20230618-git.tgz"; - sha256 = "1rivsj5qq9bnhwb897r9cdg9ajlqsplvq4ipcprx6gnkqb7wydkp"; + url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2024-10-12/reblocks-parenscript-20241012-git.tgz"; + sha256 = "0c29y7k6kczzcz1fgsk0iyf93qsx4nmw3iir807zicya8dkvvpk6"; system = "reblocks-parenscript"; asd = "reblocks-parenscript"; }); @@ -60292,11 +61428,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-parenscript-ci = (build-asdf-system { pname = "reblocks-parenscript-ci"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-parenscript-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2023-06-18/reblocks-parenscript-20230618-git.tgz"; - sha256 = "1rivsj5qq9bnhwb897r9cdg9ajlqsplvq4ipcprx6gnkqb7wydkp"; + url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2024-10-12/reblocks-parenscript-20241012-git.tgz"; + sha256 = "0c29y7k6kczzcz1fgsk0iyf93qsx4nmw3iir807zicya8dkvvpk6"; system = "reblocks-parenscript-ci"; asd = "reblocks-parenscript-ci"; }); @@ -60308,11 +61444,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-parenscript-docs = (build-asdf-system { pname = "reblocks-parenscript-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-parenscript-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2023-06-18/reblocks-parenscript-20230618-git.tgz"; - sha256 = "1rivsj5qq9bnhwb897r9cdg9ajlqsplvq4ipcprx6gnkqb7wydkp"; + url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2024-10-12/reblocks-parenscript-20241012-git.tgz"; + sha256 = "0c29y7k6kczzcz1fgsk0iyf93qsx4nmw3iir807zicya8dkvvpk6"; system = "reblocks-parenscript-docs"; asd = "reblocks-parenscript-docs"; }); @@ -60324,11 +61460,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-parenscript-tests = (build-asdf-system { pname = "reblocks-parenscript-tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-parenscript-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2023-06-18/reblocks-parenscript-20230618-git.tgz"; - sha256 = "1rivsj5qq9bnhwb897r9cdg9ajlqsplvq4ipcprx6gnkqb7wydkp"; + url = "http://beta.quicklisp.org/archive/reblocks-parenscript/2024-10-12/reblocks-parenscript-20241012-git.tgz"; + sha256 = "0c29y7k6kczzcz1fgsk0iyf93qsx4nmw3iir807zicya8dkvvpk6"; system = "reblocks-parenscript-tests"; asd = "reblocks-parenscript-tests"; }); @@ -60340,11 +61476,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-prometheus = (build-asdf-system { pname = "reblocks-prometheus"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-prometheus" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2023-10-21/reblocks-prometheus-20231021-git.tgz"; - sha256 = "11gd6lsdxzz34l41v3n7dz9hzj1x3pn15bpd3hr1sr40a4f32qzm"; + url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2024-10-12/reblocks-prometheus-20241012-git.tgz"; + sha256 = "0bjzwk28csfdvnic2znil6cxk8fmh5p49n971q5pjs0dmwdzmwra"; system = "reblocks-prometheus"; asd = "reblocks-prometheus"; }); @@ -60356,11 +61492,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-prometheus-ci = (build-asdf-system { pname = "reblocks-prometheus-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-prometheus-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2023-10-21/reblocks-prometheus-20231021-git.tgz"; - sha256 = "11gd6lsdxzz34l41v3n7dz9hzj1x3pn15bpd3hr1sr40a4f32qzm"; + url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2024-10-12/reblocks-prometheus-20241012-git.tgz"; + sha256 = "0bjzwk28csfdvnic2znil6cxk8fmh5p49n971q5pjs0dmwdzmwra"; system = "reblocks-prometheus-ci"; asd = "reblocks-prometheus-ci"; }); @@ -60372,11 +61508,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-prometheus-docs = (build-asdf-system { pname = "reblocks-prometheus-docs"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-prometheus-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2023-10-21/reblocks-prometheus-20231021-git.tgz"; - sha256 = "11gd6lsdxzz34l41v3n7dz9hzj1x3pn15bpd3hr1sr40a4f32qzm"; + url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2024-10-12/reblocks-prometheus-20241012-git.tgz"; + sha256 = "0bjzwk28csfdvnic2znil6cxk8fmh5p49n971q5pjs0dmwdzmwra"; system = "reblocks-prometheus-docs"; asd = "reblocks-prometheus-docs"; }); @@ -60388,11 +61524,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-prometheus-tests = (build-asdf-system { pname = "reblocks-prometheus-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-prometheus-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2023-10-21/reblocks-prometheus-20231021-git.tgz"; - sha256 = "11gd6lsdxzz34l41v3n7dz9hzj1x3pn15bpd3hr1sr40a4f32qzm"; + url = "http://beta.quicklisp.org/archive/reblocks-prometheus/2024-10-12/reblocks-prometheus-20241012-git.tgz"; + sha256 = "0bjzwk28csfdvnic2znil6cxk8fmh5p49n971q5pjs0dmwdzmwra"; system = "reblocks-prometheus-tests"; asd = "reblocks-prometheus-tests"; }); @@ -60404,11 +61540,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-tests = (build-asdf-system { pname = "reblocks-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks/2023-10-21/reblocks-20231021-git.tgz"; - sha256 = "1p2lr89f6b7w49210lvxgqa3kgias6r2wrd2w1g77h18rcl2pmlz"; + url = "http://beta.quicklisp.org/archive/reblocks/2024-10-12/reblocks-20241012-git.tgz"; + sha256 = "0s8npy7bh013qhm6ngvi7ar117ja2m098nr4krnzlcg2ivxdff3i"; system = "reblocks-tests"; asd = "reblocks-tests"; }); @@ -60420,11 +61556,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-typeahead = (build-asdf-system { pname = "reblocks-typeahead"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-typeahead" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2023-10-21/reblocks-typeahead-20231021-git.tgz"; - sha256 = "1j8ng31gaznhhmd536ch9r1zlmlhyarzpgsvpy1nnjizkagp06ky"; + url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2024-10-12/reblocks-typeahead-20241012-git.tgz"; + sha256 = "150msgfsagpcpbgfva3hgnw3jhd3rg13g0ham9ns0lhf1lb3777m"; system = "reblocks-typeahead"; asd = "reblocks-typeahead"; }); @@ -60436,11 +61572,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-typeahead-ci = (build-asdf-system { pname = "reblocks-typeahead-ci"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-typeahead-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2023-10-21/reblocks-typeahead-20231021-git.tgz"; - sha256 = "1j8ng31gaznhhmd536ch9r1zlmlhyarzpgsvpy1nnjizkagp06ky"; + url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2024-10-12/reblocks-typeahead-20241012-git.tgz"; + sha256 = "150msgfsagpcpbgfva3hgnw3jhd3rg13g0ham9ns0lhf1lb3777m"; system = "reblocks-typeahead-ci"; asd = "reblocks-typeahead-ci"; }); @@ -60452,11 +61588,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-typeahead-docs = (build-asdf-system { pname = "reblocks-typeahead-docs"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-typeahead-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2023-10-21/reblocks-typeahead-20231021-git.tgz"; - sha256 = "1j8ng31gaznhhmd536ch9r1zlmlhyarzpgsvpy1nnjizkagp06ky"; + url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2024-10-12/reblocks-typeahead-20241012-git.tgz"; + sha256 = "150msgfsagpcpbgfva3hgnw3jhd3rg13g0ham9ns0lhf1lb3777m"; system = "reblocks-typeahead-docs"; asd = "reblocks-typeahead-docs"; }); @@ -60468,11 +61604,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-typeahead-example = (build-asdf-system { pname = "reblocks-typeahead-example"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-typeahead-example" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2023-10-21/reblocks-typeahead-20231021-git.tgz"; - sha256 = "1j8ng31gaznhhmd536ch9r1zlmlhyarzpgsvpy1nnjizkagp06ky"; + url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2024-10-12/reblocks-typeahead-20241012-git.tgz"; + sha256 = "150msgfsagpcpbgfva3hgnw3jhd3rg13g0ham9ns0lhf1lb3777m"; system = "reblocks-typeahead-example"; asd = "reblocks-typeahead-example"; }); @@ -60484,11 +61620,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-typeahead-tests = (build-asdf-system { pname = "reblocks-typeahead-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "reblocks-typeahead-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2023-10-21/reblocks-typeahead-20231021-git.tgz"; - sha256 = "1j8ng31gaznhhmd536ch9r1zlmlhyarzpgsvpy1nnjizkagp06ky"; + url = "http://beta.quicklisp.org/archive/reblocks-typeahead/2024-10-12/reblocks-typeahead-20241012-git.tgz"; + sha256 = "150msgfsagpcpbgfva3hgnw3jhd3rg13g0ham9ns0lhf1lb3777m"; system = "reblocks-typeahead-tests"; asd = "reblocks-typeahead-tests"; }); @@ -60500,27 +61636,27 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-ui = (build-asdf-system { pname = "reblocks-ui"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-ui" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-ui/2023-06-18/reblocks-ui-20230618-git.tgz"; - sha256 = "0c67xjnq0lccc4y1pkpf0ndhlqcrvm1g637p4z3d1r79la36wq4y"; + url = "http://beta.quicklisp.org/archive/reblocks-ui/2024-10-12/reblocks-ui-20241012-git.tgz"; + sha256 = "1iwq62ba0rsiqw34d681nzg88wzps1f3d1ahl99crrk9xpy1c3y5"; system = "reblocks-ui"; asd = "reblocks-ui"; }); systems = [ "reblocks-ui" ]; - lispLibs = [ (getAttr "_40ants-doc" self) (getAttr "log4cl" self) (getAttr "log4cl-extras" self) (getAttr "parenscript" self) (getAttr "quri" self) (getAttr "reblocks" self) (getAttr "reblocks-parenscript" self) ]; + lispLibs = [ (getAttr "_40ants-doc" self) (getAttr "log4cl" self) (getAttr "log4cl-extras" self) (getAttr "parenscript" self) (getAttr "quri" self) (getAttr "reblocks" self) (getAttr "reblocks-parenscript" self) (getAttr "serapeum" self) (getAttr "spinneret" self) ]; meta = { hydraPlatforms = [ ]; }; }); reblocks-ui-docs = (build-asdf-system { pname = "reblocks-ui-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-ui-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-ui/2023-06-18/reblocks-ui-20230618-git.tgz"; - sha256 = "0c67xjnq0lccc4y1pkpf0ndhlqcrvm1g637p4z3d1r79la36wq4y"; + url = "http://beta.quicklisp.org/archive/reblocks-ui/2024-10-12/reblocks-ui-20241012-git.tgz"; + sha256 = "1iwq62ba0rsiqw34d681nzg88wzps1f3d1ahl99crrk9xpy1c3y5"; system = "reblocks-ui-docs"; asd = "reblocks-ui-docs"; }); @@ -60532,11 +61668,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-ui-examples = (build-asdf-system { pname = "reblocks-ui-examples"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-ui-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-ui/2023-06-18/reblocks-ui-20230618-git.tgz"; - sha256 = "0c67xjnq0lccc4y1pkpf0ndhlqcrvm1g637p4z3d1r79la36wq4y"; + url = "http://beta.quicklisp.org/archive/reblocks-ui/2024-10-12/reblocks-ui-20241012-git.tgz"; + sha256 = "1iwq62ba0rsiqw34d681nzg88wzps1f3d1ahl99crrk9xpy1c3y5"; system = "reblocks-ui-examples"; asd = "reblocks-ui-examples"; }); @@ -60548,11 +61684,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-websocket = (build-asdf-system { pname = "reblocks-websocket"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-websocket" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-websocket/2023-06-18/reblocks-websocket-20230618-git.tgz"; - sha256 = "1nh1mskyqy5y1ar84vy7qwjqgxv8ykxg1jdlrhh0r2khal2az4cj"; + url = "http://beta.quicklisp.org/archive/reblocks-websocket/2024-10-12/reblocks-websocket-20241012-git.tgz"; + sha256 = "0zn14if637cfadz93cgyk79hqrjyzddwc483gl10386rj9nvcf6b"; system = "reblocks-websocket"; asd = "reblocks-websocket"; }); @@ -60564,11 +61700,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-websocket-ci = (build-asdf-system { pname = "reblocks-websocket-ci"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-websocket-ci" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-websocket/2023-06-18/reblocks-websocket-20230618-git.tgz"; - sha256 = "1nh1mskyqy5y1ar84vy7qwjqgxv8ykxg1jdlrhh0r2khal2az4cj"; + url = "http://beta.quicklisp.org/archive/reblocks-websocket/2024-10-12/reblocks-websocket-20241012-git.tgz"; + sha256 = "0zn14if637cfadz93cgyk79hqrjyzddwc483gl10386rj9nvcf6b"; system = "reblocks-websocket-ci"; asd = "reblocks-websocket-ci"; }); @@ -60580,11 +61716,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-websocket-docs = (build-asdf-system { pname = "reblocks-websocket-docs"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-websocket-docs" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-websocket/2023-06-18/reblocks-websocket-20230618-git.tgz"; - sha256 = "1nh1mskyqy5y1ar84vy7qwjqgxv8ykxg1jdlrhh0r2khal2az4cj"; + url = "http://beta.quicklisp.org/archive/reblocks-websocket/2024-10-12/reblocks-websocket-20241012-git.tgz"; + sha256 = "0zn14if637cfadz93cgyk79hqrjyzddwc483gl10386rj9nvcf6b"; system = "reblocks-websocket-docs"; asd = "reblocks-websocket-docs"; }); @@ -60596,11 +61732,11 @@ in lib.makeScope pkgs.newScope (self: { }); reblocks-websocket-tests = (build-asdf-system { pname = "reblocks-websocket-tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "reblocks-websocket-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/reblocks-websocket/2023-06-18/reblocks-websocket-20230618-git.tgz"; - sha256 = "1nh1mskyqy5y1ar84vy7qwjqgxv8ykxg1jdlrhh0r2khal2az4cj"; + url = "http://beta.quicklisp.org/archive/reblocks-websocket/2024-10-12/reblocks-websocket-20241012-git.tgz"; + sha256 = "0zn14if637cfadz93cgyk79hqrjyzddwc483gl10386rj9nvcf6b"; system = "reblocks-websocket-tests"; asd = "reblocks-websocket-tests"; }); @@ -61202,11 +62338,11 @@ in lib.makeScope pkgs.newScope (self: { }); rove = (build-asdf-system { pname = "rove"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "rove" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/rove/2023-10-21/rove-20231021-git.tgz"; - sha256 = "04wc8f8y6pb99n1gpdgmrz61wnl18yidiwdbaaws2087lbm67skj"; + url = "http://beta.quicklisp.org/archive/rove/2024-10-12/rove-20241012-git.tgz"; + sha256 = "1cx55d8frlk8rzdwbf1698rsvy34gx0ws2ix257qsh7gxy2mld05"; system = "rove"; asd = "rove"; }); @@ -61216,11 +62352,11 @@ in lib.makeScope pkgs.newScope (self: { }); rovers-problem-translator = (build-asdf-system { pname = "rovers-problem-translator"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "rovers-problem-translator" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/shop3/2023-10-21/shop3-20231021-git.tgz"; - sha256 = "13d3735pw6qpsz66g9p8b8fhhd1givc72jypdglbm99bs0sjcdas"; + url = "http://beta.quicklisp.org/archive/shop3/2024-10-12/shop3-20241012-git.tgz"; + sha256 = "1sdyyyd82fqmm9lcqmg7k8yy3l3891m2gjwidibzvk95bp4xf9sd"; system = "rovers-problem-translator"; asd = "rovers-problem-translator"; }); @@ -61422,6 +62558,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + rs-dlx = (build-asdf-system { + pname = "rs-dlx"; + version = "20241012-git"; + asds = [ "rs-dlx" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/rs-dlx/2024-10-12/rs-dlx-20241012-git.tgz"; + sha256 = "003ykkh61hg5q9lxjckqp8njhpgg21j9008gcsw60hnxdipmanaf"; + system = "rs-dlx"; + asd = "rs-dlx"; + }); + systems = [ "rs-dlx" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "iterate" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); rs-json = (build-asdf-system { pname = "rs-json"; version = "20230618-git"; @@ -61710,11 +62862,11 @@ in lib.makeScope pkgs.newScope (self: { }); s-dot2 = (build-asdf-system { pname = "s-dot2"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "s-dot2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/s-dot2/2023-10-21/s-dot2-20231021-git.tgz"; - sha256 = "0948fi6kwr9d1bnpmxz76ic929plpm56c2qx6r504jxk62gnfwa9"; + url = "http://beta.quicklisp.org/archive/s-dot2/2024-10-12/s-dot2-20241012-git.tgz"; + sha256 = "0zc833sc7szwyrrcinl84q3b0y9akh7hd5lhq3vxclk4zgb9n4nf"; system = "s-dot2"; asd = "s-dot2"; }); @@ -61774,11 +62926,11 @@ in lib.makeScope pkgs.newScope (self: { }); s-sql = (build-asdf-system { pname = "s-sql"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "s-sql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/postmodern/2023-10-21/postmodern-20231021-git.tgz"; - sha256 = "1abb80zmnawzl9g09css57kviwbqw5fcxhp3fjrzw7zc3n1wfr8y"; + url = "http://beta.quicklisp.org/archive/postmodern/2024-10-12/postmodern-20241012-git.tgz"; + sha256 = "1hj0dpclzihy1rcnwhiv16abmaa54wygxyib3j2h9q4qs26w7pzb"; system = "s-sql"; asd = "s-sql"; }); @@ -61942,11 +63094,11 @@ in lib.makeScope pkgs.newScope (self: { }); sandalphon_dot_lambda-list = (build-asdf-system { pname = "sandalphon.lambda-list"; - version = "20180711-git"; + version = "20241012-git"; asds = [ "sandalphon.lambda-list" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sandalphon.lambda-list/2018-07-11/sandalphon.lambda-list-20180711-git.tgz"; - sha256 = "1iihs05cwy4xyms2vl3fjc9xpivyxb2mpmb60nylxrkvlm0l7v7h"; + url = "http://beta.quicklisp.org/archive/sandalphon.lambda-list/2024-10-12/sandalphon.lambda-list-20241012-git.tgz"; + sha256 = "1j4xfcb1n71kh95v0y495snkna5avdp0inbiaia7r5fsxlcf4s45"; system = "sandalphon.lambda-list"; asd = "sandalphon.lambda-list"; }); @@ -62038,11 +63190,11 @@ in lib.makeScope pkgs.newScope (self: { }); sb-fastcgi = (build-asdf-system { pname = "sb-fastcgi"; - version = "20210124-git"; + version = "20241012-git"; asds = [ "sb-fastcgi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sb-fastcgi/2021-01-24/sb-fastcgi-20210124-git.tgz"; - sha256 = "15arl39xq0wp9marrgf36grv7z5w2z4zaigllypx96b3kbmw6qb5"; + url = "http://beta.quicklisp.org/archive/sb-fastcgi/2024-10-12/sb-fastcgi-20241012-git.tgz"; + sha256 = "1jw5bmim4ll3a1bqlw02ksgw58cv1qr5li0gbczj7g9fjfk3r64z"; system = "sb-fastcgi"; asd = "sb-fastcgi"; }); @@ -62070,11 +63222,11 @@ in lib.makeScope pkgs.newScope (self: { }); sc-extensions = (build-asdf-system { pname = "sc-extensions"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sc-extensions" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sc-extensions/2023-10-21/sc-extensions-20231021-git.tgz"; - sha256 = "1hskfsfwym4h1l398v2ia8jqs4r6qi8f4sn4aynikcw4xj75qys9"; + url = "http://beta.quicklisp.org/archive/sc-extensions/2024-10-12/sc-extensions-20241012-git.tgz"; + sha256 = "1va153gr7002j5hshalq13gk6jpij29h613nm47aimj01hjy9p0n"; system = "sc-extensions"; asd = "sc-extensions"; }); @@ -62086,11 +63238,11 @@ in lib.makeScope pkgs.newScope (self: { }); sc-osc = (build-asdf-system { pname = "sc-osc"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sc-osc" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-collider/2023-10-21/cl-collider-20231021-git.tgz"; - sha256 = "1fbqic0w27b5al8vm6zvgfhsq6yjl2zl4ppjmxvyx6pl0i0bm281"; + url = "http://beta.quicklisp.org/archive/cl-collider/2024-10-12/cl-collider-20241012-git.tgz"; + sha256 = "0h0fyx7glxnzwyam2aflma6003h8fcvcf5nj5f7svarw9brcc2xa"; system = "sc-osc"; asd = "sc-osc"; }); @@ -62137,7 +63289,7 @@ in lib.makeScope pkgs.newScope (self: { version = "master-df14cb8c-git"; asds = [ "science-data" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/antik/2019-10-08/antik-master-df14cb8c-git.tgz"; + url = "http://beta.quicklisp.org/archive/antik/2024-10-12/antik-master-df14cb8c-git.tgz"; sha256 = "1n08cx4n51z8v4bxyak166lp495xda3x7llfxcdpxndxqxcammr0"; system = "science-data"; asd = "science-data"; @@ -62150,11 +63302,11 @@ in lib.makeScope pkgs.newScope (self: { }); scigraph = (build-asdf-system { pname = "scigraph"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "scigraph" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "scigraph"; asd = "scigraph"; }); @@ -62164,6 +63316,70 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + scrapycl = (build-asdf-system { + pname = "scrapycl"; + version = "20241012-git"; + asds = [ "scrapycl" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/scrapycl/2024-10-12/scrapycl-20241012-git.tgz"; + sha256 = "0qlvsc5qr8vyyrsasp041ydlfx8vgsy191m0nhab487fzmrlbzwp"; + system = "scrapycl"; + asd = "scrapycl"; + }); + systems = [ "scrapycl" ]; + lispLibs = [ (getAttr "_40ants-asdf-system" self) (getAttr "_40ants-doc" self) (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "closer-mop" self) (getAttr "dexador" self) (getAttr "log4cl" self) (getAttr "log4cl-extras" self) (getAttr "lquery" self) (getAttr "plump" self) (getAttr "quri" self) (getAttr "serapeum" self) (getAttr "spinneret" self) (getAttr "str" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + scrapycl-ci = (build-asdf-system { + pname = "scrapycl-ci"; + version = "20241012-git"; + asds = [ "scrapycl-ci" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/scrapycl/2024-10-12/scrapycl-20241012-git.tgz"; + sha256 = "0qlvsc5qr8vyyrsasp041ydlfx8vgsy191m0nhab487fzmrlbzwp"; + system = "scrapycl-ci"; + asd = "scrapycl-ci"; + }); + systems = [ "scrapycl-ci" ]; + lispLibs = [ (getAttr "_40ants-ci" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + scrapycl-docs = (build-asdf-system { + pname = "scrapycl-docs"; + version = "20241012-git"; + asds = [ "scrapycl-docs" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/scrapycl/2024-10-12/scrapycl-20241012-git.tgz"; + sha256 = "0qlvsc5qr8vyyrsasp041ydlfx8vgsy191m0nhab487fzmrlbzwp"; + system = "scrapycl-docs"; + asd = "scrapycl-docs"; + }); + systems = [ "scrapycl-docs" ]; + lispLibs = [ (getAttr "_40ants-doc" self) (getAttr "docs-config" self) (getAttr "named-readtables" self) (getAttr "pythonic-string-reader" self) (getAttr "scrapycl" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + scrapycl-tests = (build-asdf-system { + pname = "scrapycl-tests"; + version = "20241012-git"; + asds = [ "scrapycl-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/scrapycl/2024-10-12/scrapycl-20241012-git.tgz"; + sha256 = "0qlvsc5qr8vyyrsasp041ydlfx8vgsy191m0nhab487fzmrlbzwp"; + system = "scrapycl-tests"; + asd = "scrapycl-tests"; + }); + systems = [ "scrapycl-tests" ]; + lispLibs = [ (getAttr "rove" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); scratch-buffer = (build-asdf-system { pname = "scratch-buffer"; version = "20200427-git"; @@ -62374,11 +63590,11 @@ in lib.makeScope pkgs.newScope (self: { }); sdl2-image = (build-asdf-system { pname = "sdl2-image"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sdl2-image" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sdl2-image/2023-10-21/cl-sdl2-image-20231021-git.tgz"; - sha256 = "0327l8qhgk79bg6lf4n4jp18z1q39apy8s5i10hnpb3j4yjs8i7y"; + url = "http://beta.quicklisp.org/archive/cl-sdl2-image/2024-10-12/cl-sdl2-image-20241012-git.tgz"; + sha256 = "1jzrz3ppr5nbh0w6cvbbpv5x6gdq71a6v2qanvnjvcjs0zwf97iq"; system = "sdl2-image"; asd = "sdl2-image"; }); @@ -62390,11 +63606,11 @@ in lib.makeScope pkgs.newScope (self: { }); sdl2-mixer = (build-asdf-system { pname = "sdl2-mixer"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "sdl2-mixer" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sdl2-mixer/2021-10-20/cl-sdl2-mixer-20211020-git.tgz"; - sha256 = "0g6ywb3gqr0rif4z6kkz6m8vyv8nrr5wr1w9sc6d3zypbbnqgbp6"; + url = "http://beta.quicklisp.org/archive/cl-sdl2-mixer/2024-10-12/cl-sdl2-mixer-20241012-git.tgz"; + sha256 = "0d33pmyrcni90qfj0d4hxf97may1bv7i9z4a6rj02dw254n9r9lh"; system = "sdl2-mixer"; asd = "sdl2-mixer"; }); @@ -62406,11 +63622,11 @@ in lib.makeScope pkgs.newScope (self: { }); sdl2-ttf = (build-asdf-system { pname = "sdl2-ttf"; - version = "20200925-git"; + version = "20241012-git"; asds = [ "sdl2-ttf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sdl2-ttf/2020-09-25/cl-sdl2-ttf-20200925-git.tgz"; - sha256 = "15mvb7hr5l284s56gbf1xyb9v5xv95b2043zaysswhn5x20ylcnb"; + url = "http://beta.quicklisp.org/archive/cl-sdl2-ttf/2024-10-12/cl-sdl2-ttf-20241012-git.tgz"; + sha256 = "1asdymsn65a06qr1c8fknakdvpjwxsvl69py6fsz21nirxyha5nc"; system = "sdl2-ttf"; asd = "sdl2-ttf"; }); @@ -62422,11 +63638,11 @@ in lib.makeScope pkgs.newScope (self: { }); sdl2-ttf-examples = (build-asdf-system { pname = "sdl2-ttf-examples"; - version = "20200925-git"; + version = "20241012-git"; asds = [ "sdl2-ttf-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sdl2-ttf/2020-09-25/cl-sdl2-ttf-20200925-git.tgz"; - sha256 = "15mvb7hr5l284s56gbf1xyb9v5xv95b2043zaysswhn5x20ylcnb"; + url = "http://beta.quicklisp.org/archive/cl-sdl2-ttf/2024-10-12/cl-sdl2-ttf-20241012-git.tgz"; + sha256 = "1asdymsn65a06qr1c8fknakdvpjwxsvl69py6fsz21nirxyha5nc"; system = "sdl2-ttf-examples"; asd = "sdl2-ttf-examples"; }); @@ -62550,16 +63766,16 @@ in lib.makeScope pkgs.newScope (self: { }); select = (build-asdf-system { pname = "select"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "select" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/select/2022-11-06/select-20221106-git.tgz"; - sha256 = "0bhpvfqp7n33pia4y62qi31bx86gjl2nxjy529rfawac57c9rxv3"; + url = "http://beta.quicklisp.org/archive/select/2024-10-12/select-20241012-git.tgz"; + sha256 = "1js02xgfd488lhv90rgxw0cvfbsarlpakydwrg1jr2hh5bhqyifh"; system = "select"; asd = "select"; }); systems = [ "select" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "anaphora" self) (getAttr "let-plus" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "alexandria_plus" self) (getAttr "anaphora" self) (getAttr "let-plus" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -62614,11 +63830,11 @@ in lib.makeScope pkgs.newScope (self: { }); semz_dot_decompress = (build-asdf-system { pname = "semz.decompress"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "semz.decompress" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/decompress/2023-10-21/decompress-20231021-git.tgz"; - sha256 = "1p72m70qcl245gb420a6hr37s9qc3sdj6v3aqi3sj6v4qgdw733z"; + url = "http://beta.quicklisp.org/archive/decompress/2024-10-12/decompress-20241012-git.tgz"; + sha256 = "0nzz6r57v94kyl5r77yawalnjszw93qjiqqargl3vjrmiga37gjp"; system = "semz.decompress"; asd = "semz.decompress"; }); @@ -62630,59 +63846,59 @@ in lib.makeScope pkgs.newScope (self: { }); sendgrid = (build-asdf-system { pname = "sendgrid"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sendgrid" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sendgrid/2023-10-21/cl-sendgrid-20231021-git.tgz"; - sha256 = "1i90smwdw3wmq49qmxzkxvxybi18c222r79xzbhp9qp4isg4aznm"; + url = "http://beta.quicklisp.org/archive/cl-sendgrid/2024-10-12/cl-sendgrid-20241012-git.tgz"; + sha256 = "02wwi2fwfd21aisf1y6ngypg7dmfvlf3bgxhqhrp1vpw8b34ha4w"; system = "sendgrid"; asd = "sendgrid"; }); systems = [ "sendgrid" ]; - lispLibs = [ (getAttr "dexador" self) (getAttr "jonathan" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "dexador" self) (getAttr "jonathan" self) (getAttr "qbase64" self) ]; meta = { hydraPlatforms = [ ]; }; }); sento = (build-asdf-system { pname = "sento"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sento" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-gserver/2023-10-21/cl-gserver-20231021-git.tgz"; - sha256 = "05zfa33y93qimnp1i7kamg3yj4msfp8fdhgh0waz3ll5k7v1g0fj"; + url = "http://beta.quicklisp.org/archive/cl-gserver/2024-10-12/cl-gserver-20241012-git.tgz"; + sha256 = "1281iir75ccr5ilh2jv9xh1w446492gywvady48xggqyh6idaz9k"; system = "sento"; asd = "sento"; }); systems = [ "sento" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "atomics" self) (getAttr "binding-arrows" self) (getAttr "blackbird" self) (getAttr "bordeaux-threads" self) (getAttr "jpl-queues" self) (getAttr "log4cl" self) (getAttr "str" self) (getAttr "timer-wheel" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "atomics" self) (getAttr "binding-arrows" self) (getAttr "blackbird" self) (getAttr "bordeaux-threads" self) (getAttr "cl-speedy-queue" self) (getAttr "local-time-duration" self) (getAttr "log4cl" self) (getAttr "str" self) (getAttr "timer-wheel" self) ]; meta = { hydraPlatforms = [ ]; }; }); sentry-client = (build-asdf-system { pname = "sentry-client"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "sentry-client" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sentry-client/2023-06-18/cl-sentry-client-20230618-git.tgz"; - sha256 = "1n9byyrag4f6ah1lxhv7r0v6z1p5mpiw656m5pdis9ps9nw7a6ar"; + url = "http://beta.quicklisp.org/archive/cl-sentry-client/2024-10-12/cl-sentry-client-20241012-git.tgz"; + sha256 = "0i83kgrjznffj6z5ryxnxlk995937askhilsbfa2nixakwal2c5h"; system = "sentry-client"; asd = "sentry-client"; }); systems = [ "sentry-client" ]; - lispLibs = [ (getAttr "babel" self) (getAttr "cl-json" self) (getAttr "cl-ppcre" self) (getAttr "dexador" self) (getAttr "local-time" self) (getAttr "salza2" self) (getAttr "swank" self) (getAttr "trivial-backtrace" self) (getAttr "uuid" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "babel" self) (getAttr "cl-json" self) (getAttr "cl-ppcre" self) (getAttr "dexador" self) (getAttr "local-time" self) (getAttr "salza2" self) (getAttr "swank" self) (getAttr "trivial-backtrace" self) (getAttr "uuid" self) ]; meta = { hydraPlatforms = [ ]; }; }); sentry-client_dot_async = (build-asdf-system { pname = "sentry-client.async"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "sentry-client.async" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sentry-client/2023-06-18/cl-sentry-client-20230618-git.tgz"; - sha256 = "1n9byyrag4f6ah1lxhv7r0v6z1p5mpiw656m5pdis9ps9nw7a6ar"; + url = "http://beta.quicklisp.org/archive/cl-sentry-client/2024-10-12/cl-sentry-client-20241012-git.tgz"; + sha256 = "0i83kgrjznffj6z5ryxnxlk995937askhilsbfa2nixakwal2c5h"; system = "sentry-client.async"; asd = "sentry-client.async"; }); @@ -62694,11 +63910,11 @@ in lib.makeScope pkgs.newScope (self: { }); sentry-client_dot_hunchentoot = (build-asdf-system { pname = "sentry-client.hunchentoot"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "sentry-client.hunchentoot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-sentry-client/2023-06-18/cl-sentry-client-20230618-git.tgz"; - sha256 = "1n9byyrag4f6ah1lxhv7r0v6z1p5mpiw656m5pdis9ps9nw7a6ar"; + url = "http://beta.quicklisp.org/archive/cl-sentry-client/2024-10-12/cl-sentry-client-20241012-git.tgz"; + sha256 = "0i83kgrjznffj6z5ryxnxlk995937askhilsbfa2nixakwal2c5h"; system = "sentry-client.hunchentoot"; asd = "sentry-client.hunchentoot"; }); @@ -62742,11 +63958,11 @@ in lib.makeScope pkgs.newScope (self: { }); serapeum = (build-asdf-system { pname = "serapeum"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "serapeum" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/serapeum/2023-10-21/serapeum-20231021-git.tgz"; - sha256 = "0jbvkxznx7b3nd7apw89lbhhp659a0agj7ibjcqckyqs7pn29s3r"; + url = "http://beta.quicklisp.org/archive/serapeum/2024-10-12/serapeum-20241012-git.tgz"; + sha256 = "12dc4p3i82p3jhxpp5wd6xiwy2fgdjybgfgj54nv8ya75rl9a64z"; system = "serapeum"; asd = "serapeum"; }); @@ -62980,11 +64196,11 @@ in lib.makeScope pkgs.newScope (self: { }); shasht = (build-asdf-system { pname = "shasht"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "shasht" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/shasht/2023-10-21/shasht-20231021-git.tgz"; - sha256 = "1y7qh8kdhk06243vkmxzdk0y9rax4g8pv28bd01j48ix777mpcdc"; + url = "http://beta.quicklisp.org/archive/shasht/2024-10-12/shasht-20241012-git.tgz"; + sha256 = "0i4k6w5r74f2a0i3ffian715v057w63psywk89ih0hl9xxpc4pga"; system = "shasht"; asd = "shasht"; }); @@ -63092,27 +64308,27 @@ in lib.makeScope pkgs.newScope (self: { }); shop3 = (build-asdf-system { pname = "shop3"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "shop3" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/shop3/2023-10-21/shop3-20231021-git.tgz"; - sha256 = "13d3735pw6qpsz66g9p8b8fhhd1givc72jypdglbm99bs0sjcdas"; + url = "http://beta.quicklisp.org/archive/shop3/2024-10-12/shop3-20241012-git.tgz"; + sha256 = "1sdyyyd82fqmm9lcqmg7k8yy3l3891m2gjwidibzvk95bp4xf9sd"; system = "shop3"; asd = "shop3"; }); systems = [ "shop3" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "fiveam-asdf" self) (getAttr "iterate" self) (getAttr "trivial-garbage" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "fiveam-asdf" self) (getAttr "iterate" self) (getAttr "random-state" self) (getAttr "trivial-garbage" self) ]; meta = { hydraPlatforms = [ ]; }; }); shop3-thmpr-api = (build-asdf-system { pname = "shop3-thmpr-api"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "shop3-thmpr-api" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/shop3/2023-10-21/shop3-20231021-git.tgz"; - sha256 = "13d3735pw6qpsz66g9p8b8fhhd1givc72jypdglbm99bs0sjcdas"; + url = "http://beta.quicklisp.org/archive/shop3/2024-10-12/shop3-20241012-git.tgz"; + sha256 = "1sdyyyd82fqmm9lcqmg7k8yy3l3891m2gjwidibzvk95bp4xf9sd"; system = "shop3-thmpr-api"; asd = "shop3-thmpr-api"; }); @@ -63156,11 +64372,11 @@ in lib.makeScope pkgs.newScope (self: { }); si-kanren = (build-asdf-system { pname = "si-kanren"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "si-kanren" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/si-kanren/2023-10-21/si-kanren-20231021-git.tgz"; - sha256 = "0gzi871iap5hma4c3v7lpb4vcrj72sbr5bmc1xzslhxdmb1r26pq"; + url = "http://beta.quicklisp.org/archive/si-kanren/2024-10-12/si-kanren-20241012-git.tgz"; + sha256 = "1m99ryyfjxbjbmswprz8gr9hl3srwz74fwjna35wf8d41ns5ajlj"; system = "si-kanren"; asd = "si-kanren"; }); @@ -63252,11 +64468,11 @@ in lib.makeScope pkgs.newScope (self: { }); simple-date = (build-asdf-system { pname = "simple-date"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "simple-date" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/postmodern/2023-10-21/postmodern-20231021-git.tgz"; - sha256 = "1abb80zmnawzl9g09css57kviwbqw5fcxhp3fjrzw7zc3n1wfr8y"; + url = "http://beta.quicklisp.org/archive/postmodern/2024-10-12/postmodern-20241012-git.tgz"; + sha256 = "1hj0dpclzihy1rcnwhiv16abmaa54wygxyib3j2h9q4qs26w7pzb"; system = "simple-date"; asd = "simple-date"; }); @@ -63626,22 +64842,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - skeleton = (build-asdf-system { - pname = "skeleton"; - version = "20230214-git"; - asds = [ "skeleton" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/ahungry-fleece/2023-02-14/ahungry-fleece-20230214-git.tgz"; - sha256 = "1q0bd4fhfypfdvv338gf0gbc8fh65m0p662ik7c9rraijgddi9ry"; - system = "skeleton"; - asd = "skeleton"; - }); - systems = [ "skeleton" ]; - lispLibs = [ (getAttr "ahungry-fleece" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); skeleton-creator = (build-asdf-system { pname = "skeleton-creator"; version = "20191227-git"; @@ -63660,27 +64860,27 @@ in lib.makeScope pkgs.newScope (self: { }); sketch = (build-asdf-system { pname = "sketch"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sketch" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sketch/2023-10-21/sketch-20231021-git.tgz"; - sha256 = "0qpdwpgk1x10isp125ci1pdfcnlix8wygvfjd7fxwjg41lw8wqp4"; + url = "http://beta.quicklisp.org/archive/sketch/2024-10-12/sketch-20241012-git.tgz"; + sha256 = "1bq0ljb2awzkk4shsd0w4v2hc2abmkwfv7nz8d88hglrvar8qbnl"; system = "sketch"; asd = "sketch"; }); systems = [ "sketch" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-geometry" self) (getAttr "glkit" self) (getAttr "mathkit" self) (getAttr "md5" self) (getAttr "sdl2-image" self) (getAttr "sdl2-ttf" self) (getAttr "sdl2kit" self) (getAttr "split-sequence" self) (getAttr "static-vectors" self) (getAttr "zpng" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-plus-c" self) (getAttr "closer-mop" self) (getAttr "glkit" self) (getAttr "glu-tessellate" self) (getAttr "mathkit" self) (getAttr "md5" self) (getAttr "sdl2" self) (getAttr "sdl2-image" self) (getAttr "sdl2-ttf" self) (getAttr "sdl2kit" self) (getAttr "split-sequence" self) (getAttr "static-vectors" self) (getAttr "trivial-garbage" self) (getAttr "zpng" self) ]; meta = { hydraPlatforms = [ ]; }; }); sketch-examples = (build-asdf-system { pname = "sketch-examples"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sketch-examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sketch/2023-10-21/sketch-20231021-git.tgz"; - sha256 = "0qpdwpgk1x10isp125ci1pdfcnlix8wygvfjd7fxwjg41lw8wqp4"; + url = "http://beta.quicklisp.org/archive/sketch/2024-10-12/sketch-20241012-git.tgz"; + sha256 = "1bq0ljb2awzkk4shsd0w4v2hc2abmkwfv7nz8d88hglrvar8qbnl"; system = "sketch-examples"; asd = "sketch-examples"; }); @@ -63804,11 +65004,11 @@ in lib.makeScope pkgs.newScope (self: { }); slim = (build-asdf-system { pname = "slim"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "slim" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/mcclim/2023-10-21/mcclim-20231021-git.tgz"; - sha256 = "09f1067v5bc2zmqj1khslrwi76a9xdkpzh7wx9yrvx7y126ikxlm"; + url = "http://beta.quicklisp.org/archive/mcclim/2024-10-12/mcclim-20241012-git.tgz"; + sha256 = "17chywrma5vhq254spmg1idpk1sq8isk1qj0lga9n8aiybqssxv9"; system = "slim"; asd = "slim"; }); @@ -63820,11 +65020,11 @@ in lib.makeScope pkgs.newScope (self: { }); slite = (build-asdf-system { pname = "slite"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "slite" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/slite/2023-10-21/slite-20231021-git.tgz"; - sha256 = "0b4c4vs1zlhcvr9flv8bx76v9hrwc9qmazmp60407q7cghn0k8zk"; + url = "http://beta.quicklisp.org/archive/slite/2024-10-12/slite-20241012-git.tgz"; + sha256 = "1ij1qxp20p7zfxm453v42z27ff3z6lk7hly8knk5fj3awj9nvljd"; system = "slite"; asd = "slite"; }); @@ -63884,11 +65084,11 @@ in lib.makeScope pkgs.newScope (self: { }); slynk = (build-asdf-system { pname = "slynk"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "slynk" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sly/2023-10-21/sly-20231021-git.tgz"; - sha256 = "15nyr02ykkws4q79jcmxcawddg8sgq9v5l8k7jv7gg3hnpzxjlb2"; + url = "http://beta.quicklisp.org/archive/sly/2024-10-12/sly-20241012-git.tgz"; + sha256 = "1mxkcgh7g76mqn148zm2mhsh09whwh89wldlyfhq0d9h96zch451"; system = "slynk"; asd = "slynk"; }); @@ -63960,6 +65160,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + small-coalton-programs = (build-asdf-system { + pname = "small-coalton-programs"; + version = "20241012-git"; + asds = [ "small-coalton-programs" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "small-coalton-programs"; + asd = "small-coalton-programs"; + }); + systems = [ "small-coalton-programs" ]; + lispLibs = [ (getAttr "coalton" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); smart-buffer = (build-asdf-system { pname = "smart-buffer"; version = "20211020-git"; @@ -64006,6 +65222,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + smoothers = (build-asdf-system { + pname = "smoothers"; + version = "20241012-git"; + asds = [ "smoothers" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/smoothers/2024-10-12/smoothers-20241012-git.tgz"; + sha256 = "0byqn3xni83jkbzc0jllpyfsgjaiifsjr55aaf90pbi71as39xfd"; + system = "smoothers"; + asd = "smoothers"; + }); + systems = [ "smoothers" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "alexandria_plus" self) (getAttr "array-operations" self) (getAttr "lla" self) (getAttr "num-utils" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); smug = (build-asdf-system { pname = "smug"; version = "20211230-git"; @@ -64358,11 +65590,11 @@ in lib.makeScope pkgs.newScope (self: { }); snooze = (build-asdf-system { pname = "snooze"; - version = "20210807-git"; + version = "20241012-git"; asds = [ "snooze" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/snooze/2021-08-07/snooze-20210807-git.tgz"; - sha256 = "0y6n5k6yw6183kf00m4wa9fksad9qjy4i5qr027ys48mgw8d23fj"; + url = "http://beta.quicklisp.org/archive/snooze/2024-10-12/snooze-20241012-git.tgz"; + sha256 = "0gm9vxi7lcir80snka3qkl6sw8z90jaqf31c72bgyk9j8qkf7xvc"; system = "snooze"; asd = "snooze"; }); @@ -64374,11 +65606,11 @@ in lib.makeScope pkgs.newScope (self: { }); snooze-demo = (build-asdf-system { pname = "snooze-demo"; - version = "20210807-git"; + version = "20241012-git"; asds = [ "snooze-demo" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/snooze/2021-08-07/snooze-20210807-git.tgz"; - sha256 = "0y6n5k6yw6183kf00m4wa9fksad9qjy4i5qr027ys48mgw8d23fj"; + url = "http://beta.quicklisp.org/archive/snooze/2024-10-12/snooze-20241012-git.tgz"; + sha256 = "0gm9vxi7lcir80snka3qkl6sw8z90jaqf31c72bgyk9j8qkf7xvc"; system = "snooze-demo"; asd = "snooze"; }); @@ -64390,11 +65622,11 @@ in lib.makeScope pkgs.newScope (self: { }); snooze-tests = (build-asdf-system { pname = "snooze-tests"; - version = "20210807-git"; + version = "20241012-git"; asds = [ "snooze-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/snooze/2021-08-07/snooze-20210807-git.tgz"; - sha256 = "0y6n5k6yw6183kf00m4wa9fksad9qjy4i5qr027ys48mgw8d23fj"; + url = "http://beta.quicklisp.org/archive/snooze/2024-10-12/snooze-20241012-git.tgz"; + sha256 = "0gm9vxi7lcir80snka3qkl6sw8z90jaqf31c72bgyk9j8qkf7xvc"; system = "snooze-tests"; asd = "snooze"; }); @@ -64422,11 +65654,11 @@ in lib.makeScope pkgs.newScope (self: { }); software-evolution-library = (build-asdf-system { pname = "software-evolution-library"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "software-evolution-library" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sel/2023-10-21/sel-20231021-git.tgz"; - sha256 = "09s1avxc569y0hanrgqw1dkhlv4mmfkwnl3vhb5hyxgljrw11wh0"; + url = "http://beta.quicklisp.org/archive/sel/2024-10-12/sel-20241012-git.tgz"; + sha256 = "1j1disr1wcql30hdj3f49ss41843wlmqx486nkna6qbnnsfay66w"; system = "software-evolution-library"; asd = "software-evolution-library"; }); @@ -64468,6 +65700,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + source-error = (build-asdf-system { + pname = "source-error"; + version = "20241012-git"; + asds = [ "source-error" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "source-error"; + asd = "source-error"; + }); + systems = [ "source-error" ]; + lispLibs = [ (getAttr "alexandria" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); south = (build-asdf-system { pname = "south"; version = "20231021-git"; @@ -64726,16 +65974,16 @@ in lib.makeScope pkgs.newScope (self: { }); spinneret = (build-asdf-system { pname = "spinneret"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "spinneret" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/spinneret/2023-10-21/spinneret-20231021-git.tgz"; - sha256 = "0b9wvhgcaa6fqpm2hayd5q2aysy198dwh1c3fapd3sr49vabp806"; + url = "http://beta.quicklisp.org/archive/spinneret/2024-10-12/spinneret-20241012-git.tgz"; + sha256 = "09ak35p487bwlwbv0vcdg9h869n8m7i3j1qj4f53lh1bm5s1zi5n"; system = "spinneret"; asd = "spinneret"; }); systems = [ "spinneret" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) (getAttr "global-vars" self) (getAttr "parenscript" self) (getAttr "serapeum" self) (getAttr "trivia" self) (getAttr "trivial-gray-streams" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) (getAttr "global-vars" self) (getAttr "in-nomine" self) (getAttr "parenscript" self) (getAttr "serapeum" self) (getAttr "trivia" self) (getAttr "trivial-gray-streams" self) ]; meta = {}; }); split-sequence = (build-asdf-system { @@ -64976,11 +66224,11 @@ in lib.makeScope pkgs.newScope (self: { }); staple = (build-asdf-system { pname = "staple"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "staple" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/staple/2023-10-21/staple-20231021-git.tgz"; - sha256 = "1k3dgw0i1j8x7kwlgc53w808gfn4gll598ajgngsmrc3jisiw0nx"; + url = "http://beta.quicklisp.org/archive/staple/2024-10-12/staple-20241012-git.tgz"; + sha256 = "147511d57xkv9d9crnqygj8lqkdpmbyq3g8b9cns130d8m46f2vi"; system = "staple"; asd = "staple"; }); @@ -64992,11 +66240,11 @@ in lib.makeScope pkgs.newScope (self: { }); staple-code-parser = (build-asdf-system { pname = "staple-code-parser"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "staple-code-parser" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/staple/2023-10-21/staple-20231021-git.tgz"; - sha256 = "1k3dgw0i1j8x7kwlgc53w808gfn4gll598ajgngsmrc3jisiw0nx"; + url = "http://beta.quicklisp.org/archive/staple/2024-10-12/staple-20241012-git.tgz"; + sha256 = "147511d57xkv9d9crnqygj8lqkdpmbyq3g8b9cns130d8m46f2vi"; system = "staple-code-parser"; asd = "staple-code-parser"; }); @@ -65008,11 +66256,11 @@ in lib.makeScope pkgs.newScope (self: { }); staple-markdown = (build-asdf-system { pname = "staple-markdown"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "staple-markdown" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/staple/2023-10-21/staple-20231021-git.tgz"; - sha256 = "1k3dgw0i1j8x7kwlgc53w808gfn4gll598ajgngsmrc3jisiw0nx"; + url = "http://beta.quicklisp.org/archive/staple/2024-10-12/staple-20241012-git.tgz"; + sha256 = "147511d57xkv9d9crnqygj8lqkdpmbyq3g8b9cns130d8m46f2vi"; system = "staple-markdown"; asd = "staple-markdown"; }); @@ -65024,11 +66272,11 @@ in lib.makeScope pkgs.newScope (self: { }); staple-markless = (build-asdf-system { pname = "staple-markless"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "staple-markless" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/staple/2023-10-21/staple-20231021-git.tgz"; - sha256 = "1k3dgw0i1j8x7kwlgc53w808gfn4gll598ajgngsmrc3jisiw0nx"; + url = "http://beta.quicklisp.org/archive/staple/2024-10-12/staple-20241012-git.tgz"; + sha256 = "147511d57xkv9d9crnqygj8lqkdpmbyq3g8b9cns130d8m46f2vi"; system = "staple-markless"; asd = "staple-markless"; }); @@ -65040,11 +66288,11 @@ in lib.makeScope pkgs.newScope (self: { }); staple-package-recording = (build-asdf-system { pname = "staple-package-recording"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "staple-package-recording" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/staple/2023-10-21/staple-20231021-git.tgz"; - sha256 = "1k3dgw0i1j8x7kwlgc53w808gfn4gll598ajgngsmrc3jisiw0nx"; + url = "http://beta.quicklisp.org/archive/staple/2024-10-12/staple-20241012-git.tgz"; + sha256 = "147511d57xkv9d9crnqygj8lqkdpmbyq3g8b9cns130d8m46f2vi"; system = "staple-package-recording"; asd = "staple-package-recording"; }); @@ -65056,11 +66304,11 @@ in lib.makeScope pkgs.newScope (self: { }); staple-restructured-text = (build-asdf-system { pname = "staple-restructured-text"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "staple-restructured-text" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/staple/2023-10-21/staple-20231021-git.tgz"; - sha256 = "1k3dgw0i1j8x7kwlgc53w808gfn4gll598ajgngsmrc3jisiw0nx"; + url = "http://beta.quicklisp.org/archive/staple/2024-10-12/staple-20241012-git.tgz"; + sha256 = "147511d57xkv9d9crnqygj8lqkdpmbyq3g8b9cns130d8m46f2vi"; system = "staple-restructured-text"; asd = "staple-restructured-text"; }); @@ -65072,11 +66320,11 @@ in lib.makeScope pkgs.newScope (self: { }); staple-server = (build-asdf-system { pname = "staple-server"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "staple-server" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/staple/2023-10-21/staple-20231021-git.tgz"; - sha256 = "1k3dgw0i1j8x7kwlgc53w808gfn4gll598ajgngsmrc3jisiw0nx"; + url = "http://beta.quicklisp.org/archive/staple/2024-10-12/staple-20241012-git.tgz"; + sha256 = "147511d57xkv9d9crnqygj8lqkdpmbyq3g8b9cns130d8m46f2vi"; system = "staple-server"; asd = "staple-server"; }); @@ -65118,25 +66366,25 @@ in lib.makeScope pkgs.newScope (self: { }); static-vectors = (build-asdf-system { pname = "static-vectors"; - version = "v1.8.9"; + version = "v1.9.3"; asds = [ "static-vectors" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/static-vectors/2021-06-30/static-vectors-v1.8.9.tgz"; - sha256 = "079qa20lhanzsz1qf4iags91n0ziylbjgbcymm5a5qj7yryas4fw"; + url = "http://beta.quicklisp.org/archive/static-vectors/2024-10-12/static-vectors-v1.9.3.tgz"; + sha256 = "1sn37hyf6x56irn2qqc51ncqswa3n94j6cxwcj2ixgxmszcyzx5h"; system = "static-vectors"; asd = "static-vectors"; }); systems = [ "static-vectors" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cffi" self) (getAttr "cffi-grovel" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cffi" self) ]; meta = {}; }); statistics = (build-asdf-system { pname = "statistics"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "statistics" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/statistics/2023-10-21/statistics-20231021-git.tgz"; - sha256 = "0cx17fraqq3ac2w5mn4rkahfki3pr80flbcnhlrv6crgj8wshz2n"; + url = "http://beta.quicklisp.org/archive/statistics/2024-10-12/statistics-20241012-git.tgz"; + sha256 = "00dir3sif9jqc0b48vsk8r41h4zmf95jj4nqrc45mbnr80pmdrsl"; system = "statistics"; asd = "statistics"; }); @@ -65258,11 +66506,11 @@ in lib.makeScope pkgs.newScope (self: { }); stepster = (build-asdf-system { pname = "stepster"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "stepster" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/stepster/2023-06-18/stepster-20230618-git.tgz"; - sha256 = "1c59168aq364id3pnp5bzzjcv9yzdj2azm5nnyxabszjh4yjg1a9"; + url = "http://beta.quicklisp.org/archive/stepster/2024-10-12/stepster-20241012-git.tgz"; + sha256 = "027psal692mvpaj8bzp8fkkrsy5pgyrg8sr21xgc4m8ypp0shvw3"; system = "stepster"; asd = "stepster"; }); @@ -65290,11 +66538,11 @@ in lib.makeScope pkgs.newScope (self: { }); stmx = (build-asdf-system { pname = "stmx"; - version = "stable-992c9615-git"; + version = "stable-95f7dea8-git"; asds = [ "stmx" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/stmx/2023-06-18/stmx-stable-992c9615-git.tgz"; - sha256 = "1zhd25vr0sfw8rrlagz3y5c8jl7pgrlf35b5m06m79zjz3fv5368"; + url = "http://beta.quicklisp.org/archive/stmx/2024-10-12/stmx-stable-95f7dea8-git.tgz"; + sha256 = "1qq25y79casaa56a76gj9hk2f3hjcc5z3f4na4vy3sw99km54hn9"; system = "stmx"; asd = "stmx"; }); @@ -65306,11 +66554,11 @@ in lib.makeScope pkgs.newScope (self: { }); stmx_dot_test = (build-asdf-system { pname = "stmx.test"; - version = "stable-992c9615-git"; + version = "stable-95f7dea8-git"; asds = [ "stmx.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/stmx/2023-06-18/stmx-stable-992c9615-git.tgz"; - sha256 = "1zhd25vr0sfw8rrlagz3y5c8jl7pgrlf35b5m06m79zjz3fv5368"; + url = "http://beta.quicklisp.org/archive/stmx/2024-10-12/stmx-stable-95f7dea8-git.tgz"; + sha256 = "1qq25y79casaa56a76gj9hk2f3hjcc5z3f4na4vy3sw99km54hn9"; system = "stmx.test"; asd = "stmx.test"; }); @@ -65338,11 +66586,11 @@ in lib.makeScope pkgs.newScope (self: { }); str = (build-asdf-system { pname = "str"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "str" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-str/2023-10-21/cl-str-20231021-git.tgz"; - sha256 = "0zq0f6iia4mg755zmbpnjcbbiybi1ckxrvcy097iz4g9ayc0frmq"; + url = "http://beta.quicklisp.org/archive/cl-str/2024-10-12/cl-str-20241012-git.tgz"; + sha256 = "1c9vcrm4gy3ljwnzjimsxswszfs2im1a4iqalpn1mhv8ddwavb2j"; system = "str"; asd = "str"; }); @@ -65352,11 +66600,11 @@ in lib.makeScope pkgs.newScope (self: { }); str_dot_test = (build-asdf-system { pname = "str.test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "str.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-str/2023-10-21/cl-str-20231021-git.tgz"; - sha256 = "0zq0f6iia4mg755zmbpnjcbbiybi1ckxrvcy097iz4g9ayc0frmq"; + url = "http://beta.quicklisp.org/archive/cl-str/2024-10-12/cl-str-20241012-git.tgz"; + sha256 = "1c9vcrm4gy3ljwnzjimsxswszfs2im1a4iqalpn1mhv8ddwavb2j"; system = "str.test"; asd = "str.test"; }); @@ -65414,16 +66662,16 @@ in lib.makeScope pkgs.newScope (self: { }); stripe = (build-asdf-system { pname = "stripe"; - version = "20220707-git"; + version = "20241012-git"; asds = [ "stripe" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/stripe/2022-07-07/stripe-20220707-git.tgz"; - sha256 = "1n9lv9yixzampf986vkspspr7mrvpsz2l5h919agc52hkv9wg2f7"; + url = "http://beta.quicklisp.org/archive/stripe/2024-10-12/stripe-20241012-git.tgz"; + sha256 = "1ng1381pg0mj1ba0ndxvhaqmm0w64v0gq0qsxbfm9kr6hq46gsf9"; system = "stripe"; asd = "stripe"; }); systems = [ "stripe" ]; - lispLibs = [ (getAttr "dexador" self) (getAttr "local-time" self) (getAttr "mfiano-utils" self) (getAttr "yason" self) ]; + lispLibs = [ (getAttr "dexador" self) (getAttr "golden-utils" self) (getAttr "local-time" self) (getAttr "yason" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -65602,38 +66850,6 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) (getAttr "clx" self) (getAttr "dynamic-mixins-swm" self) ]; meta = {}; }); - stumpwm-dynamic-float = (build-asdf-system { - pname = "stumpwm-dynamic-float"; - version = "20221106-git"; - asds = [ "stumpwm-dynamic-float" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/stumpwm-dynamic-float/2022-11-06/stumpwm-dynamic-float-20221106-git.tgz"; - sha256 = "13m9864vfj4b5b0hlvp7jrb96368rxr5ydjsdqldky10yad7icxf"; - system = "stumpwm-dynamic-float"; - asd = "stumpwm-dynamic-float"; - }); - systems = [ "stumpwm-dynamic-float" ]; - lispLibs = [ (getAttr "stumpwm" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - stumpwm-sndioctl = (build-asdf-system { - pname = "stumpwm-sndioctl"; - version = "20210531-git"; - asds = [ "stumpwm-sndioctl" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/stumpwm-sndioctl/2021-05-31/stumpwm-sndioctl-20210531-git.tgz"; - sha256 = "1q4w4grim7izvw01k95wh7bbaaq0hz2ljjhn47nyd7pzrk9dabpv"; - system = "stumpwm-sndioctl"; - asd = "stumpwm-sndioctl"; - }); - systems = [ "stumpwm-sndioctl" ]; - lispLibs = [ (getAttr "stumpwm" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); stumpwm-tests = (build-asdf-system { pname = "stumpwm-tests"; version = "20231021-git"; @@ -65748,11 +66964,11 @@ in lib.makeScope pkgs.newScope (self: { }); swank = (build-asdf-system { pname = "swank"; - version = "v2.28"; + version = "v2.30"; asds = [ "swank" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/slime/2023-02-14/slime-v2.28.tgz"; - sha256 = "155y3xld9snkfm7xhn7gz655xxxr6g7qv45znbg25k6y1lczmy4z"; + url = "http://beta.quicklisp.org/archive/slime/2024-10-12/slime-v2.30.tgz"; + sha256 = "0qb7m65gq0mbxfrdppkh3k4jn13i14i07ziga4r8b3rmrxhrmlv0"; system = "swank"; asd = "swank"; }); @@ -65778,11 +66994,11 @@ in lib.makeScope pkgs.newScope (self: { }); swank-crew = (build-asdf-system { pname = "swank-crew"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "swank-crew" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/swank-crew/2023-02-14/swank-crew-20230214-git.tgz"; - sha256 = "0na16gby46g66b0632lgzrfnj79ml3k5z2g5d1x87p6cqhzxgrf9"; + url = "http://beta.quicklisp.org/archive/swank-crew/2024-10-12/swank-crew-20241012-git.tgz"; + sha256 = "0v0gg9d74x28xw3n12nrvkdnnvz0m972l4rymfansfaawiqm7ssz"; system = "swank-crew"; asd = "swank-crew"; }); @@ -65794,11 +67010,11 @@ in lib.makeScope pkgs.newScope (self: { }); swank-protocol = (build-asdf-system { pname = "swank-protocol"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "swank-protocol" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/swank-protocol/2021-10-20/swank-protocol-20211020-git.tgz"; - sha256 = "1c6cbkvcy3k56pkq5nlnj5m0zwkgbbrhfs1igwkr89xal2a4fz56"; + url = "http://beta.quicklisp.org/archive/swank-protocol/2024-10-12/swank-protocol-20241012-git.tgz"; + sha256 = "0vqcdxp228fk3snay90ml33r1y03l5k05snq633f95his8ffxknl"; system = "swank-protocol"; asd = "swank-protocol"; }); @@ -65840,11 +67056,11 @@ in lib.makeScope pkgs.newScope (self: { }); sxql = (build-asdf-system { pname = "sxql"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sxql" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sxql/2023-10-21/sxql-20231021-git.tgz"; - sha256 = "100war7l253dhld5gl49xmdfpl93kardjaaxb0cka0yzrvz4x0sw"; + url = "http://beta.quicklisp.org/archive/sxql/2024-10-12/sxql-20241012-git.tgz"; + sha256 = "11x4qgdwbddbk0a8avrirp1ksmphfxlimirfwvmiwi0jc4zd5csa"; system = "sxql"; asd = "sxql"; }); @@ -65872,11 +67088,11 @@ in lib.makeScope pkgs.newScope (self: { }); sxql-test = (build-asdf-system { pname = "sxql-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "sxql-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/sxql/2023-10-21/sxql-20231021-git.tgz"; - sha256 = "100war7l253dhld5gl49xmdfpl93kardjaaxb0cka0yzrvz4x0sw"; + url = "http://beta.quicklisp.org/archive/sxql/2024-10-12/sxql-20241012-git.tgz"; + sha256 = "11x4qgdwbddbk0a8avrirp1ksmphfxlimirfwvmiwi0jc4zd5csa"; system = "sxql-test"; asd = "sxql-test"; }); @@ -65902,11 +67118,11 @@ in lib.makeScope pkgs.newScope (self: { }); symath = (build-asdf-system { pname = "symath"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "symath" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/symath/2023-02-14/symath-20230214-git.tgz"; - sha256 = "0jynx61ycbhibz7cs5rzb7ifhh0hh6iqbx4j07xlz21669vgzb65"; + url = "http://beta.quicklisp.org/archive/symath/2024-10-12/symath-20241012-git.tgz"; + sha256 = "1bxggf9kn4bhx877hyj4kpr76p47d8cd35lgv224hri5211fqyaz"; system = "symath"; asd = "symath"; }); @@ -65980,11 +67196,11 @@ in lib.makeScope pkgs.newScope (self: { }); system-locale = (build-asdf-system { pname = "system-locale"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "system-locale" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/system-locale/2023-10-21/system-locale-20231021-git.tgz"; - sha256 = "0p68mgmh52mzq66dz3rczakzwavjp9ld27c2anxjx8fzbf033fp9"; + url = "http://beta.quicklisp.org/archive/system-locale/2024-10-12/system-locale-20241012-git.tgz"; + sha256 = "1q91vyvsh787fz3j49lmyw2lx85288cmamb11h99wdmbmf61rdgr"; system = "system-locale"; asd = "system-locale"; }); @@ -65994,29 +67210,13 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - t-clack-handler-fcgi = (build-asdf-system { - pname = "t-clack-handler-fcgi"; - version = "20231021-git"; - asds = [ "t-clack-handler-fcgi" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; - system = "t-clack-handler-fcgi"; - asd = "t-clack-handler-fcgi"; - }); - systems = [ "t-clack-handler-fcgi" ]; - lispLibs = [ (getAttr "clack-test" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); t-clack-handler-hunchentoot = (build-asdf-system { pname = "t-clack-handler-hunchentoot"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "t-clack-handler-hunchentoot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "t-clack-handler-hunchentoot"; asd = "t-clack-handler-hunchentoot"; }); @@ -66028,11 +67228,11 @@ in lib.makeScope pkgs.newScope (self: { }); t-clack-handler-toot = (build-asdf-system { pname = "t-clack-handler-toot"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "t-clack-handler-toot" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "t-clack-handler-toot"; asd = "t-clack-handler-toot"; }); @@ -66044,11 +67244,11 @@ in lib.makeScope pkgs.newScope (self: { }); t-clack-handler-wookie = (build-asdf-system { pname = "t-clack-handler-wookie"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "t-clack-handler-wookie" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/clack/2023-10-21/clack-20231021-git.tgz"; - sha256 = "1w6ij1syv68vnm9xwp2q1lmnn92yafpbv7w1fyk012jxyqdsj4sy"; + url = "http://beta.quicklisp.org/archive/clack/2024-10-12/clack-20241012-git.tgz"; + sha256 = "0dljkfxdypn50d6jlssl79ag072r7lcdhfy771hna0ihxii8vsm3"; system = "t-clack-handler-wookie"; asd = "t-clack-handler-wookie"; }); @@ -66058,214 +67258,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - t-lack = (build-asdf-system { - pname = "t-lack"; - version = "20231021-git"; - asds = [ "t-lack" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack"; - asd = "t-lack"; - }); - systems = [ "t-lack" ]; - lispLibs = [ (getAttr "clack" self) (getAttr "lack" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-component = (build-asdf-system { - pname = "t-lack-component"; - version = "20231021-git"; - asds = [ "t-lack-component" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-component"; - asd = "t-lack-component"; - }); - systems = [ "t-lack-component" ]; - lispLibs = [ (getAttr "lack-component" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-middleware-accesslog = (build-asdf-system { - pname = "t-lack-middleware-accesslog"; - version = "20231021-git"; - asds = [ "t-lack-middleware-accesslog" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-middleware-accesslog"; - asd = "t-lack-middleware-accesslog"; - }); - systems = [ "t-lack-middleware-accesslog" ]; - lispLibs = [ (getAttr "lack" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) (getAttr "split-sequence" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-middleware-auth-basic = (build-asdf-system { - pname = "t-lack-middleware-auth-basic"; - version = "20231021-git"; - asds = [ "t-lack-middleware-auth-basic" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-middleware-auth-basic"; - asd = "t-lack-middleware-auth-basic"; - }); - systems = [ "t-lack-middleware-auth-basic" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-base64" self) (getAttr "lack" self) (getAttr "lack-middleware-auth-basic" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-middleware-backtrace = (build-asdf-system { - pname = "t-lack-middleware-backtrace"; - version = "20231021-git"; - asds = [ "t-lack-middleware-backtrace" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-middleware-backtrace"; - asd = "t-lack-middleware-backtrace"; - }); - systems = [ "t-lack-middleware-backtrace" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "lack" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-middleware-csrf = (build-asdf-system { - pname = "t-lack-middleware-csrf"; - version = "20231021-git"; - asds = [ "t-lack-middleware-csrf" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-middleware-csrf"; - asd = "t-lack-middleware-csrf"; - }); - systems = [ "t-lack-middleware-csrf" ]; - lispLibs = [ (getAttr "cl-ppcre" self) (getAttr "lack" self) (getAttr "lack-middleware-csrf" self) (getAttr "lack-request" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-middleware-mount = (build-asdf-system { - pname = "t-lack-middleware-mount"; - version = "20231021-git"; - asds = [ "t-lack-middleware-mount" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-middleware-mount"; - asd = "t-lack-middleware-mount"; - }); - systems = [ "t-lack-middleware-mount" ]; - lispLibs = [ (getAttr "lack" self) (getAttr "lack-component" self) (getAttr "lack-middleware-mount" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-middleware-session = (build-asdf-system { - pname = "t-lack-middleware-session"; - version = "20231021-git"; - asds = [ "t-lack-middleware-session" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-middleware-session"; - asd = "t-lack-middleware-session"; - }); - systems = [ "t-lack-middleware-session" ]; - lispLibs = [ (getAttr "cl-cookie" self) (getAttr "lack" self) (getAttr "lack-middleware-session" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-middleware-static = (build-asdf-system { - pname = "t-lack-middleware-static"; - version = "20231021-git"; - asds = [ "t-lack-middleware-static" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-middleware-static"; - asd = "t-lack-middleware-static"; - }); - systems = [ "t-lack-middleware-static" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "lack" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-request = (build-asdf-system { - pname = "t-lack-request"; - version = "20231021-git"; - asds = [ "t-lack-request" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-request"; - asd = "t-lack-request"; - }); - systems = [ "t-lack-request" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "clack-test" self) (getAttr "dexador" self) (getAttr "flexi-streams" self) (getAttr "hunchentoot" self) (getAttr "lack-request" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-session-store-dbi = (build-asdf-system { - pname = "t-lack-session-store-dbi"; - version = "20231021-git"; - asds = [ "t-lack-session-store-dbi" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-session-store-dbi"; - asd = "t-lack-session-store-dbi"; - }); - systems = [ "t-lack-session-store-dbi" ]; - lispLibs = [ (getAttr "dbi" self) (getAttr "lack" self) (getAttr "lack-session-store-dbi" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) (getAttr "sqlite" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-session-store-redis = (build-asdf-system { - pname = "t-lack-session-store-redis"; - version = "20231021-git"; - asds = [ "t-lack-session-store-redis" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-session-store-redis"; - asd = "t-lack-session-store-redis"; - }); - systems = [ "t-lack-session-store-redis" ]; - lispLibs = [ (getAttr "lack" self) (getAttr "lack-session-store-redis" self) (getAttr "lack-test" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); - t-lack-util = (build-asdf-system { - pname = "t-lack-util"; - version = "20231021-git"; - asds = [ "t-lack-util" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/lack/2023-10-21/lack-20231021-git.tgz"; - sha256 = "1cmqf9fqjxdkhf73sv2k4jccalrqbli2y6yv5wzq9x6jhpdk77s3"; - system = "t-lack-util"; - asd = "t-lack-util"; - }); - systems = [ "t-lack-util" ]; - lispLibs = [ (getAttr "lack-test" self) (getAttr "lack-util" self) (getAttr "prove" self) (getAttr "prove-asdf" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); ta2 = (build-asdf-system { pname = "ta2"; version = "master-fe503896-git"; @@ -66300,11 +67292,11 @@ in lib.makeScope pkgs.newScope (self: { }); taglib = (build-asdf-system { pname = "taglib"; - version = "20210411-git"; + version = "20241012-git"; asds = [ "taglib" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/taglib/2021-04-11/taglib-20210411-git.tgz"; - sha256 = "13291kb95hwb2nbkjscjb2abn5l267cjwspaqsmr3bsdvvf0033b"; + url = "http://beta.quicklisp.org/archive/taglib/2024-10-12/taglib-20241012-git.tgz"; + sha256 = "1jhi38g2ngmbsv71chxyavgf4fzb64nr7z648ia01qxii0435csb"; system = "taglib"; asd = "taglib"; }); @@ -66316,11 +67308,11 @@ in lib.makeScope pkgs.newScope (self: { }); taglib-tests = (build-asdf-system { pname = "taglib-tests"; - version = "20210411-git"; + version = "20241012-git"; asds = [ "taglib-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/taglib/2021-04-11/taglib-20210411-git.tgz"; - sha256 = "13291kb95hwb2nbkjscjb2abn5l267cjwspaqsmr3bsdvvf0033b"; + url = "http://beta.quicklisp.org/archive/taglib/2024-10-12/taglib-20241012-git.tgz"; + sha256 = "1jhi38g2ngmbsv71chxyavgf4fzb64nr7z648ia01qxii0435csb"; system = "taglib-tests"; asd = "taglib-tests"; }); @@ -66524,11 +67516,11 @@ in lib.makeScope pkgs.newScope (self: { }); teddy = (build-asdf-system { pname = "teddy"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "teddy" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/teddy/2021-10-20/teddy-20211020-git.tgz"; - sha256 = "108cdxckzpdixi975rr2q1kkga6jngwj7j3nhfss9pzqcsf9w9ks"; + url = "http://beta.quicklisp.org/archive/teddy/2024-10-12/teddy-20241012-git.tgz"; + sha256 = "0qg83khyny5pw9lk3ysid32wl1wds43ja35qx72mxpli3nhj7nhq"; system = "teddy"; asd = "teddy"; }); @@ -66668,11 +67660,11 @@ in lib.makeScope pkgs.newScope (self: { }); ten = (build-asdf-system { pname = "ten"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "ten" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ten/2023-06-18/ten-20230618-git.tgz"; - sha256 = "1z1aqdlmjagdfyl3d9m92g96cdbnbdvbxbfixcl1qifbkzxka739"; + url = "http://beta.quicklisp.org/archive/ten/2024-10-12/ten-20241012-git.tgz"; + sha256 = "0zrbgyvc21gq8r507jm664zd4r9q206g2ah1yybwi32lgzify6nk"; system = "ten"; asd = "ten"; }); @@ -66684,11 +67676,11 @@ in lib.makeScope pkgs.newScope (self: { }); ten_dot_examples = (build-asdf-system { pname = "ten.examples"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "ten.examples" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ten/2023-06-18/ten-20230618-git.tgz"; - sha256 = "1z1aqdlmjagdfyl3d9m92g96cdbnbdvbxbfixcl1qifbkzxka739"; + url = "http://beta.quicklisp.org/archive/ten/2024-10-12/ten-20241012-git.tgz"; + sha256 = "0zrbgyvc21gq8r507jm664zd4r9q206g2ah1yybwi32lgzify6nk"; system = "ten.examples"; asd = "ten.examples"; }); @@ -66700,11 +67692,11 @@ in lib.makeScope pkgs.newScope (self: { }); ten_dot_i18n_dot_cl-locale = (build-asdf-system { pname = "ten.i18n.cl-locale"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "ten.i18n.cl-locale" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ten/2023-06-18/ten-20230618-git.tgz"; - sha256 = "1z1aqdlmjagdfyl3d9m92g96cdbnbdvbxbfixcl1qifbkzxka739"; + url = "http://beta.quicklisp.org/archive/ten/2024-10-12/ten-20241012-git.tgz"; + sha256 = "0zrbgyvc21gq8r507jm664zd4r9q206g2ah1yybwi32lgzify6nk"; system = "ten.i18n.cl-locale"; asd = "ten.i18n.cl-locale"; }); @@ -66716,11 +67708,11 @@ in lib.makeScope pkgs.newScope (self: { }); ten_dot_i18n_dot_gettext = (build-asdf-system { pname = "ten.i18n.gettext"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "ten.i18n.gettext" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ten/2023-06-18/ten-20230618-git.tgz"; - sha256 = "1z1aqdlmjagdfyl3d9m92g96cdbnbdvbxbfixcl1qifbkzxka739"; + url = "http://beta.quicklisp.org/archive/ten/2024-10-12/ten-20241012-git.tgz"; + sha256 = "0zrbgyvc21gq8r507jm664zd4r9q206g2ah1yybwi32lgzify6nk"; system = "ten.i18n.gettext"; asd = "ten.i18n.gettext"; }); @@ -66732,11 +67724,11 @@ in lib.makeScope pkgs.newScope (self: { }); ten_dot_tests = (build-asdf-system { pname = "ten.tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "ten.tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/ten/2023-06-18/ten-20230618-git.tgz"; - sha256 = "1z1aqdlmjagdfyl3d9m92g96cdbnbdvbxbfixcl1qifbkzxka739"; + url = "http://beta.quicklisp.org/archive/ten/2024-10-12/ten-20241012-git.tgz"; + sha256 = "0zrbgyvc21gq8r507jm664zd4r9q206g2ah1yybwi32lgzify6nk"; system = "ten.tests"; asd = "ten.tests"; }); @@ -66796,11 +67788,11 @@ in lib.makeScope pkgs.newScope (self: { }); test-40ants-system = (build-asdf-system { pname = "test-40ants-system"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "test-40ants-system" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/40ants-asdf-system/2023-10-21/40ants-asdf-system-20231021-git.tgz"; - sha256 = "17hfih5b1shw2l0fw3dy3q5dxqra80k3h4jfmlnf0bp3ii0385g5"; + url = "http://beta.quicklisp.org/archive/40ants-asdf-system/2024-10-12/40ants-asdf-system-20241012-git.tgz"; + sha256 = "0wi575m0s0a9fvp1wy5ga760f71la16z1633qk6s2f87rwcjs8kw"; system = "test-40ants-system"; asd = "test-40ants-system"; }); @@ -66812,11 +67804,11 @@ in lib.makeScope pkgs.newScope (self: { }); test-gadgets = (build-asdf-system { pname = "test-gadgets"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "test-gadgets" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/gadgets/2022-02-20/gadgets-20220220-git.tgz"; - sha256 = "0g06wb3dciri2q93x2dcf58x5r8gq2kb86fgd2w4pr5r1wxwd1sm"; + url = "http://beta.quicklisp.org/archive/gadgets/2024-10-12/gadgets-20241012-git.tgz"; + sha256 = "1ba4gj8lh3ihbb66xiz7hc8cdg3gvi3q20w32nmsqdch956is34k"; system = "test-gadgets"; asd = "test-gadgets"; }); @@ -66940,11 +67932,11 @@ in lib.makeScope pkgs.newScope (self: { }); testiere = (build-asdf-system { pname = "testiere"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "testiere" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/testiere/2023-10-21/testiere-20231021-git.tgz"; - sha256 = "1kgd9fqp2bkxpzfv4z4jhicivmfi0wnnmg75ip7zh67jdh8m6fhd"; + url = "http://beta.quicklisp.org/archive/testiere/2024-10-12/testiere-20241012-git.tgz"; + sha256 = "0sfsk7i5kxk8s1273i9vwz49hak0qdrr9asq70kdiwq0lfd56kgg"; system = "testiere"; asd = "testiere"; }); @@ -67050,6 +68042,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + thih-coalton = (build-asdf-system { + pname = "thih-coalton"; + version = "20241012-git"; + asds = [ "thih-coalton" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/coalton/2024-10-12/coalton-20241012-git.tgz"; + sha256 = "19flzjxf3y6pxm09bmr8bmiqbgh4f7d5jjbgx2cb3dckmgvvg1d7"; + system = "thih-coalton"; + asd = "thih-coalton"; + }); + systems = [ "thih-coalton" ]; + lispLibs = [ (getAttr "coalton" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); thnappy = (build-asdf-system { pname = "thnappy"; version = "20180831-git"; @@ -67260,11 +68268,11 @@ in lib.makeScope pkgs.newScope (self: { }); tiny-routes = (build-asdf-system { pname = "tiny-routes"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "tiny-routes" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tiny-routes/2023-10-21/tiny-routes-20231021-git.tgz"; - sha256 = "085k0ibfhz5i68mrd1y4pr5dykrpcd4p1iig6bgxa5h7c844sm0i"; + url = "http://beta.quicklisp.org/archive/tiny-routes/2024-10-12/tiny-routes-20241012-git.tgz"; + sha256 = "1wswzz7d26ic9izls7pnkybm8ryf5j0ksv55gr6k5nji9x8r5jqx"; system = "tiny-routes"; asd = "tiny-routes"; }); @@ -67276,11 +68284,11 @@ in lib.makeScope pkgs.newScope (self: { }); tiny-routes-middleware-cookie = (build-asdf-system { pname = "tiny-routes-middleware-cookie"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "tiny-routes-middleware-cookie" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tiny-routes/2023-10-21/tiny-routes-20231021-git.tgz"; - sha256 = "085k0ibfhz5i68mrd1y4pr5dykrpcd4p1iig6bgxa5h7c844sm0i"; + url = "http://beta.quicklisp.org/archive/tiny-routes/2024-10-12/tiny-routes-20241012-git.tgz"; + sha256 = "1wswzz7d26ic9izls7pnkybm8ryf5j0ksv55gr6k5nji9x8r5jqx"; system = "tiny-routes-middleware-cookie"; asd = "tiny-routes-middleware-cookie"; }); @@ -67436,27 +68444,27 @@ in lib.makeScope pkgs.newScope (self: { }); tooter = (build-asdf-system { pname = "tooter"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "tooter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/tooter/2023-10-21/tooter-20231021-git.tgz"; - sha256 = "1l4jjsb3l1adnd7am8kvgb0vn4czwi6z894222hjmhash904p48l"; + url = "http://beta.quicklisp.org/archive/tooter/2024-10-12/tooter-20241012-git.tgz"; + sha256 = "03ymavph34248lh18jycsky55dg83kjr6k5a9bib5wh2idswrfxp"; system = "tooter"; asd = "tooter"; }); systems = [ "tooter" ]; - lispLibs = [ (getAttr "cl-ppcre" self) (getAttr "com_dot_inuoe_dot_jzon" self) (getAttr "documentation-utils" self) (getAttr "drakma" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "cl-ppcre" self) (getAttr "documentation-utils" self) (getAttr "drakma" self) (getAttr "yason" self) ]; meta = { hydraPlatforms = [ ]; }; }); torrents = (build-asdf-system { pname = "torrents"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "torrents" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-torrents/2022-11-06/cl-torrents-20221106-git.tgz"; - sha256 = "1icz98icnisz8cz669adin5x68y3ybcajy69yrma1djgd3v7inl5"; + url = "http://beta.quicklisp.org/archive/cl-torrents/2024-10-12/cl-torrents-20241012-git.tgz"; + sha256 = "1xigzskksgn8pg18v2dncfapdn94zv0djr4yi8nmkqbv8ljx93l4"; system = "torrents"; asd = "torrents"; }); @@ -67468,11 +68476,11 @@ in lib.makeScope pkgs.newScope (self: { }); torrents-test = (build-asdf-system { pname = "torrents-test"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "torrents-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-torrents/2022-11-06/cl-torrents-20221106-git.tgz"; - sha256 = "1icz98icnisz8cz669adin5x68y3ybcajy69yrma1djgd3v7inl5"; + url = "http://beta.quicklisp.org/archive/cl-torrents/2024-10-12/cl-torrents-20241012-git.tgz"; + sha256 = "1xigzskksgn8pg18v2dncfapdn94zv0djr4yi8nmkqbv8ljx93l4"; system = "torrents-test"; asd = "torrents-test"; }); @@ -67564,11 +68572,11 @@ in lib.makeScope pkgs.newScope (self: { }); transducers = (build-asdf-system { pname = "transducers"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "transducers" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-transducers/2023-10-21/cl-transducers-20231021-git.tgz"; - sha256 = "16711ah5cka09ib6lhjbrm2ycwj8m8b5jgp0j87x93z8p0gkmj8y"; + url = "http://beta.quicklisp.org/archive/cl-transducers/2024-10-12/cl-transducers-20241012-git.tgz"; + sha256 = "1n7g2fr5bxyq1axp3a1pw01c5v167njhd7i0gbpq35s1fxvqw6ik"; system = "transducers"; asd = "transducers"; }); @@ -67580,11 +68588,11 @@ in lib.makeScope pkgs.newScope (self: { }); transducers-jzon = (build-asdf-system { pname = "transducers-jzon"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "transducers-jzon" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-transducers/2023-10-21/cl-transducers-20231021-git.tgz"; - sha256 = "16711ah5cka09ib6lhjbrm2ycwj8m8b5jgp0j87x93z8p0gkmj8y"; + url = "http://beta.quicklisp.org/archive/cl-transducers/2024-10-12/cl-transducers-20241012-git.tgz"; + sha256 = "1n7g2fr5bxyq1axp3a1pw01c5v167njhd7i0gbpq35s1fxvqw6ik"; system = "transducers-jzon"; asd = "transducers"; }); @@ -67594,6 +68602,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + transit = (build-asdf-system { + pname = "transit"; + version = "20241012-git"; + asds = [ "transit" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-transit/2024-10-12/cl-transit-20241012-git.tgz"; + sha256 = "09rlajmcljl43n5866ackbdjkdz19sd12wzdzxnk2l7bjx3khqm4"; + system = "transit"; + asd = "transit"; + }); + systems = [ "transit" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bit-smasher" self) (getAttr "cl-messagepack" self) (getAttr "com_dot_inuoe_dot_jzon" self) (getAttr "flexi-streams" self) (getAttr "frugal-uuid" self) (getAttr "fset" self) (getAttr "local-time" self) (getAttr "parse-float" self) (getAttr "quri" self) (getAttr "serapeum" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + transit-tests = (build-asdf-system { + pname = "transit-tests"; + version = "20241012-git"; + asds = [ "transit-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-transit/2024-10-12/cl-transit-20241012-git.tgz"; + sha256 = "09rlajmcljl43n5866ackbdjkdz19sd12wzdzxnk2l7bjx3khqm4"; + system = "transit-tests"; + asd = "transit-tests"; + }); + systems = [ "transit-tests" ]; + lispLibs = [ (getAttr "dexador" self) (getAttr "fiveam" self) (getAttr "marshal" self) (getAttr "transit" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); translate = (build-asdf-system { pname = "translate"; version = "20180228-git"; @@ -67802,11 +68842,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia = (build-asdf-system { pname = "trivia"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia"; asd = "trivia"; }); @@ -67816,11 +68856,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_balland2006 = (build-asdf-system { pname = "trivia.balland2006"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.balland2006" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.balland2006"; asd = "trivia.balland2006"; }); @@ -67830,11 +68870,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_benchmark = (build-asdf-system { pname = "trivia.benchmark"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.benchmark" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.benchmark"; asd = "trivia.benchmark"; }); @@ -67846,11 +68886,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_cffi = (build-asdf-system { pname = "trivia.cffi"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.cffi" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.cffi"; asd = "trivia.cffi"; }); @@ -67862,11 +68902,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_fset = (build-asdf-system { pname = "trivia.fset"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.fset" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.fset"; asd = "trivia.fset"; }); @@ -67878,11 +68918,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_level0 = (build-asdf-system { pname = "trivia.level0"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.level0" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.level0"; asd = "trivia.level0"; }); @@ -67892,11 +68932,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_level1 = (build-asdf-system { pname = "trivia.level1"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.level1" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.level1"; asd = "trivia.level1"; }); @@ -67906,11 +68946,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_level2 = (build-asdf-system { pname = "trivia.level2"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.level2" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.level2"; asd = "trivia.level2"; }); @@ -67920,11 +68960,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_ppcre = (build-asdf-system { pname = "trivia.ppcre"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.ppcre" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.ppcre"; asd = "trivia.ppcre"; }); @@ -67936,11 +68976,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_quasiquote = (build-asdf-system { pname = "trivia.quasiquote"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.quasiquote" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.quasiquote"; asd = "trivia.quasiquote"; }); @@ -67950,11 +68990,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_test = (build-asdf-system { pname = "trivia.test"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.test"; asd = "trivia.test"; }); @@ -67966,11 +69006,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivia_dot_trivial = (build-asdf-system { pname = "trivia.trivial"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivia.trivial" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivia/2023-06-18/trivia-20230618-git.tgz"; - sha256 = "13q261kc4y3g16zswfs1f2y57jpg04d7cx3xig76wp8wfgaq5g1m"; + url = "http://beta.quicklisp.org/archive/trivia/2024-10-12/trivia-20241012-git.tgz"; + sha256 = "1kysjmgi0hg4f4vwn64494aylsywxs66ksz3bnissf9p5nzgz61b"; system = "trivia.trivial"; asd = "trivia.trivial"; }); @@ -67978,13 +69018,29 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "trivia_dot_level2" self) ]; meta = {}; }); + trivial-adjust-simple-array = (build-asdf-system { + pname = "trivial-adjust-simple-array"; + version = "20241012-git"; + asds = [ "trivial-adjust-simple-array" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/trivial-adjust-simple-array/2024-10-12/trivial-adjust-simple-array-20241012-git.tgz"; + sha256 = "05yifs4b44whqz4bgv4wys6kvza8y7z5w52kh55ch7krpv61ncy6"; + system = "trivial-adjust-simple-array"; + asd = "trivial-adjust-simple-array"; + }); + systems = [ "trivial-adjust-simple-array" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); trivial-arguments = (build-asdf-system { pname = "trivial-arguments"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-arguments" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-arguments/2023-10-21/trivial-arguments-20231021-git.tgz"; - sha256 = "1gfkybbb3xy93gvlr6hzyf65llfhp21mmv3bb92h4wc2mfr8i336"; + url = "http://beta.quicklisp.org/archive/trivial-arguments/2024-10-12/trivial-arguments-20241012-git.tgz"; + sha256 = "1x1jifrw4ryyqgbln07znrc1drl4gxvzhbhv5gl1kgp2xm0rvr7j"; system = "trivial-arguments"; asd = "trivial-arguments"; }); @@ -68136,11 +69192,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-clipboard = (build-asdf-system { pname = "trivial-clipboard"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-clipboard" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-clipboard/2023-10-21/trivial-clipboard-20231021-git.tgz"; - sha256 = "029qmx523xfk54p99ndgbmdd20s5i32mzpf77xymngrn4c33v9jk"; + url = "http://beta.quicklisp.org/archive/trivial-clipboard/2024-10-12/trivial-clipboard-20241012-git.tgz"; + sha256 = "1agj4nvw4qq7k4vp64y15gq5h5g22zasys48c2bvzqjr0n9d4lj1"; system = "trivial-clipboard"; asd = "trivial-clipboard"; }); @@ -68150,11 +69206,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-clipboard-test = (build-asdf-system { pname = "trivial-clipboard-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-clipboard-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-clipboard/2023-10-21/trivial-clipboard-20231021-git.tgz"; - sha256 = "029qmx523xfk54p99ndgbmdd20s5i32mzpf77xymngrn4c33v9jk"; + url = "http://beta.quicklisp.org/archive/trivial-clipboard/2024-10-12/trivial-clipboard-20241012-git.tgz"; + sha256 = "1agj4nvw4qq7k4vp64y15gq5h5g22zasys48c2bvzqjr0n9d4lj1"; system = "trivial-clipboard-test"; asd = "trivial-clipboard-test"; }); @@ -68164,6 +69220,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + trivial-clock = (build-asdf-system { + pname = "trivial-clock"; + version = "20241012-git"; + asds = [ "trivial-clock" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/cl-trivial-clock/2024-10-12/cl-trivial-clock-20241012-git.tgz"; + sha256 = "1m1351j3xvrf6631gmf99xaxb3dhh4ak657p1hac3b9f9a5h85nd"; + system = "trivial-clock"; + asd = "trivial-clock"; + }); + systems = [ "trivial-clock" ]; + lispLibs = [ (getAttr "cffi" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); trivial-cltl2 = (build-asdf-system { pname = "trivial-cltl2"; version = "20211230-git"; @@ -68514,11 +69586,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-file-size = (build-asdf-system { pname = "trivial-file-size"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "trivial-file-size" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-file-size/2022-11-06/trivial-file-size-20221106-git.tgz"; - sha256 = "0ji5j3zgshmfgxwg2yh599r47zaivzky646zk12jg48sb3i7q8fw"; + url = "http://beta.quicklisp.org/archive/trivial-file-size/2024-10-12/trivial-file-size-20241012-git.tgz"; + sha256 = "08dbyrrgvvl459lk3pcq0j7qryb20hdh946y42h4jsp5crhbi71z"; system = "trivial-file-size"; asd = "trivial-file-size"; }); @@ -68542,11 +69614,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-gray-streams = (build-asdf-system { pname = "trivial-gray-streams"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-gray-streams" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-gray-streams/2023-10-21/trivial-gray-streams-20231021-git.tgz"; - sha256 = "08jfx79cayi27fd2icxyy3salwrypy61i2fm8mbcq424xlm21ida"; + url = "http://beta.quicklisp.org/archive/trivial-gray-streams/2024-10-12/trivial-gray-streams-20241012-git.tgz"; + sha256 = "0iw6q5hx7x8sc5s7ikvsjccsksbm0rd13d54mkrg62sc56hjywrm"; system = "trivial-gray-streams"; asd = "trivial-gray-streams"; }); @@ -68556,11 +69628,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-gray-streams-test = (build-asdf-system { pname = "trivial-gray-streams-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-gray-streams-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-gray-streams/2023-10-21/trivial-gray-streams-20231021-git.tgz"; - sha256 = "08jfx79cayi27fd2icxyy3salwrypy61i2fm8mbcq424xlm21ida"; + url = "http://beta.quicklisp.org/archive/trivial-gray-streams/2024-10-12/trivial-gray-streams-20241012-git.tgz"; + sha256 = "0iw6q5hx7x8sc5s7ikvsjccsksbm0rd13d54mkrg62sc56hjywrm"; system = "trivial-gray-streams-test"; asd = "trivial-gray-streams-test"; }); @@ -68808,16 +69880,16 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-main-thread = (build-asdf-system { pname = "trivial-main-thread"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-main-thread" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-main-thread/2023-10-21/trivial-main-thread-20231021-git.tgz"; - sha256 = "0l7avhykgg5ssr7jczjkgz71zzdbq0sadi2sikdw6mgysjh9fsqv"; + url = "http://beta.quicklisp.org/archive/trivial-main-thread/2024-10-12/trivial-main-thread-20241012-git.tgz"; + sha256 = "0vxr82ald41355hvlg0ngrpzkz9y3nyl24h58306kmg982xk4hnk"; system = "trivial-main-thread"; asd = "trivial-main-thread"; }); systems = [ "trivial-main-thread" ]; - lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "simple-tasks" self) (getAttr "trivial-features" self) ]; + lispLibs = [ (getAttr "bordeaux-threads" self) (getAttr "documentation-utils" self) (getAttr "trivial-features" self) ]; meta = {}; }); trivial-method-combinations = (build-asdf-system { @@ -68948,11 +70020,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-octet-streams = (build-asdf-system { pname = "trivial-octet-streams"; - version = "20130128-git"; + version = "20241012-git"; asds = [ "trivial-octet-streams" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-octet-streams/2013-01-28/trivial-octet-streams-20130128-git.tgz"; - sha256 = "0ysnsarlzynb7jf4b63b6kkxjancxc66jwmn0sb3vxyh87siiv6n"; + url = "http://beta.quicklisp.org/archive/trivial-octet-streams/2024-10-12/trivial-octet-streams-20241012-git.tgz"; + sha256 = "0zj7aijn10hflr87774hwi5k1jzq6j5bgh2hm70ixxhcmaq7lqk5"; system = "trivial-octet-streams"; asd = "trivial-octet-streams"; }); @@ -69026,11 +70098,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-package-locks = (build-asdf-system { pname = "trivial-package-locks"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "trivial-package-locks" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-package-locks/2023-06-18/trivial-package-locks-20230618-git.tgz"; - sha256 = "0zkc1k43r08yh7p62br1n48yc2fyn2xpph9pbfwip0g3q38vhx2k"; + url = "http://beta.quicklisp.org/archive/trivial-package-locks/2024-10-12/trivial-package-locks-20241012-git.tgz"; + sha256 = "09zhirygjmwr4xvwp1zx9b17mkxml7f7rni1xiwxg5vfgn0y1bi3"; system = "trivial-package-locks"; asd = "trivial-package-locks"; }); @@ -69042,11 +70114,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-package-manager = (build-asdf-system { pname = "trivial-package-manager"; - version = "20171227-git"; + version = "20241012-git"; asds = [ "trivial-package-manager" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-package-manager/2017-12-27/trivial-package-manager-20171227-git.tgz"; - sha256 = "0v61x4wzamilnjyq35ki46zl9443fslv9slwqwlazfknnbp3vcq8"; + url = "http://beta.quicklisp.org/archive/trivial-package-manager/2024-10-12/trivial-package-manager-20241012-git.tgz"; + sha256 = "1q71r9h5xra0bg5c5v2gzjjswfv626gfg9sxn59w645g30xn1sph"; system = "trivial-package-manager"; asd = "trivial-package-manager"; }); @@ -69056,11 +70128,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-package-manager_dot_test = (build-asdf-system { pname = "trivial-package-manager.test"; - version = "20171227-git"; + version = "20241012-git"; asds = [ "trivial-package-manager.test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-package-manager/2017-12-27/trivial-package-manager-20171227-git.tgz"; - sha256 = "0v61x4wzamilnjyq35ki46zl9443fslv9slwqwlazfknnbp3vcq8"; + url = "http://beta.quicklisp.org/archive/trivial-package-manager/2024-10-12/trivial-package-manager-20241012-git.tgz"; + sha256 = "1q71r9h5xra0bg5c5v2gzjjswfv626gfg9sxn59w645g30xn1sph"; system = "trivial-package-manager.test"; asd = "trivial-package-manager.test"; }); @@ -69152,11 +70224,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-sanitize = (build-asdf-system { pname = "trivial-sanitize"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-sanitize" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-sanitize/2023-10-21/trivial-sanitize-20231021-git.tgz"; - sha256 = "0m8aq5fczrq8fd825vjdvrgbkwzkz9lrl2xkp5lyps6vacgmp9cw"; + url = "http://beta.quicklisp.org/archive/trivial-sanitize/2024-10-12/trivial-sanitize-20241012-git.tgz"; + sha256 = "18pc1diq0mfmr3ql79islv2mfm4y791vg9xwz3dwp8wa912dd93h"; system = "trivial-sanitize"; asd = "trivial-sanitize"; }); @@ -69168,11 +70240,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-sanitize-tests = (build-asdf-system { pname = "trivial-sanitize-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "trivial-sanitize-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-sanitize/2023-10-21/trivial-sanitize-20231021-git.tgz"; - sha256 = "0m8aq5fczrq8fd825vjdvrgbkwzkz9lrl2xkp5lyps6vacgmp9cw"; + url = "http://beta.quicklisp.org/archive/trivial-sanitize/2024-10-12/trivial-sanitize-20241012-git.tgz"; + sha256 = "18pc1diq0mfmr3ql79islv2mfm4y791vg9xwz3dwp8wa912dd93h"; system = "trivial-sanitize-tests"; asd = "trivial-sanitize-tests"; }); @@ -69184,11 +70256,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-shell = (build-asdf-system { pname = "trivial-shell"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "trivial-shell" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-shell/2023-02-14/trivial-shell-20230214-git.tgz"; - sha256 = "0nj6d4adifp8pqzbq82n668vlc0nh7rnx4lbrsrvcx2pkq7i5551"; + url = "http://beta.quicklisp.org/archive/trivial-shell/2024-10-12/trivial-shell-20241012-git.tgz"; + sha256 = "0cqfipcywi1ndl43walw7d54rd7layjq3wv2wpz5rlprv7dhpb2p"; system = "trivial-shell"; asd = "trivial-shell"; }); @@ -69198,11 +70270,11 @@ in lib.makeScope pkgs.newScope (self: { }); trivial-shell-test = (build-asdf-system { pname = "trivial-shell-test"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "trivial-shell-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/trivial-shell/2023-02-14/trivial-shell-20230214-git.tgz"; - sha256 = "0nj6d4adifp8pqzbq82n668vlc0nh7rnx4lbrsrvcx2pkq7i5551"; + url = "http://beta.quicklisp.org/archive/trivial-shell/2024-10-12/trivial-shell-20241012-git.tgz"; + sha256 = "0cqfipcywi1ndl43walw7d54rd7layjq3wv2wpz5rlprv7dhpb2p"; system = "trivial-shell-test"; asd = "trivial-shell-test"; }); @@ -69292,6 +70364,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + trivial-system-loader = (build-asdf-system { + pname = "trivial-system-loader"; + version = "20241012-git"; + asds = [ "trivial-system-loader" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/trivial-system-loader/2024-10-12/trivial-system-loader-20241012-git.tgz"; + sha256 = "094j50asfgyhqcm86p47azviivap0hni2gjp3khdxcn4f9i9d2b0"; + system = "trivial-system-loader"; + asd = "trivial-system-loader"; + }); + systems = [ "trivial-system-loader" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); trivial-tco = (build-asdf-system { pname = "trivial-tco"; version = "20131003-git"; @@ -69372,6 +70460,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + trivial-toplevel-commands = (build-asdf-system { + pname = "trivial-toplevel-commands"; + version = "20241012-git"; + asds = [ "trivial-toplevel-commands" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/trivial-toplevel-commands/2024-10-12/trivial-toplevel-commands-20241012-git.tgz"; + sha256 = "03n0dpzgdgghc7cxj1s19w2wlx6r8f1s983f5a6cix5rigx9r834"; + system = "trivial-toplevel-commands"; + asd = "trivial-toplevel-commands"; + }); + systems = [ "trivial-toplevel-commands" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + trivial-toplevel-prompt = (build-asdf-system { + pname = "trivial-toplevel-prompt"; + version = "20241012-git"; + asds = [ "trivial-toplevel-prompt" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/trivial-toplevel-prompt/2024-10-12/trivial-toplevel-prompt-20241012-git.tgz"; + sha256 = "07gvazwqiw37sic9zz8qnl3gz0b8n4qzrwbmg4wy3rlkps98i4s2"; + system = "trivial-toplevel-prompt"; + asd = "trivial-toplevel-prompt"; + }); + systems = [ "trivial-toplevel-prompt" ]; + lispLibs = [ ]; + meta = { + hydraPlatforms = [ ]; + }; + }); trivial-types = (build-asdf-system { pname = "trivial-types"; version = "20120407-git"; @@ -69878,11 +70998,11 @@ in lib.makeScope pkgs.newScope (self: { }); type-templates = (build-asdf-system { pname = "type-templates"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "type-templates" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/type-templates/2023-10-21/type-templates-20231021-git.tgz"; - sha256 = "1gm9xc3wg7ina7fxh3a2jnn1fm744dk9dx138zl86wrbafwd8wg7"; + url = "http://beta.quicklisp.org/archive/type-templates/2024-10-12/type-templates-20241012-git.tgz"; + sha256 = "1zmz3bmwg8ncqbnjwimn8n7q9ik9arnhd5ijd22ap1nwhbnmk1rj"; system = "type-templates"; asd = "type-templates"; }); @@ -69894,11 +71014,11 @@ in lib.makeScope pkgs.newScope (self: { }); typo = (build-asdf-system { pname = "typo"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "typo" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/typo/2023-10-21/typo-20231021-git.tgz"; - sha256 = "137i9llr7dzhifa4khcnr1pk0scsplp1bxgp0f0xax4g3wk9gby8"; + url = "http://beta.quicklisp.org/archive/typo/2024-10-12/typo-20241012-git.tgz"; + sha256 = "1xgrfj1yxay04zf1ppf56b4j5p1wn67zfhiwpfd30dvk53mcrlik"; system = "typo"; asd = "typo"; }); @@ -69910,11 +71030,11 @@ in lib.makeScope pkgs.newScope (self: { }); typo_dot_test-suite = (build-asdf-system { pname = "typo.test-suite"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "typo.test-suite" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/typo/2023-10-21/typo-20231021-git.tgz"; - sha256 = "137i9llr7dzhifa4khcnr1pk0scsplp1bxgp0f0xax4g3wk9gby8"; + url = "http://beta.quicklisp.org/archive/typo/2024-10-12/typo-20241012-git.tgz"; + sha256 = "1xgrfj1yxay04zf1ppf56b4j5p1wn67zfhiwpfd30dvk53mcrlik"; system = "typo.test-suite"; asd = "typo.test-suite"; }); @@ -69958,11 +71078,11 @@ in lib.makeScope pkgs.newScope (self: { }); uax-15 = (build-asdf-system { pname = "uax-15"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "uax-15" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/uax-15/2022-11-06/uax-15-20221106-git.tgz"; - sha256 = "0kkr3sw3hqsb8ciyn8dzb1cfz260fk1y39vydc98gsfrn6nqh3vw"; + url = "http://beta.quicklisp.org/archive/uax-15/2024-10-12/uax-15-20241012-git.tgz"; + sha256 = "12qkq4r6qv5cn535bwpkq7zfahajlrv8v7661x4wzf4pp0avx7n6"; system = "uax-15"; asd = "uax-15"; }); @@ -70353,22 +71473,6 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); - unicly = (build-asdf-system { - pname = "unicly"; - version = "20210124-git"; - asds = [ "unicly" ]; - src = (createAsd { - url = "http://beta.quicklisp.org/archive/unicly/2021-01-24/unicly-20210124-git.tgz"; - sha256 = "1f29zc1gmnsmb84hbsvacg02bqfiq2mv9wgr0hhf3bjbji5jh5zb"; - system = "unicly"; - asd = "unicly"; - }); - systems = [ "unicly" ]; - lispLibs = [ (getAttr "ironclad" self) (getAttr "split-sequence" self) ]; - meta = { - hydraPlatforms = [ ]; - }; - }); unifgram = (build-asdf-system { pname = "unifgram"; version = "20180228-git"; @@ -70461,11 +71565,11 @@ in lib.makeScope pkgs.newScope (self: { }); unix-sockets = (build-asdf-system { pname = "unix-sockets"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "unix-sockets" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-unix-sockets/2023-06-18/cl-unix-sockets-20230618-git.tgz"; - sha256 = "13v1kv5d862mn8imkcdwhsfxsn1h6f735xqm8kxi5v901c7mdg3w"; + url = "http://beta.quicklisp.org/archive/cl-unix-sockets/2024-10-12/cl-unix-sockets-20241012-git.tgz"; + sha256 = "09l3032p3gavyin1hn45yqv6b3vrg74vzcz85ppqg4nzpmp44845"; system = "unix-sockets"; asd = "unix-sockets"; }); @@ -70477,11 +71581,11 @@ in lib.makeScope pkgs.newScope (self: { }); unix-sockets_dot_tests = (build-asdf-system { pname = "unix-sockets.tests"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "unix-sockets.tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/cl-unix-sockets/2023-06-18/cl-unix-sockets-20230618-git.tgz"; - sha256 = "13v1kv5d862mn8imkcdwhsfxsn1h6f735xqm8kxi5v901c7mdg3w"; + url = "http://beta.quicklisp.org/archive/cl-unix-sockets/2024-10-12/cl-unix-sockets-20241012-git.tgz"; + sha256 = "09l3032p3gavyin1hn45yqv6b3vrg74vzcz85ppqg4nzpmp44845"; system = "unix-sockets.tests"; asd = "unix-sockets.tests"; }); @@ -70573,11 +71677,11 @@ in lib.makeScope pkgs.newScope (self: { }); usocket = (build-asdf-system { pname = "usocket"; - version = "0.8.6"; + version = "0.8.8"; asds = [ "usocket" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/usocket/2023-06-18/usocket-0.8.6.tgz"; - sha256 = "0by8hhg6gijdbq5vjykd374rmvqyikp4synpyk0wjcl7rk3r0vgn"; + url = "http://beta.quicklisp.org/archive/usocket/2024-10-12/usocket-0.8.8.tgz"; + sha256 = "13j2hyl7j06vl8hh3930wd3bi2p0pcg4dcd243al31fgw4m0bvag"; system = "usocket"; asd = "usocket"; }); @@ -70587,11 +71691,11 @@ in lib.makeScope pkgs.newScope (self: { }); usocket-server = (build-asdf-system { pname = "usocket-server"; - version = "0.8.6"; + version = "0.8.8"; asds = [ "usocket-server" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/usocket/2023-06-18/usocket-0.8.6.tgz"; - sha256 = "0by8hhg6gijdbq5vjykd374rmvqyikp4synpyk0wjcl7rk3r0vgn"; + url = "http://beta.quicklisp.org/archive/usocket/2024-10-12/usocket-0.8.8.tgz"; + sha256 = "13j2hyl7j06vl8hh3930wd3bi2p0pcg4dcd243al31fgw4m0bvag"; system = "usocket-server"; asd = "usocket-server"; }); @@ -70601,11 +71705,11 @@ in lib.makeScope pkgs.newScope (self: { }); usocket-test = (build-asdf-system { pname = "usocket-test"; - version = "0.8.6"; + version = "0.8.8"; asds = [ "usocket-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/usocket/2023-06-18/usocket-0.8.6.tgz"; - sha256 = "0by8hhg6gijdbq5vjykd374rmvqyikp4synpyk0wjcl7rk3r0vgn"; + url = "http://beta.quicklisp.org/archive/usocket/2024-10-12/usocket-0.8.8.tgz"; + sha256 = "13j2hyl7j06vl8hh3930wd3bi2p0pcg4dcd243al31fgw4m0bvag"; system = "usocket-test"; asd = "usocket-test"; }); @@ -70615,6 +71719,38 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + utf8-input-stream = (build-asdf-system { + pname = "utf8-input-stream"; + version = "20241012-git"; + asds = [ "utf8-input-stream" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/utf8-input-stream/2024-10-12/utf8-input-stream-20241012-git.tgz"; + sha256 = "06fk8fsz9nngdfjymg93h1l5m4yhfg4w8as68zlaj698xf9ry3i5"; + system = "utf8-input-stream"; + asd = "utf8-input-stream"; + }); + systems = [ "utf8-input-stream" ]; + lispLibs = [ (getAttr "babel" self) (getAttr "trivial-gray-streams" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); + utf8-input-stream_dot_tests = (build-asdf-system { + pname = "utf8-input-stream.tests"; + version = "20241012-git"; + asds = [ "utf8-input-stream.tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/utf8-input-stream/2024-10-12/utf8-input-stream-20241012-git.tgz"; + sha256 = "06fk8fsz9nngdfjymg93h1l5m4yhfg4w8as68zlaj698xf9ry3i5"; + system = "utf8-input-stream.tests"; + asd = "utf8-input-stream.tests"; + }); + systems = [ "utf8-input-stream.tests" ]; + lispLibs = [ (getAttr "fiveam" self) (getAttr "flexi-streams" self) (getAttr "utf8-input-stream" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); utilities_dot_binary-dump = (build-asdf-system { pname = "utilities.binary-dump"; version = "20181210-git"; @@ -70769,6 +71905,22 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "ironclad" self) (getAttr "trivial-utf-8" self) ]; meta = {}; }); + uuidv7 = (build-asdf-system { + pname = "uuidv7"; + version = "20241012-git"; + asds = [ "uuidv7" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/uuidv7.lisp/2024-10-12/uuidv7.lisp-20241012-git.tgz"; + sha256 = "1lirb92a1b3hpf66gndas4yix0smfckg9arzk69lpcvxsidzc66l"; + system = "uuidv7"; + asd = "uuidv7"; + }); + systems = [ "uuidv7" ]; + lispLibs = [ (getAttr "local-time" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); validate-list = (build-asdf-system { pname = "validate-list"; version = "20210411-git"; @@ -70849,11 +72001,11 @@ in lib.makeScope pkgs.newScope (self: { }); varray = (build-asdf-system { pname = "varray"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "varray" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "varray"; asd = "varray"; }); @@ -70925,11 +72077,11 @@ in lib.makeScope pkgs.newScope (self: { }); vellum = (build-asdf-system { pname = "vellum"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "vellum" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vellum/2023-10-21/vellum-20231021-git.tgz"; - sha256 = "1i279h8hwhpbjlqc3r34g8pqxn8kxvi2b3mbszjdv9xar3g50w2g"; + url = "http://beta.quicklisp.org/archive/vellum/2024-10-12/vellum-20241012-git.tgz"; + sha256 = "0qy5hsyy3qf5245n5lfnhsfdjmsdjmwa2d3jp8gr6zg71npfx926"; system = "vellum"; asd = "vellum"; }); @@ -70941,16 +72093,16 @@ in lib.makeScope pkgs.newScope (self: { }); vellum-binary = (build-asdf-system { pname = "vellum-binary"; - version = "20230618-git"; + version = "20241012-git"; asds = [ "vellum-binary" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vellum-binary/2023-06-18/vellum-binary-20230618-git.tgz"; - sha256 = "1mrmxzhqfqrbndsy3pf4ksq3kgg705vdaklf9ayc1vcp49jmy60x"; + url = "http://beta.quicklisp.org/archive/vellum-binary/2024-10-12/vellum-binary-20241012-git.tgz"; + sha256 = "15kv5vzzrf6c3nvibz3p3d9arxmvwska37p5s13g9d2z1k3wyag1"; system = "vellum-binary"; asd = "vellum-binary"; }); systems = [ "vellum-binary" ]; - lispLibs = [ (getAttr "chipz" self) (getAttr "cl-conspack" self) (getAttr "ieee-floats" self) (getAttr "nibbles" self) (getAttr "salza2" self) (getAttr "vellum" self) ]; + lispLibs = [ (getAttr "chipz" self) (getAttr "cl-conspack" self) (getAttr "ieee-floats" self) (getAttr "nibbles" self) (getAttr "salza2" self) (getAttr "trivial-utf-8" self) (getAttr "vellum" self) ]; meta = { hydraPlatforms = [ ]; }; @@ -70973,11 +72125,11 @@ in lib.makeScope pkgs.newScope (self: { }); vellum-csv = (build-asdf-system { pname = "vellum-csv"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "vellum-csv" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vellum-csv/2023-10-21/vellum-csv-20231021-git.tgz"; - sha256 = "1m5sa73gbjpv0lzmzv3qv5xblh0p1fhldgm9yifqa86fj9fhaa0g"; + url = "http://beta.quicklisp.org/archive/vellum-csv/2024-10-12/vellum-csv-20241012-git.tgz"; + sha256 = "0xk4n6w3hsnn8cl34x8vigzmqnkdn04j6831095yyqk7373hvfql"; system = "vellum-csv"; asd = "vellum-csv"; }); @@ -70989,11 +72141,11 @@ in lib.makeScope pkgs.newScope (self: { }); vellum-csv-tests = (build-asdf-system { pname = "vellum-csv-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "vellum-csv-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vellum-csv/2023-10-21/vellum-csv-20231021-git.tgz"; - sha256 = "1m5sa73gbjpv0lzmzv3qv5xblh0p1fhldgm9yifqa86fj9fhaa0g"; + url = "http://beta.quicklisp.org/archive/vellum-csv/2024-10-12/vellum-csv-20241012-git.tgz"; + sha256 = "0xk4n6w3hsnn8cl34x8vigzmqnkdn04j6831095yyqk7373hvfql"; system = "vellum-csv-tests"; asd = "vellum-csv-tests"; }); @@ -71005,11 +72157,11 @@ in lib.makeScope pkgs.newScope (self: { }); vellum-postmodern = (build-asdf-system { pname = "vellum-postmodern"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "vellum-postmodern" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vellum-postmodern/2023-10-21/vellum-postmodern-20231021-git.tgz"; - sha256 = "17rkmls4c2ghp1wgsnq41mcjqmamphwpycd58fwwn07bj45n6ajx"; + url = "http://beta.quicklisp.org/archive/vellum-postmodern/2024-10-12/vellum-postmodern-20241012-git.tgz"; + sha256 = "1q7s57vfcs01nl03kjkyjk9ya68cnl9p6mf1z864imfd04ssy9gr"; system = "vellum-postmodern"; asd = "vellum-postmodern"; }); @@ -71021,11 +72173,11 @@ in lib.makeScope pkgs.newScope (self: { }); vellum-tests = (build-asdf-system { pname = "vellum-tests"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "vellum-tests" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vellum/2023-10-21/vellum-20231021-git.tgz"; - sha256 = "1i279h8hwhpbjlqc3r34g8pqxn8kxvi2b3mbszjdv9xar3g50w2g"; + url = "http://beta.quicklisp.org/archive/vellum/2024-10-12/vellum-20241012-git.tgz"; + sha256 = "0qy5hsyy3qf5245n5lfnhsfdjmsdjmwa2d3jp8gr6zg71npfx926"; system = "vellum-tests"; asd = "vellum-tests"; }); @@ -71053,11 +72205,11 @@ in lib.makeScope pkgs.newScope (self: { }); verbose = (build-asdf-system { pname = "verbose"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "verbose" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/verbose/2023-10-21/verbose-20231021-git.tgz"; - sha256 = "16gfxvhx1xxib9iwxw9s6hkr9nb5cywkm9c5gmgxdcif1iglzlm0"; + url = "http://beta.quicklisp.org/archive/verbose/2024-10-12/verbose-20241012-git.tgz"; + sha256 = "1q0knjk1nlnvlg9kydyxzd4sd2v8vm9dx10zqz2bpihd5nyhz3nv"; system = "verbose"; asd = "verbose"; }); @@ -71085,11 +72237,11 @@ in lib.makeScope pkgs.newScope (self: { }); vernacular = (build-asdf-system { pname = "vernacular"; - version = "20211020-git"; + version = "20241012-git"; asds = [ "vernacular" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vernacular/2021-10-20/vernacular-20211020-git.tgz"; - sha256 = "19vzn28hw4is4sgmvzqin18ds89s0pai21vcm0ky10vmfv6wg745"; + url = "http://beta.quicklisp.org/archive/vernacular/2024-10-12/vernacular-20241012-git.tgz"; + sha256 = "09jz68lms82vxq672pars6hqapvdl4z8z2v1s9kmzvgxm2khw8pw"; system = "vernacular"; asd = "vernacular"; }); @@ -71165,11 +72317,11 @@ in lib.makeScope pkgs.newScope (self: { }); vex = (build-asdf-system { pname = "vex"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "vex" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/april/2023-10-21/april-20231021-git.tgz"; - sha256 = "19f1q7y09mpbs9vw53xnfpdgsvc6y5sqv29fm1jp0rhwb5rl7g34"; + url = "http://beta.quicklisp.org/archive/april/2024-10-12/april-20241012-git.tgz"; + sha256 = "1jb7c9hs8fvx7zm0p0pvsn8r5qsfnf9hr53xnnvcgparfjvxhfxn"; system = "vex"; asd = "vex"; }); @@ -71453,11 +72605,11 @@ in lib.makeScope pkgs.newScope (self: { }); vom = (build-asdf-system { pname = "vom"; - version = "20160825-git"; + version = "20241012-git"; asds = [ "vom" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/vom/2016-08-25/vom-20160825-git.tgz"; - sha256 = "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"; + url = "http://beta.quicklisp.org/archive/vom/2024-10-12/vom-20241012-git.tgz"; + sha256 = "1rnrr69h3j8phm6z3cfagv2bjh71wbzx9acnas9fn33j3q94gr95"; system = "vom"; asd = "vom"; }); @@ -71755,11 +72907,11 @@ in lib.makeScope pkgs.newScope (self: { }); websocket-driver = (build-asdf-system { pname = "websocket-driver"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "websocket-driver" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/websocket-driver/2023-10-21/websocket-driver-20231021-git.tgz"; - sha256 = "107fgcmvpa84b6lld7whgk5dg3pa7l52ca4j2cg5b97bl440cgb3"; + url = "http://beta.quicklisp.org/archive/websocket-driver/2024-10-12/websocket-driver-20241012-git.tgz"; + sha256 = "1lj6xarr62199ladkml7qpgi86w94j4djrp54v9ch0zakni3rhj2"; system = "websocket-driver"; asd = "websocket-driver"; }); @@ -71771,11 +72923,11 @@ in lib.makeScope pkgs.newScope (self: { }); websocket-driver-base = (build-asdf-system { pname = "websocket-driver-base"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "websocket-driver-base" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/websocket-driver/2023-10-21/websocket-driver-20231021-git.tgz"; - sha256 = "107fgcmvpa84b6lld7whgk5dg3pa7l52ca4j2cg5b97bl440cgb3"; + url = "http://beta.quicklisp.org/archive/websocket-driver/2024-10-12/websocket-driver-20241012-git.tgz"; + sha256 = "1lj6xarr62199ladkml7qpgi86w94j4djrp54v9ch0zakni3rhj2"; system = "websocket-driver-base"; asd = "websocket-driver-base"; }); @@ -71787,11 +72939,11 @@ in lib.makeScope pkgs.newScope (self: { }); websocket-driver-client = (build-asdf-system { pname = "websocket-driver-client"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "websocket-driver-client" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/websocket-driver/2023-10-21/websocket-driver-20231021-git.tgz"; - sha256 = "107fgcmvpa84b6lld7whgk5dg3pa7l52ca4j2cg5b97bl440cgb3"; + url = "http://beta.quicklisp.org/archive/websocket-driver/2024-10-12/websocket-driver-20241012-git.tgz"; + sha256 = "1lj6xarr62199ladkml7qpgi86w94j4djrp54v9ch0zakni3rhj2"; system = "websocket-driver-client"; asd = "websocket-driver-client"; }); @@ -71803,11 +72955,11 @@ in lib.makeScope pkgs.newScope (self: { }); websocket-driver-server = (build-asdf-system { pname = "websocket-driver-server"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "websocket-driver-server" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/websocket-driver/2023-10-21/websocket-driver-20231021-git.tgz"; - sha256 = "107fgcmvpa84b6lld7whgk5dg3pa7l52ca4j2cg5b97bl440cgb3"; + url = "http://beta.quicklisp.org/archive/websocket-driver/2024-10-12/websocket-driver-20241012-git.tgz"; + sha256 = "1lj6xarr62199ladkml7qpgi86w94j4djrp54v9ch0zakni3rhj2"; system = "websocket-driver-server"; asd = "websocket-driver-server"; }); @@ -71881,6 +73033,22 @@ in lib.makeScope pkgs.newScope (self: { hydraPlatforms = [ ]; }; }); + whereiseveryone_dot_command-line-args = (build-asdf-system { + pname = "whereiseveryone.command-line-args"; + version = "20241012-git"; + asds = [ "whereiseveryone.command-line-args" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/whereiseveryone.command-line-args/2024-10-12/whereiseveryone.command-line-args-20241012-git.tgz"; + sha256 = "140xnz2v0v3hfg3dp2fhidw8ns6lxd3a5knm07wqdp48ksg119wy"; + system = "whereiseveryone.command-line-args"; + asd = "whereiseveryone.command-line-args"; + }); + systems = [ "whereiseveryone.command-line-args" ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "charje_dot_documentation" self) (getAttr "serapeum" self) (getAttr "str" self) (getAttr "trivia" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); which = (build-asdf-system { pname = "which"; version = "20160421-git"; @@ -71993,11 +73161,11 @@ in lib.makeScope pkgs.newScope (self: { }); winhttp = (build-asdf-system { pname = "winhttp"; - version = "20200610-git"; + version = "20241012-git"; asds = [ "winhttp" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/winhttp/2020-06-10/winhttp-20200610-git.tgz"; - sha256 = "121mpn14kfj86bp4qlc69a139ffrsvgiisa7rax9mvbj361s8dna"; + url = "http://beta.quicklisp.org/archive/winhttp/2024-10-12/winhttp-20241012-git.tgz"; + sha256 = "1g4prr0x2cyc58wcpa3kfiwcs9f536bzfmsnlwnh3yn9aqndg67c"; system = "winhttp"; asd = "winhttp"; }); @@ -72041,11 +73209,11 @@ in lib.makeScope pkgs.newScope (self: { }); with-branching = (build-asdf-system { pname = "with-branching"; - version = "20220220-git"; + version = "20241012-git"; asds = [ "with-branching" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/with-branching/2022-02-20/with-branching-20220220-git.tgz"; - sha256 = "0jaaz2b1k6pbh9hyvvsxp8dn18gqjz24kgri9wazqxyn0n05jpl9"; + url = "http://beta.quicklisp.org/archive/with-branching/2024-10-12/with-branching-20241012-git.tgz"; + sha256 = "0rhmlg1nbbhaa5jflhnydsqs7aqwg8d7ijxxcqa8lkcq49wvm647"; system = "with-branching"; asd = "with-branching"; }); @@ -72105,11 +73273,11 @@ in lib.makeScope pkgs.newScope (self: { }); with-contexts = (build-asdf-system { pname = "with-contexts"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "with-contexts" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/with-contexts/2023-02-14/with-contexts-20230214-git.tgz"; - sha256 = "11cfvsj594nms6652l2vvwgbl6zhk6cp46v0vd1y8b5ygi8fcarm"; + url = "http://beta.quicklisp.org/archive/with-contexts/2024-10-12/with-contexts-20241012-git.tgz"; + sha256 = "1biz33wxg312zsmpyjqfcmq4vnixxz3g4hp9krc61977d5n4fxwj"; system = "with-contexts"; asd = "with-contexts"; }); @@ -72217,25 +73385,25 @@ in lib.makeScope pkgs.newScope (self: { }); woo = (build-asdf-system { pname = "woo"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "woo" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/woo/2023-10-21/woo-20231021-git.tgz"; - sha256 = "0yzphn3c544vxj52z5h5zbvhz4ab3hm5mpsbsa57p0xa1gcm03r5"; + url = "http://beta.quicklisp.org/archive/woo/2024-10-12/woo-20241012-git.tgz"; + sha256 = "0nhxlb1qhkl20vknm44gx0cq5cks33rcljczfhgbnmpkzrdpdrrl"; system = "woo"; asd = "woo"; }); systems = [ "woo" ]; - lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cffi-grovel" self) (getAttr "clack-socket" self) (getAttr "fast-http" self) (getAttr "fast-io" self) (getAttr "lev" self) (getAttr "quri" self) (getAttr "smart-buffer" self) (getAttr "static-vectors" self) (getAttr "swap-bytes" self) (getAttr "trivial-mimes" self) (getAttr "trivial-utf-8" self) (getAttr "vom" self) ]; + lispLibs = [ (getAttr "alexandria" self) (getAttr "bordeaux-threads" self) (getAttr "cffi" self) (getAttr "cffi-grovel" self) (getAttr "cl_plus_ssl" self) (getAttr "clack-socket" self) (getAttr "fast-http" self) (getAttr "fast-io" self) (getAttr "lev" self) (getAttr "quri" self) (getAttr "smart-buffer" self) (getAttr "static-vectors" self) (getAttr "swap-bytes" self) (getAttr "trivial-mimes" self) (getAttr "trivial-utf-8" self) (getAttr "vom" self) ]; meta = {}; }); woo-test = (build-asdf-system { pname = "woo-test"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "woo-test" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/woo/2023-10-21/woo-20231021-git.tgz"; - sha256 = "0yzphn3c544vxj52z5h5zbvhz4ab3hm5mpsbsa57p0xa1gcm03r5"; + url = "http://beta.quicklisp.org/archive/woo/2024-10-12/woo-20241012-git.tgz"; + sha256 = "0nhxlb1qhkl20vknm44gx0cq5cks33rcljczfhgbnmpkzrdpdrrl"; system = "woo-test"; asd = "woo-test"; }); @@ -72483,11 +73651,11 @@ in lib.makeScope pkgs.newScope (self: { }); xhtmlambda = (build-asdf-system { pname = "xhtmlambda"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "xhtmlambda" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/xhtmlambda/2023-02-14/xhtmlambda-20230214-git.tgz"; - sha256 = "0narbzz06ry1wn048avm1fwihvnjvvc4wfcv5hmdazkilpvnqz2y"; + url = "http://beta.quicklisp.org/archive/xhtmlambda/2024-10-12/xhtmlambda-20241012-git.tgz"; + sha256 = "1xqwps5lr66lhqiczvccxrpy8kff15fx6qr9nh1i65wi4p68i1bb"; system = "xhtmlambda"; asd = "xhtmlambda"; }); @@ -72609,11 +73777,11 @@ in lib.makeScope pkgs.newScope (self: { }); xml-emitter = (build-asdf-system { pname = "xml-emitter"; - version = "20221106-git"; + version = "20241012-git"; asds = [ "xml-emitter" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/xml-emitter/2022-11-06/xml-emitter-20221106-git.tgz"; - sha256 = "0yvcrzqz14kx90i6sm7kpi8l8hy61a1yjj0a8wvgryjbgp6abqvc"; + url = "http://beta.quicklisp.org/archive/xml-emitter/2024-10-12/xml-emitter-20241012-git.tgz"; + sha256 = "1q7iygd1v857a3c72kv4zxm9nhx94kkam4p8z5v10q2r2cwfps1w"; system = "xml-emitter"; asd = "xml-emitter"; }); @@ -72855,11 +74023,11 @@ in lib.makeScope pkgs.newScope (self: { }); yason = (build-asdf-system { pname = "yason"; - version = "20230214-git"; + version = "20241012-git"; asds = [ "yason" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/yason/2023-02-14/yason-20230214-git.tgz"; - sha256 = "00iwpdv04rwwb6y63dbgdz4925ih5kl0wc8dy91rsga15cbniqyd"; + url = "http://beta.quicklisp.org/archive/yason/2024-10-12/yason-20241012-git.tgz"; + sha256 = "00hqii9n6ay5cq1ahbqpnw3l3v0mmz5s1f9kn6l35g8zxj1nlpa7"; system = "yason"; asd = "yason"; }); @@ -72867,6 +74035,22 @@ in lib.makeScope pkgs.newScope (self: { lispLibs = [ (getAttr "alexandria" self) (getAttr "trivial-gray-streams" self) ]; meta = {}; }); + yason-tests = (build-asdf-system { + pname = "yason-tests"; + version = "20241012-git"; + asds = [ "yason-tests" ]; + src = (createAsd { + url = "http://beta.quicklisp.org/archive/yason/2024-10-12/yason-20241012-git.tgz"; + sha256 = "00hqii9n6ay5cq1ahbqpnw3l3v0mmz5s1f9kn6l35g8zxj1nlpa7"; + system = "yason-tests"; + asd = "yason-tests"; + }); + systems = [ "yason-tests" ]; + lispLibs = [ (getAttr "unit-test" self) (getAttr "yason" self) ]; + meta = { + hydraPlatforms = [ ]; + }; + }); youtube = (build-asdf-system { pname = "youtube"; version = "20191227-git"; @@ -73077,11 +74261,11 @@ in lib.makeScope pkgs.newScope (self: { }); zippy = (build-asdf-system { pname = "zippy"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "zippy" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/zippy/2023-10-21/zippy-20231021-git.tgz"; - sha256 = "1yvkqdpbsgsij6d7l6g5qdmgxpbq4670kjhv436h4iaxb9xdnz34"; + url = "http://beta.quicklisp.org/archive/zippy/2024-10-12/zippy-20241012-git.tgz"; + sha256 = "06znhzi4zjg2p2858cwnlslqvx28zlmqr9jqij0rkvnn7ysa7qcg"; system = "zippy"; asd = "zippy"; }); @@ -73093,11 +74277,11 @@ in lib.makeScope pkgs.newScope (self: { }); zippy-dwim = (build-asdf-system { pname = "zippy-dwim"; - version = "20231021-git"; + version = "20241012-git"; asds = [ "zippy-dwim" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/zippy/2023-10-21/zippy-20231021-git.tgz"; - sha256 = "1yvkqdpbsgsij6d7l6g5qdmgxpbq4670kjhv436h4iaxb9xdnz34"; + url = "http://beta.quicklisp.org/archive/zippy/2024-10-12/zippy-20241012-git.tgz"; + sha256 = "06znhzi4zjg2p2858cwnlslqvx28zlmqr9jqij0rkvnn7ysa7qcg"; system = "zippy-dwim"; asd = "zippy-dwim"; }); @@ -73205,11 +74389,11 @@ in lib.makeScope pkgs.newScope (self: { }); zpb-ttf = (build-asdf-system { pname = "zpb-ttf"; - version = "release-1.0.6"; + version = "release-1.0.7"; asds = [ "zpb-ttf" ]; src = (createAsd { - url = "http://beta.quicklisp.org/archive/zpb-ttf/2023-06-18/zpb-ttf-release-1.0.6.tgz"; - sha256 = "043xga76jms7dipcwnyh8lkj3gx66cvrkwhc728hjaf7axarvcmv"; + url = "http://beta.quicklisp.org/archive/zpb-ttf/2024-10-12/zpb-ttf-release-1.0.7.tgz"; + sha256 = "04lph7i153zlswvpgg76fxazyswj8j0idqm4ysn8qmflb7xcvd78"; system = "zpb-ttf"; asd = "zpb-ttf"; }); From f24628099dcffd3df287286cd3726a5becb291ba Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 20 Oct 2024 00:18:40 +0200 Subject: [PATCH 53/99] vimPlugins: update on 2024-10-20 --- .../editors/vim/plugins/generated.nix | 170 +++++++++--------- .../patches/ranger.nvim/fix-paths.patch | 29 +-- 2 files changed, 104 insertions(+), 95 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 3b135a0ac326..e77b56b1d9f9 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -631,12 +631,12 @@ final: prev: ale = buildVimPlugin { pname = "ale"; - version = "2024-10-14"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "dense-analysis"; repo = "ale"; - rev = "2e5f135836a700dcc6b787f10097ebdeb8e22abb"; - sha256 = "0nai1872lh4069li7c2s0jk24vf6cql2irx8vi7dybcf7a52rmxb"; + rev = "9854e19fa9f01e5d25a445893ea480f4ac172591"; + sha256 = "0nsnhp86b3y30w7r34nd1ib3m6dr3dx9xbc7hm15k7f2shjwxnss"; }; meta.homepage = "https://github.com/dense-analysis/ale/"; }; @@ -1920,7 +1920,7 @@ final: prev: owner = "GaetanLepage"; repo = "cmp-nixpkgs-maintainers"; rev = "86711e7d3e92097b26e53f0b146b93863176377d"; - sha256 = "sha256-NZuDbrKL/ukLIMxbqVzVgzKkKTnw2Zu1/qD/MTIVO2Q="; + sha256 = "0r1v2lr33zx0zssrpngh74ls8cl3smfajnyc405ykzlbn9p876rm"; }; meta.homepage = "https://github.com/GaetanLepage/cmp-nixpkgs-maintainers/"; }; @@ -2720,12 +2720,12 @@ final: prev: copilot-lua = buildVimPlugin { pname = "copilot.lua"; - version = "2024-09-11"; + version = "2024-10-18"; src = fetchFromGitHub { owner = "zbirenbaum"; repo = "copilot.lua"; - rev = "1a237cf50372830a61d92b0adf00d3b23882e0e1"; - sha256 = "0cjsygqvv2k8lrngln70x1ilb7fmsp812yayxvg3qhc7krc5cz4h"; + rev = "f8d8d872bb319f640d5177dad5fbf01f7a16d7d0"; + sha256 = "1yzfkvqjcmnbkxsdjy81cjal8zqqs9x6ai44ky11z0ly1zcqv3ji"; }; meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; }; @@ -2924,12 +2924,12 @@ final: prev: cyberdream-nvim = buildVimPlugin { pname = "cyberdream.nvim"; - version = "2024-10-17"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "scottmckendry"; repo = "cyberdream.nvim"; - rev = "358f6bfdd06115c139fb5518d3b95688083b7f70"; - sha256 = "0cvsj55jv3aggqkrk611hmhb0kcvy7z6xal5p9af00bql97hqh4a"; + rev = "7e6feb49d2ec47a742215754ec0ecc51eebba55a"; + sha256 = "0ilv916j4wf110fapy25glc99qyps9dajvb1397xz95r6cyqc7ld"; }; meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; }; @@ -4465,12 +4465,12 @@ final: prev: go-nvim = buildVimPlugin { pname = "go.nvim"; - version = "2024-10-14"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "ray-x"; repo = "go.nvim"; - rev = "fb612d13c34d3d1d2caa4d5785733abe70dc22f0"; - sha256 = "1k9vcgwnl1nvgww0mnqpmlf1m7478jbrl34cp5h94z40qxhld05v"; + rev = "51676b430fc9288073769319ba0ccb2a3bcd79c9"; + sha256 = "03aj4fx8s54wihqa2q025kkwvavxivnska1jv73qz0shcbzhbg4s"; }; meta.homepage = "https://github.com/ray-x/go.nvim/"; }; @@ -5390,12 +5390,12 @@ final: prev: jinja-vim = buildVimPlugin { pname = "jinja.vim"; - version = "2024-10-17"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "HiPhish"; repo = "jinja.vim"; - rev = "a6a6477f6f75604ce3df6d870bbfbd8dc176e196"; - sha256 = "095d32c5v8rj5zf86cdasn7xr4qbvrw65mhzh3jj1hq84229bd3k"; + rev = "81c0602f531ceceb20dba9ccb9a04d047a90b200"; + sha256 = "0ngan4pijpxa5273s2s141qr9xdf9cmblwgkwha89sqvv50q6h0s"; fetchSubmodules = true; }; meta.homepage = "https://github.com/HiPhish/jinja.vim/"; @@ -5548,12 +5548,12 @@ final: prev: kulala-nvim = buildVimPlugin { pname = "kulala.nvim"; - version = "2024-10-17"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "mistweaverco"; repo = "kulala.nvim"; - rev = "c1eebbd9ee63e020ab3fdece1e2ec377ce6da096"; - sha256 = "1iz9376w1chzl98743mz654mdbynwm6v0bvqg3klmpl70pj3bp1x"; + rev = "af1de146bf661306789a9f7c546a08ae5b7ff9c8"; + sha256 = "1x5hv1npwd04bfmivkn4m2bri1nngrhlfx8imqqbph7frqhpnv9c"; }; meta.homepage = "https://github.com/mistweaverco/kulala.nvim/"; }; @@ -5656,12 +5656,12 @@ final: prev: lean-nvim = buildVimPlugin { pname = "lean.nvim"; - version = "2024-10-18"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "Julian"; repo = "lean.nvim"; - rev = "e217e5eff207c2136a8c3ff65454a04a9dbc4284"; - sha256 = "06dhmy10yvxvws9dmp6r9ybpi1y9qhxcx5s4xd1k8b5h65ny7ir6"; + rev = "5acde1275e0d278bfe7373243b1f29165f6b213e"; + sha256 = "0ramsr7f7sh8f1q80zi13v0l9qc3jw7iz8xrna0c9swzdc28vrs5"; }; meta.homepage = "https://github.com/Julian/lean.nvim/"; }; @@ -7409,24 +7409,24 @@ final: prev: neoconf-nvim = buildVimPlugin { pname = "neoconf.nvim"; - version = "2024-10-18"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "folke"; repo = "neoconf.nvim"; - rev = "125a2f5cb8689a5a452c34afea9104eaf8fa0a5e"; - sha256 = "1zbrh46qfafbvzxiqkga5ldssdnn0vnvbi2zcrs740prb7psp7wv"; + rev = "a5af8418318f2bcc7513d52b001d68d551bf3b55"; + sha256 = "1vfa38spyl5x5l2p2vaqxiqidrx6lg2sgmwjz95zyv39sjxsal8y"; }; meta.homepage = "https://github.com/folke/neoconf.nvim/"; }; neocord = buildVimPlugin { pname = "neocord"; - version = "2024-04-24"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "IogaMaster"; repo = "neocord"; - rev = "aa7a58023166533da83ca7b11c0d2569e45d7381"; - sha256 = "1x4mddm4ax3chmk996w5dw8rzxa7yap356rc68rq6p3016frsmd1"; + rev = "587e03390a355e9c364d48638e0e0db2a8431d73"; + sha256 = "13b290yd74w23p6mng225nh14pi030ap7ah8lsby7w895335mmg1"; }; meta.homepage = "https://github.com/IogaMaster/neocord/"; }; @@ -7481,12 +7481,12 @@ final: prev: neogit = buildVimPlugin { pname = "neogit"; - version = "2024-10-18"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "NeogitOrg"; repo = "neogit"; - rev = "aa3a343c58c378e91d2457f19952f9f2ee3aacc3"; - sha256 = "05g62dii54b45q94hnirx7s0xqjdq743aq46y57npah6x2lz8zr0"; + rev = "c41a654d6148e1858d98e37cea371993eac0b126"; + sha256 = "0nja882dpdaipvfzpqx8l8jxjpx5nrgqn6rxp54gph73cx8ipqr7"; }; meta.homepage = "https://github.com/NeogitOrg/neogit/"; }; @@ -7748,12 +7748,12 @@ final: prev: neotest-haskell = buildVimPlugin { pname = "neotest-haskell"; - version = "2024-10-13"; + version = "2024-10-20"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "neotest-haskell"; - rev = "6b555ce43d3b9d29f484abf98ccb70e7597a50bb"; - sha256 = "02wrqp854na7k2rxr204ckwc4kvm1pxlsrxknpm60jqinm1fj3i0"; + rev = "19d85cd6c1b99ff4a99c16400d5033150331b4ba"; + sha256 = "17rl29iy8d7gz0vjw3w7wnwirnkx4xpv9w1lbcn4ih2gay4a36by"; }; meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; }; @@ -8312,12 +8312,12 @@ final: prev: nvchad = buildVimPlugin { pname = "nvchad"; - version = "2024-10-16"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "nvchad"; repo = "nvchad"; - rev = "8792679a08c6747ba3f5890a01561442abec6935"; - sha256 = "05f8srjvs2x4ivvg40a2y7ir0jj4z1id8qssmqky217ghqry2778"; + rev = "09dd13e9c6df98fe5609829a7a0fbccea2f515ae"; + sha256 = "1j3354kfgj008nl1r24n2xlvjxaz9jhs1ck0vgbqvkl9smxzf74a"; }; meta.homepage = "https://github.com/nvchad/nvchad/"; }; @@ -8432,12 +8432,12 @@ final: prev: nvim-cmp = buildNeovimPlugin { pname = "nvim-cmp"; - version = "2024-08-01"; + version = "2024-10-20"; src = fetchFromGitHub { owner = "hrsh7th"; repo = "nvim-cmp"; - rev = "ae644feb7b67bf1ce4260c231d1d4300b19c6f30"; - sha256 = "0fk7s6apvq4r9h82jqm5azf1zg9aklyycgh7ivnb98bw9a0ivjim"; + rev = "82bd4b59432d44cf5e2a5ce3a40a037a575a6623"; + sha256 = "0x2n004m0ar8bv4x20qpirld7ih235pm1q39im6cff8rffxf4qwm"; }; meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; }; @@ -8899,12 +8899,12 @@ final: prev: nvim-lspconfig = buildVimPlugin { pname = "nvim-lspconfig"; - version = "2024-10-18"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "neovim"; repo = "nvim-lspconfig"; - rev = "b55b9659de9ac17e05df4787bb023e4c7ef45329"; - sha256 = "0887n4q7z2k9faqd43ki7gpq30dn9vjk217kafj9hwymamqqfmk2"; + rev = "fd49d5863e873891be37afac79b1f56fb34bb5d3"; + sha256 = "0sf9v5dj7hgxrp3d96hqwr8j3my8hmjxz9k0mqipysz0rhl926nb"; }; meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; }; @@ -9175,12 +9175,12 @@ final: prev: nvim-scrollview = buildVimPlugin { pname = "nvim-scrollview"; - version = "2024-10-16"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "dstein64"; repo = "nvim-scrollview"; - rev = "c82821508e50d07fc0696af764fa8604c9f66de8"; - sha256 = "0v5v2m4akjrbi1qcqpjl5bj8wwh3g863mhkj8k8sf922flyh0mxp"; + rev = "f7f611330a8f7cd00dc81538fec369611be678ed"; + sha256 = "1xx5aayjdjc6r8ad3lx70f67nsyi7zi7wclwd4a1zq7rx5j49vn9"; }; meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; }; @@ -9331,12 +9331,12 @@ final: prev: nvim-treesitter = buildVimPlugin { pname = "nvim-treesitter"; - version = "2024-10-18"; + version = "2024-10-20"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter"; - rev = "68b2bdd99d889e9705f7e90ae64d990f3ff03cf3"; - sha256 = "0mwyk0i03dy73djhni55zf3dvlxkx3y4104xhkvlbgp60nl71b1h"; + rev = "9a94cc23cb5499222923bf6119f6199edf84f381"; + sha256 = "1kda4nai5r4xj12v5hg8am6lbg8r0niksij0p62r2jjj9bj4bs63"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; }; @@ -9800,12 +9800,12 @@ final: prev: other-nvim = buildVimPlugin { pname = "other.nvim"; - version = "2024-08-26"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "rgroli"; repo = "other.nvim"; - rev = "252cc279eb3d76685ef48aaeced1c3cf9793581f"; - sha256 = "1jcibj2gdhzqwy6rsgv0x246qv2z4maxd6yawymbs9pmxr05lf3v"; + rev = "64a2f8756468a4d09534a55b98d9d6bf86fa105e"; + sha256 = "0p4asblgwiagxmz3vlk6xblkfqfdnyirplz3haq6xwwy8a0z574m"; }; meta.homepage = "https://github.com/rgroli/other.nvim/"; }; @@ -10077,12 +10077,12 @@ final: prev: poimandres-nvim = buildVimPlugin { pname = "poimandres.nvim"; - version = "2023-08-16"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "olivercederborg"; repo = "poimandres.nvim"; - rev = "77635055e686ae3c8a519198006ff0b43b6b2eae"; - sha256 = "0rnpx5c5pcxr5prpl3642422ggir1vfvll643dj9h21h9k1b12xh"; + rev = "a488957d803943a4201ac3b774913fcafa9e6b3a"; + sha256 = "0jxika4w73hhi17y69lpiwwqfl2a2910s8inyskzfddxam1k8ivk"; }; meta.homepage = "https://github.com/olivercederborg/poimandres.nvim/"; }; @@ -10234,12 +10234,12 @@ final: prev: pum-vim = buildVimPlugin { pname = "pum.vim"; - version = "2024-10-09"; + version = "2024-10-20"; src = fetchFromGitHub { owner = "Shougo"; repo = "pum.vim"; - rev = "b2ca20dedf32b80dd0cbd654770ec3f70841be68"; - sha256 = "1qq0ha1r3yl4m94p83lcy0lrjazajcpnsd2v9rd9y74mznbh93f1"; + rev = "c50cbf602dac65cba30111cf1eddb1eaf39ea448"; + sha256 = "0dnsrxm16avw97c6jirm2mrriyh97lksldq047nbg3ia2g9px58c"; }; meta.homepage = "https://github.com/Shougo/pum.vim/"; }; @@ -10426,12 +10426,12 @@ final: prev: ranger-nvim = buildVimPlugin { pname = "ranger.nvim"; - version = "2024-02-09"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "kelly-lin"; repo = "ranger.nvim"; - rev = "d3b032feee6b3b0cf923222f260523e2bd7f3ad3"; - sha256 = "07c0rri7v0z9hjdj3vqsqjms43y2a9kqqac2s5is7ksz2hqi5yzj"; + rev = "0f06eb92f2a5a618dc0d606d90e634d83e6e6b63"; + sha256 = "0mq7nlz11xnpla7zw6v9bk92xq1jzjmfnchprq4nnbfld44blibx"; }; meta.homepage = "https://github.com/kelly-lin/ranger.nvim/"; }; @@ -10522,12 +10522,12 @@ final: prev: render-markdown-nvim = buildVimPlugin { pname = "render-markdown.nvim"; - version = "2024-10-18"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "MeanderingProgrammer"; repo = "render-markdown.nvim"; - rev = "1871dc4ced6fd775591a63df8e4c343ebaf1a2d2"; - sha256 = "0pjhn4wrbbd7mbkxa6i7ifalf3p41srbabn6likngl8sj4bxdc2h"; + rev = "e1a2289106a9ce5ea1b20b78c90aef4d890950b7"; + sha256 = "15xf4d6fsl68fqv31y6dk3kr2818z4jlc236gdg4kn7mxgyj3azm"; }; meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; }; @@ -11825,12 +11825,12 @@ final: prev: telescope-manix = buildNeovimPlugin { pname = "telescope-manix"; - version = "2024-10-13"; + version = "2024-10-20"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "telescope-manix"; - rev = "b04d358d3c1bf65e1a3b10812c4f0a9f57fb6fc0"; - sha256 = "02b91csvggcw5yln87kbbx7jl7j9h0dl8rd0nlqw77ds0345yvbi"; + rev = "913dbb2894603ca613f4ff6864827c6383395229"; + sha256 = "13qc3cf8w0j67g61scg3jb19fyd6pr30rnmwldsqnfz3k2fdcf7a"; }; meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; }; @@ -12186,12 +12186,12 @@ final: prev: tiny-inline-diagnostic-nvim = buildVimPlugin { pname = "tiny-inline-diagnostic.nvim"; - version = "2024-10-16"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "rachartier"; repo = "tiny-inline-diagnostic.nvim"; - rev = "a4f8b29eb318b507a5e5c11e6d69bea4f5bc2ab2"; - sha256 = "03q8j80ra185jrvxxbj462apvyb86xa25w049xmpf5r1in2bkqsb"; + rev = "ccb67504f93b20f36775d3aad620f9dc9ed98bd9"; + sha256 = "0rhhzf3rza5q7qhk8h320gwhbq7fwajv5gl16yybx2im58vls2l2"; }; meta.homepage = "https://github.com/rachartier/tiny-inline-diagnostic.nvim/"; }; @@ -12367,12 +12367,12 @@ final: prev: triptych-nvim = buildVimPlugin { pname = "triptych.nvim"; - version = "2024-09-27"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "simonmclean"; repo = "triptych.nvim"; - rev = "7fae7598870f5010696fb79427a475ab0232f175"; - sha256 = "1p2x86msjmr3zdamrqwmy1zqlv6nig08fwqj8ddwl4r123dq4ima"; + rev = "ceee8bc858908a0802bcdbf4dfaf8cb732a6877a"; + sha256 = "1djbs2asscbffi4wmapmxyp4wn3jkm12516nhs2lid6cslvig7ih"; fetchSubmodules = true; }; meta.homepage = "https://github.com/simonmclean/triptych.nvim/"; @@ -13748,12 +13748,12 @@ final: prev: vim-dadbod = buildVimPlugin { pname = "vim-dadbod"; - version = "2024-10-15"; + version = "2024-10-18"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-dadbod"; - rev = "b74e49c11707fdfe23d101557dee496496611ab2"; - sha256 = "0iqq3721hx28p51lm6b7irffqglpsxsjjy1h11x7hrhphn8qdn0q"; + rev = "fe5a55e92b2dded7c404006147ef97fb073d8b1b"; + sha256 = "1qy9pm7rwpzk8a5f2a1bqa6fgnkl4y06rqwsrkd3p3396kl1s6f1"; }; meta.homepage = "https://github.com/tpope/vim-dadbod/"; }; @@ -18266,12 +18266,12 @@ final: prev: yazi-nvim = buildVimPlugin { pname = "yazi.nvim"; - version = "2024-10-18"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "mikavilpas"; repo = "yazi.nvim"; - rev = "6a233f7bbdd2aa57a169471cd783c17e48b1be33"; - sha256 = "0b7p3zn0c35gcf5bn41a06rwghn818699jy7qmbpjaqs2nq2ica1"; + rev = "54065a98f27c562484041fd1137118a148468eb1"; + sha256 = "0w8n7ai9inlgbgzp7hfsskcqnxwxsjwr84zpdcy9p3r0cysiskvp"; }; meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; }; @@ -18446,12 +18446,12 @@ final: prev: catppuccin-nvim = buildVimPlugin { pname = "catppuccin-nvim"; - version = "2024-10-05"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "catppuccin"; repo = "nvim"; - rev = "7be452ee067978cdc8b2c5f3411f0c71ffa612b9"; - sha256 = "1zn3z1wyjaiq27635ifx83b4ikix7svq5rvqmyry3ijsrgpp98cg"; + rev = "ea02cc8c3c053c6c1c574e0791d743338e3e788f"; + sha256 = "0z0wff1dd8wh0cqd7yx3d14wcjr80iqqz0s8a3m9nllxp9bqsf65"; }; meta.homepage = "https://github.com/catppuccin/nvim/"; }; @@ -18566,12 +18566,12 @@ final: prev: nvchad-ui = buildVimPlugin { pname = "nvchad-ui"; - version = "2024-10-18"; + version = "2024-10-19"; src = fetchFromGitHub { owner = "nvchad"; repo = "ui"; - rev = "87578bb7e2bc106127f013f9a1edd7a716f4f6c6"; - sha256 = "0jz4wgh67xqlmhn0aqlx7i4v7idbxgbmvgysf0crmwps0i80j4ds"; + rev = "3839b74f58602bec36db8150333c8b09966e42ed"; + sha256 = "1jxc2jr0vg1yca5md124zcvj6ncmqydmz8fhbzmaak5h8fgqy3qi"; }; meta.homepage = "https://github.com/nvchad/ui/"; }; diff --git a/pkgs/applications/editors/vim/plugins/patches/ranger.nvim/fix-paths.patch b/pkgs/applications/editors/vim/plugins/patches/ranger.nvim/fix-paths.patch index 496df312b4c7..b784c10387db 100644 --- a/pkgs/applications/editors/vim/plugins/patches/ranger.nvim/fix-paths.patch +++ b/pkgs/applications/editors/vim/plugins/patches/ranger.nvim/fix-paths.patch @@ -1,17 +1,26 @@ diff --git a/lua/ranger-nvim.lua b/lua/ranger-nvim.lua -index 3b18880..78eb9db 100644 +index be95e36..3bd1587 100644 --- a/lua/ranger-nvim.lua +++ b/lua/ranger-nvim.lua -@@ -109,7 +109,7 @@ local function build_ranger_cmd(select_current_file) - end +@@ -127,7 +127,7 @@ local function build_ranger_cmd(select_current_file) local selectfile_flag = select_current_file and " --selectfile=" .. selected_file or "" - return string.format( -- "ranger --choosefiles=%s %s %s", -+ "@ranger@ --choosefiles=%s %s %s", - SELECTED_FILEPATH, - selectfile_flag, - create_ranger_cmd_flags(create_cmd_values(opts.keybinds)) -@@ -182,7 +182,7 @@ end + if select_current_file then + return string.format( +- "ranger --choosefiles=%s %s %s", ++ "@ranger@ --choosefiles=%s %s %s", + SELECTED_FILEPATH, + selectfile_flag, + create_ranger_cmd_flags(create_cmd_values(opts.keybinds)) +@@ -135,7 +135,7 @@ local function build_ranger_cmd(select_current_file) + else + vim.api.nvim_buf_delete(1, { force = true }) + return string.format( +- "ranger --choosefiles=%s %s %s", ++ "@ranger@ --choosefiles=%s %s %s", + SELECTED_FILEPATH, + create_ranger_cmd_flags(create_cmd_values(opts.keybinds)), + get_absolute_argument() +@@ -209,7 +209,7 @@ end ---Opens ranger and open selected files on exit. ---@param select_current_file boolean|nil open ranger and select the current file. Defaults to true. function M.open(select_current_file) From 4807c2ee418132cf060123037ce3d0b91f816368 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 20 Oct 2024 00:19:12 +0200 Subject: [PATCH 54/99] vimPlugins.nvim-treesitter: update grammars --- .../vim/plugins/nvim-treesitter/generated.nix | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix index 24af8b3672b4..097a8662715e 100644 --- a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix +++ b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix @@ -403,12 +403,12 @@ }; devicetree = buildGrammar { language = "devicetree"; - version = "0.0.0+rev=07a647c"; + version = "0.0.0+rev=16c9cb9"; src = fetchFromGitHub { owner = "joelspadin"; repo = "tree-sitter-devicetree"; - rev = "07a647c8fb70e6b06379a60526721e3141aa2fd2"; - hash = "sha256-2uJEItLwoBoiB49r2XuO216Dhu9AnAa0p7Plmm4JNY8="; + rev = "16c9cb959675bc9bc4f4e5bebe473d511a12a06d"; + hash = "sha256-UVxLF4IKRXexz+PbSlypS/1QsWXkS/iYVbgmFCgjvZM="; }; meta.homepage = "https://github.com/joelspadin/tree-sitter-devicetree"; }; @@ -526,12 +526,12 @@ }; editorconfig = buildGrammar { language = "editorconfig"; - version = "0.0.0+rev=79bb1dc"; + version = "0.0.0+rev=f5b5ac3"; src = fetchFromGitHub { owner = "ValdezFOmar"; repo = "tree-sitter-editorconfig"; - rev = "79bb1dc197d0eb7499843b19d3dd0f9a2ee34d3c"; - hash = "sha256-A58dlaDQBmufKT/yG+At0NN0Op6gbEU47DvHjpzklwg="; + rev = "f5b5ac3f718523fe9d5ee926f64eb177306afdb6"; + hash = "sha256-l5ryC0wINO/oN8FNrngR7QnDAhiX65y0Hw5AExvAfBo="; }; meta.homepage = "https://github.com/ValdezFOmar/tree-sitter-editorconfig"; }; @@ -846,12 +846,12 @@ }; gitcommit = buildGrammar { language = "gitcommit"; - version = "0.0.0+rev=66e2585"; + version = "0.0.0+rev=67ab180"; src = fetchFromGitHub { owner = "gbprod"; repo = "tree-sitter-gitcommit"; - rev = "66e2585f4a3e73e768d42ef1223a5fb0a447bae6"; - hash = "sha256-TZYdYTyDjvbvkuaKORLpQBqkcSCdG7ZSO1Jo64YkJ3o="; + rev = "67ab180883ba5ce3f5b0a5f4288cc6d9f9d83a5d"; + hash = "sha256-5ieeIuUcaky3gWcrCrPXEGzfqom3Kv6rR8CEaWk797k="; }; meta.homepage = "https://github.com/gbprod/tree-sitter-gitcommit"; }; @@ -1364,12 +1364,12 @@ }; json = buildGrammar { language = "json"; - version = "0.0.0+rev=8bfdb43"; + version = "0.0.0+rev=f2503f1"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-json"; - rev = "8bfdb43f47ad805bb1ce093203cfcbaa8ed2c571"; - hash = "sha256-zEuPynGi11vr7UvxC+mgZ+zOJBEVDjxvMwx0dozANn0="; + rev = "f2503f1c437fe24560876557868ac94c9cfd3216"; + hash = "sha256-9tkKDvVB5YHqtIiBqrCRGp4H9MwapC1mHrm86iytiz4="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-json"; }; @@ -1640,24 +1640,24 @@ }; markdown = buildGrammar { language = "markdown"; - version = "0.0.0+rev=b7eba93"; + version = "0.0.0+rev=be81c59"; src = fetchFromGitHub { owner = "MDeiml"; repo = "tree-sitter-markdown"; - rev = "b7eba93e6a3e588e259e831416ac11abdaa8616a"; - hash = "sha256-lOLLHHMmNAtK+RLOSIt0GpeNRiMj3eu9jhSKS0HT370="; + rev = "be81c59efc552bd875650fe078bf6b78d57330ca"; + hash = "sha256-gqZYUJWijD0UQAQeElx/VxAILI2WZtvC/+Eno3AiCTU="; }; location = "tree-sitter-markdown"; meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; }; markdown_inline = buildGrammar { language = "markdown_inline"; - version = "0.0.0+rev=b7eba93"; + version = "0.0.0+rev=be81c59"; src = fetchFromGitHub { owner = "MDeiml"; repo = "tree-sitter-markdown"; - rev = "b7eba93e6a3e588e259e831416ac11abdaa8616a"; - hash = "sha256-lOLLHHMmNAtK+RLOSIt0GpeNRiMj3eu9jhSKS0HT370="; + rev = "be81c59efc552bd875650fe078bf6b78d57330ca"; + hash = "sha256-gqZYUJWijD0UQAQeElx/VxAILI2WZtvC/+Eno3AiCTU="; }; location = "tree-sitter-markdown-inline"; meta.homepage = "https://github.com/MDeiml/tree-sitter-markdown"; @@ -2333,12 +2333,12 @@ }; regex = buildGrammar { language = "regex"; - version = "0.0.0+rev=123552e"; + version = "0.0.0+rev=58f4caf"; src = fetchFromGitHub { owner = "tree-sitter"; repo = "tree-sitter-regex"; - rev = "123552e5849fae9a7c536eac84d471579c7f3328"; - hash = "sha256-qcVZHrhlx66usrG5aapYdyv8Tx2wK4ZivjzsDNLpmsY="; + rev = "58f4caf9db12db3b38b81c77d274aa73c9e85aca"; + hash = "sha256-IeAp2fEdxVf8r/f8B85ex5Y5DL8Z1ZOqovjVyMBIOKM="; }; meta.homepage = "https://github.com/tree-sitter/tree-sitter-regex"; }; @@ -2734,12 +2734,12 @@ }; svelte = buildGrammar { language = "svelte"; - version = "0.0.0+rev=774a65a"; + version = "0.0.0+rev=ae5199d"; src = fetchFromGitHub { owner = "tree-sitter-grammars"; repo = "tree-sitter-svelte"; - rev = "774a65aea563accc35f5d45fafa4d96ec5761f57"; - hash = "sha256-mkw3s0pZQ6ry+fiTk2fJeKVA7Nqyv2Z2R1AFZknzpFM="; + rev = "ae5199db47757f785e43a14b332118a5474de1a2"; + hash = "sha256-cH9h7i6MImw7KlcuVQ6XVKNjd9dFjo93J1JdTWmEpV4="; }; meta.homepage = "https://github.com/tree-sitter-grammars/tree-sitter-svelte"; }; From 52a47323623f5d1c9f19be784ddfdfd744fcf1e2 Mon Sep 17 00:00:00 2001 From: Zhong Jianxin Date: Sun, 20 Oct 2024 00:57:08 +0800 Subject: [PATCH 55/99] vimPlugins.hunk-nvim: Add missing `nui-nvim` dependency --- pkgs/applications/editors/vim/plugins/overrides.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index c4ed286b997a..43d6788e0ac5 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -1112,6 +1112,11 @@ in }; }; + hunk-nvim = super.hunk-nvim.overrideAttrs { + dependencies = with self; [ nui-nvim ]; + nvimRequireCheck = "hunk"; + }; + # https://hurl.dev/ hurl = buildVimPlugin { pname = "hurl"; From 64351475a1d0cda50e6dc2e1b7ae71c700a38e4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 00:49:06 +0200 Subject: [PATCH 56/99] cl-environments: remove override - use version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 7bada7cbd653..4f02495c3888 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -49,17 +49,6 @@ let packages = ql.overrideScope (self: super: { - cl-environments = super.cl-environments.overrideLispAttrs (old: { - patches = old.patches or [] ++ [ - # Needed because SB-INT:TRULY-DYNAMIC-EXTENT has been removed since sbcl 2.3.10. - # The update isn't available on quicklisp yet, but we can fetch from upstream directly - (pkgs.fetchpatch { - url = "https://github.com/alex-gutev/cl-environments/commit/1bd7ecf68adeaf654616c6fb763c1239e0f2e221.patch"; - sha256 = "sha256-i6KdthYqPlJPvxM2c2kossHYvXNhpZHl/7NzELNrOHU="; - }) - ]; - }); - cl-unicode = build-with-compile-into-pwd { inherit (super.cl-unicode) pname version src systems; lispLibs = super.cl-unicode.lispLibs ++ [ self.flexi-streams ]; From b30e7c0e65f84a811039918074107a424bc2e0ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 00:51:36 +0200 Subject: [PATCH 57/99] dissect: remove override - use version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 4f02495c3888..fa8c65c57578 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -54,16 +54,6 @@ let lispLibs = super.cl-unicode.lispLibs ++ [ self.flexi-streams ]; }; - dissect = super.dissect.overrideAttrs { - version = "1.0.0-trunk"; - src = pkgs.fetchFromGitHub { - owner = "Shinmera"; - repo = "dissect"; - rev = "a70cabcd748cf7c041196efd711e2dcca2bbbb2c"; - hash = "sha256-WXv/jbokgKJTc47rBjvOF5npnqDlsyr8oSXIzN/7ofo="; - }; - }; - cl-gobject-introspection = super.cl-gobject-introspection.overrideLispAttrs (o: { postPatch = '' substituteInPlace src/init.lisp \ From ea8c22fd7eb942c659e6afa40decc61756a44b57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 00:52:01 +0200 Subject: [PATCH 58/99] cl-gobject-introspection: remove override - use version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index fa8c65c57578..84fe35dd149b 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -54,13 +54,6 @@ let lispLibs = super.cl-unicode.lispLibs ++ [ self.flexi-streams ]; }; - cl-gobject-introspection = super.cl-gobject-introspection.overrideLispAttrs (o: { - postPatch = '' - substituteInPlace src/init.lisp \ - --replace sb-ext::set-floating-point-modes sb-int:set-floating-point-modes - ''; - }); - jzon = super.com_dot_inuoe_dot_jzon; cl-notify = build-asdf-system { From c13db8a892e4731079d9707ea447e25a24fe14c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 00:52:59 +0200 Subject: [PATCH 59/99] cl-liballegro-nuklear: remove override - use version from quicklisp upstream added the mising cl-liballegro dependency --- pkgs/development/lisp-modules/packages.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 84fe35dd149b..b9014abe9f04 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -9,6 +9,7 @@ let setAttr hasAttr optionals + isDerivation hasSuffix splitString remove @@ -23,7 +24,8 @@ let # E.g. cl-unicode creating .txt files during compilation build-with-compile-into-pwd = args: let - build = (build-asdf-system (args // { version = args.version + "-build"; })) + args' = if isDerivation args then args.drvAttrs else args; + build = (build-asdf-system (args' // { version = args'.version + "-build"; })) .overrideAttrs(o: { buildPhase = with builtins; '' mkdir __fasls @@ -37,7 +39,7 @@ let cp -r * $out ''; }); - in build-asdf-system (args // { + in build-asdf-system (args' // { # Patches are already applied in `build` patches = []; src = build; @@ -71,12 +73,7 @@ let ]; }; - cl-liballegro-nuklear = build-with-compile-into-pwd { - inherit (super.cl-liballegro-nuklear) pname version src; - nativeBuildInputs = [ pkgs.allegro5 ]; - nativeLibs = [ pkgs.allegro5 ]; - lispLibs = super.cl-liballegro-nuklear.lispLibs ++ [ self.cl-liballegro ]; - }; + cl-liballegro-nuklear = build-with-compile-into-pwd super.cl-liballegro-nuklear; lessp = build-asdf-system { pname = "lessp"; From 2ba75d9b949552dfe8982691344ad5ea80241b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 01:03:42 +0200 Subject: [PATCH 60/99] magicl: remove old patch - issue is fixed in quicklisp version --- pkgs/development/lisp-modules/packages.nix | 1 - .../magicl-dont-build-fortran-twice.patch | 21 ------------------- 2 files changed, 22 deletions(-) delete mode 100644 pkgs/development/lisp-modules/patches/magicl-dont-build-fortran-twice.patch diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index b9014abe9f04..7520de0be406 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -235,7 +235,6 @@ let inherit (super.magicl) pname version src lispLibs; nativeBuildInputs = [ pkgs.gfortran ]; nativeLibs = [ pkgs.openblas ]; - patches = [ ./patches/magicl-dont-build-fortran-twice.patch ]; }; cl-glib = build-asdf-system { diff --git a/pkgs/development/lisp-modules/patches/magicl-dont-build-fortran-twice.patch b/pkgs/development/lisp-modules/patches/magicl-dont-build-fortran-twice.patch deleted file mode 100644 index f63b6949b1fd..000000000000 --- a/pkgs/development/lisp-modules/patches/magicl-dont-build-fortran-twice.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- a/magicl.asd -+++ b/magicl.asd -@@ -143,6 +143,7 @@ - (shared-object (make-pathname :type #+darwin "dylib" #-darwin "so" - :name "libexpokit" - :defaults fortran-file))) -+ (unless (probe-file (nn shared-object)) - (uiop:run-program - (list "gfortran" "-fPIC" "-std=legacy" - "-c" -@@ -155,7 +156,7 @@ - (nn object-file) - #+darwin "-lblas" - #+darwin "-llapack")) -- (delete-file object-file)))) -+ (delete-file object-file))))) - - - (asdf:defsystem #:magicl/ext-expokit - -Diff finished. Mon Oct 10 22:03:54 2022 From a6f0fda8da49216603db62210d939c5937abfbcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 01:06:22 +0200 Subject: [PATCH 61/99] cl-glib, cl-glib.gio: use updated versions from quicklisp the latter was renamed upstream --- pkgs/development/lisp-modules/packages.nix | 29 +--------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 7520de0be406..f24f14d34187 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -237,34 +237,7 @@ let nativeLibs = [ pkgs.openblas ]; }; - cl-glib = build-asdf-system { - pname = "cl-glib"; - version = "1.0.0"; - src = pkgs.fetchFromGitHub { - owner = "bohonghuang"; - repo = "cl-glib"; - rev = "84b128192d6b11cf03f1150e474a23368f07edff"; - hash = "sha256-A56Yz+W4n1rAxxZg15zfkrLMbKMEG/zsWqaX7+kx4Qg="; - }; - lispLibs = with self; [ - cl-gobject-introspection-wrapper - bordeaux-threads - ]; - }; - - cl-glib_dot_gio = build-asdf-system { - pname = "cl-glib.gio"; - version = "1.0.0"; - src = pkgs.fetchFromGitHub { - owner = "bohonghuang"; - repo = "cl-glib"; - rev = "84b128192d6b11cf03f1150e474a23368f07edff"; - hash = "sha256-A56Yz+W4n1rAxxZg15zfkrLMbKMEG/zsWqaX7+kx4Qg="; - }; - lispLibs = with self; [ - cl-gobject-introspection-wrapper - ]; - }; + cl-glib_dot_gio = throw "cl-glib_dot_gio was replaced by cl-gio"; cl-gtk4 = build-asdf-system { pname = "cl-gtk4"; From e5b1a1042e2c5d1eead5def339ee0cdeee714a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 01:09:11 +0200 Subject: [PATCH 62/99] cl-gtk4, cl-gtk4.adw, cl-gtk4.webkit2: update to tip of trunk cl-gtk4.webkit2 was updated to work with webkit6 and renamed to cl-gtk4.webkit --- pkgs/development/lisp-modules/packages.nix | 33 ++++++++-------------- 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index f24f14d34187..bced196f266c 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -245,13 +245,14 @@ let src = pkgs.fetchFromGitHub { owner = "bohonghuang"; repo = "cl-gtk4"; - rev = "e18f621b996fd986d9829d590203c690440dee64"; - hash = "sha256-++qydw6db4O3m+DAjutVPN8IuePOxseo9vhWEvwiR6E="; + rev = "ff60e3495cdbba5c09d0bb8aa49f3184cc060c8e"; + hash = "sha256-06cyPf+5z+GE3YvZEJ67kC281nkwRz/hoaykTISsni0="; }; lispLibs = with self; [ cl-gobject-introspection-wrapper cl-glib - cl-glib_dot_gio + cl-gio + cl-gobject ]; nativeBuildInputs = [ pkgs.gobject-introspection @@ -264,13 +265,8 @@ let cl-gtk4_dot_adw = build-asdf-system { pname = "cl-gtk4.adw"; - version = "1.0.0"; - src = pkgs.fetchFromGitHub { - owner = "bohonghuang"; - repo = "cl-gtk4"; - rev = "e18f621b996fd986d9829d590203c690440dee64"; - hash = "sha256-++qydw6db4O3m+DAjutVPN8IuePOxseo9vhWEvwiR6E="; - }; + version = self.cl-gtk4.version; + src = self.cl-gtk4.src; lispLibs = with self; [ cl-gobject-introspection-wrapper cl-gtk4 @@ -283,15 +279,12 @@ let ]; }; - cl-gtk4_dot_webkit2 = build-asdf-system { - pname = "cl-gtk4.webkit2"; - version = "1.0.0"; - src = pkgs.fetchFromGitHub { - owner = "bohonghuang"; - repo = "cl-gtk4"; - rev = "e18f621b996fd986d9829d590203c690440dee64"; - hash = "sha256-++qydw6db4O3m+DAjutVPN8IuePOxseo9vhWEvwiR6E="; - }; + cl-gtk4_dot_webkit2 = throw "cl-gtk4_dot_webkit2 was replaced by cl-gtk4_dot_webkit"; + + cl-gtk4_dot_webkit = build-asdf-system { + pname = "cl-gtk4.webkit"; + version = self.cl-gtk4.version; + src = self.cl-gtk4.src; lispLibs = with self; [ cl-gobject-introspection-wrapper cl-gtk4 @@ -302,8 +295,6 @@ let nativeLibs = [ pkgs.webkitgtk_6_0 ]; - # Requires old webkitgtk_5_0 which was replaced by webkitgtk_6_0 - meta.broken = true; }; cl-avro = build-asdf-system { From 190f9d45d3047048b740650e29c8ea2fc38f1ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 01:11:03 +0200 Subject: [PATCH 63/99] cl-avro: bump to tip of trunk --- pkgs/development/lisp-modules/packages.nix | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index bced196f266c..76073f1da355 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -303,22 +303,12 @@ let src = pkgs.fetchFromGitHub { owner = "SahilKang"; repo = "cl-avro"; - rev = "7d624253e98afb987a01729bd72c99bae02f0d7d"; - hash = "sha256-AlTn+Q1gKnAFEfcnz9+VeHz681pPIirg2za3VXYiNWk="; + rev = "b8fa26320fa0ae88390215140d57f9cca937f691"; + hash = "sha256-acXsotvKWuffrLbrG9YJ8yZc5E6WC8N0qCFCAiX6N0Q="; }; lispLibs = with self; [ - alexandria - babel - chipz - closer-mop - ieee-floats - flexi-streams - local-time - local-time-duration - md5 - salza2 - st-json - time-interval + alexandria babel chipz closer-mop ieee-floats flexi-streams local-time + local-time-duration md5 salza2 st-json time-interval trivial-extensible-sequences ]; }; From 61d8086d868827e6fc7d69a513d7296b7da40af3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 01:13:33 +0200 Subject: [PATCH 64/99] trivial-clock: remove override - use version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 76073f1da355..ad764f48b8ac 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -313,19 +313,6 @@ let ]; }; - trivial-clock = build-asdf-system { - pname = "trivial-clock"; - version = "trunk"; - src = pkgs.fetchFromGitHub { - owner = "ak-coram"; - repo = "cl-trivial-clock"; - rev = "641e12ab1763914996beb1ceee67aabc9f1a3b1e"; - hash = "sha256-mltQEJ2asxyQ/aS/9BuWmN3XZ9bGmmkopcF5YJU1cPk="; - }; - systems = [ "trivial-clock" "trivial-clock/test" ]; - lispLibs = [ self.cffi self.fiveam ]; - }; - frugal-uuid = build-asdf-system { pname = "frugal-uuid"; version = "trunk"; From c812bc90c36d9c6995a4d850211187248249660f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 01:26:54 +0200 Subject: [PATCH 65/99] frugal-uuid: update override for new version in quicklisp --- pkgs/development/lisp-modules/packages.nix | 35 +++++++++------------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index ad764f48b8ac..a56d7966453c 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -313,28 +313,21 @@ let ]; }; - frugal-uuid = build-asdf-system { - pname = "frugal-uuid"; - version = "trunk"; - src = pkgs.fetchFromGitHub { - owner = "ak-coram"; - repo = "cl-frugal-uuid"; - rev = "be27972333a16fc3f16bc7fbf9e3013b2123d75c"; - hash = "sha256-rWO43vWMibF8/OxL70jle5nhd9oRWC7+MI44KWrQD48="; - }; - systems = [ "frugal-uuid" - "frugal-uuid/non-frugal" - "frugal-uuid/benchmark" - "frugal-uuid/test" ]; - lispLibs = with self; [ - babel - bordeaux-threads - fiveam - ironclad - trivial-benchmark - trivial-clock + frugal-uuid = super.frugal-uuid.overrideLispAttrs (o: { + systems = [ + "frugal-uuid" + "frugal-uuid/non-frugal" + "frugal-uuid/benchmark" + "frugal-uuid/test" ]; - }; + lispLibs = o.lispLibs ++ (with self; [ + ironclad + babel + trivial-clock + trivial-benchmark + fiveam + ]); + }); duckdb = build-asdf-system { pname = "duckdb"; From 2c1f56b9615c3b90e4ee24d0437e8c30ab5485f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 02:10:19 +0200 Subject: [PATCH 66/99] cl-duckdb: update override for version in quicklisp --- pkgs/development/lisp-modules/packages.nix | 28 ++-------------------- pkgs/development/lisp-modules/ql.nix | 3 +++ 2 files changed, 5 insertions(+), 26 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index a56d7966453c..f8bbf43ded3a 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -329,33 +329,9 @@ let ]); }); - duckdb = build-asdf-system { - pname = "duckdb"; - version = "trunk"; - src = pkgs.fetchFromGitHub { - owner = "ak-coram"; - repo = "cl-duckdb"; - rev = "3ed1df5ba5c738a0b7fed7aa73632ec86f558d09"; - hash = "sha256-AJMxhtDACe6WTwEOxLsC8y6uBaPqjt8HLRw/eIZI02E="; - }; + duckdb = super.duckdb.overrideLispAttrs (o: { systems = [ "duckdb" "duckdb/test" "duckdb/benchmark" ]; - lispLibs = with self; [ - bordeaux-threads - cffi-libffi - cl-ascii-table - cl-spark - cl-ppcre - frugal-uuid - let-plus - local-time - local-time-duration - periods - float-features - ]; - nativeLibs = with pkgs; [ - duckdb libffi - ]; - }; + }); polyclot = build-asdf-system { pname = "polyclot"; diff --git a/pkgs/development/lisp-modules/ql.nix b/pkgs/development/lisp-modules/ql.nix index 9ce7655903a7..88e3b3b4d274 100644 --- a/pkgs/development/lisp-modules/ql.nix +++ b/pkgs/development/lisp-modules/ql.nix @@ -98,6 +98,9 @@ let sqlite = super.sqlite.overrideLispAttrs (o: { nativeLibs = [ pkgs.sqlite ]; }); + duckdb = super.duckdb.overrideLispAttrs (o: { + nativeLibs = [ pkgs.duckdb ]; + }); cl-libuv = super.cl-libuv.overrideLispAttrs (o: { nativeBuildInputs = [ pkgs.libuv ]; nativeLibs = [ pkgs.libuv ]; From 761dc57aba4b22db33fa1134548414cd906cabf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 02:15:07 +0200 Subject: [PATCH 67/99] polyclot: bump to tip of trunk --- pkgs/development/lisp-modules/packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index f8bbf43ded3a..d26c44527a23 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -337,9 +337,9 @@ let pname = "polyclot"; version = "trunk"; src = pkgs.fetchfossil { - url = "https://fossil.turtleware.eu/polyclot"; - rev = "e678b3c3e002f53b446780406c9ed13f8451309d22a1dc50ced4dbeedf08a1ec"; - sha256 = "sha256-J08bU9HSVbzEivYtQsyIYPZJTrugj+jJSa4LglS0Olg="; + url = "https://fossil.turtleware.eu/fossil.turtleware.eu/polyclot"; + rev = "18500c968b1fc1e2a915b5c70b8cddc4a2b54de51da4eedc5454e42bfea3b479"; + sha256 = "sha256-KgBL1QQN4iG6d8E9GlKAuxSwkrY6Zy7e1ZzEDGKad+A="; }; systems = [ "eu.turtleware.polyclot" "eu.turtleware.polyclot/demo" ]; lispLibs = with self; [ clim mcclim mcclim-layouts ]; From 27cbff0be1e0c05606b3a9ab3923c35a3f998e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 02:16:08 +0200 Subject: [PATCH 68/99] kons-9: bump to tip of trunk --- pkgs/development/lisp-modules/packages.nix | 7 +++--- .../kons-9-fix-testsuite-compilation.patch | 22 +++++++++++++++++++ 2 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/lisp-modules/patches/kons-9-fix-testsuite-compilation.patch diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index d26c44527a23..0de6aaba0b6e 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -351,13 +351,14 @@ let src = pkgs.fetchFromGitHub { owner = "kaveh808"; repo = "kons-9"; - rev = "95ad44fac0566f445c4b7bd040339dcff75ee992"; - sha256 = "19rl7372j9f1cv2kl55r8vyf4dhcz4way4hkjgysbxzrb1psp17n"; + rev = "08770e7fbb839b91fd035f1cd4a50ecc81b42d57"; + sha256 = "sha256-Tit/qmOU5+zp43/ecIXGbh4CtgWzltWM7tHdVWkga0k="; }; systems = [ "kons-9" "kons-9/testsuite" ]; + patches = [ ./patches/kons-9-fix-testsuite-compilation.patch ]; lispLibs = with self; [ closer-mop trivial-main-thread trivial-backtrace cffi cl-opengl cl-glu - cl-glfw3 cl-paths-ttf zpb-ttf cl-vectors origin clobber + cl-glfw3 cl-paths-ttf zpb-ttf cl-vectors origin clobber shasht org_dot_melusina_dot_confidence ]; }; diff --git a/pkgs/development/lisp-modules/patches/kons-9-fix-testsuite-compilation.patch b/pkgs/development/lisp-modules/patches/kons-9-fix-testsuite-compilation.patch new file mode 100644 index 000000000000..afc0a3aa17c9 --- /dev/null +++ b/pkgs/development/lisp-modules/patches/kons-9-fix-testsuite-compilation.patch @@ -0,0 +1,22 @@ +--- a/testsuite/assertions.lisp ++++ b/testsuite/assertions.lisp +@@ -13,7 +13,7 @@ + relation when computing with floating point numbers. Two floating point numbers are + essentially equal when they are in a neighbourhood whose size is based + on the magnitude orders of these floating point numbers and the inaccuracy." +- (:report ++ :report + (lambda (stream) + (flet ((maybe-report (name float1 float2) + (unless (float-is-essentially-equal (p:y point1) (p:y point2) :inaccuracy inaccuracy) +@@ -29,7 +29,7 @@ + inaccuracy (confidence::float-comparison-threshold 'single-float max inaccuracy float1 float2))))) + (maybe-report "X" (p:x point1) (p:x point2)) + (maybe-report "Y" (p:y point1) (p:y point2)) +- (maybe-report "Z" (p:z point1) (p:z point2))))) ++ (maybe-report "Z" (p:z point1) (p:z point2)))) + (and (float-is-essentially-equal (p:x point1) (p:x point2) :inaccuracy inaccuracy) + (float-is-essentially-equal (p:y point1) (p:y point2) :inaccuracy inaccuracy) + (float-is-essentially-equal (p:z point1) (p:z point2) :inaccuracy inaccuracy))) + +Diff finished. Sun Oct 20 03:05:54 2024 From 0b28573954cbb7e8b11334a404acd7e2f2f908c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 02:16:46 +0200 Subject: [PATCH 69/99] sb-cga: remove override - use version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 0de6aaba0b6e..5005877e220f 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -363,18 +363,6 @@ let ]; }; - sb-cga = build-asdf-system { - pname = "sb-cga"; - version = "1.0.1"; - src = pkgs.fetchFromGitHub { - owner = "nikodemus"; - repo = "sb-cga"; - rev = "9a554ea1c01cac998ff7eaa5f767bc5bcdc4c094"; - sha256 = "sha256-iBM+VXu6JRqGmeIFzfXbGot+elvangmfSpDB7DjFpPg"; - }; - lispLibs = [ self.alexandria ]; - }; - nsb-cga = super.nsb-cga.overrideLispAttrs (oa: { lispLibs = oa.lispLibs ++ [ self.sb-cga ]; }); From 8a19a34dd8653509da13301fea9a9f26fe359862 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 10:35:42 +0200 Subject: [PATCH 70/99] misc-extensions: remove override - use version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 5005877e220f..cd26231f263c 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -427,17 +427,6 @@ let meta.mainProgram = "qlot"; }; - misc-extensions = super.misc-extensions.overrideLispAttrs (old: rec { - version = "4.0.3"; - src = pkgs.fetchFromGitLab { - domain = "gitlab.common-lisp.net"; - owner = "misc-extensions"; - repo = "misc-extensions"; - rev = "v${version}"; - hash = "sha256-bDNI4mIaNw/rf7ZwvwolKo6+mUUxsgubGUd/988sHAo="; - }; - }); - fset = super.fset.overrideLispAttrs (old: rec { version = "1.4.0"; src = pkgs.fetchFromGitHub { From 2bcbbf923885355a710b413588d983b7da38eca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 10:37:20 +0200 Subject: [PATCH 71/99] fset: remove override - use version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index cd26231f263c..a1d1630937e0 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -427,19 +427,8 @@ let meta.mainProgram = "qlot"; }; - fset = super.fset.overrideLispAttrs (old: rec { - version = "1.4.0"; - src = pkgs.fetchFromGitHub { - owner = "slburson"; - repo = "fset"; - rev = "v${version}"; - hash = "sha256-alO8Ek5Xpyl5N99/LgyIZ50aoRbY7bKh3XBntFV6Q5k="; - }; - lispLibs = with super; [ - self.misc-extensions - mt19937 - named-readtables - ]; + fset = super.fset.overrideLispAttrs (oa: { + systems = [ "fset" "fset/test" ]; meta = { description = "functional collections library"; homepage = "https://gitlab.common-lisp.net/fset/fset/-/wikis/home"; From fd3e88ed7f82b7d1e81d4b1c2baaead3e5f07c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 10:39:43 +0200 Subject: [PATCH 72/99] coalton: update override to use the version from quicklisp --- pkgs/development/lisp-modules/packages.nix | 31 +++++++++------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index a1d1630937e0..32467f4ac932 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -436,32 +436,25 @@ let }; }); - coalton = build-asdf-system { - pname = "coalton"; - version = "trunk"; - src = pkgs.fetchFromGitHub { - owner = "coalton-lang"; - repo = "coalton"; - rev = "05111b8a59e3f7346b175ce1ec621bff588e1e1f"; - hash = "sha256-L9o7Y3zDx9qLXGe/70c1LWEKUWsSRgBQru66mIuaCFw="; - }; - lispLibs = with super; [ - alexandria - eclector-concrete-syntax-tree - fiasco - float-features - self.fset - named-readtables - trivial-garbage + thih-coalton = self.coalton; + quil-coalton = self.coalton; + coalton = super.coalton.overrideLispAttrs (oa: { + systems = [ + "coalton" + "thih-coalton" + "quil-coalton" + "thih-coalton/tests" + "quil-coalton/tests" + "coalton/tests" ]; + lispLibs = oa.lispLibs ++ [ self.fiasco ]; nativeLibs = [ pkgs.mpfr ]; - systems = [ "coalton" "coalton/tests" ]; meta = { description = "statically typed functional programming language that supercharges Common Lisp"; homepage = "https://coalton-lang.github.io"; license = pkgs.lib.licenses.mit; }; - }; + }); }); From f6b9e011c511c62763400b3f37f45c2a012fd9cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Ga=C5=82kowski?= Date: Sun, 20 Oct 2024 10:43:52 +0200 Subject: [PATCH 73/99] cephes: update override to build with new version from quicklisp embedded binaries are now removed from the source tree before build --- pkgs/development/lisp-modules/nix-cl.nix | 14 +++++++- pkgs/development/lisp-modules/packages.nix | 15 +++++++++ .../lisp-modules/patches/cephes-make.patch | 33 +++++++++---------- 3 files changed, 44 insertions(+), 18 deletions(-) diff --git a/pkgs/development/lisp-modules/nix-cl.nix b/pkgs/development/lisp-modules/nix-cl.nix index 619a6144c5de..eb51c992dcbc 100644 --- a/pkgs/development/lisp-modules/nix-cl.nix +++ b/pkgs/development/lisp-modules/nix-cl.nix @@ -177,15 +177,23 @@ let asdf = "${asdfFasl}/asdf.${faslExt}"; }; - preConfigure = '' + configurePhase = '' + runHook preConfigure + source ${./setup-hook.sh} buildAsdfPath + + runHook postConfigure ''; buildPhase = optionalString (src != null) '' + runHook preBuild + export CL_SOURCE_REGISTRY=$CL_SOURCE_REGISTRY:$src// export ASDF_OUTPUT_TRANSLATIONS="$src:$(pwd):${storeDir}:${storeDir}" ${pkg}/bin/${program} ${toString flags} < $buildScript + + runHook postBuild ''; # Copy compiled files to store @@ -200,6 +208,8 @@ let concatMapStringsSep "\\|" (replaceStrings ["." "+"] ["[.]" "[+]"]) systems; in '' + runHook preInstall + mkdir -pv $out cp -r * $out @@ -207,6 +217,8 @@ let find $out -name "*.asd" \ | grep -v "/\(${mkSystemsRegex systems}\)\.asd$" \ | xargs rm -fv || true + + runHook postInstall ''; dontPatchShebangs = true; diff --git a/pkgs/development/lisp-modules/packages.nix b/pkgs/development/lisp-modules/packages.nix index 32467f4ac932..ea93ef4a4572 100644 --- a/pkgs/development/lisp-modules/packages.nix +++ b/pkgs/development/lisp-modules/packages.nix @@ -28,20 +28,29 @@ let build = (build-asdf-system (args' // { version = args'.version + "-build"; })) .overrideAttrs(o: { buildPhase = with builtins; '' + runHook preBuild + mkdir __fasls export ASDF_OUTPUT_TRANSLATIONS="$(pwd):$(pwd)/__fasls:${storeDir}:${storeDir}" export CL_SOURCE_REGISTRY=$CL_SOURCE_REGISTRY:$(pwd)// ${o.pkg}/bin/${o.program} ${toString (o.flags or [])} < ${o.buildScript} + + runHook postBuild ''; installPhase = '' + runHook preInstall + mkdir -pv $out rm -rf __fasls cp -r * $out + + runHook postInstall ''; }); in build-asdf-system (args' // { # Patches are already applied in `build` patches = []; + postPatch = ""; src = build; }); @@ -151,9 +160,15 @@ let cephes = build-with-compile-into-pwd { inherit (super.cephes) pname version src lispLibs; patches = [ ./patches/cephes-make.patch ]; + postPatch = '' + find \( -name '*.dll' -o -name '*.dylib' -o -name '*.so' \) -delete + ''; postConfigure = '' substituteAllInPlace cephes.asd ''; + postInstall = '' + find $out -name '*.o' -delete + ''; }; clx-truetype = build-asdf-system { diff --git a/pkgs/development/lisp-modules/patches/cephes-make.patch b/pkgs/development/lisp-modules/patches/cephes-make.patch index b67b5f70ad3c..10446972a115 100644 --- a/pkgs/development/lisp-modules/patches/cephes-make.patch +++ b/pkgs/development/lisp-modules/patches/cephes-make.patch @@ -1,22 +1,21 @@ --- a/cephes.asd +++ b/cephes.asd -@@ -5,7 +5,7 @@ - (defclass makefile (source-file) ((type :initform "m"))) - (defmethod perform ((o load-op) (c makefile)) t) - (defmethod perform ((o compile-op) (c makefile)) -- (let* ((lib-dir (system-relative-pathname "cephes" "scipy-cephes")) -+ (let* ((lib-dir #P"@out@/scipy-cephes") - (lib (make-pathname :directory `(:relative ,(namestring lib-dir)) - :name "libmd" - :type #+darwin "dylib" #+(and unix (not darwin)) "so" #+(or windows win32) "dll")) -@@ -14,7 +14,7 @@ - (format *error-output* "Library ~S exists, skipping build" lib) - (format *error-output* "Building ~S~%" lib)) - (unless built -- (chdir (native-namestring lib-dir)) -+ (chdir "scipy-cephes") - (run-program "make" :output t)))) +@@ -16,7 +16,7 @@ + (defclass makefile (source-file) ((type :initform "m"))) + (defmethod perform ((o load-op) (c makefile)) t) + (defmethod perform ((o compile-op) (c makefile)) +- (let* ((lib-dir (system-relative-pathname "cephes" "scipy-cephes/")) ++ (let* ((lib-dir #P"@out@/scipy-cephes/") + (lib (make-pathname :directory (pathname-directory lib-dir) + :name #+(or (and unix (not darwin)) windows win32) "libmd" + #+(and darwin arm64) "libmd-arm64" +@@ -30,7 +30,7 @@ + (format *error-output* "Library ~S exists, skipping build" lib) + (format *error-output* "Building ~S~%" lib)) + (unless built +- (chdir (native-namestring lib-dir)) ++ (chdir "scipy-cephes") + (run-program "make" :output t))))) (defsystem "cephes" -Diff finished. Thu Mar 28 08:13:30 2024 From ef17bb6c886987383a0a238152d13e8e0b6671ea Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sat, 19 Oct 2024 22:09:54 +0200 Subject: [PATCH 74/99] crabfit-frontend: change tests to attrset --- pkgs/by-name/cr/crabfit-frontend/package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/cr/crabfit-frontend/package.nix b/pkgs/by-name/cr/crabfit-frontend/package.nix index f6f3bc8a8c40..ff97835abcee 100644 --- a/pkgs/by-name/cr/crabfit-frontend/package.nix +++ b/pkgs/by-name/cr/crabfit-frontend/package.nix @@ -107,7 +107,9 @@ stdenv.mkDerivation (finalAttrs: { ln -s /var/cache/crabfit $out/standalone/.next/cache ''; - passthru.tests = [ nixosTests.crabfit ]; + passthru.tests = { + inherit (nixosTests) crabfit; + }; meta = { description = "Enter your availability to find a time that works for everyone"; From 15e3636c0fcfb88b776c7e78997bb3c654a79f44 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sat, 19 Oct 2024 22:10:29 +0200 Subject: [PATCH 75/99] crabfit-api: change tests to attrset --- pkgs/by-name/cr/crabfit-api/package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/cr/crabfit-api/package.nix b/pkgs/by-name/cr/crabfit-api/package.nix index eb1eda130e5b..7012a40ea5b2 100644 --- a/pkgs/by-name/cr/crabfit-api/package.nix +++ b/pkgs/by-name/cr/crabfit-api/package.nix @@ -68,7 +68,9 @@ rustPlatform.buildRustPackage rec { PROTOC = "${protobuf}/bin/protoc"; - passthru.tests = [ nixosTests.crabfit ]; + passthru.tests = { + inherit (nixosTests) crabfit; + }; meta = { description = "Enter your availability to find a time that works for everyone"; From d455bca0cd8321a619d0c3a3bb2b9ef3484d1921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Bori?= Date: Thu, 3 Oct 2024 18:17:02 +0200 Subject: [PATCH 76/99] taterclient-ddnet: init at 8.6.0 --- pkgs/by-name/ta/taterclient-ddnet/package.nix | 136 ++++++++++++++++++ pkgs/games/ddnet/default.nix | 5 + 2 files changed, 141 insertions(+) create mode 100644 pkgs/by-name/ta/taterclient-ddnet/package.nix diff --git a/pkgs/by-name/ta/taterclient-ddnet/package.nix b/pkgs/by-name/ta/taterclient-ddnet/package.nix new file mode 100644 index 000000000000..95799e7b64fb --- /dev/null +++ b/pkgs/by-name/ta/taterclient-ddnet/package.nix @@ -0,0 +1,136 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cargo, + cmake, + ninja, + pkg-config, + rustPlatform, + rustc, + curl, + freetype, + libGLU, + libnotify, + libogg, + libX11, + opusfile, + pcre, + python3, + SDL2, + sqlite, + wavpack, + ffmpeg, + x264, + vulkan-headers, + vulkan-loader, + glslang, + spirv-tools, + gtest, + darwin, +}: +let + clientExecutable = "TaterClient-DDNet"; +in +stdenv.mkDerivation (finalAttrs: { + pname = "taterclient-ddnet"; + version = "8.6.0"; + + src = fetchFromGitHub { + owner = "sjrc6"; + repo = "taterclient-ddnet"; + rev = finalAttrs.version; + hash = "sha256-IfTQRMC2wcEH+KhlADHVIhfavlTN4mfTtlN5+/KojA0="; + }; + + cargoDeps = rustPlatform.fetchCargoTarball { + inherit (finalAttrs) pname src version; + hash = "sha256-L6NsLC5hg4/MlTfnOITBNoPIoKxlDx5BwXWnV7W4uT0="; + }; + + nativeBuildInputs = [ + cmake + ninja + pkg-config + rustc + cargo + rustPlatform.cargoSetupHook + ]; + + nativeCheckInputs = [ gtest ]; + + buildInputs = + [ + curl + libnotify + pcre + python3 + sqlite + freetype + libGLU + libogg + opusfile + SDL2 + wavpack + ffmpeg + x264 + vulkan-loader + vulkan-headers + glslang + spirv-tools + ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ libX11 ] + ++ lib.optionals stdenv.hostPlatform.isDarwin ( + with darwin.apple_sdk.frameworks; + [ + Carbon + Cocoa + OpenGL + Security + ] + ); + + postPatch = '' + substituteInPlace src/engine/shared/storage.cpp \ + --replace-fail /usr/ $out/ + ''; + + cmakeFlags = [ + "-DAUTOUPDATE=OFF" + "-DCLIENT=ON" + "-DSERVER=OFF" + "-DTOOLS=OFF" + "-DCLIENT_EXECUTABLE=${clientExecutable}" + ]; + + # Tests loop forever on Darwin for some reason + doCheck = !stdenv.hostPlatform.isDarwin; + checkTarget = "run_tests"; + + preFixup = lib.optionalString stdenv.hostPlatform.isDarwin '' + # Upstream links against /lib while it installs this library in /lib/ddnet + install_name_tool -change "$out/lib/libsteam_api.dylib" "$out/lib/ddnet/libsteam_api.dylib" "$out/bin/${clientExecutable}" + ''; + + postInstall = '' + # Desktop application conflicts with the ddnet package + mv "$out/share/applications/ddnet.desktop" "$out/share/applications/taterclient-ddnet.desktop" + + substituteInPlace $out/share/applications/taterclient-ddnet.desktop \ + --replace-fail "Exec=DDNet" "Exec=${clientExecutable}" \ + --replace-fail "Name=DDNet" "Name=TaterClient (DDNet)" \ + --replace-fail "Comment=Launch DDNet" "Comment=Launch ${clientExecutable}" + ''; + + meta = { + description = "Modification of DDNet teeworlds client"; + homepage = "https://github.com/sjrc6/taterclient-ddnet"; + changelog = "https://github.com/sjrc6/taterclient-ddnet/releases"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ + melon + theobori + ]; + mainProgram = clientExecutable; + }; +}) diff --git a/pkgs/games/ddnet/default.nix b/pkgs/games/ddnet/default.nix index baeabd63ebe4..6cd0c0c2f88b 100644 --- a/pkgs/games/ddnet/default.nix +++ b/pkgs/games/ddnet/default.nix @@ -122,6 +122,11 @@ stdenv.mkDerivation rec { rm -rf $out/share/metainfo ''; + preFixup = lib.optionalString stdenv.hostPlatform.isDarwin '' + # Upstream links against /lib while it installs this library in /lib/ddnet + install_name_tool -change "$out/lib/libsteam_api.dylib" "$out/lib/ddnet/libsteam_api.dylib" "$out/bin/DDNet" + ''; + meta = with lib; { description = "Teeworlds modification with a unique cooperative gameplay"; longDescription = '' From 4fec5df9087951b55334aa3052e47c058c759a6e Mon Sep 17 00:00:00 2001 From: eymeric Date: Sat, 19 Oct 2024 17:01:45 +0200 Subject: [PATCH 77/99] antares: add .desktop file install --- pkgs/by-name/an/antares/package.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/by-name/an/antares/package.nix b/pkgs/by-name/an/antares/package.nix index eea89f2ff8dd..e5cc1e500a47 100644 --- a/pkgs/by-name/an/antares/package.nix +++ b/pkgs/by-name/an/antares/package.nix @@ -4,6 +4,8 @@ buildNpmPackage, electron, nodejs, + makeDesktopItem, + copyDesktopItems, }: buildNpmPackage rec { @@ -28,6 +30,8 @@ buildNpmPackage rec { buildInputs = [ nodejs ]; + nativeBuildInputs = [ copyDesktopItems ]; + npmBuildScript = "compile"; installPhase = '' @@ -38,12 +42,30 @@ buildNpmPackage rec { makeWrapper ${lib.getExe electron} $out/bin/antares \ --add-flags $out/lib/node_modules/antares/main.js runHook postInstall + + # Install icon files + mkdir -pv $out/share/icon/ + cp assets/icon.ico $out/share/icon/antares.ico ''; npmFlags = [ "--legacy-peer-deps" ]; env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; env.PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "1"; + desktopItems = [ + (makeDesktopItem { + name = pname; + desktopName = "Antares SQL"; + exec = pname; + icon = pname; + terminal = false; + type = "Application"; + startupWMClass = pname; + comment = "A modern, fast and productivity driven SQL client with a focus in UX"; + categories = [ "Development" ]; + }) + ]; + meta = with lib; { description = "Modern, fast and productivity driven SQL client with a focus in UX"; homepage = "https://github.com/antares-sql/antares"; From 15e4a3a4b30012ce762563fc0cbd25d5399ab8e7 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Sun, 20 Oct 2024 14:45:40 +0200 Subject: [PATCH 78/99] nnn: add gnused dependency Some runtime operations depend on `sed`. Requiring `gnused` explicitly prevents the use of the insufficient builtin `sed` on Darwin. --- pkgs/applications/file-managers/nnn/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/file-managers/nnn/default.nix b/pkgs/applications/file-managers/nnn/default.nix index 6ad01c156338..39f69c62b2b8 100644 --- a/pkgs/applications/file-managers/nnn/default.nix +++ b/pkgs/applications/file-managers/nnn/default.nix @@ -10,6 +10,7 @@ , which , musl-fts , pcre +, gnused # options , conf ? null , withIcons ? false @@ -60,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optionals withPcre [ "O_PCRE=1" ] ++ extraMakeFlags; - binPath = lib.makeBinPath [ file which ]; + binPath = lib.makeBinPath [ file which gnused ]; installTargets = [ "install" "install-desktop" ]; From 1610ea8a61c4318172800a2c050bb8d2f0eea606 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Sun, 20 Oct 2024 15:01:33 +0200 Subject: [PATCH 79/99] =?UTF-8?q?lychee:=200.15.1=20=E2=86=92=200.16.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - The tagging scheme has changed from "vNN" to "lychee-vNN". - New terminal color tests must be skipped when building the derivation. --- pkgs/tools/networking/lychee/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/lychee/default.nix b/pkgs/tools/networking/lychee/default.nix index 0ecd2a0033c9..29b0c787f4c5 100644 --- a/pkgs/tools/networking/lychee/default.nix +++ b/pkgs/tools/networking/lychee/default.nix @@ -12,16 +12,16 @@ rustPlatform.buildRustPackage rec { pname = "lychee"; - version = "0.15.1"; + version = "0.16.1"; src = fetchFromGitHub { owner = "lycheeverse"; repo = pname; - rev = "v${version}"; - hash = "sha256-L1tvP2lZsFD2swhP1MetQFxxxA+EbrI4aDYTJwbpkVI="; + rev = "lychee-v${version}"; + hash = "sha256-H8iNgyLnzgfUPEVPlDosb6l99efrzM+/RIQ7X7nh4Ks="; }; - cargoHash = "sha256-SQ9Dgtg3TKAaj9XkpEzA13U8CumGOlpwiW+Lv6leQW4="; + cargoHash = "sha256-cvEAy0Tx892dsd4zeh5D0fy4hoNBaZ2Q++IStbMbUhY="; nativeBuildInputs = [ pkg-config ]; @@ -41,6 +41,9 @@ rustPlatform.buildRustPackage rec { "--skip=client::tests" "--skip=collector::tests" "--skip=src/lib.rs" + # Color error for those tests as we are not in a tty + "--skip=formatters::response::color::tests::test_format_response_with_error_status" + "--skip=formatters::response::color::tests::test_format_response_with_ok_status" ]; passthru.tests = { @@ -55,7 +58,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Fast, async, stream-based link checker written in Rust"; homepage = "https://github.com/lycheeverse/lychee"; - downloadPage = "https://github.com/lycheeverse/lychee/releases/tag/v${version}"; + downloadPage = "https://github.com/lycheeverse/lychee/releases/tag/lychee-v${version}"; license = with licenses; [ asl20 mit ]; maintainers = with maintainers; [ totoroot tuxinaut ]; mainProgram = "lychee"; From 06f175167f7670b0db51192702961a9dcdc6cf38 Mon Sep 17 00:00:00 2001 From: Gliczy <129636582+Gliczy@users.noreply.github.com> Date: Sun, 20 Oct 2024 16:48:45 +0200 Subject: [PATCH 80/99] gzdoom: 4.13.0 -> 4.13.1 --- pkgs/by-name/gz/gzdoom/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gz/gzdoom/package.nix b/pkgs/by-name/gz/gzdoom/package.nix index c7d5d81e36b7..5277ad263d78 100644 --- a/pkgs/by-name/gz/gzdoom/package.nix +++ b/pkgs/by-name/gz/gzdoom/package.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation rec { pname = "gzdoom"; - version = "4.13.0"; + version = "4.13.1"; src = fetchFromGitHub { owner = "ZDoom"; repo = "gzdoom"; rev = "g${version}"; fetchSubmodules = true; - hash = "sha256-Cm4ww/QXTzRiSojeGtZ+CwAL2oSxKaTaTLiGkcNjxaE="; + hash = "sha256-pp05tcXFM2NqAPtOtsUprWyV6RE8MQoRSXyp56yELVI="; }; outputs = [ From ed8c856ebfc87f211e60c1699e091c39540e93b1 Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 18:30:58 +0300 Subject: [PATCH 81/99] kdePackages.plasma-workspace: fix substituteAll usage --- pkgs/kde/plasma/plasma-workspace/default.nix | 4 ++-- pkgs/kde/plasma/plasma-workspace/dependency-paths.patch | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/kde/plasma/plasma-workspace/default.nix b/pkgs/kde/plasma/plasma-workspace/default.nix index 2dd596efffa5..6225f7c3b77c 100644 --- a/pkgs/kde/plasma/plasma-workspace/default.nix +++ b/pkgs/kde/plasma/plasma-workspace/default.nix @@ -24,8 +24,8 @@ mkKdeDerivation { patches = [ (substituteAll { src = ./dependency-paths.patch; - dbus-send = lib.getExe' dbus "dbus-send"; - fc-match = lib.getExe' fontconfig "fc-match"; + dbusSend = lib.getExe' dbus "dbus-send"; + fcMatch = lib.getExe' fontconfig "fc-match"; lsof = lib.getExe lsof; qdbus = lib.getExe' qttools "qdbus"; xmessage = lib.getExe xorg.xmessage; diff --git a/pkgs/kde/plasma/plasma-workspace/dependency-paths.patch b/pkgs/kde/plasma/plasma-workspace/dependency-paths.patch index d84e6dda7278..561655dde280 100644 --- a/pkgs/kde/plasma/plasma-workspace/dependency-paths.patch +++ b/pkgs/kde/plasma/plasma-workspace/dependency-paths.patch @@ -46,7 +46,7 @@ index f5034455c9..8ea57813a1 100644 connect(m_proc, &QProcess::readyReadStandardOutput, this, &CFcQuery::data); - m_proc->start(u"fc-match"_s, args); -+ m_proc->start(u"@fc-match@"_s, args); ++ m_proc->start(u"@fcMatch@"_s, args); } void CFcQuery::procExited() @@ -143,5 +143,5 @@ index 1e903130a9..1d807a8526 100644 [Service] Type=oneshot -ExecStart=dbus-send --session --reply-timeout=1 --type=method_call --dest=org.kde.KSplash /KSplash org.kde.KSplash.setStage string:ready -+ExecStart=@dbus-send@ --session --reply-timeout=1 --type=method_call --dest=org.kde.KSplash /KSplash org.kde.KSplash.setStage string:ready ++ExecStart=@dbusSend@ --session --reply-timeout=1 --type=method_call --dest=org.kde.KSplash /KSplash org.kde.KSplash.setStage string:ready Slice=session.slice From 8a9b8cd39e28342b0f051ec139f96b3ab2df7233 Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 18:45:02 +0300 Subject: [PATCH 82/99] isc-cron: fix substituteAll usage --- pkgs/by-name/is/isc-cron/0000-nixpkgs-specific.diff | 4 ++-- pkgs/by-name/is/isc-cron/package.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/is/isc-cron/0000-nixpkgs-specific.diff b/pkgs/by-name/is/isc-cron/0000-nixpkgs-specific.diff index 0bf0a9bd6177..9bf9f89ddee2 100644 --- a/pkgs/by-name/is/isc-cron/0000-nixpkgs-specific.diff +++ b/pkgs/by-name/is/isc-cron/0000-nixpkgs-specific.diff @@ -35,10 +35,10 @@ diff -Naur cron-old/pathnames.h cron-new/pathnames.h +#define _PATH_SENDMAIL "@sendmailPath@" + +#undef _PATH_VI -+#define _PATH_VI "@VIPATH@" ++#define _PATH_VI "@viPath@" + +#undef _PATH_DEFPATH -+#define _PATH_DEFPATH "@DEFPATH@" ++#define _PATH_DEFPATH "@defPath@" + +/* Nixpkgs-specific patch end */ + diff --git a/pkgs/by-name/is/isc-cron/package.nix b/pkgs/by-name/is/isc-cron/package.nix index b52086fca473..61633c6c9c88 100644 --- a/pkgs/by-name/is/isc-cron/package.nix +++ b/pkgs/by-name/is/isc-cron/package.nix @@ -20,8 +20,8 @@ stdenv.mkDerivation (finalAttrs: { (substituteAll { src = ./0000-nixpkgs-specific.diff; inherit sendmailPath; - VIPATH = lib.getExe' vim "vim"; - DEFPATH = lib.concatStringsSep ":" [ + viPath = lib.getExe' vim "vim"; + defPath = lib.concatStringsSep ":" [ "/run/wrappers/bin" "/nix/var/nix/profiles/default/bin" "/run/current-system/sw/bin" From 359cf4b159beb299ad6663bd1c44a3e866e9713d Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 18:51:21 +0300 Subject: [PATCH 83/99] luaformatter: fix substituteAll usage --- pkgs/by-name/lu/luaformatter/fix-lib-paths.patch | 2 +- pkgs/by-name/lu/luaformatter/package.nix | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/lu/luaformatter/fix-lib-paths.patch b/pkgs/by-name/lu/luaformatter/fix-lib-paths.patch index 610a313ca27c..c2931c17628c 100644 --- a/pkgs/by-name/lu/luaformatter/fix-lib-paths.patch +++ b/pkgs/by-name/lu/luaformatter/fix-lib-paths.patch @@ -12,7 +12,7 @@ index 4a21b94..0ac7911 100644 - ${PROJECT_SOURCE_DIR}/third_party/antlr4/runtime/Cpp/runtime/src + @libargs@/include + @catch2@/include -+ @yaml-cpp@/include ++ @yamlCpp@/include + @antlr4RuntimeCpp@/include/antlr4-runtime ${PROJECT_SOURCE_DIR}/src/ ) diff --git a/pkgs/by-name/lu/luaformatter/package.nix b/pkgs/by-name/lu/luaformatter/package.nix index 963d00991bc5..06bb68264588 100644 --- a/pkgs/by-name/lu/luaformatter/package.nix +++ b/pkgs/by-name/lu/luaformatter/package.nix @@ -27,7 +27,8 @@ stdenv.mkDerivation rec { (substituteAll { src = ./fix-lib-paths.patch; antlr4RuntimeCpp = antlr4.runtime.cpp.dev; - inherit libargs catch2 yaml-cpp; + yamlCpp = yaml-cpp; + inherit libargs catch2; }) ]; From 3c7d6adcc82b40d251b5217921019a28e71a4a74 Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 18:51:44 +0300 Subject: [PATCH 84/99] oh-my-fish: fix substituteAll usage --- pkgs/by-name/oh/oh-my-fish/omf-install | 4 ++-- pkgs/by-name/oh/oh-my-fish/package.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/oh/oh-my-fish/omf-install b/pkgs/by-name/oh/oh-my-fish/omf-install index 0b8be218e38a..36cc440e13a0 100644 --- a/pkgs/by-name/oh/oh-my-fish/omf-install +++ b/pkgs/by-name/oh/oh-my-fish/omf-install @@ -1,6 +1,6 @@ #!@runtimeShell@ @fish@/bin/fish \ - @OMF@/share/oh-my-fish/bin/install \ + @omf@/share/oh-my-fish/bin/install \ --noninteractive \ - --offline=@OMF@/share/oh-my-fish + --offline=@omf@/share/oh-my-fish diff --git a/pkgs/by-name/oh/oh-my-fish/package.nix b/pkgs/by-name/oh/oh-my-fish/package.nix index d18465609d91..019979bf9f39 100644 --- a/pkgs/by-name/oh/oh-my-fish/package.nix +++ b/pkgs/by-name/oh/oh-my-fish/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { cp -v ${substituteAll { name = "omf-install"; src = ./omf-install; - OMF = placeholder "out"; + omf = placeholder "out"; inherit fish runtimeShell; }} $out/bin/omf-install From 1f0044428f5ae1c58504e07aed930095c18410dc Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 18:51:57 +0300 Subject: [PATCH 85/99] libsForQt5.libqofono: fix substituteAll usage --- ...01-NixOS-provide-mobile-broadband-provider-info-path.patch | 4 ++-- pkgs/development/libraries/libqofono/default.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libqofono/0001-NixOS-provide-mobile-broadband-provider-info-path.patch b/pkgs/development/libraries/libqofono/0001-NixOS-provide-mobile-broadband-provider-info-path.patch index 94b4c61befe5..825c9e0c3825 100644 --- a/pkgs/development/libraries/libqofono/0001-NixOS-provide-mobile-broadband-provider-info-path.patch +++ b/pkgs/development/libraries/libqofono/0001-NixOS-provide-mobile-broadband-provider-info-path.patch @@ -16,7 +16,7 @@ index b5877ed..455167c 100644 QString provider = providerString; - query.setFocus(QUrl("/usr/share/mobile-broadband-provider-info/serviceproviders.xml")); -+ query.setFocus(QUrl("@mobile-broadband-provider-info@/share/mobile-broadband-provider-info/serviceproviders.xml")); ++ query.setFocus(QUrl("@mobileBroadbandProviderInfo@/share/mobile-broadband-provider-info/serviceproviders.xml")); if (provider.contains("\'")) { provider = provider.replace("\'", "'"); @@ -25,7 +25,7 @@ index b5877ed..455167c 100644 #ifdef QOFONO_PROVISIONING QXmlQuery query; - query.setFocus(QUrl("/usr/share/mobile-broadband-provider-info/serviceproviders.xml")); -+ query.setFocus(QUrl("@mobile-broadband-provider-info@/share/mobile-broadband-provider-info/serviceproviders.xml")); ++ query.setFocus(QUrl("@mobileBroadbandProviderInfo@/share/mobile-broadband-provider-info/serviceproviders.xml")); QString providerStr = provider; if (providerStr.contains("\'")) { diff --git a/pkgs/development/libraries/libqofono/default.nix b/pkgs/development/libraries/libqofono/default.nix index a7d7868f30b3..f337de228a3e 100644 --- a/pkgs/development/libraries/libqofono/default.nix +++ b/pkgs/development/libraries/libqofono/default.nix @@ -23,7 +23,7 @@ mkDerivation rec { patches = [ (substituteAll { src = ./0001-NixOS-provide-mobile-broadband-provider-info-path.patch; - inherit mobile-broadband-provider-info; + mobileBroadbandProviderInfo = mobile-broadband-provider-info; }) ./0001-NixOS-Skip-tests-they-re-shock-full-of-hardcoded-FHS.patch ]; From c46a2c35ab346bdb9015b780a77229b972d7a841 Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 18:52:20 +0300 Subject: [PATCH 86/99] gnomeExtensions.gtk4-desktop-icons-ng-ding: fix substituteAll usage --- pkgs/desktops/gnome/extensions/extensionOverrides.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/gnome/extensions/extensionOverrides.nix b/pkgs/desktops/gnome/extensions/extensionOverrides.nix index ca96a3831325..e45aa28bd526 100644 --- a/pkgs/desktops/gnome/extensions/extensionOverrides.nix +++ b/pkgs/desktops/gnome/extensions/extensionOverrides.nix @@ -103,7 +103,7 @@ super: lib.trivial.pipe super [ nativeBuildInputs = [ wrapGAppsHook3 ]; patches = [ (substituteAll { - inherit gjs util-linux xdg-utils; + inherit gjs; util_linux = util-linux; xdg_utils = xdg-utils; src = ./extensionOverridesPatches/gtk4-ding_at_smedius.gitlab.com.patch; From 05624e48e28d1243aed7b0282f0cfdd9d988a8fd Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 18:31:12 +0300 Subject: [PATCH 87/99] substituteAll: validate arguments So no one can repeat my mistakes. --- .../substitute/substitute-all.nix | 32 ++++++++++++------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/pkgs/build-support/substitute/substitute-all.nix b/pkgs/build-support/substitute/substitute-all.nix index f49d56041f7e..c6fc688d50e6 100644 --- a/pkgs/build-support/substitute/substitute-all.nix +++ b/pkgs/build-support/substitute/substitute-all.nix @@ -1,12 +1,22 @@ -{ stdenvNoCC }: - -args: - +{ lib, stdenvNoCC }: # see the substituteAll in the nixpkgs documentation for usage and constraints -stdenvNoCC.mkDerivation ({ - name = if args ? name then args.name else baseNameOf (toString args.src); - builder = ./substitute-all.sh; - inherit (args) src; - preferLocalBuild = true; - allowSubstitutes = false; -} // args) +args: +let + # keep this in sync with substituteAll + isInvalidArgName = x: builtins.match "^[a-z][a-zA-Z0-9_]*$" x == null; + invalidArgs = builtins.filter isInvalidArgName (builtins.attrNames args); +in + if invalidArgs == [] then + stdenvNoCC.mkDerivation ({ + name = if args ? name then args.name else baseNameOf (toString args.src); + builder = ./substitute-all.sh; + inherit (args) src; + preferLocalBuild = true; + allowSubstitutes = false; + } // args) + else throw '' + Argument names for `pkgs.substituteAll` must: + - start with a lower case ASCII letter + - only contain ASCII letters, digits and underscores + Found invalid argument names: ${lib.concatStringsSep ", " invalidArgs}. + '' From 483114fc47428209e505d48fd3c0be93489e7ecd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 20 Oct 2024 15:56:09 +0000 Subject: [PATCH 88/99] copyq: 9.0.0 -> 9.1.0 --- pkgs/applications/misc/copyq/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/copyq/default.nix b/pkgs/applications/misc/copyq/default.nix index e6b2fabd24e1..e6788abeca52 100644 --- a/pkgs/applications/misc/copyq/default.nix +++ b/pkgs/applications/misc/copyq/default.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation rec { pname = "CopyQ"; - version = "9.0.0"; + version = "9.1.0"; src = fetchFromGitHub { owner = "hluk"; repo = "CopyQ"; rev = "v${version}"; - hash = "sha256-Dxiytspqs4+bcnUM+B3lO8iQp9rrCvMfI+WMFMCtM7g="; + hash = "sha256-WBJyLfiPPEQ/Cj5uuwy9KhVc1kw4Hv5TeEuRFDydlGk="; }; nativeBuildInputs = [ From 8d575db46010cf53a169e930cf05c357722bb102 Mon Sep 17 00:00:00 2001 From: happysalada Date: Sun, 20 Oct 2024 12:21:05 -0400 Subject: [PATCH 89/99] windmill: 1.333.2 -> 1.410.3 --- pkgs/by-name/wi/windmill/Cargo.lock | 4687 +++++++++++++++----------- pkgs/by-name/wi/windmill/package.nix | 99 +- 2 files changed, 2817 insertions(+), 1969 deletions(-) diff --git a/pkgs/by-name/wi/windmill/Cargo.lock b/pkgs/by-name/wi/windmill/Cargo.lock index ee654eade480..89bed47aa103 100644 --- a/pkgs/by-name/wi/windmill/Cargo.lock +++ b/pkgs/by-name/wi/windmill/Cargo.lock @@ -14,9 +14,9 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.21.0" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ "gimli", ] @@ -27,6 +27,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "adler2" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" + [[package]] name = "aes" version = "0.7.5" @@ -34,22 +40,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" dependencies = [ "cfg-if", - "cipher 0.3.0", + "cipher", "cpufeatures", "opaque-debug", ] -[[package]] -name = "aes" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" -dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", -] - [[package]] name = "ahash" version = "0.7.8" @@ -68,6 +63,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" dependencies = [ "cfg-if", + "const-random", "getrandom 0.2.15", "once_cell", "version_check", @@ -121,9 +117,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.14" +version = "0.6.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" +checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" dependencies = [ "anstyle", "anstyle-parse", @@ -136,33 +132,33 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" +checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" [[package]] name = "anstyle-parse" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" +checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.0.3" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" +checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" +checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" dependencies = [ "anstyle", "windows-sys 0.52.0", @@ -170,31 +166,15 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95" [[package]] -name = "archiver-rs" -version = "0.5.1" -source = "git+https://github.com/gz/archiver-rs.git?branch=patch-1#a73cef92c2a5b8f48c2a4a9e889952072e03b4b7" -dependencies = [ - "bzip2", - "flate2", - "tar", - "thiserror", - "xz2", - "zip", -] - -[[package]] -name = "argminmax" -version = "0.6.2" +name = "arc-swap" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52424b59d69d69d5056d508b260553afd91c57e21849579cd1f50ee8b8b88eaa" -dependencies = [ - "num-traits", -] +checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" [[package]] name = "argon2" @@ -205,7 +185,7 @@ dependencies = [ "base64ct", "blake2", "cpufeatures", - "password-hash 0.5.0", + "password-hash", ] [[package]] @@ -224,27 +204,244 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc" [[package]] -name = "array-init-cursor" -version = "0.2.0" +name = "arrayref" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" [[package]] name = "arrayvec" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + +[[package]] +name = "arrow" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05048a8932648b63f21c37d88b552ccc8a65afb6dfe9fc9f30ce79174c2e7a85" +dependencies = [ + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-csv", + "arrow-data", + "arrow-ipc", + "arrow-json", + "arrow-ord", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", +] + +[[package]] +name = "arrow-arith" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d8a57966e43bfe9a3277984a14c24ec617ad874e4c0e1d2a1b083a39cfbf22c" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "half", + "num", +] + +[[package]] +name = "arrow-array" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16f4a9468c882dc66862cef4e1fd8423d47e67972377d85d80e022786427768c" +dependencies = [ + "ahash 0.8.11", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "chrono-tz 0.9.0", + "half", + "hashbrown 0.14.5", + "num", +] + +[[package]] +name = "arrow-buffer" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c975484888fc95ec4a632cdc98be39c085b1bb518531b0c80c5d462063e5daa1" +dependencies = [ + "bytes", + "half", + "num", +] + +[[package]] +name = "arrow-cast" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da26719e76b81d8bc3faad1d4dbdc1bcc10d14704e63dc17fc9f3e7e1e567c8e" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "atoi", + "base64 0.22.1", + "chrono", + "comfy-table", + "half", + "lexical-core", + "num", + "ryu", +] + +[[package]] +name = "arrow-csv" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c13c36dc5ddf8c128df19bab27898eea64bf9da2b555ec1cd17a8ff57fba9ec2" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-schema", + "chrono", + "csv", + "csv-core", + "lazy_static", + "lexical-core", + "regex", +] + +[[package]] +name = "arrow-data" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd9d6f18c65ef7a2573ab498c374d8ae364b4a4edf67105357491c031f716ca5" +dependencies = [ + "arrow-buffer", + "arrow-schema", + "half", + "num", +] + +[[package]] +name = "arrow-ipc" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e786e1cdd952205d9a8afc69397b317cfbb6e0095e445c69cda7e8da5c1eeb0f" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-schema", + "flatbuffers", + "lz4_flex", +] + +[[package]] +name = "arrow-json" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb22284c5a2a01d73cebfd88a33511a3234ab45d66086b2ca2d1228c3498e445" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-schema", + "chrono", + "half", + "indexmap 2.6.0", + "lexical-core", + "num", + "serde", + "serde_json", +] + +[[package]] +name = "arrow-ord" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42745f86b1ab99ef96d1c0bcf49180848a64fe2c7a7a0d945bc64fa2b21ba9bc" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "half", + "num", +] + +[[package]] +name = "arrow-row" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd09a518c602a55bd406bcc291a967b284cfa7a63edfbf8b897ea4748aad23c" +dependencies = [ + "ahash 0.8.11", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "half", +] + +[[package]] +name = "arrow-schema" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e972cd1ff4a4ccd22f86d3e53e835c2ed92e0eea6a3e8eadb72b4f1ac802cf8" + +[[package]] +name = "arrow-select" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "600bae05d43483d216fb3494f8c32fdbefd8aa4e1de237e790dbb3d9f44690a3" +dependencies = [ + "ahash 0.8.11", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "num", +] + +[[package]] +name = "arrow-string" +version = "52.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0dc1985b67cb45f6606a248ac2b4a288849f196bab8c657ea5589f47cdd55e6" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "memchr", + "num", + "regex", + "regex-syntax 0.8.5", +] [[package]] name = "ast_node" -version = "0.9.7" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e521452c6bce47ee5a5461c5e5d707212907826de14124962c58fcaf463115e" +checksum = "f9184f2b369b3e8625712493c89b785881f27eedc6cde480a81883cef78868b2" dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -265,7 +462,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" dependencies = [ "concurrent-queue", - "event-listener-strategy 0.5.2", + "event-listener-strategy", "futures-core", "pin-project-lite", ] @@ -289,27 +486,32 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.10" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c90a406b4495d129f00461241616194cb8a032c8d1c53c657f0961d5f8e0498" +checksum = "103db485efc3e41214fe4fda9f3dbeae2eb9082f48fd236e6095627a9422066e" dependencies = [ - "brotli 6.0.0", + "brotli 7.0.0", + "bzip2", "flate2", "futures-core", + "futures-io", "memchr", "pin-project-lite", "tokio", + "xz2", + "zstd 0.13.2", + "zstd-safe 7.2.1", ] [[package]] name = "async-executor" -version = "1.11.0" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a" +checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" dependencies = [ "async-task", "concurrent-queue", - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-lite 2.3.0", "slab", ] @@ -322,8 +524,8 @@ checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" dependencies = [ "async-channel 2.3.1", "async-executor", - "async-io 2.3.2", - "async-lock 3.3.0", + "async-io", + "async-lock", "blocking", "futures-lite 2.3.0", "once_cell", @@ -331,60 +533,31 @@ dependencies = [ [[package]] name = "async-io" -version = "1.13.0" +version = "2.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" +checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" dependencies = [ - "async-lock 2.8.0", - "autocfg", - "cfg-if", - "concurrent-queue", - "futures-lite 1.13.0", - "log", - "parking", - "polling 2.8.0", - "rustix 0.37.27", - "slab", - "socket2 0.4.10", - "waker-fn", -] - -[[package]] -name = "async-io" -version = "2.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884" -dependencies = [ - "async-lock 3.3.0", + "async-lock", "cfg-if", "concurrent-queue", "futures-io", "futures-lite 2.3.0", "parking", - "polling 3.7.0", - "rustix 0.38.34", + "polling", + "rustix", "slab", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "async-lock" -version = "2.8.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" dependencies = [ - "event-listener 2.5.3", -] - -[[package]] -name = "async-lock" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" -dependencies = [ - "event-listener 4.0.3", - "event-listener-strategy 0.4.0", + "event-listener 5.3.1", + "event-listener-strategy", "pin-project-lite", ] @@ -398,7 +571,7 @@ dependencies = [ "bytes", "http 1.1.0", "rand 0.8.5", - "reqwest 0.12.4", + "reqwest 0.12.8", "serde", "serde-aux", "serde_json", @@ -415,24 +588,24 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "async-std" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" +checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615" dependencies = [ "async-channel 1.9.0", "async-global-executor", - "async-io 1.13.0", - "async-lock 2.8.0", + "async-io", + "async-lock", "crossbeam-utils", "futures-channel", "futures-core", "futures-io", - "futures-lite 1.13.0", + "futures-lite 2.3.0", "gloo-timers", "kv-log-macro", "log", @@ -446,9 +619,9 @@ dependencies = [ [[package]] name = "async-stream" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" dependencies = [ "async-stream-impl", "futures-core", @@ -457,13 +630,13 @@ dependencies = [ [[package]] name = "async-stream-impl" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -477,7 +650,7 @@ dependencies = [ "hex", "hmac", "http-types", - "hyper 0.14.28", + "hyper 0.14.31", "hyper-tls 0.5.0", "serde", "serde_json", @@ -499,13 +672,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.80" +version = "0.1.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" +checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -545,12 +718,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "atoi_simd" -version = "0.15.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9" - [[package]] name = "atomic-waker" version = "1.1.2" @@ -559,15 +726,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "autocfg" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" +checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "aws-config" -version = "1.4.0" +version = "1.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40ddbfb5db93d62521f47b3f223da0884a2f02741ff54cb9cda192a0e73ba08b" +checksum = "7198e6f03240fdceba36656d8be440297b6b82270325908c7381f37d826a74f6" dependencies = [ "aws-credential-types", "aws-runtime", @@ -582,10 +749,9 @@ dependencies = [ "aws-smithy-types", "aws-types", "bytes", - "fastrand 2.1.0", + "fastrand 2.1.1", "hex", "http 0.2.12", - "hyper 0.14.28", "ring 0.17.8", "time", "tokio", @@ -596,9 +762,9 @@ dependencies = [ [[package]] name = "aws-credential-types" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e16838e6c9e12125face1c1eff1343c75e3ff540de98ff7ebd61874a89bcfeb9" +checksum = "60e8f6b615cb5fc60a98132268508ad104310f0cfb25a1c22eee76efdf9154da" dependencies = [ "aws-smithy-async", "aws-smithy-runtime-api", @@ -608,32 +774,34 @@ dependencies = [ [[package]] name = "aws-runtime" -version = "1.2.2" +version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75588e7ee5e8496eed939adac2035a6dbab9f7eb2acdd9ab2d31856dab6f3955" +checksum = "a10d5c055aa540164d9561a0e2e74ad30f0dcf7393c3a92f6733ddf9c5762468" dependencies = [ "aws-credential-types", "aws-sigv4", "aws-smithy-async", "aws-smithy-http", + "aws-smithy-runtime", "aws-smithy-runtime-api", "aws-smithy-types", "aws-types", "bytes", - "fastrand 2.1.0", + "fastrand 2.1.1", "http 0.2.12", "http-body 0.4.6", + "once_cell", "percent-encoding", "pin-project-lite", "tracing", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] name = "aws-sdk-sso" -version = "1.25.0" +version = "1.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fef2d9ca2b43051224ed326ed9960a85e277b7d554a2cd0397e57c0553d86e64" +checksum = "0dc2faec3205d496c7e57eff685dd944203df7ce16a4116d0281c44021788a7b" dependencies = [ "aws-credential-types", "aws-runtime", @@ -653,9 +821,9 @@ dependencies = [ [[package]] name = "aws-sdk-ssooidc" -version = "1.26.0" +version = "1.47.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c869d1f5c4ee7437b79c3c1664ddbf7a60231e893960cf82b2b299a5ccf2cc5d" +checksum = "c93c241f52bc5e0476e259c953234dab7e2a35ee207ee202e86c0095ec4951dc" dependencies = [ "aws-credential-types", "aws-runtime", @@ -675,9 +843,9 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.25.0" +version = "1.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e2b4a632a59e4fab7abf1db0d94a3136ad7871aba46bebd1fdb95c7054afcdb" +checksum = "b259429be94a3459fa1b00c5684faee118d74f9577cc50aebadc36e507c63b5f" dependencies = [ "aws-credential-types", "aws-runtime", @@ -698,9 +866,9 @@ dependencies = [ [[package]] name = "aws-sigv4" -version = "1.2.1" +version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58b56f1cbe6fd4d0c2573df72868f20ab1c125ca9c9dbce17927a463433a2e57" +checksum = "cc8db6904450bafe7473c6ca9123f88cc11089e41a025408f992db4e22d3be68" dependencies = [ "aws-credential-types", "aws-smithy-http", @@ -732,9 +900,9 @@ dependencies = [ [[package]] name = "aws-smithy-http" -version = "0.60.8" +version = "0.60.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a7de001a1b9a25601016d8057ea16e31a45fdca3751304c8edf4ad72e706c08" +checksum = "5c8bc3e8fdc6b8d07d976e301c02fe553f72a39b7a9fea820e023268467d7ab6" dependencies = [ "aws-smithy-runtime-api", "aws-smithy-types", @@ -771,22 +939,23 @@ dependencies = [ [[package]] name = "aws-smithy-runtime" -version = "1.5.0" +version = "1.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9ac79e9f3a4d576f3cd4a470a0275b138d9e7b11b1cd514a6858ae0a79dd5bb" +checksum = "a065c0fe6fdbdf9f11817eb68582b2ab4aff9e9c39e986ae48f7ec576c6322db" dependencies = [ "aws-smithy-async", "aws-smithy-http", "aws-smithy-runtime-api", "aws-smithy-types", "bytes", - "fastrand 2.1.0", + "fastrand 2.1.1", "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", - "http-body 1.0.0", - "hyper 0.14.28", - "hyper-rustls", + "http-body 1.0.1", + "httparse", + "hyper 0.14.31", + "hyper-rustls 0.24.2", "once_cell", "pin-project-lite", "pin-utils", @@ -797,9 +966,9 @@ dependencies = [ [[package]] name = "aws-smithy-runtime-api" -version = "1.6.0" +version = "1.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04ec42c2f5c0e7796a2848dde4d9f3bf8ce12ccbb3d5aa40c52fa0cdd61a1c47" +checksum = "e086682a53d3aa241192aa110fa8dfce98f2f5ac2ead0de84d41582c7e8fdb96" dependencies = [ "aws-smithy-async", "aws-smithy-types", @@ -814,9 +983,9 @@ dependencies = [ [[package]] name = "aws-smithy-types" -version = "1.1.9" +version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf98d97bba6ddaba180f1b1147e202d8fe04940403a95a3f826c790f931bbd1" +checksum = "147100a7bea70fa20ef224a6bad700358305f5dc0f84649c53769761395b355b" dependencies = [ "base64-simd 0.8.0", "bytes", @@ -825,7 +994,7 @@ dependencies = [ "http 0.2.12", "http 1.1.0", "http-body 0.4.6", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", "itoa", "num-integer", @@ -840,42 +1009,41 @@ dependencies = [ [[package]] name = "aws-smithy-xml" -version = "0.60.8" +version = "0.60.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d123fbc2a4adc3c301652ba8e149bf4bc1d1725affb9784eb20c953ace06bf55" +checksum = "ab0b0166827aa700d3dc519f72f8b3a91c35d0b8d042dc5d643a91e6f80648fc" dependencies = [ "xmlparser", ] [[package]] name = "aws-types" -version = "1.2.1" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a807d90cd50a969b3d95e4e7ad1491fcae13c6e83948d8728363ecc09d66343a" +checksum = "5221b91b3e441e6675310829fd8984801b772cb1546ef6c0e54dec9f1ac13fef" dependencies = [ "aws-credential-types", "aws-smithy-async", "aws-smithy-runtime-api", "aws-smithy-types", - "http 0.2.12", - "rustc_version 0.4.0", + "rustc_version 0.4.1", "tracing", ] [[package]] name = "axum" -version = "0.7.5" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" +checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" dependencies = [ "async-trait", "axum-core", "bytes", "futures-util", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", - "hyper 1.3.1", + "hyper 1.5.0", "hyper-util", "itoa", "matchit", @@ -891,7 +1059,7 @@ dependencies = [ "serde_urlencoded", "sync_wrapper 1.0.1", "tokio", - "tower", + "tower 0.5.1", "tower-layer", "tower-service", "tracing", @@ -899,20 +1067,20 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.4.3" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" dependencies = [ "async-trait", "bytes", "futures-util", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", "mime", "pin-project-lite", "rustversion", - "sync_wrapper 0.1.2", + "sync_wrapper 1.0.1", "tower-layer", "tower-service", "tracing", @@ -920,17 +1088,17 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.71" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" dependencies = [ "addr2line", - "cc", "cfg-if", "libc", - "miniz_oxide", + "miniz_oxide 0.8.0", "object", "rustc-demangle", + "windows-targets 0.52.6", ] [[package]] @@ -939,6 +1107,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" +[[package]] +name = "base32" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076" + [[package]] name = "base64" version = "0.13.1" @@ -984,12 +1158,11 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "bb8" -version = "0.8.3" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df7c2093d15d6a1d33b1f972e1c5ea3177748742b97a5f392aa83a65262c6780" +checksum = "d89aabfae550a5c44b43ab941844ffcd2e993cb6900b342debf59e9ea74acdb8" dependencies = [ "async-trait", - "futures-channel", "futures-util", "parking_lot", "tokio", @@ -997,29 +1170,18 @@ dependencies = [ [[package]] name = "better_scoped_tls" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "794edcc9b3fb07bb4aecaa11f093fd45663b4feadb782d68303a2268bc2701de" +checksum = "297b153aa5e573b5863108a6ddc9d5c968bd0b20e75cc614ee9821d2f45679c7" dependencies = [ "scoped-tls", ] [[package]] name = "bigdecimal" -version = "0.3.1" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa" -dependencies = [ - "num-bigint", - "num-integer", - "num-traits", -] - -[[package]] -name = "bigdecimal" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9324c8014cd04590682b34f1e9448d38f0674d0f7b2dc553331016ef0e4e9ebc" +checksum = "51d712318a27c7150326677b321a5fa91b55f6d9034ffd67f20319e147d40cee" dependencies = [ "autocfg", "libm", @@ -1039,27 +1201,45 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.69.4" +version = "0.69.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" +checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "cexpr", "clang-sys", "itertools 0.12.1", "lazy_static", "lazycell", "log", - "prettyplease 0.2.20", + "prettyplease 0.2.24", "proc-macro2", "quote", "regex", - "rustc-hash", + "rustc-hash 1.1.0", "shlex", - "syn 2.0.65", + "syn 2.0.81", "which 4.4.2", ] +[[package]] +name = "bindgen" +version = "0.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f" +dependencies = [ + "bitflags 2.6.0", + "cexpr", + "clang-sys", + "itertools 0.13.0", + "proc-macro2", + "quote", + "regex", + "rustc-hash 1.1.0", + "shlex", + "syn 2.0.81", +] + [[package]] name = "bit-set" version = "0.5.3" @@ -1083,13 +1263,22 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" dependencies = [ "serde", ] +[[package]] +name = "bitpacking" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c1d3e2bfd8d06048a179f7b17afc3188effa10385e7b00dc65af6aae732ea92" +dependencies = [ + "crunchy", +] + [[package]] name = "bitvec" version = "1.0.1" @@ -1111,6 +1300,19 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "blake3" +version = "1.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7" +dependencies = [ + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq", +] + [[package]] name = "block-buffer" version = "0.9.0" @@ -1137,7 +1339,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e" dependencies = [ "block-padding", - "cipher 0.3.0", + "cipher", ] [[package]] @@ -1148,12 +1350,11 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "blocking" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "495f7104e962b7356f0aeb34247aca1fe7d2e783b346582db7f2904cb5717e88" +checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" dependencies = [ "async-channel 2.3.1", - "async-lock 3.3.0", "async-task", "futures-io", "futures-lite 2.3.0", @@ -1162,9 +1363,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbe5b10e214954177fb1dc9fbd20a1a2608fe99e6c832033bdc7cea287a20d77" +checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" dependencies = [ "borsh-derive", "cfg_aliases", @@ -1172,29 +1373,18 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7a8646f94ab393e43e8b35a2558b1624bed28b97ee09c5d15456e3c9463f46d" +checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b" dependencies = [ "once_cell", "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", "syn_derive", ] -[[package]] -name = "brotli" -version = "3.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 2.5.1", -] - [[package]] name = "brotli" version = "6.0.0" @@ -1203,24 +1393,25 @@ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", - "brotli-decompressor 4.0.0", + "brotli-decompressor", ] [[package]] -name = "brotli-decompressor" -version = "2.5.1" +name = "brotli" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" +checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", + "brotli-decompressor", ] [[package]] name = "brotli-decompressor" -version = "4.0.0" +version = "4.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6221fe77a248b9117d431ad93761222e1cf8ff282d9d1d5d9f53d6299a1cf76" +checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -1250,6 +1441,9 @@ name = "bumpalo" version = "3.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" +dependencies = [ + "allocator-api2", +] [[package]] name = "bytecheck" @@ -1275,22 +1469,22 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.16.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5" +checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" dependencies = [ "bytemuck_derive", ] [[package]] name = "bytemuck_derive" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60" +checksum = "bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -1301,9 +1495,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.6.0" +version = "1.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" +checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" [[package]] name = "bytes-utils" @@ -1345,7 +1539,7 @@ dependencies = [ "byteorder", "gemm", "half", - "memmap2 0.9.4", + "memmap2", "num-traits", "num_cpus", "rand 0.8.5", @@ -1405,15 +1599,21 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.98" +version = "1.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f" +checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" dependencies = [ "jobserver", "libc", - "once_cell", + "shlex", ] +[[package]] +name = "census" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0" + [[package]] name = "cexpr" version = "0.6.0" @@ -1431,9 +1631,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cfg_aliases" -version = "0.1.1" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chrono" @@ -1447,18 +1647,7 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-targets 0.52.5", -] - -[[package]] -name = "chrono-tz" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e" -dependencies = [ - "chrono", - "chrono-tz-build 0.2.1", - "phf", + "windows-targets 0.52.6", ] [[package]] @@ -1473,14 +1662,14 @@ dependencies = [ ] [[package]] -name = "chrono-tz-build" -version = "0.2.1" +name = "chrono-tz" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f" +checksum = "cd6dd8046d00723a59a2f8c5f295c515b9bb9a331ee4f8f3d4dd49e428acd3b6" dependencies = [ - "parse-zoneinfo", + "chrono", + "chrono-tz-build 0.4.0", "phf", - "phf_codegen", ] [[package]] @@ -1494,6 +1683,16 @@ dependencies = [ "phf_codegen", ] +[[package]] +name = "chrono-tz-build" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7" +dependencies = [ + "parse-zoneinfo", + "phf_codegen", +] + [[package]] name = "cipher" version = "0.3.0" @@ -1503,21 +1702,11 @@ dependencies = [ "generic-array", ] -[[package]] -name = "cipher" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" -dependencies = [ - "crypto-common", - "inout", -] - [[package]] name = "clang-sys" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", @@ -1526,9 +1715,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.4" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" +checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" dependencies = [ "clap_builder", "clap_derive", @@ -1536,9 +1725,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.2" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" +checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" dependencies = [ "anstream", "anstyle", @@ -1548,36 +1737,36 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.4" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" +checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "clap_lex" -version = "0.7.0" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" +checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "cmake" -version = "0.1.50" +version = "0.1.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" +checksum = "fb1e43aa7fd152b1f968787f7dbcdeb306d1867ff373c69955211876c053f91a" dependencies = [ "cc", ] [[package]] name = "colorchoice" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" +checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" [[package]] name = "combine" @@ -1599,9 +1788,8 @@ version = "7.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7" dependencies = [ - "crossterm", - "strum 0.26.2", - "strum_macros 0.26.2", + "strum 0.26.3", + "strum_macros 0.26.4", "unicode-width", ] @@ -1650,10 +1838,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] -name = "const_format" -version = "0.2.32" +name = "const-random" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673" +checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" +dependencies = [ + "const-random-macro", +] + +[[package]] +name = "const-random-macro" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" +dependencies = [ + "getrandom 0.2.15", + "once_cell", + "tiny-keccak", +] + +[[package]] +name = "const_format" +version = "0.2.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b" dependencies = [ "const_format_proc_macros", "konst", @@ -1661,9 +1869,9 @@ dependencies = [ [[package]] name = "const_format_proc_macros" -version = "0.2.32" +version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500" +checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1" dependencies = [ "proc-macro2", "quote", @@ -1672,9 +1880,9 @@ dependencies = [ [[package]] name = "constant_time_eq" -version = "0.1.5" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" +checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] name = "convert_case" @@ -1730,15 +1938,15 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cpufeatures" -version = "0.2.12" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" dependencies = [ "libc", ] @@ -1843,28 +2051,6 @@ version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" -[[package]] -name = "crossterm" -version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" -dependencies = [ - "bitflags 2.5.0", - "crossterm_winapi", - "libc", - "parking_lot", - "winapi", -] - -[[package]] -name = "crossterm_winapi" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" -dependencies = [ - "winapi", -] - [[package]] name = "crunchy" version = "0.2.2" @@ -1894,18 +2080,38 @@ dependencies = [ ] [[package]] -name = "curve25519-dalek" -version = "4.1.2" +name = "csv" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" +checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" +dependencies = [ + "csv-core", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "csv-core" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" +dependencies = [ + "memchr", +] + +[[package]] +name = "curve25519-dalek" +version = "4.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ "cfg-if", "cpufeatures", "curve25519-dalek-derive", "digest 0.10.7", "fiat-crypto", - "platforms", - "rustc_version 0.4.0", + "rustc_version 0.4.1", "subtle", "zeroize", ] @@ -1918,7 +2124,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -1933,12 +2139,12 @@ dependencies = [ [[package]] name = "darling" -version = "0.20.9" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" dependencies = [ - "darling_core 0.20.9", - "darling_macro 0.20.9", + "darling_core 0.20.10", + "darling_macro 0.20.10", ] [[package]] @@ -1957,16 +2163,16 @@ dependencies = [ [[package]] name = "darling_core" -version = "0.20.9" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -1982,13 +2188,13 @@ dependencies = [ [[package]] name = "darling_macro" -version = "0.20.9" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ - "darling_core 0.20.9", + "darling_core 0.20.10", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -2016,6 +2222,309 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41b319d1b62ffbd002e057f36bebd1f42b9f97927c9577461d855f3513c4289f" +[[package]] +name = "datafusion" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f92d2d7a9cba4580900b32b009848d9eb35f1028ac84cdd6ddcf97612cd0068" +dependencies = [ + "ahash 0.8.11", + "arrow", + "arrow-array", + "arrow-ipc", + "arrow-schema", + "async-compression 0.4.16", + "async-trait", + "bytes", + "bzip2", + "chrono", + "dashmap", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-array", + "datafusion-optimizer", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-sql", + "flate2", + "futures", + "glob", + "half", + "hashbrown 0.14.5", + "indexmap 2.6.0", + "itertools 0.12.1", + "log", + "num_cpus", + "object_store", + "parking_lot", + "parquet", + "paste", + "pin-project-lite", + "rand 0.8.5", + "sqlparser", + "tempfile", + "tokio", + "tokio-util", + "url", + "uuid 1.11.0", + "xz2", + "zstd 0.13.2", +] + +[[package]] +name = "datafusion-common" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "effed030d2c1667eb1e11df5372d4981eaf5d11a521be32220b3985ae5ba6971" +dependencies = [ + "ahash 0.8.11", + "arrow", + "arrow-array", + "arrow-buffer", + "arrow-schema", + "chrono", + "half", + "hashbrown 0.14.5", + "instant", + "libc", + "num_cpus", + "object_store", + "parquet", + "sqlparser", +] + +[[package]] +name = "datafusion-common-runtime" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0091318129dad1359f08e4c6c71f855163c35bba05d1dbf983196f727857894" +dependencies = [ + "tokio", +] + +[[package]] +name = "datafusion-execution" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8385aba84fc4a06d3ebccfbcbf9b4f985e80c762fac634b49079f7cc14933fb1" +dependencies = [ + "arrow", + "chrono", + "dashmap", + "datafusion-common", + "datafusion-expr", + "futures", + "hashbrown 0.14.5", + "log", + "object_store", + "parking_lot", + "rand 0.8.5", + "tempfile", + "url", +] + +[[package]] +name = "datafusion-expr" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebb192f0055d2ce64e38ac100abc18e4e6ae9734d3c28eee522bbbd6a32108a3" +dependencies = [ + "ahash 0.8.11", + "arrow", + "arrow-array", + "arrow-buffer", + "chrono", + "datafusion-common", + "paste", + "serde_json", + "sqlparser", + "strum 0.26.3", + "strum_macros 0.26.4", +] + +[[package]] +name = "datafusion-functions" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27c081ae5b7edd712b92767fb8ed5c0e32755682f8075707666cd70835807c0b" +dependencies = [ + "arrow", + "base64 0.22.1", + "blake2", + "blake3", + "chrono", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "hashbrown 0.14.5", + "hex", + "itertools 0.12.1", + "log", + "md-5 0.10.6", + "rand 0.8.5", + "regex", + "sha2 0.10.8", + "unicode-segmentation", + "uuid 1.11.0", +] + +[[package]] +name = "datafusion-functions-aggregate" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "feb28a4ea52c28a26990646986a27c4052829a2a2572386258679e19263f8b78" +dependencies = [ + "ahash 0.8.11", + "arrow", + "arrow-schema", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "log", + "paste", + "sqlparser", +] + +[[package]] +name = "datafusion-functions-array" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b17c02a74cdc87380a56758ec27e7d417356bf806f33062700908929aedb8a" +dependencies = [ + "arrow", + "arrow-array", + "arrow-buffer", + "arrow-ord", + "arrow-schema", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions", + "itertools 0.12.1", + "log", + "paste", +] + +[[package]] +name = "datafusion-optimizer" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12172f2a6c9eb4992a51e62d709eeba5dedaa3b5369cce37ff6c2260e100ba76" +dependencies = [ + "arrow", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-expr", + "datafusion-physical-expr", + "hashbrown 0.14.5", + "indexmap 2.6.0", + "itertools 0.12.1", + "log", + "regex-syntax 0.8.5", +] + +[[package]] +name = "datafusion-physical-expr" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a3fce531b623e94180f6cd33d620ef01530405751b6ddd2fd96250cdbd78e2e" +dependencies = [ + "ahash 0.8.11", + "arrow", + "arrow-array", + "arrow-buffer", + "arrow-ord", + "arrow-schema", + "arrow-string", + "base64 0.22.1", + "chrono", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate", + "datafusion-physical-expr-common", + "half", + "hashbrown 0.14.5", + "hex", + "indexmap 2.6.0", + "itertools 0.12.1", + "log", + "paste", + "petgraph", + "regex", +] + +[[package]] +name = "datafusion-physical-expr-common" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "046400b6a2cc3ed57a7c576f5ae6aecc77804ac8e0186926b278b189305b2a77" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-expr", + "rand 0.8.5", +] + +[[package]] +name = "datafusion-physical-plan" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4aed47f5a2ad8766260befb375b201592e86a08b260256e168ae4311426a2bff" +dependencies = [ + "ahash 0.8.11", + "arrow", + "arrow-array", + "arrow-buffer", + "arrow-ord", + "arrow-schema", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "futures", + "half", + "hashbrown 0.14.5", + "indexmap 2.6.0", + "itertools 0.12.1", + "log", + "once_cell", + "parking_lot", + "pin-project-lite", + "rand 0.8.5", + "tokio", +] + +[[package]] +name = "datafusion-sql" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fa92bb1fd15e46ce5fb6f1c85f3ac054592560f294429a28e392b5f9cd4255e" +dependencies = [ + "arrow", + "arrow-array", + "arrow-schema", + "datafusion-common", + "datafusion-expr", + "log", + "regex", + "sqlparser", + "strum 0.26.3", +] + [[package]] name = "debug-helper" version = "0.3.13" @@ -2029,23 +2538,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" dependencies = [ "serde", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] name = "deno_ast" -version = "0.33.3" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f61944e781d268799bf65857e664d3c09a37590043d4b0ed10facefc9bea473" +checksum = "b2b9d03b1bbeeecdac54367f075d572131736d06c5be3bc49037855bc5ab1bbb" dependencies = [ - "anyhow", "base64 0.21.7", "deno_media_type", - "deno_terminal", + "deno_terminal 0.1.1", "dprint-swc-ext", "once_cell", "percent-encoding", "serde", + "sourcemap 9.0.0", "swc_atoms", "swc_common", "swc_config", @@ -2068,26 +2577,28 @@ dependencies = [ "swc_visit", "swc_visit_macros", "text_lines", + "thiserror", "unicode-width", "url", ] [[package]] name = "deno_console" -version = "0.138.0" +version = "0.171.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "127f3cd696c88f4304aff28c621403b467e1ea032fef9a68d97224f23f0feca0" +checksum = "144108c8bb93b1df2cda4583d9beb8cd4e18798d3e030af8b07d2c55c1e3259b" dependencies = [ "deno_core", ] [[package]] name = "deno_core" -version = "0.262.0" +version = "0.311.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb0c12fbe4f2c497ff53de92dd698a27d93f8e9c2519ea5684f608cb9f4ef44b" +checksum = "5e09bd55da542fa1fde753aff617c355b5d782e763ab2a19e4371a56d7844cac" dependencies = [ "anyhow", + "bincode", "bit-set", "bit-vec", "bytes", @@ -2097,15 +2608,15 @@ dependencies = [ "deno_unsync", "futures", "libc", - "log", "memoffset", "parking_lot", + "percent-encoding", "pin-project", "serde", "serde_json", "serde_v8", "smallvec", - "sourcemap 7.1.1", + "sourcemap 8.0.1", "static_assertions", "tokio", "url", @@ -2120,22 +2631,35 @@ checksum = "a13951ea98c0a4c372f162d669193b4c9d991512de9f2381dd161027f34b26b1" [[package]] name = "deno_fetch" -version = "0.162.0" +version = "0.195.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bda01ee18545896687663c44c74833b51f1a9c2b1afa5dc9b963174a8639c02" +checksum = "8a91340a1d60cebe1392e4b6e1614709ab5fdcfc1f55842561e498d7ef9b2cb9" dependencies = [ + "base64 0.21.7", "bytes", "data-url", "deno_core", + "deno_permissions", "deno_tls", "dyn-clone", - "http 0.2.12", - "pin-project", - "reqwest 0.11.20", + "error_reporter", + "http 1.1.0", + "http-body-util", + "hyper 1.5.0", + "hyper-rustls 0.27.3", + "hyper-util", + "ipnet", + "percent-encoding", + "rustls-webpki 0.102.8", "serde", "serde_json", "tokio", + "tokio-rustls 0.26.0", + "tokio-socks", "tokio-util", + "tower 0.4.13", + "tower-http 0.6.1", + "tower-service", ] [[package]] @@ -2151,32 +2675,80 @@ dependencies = [ [[package]] name = "deno_native_certs" -version = "0.2.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4785d0bdc13819b665b71e4fb7e119d859568471e4c245ec5610857e70c9345" +checksum = "86bc737e098a45aa5742d51ce694ac7236a1e69fb0d9df8c862e9b4c9583c5f9" dependencies = [ "dlopen2", "dlopen2_derive", "once_cell", - "rustls-native-certs", - "rustls-pemfile 1.0.4", + "rustls-native-certs 0.7.3", + "rustls-pemfile 2.2.0", +] + +[[package]] +name = "deno_net" +version = "0.163.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b769fd37232a38bf15a3834c9da8cc99409b52d0cf4a936f3117744369f8063" +dependencies = [ + "deno_core", + "deno_permissions", + "deno_tls", + "pin-project", + "rustls-tokio-stream", + "serde", + "socket2 0.5.7", + "tokio", + "trust-dns-proto", + "trust-dns-resolver", ] [[package]] name = "deno_ops" -version = "0.138.0" +version = "0.187.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04698b09128a026abe3d8a82fdb231baf1a35f07443844728fe1441b2c2340f1" +checksum = "e040fd4def8a67538fe38c9955fd970efc9f44284bd69d44f8992a456afd665d" dependencies = [ "proc-macro-rules", "proc-macro2", "quote", "strum 0.25.0", "strum_macros 0.25.3", - "syn 2.0.65", + "syn 2.0.81", "thiserror", ] +[[package]] +name = "deno_path_util" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4889646c1ce8437a6fde3acb057fd7e2d039e62c61f5063fc125ed1ede114dc6" +dependencies = [ + "percent-encoding", + "thiserror", + "url", +] + +[[package]] +name = "deno_permissions" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1328c2d1d26cd066ba9d7d5fb3451081219e373342423f78d7a1b73bfac9849" +dependencies = [ + "deno_core", + "deno_path_util", + "deno_terminal 0.2.0", + "fqdn", + "libc", + "log", + "once_cell", + "percent-encoding", + "serde", + "which 4.4.2", + "winapi", +] + [[package]] name = "deno_terminal" version = "0.1.1" @@ -2188,66 +2760,76 @@ dependencies = [ ] [[package]] -name = "deno_tls" -version = "0.125.0" +name = "deno_terminal" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60348b1603059601ec4573e2e1f36579039668fa0b1cd47baba39056ce0f5e7a" +checksum = "daef12499e89ee99e51ad6000a91f600d3937fb028ad4918af76810c5bc9e0d5" +dependencies = [ + "once_cell", + "termcolor", +] + +[[package]] +name = "deno_tls" +version = "0.158.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22a1abc6bd8af41aa2496ceceef94f4277092c781a9495c437327a17659553a2" dependencies = [ "deno_core", "deno_native_certs", - "once_cell", - "rustls 0.21.12", - "rustls-pemfile 1.0.4", + "rustls 0.23.15", + "rustls-pemfile 2.2.0", "rustls-tokio-stream", - "rustls-webpki 0.101.7", + "rustls-webpki 0.102.8", "serde", - "webpki-roots 0.25.4", + "tokio", + "webpki-roots 0.26.6", ] [[package]] name = "deno_unsync" -version = "0.3.3" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d79c7af81e0a5ac75cff7b2fff4d1896e2bff694c688258edf21ef8a519736" +checksum = "2f36b4ef61a04ce201b925a5dffa90f88437d37fee4836c758470dd15ba7f05e" dependencies = [ + "parking_lot", "tokio", ] [[package]] name = "deno_url" -version = "0.138.0" +version = "0.171.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf8297e19f3ac7ef20915a997897ee50727c25c6c27483abcac51c2071e9fc4d" +checksum = "68eb6834d66ff13c19633b0e1b621292461b744858130b0a1c51f34a57ba1a03" dependencies = [ "deno_core", - "serde", "urlpattern", ] [[package]] name = "deno_web" -version = "0.169.0" +version = "0.202.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4020ea0467666c8e3cb751be833c12b7bc9df203f8e36c0fa23225f6547f2cc7" +checksum = "e0862246372f5b559b788aa07ca1b9385909d59630251156a54c4d2c5342d1eb" dependencies = [ "async-trait", "base64-simd 0.8.0", "bytes", "deno_core", + "deno_permissions", "encoding_rs", "flate2", "futures", "serde", "tokio", - "uuid 1.8.0", - "windows-sys 0.48.0", + "uuid 1.11.0", ] [[package]] name = "deno_webidl" -version = "0.138.0" +version = "0.171.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "344a5a4dd5628298e533e7e192bee6d2cf141b14e22fc998b8dbaf64d8153758" +checksum = "5e969b61b740479379eaf303a6900d11f162f9de610640398f89f0aa58abb7c4" dependencies = [ "deno_core", ] @@ -2317,15 +2899,15 @@ dependencies = [ [[package]] name = "derive_more" -version = "0.99.17" +version = "0.99.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", - "rustc_version 0.4.0", - "syn 1.0.109", + "rustc_version 0.4.1", + "syn 2.0.81", ] [[package]] @@ -2335,7 +2917,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac41dd49fb554432020d52c875fc290e110113f864c6b1b525cd62c7e7747a5d" dependencies = [ "byteorder", - "cipher 0.3.0", + "cipher", "opaque-debug", ] @@ -2404,9 +2986,9 @@ dependencies = [ [[package]] name = "dlopen2" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bc2c7ed06fd72a8513ded8d0d2f6fd2655a85d6885c48cae8625d80faf28c03" +checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" dependencies = [ "dlopen2_derive", "libc", @@ -2422,7 +3004,7 @@ checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -2444,14 +3026,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" [[package]] -name = "dprint-swc-ext" -version = "0.14.1" +name = "downcast-rs" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebaedd46a16dd179b260a9fcb56be5780814afcb20f615eedde6acf971c9628e" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" + +[[package]] +name = "dprint-swc-ext" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ba28c12892aadb751c2ba7001d8460faee4748a04b4edc51c7121cc67ee03db" dependencies = [ - "bumpalo", "num-bigint", - "rustc-hash", + "rustc-hash 1.1.0", "swc_atoms", "swc_common", "swc_ecma_ast", @@ -2521,9 +3108,9 @@ dependencies = [ [[package]] name = "either" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" dependencies = [ "serde", ] @@ -2566,46 +3153,34 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" +checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.65", -] - -[[package]] -name = "enum_dispatch" -version = "0.3.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" -dependencies = [ - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "enumflags2" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d" +checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" dependencies = [ "enumflags2_derive", ] [[package]] name = "enumflags2_derive" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4" +checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -2624,6 +3199,12 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "error_reporter" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31ae425815400e5ed474178a7a22e275a9687086a12ca63ec793ff292d8fdae8" + [[package]] name = "esaxx-rs" version = "0.1.10" @@ -2644,12 +3225,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "ethnum" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" - [[package]] name = "event-listener" version = "2.5.3" @@ -2658,43 +3233,22 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "4.0.3" +version = "5.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" dependencies = [ "concurrent-queue", "parking", "pin-project-lite", ] -[[package]] -name = "event-listener" -version = "5.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - -[[package]] -name = "event-listener-strategy" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" -dependencies = [ - "event-listener 4.0.3", - "pin-project-lite", -] - [[package]] name = "event-listener-strategy" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 5.3.0", + "event-listener 5.3.1", "pin-project-lite", ] @@ -2705,16 +3259,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" [[package]] -name = "fallible-streaming-iterator" -version = "0.1.9" +name = "fastdivide" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" - -[[package]] -name = "fast-float" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c" +checksum = "59668941c55e5c186b8b58c391629af56774ec768f73c08bbcd56f09348eb00b" [[package]] name = "fastrand" @@ -2727,9 +3275,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "ff" @@ -2749,38 +3297,48 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" [[package]] name = "filetime" -version = "0.2.23" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.4.1", - "windows-sys 0.52.0", + "libredox", + "windows-sys 0.59.0", ] [[package]] -name = "finl_unicode" -version = "1.2.0" +name = "fixedbitset" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" +checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" + +[[package]] +name = "flatbuffers" +version = "24.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8add37afff2d4ffa83bc748a70b4b1370984f6980768554182424ef71447c35f" +dependencies = [ + "bitflags 1.3.2", + "rustc_version 0.4.1", +] [[package]] name = "flate2" -version = "1.0.30" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" +checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" dependencies = [ "crc32fast", "libz-sys", - "miniz_oxide", + "miniz_oxide 0.8.0", ] [[package]] name = "flume" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" +checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ "futures-core", "futures-sink", @@ -2793,6 +3351,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2" + [[package]] name = "foreign-types" version = "0.3.2" @@ -2808,12 +3372,6 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -[[package]] -name = "foreign_vec" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673" - [[package]] name = "form_urlencoded" version = "1.2.1" @@ -2824,66 +3382,86 @@ dependencies = [ ] [[package]] -name = "from_variant" -version = "0.1.7" +name = "fqdn" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a0b11eeb173ce52f84ebd943d42e58813a2ebb78a6a3ff0a243b71c5199cd7b" +checksum = "eb540cf7bc4fe6df9d8f7f0c974cfd0dce8ed4e9e8884e73433b503ee78b4e7d" + +[[package]] +name = "from_variant" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32016f1242eb82af5474752d00fd8ebcd9004bd69b462b1c91de833972d08ed4" dependencies = [ "proc-macro2", "swc_macros_common", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "frunk" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11a351b59e12f97b4176ee78497dff72e4276fb1ceb13e19056aca7fa0206287" +checksum = "874b6a17738fc273ec753618bac60ddaeac48cb1d7684c3e7bd472e57a28b817" dependencies = [ "frunk_core", "frunk_derives", "frunk_proc_macros", + "serde", ] [[package]] name = "frunk_core" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af2469fab0bd07e64ccf0ad57a1438f63160c69b2e57f04a439653d68eb558d6" +checksum = "3529a07095650187788833d585c219761114005d5976185760cf794d265b6a5c" +dependencies = [ + "serde", +] [[package]] name = "frunk_derives" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fa992f1656e1707946bbba340ad244f0814009ef8c0118eb7b658395f19a2e" +checksum = "e99b8b3c28ae0e84b604c75f721c21dc77afb3706076af5e8216d15fd1deaae3" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "frunk_proc_macro_helpers" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35b54add839292b743aeda6ebedbd8b11e93404f902c56223e51b9ec18a13d2c" +checksum = "05a956ef36c377977e512e227dcad20f68c2786ac7a54dacece3746046fea5ce" dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "frunk_proc_macros" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71b85a1d4a9a6b300b41c05e8e13ef2feca03e0334127f29eca9506a7fe13a93" +checksum = "67e86c2c9183662713fea27ea527aad20fb15fee635a71081ff91bf93df4dc51" dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.65", + "syn 2.0.81", +] + +[[package]] +name = "fs4" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8" +dependencies = [ + "rustix", + "windows-sys 0.52.0", ] [[package]] @@ -2904,9 +3482,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ "futures-channel", "futures-core", @@ -2919,9 +3497,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ "futures-core", "futures-sink", @@ -2929,15 +3507,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" [[package]] name = "futures-executor" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ "futures-core", "futures-task", @@ -2957,9 +3535,9 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" @@ -2982,7 +3560,7 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" dependencies = [ - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-core", "futures-io", "parking", @@ -2991,32 +3569,32 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "futures-sink" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" [[package]] name = "futures-task" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-util" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ "futures-channel", "futures-core", @@ -3039,8 +3617,8 @@ dependencies = [ "async-trait", "base64 0.21.7", "dirs-next", - "hyper 0.14.28", - "hyper-rustls", + "hyper 0.14.31", + "hyper-rustls 0.24.2", "ring 0.16.20", "rustls 0.21.12", "rustls-pemfile 1.0.4", @@ -3071,7 +3649,7 @@ dependencies = [ "num-complex", "num-traits", "paste", - "raw-cpuid 10.7.0", + "raw-cpuid", "seq-macro", ] @@ -3086,7 +3664,7 @@ dependencies = [ "num-complex", "num-traits", "paste", - "raw-cpuid 10.7.0", + "raw-cpuid", "seq-macro", ] @@ -3101,7 +3679,7 @@ dependencies = [ "num-complex", "num-traits", "paste", - "raw-cpuid 10.7.0", + "raw-cpuid", "seq-macro", ] @@ -3119,7 +3697,7 @@ dependencies = [ "once_cell", "paste", "pulp", - "raw-cpuid 10.7.0", + "raw-cpuid", "rayon", "seq-macro", "sysctl", @@ -3138,7 +3716,7 @@ dependencies = [ "num-complex", "num-traits", "paste", - "raw-cpuid 10.7.0", + "raw-cpuid", "rayon", "seq-macro", ] @@ -3154,7 +3732,7 @@ dependencies = [ "num-complex", "num-traits", "paste", - "raw-cpuid 10.7.0", + "raw-cpuid", "seq-macro", ] @@ -3169,7 +3747,7 @@ dependencies = [ "num-complex", "num-traits", "paste", - "raw-cpuid 10.7.0", + "raw-cpuid", "seq-macro", ] @@ -3229,9 +3807,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.28.1" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] name = "git-version" @@ -3250,7 +3828,7 @@ checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -3274,9 +3852,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "gloo-timers" -version = "0.2.6" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" dependencies = [ "futures-channel", "futures-core", @@ -3286,9 +3864,9 @@ dependencies = [ [[package]] name = "gosyn" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14163cf566b1496f50447a61981892272a61ef220d37e69508e19075bc66e3f1" +checksum = "5eb37859fda6792e95231aef1c5838f4043ec0ee352d8313421e311c606df612" dependencies = [ "anyhow", "strum 0.25.0", @@ -3307,6 +3885,15 @@ dependencies = [ "subtle", ] +[[package]] +name = "gzip-header" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95cc527b92e6029a62960ad99aa8a6660faa4555fe5f731aab13aa6a921795a2" +dependencies = [ + "crc32fast", +] + [[package]] name = "h2" version = "0.3.26" @@ -3319,7 +3906,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.2.6", + "indexmap 2.6.0", "slab", "tokio", "tokio-util", @@ -3328,9 +3915,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" dependencies = [ "atomic-waker", "bytes", @@ -3338,7 +3925,7 @@ dependencies = [ "futures-core", "futures-sink", "http 1.1.0", - "indexmap 2.2.6", + "indexmap 2.6.0", "slab", "tokio", "tokio-util", @@ -3385,14 +3972,24 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ "ahash 0.8.11", "allocator-api2", - "rayon", +] + +[[package]] +name = "hashbrown" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", ] [[package]] name = "hashlink" -version = "0.8.4" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" dependencies = [ "hashbrown 0.14.5", ] @@ -3402,9 +3999,6 @@ name = "heck" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" -dependencies = [ - "unicode-segmentation", -] [[package]] name = "heck" @@ -3418,6 +4012,12 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" +[[package]] +name = "hermit-abi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" + [[package]] name = "hex" version = "0.4.3" @@ -3469,19 +4069,36 @@ dependencies = [ ] [[package]] -name = "hstr" -version = "0.2.10" +name = "hostname" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96274be293b8877e61974a607105d09c84caebe9620b47774aa8a6b942042dd4" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi", +] + +[[package]] +name = "hstr" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dae404c0c5d4e95d4858876ab02eecd6a196bb8caa42050dfa809938833fc412" dependencies = [ "hashbrown 0.14.5", "new_debug_unreachable", "once_cell", "phf", - "rustc-hash", + "rustc-hash 1.1.0", "triomphe", ] +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" + [[package]] name = "http" version = "0.2.12" @@ -3517,9 +4134,9 @@ dependencies = [ [[package]] name = "http-body" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", "http 1.1.0", @@ -3527,14 +4144,14 @@ dependencies = [ [[package]] name = "http-body-util" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" +checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" dependencies = [ "bytes", - "futures-core", + "futures-util", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "pin-project-lite", ] @@ -3561,9 +4178,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.8.0" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" +checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" [[package]] name = "httpdate" @@ -3579,9 +4196,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.28" +version = "0.14.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" +checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85" dependencies = [ "bytes", "futures-channel", @@ -3603,16 +4220,16 @@ dependencies = [ [[package]] name = "hyper" -version = "1.3.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" +checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.5", + "h2 0.4.6", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "httparse", "httpdate", "itoa", @@ -3630,14 +4247,32 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.28", + "hyper 0.14.31", "log", "rustls 0.21.12", - "rustls-native-certs", + "rustls-native-certs 0.6.3", "tokio", "tokio-rustls 0.24.1", ] +[[package]] +name = "hyper-rustls" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +dependencies = [ + "futures-util", + "http 1.1.0", + "hyper 1.5.0", + "hyper-util", + "rustls 0.23.15", + "rustls-native-certs 0.8.0", + "rustls-pki-types", + "tokio", + "tokio-rustls 0.26.0", + "tower-service", +] + [[package]] name = "hyper-tls" version = "0.5.0" @@ -3645,7 +4280,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper 0.14.28", + "hyper 0.14.31", "native-tls", "tokio", "tokio-native-tls", @@ -3659,7 +4294,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ "bytes", "http-body-util", - "hyper 1.3.1", + "hyper 1.5.0", "hyper-util", "native-tls", "tokio", @@ -3669,29 +4304,29 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.3" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" +checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" dependencies = [ "bytes", "futures-channel", "futures-util", "http 1.1.0", - "http-body 1.0.0", - "hyper 1.3.1", + "http-body 1.0.1", + "hyper 1.5.0", "pin-project-lite", "socket2 0.5.7", "tokio", - "tower", + "tower 0.4.13", "tower-service", "tracing", ] [[package]] name = "iana-time-zone" -version = "0.1.60" +version = "0.1.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -3716,6 +4351,16 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + [[package]] name = "idna" version = "0.5.0" @@ -3745,12 +4390,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.6" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" +checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.15.0", "serde", ] @@ -3773,15 +4418,6 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" -[[package]] -name = "inout" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" -dependencies = [ - "generic-array", -] - [[package]] name = "instant" version = "0.1.13" @@ -3789,42 +4425,52 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", ] [[package]] -name = "io-lifetimes" -version = "1.0.11" +name = "integer-encoding" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" +checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" + +[[package]] +name = "ipconfig" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "hermit-abi", - "libc", + "socket2 0.5.7", + "widestring", "windows-sys 0.48.0", + "winreg", ] [[package]] name = "ipnet" -version = "2.9.0" +version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" +checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" [[package]] name = "is-macro" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59a85abdc13717906baccb5a1e435556ce0df215f242892f721dff62bf25288f" +checksum = "2069faacbe981460232f880d26bf3c7634e322d49053aa48c27e3ae642f728f1" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "is_terminal_polyfill" -version = "1.70.0" +version = "1.70.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "itertools" @@ -3868,26 +4514,20 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" -[[package]] -name = "itoap" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8" - [[package]] name = "jobserver" -version = "0.1.31" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" +checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.66" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" dependencies = [ "wasm-bindgen", ] @@ -3912,7 +4552,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ee7893dab2e44ae5f9d0173f26ff4aa327c10b01b06a72b52dd9405b628640d" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.6.0", ] [[package]] @@ -3947,11 +4587,11 @@ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.5.2", + "spin 0.9.8", ] [[package]] @@ -3961,10 +4601,80 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] -name = "libc" -version = "0.2.155" +name = "levenshtein_automata" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" + +[[package]] +name = "lexical-core" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46" +dependencies = [ + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", +] + +[[package]] +name = "lexical-parse-float" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f" +dependencies = [ + "lexical-parse-integer", + "lexical-util", + "static_assertions", +] + +[[package]] +name = "lexical-parse-integer" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9" +dependencies = [ + "lexical-util", + "static_assertions", +] + +[[package]] +name = "lexical-util" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc" +dependencies = [ + "static_assertions", +] + +[[package]] +name = "lexical-write-float" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862" +dependencies = [ + "lexical-util", + "lexical-write-integer", + "static_assertions", +] + +[[package]] +name = "lexical-write-integer" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446" +dependencies = [ + "lexical-util", + "static_assertions", +] + +[[package]] +name = "libc" +version = "0.2.161" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" [[package]] name = "libgit2-sys" @@ -3980,12 +4690,12 @@ dependencies = [ [[package]] name = "libloading" -version = "0.8.3" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" +checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" dependencies = [ "cfg-if", - "windows-targets 0.52.5", + "windows-targets 0.52.6", ] [[package]] @@ -4000,15 +4710,16 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "libc", + "redox_syscall 0.5.7", ] [[package]] name = "libsqlite3-sys" -version = "0.27.0" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" +checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" dependencies = [ "cc", "pkg-config", @@ -4028,9 +4739,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.16" +version = "1.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9" +checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" dependencies = [ "cc", "libc", @@ -4039,10 +4750,10 @@ dependencies = [ ] [[package]] -name = "linux-raw-sys" -version = "0.3.8" +name = "linked-hash-map" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" @@ -4062,18 +4773,18 @@ dependencies = [ [[package]] name = "log" -version = "0.4.21" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" dependencies = [ "value-bag", ] [[package]] name = "loki-api" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f56d36f573486ba7f462b62cbae597fef7d5d93665e7047956b457531b8a1ced" +checksum = "674883a98273598ac3aad4301724c56734bea90574c5033af067e8f9fb5eb399" dependencies = [ "prost", "prost-types", @@ -4081,31 +4792,29 @@ dependencies = [ [[package]] name = "lru" -version = "0.12.3" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.14.5", + "hashbrown 0.15.0", ] [[package]] -name = "lz4" -version = "1.24.0" +name = "lru-cache" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1" +checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" dependencies = [ - "libc", - "lz4-sys", + "linked-hash-map", ] [[package]] -name = "lz4-sys" -version = "1.9.4" +name = "lz4_flex" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900" +checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5" dependencies = [ - "cc", - "libc", + "twox-hash", ] [[package]] @@ -4141,7 +4850,7 @@ version = "3.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c42f95f9d296f2dcb50665f507ed5a68a171453142663ce44d77a4eb217b053" dependencies = [ - "aes 0.7.5", + "aes", "base64 0.21.7", "block-modes", "crc-any", @@ -4154,35 +4863,45 @@ dependencies = [ [[package]] name = "mail-builder" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef70f53409852d2612f2249810cbbe0c9931ca25b739b734bafc7f61d88051d4" +checksum = "25f5871d5270ed80f2ee750b95600c8d69b05f8653ad3be913b2ad2e924fefcb" dependencies = [ "gethostname", ] +[[package]] +name = "mail-parser" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93c3b9e5d8b17faf573330bbc43b37d6e918c0a3bf8a88e7d0a220ebc84af9fc" +dependencies = [ + "encoding_rs", + "serde", +] + [[package]] name = "mail-send" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "735ca5a9c5b6acb5f9e7089ee7b96d10c54d4df91e9b47321ef6bb468f90483d" +checksum = "7a575d25cf00ed68e5790b473b29242a47e991c6187785d47b45e31fc5816554" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "gethostname", "mail-builder", - "rustls 0.22.4", + "rustls 0.23.15", "rustls-pki-types", "smtp-proto", "tokio", - "tokio-rustls 0.25.0", - "webpki-roots 0.26.1", + "tokio-rustls 0.26.0", + "webpki-roots 0.26.6", ] [[package]] name = "malachite" -version = "0.4.7" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38ad951c9d45bd4c77f4c843844870dddeb2e332864226f5a62277498e1627b8" +checksum = "5616515d632967cd329b6f6db96be9a03ea0b3a49cdbc45b0016803dad8a77b7" dependencies = [ "malachite-base", "malachite-nz", @@ -4191,9 +4910,9 @@ dependencies = [ [[package]] name = "malachite-base" -version = "0.4.7" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d073a3d1e4e037975af5ef176a2632672e25e8ddbe8e1811745c2e0726b6ad94" +checksum = "46059721011b0458b7bd6d9179be5d0b60294281c23320c207adceaecc54d13b" dependencies = [ "hashbrown 0.14.5", "itertools 0.11.0", @@ -4216,9 +4935,9 @@ dependencies = [ [[package]] name = "malachite-nz" -version = "0.4.7" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2546fc6ae29728079e87a2a0f011509e6060713b65e62ee46ba5d413b495ebc7" +checksum = "1503b27e825cabd1c3d0ff1e95a39fb2ec9eab6fd3da6cfa41aec7091d273e78" dependencies = [ "itertools 0.11.0", "libm", @@ -4227,15 +4946,27 @@ dependencies = [ [[package]] name = "malachite-q" -version = "0.4.7" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ad0ac879ecbb7e1cc8060b48696eebed0b0de8d922db4f8b378dfbc1bad806a" +checksum = "a475503a70a3679dbe3b9b230a23622516742528ba614a7b2490f180ea9cb514" dependencies = [ "itertools 0.11.0", "malachite-base", "malachite-nz", ] +[[package]] +name = "mappable-rc" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "204651f31b0a6a7b2128d2b92c372cd94607b210c3a6b6e542c57a8cfd4db996" + +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + [[package]] name = "matchers" version = "0.1.0" @@ -4279,25 +5010,26 @@ dependencies = [ ] [[package]] -name = "memchr" -version = "2.7.2" +name = "measure_time" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" - -[[package]] -name = "memmap2" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" +checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc" dependencies = [ - "libc", + "instant", + "log", ] [[package]] -name = "memmap2" -version = "0.9.4" +name = "memchr" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "memmap2" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" dependencies = [ "libc", "stable_deref_trait", @@ -4320,9 +5052,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "mime_guess" -version = "2.0.4" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ "mime", "unicase", @@ -4336,13 +5068,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" +checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" dependencies = [ "adler", ] +[[package]] +name = "miniz_oxide" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +dependencies = [ + "adler2", +] + [[package]] name = "mio" version = "0.8.11" @@ -4350,7 +5091,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", - "log", "wasi 0.11.0+wasi-snapshot-preview1", "windows-sys 0.48.0", ] @@ -4373,7 +5113,7 @@ checksum = "a7ce64b975ed4f123575d11afd9491f2e37bbd5813fbfbc0f09ae1fbddea74e0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -4394,26 +5134,10 @@ dependencies = [ ] [[package]] -name = "multiversion" -version = "0.7.4" +name = "murmurhash32" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142" -dependencies = [ - "multiversion-macros", - "target-features", -] - -[[package]] -name = "multiversion-macros" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "target-features", -] +checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b" [[package]] name = "mysql-common-derive" @@ -4421,23 +5145,23 @@ version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afe0450cc9344afff34915f8328600ab5ae19260802a334d0f72d2d5bdda3bfe" dependencies = [ - "darling 0.20.9", + "darling 0.20.10", "heck 0.4.1", "num-bigint", "proc-macro-crate", "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", "termcolor", "thiserror", ] [[package]] name = "mysql_async" -version = "0.34.1" +version = "0.34.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbfe87d7e35cb72363326216cc1712b865d8d4f70abf3b2d2e6b251fb6b2f427" +checksum = "a0b66e411c31265e879d9814d03721f2daa7ad07337b6308cb4bb0cde7e6fd47" dependencies = [ "bytes", "crossbeam", @@ -4446,12 +5170,9 @@ dependencies = [ "futures-sink", "futures-util", "keyed_priority_queue", - "lazy_static", "lru", - "mio", "mysql_common", "native-tls", - "once_cell", "pem 3.0.4", "percent-encoding", "pin-project", @@ -4469,14 +5190,14 @@ dependencies = [ [[package]] name = "mysql_common" -version = "0.32.3" +version = "0.32.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1e52cf194ab414202ead9dfda216d2a9ec59cc97ac024ba499ca686d82f040d" +checksum = "478b0ff3f7d67b79da2b96f56f334431aef65e15ba4b29dd74a4236e29582bdc" dependencies = [ "base64 0.21.7", - "bigdecimal 0.4.3", - "bindgen", - "bitflags 2.5.0", + "bigdecimal", + "bindgen 0.70.1", + "bitflags 2.6.0", "bitvec", "btoi", "byteorder", @@ -4502,17 +5223,16 @@ dependencies = [ "subprocess", "thiserror", "time", - "uuid 1.8.0", - "zstd 0.13.1", + "uuid 1.11.0", + "zstd 0.13.2", ] [[package]] name = "native-tls" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" dependencies = [ - "lazy_static", "libc", "log", "openssl", @@ -4536,7 +5256,7 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "cfg-if", "libc", ] @@ -4551,24 +5271,6 @@ dependencies = [ "minimal-lexical", ] -[[package]] -name = "now" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0" -dependencies = [ - "chrono", -] - -[[package]] -name = "ntapi" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" -dependencies = [ - "winapi", -] - [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -4580,10 +5282,24 @@ dependencies = [ ] [[package]] -name = "num-bigint" -version = "0.4.5" +name = "num" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ "num-integer", "num-traits", @@ -4644,6 +5360,17 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-rational" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +dependencies = [ + "num-bigint", + "num-integer", + "num-traits", +] + [[package]] name = "num-traits" version = "0.2.19" @@ -4660,7 +5387,7 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi", + "hermit-abi 0.3.9", "libc", ] @@ -4681,7 +5408,7 @@ dependencies = [ "getrandom 0.2.15", "http 0.2.12", "rand 0.8.5", - "reqwest 0.11.20", + "reqwest 0.11.27", "serde", "serde_json", "serde_path_to_error", @@ -4692,33 +5419,33 @@ dependencies = [ [[package]] name = "object" -version = "0.32.2" +version = "0.36.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" dependencies = [ "memchr", ] [[package]] name = "object_store" -version = "0.9.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8718f8b65fdf67a45108d1548347d4af7d71fb81ce727bbf9e3b2535e079db3" +checksum = "e6da452820c715ce78221e8202ccc599b4a52f3e1eb3eedb487b680c81a8e3f3" dependencies = [ "async-trait", - "base64 0.21.7", + "base64 0.22.1", "bytes", "chrono", "futures", "humantime", - "hyper 0.14.28", - "itertools 0.12.1", + "hyper 1.5.0", + "itertools 0.13.0", "md-5 0.10.6", "parking_lot", "percent-encoding", - "quick-xml 0.31.0", + "quick-xml 0.36.2", "rand 0.8.5", - "reqwest 0.11.20", + "reqwest 0.12.8", "ring 0.17.8", "serde", "serde_json", @@ -4731,9 +5458,15 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.19.0" +version = "1.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" + +[[package]] +name = "oneshot" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e296cf87e61c9cfc1a61c3c63a0f7f286ed4554e0e22be84e8a38e1d264a2a29" [[package]] name = "onig" @@ -4808,11 +5541,11 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.64" +version = "0.10.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" +checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "cfg-if", "foreign-types", "libc", @@ -4829,7 +5562,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -4840,9 +5573,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.102" +version = "0.9.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" +checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" dependencies = [ "cc", "libc", @@ -4883,6 +5616,15 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" +[[package]] +name = "ownedbytes" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558" +dependencies = [ + "stable_deref_trait", +] + [[package]] name = "p256" version = "0.13.2" @@ -4909,15 +5651,15 @@ dependencies = [ [[package]] name = "parking" -version = "2.2.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" [[package]] name = "parking_lot" -version = "0.12.2" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", "parking_lot_core", @@ -4931,19 +5673,45 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.1", + "redox_syscall 0.5.7", "smallvec", - "windows-targets 0.52.5", + "windows-targets 0.52.6", ] [[package]] -name = "parquet-format-safe" -version = "0.2.4" +name = "parquet" +version = "52.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f" +checksum = "e977b9066b4d3b03555c22bdc442f3fadebd96a39111249113087d0edb2691cd" dependencies = [ - "async-trait", + "ahash 0.8.11", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "base64 0.22.1", + "brotli 6.0.0", + "bytes", + "chrono", + "flate2", "futures", + "half", + "hashbrown 0.14.5", + "lz4_flex", + "num", + "num-bigint", + "object_store", + "paste", + "seq-macro", + "snap", + "thrift", + "tokio", + "twox-hash", + "zstd 0.13.2", + "zstd-sys", ] [[package]] @@ -4955,17 +5723,6 @@ dependencies = [ "regex", ] -[[package]] -name = "password-hash" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" -dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle", -] - [[package]] name = "password-hash" version = "0.5.0" @@ -4985,21 +5742,9 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] name = "pathdiff" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" - -[[package]] -name = "pbkdf2" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" -dependencies = [ - "digest 0.10.7", - "hmac", - "password-hash 0.4.2", - "sha2 0.10.8", -] +checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361" [[package]] name = "pem" @@ -5045,21 +5790,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] -name = "pg-embed" -version = "0.7.2" -source = "git+https://github.com/faokunega/pg-embed#72db5e053f0afac6eee51d3baa2fd5c90803e02d" +name = "petgraph" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ - "archiver-rs", - "async-trait", - "bytes", - "dirs", - "futures", - "lazy_static", - "log", - "reqwest 0.11.20", - "thiserror", - "tokio", - "zip", + "fixedbitset", + "indexmap 2.6.0", ] [[package]] @@ -5102,7 +5839,7 @@ dependencies = [ "phf_shared", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -5128,22 +5865,22 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.1.5" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +checksum = "baf123a161dde1e524adf36f90bc5d8d3462824a9c43553ad07a8183161189ec" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.5" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +checksum = "a4502d8515ca9f32f1fb543d987f63d95a14934883db45bdb48060b6b69257f8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -5160,12 +5897,12 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "464db0c665917b13ebb5d453ccdec4add5658ee1adc7affc7677615356a8afaf" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-io", ] @@ -5214,444 +5951,30 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" - -[[package]] -name = "planus" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f" -dependencies = [ - "array-init-cursor", -] - -[[package]] -name = "platforms" -version = "3.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" - -[[package]] -name = "pmutil" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.65", -] - -[[package]] -name = "polars" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f01006048a264047d6cba081fed8e11adbd69c15956f9e53185a9ac4a541853c" -dependencies = [ - "getrandom 0.2.15", - "polars-arrow", - "polars-core", - "polars-error", - "polars-io", - "polars-lazy", - "polars-ops", - "polars-parquet", - "polars-sql", - "polars-time", - "polars-utils", - "version_check", -] - -[[package]] -name = "polars-arrow" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25197f40d71f82b2f79bb394f03e555d3cc1ce4db1dd052c28318721c71e96ad" -dependencies = [ - "ahash 0.8.11", - "atoi", - "atoi_simd", - "bytemuck", - "chrono", - "chrono-tz 0.8.6", - "dyn-clone", - "either", - "ethnum", - "fast-float", - "foreign_vec", - "futures", - "getrandom 0.2.15", - "hashbrown 0.14.5", - "itoa", - "itoap", - "lz4", - "multiversion", - "num-traits", - "polars-arrow-format", - "polars-error", - "polars-utils", - "ryu", - "simdutf8", - "streaming-iterator", - "strength_reduce", - "version_check", - "zstd 0.13.1", -] - -[[package]] -name = "polars-arrow-format" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c" -dependencies = [ - "planus", - "serde", -] - -[[package]] -name = "polars-compute" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c354515f73cdbbad03c2bf723fcd68e6825943b3ec503055abc8a8cb08ce46bb" -dependencies = [ - "bytemuck", - "either", - "num-traits", - "polars-arrow", - "polars-error", - "polars-utils", - "strength_reduce", - "version_check", -] - -[[package]] -name = "polars-core" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f20d3c227186f74aa3c228c64ef72f5a15617322fed30b4323eaf53b25f8e7b" -dependencies = [ - "ahash 0.8.11", - "bitflags 2.5.0", - "bytemuck", - "chrono", - "chrono-tz 0.8.6", - "comfy-table", - "either", - "hashbrown 0.14.5", - "indexmap 2.2.6", - "num-traits", - "once_cell", - "polars-arrow", - "polars-compute", - "polars-error", - "polars-row", - "polars-utils", - "rand 0.8.5", - "rand_distr", - "rayon", - "regex", - "serde", - "smartstring", - "thiserror", - "version_check", - "xxhash-rust", -] - -[[package]] -name = "polars-error" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66dd0ce51f8bd620eb8bd376502fe68a2b1a446d5433ecd2e75270b0755ce76" -dependencies = [ - "object_store", - "polars-arrow-format", - "regex", - "simdutf8", - "thiserror", -] - -[[package]] -name = "polars-io" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b40bef2edcdc58394792c4d779465144283a09ff1836324e7b72df7978a6e992" -dependencies = [ - "ahash 0.8.11", - "async-trait", - "atoi_simd", - "bytes", - "chrono", - "fast-float", - "flate2", - "futures", - "home", - "itoa", - "memchr", - "memmap2 0.7.1", - "num-traits", - "object_store", - "once_cell", - "percent-encoding", - "polars-arrow", - "polars-core", - "polars-error", - "polars-parquet", - "polars-time", - "polars-utils", - "rayon", - "regex", - "reqwest 0.11.20", - "ryu", - "simdutf8", - "smartstring", - "tokio", - "tokio-util", - "url", - "zstd 0.13.1", -] - -[[package]] -name = "polars-lazy" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c27df26a19d3092298d31d47614ad84dc330c106e38aa8cd53727cd91c07cf56" -dependencies = [ - "ahash 0.8.11", - "bitflags 2.5.0", - "futures", - "glob", - "once_cell", - "polars-arrow", - "polars-core", - "polars-io", - "polars-ops", - "polars-pipe", - "polars-plan", - "polars-time", - "polars-utils", - "rayon", - "smartstring", - "tokio", - "version_check", -] - -[[package]] -name = "polars-ops" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f8a51c3bdc9e7c34196ff6f5c3cb17da134e5aafb1756aaf24b76c7118e63dc" -dependencies = [ - "ahash 0.8.11", - "argminmax", - "base64 0.21.7", - "bytemuck", - "chrono", - "chrono-tz 0.8.6", - "either", - "hashbrown 0.14.5", - "hex", - "indexmap 2.2.6", - "memchr", - "num-traits", - "polars-arrow", - "polars-compute", - "polars-core", - "polars-error", - "polars-utils", - "rayon", - "regex", - "smartstring", - "unicode-reverse", - "version_check", -] - -[[package]] -name = "polars-parquet" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8824ee00fbbe83d69553f2711014c50361238d210ed81a7a297695b7db97d42" -dependencies = [ - "ahash 0.8.11", - "async-stream", - "base64 0.21.7", - "brotli 3.5.0", - "ethnum", - "flate2", - "futures", - "lz4", - "num-traits", - "parquet-format-safe", - "polars-arrow", - "polars-error", - "polars-utils", - "seq-macro", - "simdutf8", - "snap", - "streaming-decompression", - "zstd 0.13.1", -] - -[[package]] -name = "polars-pipe" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c5e2c1f14e81d60cfa9afe4e611a9bad9631a2cb7cd19b7c0094d0dc32f0231" -dependencies = [ - "crossbeam-channel", - "crossbeam-queue", - "enum_dispatch", - "futures", - "hashbrown 0.14.5", - "num-traits", - "polars-arrow", - "polars-compute", - "polars-core", - "polars-io", - "polars-ops", - "polars-plan", - "polars-row", - "polars-utils", - "rayon", - "smartstring", - "tokio", - "uuid 1.8.0", - "version_check", -] - -[[package]] -name = "polars-plan" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff48362bd1b078bbbec7e7ba9ec01fea58fee2887db22a8e3deaf78f322fa3c4" -dependencies = [ - "ahash 0.8.11", - "bytemuck", - "chrono-tz 0.8.6", - "futures", - "once_cell", - "percent-encoding", - "polars-arrow", - "polars-core", - "polars-io", - "polars-ops", - "polars-parquet", - "polars-time", - "polars-utils", - "rayon", - "regex", - "smartstring", - "strum_macros 0.25.3", - "version_check", -] - -[[package]] -name = "polars-row" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63029da56ff6a720b190490bbc7b6263f9b72d1134311b1f381fc8d306d37770" -dependencies = [ - "bytemuck", - "polars-arrow", - "polars-error", - "polars-utils", -] - -[[package]] -name = "polars-sql" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3652c362959f608d1297196b973d1e3acb508a9562b886ac39bf7606b841052b" -dependencies = [ - "hex", - "polars-arrow", - "polars-core", - "polars-error", - "polars-lazy", - "polars-plan", - "rand 0.8.5", - "serde", - "serde_json", - "sqlparser", -] - -[[package]] -name = "polars-time" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86eb74ea6ddfe675aa5c3f33c00dadbe2b85f0e8e3887b85db1fd5a3397267fd" -dependencies = [ - "atoi", - "chrono", - "chrono-tz 0.8.6", - "now", - "once_cell", - "polars-arrow", - "polars-core", - "polars-error", - "polars-ops", - "polars-utils", - "regex", - "smartstring", -] - -[[package]] -name = "polars-utils" -version = "0.38.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "694656a7d2b0cd8f07660dbc8d0fb7a81066ff57a452264907531d805c1e58c4" -dependencies = [ - "ahash 0.8.11", - "bytemuck", - "hashbrown 0.14.5", - "indexmap 2.2.6", - "num-traits", - "once_cell", - "polars-error", - "raw-cpuid 11.0.2", - "rayon", - "smartstring", - "sysinfo", - "version_check", -] +checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "polling" -version = "2.8.0" +version = "3.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" -dependencies = [ - "autocfg", - "bitflags 1.3.2", - "cfg-if", - "concurrent-queue", - "libc", - "log", - "pin-project-lite", - "windows-sys 0.48.0", -] - -[[package]] -name = "polling" -version = "3.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3" +checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" dependencies = [ "cfg-if", "concurrent-queue", - "hermit-abi", + "hermit-abi 0.4.0", "pin-project-lite", - "rustix 0.38.34", + "rustix", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "portable-atomic" -version = "1.6.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" [[package]] name = "postgres-native-tls" @@ -5668,11 +5991,11 @@ dependencies = [ [[package]] name = "postgres-protocol" -version = "0.6.6" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520" +checksum = "acda0ebdebc28befa84bee35e651e4c5f09073d668c7aed4cf7e23c3cda84b23" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "byteorder", "bytes", "fallible-iterator", @@ -5686,9 +6009,9 @@ dependencies = [ [[package]] name = "postgres-types" -version = "0.2.6" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d2234cdee9408b523530a9b6d2d6b373d1db34f6a8e51dc03ded1828d7fb67c" +checksum = "f66ea23a2d0e5734297357705193335e0a957696f34bed2f2faefacb2fec336f" dependencies = [ "array-init", "bit-vec", @@ -5698,7 +6021,7 @@ dependencies = [ "postgres-protocol", "serde", "serde_json", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] @@ -5709,9 +6032,12 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.17" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] [[package]] name = "pretty-hex" @@ -5731,12 +6057,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.20" +version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" +checksum = "910d41a655dac3b764f1ade94821093d3610248694320cd072303a8eedcf221d" dependencies = [ "proc-macro2", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -5750,11 +6076,11 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "3.1.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" +checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" dependencies = [ - "toml_edit 0.21.1", + "toml_edit 0.22.22", ] [[package]] @@ -5789,7 +6115,7 @@ checksum = "07c277e4e643ef00c1233393c673f655e3672cf7eb3ba08a00bdd0ea59139b5f" dependencies = [ "proc-macro-rules-macros", "proc-macro2", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -5801,14 +6127,14 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "proc-macro2" -version = "1.0.83" +version = "1.0.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43" +checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9" dependencies = [ "unicode-ident", ] @@ -5840,7 +6166,7 @@ dependencies = [ "bytes", "futures-core", "percent-encoding", - "reqwest 0.11.20", + "reqwest 0.11.27", "serde", "serde_json", "serde_urlencoded", @@ -5862,7 +6188,7 @@ dependencies = [ "schemars", "serde", "serde_json", - "syn 2.0.65", + "syn 2.0.81", "thiserror", "typify", "unicode-ident", @@ -5882,7 +6208,7 @@ dependencies = [ "serde_json", "serde_tokenstream", "serde_yaml", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -5907,9 +6233,9 @@ dependencies = [ [[package]] name = "prost" -version = "0.11.9" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" +checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" dependencies = [ "bytes", "prost-derive", @@ -5917,31 +6243,31 @@ dependencies = [ [[package]] name = "prost-derive" -version = "0.11.9" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" +checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.12.1", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.81", ] [[package]] name = "prost-types" -version = "0.11.9" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" +checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" dependencies = [ "prost", ] [[package]] name = "psm" -version = "0.1.21" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" +checksum = "aa37f80ca58604976033fae9515a8a2989fc13797d953f7c04fb8fa36a11f205" dependencies = [ "cc", ] @@ -5967,10 +6293,22 @@ dependencies = [ ] [[package]] -name = "pulp" -version = "0.18.12" +name = "pulldown-cmark" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "140dfe6dada20716bd5f7284406747c73061a56a0a5d4ad5aee7957c5f71606c" +checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" +dependencies = [ + "bitflags 2.6.0", + "getopts", + "memchr", + "unicase", +] + +[[package]] +name = "pulp" +version = "0.18.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0a01a0dc67cf4558d279f0c25b0962bd08fc6dec0137699eae304103e882fe6" dependencies = [ "bytemuck", "libm", @@ -5978,6 +6316,12 @@ dependencies = [ "reborrow", ] +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + [[package]] name = "quick-xml" version = "0.30.0" @@ -5990,9 +6334,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.31.0" +version = "0.36.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" +checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" dependencies = [ "memchr", "serde", @@ -6000,9 +6344,9 @@ dependencies = [ [[package]] name = "quick_cache" -version = "0.5.1" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "347e1a588d1de074eeb3c00eadff93db4db65aeb62aee852b1efd0949fe65b6c" +checksum = "7d7c94f8935a9df96bb6380e8592c70edf497a643f94bd23b2f76b399385dbf4" dependencies = [ "ahash 0.8.11", "equivalent", @@ -6011,10 +6355,58 @@ dependencies = [ ] [[package]] -name = "quote" -version = "1.0.36" +name = "quinn" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" +dependencies = [ + "bytes", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash 2.0.0", + "rustls 0.23.15", + "socket2 0.5.7", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "quinn-proto" +version = "0.11.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" +dependencies = [ + "bytes", + "rand 0.8.5", + "ring 0.17.8", + "rustc-hash 2.0.0", + "rustls 0.23.15", + "slab", + "thiserror", + "tinyvec", + "tracing", +] + +[[package]] +name = "quinn-udp" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" +dependencies = [ + "libc", + "once_cell", + "socket2 0.5.7", + "tracing", + "windows-sys 0.59.0", +] + +[[package]] +name = "quote" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -6121,15 +6513,6 @@ dependencies = [ "bitflags 1.3.2", ] -[[package]] -name = "raw-cpuid" -version = "11.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd" -dependencies = [ - "bitflags 2.5.0", -] - [[package]] name = "rayon" version = "1.10.0" @@ -6200,27 +6583,18 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.4.1" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" dependencies = [ - "bitflags 1.3.2", -] - -[[package]] -name = "redox_syscall" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" -dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", ] [[package]] name = "redox_users" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom 0.2.15", "libredox", @@ -6229,14 +6603,14 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.4" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.6", - "regex-syntax 0.8.3", + "regex-automata 0.4.8", + "regex-syntax 0.8.5", ] [[package]] @@ -6250,20 +6624,20 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.6" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.3", + "regex-syntax 0.8.5", ] [[package]] name = "regex-lite" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" +checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" [[package]] name = "regex-syntax" @@ -6279,9 +6653,9 @@ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "regex-syntax" -version = "0.8.3" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "regress" @@ -6304,11 +6678,10 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.20" +version = "0.11.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" +checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ - "async-compression 0.4.10", "base64 0.21.7", "bytes", "encoding_rs", @@ -6317,8 +6690,8 @@ dependencies = [ "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.28", - "hyper-rustls", + "hyper 0.14.31", + "hyper-rustls 0.24.2", "hyper-tls 0.5.0", "ipnet", "js-sys", @@ -6329,42 +6702,44 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.21.12", - "rustls-native-certs", "rustls-pemfile 1.0.4", "serde", "serde_json", "serde_urlencoded", + "sync_wrapper 0.1.2", + "system-configuration 0.5.1", "tokio", "tokio-native-tls", "tokio-rustls 0.24.1", - "tokio-socks", "tokio-util", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", - "wasm-streams 0.3.0", + "wasm-streams", "web-sys", "webpki-roots 0.25.4", - "winreg 0.50.0", + "winreg", ] [[package]] name = "reqwest" -version = "0.12.4" +version = "0.12.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" +checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" dependencies = [ + "async-compression 0.4.16", "base64 0.22.1", "bytes", "encoding_rs", "futures-core", "futures-util", - "h2 0.4.5", + "h2 0.4.6", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", - "hyper 1.3.1", + "hyper 1.5.0", + "hyper-rustls 0.27.3", "hyper-tls 0.6.0", "hyper-util", "ipnet", @@ -6375,22 +6750,37 @@ dependencies = [ "once_cell", "percent-encoding", "pin-project-lite", - "rustls-pemfile 2.1.2", + "quinn", + "rustls 0.23.15", + "rustls-native-certs 0.8.0", + "rustls-pemfile 2.2.0", + "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper 0.1.2", - "system-configuration", + "sync_wrapper 1.0.1", + "system-configuration 0.6.1", "tokio", "tokio-native-tls", + "tokio-rustls 0.26.0", "tokio-util", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", - "wasm-streams 0.4.0", + "wasm-streams", "web-sys", - "winreg 0.52.0", + "windows-registry", +] + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "hostname", + "quick-error", ] [[package]] @@ -6441,9 +6831,9 @@ dependencies = [ [[package]] name = "rkyv" -version = "0.7.44" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" +checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" dependencies = [ "bitvec", "bytecheck", @@ -6454,14 +6844,14 @@ dependencies = [ "rkyv_derive", "seahash", "tinyvec", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] name = "rkyv_derive" -version = "0.7.44" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" +checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" dependencies = [ "proc-macro2", "quote", @@ -6544,7 +6934,7 @@ dependencies = [ "proc-macro2", "quote", "rust-embed-utils", - "syn 2.0.65", + "syn 2.0.81", "walkdir", ] @@ -6559,10 +6949,20 @@ dependencies = [ ] [[package]] -name = "rust_decimal" -version = "1.35.0" +name = "rust-stemmers" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a" +checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +dependencies = [ + "serde", + "serde_derive", +] + +[[package]] +name = "rust_decimal" +version = "1.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" dependencies = [ "arrayvec", "borsh", @@ -6587,6 +6987,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +[[package]] +name = "rustc-hash" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" + [[package]] name = "rustc_version" version = "0.2.3" @@ -6598,9 +7004,9 @@ dependencies = [ [[package]] name = "rustc_version" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ "semver 1.0.23", ] @@ -6614,34 +7020,20 @@ dependencies = [ "serde", "tempfile", "thiserror", - "toml 0.8.13", + "toml 0.8.19", "toolchain_find", ] [[package]] name = "rustix" -version = "0.37.27" +version = "0.38.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" +checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" dependencies = [ - "bitflags 1.3.2", - "errno", - "io-lifetimes", - "libc", - "linux-raw-sys 0.3.8", - "windows-sys 0.48.0", -] - -[[package]] -name = "rustix" -version = "0.38.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" -dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "errno", "libc", - "linux-raw-sys 0.4.14", + "linux-raw-sys", "windows-sys 0.52.0", ] @@ -6659,14 +7051,15 @@ dependencies = [ [[package]] name = "rustls" -version = "0.22.4" +version = "0.23.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" +checksum = "5fbb44d7acc4e873d613422379f69f237a1b141928c02f6bc6ccfddddc2d7993" dependencies = [ "log", + "once_cell", "ring 0.17.8", "rustls-pki-types", - "rustls-webpki 0.102.4", + "rustls-webpki 0.102.8", "subtle", "zeroize", ] @@ -6683,6 +7076,32 @@ dependencies = [ "security-framework", ] +[[package]] +name = "rustls-native-certs" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +dependencies = [ + "openssl-probe", + "rustls-pemfile 2.2.0", + "rustls-pki-types", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-native-certs" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" +dependencies = [ + "openssl-probe", + "rustls-pemfile 2.2.0", + "rustls-pki-types", + "schannel", + "security-framework", +] + [[package]] name = "rustls-pemfile" version = "1.0.4" @@ -6694,28 +7113,27 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.2" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "base64 0.22.1", "rustls-pki-types", ] [[package]] name = "rustls-pki-types" -version = "1.7.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" +checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" [[package]] name = "rustls-tokio-stream" -version = "0.2.17" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded7a36e8ac05b8ada77a84c5ceec95361942ee9dedb60a82f93f788a791aae8" +checksum = "22557157d7395bc30727745b365d923f1ecc230c4c80b176545f3f4f08c46e33" dependencies = [ "futures", - "rustls 0.21.12", + "rustls 0.23.15", "socket2 0.5.7", "tokio", ] @@ -6732,9 +7150,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.102.4" +version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" +checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ "ring 0.17.8", "rustls-pki-types", @@ -6766,7 +7184,7 @@ dependencies = [ "num-traits", "phf", "phf_codegen", - "rustc-hash", + "rustc-hash 1.1.0", "rustpython-ast", "rustpython-parser-core", "tiny-keccak", @@ -6796,9 +7214,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.17" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" +checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" [[package]] name = "ryu" @@ -6814,9 +7232,9 @@ checksum = "ad97d4ce1560a5e27cec89519dc8300d1aa6035b099821261c651486a19e44d5" [[package]] name = "safetensors" -version = "0.4.3" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ced76b22c7fba1162f11a5a75d9d8405264b467a07ae0c9c29be119b9297db9" +checksum = "44560c11236a6130a46ce36c836a62936dc81ebf8c36a37947423571be0e55b6" dependencies = [ "serde", "serde_json", @@ -6829,7 +7247,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b75583aad4a51c50fc0af69c230d18078c9d5a69a98d0f6013d01053acf744f4" dependencies = [ "base64 0.21.7", - "bindgen", + "bindgen 0.69.5", "chrono", "data-encoding", "derive_builder", @@ -6846,7 +7264,7 @@ dependencies = [ "serde", "thiserror", "url", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] @@ -6866,37 +7284,37 @@ checksum = "ece8e78b2f38ec51c51f5d475df0a7187ba5111b2a28bdc761ee05b075d40a71" [[package]] name = "schannel" -version = "0.1.23" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" +checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "schemars" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0218ceea14babe24a4a5836f86ade86c1effbc198164e619194cb5069187e29" +checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" dependencies = [ "chrono", "dyn-clone", "schemars_derive", "serde", "serde_json", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] name = "schemars_derive" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed5a1ccce8ff962e31a165d41f6e2a2dd1245099dc4d594f5574a86cd90f4d3" +checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -6943,11 +7361,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.11.0" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "core-foundation", "core-foundation-sys", "libc", @@ -6956,9 +7374,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.11.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" +checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" dependencies = [ "core-foundation-sys", "libc", @@ -6996,9 +7414,9 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" [[package]] name = "serde" -version = "1.0.202" +version = "1.0.210" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395" +checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" dependencies = [ "serde_derive", ] @@ -7026,9 +7444,9 @@ dependencies = [ [[package]] name = "serde-wasm-bindgen" -version = "0.4.5" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf" +checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" dependencies = [ "js-sys", "serde", @@ -7037,13 +7455,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.202" +version = "1.0.210" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838" +checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -7054,17 +7472,18 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "serde_json" -version = "1.0.117" +version = "1.0.132" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.6.0", "itoa", + "memchr", "ryu", "serde", ] @@ -7112,23 +7531,23 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" +checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" dependencies = [ "serde", ] [[package]] name = "serde_tokenstream" -version = "0.2.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a00ffd23fd882d096f09fcaae2a9de8329a328628e86027e049ee051dc1621f" +checksum = "64060d864397305347a78851c51588fd283767e7e7589829e8121d65512340f1" dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -7145,12 +7564,10 @@ dependencies = [ [[package]] name = "serde_v8" -version = "0.171.0" +version = "0.220.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88a2746b1f9e4015ee5f325bb87ab0f1891b76c38dfb1675bc83857eaf6451d0" +checksum = "6e7a65d91d79acc82aa229aeb084f4a39bda269069bc1520df40f679495388e4" dependencies = [ - "bytes", - "derive_more", "num-bigint", "serde", "smallvec", @@ -7160,15 +7577,15 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.8.1" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20" +checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817" dependencies = [ "base64 0.22.1", "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.2.6", + "indexmap 2.6.0", "serde", "serde_derive", "serde_json", @@ -7178,14 +7595,14 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.8.1" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2" +checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d" dependencies = [ - "darling 0.20.9", + "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -7194,24 +7611,13 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.6.0", "itoa", "ryu", "serde", "unsafe-libyaml", ] -[[package]] -name = "sha-1" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", -] - [[package]] name = "sha1" version = "0.10.6" @@ -7225,9 +7631,9 @@ dependencies = [ [[package]] name = "sha1_smol" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" +checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" [[package]] name = "sha2" @@ -7308,9 +7714,9 @@ dependencies = [ [[package]] name = "simdutf8" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "simple_asn1" @@ -7330,6 +7736,15 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "sketches-ddsketch" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c" +dependencies = [ + "serde", +] + [[package]] name = "slab" version = "0.4.9" @@ -7344,6 +7759,9 @@ name = "smallvec" version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +dependencies = [ + "serde", +] [[package]] name = "smart-default" @@ -7363,7 +7781,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" dependencies = [ "autocfg", - "serde", "static_assertions", "version_check", ] @@ -7379,9 +7796,9 @@ dependencies = [ [[package]] name = "smtp-proto" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34344dcc7dd10b3de9224fd68e5f019fff2246d9cdf8e4322f770f48030e0c83" +checksum = "51b8ad3dd187f0d4debab02ad65405a9919d6a4f7bce25bd64a258781063a53a" [[package]] name = "snafu" @@ -7433,30 +7850,35 @@ dependencies = [ [[package]] name = "sourcemap" -version = "6.4.1" +version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4cbf65ca7dc576cf50e21f8d0712d96d4fcfd797389744b7b222a85cdf5bd90" +checksum = "208d40b9e8cad9f93613778ea295ed8f3c2b1824217c6cfc7219d3f6f45b96d4" dependencies = [ + "base64-simd 0.7.0", + "bitvec", "data-encoding", "debugid", "if_chain", + "rustc-hash 1.1.0", "rustc_version 0.2.3", "serde", "serde_json", - "unicode-id", + "unicode-id-start", "url", ] [[package]] name = "sourcemap" -version = "7.1.1" +version = "9.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7768edd06c02535e0d50653968f46e1e0d3aa54742190d35dd9466f59de9c71" +checksum = "dab08a862c70980b8e23698b507e272317ae52a608a164a844111f5372374f1f" dependencies = [ "base64-simd 0.7.0", + "bitvec", "data-encoding", "debugid", "if_chain", + "rustc-hash 1.1.0", "rustc_version 0.2.3", "serde", "serde_json", @@ -7523,29 +7945,40 @@ dependencies = [ [[package]] name = "sqlformat" -version = "0.2.3" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c" +checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790" dependencies = [ - "itertools 0.12.1", "nom", "unicode_categories", ] [[package]] name = "sqlparser" -version = "0.39.0" +version = "0.47.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "743b4dc2cbde11890ccb254a8fc9d537fa41b36da00de2a1c5e9848c9bc42bd7" +checksum = "295e9930cd7a97e58ca2a070541a3ca502b17f5d1fa7157376d0fabd85324f25" dependencies = [ "log", + "sqlparser_derive", +] + +[[package]] +name = "sqlparser_derive" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01b2e185515564f15375f593fb966b5718bc624ba77fe49fa4616ad619690554" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.81", ] [[package]] name = "sqlx" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" +checksum = "93334716a037193fac19df402f8571269c84a00852f6a7066b5d2616dcd64d3e" dependencies = [ "sqlx-core", "sqlx-macros", @@ -7556,35 +7989,35 @@ dependencies = [ [[package]] name = "sqlx-core" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6" +checksum = "d4d8060b456358185f7d50c55d9b5066ad956956fddec42ee2e8567134a8936e" dependencies = [ - "ahash 0.8.11", "atoi", - "bigdecimal 0.3.1", + "bigdecimal", "byteorder", "bytes", "chrono", "crc", "crossbeam-queue", "either", - "event-listener 2.5.3", + "event-listener 5.3.1", "futures-channel", "futures-core", "futures-intrusive", "futures-io", "futures-util", + "hashbrown 0.14.5", "hashlink", "hex", - "indexmap 2.2.6", + "indexmap 2.6.0", "log", "memchr", "once_cell", "paste", "percent-encoding", - "rustls 0.21.12", - "rustls-pemfile 1.0.4", + "rustls 0.23.15", + "rustls-pemfile 2.2.0", "serde", "serde_json", "sha2 0.10.8", @@ -7595,32 +8028,32 @@ dependencies = [ "tokio-stream", "tracing", "url", - "uuid 1.8.0", - "webpki-roots 0.25.4", + "uuid 1.11.0", + "webpki-roots 0.26.6", ] [[package]] name = "sqlx-macros" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127" +checksum = "cac0692bcc9de3b073e8d747391827297e075c7710ff6276d9f7a1f3d58c6657" dependencies = [ "proc-macro2", "quote", "sqlx-core", "sqlx-macros-core", - "syn 1.0.109", + "syn 2.0.81", ] [[package]] name = "sqlx-macros-core" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8" +checksum = "1804e8a7c7865599c9c79be146dc8a9fd8cc86935fa641d3ea58e5f0688abaa5" dependencies = [ "dotenvy", "either", - "heck 0.4.1", + "heck 0.5.0", "hex", "once_cell", "proc-macro2", @@ -7632,7 +8065,7 @@ dependencies = [ "sqlx-mysql", "sqlx-postgres", "sqlx-sqlite", - "syn 1.0.109", + "syn 2.0.81", "tempfile", "tokio", "url", @@ -7640,14 +8073,14 @@ dependencies = [ [[package]] name = "sqlx-mysql" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418" +checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a" dependencies = [ "atoi", - "base64 0.21.7", - "bigdecimal 0.3.1", - "bitflags 2.5.0", + "base64 0.22.1", + "bigdecimal", + "bitflags 2.6.0", "byteorder", "bytes", "chrono", @@ -7679,20 +8112,20 @@ dependencies = [ "stringprep", "thiserror", "tracing", - "uuid 1.8.0", + "uuid 1.11.0", "whoami", ] [[package]] name = "sqlx-postgres" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e" +checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8" dependencies = [ "atoi", - "base64 0.21.7", - "bigdecimal 0.3.1", - "bitflags 2.5.0", + "base64 0.22.1", + "bigdecimal", + "bitflags 2.6.0", "byteorder", "chrono", "crc", @@ -7721,15 +8154,15 @@ dependencies = [ "stringprep", "thiserror", "tracing", - "uuid 1.8.0", + "uuid 1.11.0", "whoami", ] [[package]] name = "sqlx-sqlite" -version = "0.7.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa" +checksum = "d5b2cf34a45953bfd3daaf3db0f7a7878ab9b7a6b91b422d24a7a9e4c857b680" dependencies = [ "atoi", "chrono", @@ -7743,11 +8176,11 @@ dependencies = [ "log", "percent-encoding", "serde", + "serde_urlencoded", "sqlx-core", "tracing", "url", - "urlencoding", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] @@ -7758,15 +8191,15 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stacker" -version = "0.1.15" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" +checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" dependencies = [ "cc", "cfg-if", "libc", "psm", - "winapi", + "windows-sys 0.59.0", ] [[package]] @@ -7775,48 +8208,27 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" -[[package]] -name = "streaming-decompression" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3" -dependencies = [ - "fallible-streaming-iterator", -] - -[[package]] -name = "streaming-iterator" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" - -[[package]] -name = "strength_reduce" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" - [[package]] name = "string_enum" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6960defec35d15d58331ffb8a315d551634f757fe139c7b3d6063cae88ec90f6" +checksum = "05e383308aebc257e7d7920224fa055c632478d92744eca77f99be8fa1545b90" dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "stringprep" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" +checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" dependencies = [ - "finl_unicode", "unicode-bidi", "unicode-normalization", + "unicode-properties", ] [[package]] @@ -7842,9 +8254,12 @@ dependencies = [ [[package]] name = "strum" -version = "0.26.2" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" +checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" +dependencies = [ + "strum_macros 0.26.4", +] [[package]] name = "strum_macros" @@ -7856,20 +8271,20 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "strum_macros" -version = "0.26.2" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" +checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", "rustversion", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -7884,19 +8299,32 @@ dependencies = [ [[package]] name = "subtle" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "swc_allocator" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76aa0eb65c0f39f9b6d82a7e5192c30f7ac9a78f084a21f270de1d8c600ca388" +dependencies = [ + "bumpalo", + "hashbrown 0.14.5", + "ptr_meta", + "rustc-hash 1.1.0", + "triomphe", +] [[package]] name = "swc_atoms" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d538eaaa6f085161d088a04cf0a3a5a52c5a7f2b3bd9b83f73f058b0ed357c0" +checksum = "bb6567e4e67485b3e7662b486f1565bdae54bd5b9d6b16b2ba1a9babb1e42125" dependencies = [ "hstr", "once_cell", - "rustc-hash", + "rustc-hash 1.1.0", "serde", ] @@ -7916,9 +8344,9 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.33.17" +version = "0.37.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "095c158fe55b36faeebb4274692643a6d7cdc5b7902e1d5968ddbe52b7de1d1c" +checksum = "12d0a8eaaf1606c9207077d75828008cb2dfb51b095a766bd2b72ef893576e31" dependencies = [ "ast_node", "better_scoped_tls", @@ -7928,10 +8356,11 @@ dependencies = [ "new_debug_unreachable", "num-bigint", "once_cell", - "rustc-hash", + "rustc-hash 1.1.0", "serde", "siphasher", - "sourcemap 6.4.1", + "sourcemap 9.0.0", + "swc_allocator", "swc_atoms", "swc_eq_ignore_macros", "swc_visit", @@ -7942,12 +8371,12 @@ dependencies = [ [[package]] name = "swc_config" -version = "0.1.11" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce837c5eae1cb200a310940de989fd9b3d12ed62d7752bc69b39ef8aa775ec04" +checksum = "4740e53eaf68b101203c1df0937d5161a29f3c13bceed0836ddfe245b72dd000" dependencies = [ "anyhow", - "indexmap 2.2.6", + "indexmap 2.6.0", "serde", "serde_json", "swc_cached", @@ -7956,23 +8385,23 @@ dependencies = [ [[package]] name = "swc_config_macro" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b2574f75082322a27d990116cd2a24de52945fc94172b24ca0b3e9e2a6ceb6b" +checksum = "7c5f56139042c1a95b54f5ca48baa0e0172d369bcc9d3d473dad1de36bae8399" dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "swc_ecma_ast" -version = "0.112.2" +version = "0.118.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "852a48a24a2533de88298c6b25355bc68fdee31ac21cb4fb8939b7001715353c" +checksum = "a6f866d12e4d519052b92a0a86d1ac7ff17570da1272ca0c89b3d6f802cd79df" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "is-macro", "num-bigint", "phf", @@ -7981,21 +8410,21 @@ dependencies = [ "string_enum", "swc_atoms", "swc_common", - "unicode-id", + "unicode-id-start", ] [[package]] name = "swc_ecma_codegen" -version = "0.148.3" +version = "0.155.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d79df3f8c5ed028fce5dc24acb83002c0854f8b9d7e893292aeee394a6b9eaf4" +checksum = "cc7641608ef117cfbef9581a99d02059b522fcca75e5244fa0cbbd8606689c6f" dependencies = [ "memchr", "num-bigint", "once_cell", - "rustc-hash", "serde", - "sourcemap 6.4.1", + "sourcemap 9.0.0", + "swc_allocator", "swc_atoms", "swc_common", "swc_ecma_ast", @@ -8005,21 +8434,21 @@ dependencies = [ [[package]] name = "swc_ecma_codegen_macros" -version = "0.7.4" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "394b8239424b339a12012ceb18726ed0244fce6bf6345053cb9320b2791dcaa5" +checksum = "859fabde36db38634f3fad548dd5e3410c1aebba1b67a3c63e67018fa57a0bca" dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "swc_ecma_loader" -version = "0.45.19" +version = "0.49.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c16051bce5421992a1b49350735bf4d110f761fd68ae7098af17a64ad639b8d" +checksum = "55fa3d55045b97894bfb04d38aff6d6302ac8a6a38e3bb3dfb0d20475c4974a9" dependencies = [ "anyhow", "pathdiff", @@ -8031,9 +8460,9 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.143.3" +version = "0.149.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ff55811ed5de14b05e9a2979bae2bce3c807582f559b4325948463265307d9" +checksum = "683dada14722714588b56481399c699378b35b2ba4deb5c4db2fb627a97fb54b" dependencies = [ "either", "new_debug_unreachable", @@ -8053,16 +8482,16 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_base" -version = "0.137.4" +version = "0.145.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "803bb435fdd532d5c931f0d487e48dbc94750d26c9336d79a6f1c04c62f08d93" +checksum = "65f21494e75d0bd8ef42010b47cabab9caaed8f2207570e809f6f4eb51a710d1" dependencies = [ "better_scoped_tls", - "bitflags 2.5.0", - "indexmap 2.2.6", + "bitflags 2.6.0", + "indexmap 2.6.0", "once_cell", "phf", - "rustc-hash", + "rustc-hash 1.1.0", "serde", "smallvec", "swc_atoms", @@ -8076,9 +8505,9 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_classes" -version = "0.126.4" +version = "0.134.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "486479e75907547d4c65ca6deed8faa465a2e9475cc9605be36a0e5eb609f578" +checksum = "3c3d884594385bea9405a2e1721151470d9a14d3ceec5dd773c0ca6894791601" dependencies = [ "swc_atoms", "swc_common", @@ -8090,24 +8519,24 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_macros" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17e309b88f337da54ef7fe4c5b99c2c522927071f797ee6c9fb8b6bf2d100481" +checksum = "500a1dadad1e0e41e417d633b3d6d5de677c9e0d3159b94ba3348436cdb15aab" dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "swc_ecma_transforms_proposal" -version = "0.171.4" +version = "0.179.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2822bc6c28bb1a96090a3b2caa28f45efbaecb333714d30868a2390eaae943f" +checksum = "79938ff510fc647febd8c6c3ef4143d099fdad87a223680e632623d056dae2dd" dependencies = [ "either", - "rustc-hash", + "rustc-hash 1.1.0", "serde", "smallvec", "swc_atoms", @@ -8122,17 +8551,18 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_react" -version = "0.183.4" +version = "0.191.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8984ebb8955116c426457a0c70b0aa9a08a06656e245781ff617a9cd1e289697" +checksum = "76c76d8b9792ce51401d38da0fa62158d61f6d80d16d68fe5b03ce4bf5fba383" dependencies = [ "base64 0.21.7", "dashmap", - "indexmap 2.2.6", + "indexmap 2.6.0", "once_cell", "serde", - "sha-1", + "sha1", "string_enum", + "swc_allocator", "swc_atoms", "swc_common", "swc_config", @@ -8146,9 +8576,9 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_typescript" -version = "0.188.4" +version = "0.198.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2e898fbab993abb60fb67009521908f2317f1d33f804e5b38d769f52e58572e" +checksum = "15455da4768f97186c40523e83600495210c11825d3a44db43383fd81eace88d" dependencies = [ "ryu-js", "serde", @@ -8163,14 +8593,15 @@ dependencies = [ [[package]] name = "swc_ecma_utils" -version = "0.127.4" +version = "0.134.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ff9e77ea18468895d26bd38656885860fede2acd24d1687f64363aaf8910441" +checksum = "029eec7dd485923a75b5a45befd04510288870250270292fc2c1b3a9e7547408" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.6.0", "num_cpus", "once_cell", - "rustc-hash", + "rustc-hash 1.1.0", + "ryu-js", "swc_atoms", "swc_common", "swc_ecma_ast", @@ -8181,10 +8612,11 @@ dependencies = [ [[package]] name = "swc_ecma_visit" -version = "0.98.2" +version = "0.104.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb71511a816c7c84ddc96e6939389be261caf20858486a5e76948551f110e1f" +checksum = "5b1c6802e68e51f336e8bc9644e9ff9da75d7da9c1a6247d532f2e908aa33e81" dependencies = [ + "new_debug_unreachable", "num-bigint", "swc_atoms", "swc_common", @@ -8195,48 +8627,47 @@ dependencies = [ [[package]] name = "swc_eq_ignore_macros" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "695a1d8b461033d32429b5befbf0ad4d7a2c4d6ba9cd5ba4e0645c615839e8e4" +checksum = "63db0adcff29d220c3d151c5b25c0eabe7e32dd936212b84cdaa1392e3130497" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "swc_macros_common" -version = "0.3.9" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50176cfc1cbc8bb22f41c6fe9d1ec53fbe057001219b5954961b8ad0f336fce9" +checksum = "f486687bfb7b5c560868f69ed2d458b880cebc9babebcb67e49f31b55c5bf847" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "swc_visit" -version = "0.5.8" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b27078d8571abe23aa52ef608dd1df89096a37d867cf691cbb4f4c392322b7c9" +checksum = "1ceb044142ba2719ef9eb3b6b454fce61ab849eb696c34d190f04651955c613d" dependencies = [ "either", - "swc_visit_macros", + "new_debug_unreachable", ] [[package]] name = "swc_visit_macros" -version = "0.5.9" +version = "0.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa8bb05975506741555ea4d10c3a3bdb0e2357cd58e1a4a4332b8ebb4b44c34d" +checksum = "92807d840959f39c60ce8a774a3f83e8193c658068e6d270dbe0a05e40e90b41" dependencies = [ "Inflector", - "pmutil", "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -8252,9 +8683,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.65" +version = "2.0.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106" +checksum = "198514704ca887dd5a1e408c6c6cdcba43672f9b4062e1b24aa34e74e6d7faae" dependencies = [ "proc-macro2", "quote", @@ -8270,7 +8701,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -8284,6 +8715,9 @@ name = "sync_wrapper" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +dependencies = [ + "futures-core", +] [[package]] name = "synstructure" @@ -8293,7 +8727,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -8302,7 +8736,7 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec7dddc5f0fee506baf8b9fdb989e242f17e4b11c61dfbb0635b705217199eea" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "byteorder", "enum-as-inner", "libc", @@ -8310,20 +8744,6 @@ dependencies = [ "walkdir", ] -[[package]] -name = "sysinfo" -version = "0.30.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "732ffa00f53e6b2af46208fba5718d9662a421049204e156328b66791ffa15ae" -dependencies = [ - "cfg-if", - "core-foundation-sys", - "libc", - "ntapi", - "once_cell", - "windows", -] - [[package]] name = "system-configuration" version = "0.5.1" @@ -8332,7 +8752,18 @@ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ "bitflags 1.3.2", "core-foundation", - "system-configuration-sys", + "system-configuration-sys 0.5.0", +] + +[[package]] +name = "system-configuration" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" +dependencies = [ + "bitflags 2.6.0", + "core-foundation", + "system-configuration-sys 0.6.0", ] [[package]] @@ -8345,6 +8776,157 @@ dependencies = [ "libc", ] +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tantivy" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8d0582f186c0a6d55655d24543f15e43607299425c5ad8352c242b914b31856" +dependencies = [ + "aho-corasick", + "arc-swap", + "base64 0.22.1", + "bitpacking", + "byteorder", + "census", + "crc32fast", + "crossbeam-channel", + "downcast-rs", + "fastdivide", + "fnv", + "fs4", + "htmlescape", + "itertools 0.12.1", + "levenshtein_automata", + "log", + "lru", + "lz4_flex", + "measure_time", + "memmap2", + "num_cpus", + "once_cell", + "oneshot", + "rayon", + "regex", + "rust-stemmers", + "rustc-hash 1.1.0", + "serde", + "serde_json", + "sketches-ddsketch", + "smallvec", + "tantivy-bitpacker", + "tantivy-columnar", + "tantivy-common", + "tantivy-fst", + "tantivy-query-grammar", + "tantivy-stacker", + "tantivy-tokenizer-api", + "tempfile", + "thiserror", + "time", + "uuid 1.11.0", + "winapi", +] + +[[package]] +name = "tantivy-bitpacker" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df" +dependencies = [ + "bitpacking", +] + +[[package]] +name = "tantivy-columnar" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e" +dependencies = [ + "downcast-rs", + "fastdivide", + "itertools 0.12.1", + "serde", + "tantivy-bitpacker", + "tantivy-common", + "tantivy-sstable", + "tantivy-stacker", +] + +[[package]] +name = "tantivy-common" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4" +dependencies = [ + "async-trait", + "byteorder", + "ownedbytes", + "serde", + "time", +] + +[[package]] +name = "tantivy-fst" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18" +dependencies = [ + "byteorder", + "regex-syntax 0.8.5", + "utf8-ranges", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82" +dependencies = [ + "nom", +] + +[[package]] +name = "tantivy-sstable" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e" +dependencies = [ + "tantivy-bitpacker", + "tantivy-common", + "tantivy-fst", + "zstd 0.13.2", +] + +[[package]] +name = "tantivy-stacker" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8" +dependencies = [ + "murmurhash32", + "rand_distr", + "tantivy-common", +] + +[[package]] +name = "tantivy-tokenizer-api" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04" +dependencies = [ + "serde", +] + [[package]] name = "tap" version = "1.0.1" @@ -8353,31 +8935,26 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.40" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" +checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" dependencies = [ "filetime", "libc", "xattr", ] -[[package]] -name = "target-features" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5" - [[package]] name = "tempfile" -version = "3.10.1" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" dependencies = [ "cfg-if", - "fastrand 2.1.0", - "rustix 0.38.34", - "windows-sys 0.52.0", + "fastrand 2.1.1", + "once_cell", + "rustix", + "windows-sys 0.59.0", ] [[package]] @@ -8400,22 +8977,22 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.61" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" +checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.61" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" +checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -8428,6 +9005,17 @@ dependencies = [ "once_cell", ] +[[package]] +name = "thrift" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" +dependencies = [ + "byteorder", + "integer-encoding", + "ordered-float", +] + [[package]] name = "tiberius" version = "0.12.2" @@ -8446,14 +9034,14 @@ dependencies = [ "once_cell", "pin-project-lite", "pretty-hex", - "rustls-native-certs", + "rustls-native-certs 0.6.3", "rustls-pemfile 1.0.4", "thiserror", "tokio", "tokio-rustls 0.24.1", "tokio-util", "tracing", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] @@ -8540,9 +9128,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" dependencies = [ "tinyvec_macros", ] @@ -8603,9 +9191,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.32.1" +version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "777d57dcc6bb4cf084e3212e1858447222aa451f21b5e2452497d9100da65b91" +checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" dependencies = [ "backtrace", "bytes", @@ -8623,24 +9211,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", -] - -[[package]] -name = "tokio-metrics" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcb585a0069b53171684e22d5255984ec30d1c7304fd0a4a9a603ffd8c765cdd" -dependencies = [ - "futures-util", - "pin-project-lite", - "tokio", + "syn 2.0.81", ] [[package]] @@ -8655,9 +9232,9 @@ dependencies = [ [[package]] name = "tokio-postgres" -version = "0.7.10" +version = "0.7.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d340244b32d920260ae7448cb72b6e238bddc3d4f7603394e7dd46ed8e48f5b8" +checksum = "3b5d3742945bc7d7f210693b0c58ae542c6fd47b17adbbda0885f3dcb34a6bdb" dependencies = [ "async-trait", "byteorder", @@ -8691,20 +9268,20 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.25.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" dependencies = [ - "rustls 0.22.4", + "rustls 0.23.15", "rustls-pki-types", "tokio", ] [[package]] name = "tokio-socks" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" +checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f" dependencies = [ "either", "futures-util", @@ -8714,9 +9291,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" +checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" dependencies = [ "futures-core", "pin-project-lite", @@ -8739,10 +9316,24 @@ dependencies = [ ] [[package]] -name = "tokio-util" -version = "0.7.11" +name = "tokio-tungstenite" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" +checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" +dependencies = [ + "futures-util", + "log", + "native-tls", + "tokio", + "tokio-native-tls", + "tungstenite", +] + +[[package]] +name = "tokio-util" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" dependencies = [ "bytes", "futures-core", @@ -8766,21 +9357,21 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.13" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba" +checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.13", + "toml_edit 0.22.22", ] [[package]] name = "toml_datetime" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" dependencies = [ "serde", ] @@ -8791,7 +9382,7 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.2.6", + "indexmap 2.6.0", "serde", "serde_spanned", "toml_datetime", @@ -8800,26 +9391,15 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.21.1" +version = "0.22.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" dependencies = [ - "indexmap 2.2.6", - "toml_datetime", - "winnow 0.5.40", -] - -[[package]] -name = "toml_edit" -version = "0.22.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" -dependencies = [ - "indexmap 2.2.6", + "indexmap 2.6.0", "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.8", + "winnow 0.6.20", ] [[package]] @@ -8848,6 +9428,21 @@ dependencies = [ "tokio", "tower-layer", "tower-service", +] + +[[package]] +name = "tower" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper 0.1.2", + "tokio", + "tower-layer", + "tower-service", "tracing", ] @@ -8874,10 +9469,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "bytes", "http 1.1.0", - "http-body 1.0.0", + "http-body 1.0.1", "http-body-util", "pin-project-lite", "tower-layer", @@ -8886,16 +9481,36 @@ dependencies = [ ] [[package]] -name = "tower-layer" -version = "0.3.2" +name = "tower-http" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" +checksum = "8437150ab6bbc8c5f0f519e3d5ed4aa883a83dd4cdd3d1b21f9482936046cb97" +dependencies = [ + "async-compression 0.4.16", + "bitflags 2.6.0", + "bytes", + "futures-core", + "http 1.1.0", + "http-body 1.0.1", + "http-body-util", + "pin-project-lite", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" [[package]] name = "tower-service" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" @@ -8909,6 +9524,18 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "tracing-appender" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" +dependencies = [ + "crossbeam-channel", + "thiserror", + "time", + "tracing-subscriber", +] + [[package]] name = "tracing-attributes" version = "0.1.27" @@ -8917,7 +9544,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] @@ -8975,12 +9602,12 @@ dependencies = [ [[package]] name = "tracing-loki" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49bbc87d08020d7c2a9f4bb0b7d10da5381d3867f8ae57fcc54621b34567e963" +checksum = "fea6023f9fe4b69267ccd3ed7d203d931c43c5f82dbaa0f07202bc17193a5f43" dependencies = [ "loki-api", - "reqwest 0.11.20", + "reqwest 0.12.8", "serde", "serde_json", "snap", @@ -9027,20 +9654,87 @@ dependencies = [ [[package]] name = "triomphe" -version = "0.1.11" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" +checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85" dependencies = [ "serde", "stable_deref_trait", ] +[[package]] +name = "trust-dns-proto" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna 0.4.0", + "ipnet", + "once_cell", + "rand 0.8.5", + "serde", + "smallvec", + "thiserror", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "trust-dns-resolver" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" +dependencies = [ + "cfg-if", + "futures-util", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot", + "rand 0.8.5", + "resolv-conf", + "serde", + "smallvec", + "thiserror", + "tokio", + "tracing", + "trust-dns-proto", +] + [[package]] name = "try-lock" version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +[[package]] +name = "tungstenite" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http 1.1.0", + "httparse", + "log", + "native-tls", + "rand 0.8.5", + "sha1", + "thiserror", + "utf-8", +] + [[package]] name = "twox-hash" version = "1.6.3" @@ -9087,7 +9781,7 @@ dependencies = [ "regress", "schemars", "serde_json", - "syn 2.0.65", + "syn 2.0.81", "thiserror", "unicode-ident", ] @@ -9104,19 +9798,19 @@ dependencies = [ "serde", "serde_json", "serde_tokenstream", - "syn 2.0.65", + "syn 2.0.81", "typify-impl", ] [[package]] name = "ulid" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34778c17965aa2a08913b57e1f34db9b4a63f5de31768b55bf20d2795f921259" +checksum = "04f903f293d11f31c0c29e4148f6dc0d033a7f80cebc0282bea147611667d289" dependencies = [ "getrandom 0.2.15", "rand 0.8.5", - "uuid 1.8.0", + "uuid 1.11.0", "web-time", ] @@ -9186,42 +9880,39 @@ dependencies = [ [[package]] name = "unicase" -version = "2.7.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" -dependencies = [ - "version_check", -] +checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" [[package]] name = "unicode-bidi" -version = "0.3.15" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" +checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" [[package]] name = "unicode-id" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f" +checksum = "10103c57044730945224467c09f71a4db0071c123a0648cc3e818913bde6b561" [[package]] name = "unicode-id-start" -version = "1.1.2" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8f73150333cb58412db36f2aca8f2875b013049705cc77b94ded70a1ab1f5da" +checksum = "97e2a3c5fc9de285c0e805d98eba666adb4b2d9e1049ce44821ff7707cc34e91" [[package]] name = "unicode-ident" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" [[package]] name = "unicode-normalization" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" +checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" dependencies = [ "tinyvec", ] @@ -9236,31 +9927,28 @@ dependencies = [ ] [[package]] -name = "unicode-reverse" -version = "1.0.9" +name = "unicode-properties" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76" -dependencies = [ - "unicode-segmentation", -] +checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" [[package]] name = "unicode-segmentation" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" [[package]] name = "unicode-width" -version = "0.1.12" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "unicode-xid" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "unicode_categories" @@ -9270,9 +9958,9 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" [[package]] name = "unicode_names2" -version = "1.2.2" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "addeebf294df7922a1164f729fb27ebbbcea99cc32b3bf08afab62757f707677" +checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd" dependencies = [ "phf", "unicode_names2_generator", @@ -9280,9 +9968,9 @@ dependencies = [ [[package]] name = "unicode_names2_generator" -version = "1.2.2" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f444b8bba042fe3c1251ffaca35c603f2dc2ccc08d595c65a8c4f76f3e8426c0" +checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e" dependencies = [ "getopts", "log", @@ -9310,32 +9998,31 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "2.9.7" +version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd" +checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a" dependencies = [ "base64 0.22.1", "flate2", "log", "native-tls", "once_cell", - "rustls 0.22.4", + "rustls 0.23.15", "rustls-pki-types", - "rustls-webpki 0.102.4", "serde", "serde_json", "url", - "webpki-roots 0.26.1", + "webpki-roots 0.26.6", ] [[package]] name = "url" -version = "2.5.0" +version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" dependencies = [ "form_urlencoded", - "idna", + "idna 0.5.0", "percent-encoding", "serde", ] @@ -9348,11 +10035,10 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" [[package]] name = "urlpattern" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9bd5ff03aea02fa45b13a7980151fe45009af1980ba69f651ec367121a31609" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" dependencies = [ - "derive_more", "regex", "serde", "unic-ucd-ident", @@ -9360,10 +10046,22 @@ dependencies = [ ] [[package]] -name = "utf8parse" -version = "0.2.1" +name = "utf-8" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8-ranges" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" @@ -9376,9 +10074,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.8.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" dependencies = [ "getrandom 0.2.15", "serde", @@ -9386,14 +10084,19 @@ dependencies = [ [[package]] name = "v8" -version = "0.83.2" +version = "0.106.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f6c8a960dd2eb74b22eda64f7e9f3d1688f82b80202828dc0425ebdeda826ef" +checksum = "a381badc47c6f15acb5fe0b5b40234162349ed9d4e4fd7c83a7f5547c0fc69c5" dependencies = [ - "bitflags 2.5.0", + "bindgen 0.69.5", + "bitflags 2.6.0", "fslock", + "gzip-header", + "home", + "miniz_oxide 0.7.4", "once_cell", - "which 5.0.0", + "paste", + "which 6.0.3", ] [[package]] @@ -9416,9 +10119,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vsimd" @@ -9471,9 +10174,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" [[package]] name = "wasm-bindgen" -version = "0.2.89" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -9481,24 +10184,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.89" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.39" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" +checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" dependencies = [ "cfg-if", "js-sys", @@ -9508,9 +10211,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.89" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -9518,28 +10221,28 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.89" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.89" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "wasm-bindgen-test" -version = "0.3.39" +version = "0.3.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cf9242c0d27999b831eae4767b2a146feb0b27d332d553e605864acd2afd403" +checksum = "d9bf62a58e0780af3e852044583deee40983e5886da43a271dd772379987667b" dependencies = [ "console_error_panic_hook", "js-sys", @@ -9551,33 +10254,20 @@ dependencies = [ [[package]] name = "wasm-bindgen-test-macro" -version = "0.3.39" +version = "0.3.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "794645f5408c9a039fd09f4d113cdfb2e7eba5ff1956b07bcf701cf4b394fe89" +checksum = "b7f89739351a2e03cb94beb799d47fb2cac01759b40ec441f7de39b00cbf7ef0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "wasm-streams" -version = "0.3.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "wasm-streams" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" +checksum = "4e072d4e72f700fb3443d8fe94a39315df013eef1104903cdb0a2abd322bbecd" dependencies = [ "futures-util", "js-sys", @@ -9597,9 +10287,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.66" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" +checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" dependencies = [ "js-sys", "wasm-bindgen", @@ -9623,9 +10313,9 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.1" +version = "0.26.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" +checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" dependencies = [ "rustls-pki-types", ] @@ -9639,33 +10329,38 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.34", + "rustix", ] [[package]] name = "which" -version = "5.0.0" +version = "6.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14" +checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" dependencies = [ "either", "home", - "once_cell", - "rustix 0.38.34", - "windows-sys 0.48.0", + "rustix", + "winsafe", ] [[package]] name = "whoami" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" +checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" dependencies = [ - "redox_syscall 0.4.1", + "redox_syscall 0.5.7", "wasite", "web-sys", ] +[[package]] +name = "widestring" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" + [[package]] name = "winapi" version = "0.3.9" @@ -9684,11 +10379,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -9699,7 +10394,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "axum", @@ -9711,11 +10406,12 @@ dependencies = [ "gethostname", "git-version", "lazy_static", + "object_store", "once_cell", - "pg-embed", "prometheus", + "quote", "rand 0.8.5", - "reqwest 0.12.4", + "reqwest 0.12.8", "rsmq_async", "serde", "serde_json", @@ -9725,21 +10421,21 @@ dependencies = [ "tikv-jemalloc-sys", "tikv-jemallocator", "tokio", - "tokio-metrics", "tracing", "url", - "uuid 1.8.0", + "uuid 1.11.0", "windmill-api", "windmill-api-client", "windmill-common", "windmill-git-sync", + "windmill-indexer", "windmill-queue", "windmill-worker", ] [[package]] name = "windmill-api" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "argon2", @@ -9749,37 +10445,41 @@ dependencies = [ "async-stripe", "async_zip", "axum", + "base32", "base64 0.21.7", "bytes", "candle-core", "candle-nn", "candle-transformers", "chrono", - "chrono-tz 0.9.0", + "chrono-tz 0.10.0", "cookie 0.17.0", - "crc", "cron", + "datafusion", "futures", "git-version", "hex", "hf-hub", "hmac", "http 1.1.0", - "hyper 1.3.1", + "hyper 1.5.0", "itertools 0.13.0", + "jsonwebtoken", "lazy_static", "magic-crypt", + "mail-parser", + "matchit", "mime_guess", + "native-tls", "object_store", "openidconnect", + "openssl", "pin-project", - "polars", - "polars-io", "prometheus", "quick_cache", "rand 0.8.5", "regex", - "reqwest 0.12.4", + "reqwest 0.12.8", "rsa 0.7.2", "rsmq_async", "rust-embed", @@ -9795,18 +10495,23 @@ dependencies = [ "tinyvector", "tokenizers", "tokio", + "tokio-native-tls", "tokio-tar", + "tokio-tungstenite", "tokio-util", - "tower", + "tower 0.5.1", "tower-cookies", - "tower-http", + "tower-http 0.5.2", "tracing", "tracing-subscriber", + "ulid", + "url", "urlencoding", - "uuid 1.8.0", + "uuid 1.11.0", "windmill-audit", "windmill-common", "windmill-git-sync", + "windmill-indexer", "windmill-parser", "windmill-parser-py-imports", "windmill-parser-ts", @@ -9815,7 +10520,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.333.2" +version = "1.410.3" dependencies = [ "base64 0.21.7", "chrono", @@ -9824,16 +10529,16 @@ dependencies = [ "progenitor", "progenitor-client", "rand 0.8.5", - "reqwest 0.11.20", + "reqwest 0.11.27", "serde", "serde_json", "syn 1.0.109", - "uuid 1.8.0", + "uuid 1.11.0", ] [[package]] name = "windmill-audit" -version = "1.333.2" +version = "1.410.3" dependencies = [ "chrono", "serde", @@ -9846,20 +10551,25 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", + "async-stream", "aws-config", "aws-sdk-sts", "axum", "bytes", "chrono", + "const_format", + "crc", "cron", + "futures-core", + "gethostname", "git-version", "hex", "hmac", - "hyper 1.3.1", - "indexmap 2.2.6", + "hyper 1.5.0", + "indexmap 2.6.0", "itertools 0.13.0", "lazy_static", "magic-crypt", @@ -9868,23 +10578,26 @@ dependencies = [ "prometheus", "rand 0.8.5", "regex", - "reqwest 0.12.4", + "reqwest 0.12.8", "serde", "serde_json", "sha2 0.10.8", "sqlx", "thiserror", + "tikv-jemalloc-ctl", "tokio", "tracing", + "tracing-appender", "tracing-flame", "tracing-loki", "tracing-subscriber", - "uuid 1.8.0", + "uuid 1.11.0", + "windmill-macros", ] [[package]] name = "windmill-git-sync" -version = "1.333.2" +version = "1.410.3" dependencies = [ "regex", "rsmq_async", @@ -9892,33 +10605,69 @@ dependencies = [ "serde_json", "sqlx", "tracing", - "uuid 1.8.0", + "uuid 1.11.0", "windmill-common", "windmill-queue", ] [[package]] -name = "windmill-parser" -version = "1.333.2" +name = "windmill-indexer" +version = "1.410.3" dependencies = [ + "anyhow", + "bytes", + "chrono", + "futures", + "lazy_static", + "object_store", + "serde", + "serde_json", + "sqlx", + "tantivy", + "tempfile", + "tokio", + "tokio-tar", + "tracing", + "uuid 1.11.0", + "windmill-common", +] + +[[package]] +name = "windmill-macros" +version = "1.410.3" +dependencies = [ + "itertools 0.13.0", + "lazy_static", + "proc-macro2", + "quote", + "regex", + "syn 2.0.81", +] + +[[package]] +name = "windmill-parser" +version = "1.410.3" +dependencies = [ + "convert_case 0.6.0", "serde", "serde_json", ] [[package]] name = "windmill-parser-bash" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "lazy_static", "regex", + "regex-lite", "serde_json", "windmill-parser", ] [[package]] name = "windmill-parser-go" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "gosyn", @@ -9930,32 +10679,30 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "lazy_static", "regex", + "regex-lite", "serde_json", "windmill-parser", ] [[package]] name = "windmill-parser-php" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", - "convert_case 0.6.0", "itertools 0.13.0", - "lazy_static", "php-parser-rs", - "regex", "serde_json", "windmill-parser", ] [[package]] name = "windmill-parser-py" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "itertools 0.13.0", @@ -9966,7 +10713,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "async-recursion", @@ -9974,6 +10721,7 @@ dependencies = [ "lazy_static", "phf", "regex", + "regex-lite", "rustpython-parser", "serde_json", "sqlx", @@ -9981,23 +10729,40 @@ dependencies = [ "windmill-parser", ] +[[package]] +name = "windmill-parser-rust" +version = "1.410.3" +dependencies = [ + "anyhow", + "convert_case 0.6.0", + "itertools 0.13.0", + "lazy_static", + "pulldown-cmark", + "quote", + "regex", + "serde_json", + "syn 2.0.81", + "toml 0.7.8", + "windmill-parser", +] + [[package]] name = "windmill-parser-sql" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "lazy_static", "regex", + "regex-lite", "serde_json", "windmill-parser", ] [[package]] name = "windmill-parser-ts" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", - "convert_case 0.6.0", "lazy_static", "regex", "serde-wasm-bindgen", @@ -10006,13 +10771,14 @@ dependencies = [ "swc_ecma_ast", "swc_ecma_parser", "swc_ecma_visit", + "triomphe", "wasm-bindgen", "windmill-parser", ] [[package]] name = "windmill-parser-wasm" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "getrandom 0.2.15", @@ -10025,20 +10791,32 @@ dependencies = [ "windmill-parser-graphql", "windmill-parser-php", "windmill-parser-py", + "windmill-parser-rust", "windmill-parser-sql", "windmill-parser-ts", + "windmill-parser-yaml", +] + +[[package]] +name = "windmill-parser-yaml" +version = "1.410.3" +dependencies = [ + "anyhow", + "serde_json", + "windmill-parser", + "yaml-rust", ] [[package]] name = "windmill-queue" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "async-recursion", "axum", - "bigdecimal 0.4.3", + "bigdecimal", "chrono", - "chrono-tz 0.9.0", + "chrono-tz 0.10.0", "cron", "futures-core", "hex", @@ -10047,7 +10825,7 @@ dependencies = [ "lazy_static", "prometheus", "regex", - "reqwest 0.12.4", + "reqwest 0.12.8", "rsmq_async", "serde", "serde_json", @@ -10057,16 +10835,15 @@ dependencies = [ "tokio", "tracing", "ulid", - "uuid 1.8.0", + "uuid 1.11.0", "windmill-audit", "windmill-common", ] [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.333.2" +version = "1.410.3" dependencies = [ - "serde", "wasm-bindgen", "wasm-bindgen-test", "windmill-parser", @@ -10075,7 +10852,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.333.2" +version = "1.410.3" dependencies = [ "anyhow", "async-recursion", @@ -10089,6 +10866,7 @@ dependencies = [ "deno_console", "deno_core", "deno_fetch", + "deno_net", "deno_tls", "deno_url", "deno_web", @@ -10102,6 +10880,7 @@ dependencies = [ "itertools 0.13.0", "jsonwebtoken", "lazy_static", + "mappable-rc", "mysql_async", "native-tls", "nix", @@ -10113,13 +10892,14 @@ dependencies = [ "prometheus", "rand 0.8.5", "regex", - "reqwest 0.12.4", + "reqwest 0.12.8", "rsmq_async", "rust_decimal", "serde", "serde_json", "sha2 0.10.8", "sqlx", + "swc_ecma_parser", "tar", "tiberius", "tokio", @@ -10127,7 +10907,7 @@ dependencies = [ "tokio-util", "tracing", "urlencoding", - "uuid 1.8.0", + "uuid 1.11.0", "windmill-audit", "windmill-common", "windmill-git-sync", @@ -10138,19 +10918,13 @@ dependencies = [ "windmill-parser-php", "windmill-parser-py", "windmill-parser-py-imports", + "windmill-parser-rust", "windmill-parser-sql", "windmill-parser-ts", + "windmill-parser-yaml", "windmill-queue", -] - -[[package]] -name = "windows" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" -dependencies = [ - "windows-core", - "windows-targets 0.52.5", + "yaml-rust", + "zstd 0.12.4", ] [[package]] @@ -10159,7 +10933,37 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" dependencies = [ - "windows-targets 0.52.5", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-registry" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +dependencies = [ + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-result" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-strings" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +dependencies = [ + "windows-result", + "windows-targets 0.52.6", ] [[package]] @@ -10177,7 +10981,16 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.5", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", ] [[package]] @@ -10197,18 +11010,18 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.5", - "windows_aarch64_msvc 0.52.5", - "windows_i686_gnu 0.52.5", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", "windows_i686_gnullvm", - "windows_i686_msvc 0.52.5", - "windows_x86_64_gnu 0.52.5", - "windows_x86_64_gnullvm 0.52.5", - "windows_x86_64_msvc 0.52.5", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -10219,9 +11032,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_msvc" @@ -10231,9 +11044,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_i686_gnu" @@ -10243,15 +11056,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" [[package]] name = "windows_i686_gnullvm" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_msvc" @@ -10261,9 +11074,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_x86_64_gnu" @@ -10273,9 +11086,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnullvm" @@ -10285,9 +11098,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_msvc" @@ -10297,9 +11110,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" -version = "0.52.5" +version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" @@ -10312,9 +11125,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.6.8" +version = "0.6.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d" +checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" dependencies = [ "memchr", ] @@ -10330,14 +11143,10 @@ dependencies = [ ] [[package]] -name = "winreg" -version = "0.52.0" +name = "winsafe" +version = "0.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] +checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" [[package]] name = "wyz" @@ -10355,8 +11164,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" dependencies = [ "libc", - "linux-raw-sys 0.4.14", - "rustix 0.38.34", + "linux-raw-sys", + "rustix", ] [[package]] @@ -10365,12 +11174,6 @@ version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" -[[package]] -name = "xxhash-rust" -version = "0.8.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "927da81e25be1e1a2901d59b81b37dd2efd1fc9c9345a55007f09bf5a2d3ee03" - [[package]] name = "xz2" version = "0.1.7" @@ -10380,6 +11183,15 @@ dependencies = [ "lzma-sys", ] +[[package]] +name = "yaml-rust" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +dependencies = [ + "linked-hash-map", +] + [[package]] name = "yansi" version = "0.5.1" @@ -10388,9 +11200,9 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" [[package]] name = "yoke" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4" +checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" dependencies = [ "serde", "stable_deref_trait", @@ -10400,62 +11212,63 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8" +checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", "synstructure", ] [[package]] name = "zerocopy" -version = "0.7.34" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ + "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.34" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", ] [[package]] name = "zerofrom" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "655b0814c5c0b19ade497851070c640773304939a6c0fd5f5fb43da0696d05b7" +checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3" +checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.65", + "syn 2.0.81", "synstructure", ] [[package]] name = "zeroize" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] name = "zip" @@ -10463,18 +11276,9 @@ version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" dependencies = [ - "aes 0.8.4", "byteorder", - "bzip2", - "constant_time_eq", "crc32fast", "crossbeam-utils", - "flate2", - "hmac", - "pbkdf2", - "sha1", - "time", - "zstd 0.11.2+zstd.1.5.2", ] [[package]] @@ -10488,11 +11292,20 @@ dependencies = [ [[package]] name = "zstd" -version = "0.13.1" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a" +checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" dependencies = [ - "zstd-safe 7.1.0", + "zstd-safe 6.0.6", +] + +[[package]] +name = "zstd" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" +dependencies = [ + "zstd-safe 7.2.1", ] [[package]] @@ -10507,18 +11320,28 @@ dependencies = [ [[package]] name = "zstd-safe" -version = "7.1.0" +version = "6.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" +checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" +dependencies = [ + "libc", + "zstd-sys", +] + +[[package]] +name = "zstd-safe" +version = "7.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.10+zstd.1.5.6" +version = "2.0.12+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" +checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13" dependencies = [ "cc", "pkg-config", diff --git a/pkgs/by-name/wi/windmill/package.nix b/pkgs/by-name/wi/windmill/package.nix index d576f2699bf6..b6f4d07bd649 100644 --- a/pkgs/by-name/wi/windmill/package.nix +++ b/pkgs/by-name/wi/windmill/package.nix @@ -1,36 +1,37 @@ -{ lib -, rustPlatform -, fetchFromGitHub -, buildNpmPackage -, bash -, cmake -, cairo -, deno -, fetchurl -, go -, lld -, makeWrapper -, nsjail -, openssl -, pango -, pixman -, giflib -, pkg-config -, python3 -, rustfmt -, stdenv -, swagger-cli +{ + lib, + rustPlatform, + fetchFromGitHub, + buildNpmPackage, + bash, + cmake, + cairo, + deno, + fetchurl, + go, + lld, + makeWrapper, + nsjail, + openssl, + pango, + pixman, + giflib, + pkg-config, + python3, + rustfmt, + stdenv, + swagger-cli, }: let pname = "windmill"; - version = "1.333.2"; + version = "1.410.3"; src = fetchFromGitHub { owner = "windmill-labs"; repo = "windmill"; rev = "v${version}"; - hash = "sha256-QwjmkKe3jxgXQjj/+WlhOdGOXZsrYdRmHtVakoNqYtI="; + hash = "sha256-QPabzgSs+zxgI2dHcMY9ki4jEwm5jQbzwSMaIfBbFG8="; }; pythonEnv = python3.withPackages (ps: [ ps.pip-tools ]); @@ -42,18 +43,26 @@ let sourceRoot = "${src.name}/frontend"; - npmDepsHash = "sha256-I9h2MvngsluWYaoOP44ufE82SFW+8yhNI2qQNi6oyZE="; + npmDepsHash = "sha256-3AeDGd/4dGHm8kGKEH3sqNOuQ1LPjP5n4qOEaqVMm0w="; # without these you get a # FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory - env.NODE_OPTIONS="--max-old-space-size=8192"; + env.NODE_OPTIONS = "--max-old-space-size=8192"; preBuild = '' npm run generate-backend-client ''; - buildInputs = [ pixman cairo pango giflib ]; - nativeBuildInputs = [ python3 pkg-config ]; + buildInputs = [ + pixman + cairo + pango + giflib + ]; + nativeBuildInputs = [ + python3 + pkg-config + ]; installPhase = '' mkdir -p $out/share @@ -69,11 +78,14 @@ rustPlatform.buildRustPackage { SQLX_OFFLINE = "true"; RUSTY_V8_ARCHIVE = let - fetch_librusty_v8 = args: + fetch_librusty_v8 = + args: fetchurl { name = "librusty_v8-${args.version}"; url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a"; - sha256 = args.shas.${stdenv.hostPlatform.system} or (throw "Unsupported platform ${stdenv.hostPlatform.system}"); + sha256 = + args.shas.${stdenv.hostPlatform.system} + or (throw "Unsupported platform ${stdenv.hostPlatform.system}"); meta = { inherit (args) version; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; @@ -94,8 +106,6 @@ rustPlatform.buildRustPackage { cargoLock = { lockFile = ./Cargo.lock; outputHashes = { - "archiver-rs-0.5.1" = "sha256-ZIik0mMABmhdx/ullgbOrKH5GAtqcOKq5A6vB7aBSjk="; - "pg-embed-0.7.2" = "sha256-R/SrlzNK7aAOyXVTQ/WPkiQb6FyMg9tpsmPTsiossDY="; "php-parser-rs-0.1.3" = "sha256-ZeI3KgUPmtjlRfq6eAYveqt8Ay35gwj6B9iOQRjQa9A="; "progenitor-0.3.0" = "sha256-F6XRZFVIN6/HfcM8yI/PyNke45FL7jbcznIiqj22eIQ="; "rustpython-ast-0.3.1" = "sha256-q9N+z3F6YICQuUMp3a10OS792tCq0GiSSlkcaLxi3Gs="; @@ -148,11 +158,19 @@ rustPlatform.buildRustPackage { doCheck = false; postFixup = '' - patchelf --set-rpath ${lib.makeLibraryPath [openssl]} $out/bin/windmill + patchelf --set-rpath ${lib.makeLibraryPath [ openssl ]} $out/bin/windmill wrapProgram "$out/bin/windmill" \ - --prefix PATH : ${lib.makeBinPath [go pythonEnv deno nsjail bash]} \ - --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [stdenv.cc.cc.lib]} \ + --prefix PATH : ${ + lib.makeBinPath [ + go + pythonEnv + deno + nsjail + bash + ] + } \ + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ stdenv.cc.cc.lib ]} \ --set PYTHON_PATH "${pythonEnv}/bin/python3" \ --set GO_PATH "${go}/bin/go" \ --set DENO_PATH "${deno}/bin/deno" \ @@ -164,9 +182,16 @@ rustPlatform.buildRustPackage { description = "Open-source developer platform to turn scripts into workflows and UIs"; homepage = "https://windmill.dev"; license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ dit7ya happysalada ]; + maintainers = with lib.maintainers; [ + dit7ya + happysalada + ]; mainProgram = "windmill"; # limited by librusty_v8 - platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; + # nsjail not available on darwin + platforms = [ + "x86_64-linux" + "aarch64-linux" + ]; }; } From 3add64b034f745c18c4548eb72394d71a71c838c Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sat, 19 Oct 2024 15:26:39 +0200 Subject: [PATCH 90/99] python312Packages.sotabenchapi: init at 0.0.16 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> --- .../python-modules/sotabenchapi/default.nix | 52 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 54 insertions(+) create mode 100644 pkgs/development/python-modules/sotabenchapi/default.nix diff --git a/pkgs/development/python-modules/sotabenchapi/default.nix b/pkgs/development/python-modules/sotabenchapi/default.nix new file mode 100644 index 000000000000..b8a1b0b918da --- /dev/null +++ b/pkgs/development/python-modules/sotabenchapi/default.nix @@ -0,0 +1,52 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, + click, + requests, + tabulate, +}: + +let + version = "0.0.16"; + pname = "sotabenchapi"; +in +buildPythonPackage { + inherit pname version; + pyproject = true; + + src = fetchPypi { + inherit pname version; + hash = "sha256-thbVH4aLmEgi8K17PkmbUg4nHqGj+dEiXPDILjvQMzk="; + }; + + # requirements.txt is missing in the Pypi archive and this makes the setup.py script fails + postPatch = '' + touch requirements.txt + ''; + + build-system = [ + setuptools + ]; + + dependencies = [ + click + requests + tabulate + ]; + + pythonImportsCheck = [ + "sotabenchapi" + ]; + + # No tests + doCheck = false; + + meta = { + description = "Easily benchmark Machine Learning models on selected tasks and datasets"; + homepage = "https://pypi.org/project/sotabenchapi/"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drupol ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 65af3652b187..3b0a36a5925e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14649,6 +14649,8 @@ self: super: with self; { sortedcontainers = callPackage ../development/python-modules/sortedcontainers { }; + sotabenchapi = callPackage ../development/python-modules/sotabenchapi { }; + soundcard = callPackage ../development/python-modules/soundcard { }; soundcloud-v2 = callPackage ../development/python-modules/soundcloud-v2 { }; From 1f8a363d2966628423d23419b3380f3c5085526d Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 18 Oct 2024 09:06:43 +0200 Subject: [PATCH 91/99] python312Packages.torchbench: init at 0.0.31 --- .../python-modules/torchbench/default.nix | 58 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 60 insertions(+) create mode 100644 pkgs/development/python-modules/torchbench/default.nix diff --git a/pkgs/development/python-modules/torchbench/default.nix b/pkgs/development/python-modules/torchbench/default.nix new file mode 100644 index 000000000000..3593ae792130 --- /dev/null +++ b/pkgs/development/python-modules/torchbench/default.nix @@ -0,0 +1,58 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, + numpy, + opencv4, + sotabenchapi, + torch, + torchvision, + tqdm, +}: + +let + version = "0.0.31"; + pname = "torchbench"; +in +buildPythonPackage { + inherit pname version; + pyproject = true; + + src = fetchPypi { + inherit pname version; + hash = "sha256-EBZzcnRT50KREIOPrr/OZTJ4639ZUEejcelh3QSBcZ8="; + }; + + # requirements.txt is missing in the Pypi archive and this makes the setup.py script fails + postPatch = '' + touch requirements.txt + ''; + + build-system = [ + setuptools + ]; + + dependencies = [ + numpy + opencv4 + sotabenchapi + torch + torchvision + tqdm + ]; + + pythonImportsCheck = [ + "torchbench" + ]; + + # No tests + doCheck = false; + + meta = { + description = "Easily benchmark machine learning models in PyTorch"; + homepage = "https://github.com/paperswithcode/torchbench"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drupol ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3b0a36a5925e..3a65e161ce41 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15778,6 +15778,8 @@ self: super: with self; { triton = self.triton-bin; }; + torchbench = callPackage ../development/python-modules/torchbench { }; + torchsnapshot = callPackage ../development/python-modules/torchsnapshot { }; torchWithCuda = self.torch.override { From 6b5a386fb5ec97539e3d9923a789700dd658cc77 Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Sun, 20 Oct 2024 13:49:24 -0400 Subject: [PATCH 92/99] veilid: 0.3.4 -> 0.4.0 --- pkgs/tools/networking/veilid/Cargo.lock | 805 +++++++---------------- pkgs/tools/networking/veilid/default.nix | 4 +- 2 files changed, 223 insertions(+), 586 deletions(-) diff --git a/pkgs/tools/networking/veilid/Cargo.lock b/pkgs/tools/networking/veilid/Cargo.lock index 99ce44dae7d4..15b292710468 100644 --- a/pkgs/tools/networking/veilid/Cargo.lock +++ b/pkgs/tools/networking/veilid/Cargo.lock @@ -39,17 +39,6 @@ dependencies = [ "opaque-debug", ] -[[package]] -name = "ahash" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" -dependencies = [ - "getrandom", - "once_cell", - "version_check", -] - [[package]] name = "ahash" version = "0.8.11" @@ -60,7 +49,7 @@ dependencies = [ "getrandom", "once_cell", "version_check", - "zerocopy 0.7.35", + "zerocopy", ] [[package]] @@ -218,14 +207,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fb4009533e8ff8f1450a5bcbc30f4242a1d34442221f72314bea1f5dc9c7f89" dependencies = [ "clipboard-win", - "core-graphics", - "image", "log", "objc2", "objc2-app-kit", "objc2-foundation", "parking_lot 0.12.3", - "windows-sys 0.48.0", "x11rb", ] @@ -307,7 +293,7 @@ checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" dependencies = [ "async-channel 2.3.1", "async-executor", - "async-io 2.3.3", + "async-io 2.3.4", "async-lock 3.4.0", "blocking", "futures-lite 2.3.0", @@ -336,9 +322,9 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.3" +version = "2.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" +checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" dependencies = [ "async-lock 3.4.0", "cfg-if 1.0.0", @@ -346,11 +332,11 @@ dependencies = [ "futures-io", "futures-lite 2.3.0", "parking", - "polling 3.7.2", + "polling 3.7.3", "rustix 0.38.34", "slab", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -392,11 +378,11 @@ dependencies = [ [[package]] name = "async-signal" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfb3634b73397aa844481f814fad23bbf07fdb0eabec10f2eb95e58944b1ec32" +checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" dependencies = [ - "async-io 2.3.3", + "async-io 2.3.4", "async-lock 3.4.0", "atomic-waker", "cfg-if 1.0.0", @@ -405,7 +391,7 @@ dependencies = [ "rustix 0.38.34", "signal-hook-registry", "slab", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -470,7 +456,7 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -500,7 +486,7 @@ checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -659,12 +645,6 @@ dependencies = [ "rustc-demangle", ] -[[package]] -name = "base64" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" - [[package]] name = "base64" version = "0.21.7" @@ -711,9 +691,6 @@ name = "bitflags" version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" -dependencies = [ - "serde", -] [[package]] name = "blake2" @@ -745,7 +722,7 @@ checksum = "e0b121a9fe0df916e362fb3271088d071159cdf11db0e4182d02152850756eff" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -819,24 +796,12 @@ version = "3.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" -[[package]] -name = "bytemuck" -version = "1.16.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83" - [[package]] name = "byteorder" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" -[[package]] -name = "byteorder-lite" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" - [[package]] name = "bytes" version = "1.7.1" @@ -863,9 +828,12 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.7" +version = "1.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" +checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189" +dependencies = [ + "shlex", +] [[package]] name = "cesu8" @@ -894,12 +862,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "cfg_aliases" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" - [[package]] name = "cfg_aliases" version = "0.2.1" @@ -992,9 +954,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.13" +version = "4.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc" +checksum = "11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc" dependencies = [ "clap_builder", "clap_derive", @@ -1002,9 +964,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.13" +version = "4.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99" +checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" dependencies = [ "anstream", "anstyle", @@ -1022,7 +984,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -1095,15 +1057,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23738e11972c7643e4ec947840fc463b6a571afcd3e735bdfce7d03c7a784aca" dependencies = [ "async-trait", - "json5", "lazy_static", "nom", "pathdiff", - "ron 0.7.1", - "rust-ini 0.18.0", "serde", - "serde_json", - "toml 0.5.11", "yaml-rust", ] @@ -1113,17 +1070,10 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be" dependencies = [ - "async-trait", - "convert_case", - "json5", "lazy_static", "nom", "pathdiff", - "ron 0.8.1", - "rust-ini 0.19.0", "serde", - "serde_json", - "toml 0.8.19", "yaml-rust", ] @@ -1194,41 +1144,12 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" -[[package]] -name = "const-random" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" -dependencies = [ - "const-random-macro", -] - -[[package]] -name = "const-random-macro" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" -dependencies = [ - "getrandom", - "once_cell", - "tiny-keccak", -] - [[package]] name = "constant_time_eq" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" -[[package]] -name = "convert_case" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" -dependencies = [ - "unicode-segmentation", -] - [[package]] name = "core-foundation" version = "0.9.4" @@ -1241,39 +1162,15 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" - -[[package]] -name = "core-graphics" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" -dependencies = [ - "bitflags 1.3.2", - "core-foundation", - "core-graphics-types", - "foreign-types", - "libc", -] - -[[package]] -name = "core-graphics-types" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" -dependencies = [ - "bitflags 1.3.2", - "core-foundation", - "libc", -] +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cpufeatures" -version = "0.2.12" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad" dependencies = [ "libc", ] @@ -1329,7 +1226,6 @@ checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ "bitflags 2.6.0", "crossterm_winapi", - "futures-core", "libc", "mio 0.8.11", "parking_lot 0.12.3", @@ -1338,6 +1234,23 @@ dependencies = [ "winapi", ] +[[package]] +name = "crossterm" +version = "0.28.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" +dependencies = [ + "bitflags 2.6.0", + "crossterm_winapi", + "futures-core", + "mio 1.0.2", + "parking_lot 0.12.3", + "rustix 0.38.34", + "signal-hook", + "signal-hook-mio", + "winapi", +] + [[package]] name = "crossterm_winapi" version = "0.9.1" @@ -1347,12 +1260,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "crunchy" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" - [[package]] name = "crypto-common" version = "0.1.6" @@ -1381,17 +1288,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" dependencies = [ "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] name = "ctrlc" -version = "3.4.4" +version = "3.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" +checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3" dependencies = [ - "nix 0.28.0", - "windows-sys 0.52.0", + "nix 0.29.0", + "windows-sys 0.59.0", ] [[package]] @@ -1399,11 +1306,11 @@ name = "cursive" version = "0.20.0" source = "git+https://gitlab.com/veilid/cursive.git#b518d61e61d75a70788b0f7f371cd846f1bef0eb" dependencies = [ - "ahash 0.8.11", + "ahash", "async-std", "cfg-if 1.0.0", "crossbeam-channel", - "crossterm", + "crossterm 0.27.0", "cursive_core", "lazy_static", "libc", @@ -1440,7 +1347,7 @@ name = "cursive_core" version = "0.3.7" source = "git+https://gitlab.com/veilid/cursive.git#b518d61e61d75a70788b0f7f371cd846f1bef0eb" dependencies = [ - "ahash 0.8.11", + "ahash", "ansi-parser", "async-std", "crossbeam-channel", @@ -1494,7 +1401,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -1550,7 +1457,7 @@ dependencies = [ "ident_case", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -1572,7 +1479,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -1665,21 +1572,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "dlv-list" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" - -[[package]] -name = "dlv-list" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" -dependencies = [ - "const-random", -] - [[package]] name = "dyn-clone" version = "1.0.17" @@ -1739,7 +1631,7 @@ dependencies = [ "heck 0.4.1", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -1759,7 +1651,7 @@ checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -1802,7 +1694,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -1927,15 +1819,6 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" -[[package]] -name = "fdeflate" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" -dependencies = [ - "simd-adler32", -] - [[package]] name = "ffi-support" version = "0.4.4" @@ -1954,14 +1837,14 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" [[package]] name = "filetime" -version = "0.2.23" +version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" +checksum = "bf401df4a4e3872c4fe8151134cf483738e74b67fc934d6532c882b3d24a4550" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.4.1", - "windows-sys 0.52.0", + "libredox", + "windows-sys 0.59.0", ] [[package]] @@ -1972,9 +1855,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flate2" -version = "1.0.30" +version = "1.0.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" +checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" dependencies = [ "crc32fast", "miniz_oxide", @@ -2022,33 +1905,6 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" -[[package]] -name = "foreign-types" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" -dependencies = [ - "foreign-types-macros", - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-macros" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.72", -] - -[[package]] -name = "foreign-types-shared" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" - [[package]] name = "form_urlencoded" version = "1.2.1" @@ -2152,7 +2008,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -2271,19 +2127,6 @@ dependencies = [ "web-sys", ] -[[package]] -name = "gloo-utils" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" -dependencies = [ - "js-sys", - "serde", - "serde_json", - "wasm-bindgen", - "web-sys", -] - [[package]] name = "grpcio" version = "0.12.1" @@ -2327,7 +2170,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.3.0", + "indexmap 2.4.0", "slab", "tokio", "tokio-util", @@ -2354,9 +2197,6 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -dependencies = [ - "ahash 0.7.8", -] [[package]] name = "hashbrown" @@ -2364,7 +2204,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash 0.8.11", + "ahash", ] [[package]] @@ -2373,7 +2213,7 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash 0.8.11", + "ahash", "allocator-api2", ] @@ -2392,7 +2232,7 @@ version = "7.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" dependencies = [ - "base64 0.21.7", + "base64", "byteorder", "flate2", "nom", @@ -2533,17 +2373,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "hostname" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba" -dependencies = [ - "cfg-if 1.0.0", - "libc", - "windows 0.52.0", -] - [[package]] name = "http" version = "0.2.12" @@ -2690,19 +2519,6 @@ dependencies = [ "libc", ] -[[package]] -name = "image" -version = "0.25.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99314c8a2152b8ddb211f924cdae532d8c5e4c8bb54728e12fff1b0cd5963a10" -dependencies = [ - "bytemuck", - "byteorder-lite", - "num-traits", - "png", - "tiff", -] - [[package]] name = "indent" version = "0.1.1" @@ -2727,9 +2543,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.3.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0" +checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c" dependencies = [ "equivalent", "hashbrown 0.14.5", @@ -2834,17 +2650,11 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" -[[package]] -name = "jpeg-decoder" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" - [[package]] name = "js-sys" -version = "0.3.69" +version = "0.3.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" dependencies = [ "wasm-bindgen", ] @@ -2855,17 +2665,6 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" -[[package]] -name = "json5" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1" -dependencies = [ - "pest", - "pest_derive", - "serde", -] - [[package]] name = "keyring-manager" version = "0.5.1" @@ -2997,6 +2796,7 @@ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ "bitflags 2.6.0", "libc", + "redox_syscall 0.5.3", ] [[package]] @@ -3012,9 +2812,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.18" +version = "1.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e" +checksum = "fdc53a7799a7496ebc9fd29f31f7df80e83c9bda5299768af5f9e59eeea74647" dependencies = [ "cc", "libc", @@ -3131,6 +2931,16 @@ version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" +[[package]] +name = "minicov" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c71e683cd655513b99affab7d317deb690528255a0d5f717f1024093c12b169" +dependencies = [ + "cc", + "walkdir", +] + [[package]] name = "minimal-lexical" version = "0.2.1" @@ -3144,7 +2954,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" dependencies = [ "adler", - "simd-adler32", ] [[package]] @@ -3161,12 +2970,13 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" +checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" dependencies = [ "hermit-abi 0.3.9", "libc", + "log", "wasi", "windows-sys 0.52.0", ] @@ -3365,18 +3175,6 @@ dependencies = [ "libc", ] -[[package]] -name = "nix" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" -dependencies = [ - "bitflags 2.6.0", - "cfg-if 1.0.0", - "cfg_aliases 0.1.1", - "libc", -] - [[package]] name = "nix" version = "0.29.0" @@ -3385,7 +3183,7 @@ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ "bitflags 2.6.0", "cfg-if 1.0.0", - "cfg_aliases 0.2.1", + "cfg_aliases", "libc", ] @@ -3839,26 +3637,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "ordered-multimap" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" -dependencies = [ - "dlv-list 0.3.0", - "hashbrown 0.12.3", -] - -[[package]] -name = "ordered-multimap" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e" -dependencies = [ - "dlv-list 0.5.2", - "hashbrown 0.13.2", -] - [[package]] name = "oslog" version = "0.2.0" @@ -3994,51 +3772,6 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" -[[package]] -name = "pest" -version = "2.7.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" -dependencies = [ - "memchr", - "thiserror", - "ucd-trie", -] - -[[package]] -name = "pest_derive" -version = "2.7.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a" -dependencies = [ - "pest", - "pest_generator", -] - -[[package]] -name = "pest_generator" -version = "2.7.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183" -dependencies = [ - "pest", - "pest_meta", - "proc-macro2", - "quote", - "syn 2.0.72", -] - -[[package]] -name = "pest_meta" -version = "2.7.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f" -dependencies = [ - "once_cell", - "pest", - "sha2 0.10.8", -] - [[package]] name = "petgraph" version = "0.6.5" @@ -4046,7 +3779,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset", - "indexmap 2.3.0", + "indexmap 2.4.0", ] [[package]] @@ -4076,7 +3809,7 @@ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -4093,9 +3826,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", "fastrand 2.1.0", @@ -4118,19 +3851,6 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" -[[package]] -name = "png" -version = "0.17.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" -dependencies = [ - "bitflags 1.3.2", - "crc32fast", - "fdeflate", - "flate2", - "miniz_oxide", -] - [[package]] name = "polling" version = "2.8.0" @@ -4149,9 +3869,9 @@ dependencies = [ [[package]] name = "polling" -version = "3.7.2" +version = "3.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" +checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" dependencies = [ "cfg-if 1.0.0", "concurrent-queue", @@ -4159,7 +3879,7 @@ dependencies = [ "pin-project-lite", "rustix 0.38.34", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -4196,11 +3916,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.18" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee4364d9f3b902ef14fab8a1ddffb783a1cb6b4bba3bfc1fa3922732c7de97f" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" dependencies = [ - "zerocopy 0.6.6", + "zerocopy", ] [[package]] @@ -4210,7 +3930,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" dependencies = [ "proc-macro2", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -4278,7 +3998,7 @@ dependencies = [ "prost 0.12.6", "prost-types", "regex", - "syn 2.0.72", + "syn 2.0.74", "tempfile", ] @@ -4305,7 +4025,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -4424,15 +4144,6 @@ dependencies = [ "bitflags 1.3.2", ] -[[package]] -name = "redox_syscall" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" -dependencies = [ - "bitflags 1.3.2", -] - [[package]] name = "redox_syscall" version = "0.5.3" @@ -4455,9 +4166,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.5" +version = "1.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" +checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" dependencies = [ "aho-corasick", "memchr", @@ -4503,7 +4214,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" dependencies = [ - "hostname 0.3.1", + "hostname", "quick-error", ] @@ -4522,29 +4233,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "ron" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a" -dependencies = [ - "base64 0.13.1", - "bitflags 1.3.2", - "serde", -] - -[[package]] -name = "ron" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" -dependencies = [ - "base64 0.21.7", - "bitflags 2.6.0", - "serde", - "serde_derive", -] - [[package]] name = "rpassword" version = "7.3.1" @@ -4599,26 +4287,6 @@ dependencies = [ "smallvec", ] -[[package]] -name = "rust-ini" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df" -dependencies = [ - "cfg-if 1.0.0", - "ordered-multimap 0.4.3", -] - -[[package]] -name = "rust-ini" -version = "0.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091" -dependencies = [ - "cfg-if 1.0.0", - "ordered-multimap 0.6.0", -] - [[package]] name = "rustc-demangle" version = "0.1.24" @@ -4685,7 +4353,7 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64 0.21.7", + "base64", ] [[package]] @@ -4706,11 +4374,11 @@ checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" [[package]] name = "rustyline-async" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b6eb06391513b2184f0a5405c11a4a0a5302e8be442f4c5c35267187c2b37d5" +checksum = "bc9396d834c31f9fddd716e7c279e7cb70207092a1e59767918610f5c560c6eb" dependencies = [ - "crossterm", + "crossterm 0.28.1", "futures-channel", "futures-util", "pin-project", @@ -4736,10 +4404,20 @@ dependencies = [ ] [[package]] -name = "scc" -version = "2.1.6" +name = "sanitize-filename" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05ccfb12511cdb770157ace92d7dda771e498445b78f9886e8cdbc5140a4eced" +checksum = "2ed72fbaf78e6f2d41744923916966c4fbe3d7c74e3037a8ee482f1115572603" +dependencies = [ + "lazy_static", + "regex", +] + +[[package]] +name = "scc" +version = "2.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79da19444d9da7a9a82b80ecf059eceba6d3129d84a8610fd25ff2364f255466" dependencies = [ "sdd", ] @@ -4765,7 +4443,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals 0.29.1", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -4792,9 +4470,9 @@ dependencies = [ [[package]] name = "sdd" -version = "2.1.0" +version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "177258b64c0faaa9ffd3c65cd3262c2bc7e2588dbbd9c1641d0346145c1bbda8" +checksum = "0495e4577c672de8254beb68d01a9b62d0e8a13c099edecdbedccce3223cd29f" [[package]] name = "secret-service" @@ -4862,9 +4540,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.204" +version = "1.0.207" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" +checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2" dependencies = [ "serde_derive", ] @@ -4921,13 +4599,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.204" +version = "1.0.207" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" +checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -4938,7 +4616,7 @@ checksum = "e578a843d40b4189a4d66bba51d7684f57da5bd7c304c64e14bd63efbef49509" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -4949,14 +4627,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] name = "serde_json" -version = "1.0.122" +version = "1.0.124" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" +checksum = "66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d" dependencies = [ "itoa", "memchr", @@ -4972,7 +4650,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -4990,7 +4668,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.3.0", + "indexmap 2.4.0", "itoa", "ryu", "serde", @@ -5033,7 +4711,7 @@ checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -5044,7 +4722,7 @@ checksum = "82fe9db325bcef1fbcde82e078a5cc4efdf787e96b3b9cf45b50b529f2083d67" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -5133,6 +4811,7 @@ checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" dependencies = [ "libc", "mio 0.8.11", + "mio 1.0.2", "signal-hook", ] @@ -5154,12 +4833,6 @@ dependencies = [ "digest 0.10.7", ] -[[package]] -name = "simd-adler32" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" - [[package]] name = "simplelog" version = "0.12.2" @@ -5296,9 +4969,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.72" +version = "2.0.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" +checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7" dependencies = [ "proc-macro2", "quote", @@ -5328,14 +5001,15 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.10.1" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if 1.0.0", "fastrand 2.1.0", + "once_cell", "rustix 0.38.34", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -5393,7 +5067,7 @@ checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -5416,17 +5090,6 @@ dependencies = [ "once_cell", ] -[[package]] -name = "tiff" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" -dependencies = [ - "flate2", - "jpeg-decoder", - "weezl", -] - [[package]] name = "time" version = "0.3.36" @@ -5460,15 +5123,6 @@ dependencies = [ "time-core", ] -[[package]] -name = "tiny-keccak" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" -dependencies = [ - "crunchy", -] - [[package]] name = "tinyvec" version = "1.8.0" @@ -5493,7 +5147,7 @@ dependencies = [ "backtrace", "bytes", "libc", - "mio 1.0.1", + "mio 1.0.2", "parking_lot 0.12.3", "pin-project-lite", "signal-hook-registry", @@ -5521,7 +5175,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -5585,7 +5239,7 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.3.0", + "indexmap 2.4.0", "toml_datetime", "winnow 0.5.40", ] @@ -5596,7 +5250,7 @@ version = "0.22.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" dependencies = [ - "indexmap 2.3.0", + "indexmap 2.4.0", "serde", "serde_spanned", "toml_datetime", @@ -5611,7 +5265,7 @@ checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a" dependencies = [ "async-trait", "axum", - "base64 0.21.7", + "base64", "bytes", "futures-core", "futures-util", @@ -5640,7 +5294,7 @@ dependencies = [ "async-stream", "async-trait", "axum", - "base64 0.21.7", + "base64", "bytes", "h2", "http 0.2.12", @@ -5680,15 +5334,15 @@ dependencies = [ [[package]] name = "tower-layer" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" [[package]] name = "tower-service" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" @@ -5722,7 +5376,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -5870,6 +5524,7 @@ dependencies = [ "sharded-slab", "smallvec", "thread_local", + "time", "tracing", "tracing-core", "tracing-log 0.2.0", @@ -5908,7 +5563,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6b26cf145f2f3b9ff84e182c448eaf05468e247f148cf3d2a7d67d78ff023a0" dependencies = [ - "gloo-utils 0.1.7", + "gloo-utils", "serde", "serde-wasm-bindgen 0.5.0", "serde_json", @@ -5925,7 +5580,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals 0.28.0", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -5971,12 +5626,6 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" -[[package]] -name = "ucd-trie" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" - [[package]] name = "unicode-bidi" version = "0.3.15" @@ -6102,15 +5751,15 @@ dependencies = [ [[package]] name = "veilid-cli" -version = "0.3.4" +version = "0.4.0" dependencies = [ "arboard", "async-std", "async-tungstenite 0.23.0", "cfg-if 1.0.0", "chrono", - "clap 4.5.13", - "config 0.14.0", + "clap 4.5.15", + "config 0.13.4", "console", "crossbeam-channel", "cursive", @@ -6127,7 +5776,7 @@ dependencies = [ "log", "lru", "owning_ref", - "parking_lot 0.12.3", + "parking_lot 0.11.2", "rustyline-async", "serde", "serde_derive", @@ -6143,7 +5792,7 @@ dependencies = [ [[package]] name = "veilid-core" -version = "0.3.4" +version = "0.4.0" dependencies = [ "argon2", "async-io 1.13.0", @@ -6199,6 +5848,7 @@ dependencies = [ "range-set-blaze", "rustls", "rustls-pemfile", + "sanitize-filename", "schemars", "send_wrapper 0.6.0", "serde", @@ -6246,7 +5896,7 @@ dependencies = [ [[package]] name = "veilid-flutter" -version = "0.3.4" +version = "0.4.0" dependencies = [ "allo-isolate", "android_log-sys 0.3.1", @@ -6257,7 +5907,7 @@ dependencies = [ "data-encoding", "ffi-support", "futures-util", - "hostname 0.3.1", + "hostname", "jni", "lazy_static", "libc-print", @@ -6281,9 +5931,9 @@ dependencies = [ [[package]] name = "veilid-hashlink" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a3dabbda02cfe176635dcaa18a021416ff2eb4d0b47a913e3fdc7f62049d7b1" +checksum = "2070d1d09dad90091d23e49743408f82f8874994dec5ae0a8d3689b061bba426" dependencies = [ "hashbrown 0.14.5", "serde", @@ -6304,14 +5954,15 @@ dependencies = [ [[package]] name = "veilid-server" -version = "0.3.4" +version = "0.4.0" dependencies = [ "ansi_term", "async-std", "async-tungstenite 0.27.0", "backtrace", "cfg-if 1.0.0", - "clap 4.5.13", + "chrono", + "clap 4.5.15", "color-eyre", "config 0.14.0", "console-subscriber", @@ -6320,7 +5971,7 @@ dependencies = [ "directories", "flume", "futures-util", - "hostname 0.4.0", + "hostname", "json", "lazy_static", "nix 0.29.0", @@ -6338,6 +5989,7 @@ dependencies = [ "signal-hook-async-std", "stop-token", "sysinfo", + "time", "tokio", "tokio-stream", "tokio-util", @@ -6357,7 +6009,7 @@ dependencies = [ [[package]] name = "veilid-tools" -version = "0.3.4" +version = "0.4.0" dependencies = [ "android_logger 0.13.3", "async-lock 3.4.0", @@ -6415,17 +6067,17 @@ dependencies = [ [[package]] name = "veilid-wasm" -version = "0.3.4" +version = "0.4.0" dependencies = [ "cfg-if 1.0.0", "console_error_panic_hook", "data-encoding", "futures-util", - "gloo-utils 0.2.0", + "gloo-utils", "js-sys", "lazy_static", "parking_lot 0.12.3", - "send_wrapper 0.6.0", + "send_wrapper 0.4.0", "serde", "serde-wasm-bindgen 0.6.5", "serde_bytes", @@ -6480,11 +6132,12 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.92" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" +checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" dependencies = [ "cfg-if 1.0.0", + "once_cell", "serde", "serde_json", "wasm-bindgen-macro", @@ -6492,24 +6145,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.92" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" +checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.42" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" +checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" dependencies = [ "cfg-if 1.0.0", "js-sys", @@ -6519,9 +6172,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.92" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" +checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -6529,31 +6182,32 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.92" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" +checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.92" +version = "0.2.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" +checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" [[package]] name = "wasm-bindgen-test" -version = "0.3.42" +version = "0.3.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9bf62a58e0780af3e852044583deee40983e5886da43a271dd772379987667b" +checksum = "68497a05fb21143a08a7d24fc81763384a3072ee43c44e86aad1744d6adef9d9" dependencies = [ "console_error_panic_hook", "js-sys", + "minicov", "scoped-tls", "wasm-bindgen", "wasm-bindgen-futures", @@ -6562,13 +6216,13 @@ dependencies = [ [[package]] name = "wasm-bindgen-test-macro" -version = "0.3.42" +version = "0.3.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7f89739351a2e03cb94beb799d47fb2cac01759b40ec441f7de39b00cbf7ef0" +checksum = "4b8220be1fa9e4c889b30fd207d4906657e7e90b12e0e6b0c8b8d8709f5de021" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -6590,9 +6244,9 @@ checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549" [[package]] name = "web-sys" -version = "0.3.69" +version = "0.3.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" +checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" dependencies = [ "js-sys", "wasm-bindgen", @@ -6645,12 +6299,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "weezl" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" - [[package]] name = "wg" version = "0.9.1" @@ -6700,11 +6348,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6799,6 +6447,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + [[package]] name = "windows-targets" version = "0.42.2" @@ -7061,9 +6718,9 @@ checksum = "a67300977d3dc3f8034dae89778f502b6ba20b269527b3223ba59c0cf393bb8a" [[package]] name = "xml-rs" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" +checksum = "539a77ee7c0de333dcc6da69b177380a0b81e0dacfa4f7344c465a36871ee601" [[package]] name = "xmltree" @@ -7118,34 +6775,14 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "zerocopy" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854e949ac82d619ee9a14c66a1b674ac730422372ccb759ce0c39cabcf2bf8e6" -dependencies = [ - "byteorder", - "zerocopy-derive 0.6.6", -] - [[package]] name = "zerocopy" version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ - "zerocopy-derive 0.7.35", -] - -[[package]] -name = "zerocopy-derive" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "125139de3f6b9d625c39e2efdd73d41bdac468ccd556556440e322be0e1bbd91" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.72", + "byteorder", + "zerocopy-derive", ] [[package]] @@ -7156,7 +6793,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] @@ -7176,7 +6813,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.74", ] [[package]] diff --git a/pkgs/tools/networking/veilid/default.nix b/pkgs/tools/networking/veilid/default.nix index e06a03b8edce..9f74fd42918d 100644 --- a/pkgs/tools/networking/veilid/default.nix +++ b/pkgs/tools/networking/veilid/default.nix @@ -14,13 +14,13 @@ rustPlatform.buildRustPackage rec { pname = "veilid"; - version = "0.3.4"; + version = "0.4.0"; src = fetchFromGitLab { owner = "veilid"; repo = pname; rev = "v${version}"; - hash = "sha256-nEJxiox2aoQBV83vlpiBB4In59+lfHF6/a8HqDYcFT4="; + hash = "sha256-5Xjdc66VA7FFk75jnTARCs2oGT/hWX8VPlZV48q6kpI="; }; cargoLock = { From 855780b11d252447d8eed7b6ecea387f226ac115 Mon Sep 17 00:00:00 2001 From: networkException Date: Sun, 20 Oct 2024 20:04:44 +0200 Subject: [PATCH 93/99] ungoogled-chromium: 129.0.6668.100-1 -> 130.0.6723.58-1 https://chromereleases.googleblog.com/2024/10/stable-channel-update-for-desktop_15.html This update includes 17 security fixes. CVEs: CVE-2024-9954 CVE-2024-9955 CVE-2024-9956 CVE-2024-9957 CVE-2024-9958 CVE-2024-9959 CVE-2024-9960 CVE-2024-9961 CVE-2024-9962 CVE-2024-9963 CVE-2024-9964 CVE-2024-9965 CVE-2024-9966 Co-authored-by: emilylange --- .../networking/browsers/chromium/common.nix | 3 ++- .../networking/browsers/chromium/upstream-info.nix | 14 +++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 70ebecaa63de..11bf657d24da 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -314,7 +314,7 @@ let ] ++ lib.optionals (chromiumVersionAtLeast "129") [ # Rebased variant of patch right above to build M129+ with our rust and our clang. ./patches/chromium-129-rust.patch - ] ++ lib.optionals (chromiumVersionAtLeast "130") [ + ] ++ lib.optionals (chromiumVersionAtLeast "130" && !ungoogled) [ # Our rustc.llvmPackages is too old for std::hardware_destructive_interference_size # and std::hardware_constructive_interference_size. # So let's revert the change for now and hope that our rustc.llvmPackages and @@ -324,6 +324,7 @@ let # Note: We exclude the changes made to the partition_allocator (PA), as the revert # would otherwise not apply because upstream reverted those changes to PA already # in https://chromium-review.googlesource.com/c/chromium/src/+/5841144 + # Note: ungoogled-chromium already reverts this as part of its patchset. (githubPatch { commit = "fc838e8cc887adbe95110045d146b9d5885bf2a9"; hash = "sha256-NNKzIp6NYdeZaqBLWDW/qNxiDB1VFRz7msjMXuMOrZ8="; diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix index 1e13bee43289..448a50432448 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix @@ -21,17 +21,17 @@ ungoogled-chromium = { deps = { gn = { - hash = "sha256-8o3rDdojqVHMQCxI2T3MdJOXKlW3XX7lqpy3zWhJiaA="; - rev = "d010e218ca7077928ad7c9e9cc02fe43b5a8a0ad"; + hash = "sha256-iNXRq3Mr8+wmY1SR4sV7yd2fDiIZ94eReelwFI0UhGU="; + rev = "20806f79c6b4ba295274e3a589d85db41a02fdaa"; url = "https://gn.googlesource.com/gn"; - version = "2024-08-19"; + version = "2024-09-09"; }; ungoogled-patches = { - hash = "sha256-kvpLE6SbXFur5xi1C8Ukvm4OoU5YB8PQCJdiakhFSAM="; - rev = "129.0.6668.100-1"; + hash = "sha256-M+aJ1hhFV88lBBPl9xBYpYRut7yHa/HJYXoclckaZVM="; + rev = "130.0.6723.58-1"; }; }; - hash = "sha256-LOZ9EPw7VgBNEV7Wxb8H5WfSYTTWOL8EDP91uCrZAsA="; - version = "129.0.6668.100"; + hash = "sha256-w1xQr+B7ROeCqBRN+M9vmh45YTRqVfjDYSsN5saDuDo="; + version = "130.0.6723.58"; }; } From 068bac79b8a82c42d82100c89277a720c23e1f51 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 20 Oct 2024 19:08:04 +0100 Subject: [PATCH 94/99] python3Packages.dbt-adapters: fix the val MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without the change the eval fails on `staging-next` as: $ nix build --no-link -f. python3Packages.dbt-adapters error: … while evaluating a branch condition at pkgs/development/interpreters/python/passthrufun.nix:27:9: 26| func = name: value: 27| if lib.isDerivation value then | ^ 28| lib.extendDerivation (valid value || throw "${name} should use `buildPythonPackage` or `toPythonModule` if it is to be part of the Python packages set.") {} value … while evaluating a branch condition at /home/slyfox/dev/git/nixpkgs-staging-next/lib/customisation.nix:263:8: 262| 263| in if missingArgs == {} | ^ 264| then makeOverridable f allArgs (stack trace truncated; use '--show-trace' to show the full, detailed trace) error: attribute 'pythonRelaxDeps' already defined at pkgs/development/python-modules/dbt-adapters/default.nix:30:3 at pkgs/development/python-modules/dbt-adapters/default.nix:34:3: 33| 34| pythonRelaxDeps = [ "protobuf" ]; | ^ 35| --- pkgs/development/python-modules/dbt-adapters/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/python-modules/dbt-adapters/default.nix b/pkgs/development/python-modules/dbt-adapters/default.nix index 93cccb92a183..b116a6e8f1b8 100644 --- a/pkgs/development/python-modules/dbt-adapters/default.nix +++ b/pkgs/development/python-modules/dbt-adapters/default.nix @@ -27,8 +27,6 @@ buildPythonPackage rec { hash = "sha256-I3A3rIMpT+MAq+ebid9RMr6I3W1l4ir78UmfeEr5U3U="; }; - pythonRelaxDeps = [ "protobuf" ]; - build-system = [ hatchling ]; pythonRelaxDeps = [ "protobuf" ]; From 099cde3a92af0522f03f56d07ea77371f55e3633 Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 21:32:29 +0300 Subject: [PATCH 95/99] Revert "nixos/ssh: disable `authorizedKeysInHomedir` by default" --- .../manual/release-notes/rl-2411.section.md | 3 --- .../modules/services/networking/ssh/sshd.nix | 21 ++++--------------- nixos/tests/openssh.nix | 11 ++-------- 3 files changed, 6 insertions(+), 29 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2411.section.md b/nixos/doc/manual/release-notes/rl-2411.section.md index 188fe429fda0..fb92e979484d 100644 --- a/nixos/doc/manual/release-notes/rl-2411.section.md +++ b/nixos/doc/manual/release-notes/rl-2411.section.md @@ -397,9 +397,6 @@ * from `/var/log/private/gns3` to `/var/log/gns3` and to change the ownership of these directories and their contents to `gns3` (including `/etc/gns3`). -- The `sshd` module now doesn't include `%h/.ssh/authorized_keys` as `AuthorizedKeysFile` unless - `services.openssh.authorizedKeysInHomedir` is set to `true` (the default is `false` for `stateVersion` 24.11 onwards). - - Legacy package `stalwart-mail_0_6` was dropped, please note the [manual upgrade process](https://github.com/stalwartlabs/mail-server/blob/main/UPGRADING.md) before changing the package to `pkgs.stalwart-mail` in diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix index c90164b21ccb..26ca39f73d39 100644 --- a/nixos/modules/services/networking/ssh/sshd.nix +++ b/nixos/modules/services/networking/ssh/sshd.nix @@ -108,10 +108,6 @@ let }; - usersWithKeys = lib.attrValues (lib.flip lib.filterAttrs config.users.users (n: u: - lib.length u.openssh.authorizedKeys.keys != 0 || lib.length u.openssh.authorizedKeys.keyFiles != 0 - )); - authKeysFiles = let mkAuthKeyFile = u: lib.nameValuePair "ssh/authorized_keys.d/${u.name}" { mode = "0444"; @@ -120,6 +116,9 @@ let ${lib.concatMapStrings (f: lib.readFile f + "\n") u.openssh.authorizedKeys.keyFiles} ''; }; + usersWithKeys = lib.attrValues (lib.flip lib.filterAttrs config.users.users (n: u: + lib.length u.openssh.authorizedKeys.keys != 0 || lib.length u.openssh.authorizedKeys.keyFiles != 0 + )); in lib.listToAttrs (map mkAuthKeyFile usersWithKeys); authPrincipalsFiles = let @@ -303,8 +302,7 @@ in authorizedKeysInHomedir = lib.mkOption { type = lib.types.bool; - default = lib.versionOlder config.system.stateVersion "24.11"; - defaultText = lib.literalMD "`false` unless [](#opt-system.stateVersion) is 24.05 or older"; + default = true; description = '' Enables the use of the `~/.ssh/authorized_keys` file. @@ -546,17 +544,6 @@ in config = lib.mkIf cfg.enable { - warnings = lib.optional (with cfg; lib.all lib.id [ - # ~/.ssh/authorized_keys is ignored and no custom file locations were set - (authorizedKeysFiles == [ "/etc/ssh/authorized_keys.d/%u" ]) - # no command provides authorized keys - (authorizedKeysCommand == "none") - # no users have keys in declarative configuration - (usersWithKeys == []) - # no authentication methods other than public keys are configured - ((settings.PasswordAuthentication == false && !package.withKerberos) || settings.AuthenticationMethods == [ "publickey" ]) - ]) "services.openssh: no keys were set in `users.users.*.openssh.authorizedKeys` and `~/.ssh/authorized_keys` will be ignored"; - users.users.sshd = { isSystemUser = true; diff --git a/nixos/tests/openssh.nix b/nixos/tests/openssh.nix index b4aacd60c81b..d420c482ca7f 100644 --- a/nixos/tests/openssh.nix +++ b/nixos/tests/openssh.nix @@ -14,10 +14,7 @@ in { { ... }: { - services.openssh = { - enable = true; - authorizedKeysInHomedir = true; - }; + services.openssh.enable = true; security.pam.services.sshd.limits = [ { domain = "*"; item = "memlock"; type = "-"; value = 1024; } ]; users.users.root.openssh.authorizedKeys.keys = [ @@ -42,11 +39,7 @@ in { { ... }: { - services.openssh = { - enable = true; - startWhenNeeded = true; - authorizedKeysInHomedir = true; - }; + services.openssh = { enable = true; startWhenNeeded = true; }; security.pam.services.sshd.limits = [ { domain = "*"; item = "memlock"; type = "-"; value = 1024; } ]; users.users.root.openssh.authorizedKeys.keys = [ From c42028339ab84900aefaa8c78d9a058f7b241330 Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 20 Oct 2024 21:45:57 +0300 Subject: [PATCH 96/99] nixos/systemd-boot: fix substituteAll usage Missed this one :( --- nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix index 6490dc99d66f..85fcbb83cece 100644 --- a/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix +++ b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix @@ -74,8 +74,6 @@ let netbootxyz = optionalString cfg.netbootxyz.enable pkgs.netbootxyz-efi; - edk2-uefi-shell = optionalString cfg.edk2-uefi-shell.enable pkgs.edk2-uefi-shell; - checkMountpoints = pkgs.writeShellScript "check-mountpoints" '' fail() { echo "$1 = '$2' is not a mounted partition. Is the path configured correctly?" >&2 From 3ef9b2ec4639002b67d07619555b00eb500eb754 Mon Sep 17 00:00:00 2001 From: VuiMuich Date: Fri, 18 Oct 2024 09:45:32 +0200 Subject: [PATCH 97/99] leftwm: 0.5.1->0.5.3 Update to release Version `0.5.3` also remove patches and fixes specific to `0.5.1` *Note:* 0.5.2 was not buildable oh 32bit arch, therefore a quick fixup release --- .../window-managers/leftwm/default.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/window-managers/leftwm/default.nix b/pkgs/applications/window-managers/leftwm/default.nix index 2518d1fe4295..00bfbe66f661 100644 --- a/pkgs/applications/window-managers/leftwm/default.nix +++ b/pkgs/applications/window-managers/leftwm/default.nix @@ -11,25 +11,16 @@ in rustPlatform.buildRustPackage rec { pname = "leftwm"; - version = "0.5.1"; + version = "0.5.3"; src = fetchFromGitHub { owner = "leftwm"; repo = "leftwm"; rev = "refs/tags/${version}"; - hash = "sha256-wn5DurPWFwSUtc5naEL4lBSQpKWTJkugpN9mKx+Ed2Y="; + hash = "sha256-3voGKM6MKisc+ZVdZ5sCrs3XVfeRayozIk4SXNjw820="; }; - cargoPatches = [ - # This pacth can be removed with the next version bump, it just updates the `time` crate - ./update-time-crate.patch - ]; - - # To show the "correct" git-hash in `leftwm-check` we manually set the GIT_HASH env variable - # can be remove together with the above patch - GIT_HASH = "36609e0 patched"; - - cargoHash = "sha256-SNq76pTAPSUGVRp/+fwCjSMP/lKVzh6wU+WZW5n/yjg="; + cargoHash = "sha256-w8qgNXxd6tZ1eMpQQqDoax76zYxTVHgVAlchQaRnMCc="; buildInputs = rpathLibs; From f90769155fd57b3045f88b1b3eaf5950e2c8d048 Mon Sep 17 00:00:00 2001 From: Melody Date: Sun, 20 Oct 2024 18:03:03 -0400 Subject: [PATCH 98/99] lug-helper: 2.18 -> 3.0.1 (#348191) update lug-helper: 2.18 -> 3.0.1 --- pkgs/by-name/lu/lug-helper/package.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/lu/lug-helper/package.nix b/pkgs/by-name/lu/lug-helper/package.nix index 7f6324d8162e..d982f30a8989 100644 --- a/pkgs/by-name/lu/lug-helper/package.nix +++ b/pkgs/by-name/lu/lug-helper/package.nix @@ -12,12 +12,12 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { name = "lug-helper"; - version = "2.18"; + version = "3.0.1"; src = fetchFromGitHub { owner = "starcitizen-lug"; repo = "lug-helper"; rev = "refs/tags/v${finalAttrs.version}"; - hash = "sha256-x6o9hNXadlZrww5+a9xZtNfRwxKuTO/O9M9iYvhMIYc="; + hash = "sha256-GL+pPyj3Qz+wmJD59kfGz80LufotPq2KdaLQCkQnCFg="; }; buildInputs = [ @@ -45,7 +45,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { postInstall = '' install -Dm755 lug-helper.sh $out/bin/lug-helper - install -Dm644 lug-logo.png $out/share/pixmaps/lug-logo.png + install -Dm644 lug-logo.png $out/share/icons/hicolor/256x256/apps/lug-logo.png + install -Dm644 rsi-launcher.png $out/share/icons/hicolor/256x256/apps/rsi-launcher.png install -Dm644 lib/* -t $out/share/lug-helper wrapProgram $out/bin/lug-helper \ From d9028e84d29c46d24c973c7b0bb8dd0631e060ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=80=D0=B0=D1=81=D1=85=D0=BE=D0=B4=D0=BD=D1=8B=D0=B9=20?= =?UTF-8?q?=D0=BC=D0=B0=D1=82=D0=B5=D1=80=D0=B8=D0=B0=D0=BB?= <78630225+aucub@users.noreply.github.com> Date: Mon, 21 Oct 2024 06:53:37 +0800 Subject: [PATCH 99/99] =?UTF-8?q?libportal:=200.7.1=20=E2=86=92=200.8.1.?= =?UTF-8?q?=20Add=20libportal-qt6=20variant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/flatpak/libportal/releases/tag/0.8.0 https://github.com/flatpak/libportal/releases/tag/0.8.1 Co-authored-by: dr56ekgbb --- .../libraries/libportal/default.nix | 99 +++++++++++-------- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 58 insertions(+), 42 deletions(-) diff --git a/pkgs/development/libraries/libportal/default.nix b/pkgs/development/libraries/libportal/default.nix index b5c06c609f30..832146707d16 100644 --- a/pkgs/development/libraries/libportal/default.nix +++ b/pkgs/development/libraries/libportal/default.nix @@ -1,64 +1,79 @@ -{ stdenv -, lib -, fetchFromGitHub -, meson -, ninja -, pkg-config -, gobject-introspection -, vala -, gi-docgen -, glib -, gtk3 -, gtk4 -, libsForQt5 -, variant ? null +{ + stdenv, + lib, + fetchFromGitHub, + meson, + ninja, + pkg-config, + gobject-introspection, + vala, + gi-docgen, + glib, + gtk3, + gtk4, + libsForQt5, + qt6Packages, + variant ? null, }: -assert variant == null || variant == "gtk3" || variant == "gtk4" || variant == "qt5"; +assert + variant == null || variant == "gtk3" || variant == "gtk4" || variant == "qt5" || variant == "qt6"; stdenv.mkDerivation rec { pname = "libportal" + lib.optionalString (variant != null) "-${variant}"; - version = "0.7.1"; + version = "0.8.1"; - outputs = [ "out" "dev" ] - ++ lib.optional (variant != "qt5") "devdoc"; + outputs = [ + "out" + "dev" + ] ++ lib.optional (variant != "qt5") "devdoc"; src = fetchFromGitHub { owner = "flatpak"; repo = "libportal"; rev = version; - sha256 = "sha256-3roZJHnGFM7ClxbB7I/haexPTwYskidz9F+WV3RL9Ho="; + sha256 = "sha256-NAkD5pAQpmAtVxsFZt74PwURv+RbGBfqENIwyxEEUSc="; }; depsBuildBuild = [ pkg-config ]; - nativeBuildInputs = [ - meson - ninja - pkg-config - gi-docgen - ] ++ lib.optionals (variant != "qt5") [ - gobject-introspection - vala - ]; + nativeBuildInputs = + [ + meson + ninja + pkg-config + gi-docgen + ] + ++ lib.optionals (variant != "qt5") [ + gobject-introspection + vala + ]; - propagatedBuildInputs = [ - glib - ] ++ lib.optionals (variant == "gtk3") [ - gtk3 - ] ++ lib.optionals (variant == "gtk4") [ - gtk4 - ] ++ lib.optionals (variant == "qt5") [ - libsForQt5.qtbase - libsForQt5.qtx11extras - ]; + propagatedBuildInputs = + [ + glib + ] + ++ lib.optionals (variant == "gtk3") [ + gtk3 + ] + ++ lib.optionals (variant == "gtk4") [ + gtk4 + ] + ++ lib.optionals (variant == "qt5") [ + libsForQt5.qtbase + libsForQt5.qtx11extras + ] + ++ lib.optionals (variant == "qt6") [ + qt6Packages.qtbase + ]; mesonFlags = [ (lib.mesonEnable "backend-gtk3" (variant == "gtk3")) (lib.mesonEnable "backend-gtk4" (variant == "gtk4")) (lib.mesonEnable "backend-qt5" (variant == "qt5")) + (lib.mesonEnable "backend-qt6" (variant == "qt6")) (lib.mesonBool "vapi" (variant != "qt5")) (lib.mesonBool "introspection" (variant != "qt5")) (lib.mesonBool "docs" (variant != "qt5")) # requires introspection=true @@ -72,11 +87,11 @@ stdenv.mkDerivation rec { # we don't have any binaries dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Flatpak portal library"; homepage = "https://github.com/flatpak/libportal"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d6924f09cea..c9d53c637b93 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9732,6 +9732,7 @@ with pkgs; libportal-gtk3 = libportal.override { variant = "gtk3"; }; libportal-gtk4 = libportal.override { variant = "gtk4"; }; libportal-qt5 = libportal.override { variant = "qt5"; }; + libportal-qt6 = libportal.override { variant = "qt6"; }; libmicrodns = callPackage ../development/libraries/libmicrodns { };