diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-12-16 21:53:59 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-12-16 21:53:59 +0000 |
| commit | 483e9484563dd0cdaca6e65d0d05483de69edf2e (patch) | |
| tree | e9d5f8313070e508cc6ff2bc6bc0c6adf0ef5f8e | |
| parent | ffcb24a0dd6794fd8c0ac09e2013f47b1b973e18 (diff) | |
| download | baldeagleos-repo-483e9484563dd0cdaca6e65d0d05483de69edf2e.tar.gz baldeagleos-repo-483e9484563dd0cdaca6e65d0d05483de69edf2e.tar.xz baldeagleos-repo-483e9484563dd0cdaca6e65d0d05483de69edf2e.zip | |
Adding metadata
140 files changed, 7106 insertions, 944 deletions
diff --git a/app-admin/gopass/gopass-1.16.1.ebuild b/app-admin/gopass/gopass-1.16.1.ebuild index 9383ab72329c..cec88ba79491 100644 --- a/app-admin/gopass/gopass-1.16.1.ebuild +++ b/app-admin/gopass/gopass-1.16.1.ebuild @@ -28,8 +28,10 @@ BDEPEND=" src_prepare() { default - # remove stripping from Makefile - sed -e '/ldflags/s/-s //g' -i Makefile || die + # remove stripping & buildvcs from Makefile + sed -e '/ldflags/s/-s //g' \ + -e '/buildvcs/s/-buildvcs=true //g' \ + -i Makefile || die # Broken on dates other than 2023-01-07 sed -e 's/TestHTML/_&/' -i internal/audit/output_test.go || die diff --git a/app-admin/talosctl-bin/talosctl-bin-1.12.0_rc0.ebuild b/app-admin/talosctl-bin/talosctl-bin-1.12.0_rc0.ebuild index f60b37e989c0..fbe78e3887be 100644 --- a/app-admin/talosctl-bin/talosctl-bin-1.12.0_rc0.ebuild +++ b/app-admin/talosctl-bin/talosctl-bin-1.12.0_rc0.ebuild @@ -20,7 +20,7 @@ S="${WORKDIR}" LICENSE="MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64" +KEYWORDS="-* ~amd64 ~arm ~arm64" QA_PREBUILT="usr/bin/talosctl" diff --git a/app-i18n/mozc/mozc-2.31.5851.102.ebuild b/app-i18n/mozc/mozc-2.31.5851.102.ebuild index 4922f61f177f..bee769f4e891 100644 --- a/app-i18n/mozc/mozc-2.31.5851.102.ebuild +++ b/app-i18n/mozc/mozc-2.31.5851.102.ebuild @@ -87,7 +87,7 @@ S="${WORKDIR}/${P}/src" # japanese-usage-dictionary: BSD-2 LICENSE="BSD BSD-2 ipadic public-domain unicode" SLOT="0" -KEYWORDS="amd64 ~arm64" +KEYWORDS="amd64 arm64" IUSE="debug emacs fcitx5 +gui +ibus renderer test" REQUIRED_USE="|| ( emacs fcitx5 ibus )" RESTRICT="!test? ( test )" diff --git a/app-text/build-docbook-catalog/build-docbook-catalog-2.3-r1.ebuild b/app-text/build-docbook-catalog/build-docbook-catalog-2.3-r1.ebuild index 354ddb3a611e..82eba7ae87fc 100644 --- a/app-text/build-docbook-catalog/build-docbook-catalog-2.3-r1.ebuild +++ b/app-text/build-docbook-catalog/build-docbook-catalog-2.3-r1.ebuild @@ -34,5 +34,5 @@ src_configure() { pkg_postinst() { # New version -> regen files # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog." + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog." } diff --git a/app-text/build-docbook-catalog/build-docbook-catalog-2.4.ebuild b/app-text/build-docbook-catalog/build-docbook-catalog-2.4.ebuild index 354ddb3a611e..7d2c37c87724 100644 --- a/app-text/build-docbook-catalog/build-docbook-catalog-2.4.ebuild +++ b/app-text/build-docbook-catalog/build-docbook-catalog-2.4.ebuild @@ -34,5 +34,7 @@ src_configure() { pkg_postinst() { # New version -> regen files # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog." + # build-docbook-catalog needs not to be in PATH when using ROOT or + # cross-EPREFIX merging + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog." } diff --git a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.1.2-r7.ebuild b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.1.2-r7.ebuild index c8245c85bfa4..5274535acb80 100644 --- a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.1.2-r7.ebuild +++ b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.1.2-r7.ebuild @@ -57,12 +57,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.2-r3.ebuild b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.2-r3.ebuild index dbaf0f1c3dbb..30ef28ff0392 100644 --- a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.2-r3.ebuild +++ b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.2-r3.ebuild @@ -57,12 +57,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.3-r2.ebuild b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.3-r2.ebuild index dbaf0f1c3dbb..30ef28ff0392 100644 --- a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.3-r2.ebuild +++ b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.3-r2.ebuild @@ -57,12 +57,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.4-r3.ebuild b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.4-r3.ebuild index ad762db256ad..e5862d048326 100644 --- a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.4-r3.ebuild +++ b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.4-r3.ebuild @@ -58,12 +58,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.5-r2.ebuild b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.5-r2.ebuild index ad762db256ad..e5862d048326 100644 --- a/app-text/docbook-xml-dtd/docbook-xml-dtd-4.5-r2.ebuild +++ b/app-text/docbook-xml-dtd/docbook-xml-dtd-4.5-r2.ebuild @@ -58,12 +58,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-1.0-r3.ebuild b/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-1.0-r3.ebuild index 71e79e2aad67..e05edd36be6a 100644 --- a/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-1.0-r3.ebuild +++ b/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-1.0-r3.ebuild @@ -44,12 +44,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.4-r4.ebuild b/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.4-r4.ebuild index aeb6f1f2820e..9239634ebfb5 100644 --- a/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.4-r4.ebuild +++ b/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.4-r4.ebuild @@ -47,12 +47,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.5-r3.ebuild b/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.5-r3.ebuild index 7c507b36e4d0..69eb28f890eb 100644 --- a/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.5-r3.ebuild +++ b/app-text/docbook-xml-simple-dtd/docbook-xml-simple-dtd-4.1.2.5-r3.ebuild @@ -44,12 +44,12 @@ pkg_postinst() { fi # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postinst } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" sgml-catalog-r1_pkg_postrm } diff --git a/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild b/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild index 39ee587c3759..af23f5e4f21d 100644 --- a/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild +++ b/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild @@ -73,10 +73,10 @@ EOF pkg_postinst() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" } diff --git a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r4.ebuild b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r4.ebuild index 5c3b44931e32..e92109d0c5df 100644 --- a/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r4.ebuild +++ b/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.79.1-r4.ebuild @@ -88,10 +88,10 @@ src_install() { pkg_postinst() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" } pkg_postrm() { # See bug #816303 for rationale behind die - build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" + "${EROOT}"/usr/sbin/build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" } diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-10.06.0.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-10.06.0.ebuild index 6520780d7859..36bf2e972c6f 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-10.06.0.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-10.06.0.ebuild @@ -152,8 +152,9 @@ src_configure() { # leptonica and tesseract are bundled but modified upstream, like in # mujs/mupdf. # - # There is --without-local-brotli but it wants a non-existent -lbrotli - # and it's not clear what that corresponds do, as we have split libs. + # There is --without-local-brotli but it wants a non-existent -lbrotli. + # Fixed in https://bugs.ghostscript.com/show_bug.cgi?id=708832 for next + # release. PKGCONFIG=$(type -P $(tc-getPKG_CONFIG)) econf \ --enable-freetype \ --enable-fontconfig \ diff --git a/dev-build/scons/Manifest b/dev-build/scons/Manifest index 05216a07bd90..811c2ef9c80d 100644 --- a/dev-build/scons/Manifest +++ b/dev-build/scons/Manifest @@ -1,4 +1,3 @@ DIST SCons-4.10.1.tar.gz 3258403 BLAKE2B c3954478e3a6795c04975a50afbca269add686284c50461e8ca71dc338c1b160f4a766ca82557a1cbfc95bd9f668648bcd637f1aa30e0410ca1b41b2e2292ae7 SHA512 4c64070714ba16c8e231ecfac9c1df6fad252b5509e0d260cc05f28865e3068f58c169d73c1559373b7a2d517bcb94a07593ab00781afd9a6a55893455471bc4 -DIST scons-4.10.1-user.html 1725837 BLAKE2B f4be844514dc1d24258e1d44c53f0dc7ffe2044da22ce3da3229a297a3b1e71af2bc70f063ecfb48f1b7fa156476b81223ebb8205e3ce6ab4cf348b7e4bc6375 SHA512 57c43db906d7e9fd792ae5729b565fce39bf0cab97e8298a96f480887d8092346d054095b96d3dd024010f174d61b18a6d364b4c9b22384d89251f916012349f DIST scons-4.10.1-user.pdf 3128752 BLAKE2B 91050cc519f86e909f49dd84a744133d253376c3d9f649779c9257127c9e1ab05ab699bbac74828bd54bd6f047e94baa0b880b86d501c5b7b5ac1b8d8457b5bf SHA512 1592a9d33d4cee5970d0cb0872882583bbe1d213305c2f9f7dee5acd3d703a0ec999b580785391cae498cc47fc07118da2efa956b1b77b84d994a36104efdcc3 DIST scons-4.10.1.gh.tar.gz 5981560 BLAKE2B c2fa46729300f63debcfe8e982e347ed7d486e9d2d0889470be4553702d3123ae813487f934735bb980732df83894bec5f18f731e83bf75a4bd0c2230c60ea03 SHA512 e47000c4fe770c84c1c97ed4e7feee9305669cfbbd1aac06e158d15b08383dbdcbd5397ff62519478204c07d064337fe8101d81e17e0c8d5d611e453ed6d4da2 diff --git a/dev-build/scons/scons-4.10.1.ebuild b/dev-build/scons/scons-4.10.1.ebuild index 53b0ccb88021..0d7e851d24c6 100644 --- a/dev-build/scons/scons-4.10.1.ebuild +++ b/dev-build/scons/scons-4.10.1.ebuild @@ -21,8 +21,6 @@ SRC_URI=" doc? ( https://www.scons.org/doc/${PV}/PDF/${PN}-user.pdf -> ${P}-user.pdf - https://www.scons.org/doc/${PV}/HTML/${PN}-user.html - -> ${P}-user.html ) test? ( https://github.com/SCons/scons/archive/${PV}.tar.gz @@ -157,5 +155,5 @@ python_install_all() { distutils-r1_python_install_all doman *.1 - use doc && dodoc "${DISTDIR}/${P}"-user.{pdf,html} + use doc && dodoc "${DISTDIR}/${P}"-user.pdf } diff --git a/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild b/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild index 673f3c241872..4fd182b0fd3f 100644 --- a/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild +++ b/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild @@ -17,28 +17,28 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="" DEPEND="dev-libs/boost - dev-libs/openssl - dev-build/cmake - dev-cpp/yaml-cpp - dev-cpp/eigen - dev-cpp/robotraconteur + dev-libs/openssl + dev-build/cmake + dev-cpp/yaml-cpp + dev-cpp/eigen + dev-cpp/robotraconteur " RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( - -DCMAKE_SKIP_RPATH=ON - -DBUILD_TESTING=OFF - -DBUILD_DOCUMENTATION=OFF - -DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON - ) - cmake_src_configure + -DCMAKE_SKIP_RPATH=ON + -DBUILD_TESTING=OFF + -DBUILD_DOCUMENTATION=OFF + -DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON + ) + cmake_src_configure } src_compile() { - cmake_src_compile + cmake_src_compile } src_install() { - cmake_src_install + cmake_src_install } diff --git a/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild b/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild index 5588bd3b733c..a970794f60b3 100644 --- a/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild +++ b/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild @@ -19,72 +19,72 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="python" DEPEND="dev-libs/boost - dev-libs/openssl - dev-libs/libusb - sys-apps/dbus - net-wireless/bluez - dev-build/cmake - python? ( dev-python/numpy[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/pip[${PYTHON_USEDEP}] ) + dev-libs/openssl + dev-libs/libusb + sys-apps/dbus + net-wireless/bluez + dev-build/cmake + python? ( dev-python/numpy[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/pip[${PYTHON_USEDEP}] ) " RDEPEND=" - ${DEPEND} - python? ( + ${DEPEND} + python? ( ${PYTHON_DEPS} - ) + ) " REQUIRED_USE=" - python? ( ${PYTHON_REQUIRED_USE} ) + python? ( ${PYTHON_REQUIRED_USE} ) " python_configure() { - local mycmakeargs=( - -DCMAKE_SKIP_RPATH=ON - -DBUILD_GEN=ON - -DBUILD_TESTING=OFF - -DBUILD_DOCUMENTATION=OFF - -DBUILD_PYTHON3=ON - -DINSTALL_PYTHON3_PIP=ON - -DINSTALL_PYTHON3_PIP_EXTRA_ARGS="--compile --use-pep517 --no-build-isolation --no-deps --root-user-action=ignore" - -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON - ) - cmake_src_configure + local mycmakeargs=( + -DCMAKE_SKIP_RPATH=ON + -DBUILD_GEN=ON + -DBUILD_TESTING=OFF + -DBUILD_DOCUMENTATION=OFF + -DBUILD_PYTHON3=ON + -DINSTALL_PYTHON3_PIP=ON + -DINSTALL_PYTHON3_PIP_EXTRA_ARGS="--compile --use-pep517 --no-build-isolation --no-deps --root-user-action=ignore" + -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON + ) + cmake_src_configure } src_configure() { - if use python; then - python_foreach_impl python_configure - else - local mycmakeargs=( - -DCMAKE_SKIP_RPATH=ON - -DBUILD_GEN=ON - -DBUILD_TESTING=OFF - -DBUILD_DOCUMENTATION=OFF - -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON - ) - cmake_src_configure - fi + if use python; then + python_foreach_impl python_configure + else + local mycmakeargs=( + -DCMAKE_SKIP_RPATH=ON + -DBUILD_GEN=ON + -DBUILD_TESTING=OFF + -DBUILD_DOCUMENTATION=OFF + -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON + ) + cmake_src_configure + fi } src_compile() { - if use python; then - python_foreach_impl cmake_src_compile - else - cmake_src_compile - fi + if use python; then + python_foreach_impl cmake_src_compile + else + cmake_src_compile + fi } python_install(){ - cmake_src_install - python_optimize "${D}$(python_get_sitedir)/RobotRaconteur" || die "Failed to optimize Python files" + cmake_src_install + python_optimize "${D}$(python_get_sitedir)/RobotRaconteur" || die "Failed to optimize Python files" } src_install() { - if use python; then - python_foreach_impl python_install - else - cmake_src_install - fi + if use python; then + python_foreach_impl python_install + else + cmake_src_install + fi } diff --git a/dev-embedded/rpi-eeprom/rpi-eeprom-28.10_p1.ebuild b/dev-embedded/rpi-eeprom/rpi-eeprom-28.10_p1-r1.ebuild index 6063941cabf2..e4808353f61e 100644 --- a/dev-embedded/rpi-eeprom/rpi-eeprom-28.10_p1.ebuild +++ b/dev-embedded/rpi-eeprom/rpi-eeprom-28.10_p1-r1.ebuild @@ -39,6 +39,9 @@ src_prepare() { sed -i \ -e 's:/usr/bin/rpi-eeprom-update:/usr/sbin/rpi-eeprom-update:' \ "debian/rpi-eeprom.rpi-eeprom-update.service" || die "Failed sed on rpi-eeprom.rpi-eeprom-update.service" + sed -i \ + -e 's:/usr/lib/firmware:/lib/firmware:' \ + "${MY_P}/rpi-eeprom-update-default" || die "Failed sed on rpi-eeprom-update-default" } src_configure() { diff --git a/dev-go/golangci-lint/Manifest b/dev-go/golangci-lint/Manifest index 9445d141608a..1473760f9e33 100644 --- a/dev-go/golangci-lint/Manifest +++ b/dev-go/golangci-lint/Manifest @@ -6,3 +6,5 @@ DIST golangci-lint-2.6.1-deps.tar.xz 33027976 BLAKE2B bd03a908e1c522e87661ed0e30 DIST golangci-lint-2.6.1.tar.gz 5329109 BLAKE2B 3f8b625556bba25717b9d736e284f186f34defa80ec7edc2b2fbe2c4488b84a8e68a890ea0e56be1af87c1ecabd693c85e31efec551a1eed19faa9631f9c8f54 SHA512 9d68a40ea41c287774ede970272d7cbd8cf101bad85240e6517e9fc1b581054a6a1c45e25cb0b727b6a077136452427ecfdd9b4ec77c2c3bf32e6e1246751068 DIST golangci-lint-2.6.2-vendor.tar.xz 5330920 BLAKE2B 0b8a5fec5d920741d55f2f7306222d3748b3a0eb993d35b41275aaa3454fae6d55421a2b7d1c411d47353eb897b21f678ae37e83fdfa82c5568c862b2c730a1e SHA512 2e8a0594bf67b8a3e47cb7c11ab10073e9bb5afe7fd9a0e852c51510c57a180daa7c1ebedd44e8be27cda8c2ce47339771f49ed6be4bf3092d074e7bb2f904ff DIST golangci-lint-2.6.2.tar.gz 5329919 BLAKE2B 8865bf507bd30d83a39ff4e46899287ce80127712af89df78e2b62a1af637821b792b2c14dd933627fa3c1c97e556f9be23f425241e0ee0bbf854d904bd30491 SHA512 30514f96c8a0cdd2c72985382b993307250d647720dd5b672a6af15a5b50872ed8e161452aa76f7cf03a6e9ff2a6e3ccd74c68f6efcda86bd3019c024c03fd43 +DIST golangci-lint-2.7.2-vendor.tar.xz 5348368 BLAKE2B 3ebafb6a56b8e0862b03fd6bdf8015896014efec11c358e0f54c8275978a9362449888115ddc1e85de4ae1e3da7d6d1a029d6a915a6cfaa7baa88c459c783d91 SHA512 f539444d4a5a6faedf03a34c74f390ad558066b19427c2750547cae86554cbea4925f079b2c1fcff6a03d7758711debf0c2e5c68e4b900407f0cd394d5d3993e +DIST golangci-lint-2.7.2.tar.gz 5356800 BLAKE2B 1a92938430361a5d532f79c013925a893b3866caf3a3bbbe6be4cd59e2ae86d48333bb517a933987d18dcb66d664a807fa886dbbc8d738bf6394fe05a476572d SHA512 9450c9032f124677a94d60ff9a243f5cbcab2f5d3aeba7746f5ef7cf01274f02f3b8c9d3d534c7e333d236ac514a282719ffe5ea259b6718988a0fc23d5ee7aa diff --git a/dev-go/golangci-lint/golangci-lint-2.7.2.ebuild b/dev-go/golangci-lint/golangci-lint-2.7.2.ebuild new file mode 100644 index 000000000000..85b3d960b3c1 --- /dev/null +++ b/dev-go/golangci-lint/golangci-lint-2.7.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module shell-completion toolchain-funcs + +DESCRIPTION="Fast linters runner for Go" +HOMEPAGE="https://golangci-lint.run/ https://github.com/golangci/golangci-lint" +SRC_URI="https://github.com/golangci/golangci-lint/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz" + +LICENSE="GPL-3" +# Dependent licenses +LICENSE+=" Apache-2.0 BSD BSD-2 GPL-3 ISC MIT MPL-2.0" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + emake build + + if ! tc-is-cross-compiler; then + einfo "generating shell completion files" + ./golangci-lint completion bash > ${PN}.bash || die + ./golangci-lint completion zsh > ${PN}.zsh || die + ./golangci-lint completion fish > ${PN}.fish || die + fi +} + +src_test() { + emake test +} + +src_install() { + dobin golangci-lint + local DOCS=( README.md CHANGELOG.md ) + einstalldocs + + if ! tc-is-cross-compiler; then + newbashcomp ${PN}.bash ${PN} + newzshcomp ${PN}.zsh _${PN} + dofishcomp ${PN}.fish + else + ewarn "Shell completion files not installed! Install them manually with '${PN} completion --help'" + fi +} diff --git a/dev-libs/glib/Manifest b/dev-libs/glib/Manifest index 64a8041b35a7..b20b9c34a668 100644 --- a/dev-libs/glib/Manifest +++ b/dev-libs/glib/Manifest @@ -1,4 +1,3 @@ -DIST glib-2.82.5.tar.xz 5554704 BLAKE2B e7853034be1137f8b793483df9e9ce1465dd10a990eb9b3cb9ac76c9f8f86ccc6fda85645b04b35963b28c33e0f6c02df4f3d03e06cc278b8515e588d6bd05f6 SHA512 a6b035c32a42b9d6f4c031a29da405848002619654b58c9205f2f78dbb9698cd5866f31ab213adc04aa214d2c48840a9592c0a1e9201e6851ebd435635f393ae DIST glib-2.84.4.tar.xz 5618200 BLAKE2B 5faee382433085cd598545a99e2e95ce430be4ac5ca10106b70f2404ddacf328f4223bc092a23025f9bf8b936619a88a9dfb220674a07e9250cf4213c6213be9 SHA512 2de9b2f7376c0e5f6ee585087090675d597c474199a10d04aad18df688b6ca77d17e93a86ec07482898663f51c82121992272496318138f77ca5ad2c340a4bd3 DIST glib-2.86.1.tar.xz 5673928 BLAKE2B 571f8738e7ca5568ee9a71f0fddb9eba0eba0ec33cad7540515eb744c3104f69ffe02d5966e47eb568abd04cd111e0b3b004d7c2817177fd5f7bc26e354dec0a SHA512 b2e9a3a35cd4cbe0bb6ca493a4250df480eeb0570a0877880ff4ec6d7f1f98d828249b3b60f839b81f17a33494d95be9d42b5f20fa6bb1acb15bcf5734adba51 DIST gobject-introspection-1.82.0.tar.xz 1052872 BLAKE2B 8336ae26d48a71a203655d9d268076f603055ceabb55dbfa676f2c67b4096b83afc106d485dc45d02b3a8be806f9ef50d54806a82e61f2a252ae59543c61e934 SHA512 e139fadb4174c72b648914f3774d89fc0e5eaee45bba0c13edf05de883664dad8276dbc34006217bb09871ed4bad23adab51ff232a17b9eb131329b2926cafb7 diff --git a/dev-libs/glib/files/glib-2.86-MR-4912.patch b/dev-libs/glib/files/glib-2.86-MR-4912.patch new file mode 100644 index 000000000000..4fdbb3a31195 --- /dev/null +++ b/dev-libs/glib/files/glib-2.86-MR-4912.patch @@ -0,0 +1,186 @@ +From d3a16bc03c58a4f7c3222462110509e39c209ebf Mon Sep 17 00:00:00 2001 +From: Jehan <jehan@girinstud.io> +Date: Fri, 7 Nov 2025 12:09:43 +0100 +Subject: [PATCH] Issue #3819: G_FILE_MONITOR_WATCH_HARD_LINK does not monitor + files on Windows. + +Current code was clearly considering the case of having only a filename +as a directory monitoring, instead of a hard-link monitoring. As I +assume that hard links don't exist on Windows, this case should simply +revert back to the basic file monitoring code path. +--- + gio/win32/gwin32fsmonitorutils.c | 121 ++++++++++++++++--------------- + 1 file changed, 63 insertions(+), 58 deletions(-) + +diff --git a/gio/win32/gwin32fsmonitorutils.c b/gio/win32/gwin32fsmonitorutils.c +index d06dc458a0..cc2a60b116 100644 +--- a/gio/win32/gwin32fsmonitorutils.c ++++ b/gio/win32/gwin32fsmonitorutils.c +@@ -245,9 +245,9 @@ g_win32_fs_monitor_init (GWin32FSMonitorPrivate *monitor, + const gchar *filename, + gboolean isfile) + { +- wchar_t *wdirname_with_long_prefix = NULL; ++ gchar *dirname_with_long_prefix; ++ wchar_t *wdirname_with_long_prefix; + const gchar LONGPFX[] = "\\\\?\\"; +- gchar *fullpath_with_long_prefix, *dirname_with_long_prefix; + DWORD notify_filter = isfile ? + (FILE_NOTIFY_CHANGE_FILE_NAME | + FILE_NOTIFY_CHANGE_ATTRIBUTES | +@@ -260,83 +260,88 @@ g_win32_fs_monitor_init (GWin32FSMonitorPrivate *monitor, + gboolean success_attribs; + WIN32_FILE_ATTRIBUTE_DATA attrib_data = {0, }; + ++ g_return_if_fail ((filename && isfile) || (dirname && ! isfile)); + + if (dirname != NULL) + { + dirname_with_long_prefix = g_strconcat (LONGPFX, dirname, NULL); +- wdirname_with_long_prefix = g_utf8_to_utf16 (dirname_with_long_prefix, -1, NULL, NULL, NULL); +- +- if (isfile) +- { +- gchar *fullpath; +- wchar_t wlongname[MAX_PATH_LONG]; +- wchar_t wshortname[MAX_PATH_LONG]; +- wchar_t *wfullpath, *wbasename_long, *wbasename_short; ++ } ++ else ++ { ++ gchar *tmp_dirname = g_path_get_dirname (filename); ++ dirname_with_long_prefix = g_strconcat (LONGPFX, tmp_dirname, NULL); ++ g_free (tmp_dirname); ++ } ++ wdirname_with_long_prefix = g_utf8_to_utf16 (dirname_with_long_prefix, -1, NULL, NULL, NULL); + +- fullpath = g_build_filename (dirname, filename, NULL); +- fullpath_with_long_prefix = g_strconcat (LONGPFX, fullpath, NULL); ++ if (isfile) ++ { ++ gchar *fullpath; ++ gchar *fullpath_with_long_prefix; ++ wchar_t wlongname[MAX_PATH_LONG]; ++ wchar_t wshortname[MAX_PATH_LONG]; ++ wchar_t *wfullpath, *wbasename_long, *wbasename_short; ++ ++ if (dirname) ++ fullpath = g_build_filename (dirname, filename, NULL); ++ else ++ fullpath = g_strdup (filename); + +- wfullpath = g_utf8_to_utf16 (fullpath, -1, NULL, NULL, NULL); ++ fullpath_with_long_prefix = g_strconcat (LONGPFX, fullpath, NULL); + +- monitor->wfullpath_with_long_prefix = +- g_utf8_to_utf16 (fullpath_with_long_prefix, -1, NULL, NULL, NULL); ++ wfullpath = g_utf8_to_utf16 (fullpath, -1, NULL, NULL, NULL); + +- /* ReadDirectoryChangesW() can return the normal filename or the +- * "8.3" format filename, so we need to keep track of both these names +- * so that we can check against them later when it returns +- */ +- if (GetLongPathNameW (monitor->wfullpath_with_long_prefix, wlongname, MAX_PATH_LONG) == 0) +- { +- wbasename_long = wcsrchr (monitor->wfullpath_with_long_prefix, L'\\'); +- monitor->wfilename_long = wbasename_long != NULL ? +- wcsdup (wbasename_long + 1) : +- wcsdup (wfullpath); +- } +- else +- { +- wbasename_long = wcsrchr (wlongname, L'\\'); +- monitor->wfilename_long = wbasename_long != NULL ? +- wcsdup (wbasename_long + 1) : +- wcsdup (wlongname); ++ monitor->wfullpath_with_long_prefix = ++ g_utf8_to_utf16 (fullpath_with_long_prefix, -1, NULL, NULL, NULL); + +- } ++ /* ReadDirectoryChangesW() can return the normal filename or the ++ * "8.3" format filename, so we need to keep track of both these names ++ * so that we can check against them later when it returns ++ */ ++ if (GetLongPathNameW (monitor->wfullpath_with_long_prefix, wlongname, MAX_PATH_LONG) == 0) ++ { ++ wbasename_long = wcsrchr (monitor->wfullpath_with_long_prefix, L'\\'); ++ monitor->wfilename_long = wbasename_long != NULL ? ++ wcsdup (wbasename_long + 1) : ++ wcsdup (wfullpath); ++ } ++ else ++ { ++ wbasename_long = wcsrchr (wlongname, L'\\'); ++ monitor->wfilename_long = wbasename_long != NULL ? ++ wcsdup (wbasename_long + 1) : ++ wcsdup (wlongname); + +- if (GetShortPathNameW (monitor->wfullpath_with_long_prefix, wshortname, MAX_PATH_LONG) == 0) +- { +- wbasename_short = wcsrchr (monitor->wfullpath_with_long_prefix, L'\\'); +- monitor->wfilename_short = wbasename_short != NULL ? +- wcsdup (wbasename_short + 1) : +- wcsdup (wfullpath); +- } +- else +- { +- wbasename_short = wcsrchr (wshortname, L'\\'); +- monitor->wfilename_short = wbasename_short != NULL ? +- wcsdup (wbasename_short + 1) : +- wcsdup (wshortname); +- } ++ } + +- g_free (wfullpath); +- g_free (fullpath); ++ if (GetShortPathNameW (monitor->wfullpath_with_long_prefix, wshortname, MAX_PATH_LONG) == 0) ++ { ++ wbasename_short = wcsrchr (monitor->wfullpath_with_long_prefix, L'\\'); ++ monitor->wfilename_short = wbasename_short != NULL ? ++ wcsdup (wbasename_short + 1) : ++ wcsdup (wfullpath); + } + else + { +- monitor->wfilename_short = NULL; +- monitor->wfilename_long = NULL; +- monitor->wfullpath_with_long_prefix = g_utf8_to_utf16 (dirname_with_long_prefix, -1, NULL, NULL, NULL); ++ wbasename_short = wcsrchr (wshortname, L'\\'); ++ monitor->wfilename_short = wbasename_short != NULL ? ++ wcsdup (wbasename_short + 1) : ++ wcsdup (wshortname); + } + +- monitor->isfile = isfile; ++ g_free (wfullpath); ++ g_free (fullpath); ++ g_free (fullpath_with_long_prefix); + } + else + { +- dirname_with_long_prefix = g_strconcat (LONGPFX, filename, NULL); +- monitor->wfullpath_with_long_prefix = g_utf8_to_utf16 (dirname_with_long_prefix, -1, NULL, NULL, NULL); +- monitor->wfilename_long = NULL; + monitor->wfilename_short = NULL; +- monitor->isfile = FALSE; ++ monitor->wfilename_long = NULL; ++ monitor->wfullpath_with_long_prefix = g_utf8_to_utf16 (dirname_with_long_prefix, -1, NULL, NULL, NULL); + } + ++ monitor->isfile = isfile; ++ + success_attribs = GetFileAttributesExW (monitor->wfullpath_with_long_prefix, + GetFileExInfoStandard, + &attrib_data); +@@ -345,7 +350,7 @@ g_win32_fs_monitor_init (GWin32FSMonitorPrivate *monitor, + else + monitor->file_attribs = INVALID_FILE_ATTRIBUTES; + monitor->pfni_prev = NULL; +- monitor->hDirectory = CreateFileW (wdirname_with_long_prefix != NULL ? wdirname_with_long_prefix : monitor->wfullpath_with_long_prefix, ++ monitor->hDirectory = CreateFileW (wdirname_with_long_prefix, + FILE_LIST_DIRECTORY, + FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE, + NULL, +-- +GitLab + diff --git a/dev-libs/glib/files/glib-2.86-MR-4915-CVE-2025-13601.patch b/dev-libs/glib/files/glib-2.86-MR-4915-CVE-2025-13601.patch new file mode 100644 index 000000000000..acba3fd7bd2d --- /dev/null +++ b/dev-libs/glib/files/glib-2.86-MR-4915-CVE-2025-13601.patch @@ -0,0 +1,261 @@ +From 9bcd65ba5fa1b92ff0fb8380faea335ccef56253 Mon Sep 17 00:00:00 2001 +From: Philip Withnall <pwithnall@gnome.org> +Date: Thu, 13 Nov 2025 18:27:22 +0000 +Subject: [PATCH 1/2] gconvert: Error out if g_escape_uri_string() would + overflow +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +If the string to escape contains a very large number of unacceptable +characters (which would need escaping), the calculation of the length of +the escaped string could overflow, leading to a potential write off the +end of the newly allocated string. + +In addition to that, the number of unacceptable characters was counted +in a signed integer, which would overflow to become negative, making it +easier for an attacker to craft an input string which would cause an +out-of-bounds write. + +Fix that by validating the allocation length, and using an unsigned +integer to count the number of unacceptable characters. + +Spotted by treeplus. Thanks to the Sovereign Tech Resilience programme +from the Sovereign Tech Agency. ID: #YWH-PGM9867-134 + +Signed-off-by: Philip Withnall <pwithnall@gnome.org> + +Fixes: #3827 + +Backport 2.86: Changed the translatable error message to re-use an +existing translatable string, to avoid adding new translatable strings +to a stable branch. The re-used string doesn’t perfectly match the +error, but it’s good enough given that no users will ever see it. +--- + glib/gconvert.c | 36 +++++++++++++++++++++++++----------- + 1 file changed, 25 insertions(+), 11 deletions(-) + +diff --git a/glib/gconvert.c b/glib/gconvert.c +index 7ad8ca018f..367e9b4661 100644 +--- a/glib/gconvert.c ++++ b/glib/gconvert.c +@@ -1336,8 +1336,9 @@ static const gchar hex[] = "0123456789ABCDEF"; + /* Note: This escape function works on file: URIs, but if you want to + * escape something else, please read RFC-2396 */ + static gchar * +-g_escape_uri_string (const gchar *string, +- UnsafeCharacterSet mask) ++g_escape_uri_string (const gchar *string, ++ UnsafeCharacterSet mask, ++ GError **error) + { + #define ACCEPTABLE(a) ((a)>=32 && (a)<128 && (acceptable[(a)-32] & use_mask)) + +@@ -1345,7 +1346,7 @@ g_escape_uri_string (const gchar *string, + gchar *q; + gchar *result; + int c; +- gint unacceptable; ++ size_t unacceptable; + UnsafeCharacterSet use_mask; + + g_return_val_if_fail (mask == UNSAFE_ALL +@@ -1362,7 +1363,14 @@ g_escape_uri_string (const gchar *string, + if (!ACCEPTABLE (c)) + unacceptable++; + } +- ++ ++ if (unacceptable >= (G_MAXSIZE - (p - string)) / 2) ++ { ++ g_set_error_literal (error, G_CONVERT_ERROR, G_CONVERT_ERROR_BAD_URI, ++ _("Invalid hostname")); ++ return NULL; ++ } ++ + result = g_malloc (p - string + unacceptable * 2 + 1); + + use_mask = mask; +@@ -1387,12 +1395,13 @@ g_escape_uri_string (const gchar *string, + + + static gchar * +-g_escape_file_uri (const gchar *hostname, +- const gchar *pathname) ++g_escape_file_uri (const gchar *hostname, ++ const gchar *pathname, ++ GError **error) + { + char *escaped_hostname = NULL; +- char *escaped_path; +- char *res; ++ char *escaped_path = NULL; ++ char *res = NULL; + + #ifdef G_OS_WIN32 + char *p, *backslash; +@@ -1413,10 +1422,14 @@ g_escape_file_uri (const gchar *hostname, + + if (hostname && *hostname != '\0') + { +- escaped_hostname = g_escape_uri_string (hostname, UNSAFE_HOST); ++ escaped_hostname = g_escape_uri_string (hostname, UNSAFE_HOST, error); ++ if (escaped_hostname == NULL) ++ goto out; + } + +- escaped_path = g_escape_uri_string (pathname, UNSAFE_PATH); ++ escaped_path = g_escape_uri_string (pathname, UNSAFE_PATH, error); ++ if (escaped_path == NULL) ++ goto out; + + res = g_strconcat ("file://", + (escaped_hostname) ? escaped_hostname : "", +@@ -1424,6 +1437,7 @@ g_escape_file_uri (const gchar *hostname, + escaped_path, + NULL); + ++out: + #ifdef G_OS_WIN32 + g_free ((char *) pathname); + #endif +@@ -1757,7 +1771,7 @@ g_filename_to_uri (const gchar *filename, + hostname = NULL; + #endif + +- escaped_uri = g_escape_file_uri (hostname, filename); ++ escaped_uri = g_escape_file_uri (hostname, filename, error); + + return escaped_uri; + } +-- +GitLab + + +From 7e5489cb921d0531ee4ebc9938da30a02084b2fa Mon Sep 17 00:00:00 2001 +From: Philip Withnall <pwithnall@gnome.org> +Date: Thu, 13 Nov 2025 18:31:43 +0000 +Subject: [PATCH 2/2] fuzzing: Add fuzz tests for g_filename_{to,from}_uri() + +These functions could be called on untrusted input data, and since they +do URI escaping/unescaping, they have non-trivial string handling code. + +Signed-off-by: Philip Withnall <pwithnall@gnome.org> + +See: #3827 +--- + fuzzing/fuzz_filename_from_uri.c | 40 ++++++++++++++++++++++++++++++++ + fuzzing/fuzz_filename_to_uri.c | 40 ++++++++++++++++++++++++++++++++ + fuzzing/meson.build | 2 ++ + 3 files changed, 82 insertions(+) + create mode 100644 fuzzing/fuzz_filename_from_uri.c + create mode 100644 fuzzing/fuzz_filename_to_uri.c + +diff --git a/fuzzing/fuzz_filename_from_uri.c b/fuzzing/fuzz_filename_from_uri.c +new file mode 100644 +index 0000000000..9b7a715f07 +--- /dev/null ++++ b/fuzzing/fuzz_filename_from_uri.c +@@ -0,0 +1,40 @@ ++/* ++ * Copyright 2025 GNOME Foundation, Inc. ++ * ++ * SPDX-License-Identifier: LGPL-2.1-or-later ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU Lesser General Public ++ * License as published by the Free Software Foundation; either ++ * version 2.1 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * Lesser General Public License for more details. ++ * ++ * You should have received a copy of the GNU Lesser General Public ++ * License along with this library; if not, see <http://www.gnu.org/licenses/>. ++ */ ++ ++#include "fuzz.h" ++ ++int ++LLVMFuzzerTestOneInput (const unsigned char *data, size_t size) ++{ ++ unsigned char *nul_terminated_data = NULL; ++ char *filename = NULL; ++ GError *local_error = NULL; ++ ++ fuzz_set_logging_func (); ++ ++ /* ignore @size (g_filename_from_uri() doesn’t support it); ensure @data is nul-terminated */ ++ nul_terminated_data = (unsigned char *) g_strndup ((const char *) data, size); ++ filename = g_filename_from_uri ((const char *) nul_terminated_data, NULL, &local_error); ++ g_free (nul_terminated_data); ++ ++ g_free (filename); ++ g_clear_error (&local_error); ++ ++ return 0; ++} +diff --git a/fuzzing/fuzz_filename_to_uri.c b/fuzzing/fuzz_filename_to_uri.c +new file mode 100644 +index 0000000000..acb3192035 +--- /dev/null ++++ b/fuzzing/fuzz_filename_to_uri.c +@@ -0,0 +1,40 @@ ++/* ++ * Copyright 2025 GNOME Foundation, Inc. ++ * ++ * SPDX-License-Identifier: LGPL-2.1-or-later ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU Lesser General Public ++ * License as published by the Free Software Foundation; either ++ * version 2.1 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * Lesser General Public License for more details. ++ * ++ * You should have received a copy of the GNU Lesser General Public ++ * License along with this library; if not, see <http://www.gnu.org/licenses/>. ++ */ ++ ++#include "fuzz.h" ++ ++int ++LLVMFuzzerTestOneInput (const unsigned char *data, size_t size) ++{ ++ unsigned char *nul_terminated_data = NULL; ++ char *uri = NULL; ++ GError *local_error = NULL; ++ ++ fuzz_set_logging_func (); ++ ++ /* ignore @size (g_filename_to_uri() doesn’t support it); ensure @data is nul-terminated */ ++ nul_terminated_data = (unsigned char *) g_strndup ((const char *) data, size); ++ uri = g_filename_to_uri ((const char *) nul_terminated_data, NULL, &local_error); ++ g_free (nul_terminated_data); ++ ++ g_free (uri); ++ g_clear_error (&local_error); ++ ++ return 0; ++} +diff --git a/fuzzing/meson.build b/fuzzing/meson.build +index addbe90717..05f936eeb2 100644 +--- a/fuzzing/meson.build ++++ b/fuzzing/meson.build +@@ -25,6 +25,8 @@ fuzz_targets = [ + 'fuzz_date_parse', + 'fuzz_date_time_new_from_iso8601', + 'fuzz_dbus_message', ++ 'fuzz_filename_from_uri', ++ 'fuzz_filename_to_uri', + 'fuzz_get_locale_variants', + 'fuzz_inet_address_mask_new_from_string', + 'fuzz_inet_address_new_from_string', +-- +GitLab + diff --git a/dev-libs/glib/files/glib-2.86-MR-4934-CVE-2025-14087.patch b/dev-libs/glib/files/glib-2.86-MR-4934-CVE-2025-14087.patch new file mode 100644 index 000000000000..018c4fbffcd8 --- /dev/null +++ b/dev-libs/glib/files/glib-2.86-MR-4934-CVE-2025-14087.patch @@ -0,0 +1,459 @@ +From 3e72fe0fbb32c18a66486c4da8bc851f656af287 Mon Sep 17 00:00:00 2001 +From: Philip Withnall <pwithnall@gnome.org> +Date: Tue, 25 Nov 2025 19:02:56 +0000 +Subject: [PATCH 1/3] gvariant-parser: Fix potential integer overflow parsing + (byte)strings + +The termination condition for parsing string and bytestring literals in +GVariant text format input was subject to an integer overflow for input +string (or bytestring) literals longer than `INT_MAX`. + +Fix that by counting as a `size_t` rather than as an `int`. The counter +can never correctly be negative. + +Spotted by treeplus. Thanks to the Sovereign Tech Resilience programme +from the Sovereign Tech Agency. ID: #YWH-PGM9867-145 + +Signed-off-by: Philip Withnall <pwithnall@gnome.org> +Fixes: #3834 +--- + glib/gvariant-parser.c | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + +diff --git a/glib/gvariant-parser.c b/glib/gvariant-parser.c +index 2f1d3db9f6..2d6e9856f8 100644 +--- a/glib/gvariant-parser.c ++++ b/glib/gvariant-parser.c +@@ -609,7 +609,7 @@ ast_resolve (AST *ast, + { + GVariant *value; + gchar *pattern; +- gint i, j = 0; ++ size_t i, j = 0; + + pattern = ast_get_pattern (ast, error); + +@@ -1637,9 +1637,9 @@ string_free (AST *ast) + */ + static gboolean + unicode_unescape (const gchar *src, +- gint *src_ofs, ++ size_t *src_ofs, + gchar *dest, +- gint *dest_ofs, ++ size_t *dest_ofs, + gsize length, + SourceRef *ref, + GError **error) +@@ -1700,7 +1700,7 @@ string_parse (TokenStream *stream, + gsize length; + gchar quote; + gchar *str; +- gint i, j; ++ size_t i, j; + + token_stream_start_ref (stream, &ref); + token = token_stream_get (stream); +@@ -1833,7 +1833,7 @@ bytestring_parse (TokenStream *stream, + gsize length; + gchar quote; + gchar *str; +- gint i, j; ++ size_t i, j; + + token_stream_start_ref (stream, &ref); + token = token_stream_get (stream); +-- +GitLab + + +From 6fe481cec709ec65b5846113848723bc25a8782a Mon Sep 17 00:00:00 2001 +From: Philip Withnall <pwithnall@gnome.org> +Date: Tue, 25 Nov 2025 19:19:16 +0000 +Subject: [PATCH 2/3] gvariant-parser: Use size_t to count numbers of child + elements +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Rather than using `gint`, which could overflow for arrays (or dicts, or +tuples) longer than `INT_MAX`. There may be other limits which prevent +parsed containers becoming that long, but we might as well make the type +system reflect the programmer’s intention as best it can anyway. + +For arrays and tuples this is straightforward. For dictionaries, it’s +slightly complicated by the fact that the code used +`dict->n_children == -1` to indicate that the `Dictionary` struct in +question actually represented a single freestanding dict entry. In +GVariant text format, that would be `{1, "one"}`. + +The implementation previously didn’t define the semantics of +`dict->n_children < -1`. + +Now, instead, change `Dictionary.n_children` to `size_t`, and define a +magic value `DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY` to indicate that +the `Dictionary` represents a single freestanding dict entry. + +This magic value is `SIZE_MAX`, and given that a dictionary entry takes +more than one byte to represent in GVariant text format, that means it’s +not possible to have that many entries in a parsed dictionary, so this +magic value won’t be hit by a normal dictionary. An assertion checks +this anyway. + +Spotted while working on #3834. + +Signed-off-by: Philip Withnall <pwithnall@gnome.org> +--- + glib/gvariant-parser.c | 58 ++++++++++++++++++++++++------------------ + 1 file changed, 33 insertions(+), 25 deletions(-) + +diff --git a/glib/gvariant-parser.c b/glib/gvariant-parser.c +index 2d6e9856f8..519baa3f36 100644 +--- a/glib/gvariant-parser.c ++++ b/glib/gvariant-parser.c +@@ -662,9 +662,9 @@ static AST *parse (TokenStream *stream, + GError **error); + + static void +-ast_array_append (AST ***array, +- gint *n_items, +- AST *ast) ++ast_array_append (AST ***array, ++ size_t *n_items, ++ AST *ast) + { + if ((*n_items & (*n_items - 1)) == 0) + *array = g_renew (AST *, *array, *n_items ? 2 ** n_items : 1); +@@ -673,10 +673,10 @@ ast_array_append (AST ***array, + } + + static void +-ast_array_free (AST **array, +- gint n_items) ++ast_array_free (AST **array, ++ size_t n_items) + { +- gint i; ++ size_t i; + + for (i = 0; i < n_items; i++) + ast_free (array[i]); +@@ -685,11 +685,11 @@ ast_array_free (AST **array, + + static gchar * + ast_array_get_pattern (AST **array, +- gint n_items, ++ size_t n_items, + GError **error) + { + gchar *pattern; +- gint i; ++ size_t i; + + /* Find the pattern which applies to all children in the array, by l-folding a + * coalesce operation. +@@ -721,7 +721,7 @@ ast_array_get_pattern (AST **array, + * pair of values. + */ + { +- int j = 0; ++ size_t j = 0; + + while (TRUE) + { +@@ -969,7 +969,7 @@ typedef struct + AST ast; + + AST **children; +- gint n_children; ++ size_t n_children; + } Array; + + static gchar * +@@ -1002,7 +1002,7 @@ array_get_value (AST *ast, + Array *array = (Array *) ast; + const GVariantType *childtype; + GVariantBuilder builder; +- gint i; ++ size_t i; + + if (!g_variant_type_is_array (type)) + return ast_type_error (ast, type, error); +@@ -1088,7 +1088,7 @@ typedef struct + AST ast; + + AST **children; +- gint n_children; ++ size_t n_children; + } Tuple; + + static gchar * +@@ -1098,7 +1098,7 @@ tuple_get_pattern (AST *ast, + Tuple *tuple = (Tuple *) ast; + gchar *result = NULL; + gchar **parts; +- gint i; ++ size_t i; + + parts = g_new (gchar *, tuple->n_children + 4); + parts[tuple->n_children + 1] = (gchar *) ")"; +@@ -1128,7 +1128,7 @@ tuple_get_value (AST *ast, + Tuple *tuple = (Tuple *) ast; + const GVariantType *childtype; + GVariantBuilder builder; +- gint i; ++ size_t i; + + if (!g_variant_type_is_tuple (type)) + return ast_type_error (ast, type, error); +@@ -1320,9 +1320,16 @@ typedef struct + + AST **keys; + AST **values; +- gint n_children; ++ ++ /* Iff this is DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY then this struct ++ * represents a single freestanding dict entry (`{1, "one"}`) rather than a ++ * full dict. In the freestanding case, @keys and @values have exactly one ++ * member each. */ ++ size_t n_children; + } Dictionary; + ++#define DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY ((size_t) -1) ++ + static gchar * + dictionary_get_pattern (AST *ast, + GError **error) +@@ -1337,7 +1344,7 @@ dictionary_get_pattern (AST *ast, + return g_strdup ("Ma{**}"); + + key_pattern = ast_array_get_pattern (dict->keys, +- abs (dict->n_children), ++ (dict->n_children == DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY) ? 1 : dict->n_children, + error); + + if (key_pattern == NULL) +@@ -1368,7 +1375,7 @@ dictionary_get_pattern (AST *ast, + return NULL; + + result = g_strdup_printf ("M%s{%c%s}", +- dict->n_children > 0 ? "a" : "", ++ (dict->n_children > 0 && dict->n_children != DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY) ? "a" : "", + key_char, value_pattern); + g_free (value_pattern); + +@@ -1382,7 +1389,7 @@ dictionary_get_value (AST *ast, + { + Dictionary *dict = (Dictionary *) ast; + +- if (dict->n_children == -1) ++ if (dict->n_children == DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY) + { + const GVariantType *subtype; + GVariantBuilder builder; +@@ -1415,7 +1422,7 @@ dictionary_get_value (AST *ast, + { + const GVariantType *entry, *key, *val; + GVariantBuilder builder; +- gint i; ++ size_t i; + + if (!g_variant_type_is_subtype_of (type, G_VARIANT_TYPE_DICTIONARY)) + return ast_type_error (ast, type, error); +@@ -1456,12 +1463,12 @@ static void + dictionary_free (AST *ast) + { + Dictionary *dict = (Dictionary *) ast; +- gint n_children; ++ size_t n_children; + +- if (dict->n_children > -1) +- n_children = dict->n_children; +- else ++ if (dict->n_children == DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY) + n_children = 1; ++ else ++ n_children = dict->n_children; + + ast_array_free (dict->keys, n_children); + ast_array_free (dict->values, n_children); +@@ -1479,7 +1486,7 @@ dictionary_parse (TokenStream *stream, + maybe_wrapper, dictionary_get_value, + dictionary_free + }; +- gint n_keys, n_values; ++ size_t n_keys, n_values; + gboolean only_one; + Dictionary *dict; + AST *first; +@@ -1522,7 +1529,7 @@ dictionary_parse (TokenStream *stream, + goto error; + + g_assert (n_keys == 1 && n_values == 1); +- dict->n_children = -1; ++ dict->n_children = DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY; + + return (AST *) dict; + } +@@ -1555,6 +1562,7 @@ dictionary_parse (TokenStream *stream, + } + + g_assert (n_keys == n_values); ++ g_assert (n_keys != DICTIONARY_N_CHILDREN_FREESTANDING_ENTRY); + dict->n_children = n_keys; + + return (AST *) dict; +-- +GitLab + + +From dd333a40aa95819720a01caf6de564cd8a4a6310 Mon Sep 17 00:00:00 2001 +From: Philip Withnall <pwithnall@gnome.org> +Date: Tue, 25 Nov 2025 19:25:58 +0000 +Subject: [PATCH 3/3] gvariant-parser: Convert error handling code to use + size_t + +The error handling code allows for printing out the range of input bytes +related to a parsing error. This was previously done using `gint`, but +the input could be longer than `INT_MAX`, so it should really be done +using `size_t`. + +Spotted while working on #3834. + +Signed-off-by: Philip Withnall <pwithnall@gnome.org> +--- + glib/gvariant-parser.c | 36 +++++++++++++++++++++++------------- + 1 file changed, 23 insertions(+), 13 deletions(-) + +diff --git a/glib/gvariant-parser.c b/glib/gvariant-parser.c +index 519baa3f36..1b1ddd654b 100644 +--- a/glib/gvariant-parser.c ++++ b/glib/gvariant-parser.c +@@ -91,7 +91,9 @@ g_variant_parser_get_error_quark (void) + + typedef struct + { +- gint start, end; ++ /* Offsets from the start of the input, in bytes. Can be equal when referring ++ * to a point rather than a range. The invariant `end >= start` always holds. */ ++ size_t start, end; + } SourceRef; + + G_GNUC_PRINTF(5, 0) +@@ -106,14 +108,16 @@ parser_set_error_va (GError **error, + GString *msg = g_string_new (NULL); + + if (location->start == location->end) +- g_string_append_printf (msg, "%d", location->start); ++ g_string_append_printf (msg, "%" G_GSIZE_FORMAT, location->start); + else +- g_string_append_printf (msg, "%d-%d", location->start, location->end); ++ g_string_append_printf (msg, "%" G_GSIZE_FORMAT "-%" G_GSIZE_FORMAT, ++ location->start, location->end); + + if (other != NULL) + { + g_assert (other->start != other->end); +- g_string_append_printf (msg, ",%d-%d", other->start, other->end); ++ g_string_append_printf (msg, ",%" G_GSIZE_FORMAT "-%" G_GSIZE_FORMAT, ++ other->start, other->end); + } + g_string_append_c (msg, ':'); + +@@ -140,11 +144,15 @@ parser_set_error (GError **error, + + typedef struct + { ++ /* We should always have the following ordering constraint: ++ * start <= this <= stream <= end ++ * Additionally, unless in an error or EOF state, `this < stream`. ++ */ + const gchar *start; + const gchar *stream; + const gchar *end; + +- const gchar *this; ++ const gchar *this; /* (nullable) */ + } TokenStream; + + +@@ -175,7 +183,7 @@ token_stream_set_error (TokenStream *stream, + static gboolean + token_stream_prepare (TokenStream *stream) + { +- gint brackets = 0; ++ gssize brackets = 0; + const gchar *end; + + if (stream->this != NULL) +@@ -407,7 +415,7 @@ static void + pattern_copy (gchar **out, + const gchar **in) + { +- gint brackets = 0; ++ gssize brackets = 0; + + while (**in == 'a' || **in == 'm' || **in == 'M') + *(*out)++ = *(*in)++; +@@ -2765,7 +2773,7 @@ g_variant_builder_add_parsed (GVariantBuilder *builder, + static gboolean + parse_num (const gchar *num, + const gchar *limit, +- guint *result) ++ size_t *result) + { + gchar *endptr; + gint64 bignum; +@@ -2775,10 +2783,12 @@ parse_num (const gchar *num, + if (endptr != limit) + return FALSE; + ++ /* The upper bound here is more restrictive than it technically needs to be, ++ * but should be enough for any practical situation: */ + if (bignum < 0 || bignum > G_MAXINT) + return FALSE; + +- *result = (guint) bignum; ++ *result = (size_t) bignum; + + return TRUE; + } +@@ -2789,7 +2799,7 @@ add_last_line (GString *err, + { + const gchar *last_nl; + gchar *chomped; +- gint i; ++ size_t i; + + /* This is an error at the end of input. If we have a file + * with newlines, that's probably the empty string after the +@@ -2934,7 +2944,7 @@ g_variant_parse_error_print_context (GError *error, + + if (dash == NULL || colon < dash) + { +- guint point; ++ size_t point; + + /* we have a single point */ + if (!parse_num (error->message, colon, &point)) +@@ -2952,7 +2962,7 @@ g_variant_parse_error_print_context (GError *error, + /* We have one or two ranges... */ + if (comma && comma < colon) + { +- guint start1, end1, start2, end2; ++ size_t start1, end1, start2, end2; + const gchar *dash2; + + /* Two ranges */ +@@ -2968,7 +2978,7 @@ g_variant_parse_error_print_context (GError *error, + } + else + { +- guint start, end; ++ size_t start, end; + + /* One range */ + if (!parse_num (error->message, dash, &start) || !parse_num (dash + 1, colon, &end)) +-- +GitLab + diff --git a/dev-libs/glib/files/glib-2.86-MR-4936.patch b/dev-libs/glib/files/glib-2.86-MR-4936.patch new file mode 100644 index 000000000000..ce1d9b1328f4 --- /dev/null +++ b/dev-libs/glib/files/glib-2.86-MR-4936.patch @@ -0,0 +1,69 @@ +From 4f0399c0aaf3ffc86b5625424580294bc7460404 Mon Sep 17 00:00:00 2001 +From: Philip Withnall <pwithnall@gnome.org> +Date: Thu, 4 Dec 2025 16:37:19 +0000 +Subject: [PATCH] gfileattribute: Fix integer overflow calculating escaping for + byte strings + +The number of invalid characters in the byte string (characters which +would have to be percent-encoded) was only stored in an `int`, which +gave the possibility of a long string largely full of invalid +characters overflowing this and allowing an attacker-controlled buffer +size to be allocated. + +This could be triggered by an attacker controlled file attribute (of +type `G_FILE_ATTRIBUTE_TYPE_BYTE_STRING`), such as +`G_FILE_ATTRIBUTE_THUMBNAIL_PATH` or `G_FILE_ATTRIBUTE_STANDARD_NAME`, +being read by user code. + +Spotted by Codean Labs. + +Signed-off-by: Philip Withnall <pwithnall@gnome.org> + +Fixes: #3845 +--- + gio/gfileattribute.c | 11 +++++++++-- + 1 file changed, 9 insertions(+), 2 deletions(-) + +diff --git a/gio/gfileattribute.c b/gio/gfileattribute.c +index c6fde60fa9..d3083e5bd8 100644 +--- a/gio/gfileattribute.c ++++ b/gio/gfileattribute.c +@@ -22,6 +22,7 @@ + + #include "config.h" + ++#include <stdint.h> + #include <string.h> + + #include "gfileattribute.h" +@@ -166,11 +167,12 @@ valid_char (char c) + return c >= 32 && c <= 126 && c != '\\'; + } + ++/* Returns NULL on error */ + static char * + escape_byte_string (const char *str) + { + size_t i, len; +- int num_invalid; ++ size_t num_invalid; + char *escaped_val, *p; + unsigned char c; + const char hex_digits[] = "0123456789abcdef"; +@@ -188,7 +190,12 @@ escape_byte_string (const char *str) + return g_strdup (str); + else + { +- escaped_val = g_malloc (len + num_invalid*3 + 1); ++ /* Check for overflow. We want to check the inequality: ++ * !(len + num_invalid * 3 + 1 > SIZE_MAX) */ ++ if (num_invalid >= (SIZE_MAX - len) / 3) ++ return NULL; ++ ++ escaped_val = g_malloc (len + num_invalid * 3 + 1); + + p = escaped_val; + for (i = 0; i < len; i++) +-- +GitLab + diff --git a/dev-libs/glib/glib-2.82.5.ebuild b/dev-libs/glib/glib-2.84.4-r1.ebuild index d8035d6cbc9a..96cdd3c73a9b 100644 --- a/dev-libs/glib/glib-2.82.5.ebuild +++ b/dev-libs/glib/glib-2.84.4-r1.ebuild @@ -22,7 +22,7 @@ INTROSPECTION_BUILD_DIR="${WORKDIR}/${INTROSPECTION_P}-build" LICENSE="LGPL-2.1+" SLOT="2" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" IUSE="dbus debug +elf doc +introspection +mime selinux static-libs sysprof systemtap test utils xattr" RESTRICT="!test? ( test )" @@ -56,6 +56,7 @@ DEPEND="${RDEPEND}" # libxml2 used for optional tests that get automatically skipped BDEPEND=" app-text/docbook-xsl-stylesheets + >=dev-build/meson-1.4.0 dev-libs/libxslt >=sys-devel/gettext-0.19.8 doc? ( >=dev-util/gi-docgen-2023.1 ) @@ -90,6 +91,11 @@ MULTILIB_CHOST_TOOLS=( PATCHES=( "${FILESDIR}"/${PN}-2.64.1-mark-gdbus-server-auth-test-flaky.patch + "${FILESDIR}"/${PN}-2.84.4-libpcre2-10.47.patch + "${FILESDIR}"/${PN}-2.86-MR-4912.patch + "${FILESDIR}"/${PN}-2.86-MR-4915-CVE-2025-13601.patch + "${FILESDIR}"/${PN}-2.86-MR-4934-CVE-2025-14087.patch + "${FILESDIR}"/${PN}-2.86-MR-4936.patch ) python_check_deps() { @@ -113,14 +119,6 @@ pkg_setup() { src_prepare() { if use test; then # TODO: Review the test exclusions, especially now with meson - # Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629, upstream bug #629163 - if ! has_version dev-util/desktop-file-utils ; then - ewarn "Some tests will be skipped due dev-util/desktop-file-utils not being present on your system," - ewarn "think on installing it to get these tests run." - sed -i -e "/appinfo\/associations/d" gio/tests/appinfo.c || die - sed -i -e "/g_test_add_func/d" gio/tests/desktop-app-info.c || die - fi - # gdesktopappinfo requires existing terminal (gnome-terminal or any # other), falling back to xterm if one doesn't exist #if ! has_version x11-terms/xterm && ! has_version x11-terms/gnome-terminal ; then @@ -140,6 +138,9 @@ src_prepare() { ewarn "Tests for search-utils have been skipped" sed -i -e "/search-utils/d" glib/tests/meson.build || die + # Running gdb inside a test within sandbox is brittle + sed -i -e '/self.__gdb = shutil.which("gdb")/s:"gdb":"gdb-idonotexist":' glib/tests/assert-msg-test.py || die + # Play nice with network-sandbox, but this approach would defeat the purpose of the test #sed -i -e "s/localhost/127.0.0.1/g" gio/tests/gsocketclient-slow.c || die else @@ -309,15 +310,16 @@ multilib_src_configure() { export PATH="${INTROSPECTION_BIN_DIR}:${PATH}" # Override primary pkgconfig search paths to prioritize our internal copy - export PKG_CONFIG_LIBDIR="${INTROSPECTION_LIB_DIR}/pkgconfig:${INTROSPECTION_BUILD_DIR}/meson-private" + local -x PKG_CONFIG_LIBDIR="${INTROSPECTION_LIB_DIR}/pkgconfig:${INTROSPECTION_BUILD_DIR}/meson-private:$($(tc-getPKG_CONFIG) --variable pc_system_libdirs pkg-config)" # Set the normal primary pkgconfig search paths as secondary # (We also need to prepend our just-built one for later use of # g-ir-scanner to use the new one and to help workaround bugs like # bug #946221.) - export PKG_CONFIG_PATH="${PKG_CONFIG_LIBDIR}:$(pkg-config --variable pc_path pkg-config)" + local -x PKG_CONFIG_PATH="${PKG_CONFIG_LIBDIR}:$($(tc-getPKG_CONFIG) --variable pc_path pkg-config)" # Add the paths to the built glib libraries to the library path so that gobject-introspection can load them + local gliblib for gliblib in glib gobject gthread gmodule gio girepository; do export LD_LIBRARY_PATH="${BUILD_DIR}/${gliblib}:${LD_LIBRARY_PATH}" done diff --git a/dev-libs/tree-sitter-vimdoc/Manifest b/dev-libs/tree-sitter-vimdoc/Manifest index 7a59f81b2b0c..4c183b958027 100644 --- a/dev-libs/tree-sitter-vimdoc/Manifest +++ b/dev-libs/tree-sitter-vimdoc/Manifest @@ -1,3 +1,4 @@ DIST tree-sitter-vimdoc-3.0.0.tar.gz 58110 BLAKE2B 21713b7c75e988be0c92f181dc33bd4616346a618f11d34a90e26b39c0a6fd7b97f18154982fb41287258fbe436522e04753f9f19d6e61cdc9405057ae247142 SHA512 2305127de360a34f10706002793ffc52d220b950105dcb1d54afa1f291e86be7a9188390de9b92a1edc8083a8d270a9e8b641b15b43e161f29c1117f93589763 DIST tree-sitter-vimdoc-3.0.1.tar.gz 58427 BLAKE2B f07062cb254cf33ac8b898aa226f745bd143f7cbcb22ad34cbf9fb2988c411fd4ce3404e45279a1603da3fdba2861017f6225fdf53a13f9d0cac7f6e4f409bb1 SHA512 c6cf36babc7c775da7f77ed502d57f59b58d4e9001f24553c81dbb983447c10fa31750f591f4035445858a462ec4c9a3aef8f1592e824694d26b184adc9d617d DIST tree-sitter-vimdoc-4.0.0.tar.gz 58862 BLAKE2B 3785cd583b2d81d8b31f6fae7d080d389a1e64f0a3492f429b2fd44f8f11034a4d963e05c023ec653d0b7be7320365bc62824ae2ea28e5503253440b196bb023 SHA512 c4a40587c4ce7168b7a166c6338fc77d5b14c5860959c6170cd7d5ce424097e70746992aa722eb88c4b4e96b0d85158b142b7e9ef9aa09ace16442e8522c77af +DIST tree-sitter-vimdoc-4.1.0.tar.gz 61551 BLAKE2B 57afd29f94ea532bdff2f2bc703ca73985ffbb7c0c024c41a1e5e92d775ecf9f3e82ccec90123ff5796703f0009ff18d23cdf14e060251743b2fdcaa77a8a677 SHA512 4b20a978ddb3e4220819211135b24bf0688c3edb68200bf10557382c870ee6bc85995854e88f164f6c74ed6bf5f44bb40a0d5afdb191babe4a5ee45e0af90cf7 diff --git a/dev-libs/tree-sitter-vimdoc/tree-sitter-vimdoc-4.1.0.ebuild b/dev-libs/tree-sitter-vimdoc/tree-sitter-vimdoc-4.1.0.ebuild new file mode 100644 index 000000000000..5518b19cf94d --- /dev/null +++ b/dev-libs/tree-sitter-vimdoc/tree-sitter-vimdoc-4.1.0.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +TS_BINDINGS=( python ) + +inherit tree-sitter-grammar + +DESCRIPTION="Vimdoc grammar for Tree-sitter" +HOMEPAGE="https://github.com/neovim/tree-sitter-vimdoc" +SRC_URI="https://github.com/neovim/tree-sitter-vimdoc/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" diff --git a/dev-libs/vectorscan/vectorscan-5.4.12.ebuild b/dev-libs/vectorscan/vectorscan-5.4.12.ebuild index a4ed337e2d2c..3c9a931aec73 100644 --- a/dev-libs/vectorscan/vectorscan-5.4.12.ebuild +++ b/dev-libs/vectorscan/vectorscan-5.4.12.ebuild @@ -19,7 +19,7 @@ S="${WORKDIR}/${PN}-${P}" LICENSE="BSD" SLOT="0/5" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="cpu_flags_x86_avx2 cpu_flags_x86_sse4_2" DEPEND=" diff --git a/dev-ruby/backports/Manifest b/dev-ruby/backports/Manifest index fa04ccb22366..527451a01e05 100644 --- a/dev-ruby/backports/Manifest +++ b/dev-ruby/backports/Manifest @@ -1,2 +1,3 @@ DIST backports-3.25.1.tar.gz 187354 BLAKE2B 7aa7a581497c938bd6105d61fe0120e4dffa406fdada85d98a4f1255f3dc124a5c72b903a88bba19c30fce9a6cd62768a8515cdb56c114cbd73cbb337baabac6 SHA512 1e157b15108c084cdec8434a67cc2f75bca22ff196ed279a7f804b42a4b9885a7e057e23c202f29744195fb2ac19b00efe8b3e40d0866647aa0abb4d5a87a159 DIST backports-3.25.2.tar.gz 187377 BLAKE2B 78874304083042b17fde8e7e04cbf4dc368b654eac9d9c9957aa0ff51cbb4e51aea811feabf990558b04bdee98f1c37bdf873b9bcc91ef700e8b75ffd50f7c57 SHA512 cf5716cee7e62f58dcfbf1aecadb03bf8f3c7c8ec7109917b454a52b0be359735e49298a5bb353cbea861faf512e864518826fce5696827c31d371b880a44da5 +DIST backports-3.25.3.tar.gz 187365 BLAKE2B a35a5cc7724863edad56bda2282441812c35a33f255ea61ac1e0ca98a6c5d61b661f0616657bdc444897e8533af58507afd70f2a74e681182a18c7550fdfdbed SHA512 6cc72d4fb5bbb451ca28af280665b580f90369c7998488134969376c81af530b240f77eea1d91726f97321687e4423cbff2b9f0e6952cd544df33ddc2ff7a7c6 diff --git a/dev-ruby/backports/backports-3.25.2.ebuild b/dev-ruby/backports/backports-3.25.2.ebuild index 38d4558ad704..27a39aae58a2 100644 --- a/dev-ruby/backports/backports-3.25.2.ebuild +++ b/dev-ruby/backports/backports-3.25.2.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/marcandre/backports/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~s390 ~sparc x86" all_ruby_prepare() { # Avoid activesupport test that no longer works in Rails 5. This also avoids diff --git a/dev-ruby/backports/backports-3.25.3.ebuild b/dev-ruby/backports/backports-3.25.3.ebuild new file mode 100644 index 000000000000..38d4558ad704 --- /dev/null +++ b/dev-ruby/backports/backports-3.25.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby32 ruby33 ruby34" + +RUBY_FAKEGEM_GEMSPEC="backports.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Backports of Ruby features for older Ruby" +HOMEPAGE="https://github.com/marcandre/backports" +SRC_URI="https://github.com/marcandre/backports/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86" + +all_ruby_prepare() { + # Avoid activesupport test that no longer works in Rails 5. This also avoids + # a dependency on activesupport + sed -i -e '/test_rails/,/^ end/ s:^:#:' test/_backport_guards_test.rb || die + + sed -i -e '/rubocop/I s:^:#:' Rakefile || die +} diff --git a/dev-ruby/erb/Manifest b/dev-ruby/erb/Manifest index 2f30fb69f502..f6708757cebf 100644 --- a/dev-ruby/erb/Manifest +++ b/dev-ruby/erb/Manifest @@ -1,5 +1,3 @@ -DIST erb-5.0.2.tar.gz 21822 BLAKE2B 0bbe198a230eda6a38ab8d059101d573d175dc8b63bbb8d325d5784f2c4f1fca408f47dd8dd029627a12d812156df77bac09fdcf88ce31da1068d7f58b32b716 SHA512 2dd7d6c450abcf2ece916112d36a25aced01843c00c367555d5f626a15765bb2155ba0273f12d40af57684a205377caeb0d318bcddea9b15c169d8bb68df6e3f -DIST erb-5.0.3.tar.gz 29689 BLAKE2B e4873a0f1a79466717d63e45bc10536f903881d6ea67b3a4cf8c5eb7af5eac9b40ffb6f2ba56789c762c3546bcd84c8b63ae9c0909840cc749b761f5f88c1cdf SHA512 114279238ce25b0f5d7fbca43d5464fa27963b41eca33ecd142e8353899a8c8c2f216805d6a989d99849fa71c09a83fadd4c698c2d2b21651b0f50307a97eef9 -DIST erb-5.1.1.tar.gz 29868 BLAKE2B 20bfae1d24f11fefcb07d3f5c619fe91ef4ec8dfca5eba74fea21f51ab8ff5b5d7ee43d2784c07b2e237a4a847f8a2c4c68b6d1dfd7cf217ce0370b8284364e7 SHA512 f6085b78a19bd5480294c7286b320ecd2fe437ccfe2c0d70b123f9ae3b5f544493e5f5f444b4ffa7a02dc2c46f6b8b912a05f17a8900cfe0c38e03e03a5d06fc DIST erb-5.1.3.tar.gz 30370 BLAKE2B d7caf250b1f50c3cbb37b244e154e37a67e81cebfa759dab63a8e3710a8327616d092cba6c0d1c34a260ac41932cc35cf4765bf992c08430d378480d8f05779e SHA512 ab5a06d0e0a22a97e621f49164cb0fdc1bc0902c1c92b67f4a30b5e4dd9a2ccb25021c62a8dca13303be24b23d6cf9b6866bd62e0e2a5669b3c19b50d3c759d6 DIST erb-6.0.0.tar.gz 29685 BLAKE2B ec6035854a4c91fe6c9dc950c526e1c6827b2a1089730d9bf0f6b6e15dfe835702a3d76afbb424cc08b9795314b8d8388a3b15c333d47f408fca3d8b9bf8cb9e SHA512 b9366150219be0c0478400db4986c434f49e2a42696500d0f1e1d70c0fd519c4a95afe70ddd2589931be9b18a01d4bf164a9028b174c0d13f85914374f9cedea +DIST erb-6.0.1.tar.gz 29714 BLAKE2B b5fa9155013ef05b15784d3b30985df064f1a2310c0de115f46a53637cdbd5a0aa74bb6a3fbf93f928edf7da7900a58277116fb6a62f8812f0450bef10957e1d SHA512 a87cf5fe591418e90a10842d978591504344d7f6f9b61ca01d3c76fde2bc84019ccea49e3c9525436ee4963b679940b6d11581d8c23aa6aa93bdef986dcd9fe1 diff --git a/dev-ruby/erb/erb-5.0.2-r1.ebuild b/dev-ruby/erb/erb-5.0.2-r1.ebuild deleted file mode 100644 index 6beaa6b5de60..000000000000 --- a/dev-ruby/erb/erb-5.0.2-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby32 ruby33 ruby34" - -# There is an erb binary in exe but that would conflict with the ruby -# built-in version. -RUBY_FAKEGEM_BINWRAP="" - -RUBY_FAKEGEM_EXTENSIONS=(ext/erb/escape/extconf.rb) -RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/erb" -RUBY_FAKEGEM_EXTRADOC="README.md" -RUBY_FAKEGEM_EXTRAINSTALL="libexec" -RUBY_FAKEGEM_GEMSPEC="erb.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="An easy to use but powerful templating system for Ruby" -HOMEPAGE="https://github.com/ruby/erb" -SRC_URI="https://github.com/ruby/erb/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( Ruby-BSD BSD-2 )" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" - -all_ruby_prepare() { - sed -e "s:_relative ': './:" \ - -e 's/git ls-files -z/find * -print0/' \ - -i ${RUBY_FAKEGEM_GEMSPEC} || die -} - -each_ruby_test() { - ${RUBY} -Ilib:test:. -rtest/lib/helper -e "Dir['test/**/test_*.rb'].each { require _1 }" || die -} diff --git a/dev-ruby/erb/erb-5.0.3.ebuild b/dev-ruby/erb/erb-5.0.3.ebuild deleted file mode 100644 index 6beaa6b5de60..000000000000 --- a/dev-ruby/erb/erb-5.0.3.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby32 ruby33 ruby34" - -# There is an erb binary in exe but that would conflict with the ruby -# built-in version. -RUBY_FAKEGEM_BINWRAP="" - -RUBY_FAKEGEM_EXTENSIONS=(ext/erb/escape/extconf.rb) -RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/erb" -RUBY_FAKEGEM_EXTRADOC="README.md" -RUBY_FAKEGEM_EXTRAINSTALL="libexec" -RUBY_FAKEGEM_GEMSPEC="erb.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="An easy to use but powerful templating system for Ruby" -HOMEPAGE="https://github.com/ruby/erb" -SRC_URI="https://github.com/ruby/erb/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( Ruby-BSD BSD-2 )" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" - -all_ruby_prepare() { - sed -e "s:_relative ': './:" \ - -e 's/git ls-files -z/find * -print0/' \ - -i ${RUBY_FAKEGEM_GEMSPEC} || die -} - -each_ruby_test() { - ${RUBY} -Ilib:test:. -rtest/lib/helper -e "Dir['test/**/test_*.rb'].each { require _1 }" || die -} diff --git a/dev-ruby/erb/erb-5.1.1.ebuild b/dev-ruby/erb/erb-6.0.1.ebuild index 6beaa6b5de60..fdd2549b0122 100644 --- a/dev-ruby/erb/erb-5.1.1.ebuild +++ b/dev-ruby/erb/erb-6.0.1.ebuild @@ -6,7 +6,7 @@ EAPI=8 USE_RUBY="ruby32 ruby33 ruby34" # There is an erb binary in exe but that would conflict with the ruby -# built-in version. +# built-in version and other slots. RUBY_FAKEGEM_BINWRAP="" RUBY_FAKEGEM_EXTENSIONS=(ext/erb/escape/extconf.rb) @@ -22,7 +22,7 @@ HOMEPAGE="https://github.com/ruby/erb" SRC_URI="https://github.com/ruby/erb/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( Ruby-BSD BSD-2 )" -SLOT="0" +SLOT="$(ver_cut 1)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" all_ruby_prepare() { diff --git a/dev-ruby/loofah/Manifest b/dev-ruby/loofah/Manifest index 4036e55c137c..ea40738deab5 100644 --- a/dev-ruby/loofah/Manifest +++ b/dev-ruby/loofah/Manifest @@ -1,2 +1,3 @@ DIST loofah-2.24.0.tar.gz 87409 BLAKE2B de30f213d1be17c9a4fe23eb72cc66f68f91f8503b95da1bacd29fd51e213b73d5a9ef333c98ec26577c05148451a8c439c8dd51f9f09c1c5b09efa705b6365e SHA512 46969516db8220e39d640c7d7db2ac20d9fa744f70f86127aacc339d800501ac6ccd4871c12f818db013bba71551ca7b6af8b9886d232c53db54ee28b248f2ce DIST loofah-2.24.1.tar.gz 87491 BLAKE2B 1c8889f293eddcf34ea1e512edaecc3398bf4554941aef77abc695005bc604ce3199388753211dbe71afdc8d76eb3f2290e702c56ead375241669506d431ac7e SHA512 61520a612ce713e2c1b4c6145d5dcd28ef3b59a8bd577c1fc1cc11b88f8a96d5278f382d777ff45928c62740eca4ad07a6c771dad409016d0f054ebb30e102d4 +DIST loofah-2.25.0.tar.gz 88426 BLAKE2B 700438c1d8c1410732014a424346ba880d25d4d954c6bb055cc5c2a21d017f4ceae5344ca6cbf3c2782f6c52cb0efa30d949adea88db8cf99efe0181d4aee0df SHA512 31c9e23c10ab24f207a181e393b07fc92b78a0b89b6a5ce325f32e5349a5c413bd8726d73d74e7c4a2a67c49531ac3c79a5ea6d27137b93068aea3bd0afae23a diff --git a/dev-ruby/loofah/loofah-2.25.0.ebuild b/dev-ruby/loofah/loofah-2.25.0.ebuild new file mode 100644 index 000000000000..cfea62486e8e --- /dev/null +++ b/dev-ruby/loofah/loofah-2.25.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby32 ruby33 ruby34" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_GEMSPEC="loofah.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Library for manipulating and transforming HTML/XML documents and fragments." +HOMEPAGE="https://github.com/flavorjones/loofah" +SRC_URI="https://github.com/flavorjones/loofah/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux" +IUSE="test" + +ruby_add_rdepend "=dev-ruby/crass-1.0* >=dev-ruby/crass-1.0.2 >=dev-ruby/nokogiri-1.12.0" + +ruby_add_bdepend "test? ( >=dev-ruby/rr-1.1.0 )" + +all_ruby_prepare() { + # Fix version in gemspec + sed -i -e '/s\.version/ s/".*"/"'${PV}'"/' ${RUBY_FAKEGEM_GEMSPEC} || die + + # Avoid unneeded development dependencies + sed -i -e '/concourse/I s:^:#:' Rakefile || die + + # Avoid test failing on different whitespace. + sed -i -e '/test_fragment_whitewash_on_microsofty_markup/askip "gentoo"' test/integration/test_ad_hoc.rb || die +} + +each_ruby_test() { + ${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die +} diff --git a/dev-util/cargo-c/Manifest b/dev-util/cargo-c/Manifest index fc22624f38d1..3005d8a6db98 100644 --- a/dev-util/cargo-c/Manifest +++ b/dev-util/cargo-c/Manifest @@ -1,4 +1,4 @@ -DIST cargo-c-0.10.16-crates.tar.xz 34193728 BLAKE2B 5de92feb5cedbce752e082fda0e11e556e4a2357bbcbce959a4d742f9d01450bd3659a8d536257df6d2037fb7f29765552d8d40ba09df107ebbbc1f3d7ea99e0 SHA512 c6262bda21428ef76af319ead13b42080813741a81994909cece3babfd76988c1972ccf3f3d9504b76d65bf5eb92b76c289d1e5d0c8ab0d0dd5267ed73877701 -DIST cargo-c-0.10.16.tar.gz 36216 BLAKE2B 55020f3627b8583428cb8b74c2d11a78544243b6ef497f6fd6cf262605c332dd666f93a11c2b34eb7ea60563b9e873c4f28e05017af80160b42973f476b03bca SHA512 522326818ee6c976432223973655e94a05a0e6ba2d6afc2a4910b12aa20e4e44254b801f1e0d759ef0dccfb4a50eda3808cfb481ccb939a5aea92adfe6ac3de9 DIST cargo-c-0.10.18-crates.tar.xz 31726064 BLAKE2B fe40a3e0bd43aa9f387a03b97658ba0eff2e0f1626ba6a96dac9c84589f3220f4a9a507ae1ee249239e08ef0d7bf4ff4014976046974ac06bcca8b00b5914fde SHA512 56c5ad11ce2d6a3f12d4297c8610fc34e04729e9a7d022e954ee541ea533eff24c1356e5e39caafedf0e5d2c08a18d1cdb5228f9b644805c3cbef6e79269018a DIST cargo-c-0.10.18.tar.gz 36779 BLAKE2B 37a4a31f4d42271a48106ad1cf738484954c5337c713999f7b5045a34c2769ba666331414abd1a225443eb382ce9fd11fb855c696f4e6b49ecf482b3e1b4787d SHA512 7e01fd4a37a29197fa72effd1423c0aa170d68875e4bd64d4b80aa1ab3ed7e603c429f6c10d1ea431949c89d446293ad6172181014f52ae9d4a133dbba5e7d3a +DIST cargo-c-0.10.19-crates.tar.xz 32601804 BLAKE2B dac0c02124a4916c768a8be68f2b5c8fc58305cfd6c41bf4b49c6085e7745977e9614edc73dbe049e4d08b2ef489f2ea85c2b48937509144e6e0e3b1222ffdb6 SHA512 1548a8d02057a61d9dc1ac082f5a6278d1eef494159f56d4377b79dabbab55f1d6315433bc14615ecec920ffb1bcf61419aed54fa64995265695052ee73b1d71 +DIST cargo-c-0.10.19.tar.gz 37408 BLAKE2B 0a0f9ddb3810687d10501ca1ea31f602a9ced45a0835c001f4e86b1e5feedf13b3bbef76e709e3632d3e177bdb612b0ccc0c288360c37ff335427400e150f649 SHA512 d813ee6985852c5755c4578041caa5f82b7e07031e285d42db4b2d7410846940a9c826f52af22ea0c03dc9a059ac0e017d3e221054c703d3d98c05da30b464f8 diff --git a/dev-util/cargo-c/cargo-c-0.10.16.ebuild b/dev-util/cargo-c/cargo-c-0.10.19.ebuild index 70ea39087047..70ea39087047 100644 --- a/dev-util/cargo-c/cargo-c-0.10.16.ebuild +++ b/dev-util/cargo-c/cargo-c-0.10.19.ebuild diff --git a/games-strategy/7k-ambition/7k-ambition-3.2.7.ebuild b/games-strategy/7k-ambition/7k-ambition-3.2.8.ebuild index dd3b6c6a98de..dd3b6c6a98de 100644 --- a/games-strategy/7k-ambition/7k-ambition-3.2.7.ebuild +++ b/games-strategy/7k-ambition/7k-ambition-3.2.8.ebuild diff --git a/games-strategy/7k-ambition/Manifest b/games-strategy/7k-ambition/Manifest index 3f3d8cb6d6dd..33c3c5a35a4a 100644 --- a/games-strategy/7k-ambition/Manifest +++ b/games-strategy/7k-ambition/Manifest @@ -1,3 +1,3 @@ -DIST 7k-ambition-3.2.7.tar.gz 63336653 BLAKE2B 63ef5cba37360d51d3d7dff9243c0b39598d3107c91bb9bef37297ff66a8fafcce761ee097034e0f2b4bbd94612dcace786646cd70aaaa34bb6df673a7232360 SHA512 b4183fbc59492f773f7a8d1be6004e2c2abac67c26a5c00d3e70b9796345740652585799d94a2ade5b864f8608f8aef560b218d6531eb15e283f982fd4184adb +DIST 7k-ambition-3.2.8.tar.gz 63347907 BLAKE2B d9df96f1955aa3f6d32870cce770afdeb1f5ecf80d00981a866121a0901727cec2328b322c15f8c3d825e9e5ab4b0754bb555f6577da6c90acda75ca98f0d4ff SHA512 d051428662e2f5488bd8561a7127b45b17570dad16dc3409a3603493c825762747985e8477db2039f4283c30b82db17871e79f901fdcca262c0e39a3e1334b20 DIST 7k-ambition.png 203178 BLAKE2B 1feaeab6a4538a278578bdbd195d3b809472008fa8d691d564a27d05da3adcc1125f0eafe42c45dd28c8719c62397dedac2f2bf31276430e0e42be246a98f7be SHA512 33a4ed08facceb626f2dc3ed99c0e05b0e3898d2a800878be55520acbfeb2f4d71dfc9bc927b18aa24fb2bef5678674065a79c08fc8a8b44ecafe28d901b5c28 DIST 7kaa-music-2.15.tar.bz2 20050332 BLAKE2B e051ee3071d79316ab5a8d9dbcde5047c551e398da7f4f857c4eaf6f60ec6b66eafb892372e05c4db837238dc2777bdbe9b57079c938b072fda2a250e423f627 SHA512 e2c7ce14dc6e50581dca9769f03167e59e4be19aa559bfc2a7acd277f72c060935f3158edc735711ce971924b105e8df5984c2c40da8d6f484625e5ce94a7f73 diff --git a/gui-apps/awww/awww-0.11.2.ebuild b/gui-apps/awww/awww-0.11.2.ebuild index 1166252877e2..6aa23f934d41 100644 --- a/gui-apps/awww/awww-0.11.2.ebuild +++ b/gui-apps/awww/awww-0.11.2.ebuild @@ -188,14 +188,14 @@ inherit cargo shell-completion DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at runtime" HOMEPAGE="https://codeberg.org/LGFae/awww" if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git" + inherit git-r3 + EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git" else - SRC_URI=" + SRC_URI=" https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz ${CARGO_CRATE_URIS} " - KEYWORDS="~amd64" + KEYWORDS="~amd64" fi S="${WORKDIR}/${PN}" diff --git a/gui-apps/awww/awww-9999.ebuild b/gui-apps/awww/awww-9999.ebuild index f444f2240e80..da10eec82c89 100644 --- a/gui-apps/awww/awww-9999.ebuild +++ b/gui-apps/awww/awww-9999.ebuild @@ -10,14 +10,14 @@ inherit cargo shell-completion DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at runtime" HOMEPAGE="https://codeberg.org/LGFae/awww" if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git" + inherit git-r3 + EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git" else - SRC_URI=" + SRC_URI=" https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz ${CARGO_CRATE_URIS} " - KEYWORDS="~amd64" + KEYWORDS="~amd64" fi S="${WORKDIR}/${PN}" @@ -47,11 +47,11 @@ QA_FLAGS_IGNORED=" src_unpack() { if [[ "${PV}" == *9999* ]]; then - git-r3_src_unpack - cargo_live_src_unpack - else - cargo_src_unpack - fi + git-r3_src_unpack + cargo_live_src_unpack + else + cargo_src_unpack + fi } src_compile() { diff --git a/gui-apps/walker/walker-9999.ebuild b/gui-apps/walker/walker-9999.ebuild index 70d3cc285bc7..886c30a525c9 100644 --- a/gui-apps/walker/walker-9999.ebuild +++ b/gui-apps/walker/walker-9999.ebuild @@ -29,8 +29,8 @@ BDEPEND=" " src_unpack() { - git-r3_src_unpack - go-module_live_vendor + git-r3_src_unpack + go-module_live_vendor } src_compile() { diff --git a/media-fonts/maple-mono/maple-mono-7.9.ebuild b/media-fonts/maple-mono/maple-mono-7.9.ebuild index 51b6402ef9c3..2b3ed5d64c1c 100644 --- a/media-fonts/maple-mono/maple-mono-7.9.ebuild +++ b/media-fonts/maple-mono/maple-mono-7.9.ebuild @@ -8,17 +8,17 @@ inherit font DESCRIPTION="Open source monospace font with round corners" HOMEPAGE="https://font.subf.dev/" SRC_URI="!normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-TTF.zip -> ${P}-ligature-tff.zip - nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-NF-unhinted.zip -> ${P}-ligature-nerd.zip ) - cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-CN-unhinted.zip -> ${P}-ligature-cn.zip ) ) - !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-TTF.zip -> ${P}-tff.zip - nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-NF-unhinted.zip -> ${P}-nerd.zip ) - cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-CN-unhinted.zip -> ${P}-cn.zip ) ) ) - normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-TTF.zip -> ${P}-normal-ligature-tff.zip - nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-NF-unhinted.zip -> ${P}-normal-ligature-nerd.zip ) - cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-CN-unhinted.zip -> ${P}-normal-ligature-cn.zip ) ) - !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-TTF.zip -> ${P}-normal-tff.zip - nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-NF-unhinted.zip -> ${P}-normal-nerd.zip ) - cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-CN-unhinted.zip -> ${P}-normal-cn.zip ) ) )" + nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-NF-unhinted.zip -> ${P}-ligature-nerd.zip ) + cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-CN-unhinted.zip -> ${P}-ligature-cn.zip ) ) + !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-TTF.zip -> ${P}-tff.zip + nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-NF-unhinted.zip -> ${P}-nerd.zip ) + cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-CN-unhinted.zip -> ${P}-cn.zip ) ) ) + normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-TTF.zip -> ${P}-normal-ligature-tff.zip + nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-NF-unhinted.zip -> ${P}-normal-ligature-nerd.zip ) + cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-CN-unhinted.zip -> ${P}-normal-ligature-cn.zip ) ) + !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-TTF.zip -> ${P}-normal-tff.zip + nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-NF-unhinted.zip -> ${P}-normal-nerd.zip ) + cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-CN-unhinted.zip -> ${P}-normal-cn.zip ) ) )" S=${WORKDIR} diff --git a/media-sound/goxlr-utility/goxlr-utility-9999.ebuild b/media-sound/goxlr-utility/goxlr-utility-9999.ebuild index 7968bb32a2c5..c705c15faaa1 100644 --- a/media-sound/goxlr-utility/goxlr-utility-9999.ebuild +++ b/media-sound/goxlr-utility/goxlr-utility-9999.ebuild @@ -21,9 +21,9 @@ fi LICENSE="MIT Music-Tribe" LICENSE+=" - 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 - CDLA-Permissive-2.0 ISC MIT MPL-2.0 UoI-NCSA Unicode-3.0 Unlicense - ZLIB + 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 + CDLA-Permissive-2.0 ISC MIT MPL-2.0 UoI-NCSA Unicode-3.0 Unlicense + ZLIB " SLOT="0" IUSE="tts" diff --git a/media-sound/spotifyd/Manifest b/media-sound/spotifyd/Manifest index 2de9fcc55346..8ab292dc919a 100644 --- a/media-sound/spotifyd/Manifest +++ b/media-sound/spotifyd/Manifest @@ -1,5 +1,7 @@ DIST addr2line-0.21.0.crate 40807 BLAKE2B 9796b9a1177a299797902b7f64247d81d63d3f7e0dcc1256990628e84c5f92e3094ee8d753d9b72187b9aaa73b7ca67c0217899f2226ebd1076f8d25b458475b SHA512 afde7660dda30dee240e79df1fb5b92d4572520bf17a134ef3765e2a077af9e13713952d52e27fae420109b40f6e24dbce1056687dbcbead858ffc21cc7dc69b +DIST addr2line-0.25.1.crate 43134 BLAKE2B 1538b50e123fe0a3fa0940ba4718cc86720e63f874fc7d949917720feb57e6daefa471caaee4c14e200ca385af738effd388861982c128933390b6a6227b7d2d SHA512 c400f3b6ccaff8a1c0d7d82c708a1784b8fd5ba64b6e420e85819d59b1cadb55fa59c852925093b921469f272d1d5140cf12f013ae75d1e1bc85021097df8fc2 DIST adler-1.0.2.crate 12778 BLAKE2B a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd SHA512 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1 +DIST adler2-2.0.1.crate 13366 BLAKE2B 3b28bbd7f89424567ff1bb36b984bf4fd767370459f5548545218cbe1c9f082fedd932fccc7e6acd83a1dfa06a371124801a772e5555ede7d6c2cd1ac57930a4 SHA512 555b2b7ba6f8116acccd0bcd16ed34cc78162c81023cff31a8566ffcd456c03832089fca2d5b668ceaac4fe8f922d31aa9c487f226a36cace294ff4a219bd91d DIST aes-0.6.0.crate 86774 BLAKE2B e687f2839b53adc3ef990da8221705a462015aa0ea004a6e15dba7e7ecc008d9d13cad6222b03244dc48bd1717a442e7aa5aaab6e97bba1d3be28c1d914e464e SHA512 65349285e429f9b8815743d86b3ebdececd48ce556a08b6ec5ec89bf966bc9b187a7df4fbe1f3b25172db3aab219b23f8040c1160359868e9f71d67a767c90c9 DIST aes-0.7.5.crate 128544 BLAKE2B 7381fe4963324b1f9b5cd1e81b2f2e3010ebb435b049b20fd1a9b37e472fed0062c63fe0a1629a59680f3c99154836a147db9561ee01dddbdeeefe6efdca5b6a SHA512 1e1e6714af9131af6a7e9546339d729979719c9c6751e4e2274e9cc243803920a7317c01a6dc20e31d730ccd43fc65cc2e9a3a29a6bc4d0c9bc0a6a3b65fe5c7 DIST aes-0.8.4.crate 124812 BLAKE2B c4a9cadbbfd9d24a758bd5d18b851fb86bd74f5b1f0f6f5706275329d92396a00dc2c35fa0aa2af5b55fd336934d35df413a31f85ba886e85a037296f9df25bd SHA512 96243337546acf64f89bf9ba23011eea1a205d82d96707f9c45bf28cc62ef00cdac5cdfacb8d6013155ee1522ad73dd1b7f166c74ed18159bf23c3c48ec77d79 @@ -8,6 +10,9 @@ DIST aes-soft-0.6.4.crate 99980 BLAKE2B a4b3838e0348ed3d7468f9d0e19d8dd45071ec54 DIST aesni-0.10.0.crate 100248 BLAKE2B 2dba6f1004495a725acf171eeae5a6e393475323e8974eff2e4667194ac147dc3a52a9bed1b00cf7735d3671b6a2bd135cbb4dbde822d7c8c21af23692d3e71f SHA512 726e5213a81ea021d4be7c5220d952cb6f0cb0ecb6cc840b542e9f75539e37fc5d6378ad4f4d6a2bc7e7642ea07a18202ed32d3b6a212777bd7abca735c6707c DIST aho-corasick-1.0.5.crate 172064 BLAKE2B bab7767070b959e8e4c054bf505b9423d7fc8b02dc682b559f54db986abe72ddf83a069b4bb585d71b47de92d2fce66a1c151a0d29c4aae99378ca05c3d5eb50 SHA512 6b0a64dbfe0c166341a34cd169bc46d28e40f72db4d599a1aff5327a6e891408f39e8e92e983cf9396a8e8135f93e41550237ff3e5c8c05a5325688746fd814b DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830 SHA512 ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69 +DIST aho-corasick-1.1.4.crate 184015 BLAKE2B 088766e505a828a221a9bca29cb1833ac3964a538cda62d12b723a263fe0e588406af0b710cf87ef67b0ccb9aa3bf69f42e0e5225ade47abe93c73fcaca69ec1 SHA512 c77e35191b00546f5e499fab154170cedd619599e7250f92db9fba0a41c833eb426f214e58b00c5c39f8757406b33492b3241cb8cb233ce384ad0683c3ee4b62 +DIST allocator-api2-0.2.21.crate 63622 BLAKE2B 983897fc977118f220dc4af7e801ac08eba77bfde2a25d756bad3e77f849418e74e7c67eaed68e2d719ca7fc6e1e9ce151dd7dbe8707dc43d4a6400294c8fc8e SHA512 1bb5711ed6041b0d7eae2ec784b8aa9d215db0f49cf79c692946eeb0db545d358cbcaa8156ae34e51d05287c08574f1da251ee574f2392949e4ed26d04770d03 +DIST alsa-0.10.0.crate 74719 BLAKE2B de7c90103b5bda851f8448603019ac0030e32d4ea6ac873a6cf666f95d05270f99b832a6728789f6ea58b39d503f5de84e67bf107b7952224f6a70813942b0bc SHA512 46eef2f2ecb4918d1e7f034a7f92ee64ec0c41f3d62e91363bc0b0b9ce51d38d60921f7e74ec2f1305b2de8261caea61dd7875e215968ef63740076416fbfdc6 DIST alsa-0.6.0.crate 68171 BLAKE2B b692d929e49765c59ae2fae7bbe8bef4393c393e384c5d84133f018123cfe1044c6fe6c1915423614957fe622553aaf9cb5c38a41d3ff93afa2c4f162a828252 SHA512 a63354da0e643a68e28e32293d48f866c071332b1d17cf8349a79f28e45d6b9566d22f30c3001a862ea26c2b757aa9440b3f52c826a40b29c7881d12416f599b DIST alsa-0.7.1.crate 70626 BLAKE2B 350f7dccdbba20ec1c0ab4df8ebc136e9b826b24e6561aa1a2b1dcdeb5bd80cff2c0b225efd0dbbe90dc81b32f5cc081124bbaca51e9697458020d7465e9c2e5 SHA512 b94d9a1aef0becf2324cdcd6d20fc7542a017d746e73bad981e0ddcf300e43db5ea5e907487387028439d66871c7d9a05349d0f9ef0d50ed2a43b05cbeb990ee DIST alsa-0.9.1.crate 72824 BLAKE2B 6ca18c6a0c62dc3588f19deaa64aca9c4dac5490d6f4fbc41ae4ca66cbaed04526a90a91c7787815df74e8333d25f9da58fb4bdee24a3a66af211dc15ca6e84d SHA512 c65316e0dbdbd368faaa5985049b119dfaf3f8a8ec867bd69bacdde99395d257227819fb92970685c86b0002408b7e99026e3ca914ec237d20b585d23e16fc4f @@ -16,10 +21,16 @@ DIST android-tzdata-0.1.1.crate 7674 BLAKE2B 4385a4875aadaacd5284a9ca7d1bf8a7bf1 DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e SHA512 b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191 DIST ansi_term-0.12.1.crate 24838 BLAKE2B f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791 SHA512 b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671 DIST anstream-0.6.18.crate 29681 BLAKE2B b6f72cda084b38f1e1cfe60de2562e8d62ebbc352176bdf668a2d6be09349bec46d291cd475e8af814ce66def44d95cb98c325761150130752284a82d8a84f21 SHA512 5149977d6f7b5e9cf6350f1ef130caa3ff46c7e78976358452a185ce196cdd77fee48a3a9838f434ae6ea9c15b19f6bfbab156edf819f81179d6774318f08963 +DIST anstream-0.6.21.crate 29516 BLAKE2B ddab9728a4824b1682a84339e2c5212904fcf878867c8ed7604ce045d4ba6bae0f129e73968e20d58a9b2e297ad1b6ddd5557907d3b6ae9253e3127ea901d40b SHA512 909059510b778f606df779d5f8ee69cf721072e81f933eb5f5fddaa4d1586a0040ba7456165d5db16c812dd654c2dda6b929ccb997310b507f1b79846ca1f402 DIST anstyle-1.0.10.crate 15725 BLAKE2B 36e656bd8f9c584f11fda5cfe0c2e24e8426b9e1b602aad34ed118ae6950a55440e292d2e0ff7615f5e4f466fd06f07536be198a59506a587d40cb0c4ede4f80 SHA512 621e7a89fad13db985f07375d316cf8efba57fd44ae18628a8049a65aefbaef27949f99317872e91e0922bb089a00234055199ea3167f80ae03d00ada4f75dea +DIST anstyle-1.0.13.crate 17651 BLAKE2B 026d4163f4bc8d1677d0830dbe46fd335d18e50420d2d809a675609c1e020f7e3c5e69b8d0a7baf5f42fa2321b6230c619a93aaf8e02ceaef638f8006dbf479b SHA512 1a92c4bf6ff7262c0f5fe72ff66eaf11f0c84e84a06746767918903c0416ba5d33ac54ff9a2c6cde37e26bb2287675d3f0a8a7efa95eb013c9be388b8139661e DIST anstyle-parse-0.2.6.crate 22343 BLAKE2B 85eba405dc5cf806283cf442984e86583dfe6c681f849eb7a347b7b67bd2b6f692e84fc9b5bd86486633cb2f05960ec16e8778300df114ae6676da43442db9bb SHA512 e28c9818afcda0e9b84c205d9c6697ce64cb06c21df2c3666869c07d66893105d9c5e96a27fcf2410a09f6af00735252e22b5c7d8c6cb3f68c4a8f376c49d396 +DIST anstyle-parse-0.2.7.crate 21707 BLAKE2B 41d51d4c026e548a9428f5fd8dc85fce964e3f1cf709820dd53d216af3065a4ee069de8c5bcec5eae19b99172f60e89034a2ded6bc787f3ea4159d5d30de3984 SHA512 3e0920594dfa15f16dd308d0da81d784e6a5d6fd7a3b12cc1512fb625369ea7b4550df549e3be961906e2d3105f72ecb86b89dd6f5817c2c982929ea26d605fa DIST anstyle-query-1.1.2.crate 9969 BLAKE2B 179b8dd6dd709c2ca67f4eb5c9a502b2867cb6744a39f824c4fdebedc67c6c3e07d107c7d817e2ffb589d13b7ed4900cf9653ddc0a43663217042ee92ce8c9da SHA512 26069d936c4b1fb09bc65cda0253fe9be8fa4e96c0821f980c772602b4e9230035ec8c9d092ef95e0a0354ac559f8d25f57a14c34086d4d241b5fba688951837 +DIST anstyle-query-1.1.5.crate 10264 BLAKE2B e1c1bad89ad4c09e48f9d7c417713953f7f468f10f7f61e351137be801b5986ab3d21406411b0b23c42af4a2b5881b85aa68dfc66d23cafca7dfcb88180104b7 SHA512 3b7b888df0b678bd4560981dd94a51a6af9a535cc1a869bb4577e832492bb6de718a3ac80ecf61f8857b3d0ed7b95e444e85bd00ef65a46c6a244d0b0eadd95d +DIST anstyle-wincon-3.0.11.crate 12638 BLAKE2B 01f1ce85205ed3e573daca145ae420e9f7d78867fc036133be74bbcc9b83231ecbc681b57eb98bec622bcbaaf4bb293d05d3021a29b49a0a71b8ab89b0ae9dfd SHA512 09c3215dc6cef75d6282078e68c5dbd51580b6c8db79a77932d2e74a51d29cb0ef23c31b8a73a71896a45eb5dc5f94aee209bd8f6e5df4c675dabe3cd304a96b DIST anstyle-wincon-3.0.7.crate 12400 BLAKE2B 2023529aa12ebe1b7073a88180ac7491fbba7e8556ba20061bec22b1db9d0f3da058faa5bd7f499d8e5da18422dec7e7648f3b4acd7b4a2d2064824f1b881259 SHA512 782440c1093235ad481f0b854f5a3d3acb7908d2e5ddbd4143139b8bfd0faaf2f9816c1034e760d9261a233e6d645098cd5a594064f190662908eaf79972c903 +DIST anyhow-1.0.100.crate 54059 BLAKE2B 3089cd4bac1a3ede11c5849fabf12735392ba2910f5d5c1117cbbc9fe2491855745879690522988ac343e210783f8d885f13593b4d0f3a3816b9a8c35ef2eb7d SHA512 1f0c072aab9490d68db3783f078c6f8a4d96360908fc6ee3e971b02fb72b9dd5e689dd385f0e93388a87e0dfbd8cff0e14a280b40d55f87646f3c0e558e779ca DIST anyhow-1.0.97.crate 52221 BLAKE2B f48e4861d3a45d5f5aa2f1b62501f843c51c529e6bf58d4c887fdcf5a7a35c4699b71e0db0fe064199b236acfa1ea211c30b5f14f3b460bc5afad534e6545271 SHA512 340bd50af85ec816a6123a73154a2ef89d0ffd4c74c99121663649cadf230665c72437872df693c26a1da644b0f867339372a7898315f3d7733203785c588356 DIST arrayvec-0.7.6.crate 31237 BLAKE2B b9d1df7e3ec47d434a2606fe9540e37e02351873b376a4e113b54461288e9ab20e02285eed5c4bc0f052ec4d6b3c804044413490ea706c31a852624b03bde7bb SHA512 b1f320746018a7f32340a833420089446ec5cefb7f299b4506eab7423d5db49f00b72d8aa8c6600f9159b9480d5eb3ce69407d93f5c9934147860c83e4d6eca8 DIST async-broadcast-0.5.1.crate 20134 BLAKE2B a45a7ff0b05eaab687f0912b2fdd0c3d9379402d5ccb8269568fbf77e235b42db0f741b4743438511fc00e7e1c6ec09c7b2f6e37b4b9a4df07846ae582e9c812 SHA512 48de28fad3fa8258b61f1adc0f13e69698f0fc3e11c68eb6b6d2df11784dc5c1e09f6f2c03dd12679d9888171b87cff3362ee06b910833e55d278738ab7508ae @@ -33,25 +44,34 @@ DIST async-recursion-1.0.4.crate 11521 BLAKE2B 5ec9ea2c5cfefecd1f16170a00973fdd8 DIST async-task-4.4.0.crate 35178 BLAKE2B 6dc05e0e121d42779e00914fbec5027a2f280acfb4a4c72c66f0ba8e5e9705ef8f0032a5452d9a90e1909e4f828c32cf1fbb1d686877893c7991334ce40566e1 SHA512 713620c4aa948f8da61b6587fa3c24e523c42268d59c77ed0481788066b543933e2e68df969315d3cef5d59ef1e9fc1b0f9f293e1a6af9ff31ea8ddd86a5a260 DIST async-trait-0.1.73.crate 28654 BLAKE2B 07edf1e9cd92f389a7c05953200568dee887007b0233370ad55003cec40e8a310dc441c331c03df5a31681e033871958742f0a86955fb28a4bd05a95e01d2889 SHA512 f7739642fece168778f7c7c9077fef078e65943edb656399cbba27d4e37b0fb25cb7901c83dbe102b7c702a26f886f73a8240bc97ce14668013139a8814122eb DIST async-trait-0.1.87.crate 32014 BLAKE2B fd02d51f8be160ea8775e48519f5781bdd37b77e858d2018d22c7295b0b2cf9ad08038b8532324b228e09d8b0b68cbdbc2fe5c485bcd05d7950405ee06904b0b SHA512 8d61714aadbf9f686a28a4feacbcb785f7497986135bc6b9038d3d45859073553f3d69ef7429a6126bf1f75e917bc824b095ada63623280b7d74a4e834138c4f +DIST async-trait-0.1.89.crate 32171 BLAKE2B de1262f5c40b3469732679f82640d676e802f3257eafbf020f5f42c8cbc70d278c3c97577225293a19d22e76f0437e916066e0b1eb4c4f92ccfa504e48b54355 SHA512 deb15ae7b4250666a6ea79f682e1079f50965d6aba353f057747dc84b530140512782e040e97f2ffbd90abab1e470b18ce471aba17cd7c68eb434a0874052d27 DIST atomic-waker-1.1.1.crate 11551 BLAKE2B 83d329f1e95a2d859d842a3553464636c8000df359d03f7ee8e7c11ac6c14b7eddd176514c1b3405cac93c37ba50ba8d90f90b6ae1ea122589ae3cbafec554bc SHA512 a42d21849d9b4569b099eca63c9d0f383439e382a0c2b7d0bcc42af988db9c8cd77c941af7d6839b6b4445c95782739f07f526daef36b3f4d885410e260be0e3 DIST atomic-waker-1.1.2.crate 12422 BLAKE2B fc6632f3c9d719b1d24a1c8e05947d94028909d1c629b80576e176e567636dd4cca699c7e91cae2df63541da574146b3ce766374e93f0ee429bb5bc89a4d3cae SHA512 e07e58db7955791259d0ec00fc4d53318aefb4506e062914819c4220c6dc75fa11a7af0289b4653aa1f9041eb975a025635190de68b4800a0e91e33cdb0ba11c DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9 DIST autocfg-1.1.0.crate 13272 BLAKE2B 7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203 SHA512 df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f DIST autocfg-1.4.0.crate 17712 BLAKE2B 7f7300439899be03d001dd32b7e797bc4b9a58103081b6f7353c4b5897813cedf870b3fb1fa25d320a75326b334b44d8287e8603de34fc560d0b567143915cc6 SHA512 3b5e7c30bc73e105e4bfcab584c24fc4016db41fac9c356c6649fd841051704bbe8848e09546eb50d7c1f18ea8ce1cb72fbc268a620d5c609b3472114b5be73c +DIST autocfg-1.5.0.crate 18729 BLAKE2B 27580e39b366c6fca02c9db09997b6415c409f12068f1249184268bf96fd85ba659e25ec730f99e10caf452f96c486f3d7442bf09c4552b5f39519b21d6f88cc SHA512 f279856f234d39d369623576acf9546a1ca24d7fe449f36d4fb93ea75a7efaf2c4015b9616a69bbbed358c5e5882e16b045352f046aa4c049b3d13b1e8257b08 +DIST aws-lc-fips-sys-0.13.10.crate 7788771 BLAKE2B 7649af9d001e4aa25cd990a6c75c021c0c56d45ccc5ec3ec8ba0ac148b4e403555f335e1de305318b0560f37af89904442ff32801f559daae0ff95cd9662dcf9 SHA512 6484cb15496c5fc627409e1d1c35a3331b5dc23fbd00e8947bcae93e1ae7c2d2b6af52c72496699819293b4598673840d739b2ad43df940db8797f8773aa645b DIST aws-lc-fips-sys-0.13.3.crate 7807003 BLAKE2B 7ec3776c77edaf162fa0481cdd8422aad11293e51e5d820b880f4d1a08203615565e65d0ff6069f579d75fd9e331121e9076293caba471184d3a13cff28d3a5c SHA512 965e938ea415df1a21d1872577dcd04cbb5c173a4e8e285027ff79581939017827595fcfa877512ec7c34cbfc5bbac7eb92132f08aa05eff0b9d5be611d91d4a DIST aws-lc-rs-1.12.6.crate 199625 BLAKE2B 25afc5ec9be5b1930913e7d9974190a9bd7c02ab55609051616cd3cd4b0a47d4e2b510fbad1fa084458148910a0025c08b431e85f1cdd7cf5cf69d74163f512f SHA512 a6882772378ecbf231b147f3df6e3512ad93c28ba524b1bd494132222d570d6672123532415b18c50c15738ffb3144cd572ada8d6c59f6fd3eafad9d2cea7c25 +DIST aws-lc-rs-1.15.0.crate 214252 BLAKE2B a1cf1b5cb817fe93edeb88f1cb7ef7ba928aaf3419ed6ff3bf03be398ea27ed8eb46179e6ede422276451e4d0dbf1902d0b8c788fed52224ac736790b152a9f7 SHA512 767a50bac8aeaa10619d270892f60d90a522d2c99c9b1487ac1cd03a516455f4950b98f3e95250a1267051c364a9557b7e7cca8ad0f4b5e6fe8371d9b461e67c DIST aws-lc-sys-0.27.0.crate 8491780 BLAKE2B 495354c2d8ca4f22fee7f79132b1170c74767f85e7a946dc53de61f698fd4b0fe005115d4a2a2717522beb942a9fb65fd85a03e19a9b84c32e82bc0286f802c3 SHA512 35a65c06d497b36f7d2fa7d821f92b16b27c14a2ce2f7b07e5aecd07b6934d59e3307be1768e5dce9edae481d71a8c6ff77d9ab85d357f4df70025be1f2b9edd +DIST aws-lc-sys-0.33.0.crate 9485869 BLAKE2B db978faac44549736a09bd15718f14b3ee856197595331cca7ae526cc0e6252664a2037884ea38b56accfc9ec3357e1265bc0ecec2616bb620a1528f319ea32d SHA512 dc03c0846d44b93de7e830b6e7221330388b288ce0f960bb4e43cb687bd116c6fe8caba2606f21da9315ac97b76507c6be60a132c1e2e607f4b5fb3eb2d504ba DIST backtrace-0.3.69.crate 77299 BLAKE2B 594358f1d9171fc369f50cacffab03b8a10a8fe3da5b915611cb74b0dbad0e048c7dc79c53569d89827db583e0f61fb7269147b6258781a1599a811e642414a8 SHA512 6e86de53e1c5003ef68b6a85479cde1e70bf416bdc50e6e32ead9f9f070fa30ad46de22574041c844ddfeabd5d15de01ef746f19f8cb7f257c491ef0bf071244 DIST backtrace-0.3.71.crate 86553 BLAKE2B 15ed93574fb9e8e28d5ad901bb1f94013b5fec7a79aa96d17f13f6f11a02d29a274ec14ce51a9f515574839aa41232e5aaf6e6fa3ad9c0483591055bd0a78c8a SHA512 5d9307757349e860fb4cab7e9ba1c9d0f1faf49ebcd935ba879b85fed2a9812786c7458abb59a742842a0796fc29ce9921cf575792402486ecdbd9a2568cdd89 +DIST backtrace-0.3.76.crate 89458 BLAKE2B f9a6aa545fe531202724023cff860853609afdded38328131810d9b32a80a5a84dc6e6f107e14b44238cc8111eacc95f58e0069406b94f5f4e83c8dd6b7efac4 SHA512 2c36a0802f16aa9f4010a466e27876c34fbd50016ceb4bf701eee6bf7688fcf9cfbcab1df8f4a601e0981c811f8d16723fc3437b783b7fe2a6ef3711bb2d4564 DIST base64-0.13.1.crate 61002 BLAKE2B 3b3a5b26e2ef18e9b4f1ede72b1bd160a1494751878e8441d463f8a514e6cb9ac859231536989e19fb1261fd864617fe31440df1b5855a0ec625521fc6fcef91 SHA512 1eb76aff9a84057f2ccb7082e9c57b015c2d71a28173089b02e7aacd09a7d311bedf0a943529611ada29f8d7b536d7ae4de256d98eee8450003a3a9a652bda4b DIST base64-0.21.3.crate 76898 BLAKE2B 09dc56f20321ea9e4af6a9bbbb83aec13b78e52d9f0007630b0ea21bd4ba24d7dd604a50001488656f2e18fedf6ba76328c673ae986fc8e8516d546cd167cf8e SHA512 75745fe54f321d21fb94d6481aa35f8fac29c8fa514a36043d10eb1a08f5566ee0ad0cdc7358a20b8086babd2afe043efad6720df1289495b5df4a788dbe920c DIST base64-0.21.7.crate 82576 BLAKE2B 25cc8761c14220981ff4ed332058f6179948080cbfa2b225ec1d1602e4af14cd470c969e8b7049117e6fc51a5a24e06b1d27bab844486ecb76409d12e0581d5d SHA512 c6986d88dd9aa081d914f35b4174be4ba874848657ac4b5e63b9b45af765d973289c548ccb5a01584edfc0d8d79ff5be25b51365295d6e7a311bd7f0ae3c0cb9 DIST base64-0.22.1.crate 81597 BLAKE2B 6f216a560bd36e6e6b74e908344b457594cc768d9763070e269b56a14b150cbfc4b7f599d4c2a0a5f783638170ee132f0796fefb14fcac7fd73c58db0791007a SHA512 91cf2e4e7fc8815f9b8a86a7fa722a20eee3dc1dd57111b29e420de87ce7836bcdb1db01d3cafb9a977710ef63e7cc41b7772762323e68e0e832156858aace20 DIST base64ct-1.7.2.crate 31011 BLAKE2B ade72fa2658e5227093d715d38c67d779a576b266cddbb0c952870ca7dfcbec1d4afa3a19cfa319e86cb7aa34b5cc28ade40a6b6f618b0235521beb547473695 SHA512 6b5a35d03f5f5e7ea1515c492dad6895cbfa0a5165adfa6d61e6c961ac3dd4701dfdf9c88dd847d203af571d451951b4e58ac4a99e46ba662edd49e7aa684116 +DIST base64ct-1.8.0.crate 31211 BLAKE2B 26ee299d0b4081a1b787dbac1d801fed171539268eabb09bea517b0896fb74dcef1c2e831a8c7841d5f93c4da411aa3febd6bc2b3d9bda64dd807c3f27eba8c3 SHA512 f623452b774cee4bc5c01e73e6cda92e162d07cf078bf2f52963b097ef6c019c5ea77faed2079151585fcb2b61975143386b91232da3225dd91a704783abefe3 DIST bindgen-0.64.0.crate 204700 BLAKE2B 4316d60ac565112afdaa99d70cdbd400d39bed1dcb6fc3d036952b4fc94d8ab4d35672fd8507b79dfa8edd34f09279e88bfccbae21b95f06a76a8df446c6bbeb SHA512 f016e3a9a9b0f65c0831f4c6fcf4839016124cefb8e2db922e1839ee22b9b9429ae20874f56217e8100a6bb68c4dd1b52664c41e9596b748088ed855111fbd95 DIST bindgen-0.69.5.crate 221128 BLAKE2B b89edbf883e1bc11a074c2f37f84bb966749823a6408b9765d6a61ee1179451d67dadde41d27838e8ddc6172dee9c342429f42fbe6959ff9fd7dcbc73d7506ea SHA512 b232b906af7535f8b87198f0a4037a0f09af367e0c913575f3d16453a2c272e7d76033cb3fd12d4223ebda4a0f8130629e67c5883e026a2422db3e0659ed3c3f DIST bindgen-0.70.1.crate 226363 BLAKE2B 4c5b9d70d0aa95ec3dc4cc956b3b101043132054ef47017f1e7b51072dec1ad87885caaaa91ce5353f88332a6412c0377cf9490822357e78b5124ae9b3e9a6e5 SHA512 cf1c87ea7ab9ed4df953795f1aa77e6ae6d72e768de3b517300074501ce49db6a3def1f58b9d824b5727974cab84a48461e7d98086fc440dc73ad9cf173ad5ed +DIST bindgen-0.72.1.crate 246071 BLAKE2B b6db53ca86fa3b5f71abbf6d2fd5f83553e167507db2e869ed7f3acf8865478e49430eddce8c255a8fabf8f6e408e7dcc78a9088201cdeea1e48bc387f8a6f28 SHA512 14f4277b62cfc91661400ed1bacb82a9f28b7e6caa17dd4bb4dbeedd5784299d5915c2235af9da42a8a216fa0b14b49f1e38eaa530f1e906bcd74f864ae8a7e2 DIST bitflags-1.3.2.crate 23021 BLAKE2B eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda SHA512 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62 +DIST bitflags-2.10.0.crate 48427 BLAKE2B 238a6da813eb2c5541ad470b97b9cf6ad8004095d2a8e865b88eb2301290b7bda22e5b062ba66a04ff0f3108a84d4799af0786b76f785fb5782bd847876549c9 SHA512 6fcdaf250ca6e74b65ecba755d62c3e78f6c02ce1a9562a3b17bb2d6068a0df480ad9c838ce427dc2d2869a9dd1f86f2fb1dc1e50a114def77fd24154b2b86b0 DIST bitflags-2.4.0.crate 36954 BLAKE2B 1d6cfeb0a17dc53a6249a83c8c7ad7c102985ffcfd7f7f76506889684235e78fe489d23b5a5f9018f0bd526a38d6b1449784c62322fb01f4bb507c0af8bd545c SHA512 0c3d6667abea48811a792749702136ee3db97518b33bc4c7d35737505bf56315e0e5810deeea28b7a1b540ec0e21bd319ba0b3c5c4aef0ba8ed5499ffdfd9b0c DIST bitflags-2.9.0.crate 47654 BLAKE2B df924872ccb929f3e428976764d50e5468112cb83e563f663a5e51a21ef4363b4c639e617ed8afd42a39fed522ee468ce7186adf88bd41f5f4a2a6c833d9ff35 SHA512 f314d5391745e5a7eeeda0c014d739981d8639a8e23e1120d9c006ef1a6d5d5b9292ec85ed2fdc117121b6ed7a67df41345116ed311d8523344928a725763446 DIST block-buffer-0.10.4.crate 10538 BLAKE2B d819c4f9c4be85868e8b105fb7e479d2e58d3ed85c3339bd677a3e111f85cb1ff624a54d7802ab79a6e1d9221115f66388568340480fe83eae1cb448f19f5b11 SHA512 b7d436d8e627e16e6ddc300ee8f706a6cef28ff6f09eff848eedee46f84bdcd03601303c92ab8996042e55922866a59259948177c0a4496eed723523e77f6fdb @@ -61,18 +81,24 @@ DIST block-padding-0.2.1.crate 7672 BLAKE2B 26f682717c908886fc54606950697a01e999 DIST blocking-1.3.1.crate 19040 BLAKE2B 74bde93cf2ac1e626c1d721d83f3d9f65ea58f99295d788c53dae5f33f322572e1c67441c7fb13ab2357e54e8540ef200ffac5a4a123ea0dcc7746c12a63b624 SHA512 e2da1fd0b07153701ca8fd5a62a859e9bdd484b338aaaf8c59a211c298b9ae469f71386f8f4b7099a910de04900de88b51965ae79f4edf4fa8b2ebe0a6e78d41 DIST bumpalo-3.13.0.crate 82114 BLAKE2B 62a930b165e853aeeb40558079f570c75ed13ff5e8436d99309dc6252aa28ae69d327c4b438913d6c7543bc156f2714f0c1e80d759ea0d44babe24ef0f268ac0 SHA512 419368d6ca37474c2867751fe5706d0c747326bebce323d571cfc07ee0f022d8e8a7ef5692091b0fa804995b081998dafc55da19a53e51135a767bc0afdb9605 DIST bumpalo-3.17.0.crate 91975 BLAKE2B b0aca1d64373425384eddcdf8d60dc977058a3d1570451de944ce48aacdb984e73a29ab64fb5b23413582d57a8e32ad8155f6a1479eb00f804afe9d8a9d9e163 SHA512 b2acfb463aa705b9c6a9555858b84f565234110988c880cdb761ab8dc87892ee5d22e65fa935d2cfef9d58869fec0ab64d810b26bf122fdd89b454b6ce65ea1f +DIST bumpalo-3.19.0.crate 96414 BLAKE2B f8c155f77cf977d72749f3cb943a6b171dfc4f67135da345a935ba603f2b52b5feafbba908b31feff391128196c7b0088f6f62d5b37bc4d2277fc0fb9c560b54 SHA512 58db27a643c55adae07061100e3604dad0056bacd42ce1142bcc34249645e9313e886c3174a755593544684fcc632f134f9c6066752ac695254fb9ecd40878cf DIST bytemuck-1.22.0.crate 52451 BLAKE2B 4f0bbad62897210ab551a78f859ce0dc1af7006979d651d34e1d9d74e3faba7d44c24521fe1a35c3bc0e8d11e8d18f850440eb8468e4856dc8fa259f7747d741 SHA512 a80e618aa6e03628d2fa46fd38a9c769871313c9fe39d1390e3c0f7fd7dcccabd4a5861e28442de26399876d07416d80cf58ca05918adeba09da1670d5dc118c +DIST bytemuck-1.24.0.crate 53243 BLAKE2B 472563c13565b62378576597a98c8050117940842846f2fb711fe4fc251e3bab19ed8f0d7e8215c880f06638684f1b8090afee598c730dacfe536f53287dcd69 SHA512 4e3b8071b7dc3b88104786f007f2fb8930cf252fc6cc04ff0c1a13873cd272971edcedcc9231a2a44bbdeca9c831f4c732e6917581420f209003b47761a8ced8 DIST byteorder-1.4.3.crate 22512 BLAKE2B d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d SHA512 8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa DIST byteorder-1.5.0.crate 23288 BLAKE2B 7f85a7948406844070a2c8202e0bd52f73b3dfc7c666a97046128044eb9352195afb80e2bf894c0742ad109e4473339de1365d09591de70dfec6c8c02a8e1453 SHA512 96caf981177f6ded9f27f025922cb94eb0cd9de5303bd91680099912d922092e77b7361efa70011e84f1595e443193e4f1b354443b9980c123f6ae573b236f7f DIST bytes-1.10.1.crate 76779 BLAKE2B 96573ff7852cd2d4f37a68cb4d76bc43d2018dc25b7b7e2164df022de4e1974f22d4d3ea7cbfb280667650cdb5063d600f4f76cbdca43dae508f29ced449b0f7 SHA512 03429f01927b94ba6c958c46b2e5bf92a23b39ce9385689e21accd34a5d3be01fd0f665f4bbffb1f7c5bdf1edfb1bf11d5ccad00eff0f9388be39fe2f753d296 +DIST bytes-1.11.0.crate 78391 BLAKE2B 9efcb5e5b93097d7405543fecb8962f5794c91b5e7186f4582e4d6886075a5bb5d3502c09ea0a3fc72c1381862f8700312a27607ff3534e7b476bac330924a4b SHA512 0f9315b9e6bc54b7339314c0ca2e01af61b4e59548f9e72ed54990e281266f614ec78917529779fb33cc2037a6ecc9595d531674a23eb3884e72759907b4a883 DIST bytes-1.4.0.crate 58080 BLAKE2B 99a9d343424e04649bd209bf2a6c3a089a6cc9fdb799968f8c3a711189328e4499df2e09cc6a2a8ce05d2cc668149b364cf30cb3b09e96e21d50a39519c2f49f SHA512 502c63b9fdcd36ed28ede55a63cd359dc7b28658ecd43020511d17d48d7c34e45aa8ff7e4b17770f12197451040c2b724fe68d2aa3ab4f81c9171d052f2aa000 DIST cc-1.0.83.crate 68343 BLAKE2B 33245b33fa845ea2f36da36e3830ec835f937e4319865b357ee9d5ea29a0f9f8392eadb38bf1d95e3c15ed201e561acaa87aedcef744f8db3dabff87a96c7f02 SHA512 742a248c3a7547bb220a0b9c97b67a831fab9b4ac21daa08c85a3966b9fe576088def33e16132fcabec9a2828a6fc437088bb045bfc98b2cea829df6742565a7 DIST cc-1.2.16.crate 103847 BLAKE2B 795261a0b910ad03a4d959a587164b317e1a7c462474c50620aaba5fe2f83a577dcc0f3d79f46fd8c743609a49dc87eaf1d44de8fe566638e4a8c24cfeac0e62 SHA512 f4de8d45740af7380dd976c5666832a25cc98a6c8d35bbc97a9cb5ab6a142fcdeece836a8ac1344d263a7b01f5e94128c2c2e1c22fc41bb5cb66537fe3b88bf2 +DIST cc-1.2.46.crate 92306 BLAKE2B a0398bcf41abcefd4c14c0bbcacc016176d6d766ea5a7f54c4a3902a7d1040f0af51b72471929b328229c1915d1c203ae5eb50f701df6831b75c94770370b3e7 SHA512 52a67b756e024a5aef5791e4ca9dd0c7f0a6d38fc2239cd5b8b0aeb5fe25be109a066549432bafafb080a4509cb531c4e2e5a8c8b8518fa824d53ca6d5fca143 DIST cesu8-1.1.0.crate 10555 BLAKE2B 4fe369d1247c3b30ff9beb644dbe2a517d78632191f3216bb83d632bc8857f9541a1b60d0bb583cf3fc0ae974f7c9d2b07fca5efe2057d9ef281de76fe810a49 SHA512 2d902b624c7ccfe3633c7bcf99b833b120c0ed7760ea825bfb2fa03ae90df543e637efd46e0743782b81e468e0fd3b534956ffca81f9bdfbf742ff3beae8f8b8 DIST cexpr-0.6.0.crate 17966 BLAKE2B cb46f066eb1f4dbac00ec86dc3e562db7ee8ea5ff17d16a60004fa020405e455b8aeb3d001f669cb33d1b62525bfd04ec657ffca4ed44a83af4a5e75b2c820e3 SHA512 766bff7ca7f9bf0885aee6f014bcfc084e7fdfcd567a49443d5340acfe8f257db109de17b24588504fc35c53f2d4303e2d22da21f73669125cfca984950cf886 DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b SHA512 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff +DIST cfg-if-1.0.4.crate 9360 BLAKE2B beadbfb273ee97cbb6e3740891fbace57511399ad203459b66b397587d794677a9515cde4e9ec4320c3795518bf1551d72b9a889f8ac4b225168f493288b7c19 SHA512 176e04df7ba783b7143bb84397b777f5c5a1305c08a5c3a218d4a66830620be89ed68992ba27686165bcd3fb2f34b2daf80b2a1d4b481ecc267c988e84d28e9d DIST chrono-0.4.28.crate 211379 BLAKE2B afdff84510c3d6490fa37f3b569b3112a1a49cca6a3dc47dcd89e3f63a6268c3b875ae513b2d2c1c8cb104a6dd13cee8bc9fd7c7258575b2f853dbbcab00d363 SHA512 b08d7d947d650bbae3d2e86e4aea73b828247ec6f4194c269bd30508b0b8f6abfaf391b98f75bdacbed4d9968b8d91e2c58f9693020368a154941d0a080f23a2 DIST chrono-0.4.40.crate 229824 BLAKE2B adf06e469c3294ce5899d602c42e6d25d63c7e8518530b365e926e402488eff6dd6f00abbaa4bcb693d4d2f406e8d2c71f2067ab09c2ce96867a09268231faa9 SHA512 345542dba10aff787c0bbe17e0ad1be7b279fe2b58763aca289ecd2e79ee1c518f9bd007ca3d89080191f272611776bc368cce9b25206b96bdbd710201cd0f3f +DIST chrono-0.4.42.crate 238174 BLAKE2B da67b970d4bff78a7d4910ad4cef4a8b6177ff2a2a507e24d540d173dca492fad220d09dba96eff8c75cce3e066c490207f8cf769da84ac456870dcec20dad58 SHA512 776b4b127c1a07ddce587aad341fa1022cebaa90ad667064809b3f83fc33aa355c811d7df445d6aae405265660deba9d8514d909391e47ea26d968bd4f24becf DIST cipher-0.2.5.crate 13099 BLAKE2B a728a53007340dcc55da52cc170e5b801c8ad20c4e159d31200d5ab7f8bf4407af9a60713b4385ef0d65c06cc81692cfbd7339cb7449367d1eaf7c529ca34373 SHA512 e55627f5424d9b566dfb0787eebb1fb17ae98b4016c9091e87040ed37b36e0256b7681958a0d90aaf06c125c71123270bf986128ca1e0dc125f3162a868848b9 DIST cipher-0.3.0.crate 12756 BLAKE2B a572b0140512b7512d496f2706cdfaedb680d47a283e3db8b4be97418585ed988929a3beed44012e8a9d9728cbc21f00b78bcbe376bbf57614d54ea07e4daf4c SHA512 8f0094c7786160730825cff21ca838f52801783f1f4f66755b0771595963b8b99fc926265ff502c66b94a2e6703d592d42bbed96ebf8d3a690bd5e731f0f5c4f DIST cipher-0.4.4.crate 19073 BLAKE2B 144c45c1bdc5f7aef7f4fc63b6dd85955c453537567d1f1074e436e50d0d61f8413973cf3da207a48f1560ea92f2280fc5880569c78a1dd66bf97fd1d88ccde7 SHA512 1856d8b08bc3dbd2fa5c8b97e9eae43323c7aa19203ef3e80bb49cf15b5ddc832acb7b97121a52032656353e764f1f722200b638f7c28975fec1b5c9dc908846 @@ -80,15 +106,22 @@ DIST clang-sys-1.6.1.crate 41346 BLAKE2B b70104e6c6b3c1b85caa111c2b1fb2c20d30eeb DIST clang-sys-1.8.1.crate 44009 BLAKE2B 9173de6dfbd3ef9d5d1fdc559700cd3a52f95cd77302063a97e8cf311a35825825e030b47f252c857853663ae8a16709e1f7bd0c608d67c2a74eb36ed588e778 SHA512 a68c426c20110fddb8bba07d6631517b0528fad45802e5a34a22561d7e6dad82dc5001387019a03f275e9a671b09ee0a06b6e86793c4fb4ec655700bb0f5e125 DIST clap-2.34.0.crate 202210 BLAKE2B f383adf1d757ac4b68995132b33837686ce451f85a02a8d05d2c746da398510d05d46330f3efade063c3952aacb1754cdac73dd0afcae0df5340a89f9353aa1c SHA512 c648a761b9996a7e7464a538bb53621bae22090b846a42c3b729beca3363958ae67e3da9f93f58b10a10e043cadf7ff930388680d168646178c2824177832db8 DIST clap-4.5.32.crate 56962 BLAKE2B be9511fe2f7bee9d5e42a357d7ba12e24f4cee58777534f9879c4ae72710c3bd370103bcab9dbce780eb3b64cd5c5fc3feaf33d20fac6b5f4833e057a68b69d9 SHA512 6ea664e49de3a488c0f1720d4a39cb48576dc2eb70562fa18febc2495345acf0b2ea5cd5c9cb4f1fee137bd73deaa3dfbfddf991769238e5ee8dfceb0c9e8729 +DIST clap-4.5.52.crate 62033 BLAKE2B 49d6c9ec19e31324e4e4493f4b0f45986bef54b6943c9d2164f9a00ea994c6ee257e64892828668992cc6cd5bdc99b1fd3d680aa7b3569dc6ce433cd07a2835f SHA512 17e7ccaaa76db226c3857644e197c6861b18e02a32bdda7108b38b22727bba8d3d06fe96df7826a4e2dddab0bdfde051090e6bb6f68faf7b412b8859fca6934a DIST clap_builder-4.5.32.crate 168413 BLAKE2B 8f89a24a6280cecbcfcf9d947921c720d655ca1dcf35ebab1c0193563f1425ea9c77bdd870346f85de7bd3c53dc6f321b8bf6671fbbdf8d60136a53dc6099097 SHA512 70169f666f0a72d2ae6eb84fa3bbaddd3f278ed76f96d362b807dd5e812a9a31f9fb60bb195e0cc1dbb18d42014c7bae2b0d1e947cd239913df69452977b8785 +DIST clap_builder-4.5.52.crate 170544 BLAKE2B 4a3d91c0d34789c25550f9fc14acc744ec27c00b8e96a4b5dc182672a2d92614019cf706ee68309e9b3d2095a9fa2837e11fa01ef224ca813f80a398f6c750e2 SHA512 c4af54b9e8ed6d99b6687fd5b8d81bb4b365493959598a83d40da99b57325e8bd60f5a8ed5220e5bad22247859a070886c1424a90ae476f79a5e678979e255b0 DIST clap_derive-4.5.32.crate 33441 BLAKE2B de532305380fd457c0fac504f845ba595f157661de7ae72b14598dde1f3d4ec1961196220354a2eac97943004ca8354f4623b29fc2b6557c6ef4a83ab6fd61d8 SHA512 ddac7bfd885efdc97ed07b23eb1a42827aff9cb0c6eabde0a0b247233316f99fb80acb8122d8faa054dc65b6fd7a76091ea2e533cb44e85e8dda125330cdbf86 +DIST clap_derive-4.5.49.crate 33559 BLAKE2B 453aa3774705de9c8cd77a25931deecc085efc85f9e63dea413c9989e445cd79886bd05c8f871f0203ee3003fe48805151fc42e50c66a1e05e6f6f01c5fc5e48 SHA512 61d2b9597bb521cfd31a2c77af687832dd5e48f8b80dacce3079f165d6629d58f000c18a956fe948b1ad99776d75caf4e6b9004f63d861b8ab3b68b5260376dc DIST clap_lex-0.7.4.crate 12858 BLAKE2B a5ecd50cc503157dd69746f3b6e9c288e0fe4f6d5d82271499f657134fd401fbe076255e2be6a23ed0b69daf3941c6429dad8b288223b0ad390a2c435575cdd1 SHA512 a2566868f4619679d3b74b70592ffa6a04b13e38e3196c56bb1dae8bea0c711bddbccd778d2aba3cc0ee074c9b1cc0335222818f0d47fb3cc8109cbc35bb992e +DIST clap_lex-0.7.6.crate 13466 BLAKE2B 723f306a9ae6c1fedd6b85fade039cc2a1dba51aa4412972025e0ff1aa8f15742e090dec61df3ac17ea9aae426e96049a673f5b944cb164b649ec1809477ab88 SHA512 d248b65234f201b2cb867562ca3d8299e79d348874547639b31883c6eac8416d3d6394e5b0047ad74f1a2c37e7721375c76bcaed1e60d13c3f1937b20ad9c54e DIST cmake-0.1.54.crate 18955 BLAKE2B 8ea4f8c4e5a383e406436343e3635449662788cf8e32f0dd5222ade92b6c0fdad4e5444c6a319531d8d87ba4e376f1ffaa7bcd1073878e26e7fcbd6383158a51 SHA512 ab4bf69dc77337c6d398b74738ea28a7fc1239e6991f8baa72fc78d3f9f6a77197e7517574e4f4d245ff6fbcfbf9b768c9f814d9ad74b74314f19c1d491f3009 DIST color-eyre-0.6.2.crate 635042 BLAKE2B ab35f335a29d5698322b44d144f307ae5968e56622dfa89c6d438071026c9bdd79f2033c8849acb3aef86d3590561386e02c7571b079abc4e928bc966fcbc233 SHA512 b7e83c8fc196d0c163b64d0165e10c70f15ff7e64fa8b1547f45d696f45f8a8ce7140e04901c4fa4caf15d868334253db64be2bd201ee964eb4dd5f494549435 DIST color-eyre-0.6.3.crate 636041 BLAKE2B 912d8ccd27df7ce1d15b6fc627693ba89b62a27a61ed36c80d61fb717d953fb8a678d625ef9e49f864a1a219c552db12a2742defdd7dee9a298eab4d7b415e36 SHA512 9b406b91f61c0d0a495e1f77bb82fec6c046e70e76e7886b8cd5d0fa8f8db9ce2cdb553c00590e4bf7b142a9ff005d9f546456c96a26b5d64e9b858d99981ae2 +DIST color-eyre-0.6.5.crate 636255 BLAKE2B 4a04144d7b79a46c5dd4397dac89f8e151467750faa0960b7fe527c2a69134de98e3d8cb67ed66c02e67975872c84ba641c3aa0b11acf8fa4c4076b79dfb333b SHA512 b2bb79609f5853177f010eb6b515c9eb4a69e0c2395b90108c151952da38afa76bfa4352d83ac5704716edec742ef85f95bfbefa8d0fa1b503f890f41309de4a DIST color-spantrace-0.2.0.crate 185098 BLAKE2B cb5305c296e4a8a138a22e4784ed1ab6dd80d75064521dba9eaae1d2553e97234dc1f4fccc9e8e353dbd6c7e63464826d1eb8247185ccff271f7bba2c613087f SHA512 d2e97c57bdcb6d15147664065d88e28cbd48ea85675a6e256084931003b6f968d9fb131d6faab36dee2463f886200fee3430fc16e151ea2ffefb25f869e8dbed DIST color-spantrace-0.2.1.crate 189095 BLAKE2B 3aa41b9b2957d8691b7c43e6ee7b0f9172bbd45cc3ea18d6f466b8ffb0d377f6c6d29f0b16fc763c3fe3b69d29949566fd5a9a1f3f2facd70794be316e0d365a SHA512 d7ef0c90a3decad380437ce36eb22247cea16c63f7d31a0f5fdd7929ee1277808ed16b94367d021583068ce2c4ad8552d3fbaa30f8a595402b22f45978f3a130 +DIST color-spantrace-0.3.0.crate 12884 BLAKE2B 5cabbcb8a0665c3cb66c73a678b47002ff49ba1650cbc796ee46de1ddca41dd1a4649d99eea0e9b1a1d54695347f8d6ec21c301329f19a579a72e5fa2e2b3f3c SHA512 eb81390a634f79a5f71209305a8f152b6d4c1de0bcba58d945718ffbcc886d43fa6462d14864a0d92173261d3e168e52da8c32df00bdf640c56f4c7e160538d4 DIST colorchoice-1.0.3.crate 7923 BLAKE2B 7055fe61677143f0d4445ed5f6be2cbc284c155aa6ceac04df6f3fa2563a225e440ba708bf40e298ad09775ab7c7e1842b5f6dd78422b06dbd1250908e3227ee SHA512 fc26696189d3935d5510a1237504339c1f354d03ffd3b4e830b7080335aa778bc72787ac5fa9a67a731b9bde2788da778d497f2ef97ec68bdec5145fedf4cd14 +DIST colorchoice-1.0.4.crate 8196 BLAKE2B be97be7d875cdd09cdf3f2594f0e7ed80601de62bc907ff70053317b9d48e889b3fd2fa0da5e6a681fcf80b24be5e16089289e3dbdb68255b486c18c517c55f1 SHA512 0bc6e55c3909e7bcfdf198d5d68ed8b588b82a72f53aaa41efeecf9dae2d31e6c172a7ba922e000fd7cdf6373c13371a98e7da08e6988fdcfbf20782dda8e4e5 DIST colored-2.2.0.crate 35062 BLAKE2B 60c397914f6a1ed2c8e04a7e1cd96f90fda10e8fe6233dbe31424c0ef46ec41fdee7779d2f5d6968662de23434b7cb7f717c5abdf29022e09ab59b9f8d92ee80 SHA512 4e3266c498a18a464b6640c0b735519f91b30fc1e001236badd4885a7fad80fe230e262fed4a8d07d54b4eb7dd24df4daebce84cfc0a4f29b6582153e11df5ea DIST combine-4.6.6.crate 132428 BLAKE2B fb52e724a52f1a551255591fedc134178080ea5efc0c488efbc369e6272f7f2b87dd7d0ce63361754d8ff0cf1b0a59bbc7b0396c50c53210f3e2c28ac965e0e6 SHA512 ff9ef9329de2cfc103271a25ad1fcb7e478f3328843bd8a65653e80b74112728ad4a33326a58ed7ef8cf39eec7c3b797fc287295ba149ee0dccb1de9721b5819 DIST combine-4.6.7.crate 134808 BLAKE2B 1f3ea9962f4ed4177a9c028d04934b5e261df405c1c0282c74609e0e6a1490a92b262ad26d1d21dae977cff8795bfa3c1f85aa43fab13a88227394d61d93861d SHA512 b8232b0e1f94039cef3ad4a0a35a972eb49f4f198749d2fe50aa3fd2a77614f2d24e51f3b4465243ce9140aed6bd048aaaae189a7ba864e3d23843e9be0c437f @@ -103,31 +136,42 @@ DIST core-foundation-sys-0.8.4.crate 17725 BLAKE2B 8afe47838dc91c8848c0d6a96a604 DIST core-foundation-sys-0.8.7.crate 37712 BLAKE2B 0e1dd99a5bbb0fe92f55181a37426f6e86445cb20e355f553b3162c88ccc075644461731a0cdcd93dcca65b6cef1de62b409afbd73ba3070a199ab8e7422dcfa SHA512 17492d5314db03abdb3b1998bf0c396ec8ed0f83bc978ae22d6026afdc86c50b58cbac073b3a0d97b92da7e98be11302faf1249d24313494bc058add4f4cb63a DIST coreaudio-rs-0.10.0.crate 34487 BLAKE2B 30c2273082266de0e4fe7f7f6ea56673d954efed518e522a4ea73ffec12781cdfc92df3b98e836f407ead18cae441c37f2a32d30f585ef066acee3314965eb84 SHA512 efcf47cb4337b8b17c12419be9b024687da129b24320c7da7c4875279543a622855ea100797818065710017a2f195db817f3ba1cdd4826ed70315a50244abc1e DIST coreaudio-rs-0.11.3.crate 42844 BLAKE2B bae10c9b7670651e78f24426378708a2c14b6b1a7da9d4e359611a8bb4df8354af5b409eb20bdf1e9b05a6117c59b6cd7d3a79851682a217732986602c8cf3ed SHA512 41b3ade3b6e157be533bd25352ad76a01de28cb3c8d60d7789a3f3b5aa868d6a7dd71456b90d6453684d2022e0f0a94b3e830b3920918c18a4693c2de0258a1e +DIST coreaudio-rs-0.13.0.crate 42013 BLAKE2B 8bd27556acc82781a1843b3f51947ad948ab0c1737e43a10512083a3a22ddef4db7d95843c6b3da5bdf3b3c9d4d8308adaddde9e1ea93baf114b74114184248e SHA512 a9d62e03060aae195eb63365009f2ffc5f8a29fa5e5834b15e886dd598c7fd0c579fd977b17fbd2bb090b2e29d4dab95e30c1668a6d356ba452b598faea9b488 DIST coreaudio-sys-0.2.12.crate 5433 BLAKE2B 22676e81147f6c1b07768814d550c28897d0e2b27d47a93ed4fe5d5e6a19aa68ffd0482e541f2c7892a3f7731535b2f0d15c4527e9a09a854aeaac5581b66d12 SHA512 06fab89ea033bd2983bda7f1cccada4fffd5218d960c740058214b4198be81f3456122f6f037f55e6b439c42e4d416aa073afe5f2110f6ea450c836c165e2994 DIST coreaudio-sys-0.2.16.crate 5480 BLAKE2B 495bbb4620b585bc814b702f91b4fc379f16f330dcbdd893e9d4f62dbf72a60657482ae047529addd6bcc2218ab24915a73e918f2e4718d8b43089247c3c2dc7 SHA512 0e4b75647e8023bb4672995b73c31f83dc96987d3e9181298a39a04d1637774e8e8f2e28cadb994c2e5c500e3daef37cc9481a59204f87cc52b12c310f539b6f DIST cpal-0.13.5.crate 93790 BLAKE2B 9e1b6f6d385ac48a7534c716a332c6c15b77556253fbfe27153f1e68bf702f84b6450a915ba79d229443beec2c4419bf7ebe7f856a0c95278a3447236500c1b9 SHA512 ad1ee6ed7473474df716300eb6b1e5db8a4a0f9844a5bebb6704e1acaf102c4dcd495d559ef6be99db652ccc0ea2a9c2d2a266e865389ce08aa6f60ba06e1c8d DIST cpal-0.15.3.crate 100083 BLAKE2B eeca832ced49c8b4913125b948a4c5996783361105d106ec7bac263c2a81ab87e5e2485229c3742f1d600037993abfedabed10ddc175ac507234d720e8f7f18b SHA512 c4461e740dbc8528b753074f3e53fa863ac6318b11a786250c520aaf32f33af98e830016ec92711dc5ebd631068275dae66d3d9c1d452191869c8a0b5879feea +DIST cpal-0.16.0.crate 104465 BLAKE2B 2e479b2c17f517a91db99a29d3a546e072a730840427d1201e572db672cb1dfd51da91b36f72496911223a5b5fac079e17594c964f1fb4a5132e5e8bcdfb0b1b SHA512 0a5177cbf2ba29d71b34daf40203b77710e39260039a7bcb350c3382f70e392a7d8730955a508b224e065d1873581b99cbab73bca60085be163f53b2337a5f55 DIST cpufeatures-0.2.17.crate 13466 BLAKE2B c6392b635542a6fe29958fabe7ce725354a31e24f6f144718553218247881013f56659d2efc671d47394294373db2d4ff8f45c7cb520ac22f2ee5c462858a1dc SHA512 9ae64656a21cfdd0528d87ba95f6213860bf72ccdf866019e65ed6662633e73490f92c42c80125559b3dbb7822090b5faa8ea564c562e04041232809ec2f58a2 DIST cpufeatures-0.2.9.crate 11895 BLAKE2B 1e369466bce2ddf7be6bbe219997628223a3a114914e5ed44b44f3fb6d6a084fbb47cc50ecb109287b074e159c675ae89356cb68cd843b41b502ebe824febca0 SHA512 88235b7d7152f4578a321ebc4f83f69070206b2acaf0e6331b52e1a6633e96edc787f9a409ac2e2799106a259166a302150fa4ddc88352b7739d50ac6ca9038f +DIST crc32fast-1.5.0.crate 40723 BLAKE2B 6e91ee57a1915c9a9f7305db24337f03cbe48fc60ef01c65ea55dfb4f1f60c9c93736d9b69efce3759d5504a1988bae7a2581a494edaaf27ee030e25e97c853f SHA512 80d473960f004148e14e5fe2f23aa0d1b8c36e96237f49a6765ef713030e8326dbc0250a561afcfc49d8733f5a6d4f9f4677451cc13e2426ffed61f8c00cd81e DIST crossbeam-utils-0.8.16.crate 42508 BLAKE2B dfaf9e7cade2cb5a2de90dc622e58a69c5b28fe9f69d3cbb945431683cf48fb409565190e3414a815563afb12631d990476919890fc482ce6b5792fdc25536a7 SHA512 4b8d599a8b93015eea2fd404cdf1526fbb94662fffc7c64d2f0659aeef349e4ad682f61b2b85d075c7f3fbbc4d8106cd7caf6e65dae117ba982f31262df3f831 DIST crypto-common-0.1.6.crate 8760 BLAKE2B f2422bfb89c15d47a8f91c8f6695e05eb56990a922e3cdf3d426044736f9932324c0d899a151a6df4d6683e6a6b21659c657d3988734014c02cd854bb4b924e7 SHA512 471dbc43f517089d2cfe0868e29510c6ca579875b3bb5d013c70796db969b609b6c4bb35c9a07b9a2917012dc5708b717d48e317a20038adbe7e7039bf3ada6f +DIST crypto-common-0.1.7.crate 9619 BLAKE2B b9a31ed6f3f06e0709e7c5a86a146018c9ef67e366f27c1d4fe07461d97810951eec60e92ec1531e365bfb9ab1b4cfbdd86b6cefd8b06ef2aa170c38f3c9cae0 SHA512 dcf3a6fc81f2b6528696dc762427fb198faa9b5effe1ee9fbda795da08b0560cfd6c286b55f1360864e95284bd9a52edabcf39fa9bcce71ff0621dbfef538c82 DIST crypto-mac-0.11.1.crate 9551 BLAKE2B 81140107f394d969d85b77050447e7d4dbfe7b2df8164293fe9a2cca04c1ed3cd245988482a232103c2ed9d35601ec6332669bd8598d903d305935dfc09af887 SHA512 3090a7a3fdb7d94b2b14841e37733d863f2e4d24d7da3c63df1726612abdd1c1df7179bba4e344eb63a94053e59a93b0988ecd1e2e5a5db0e18a4b602be4aaa9 DIST ctr-0.6.0.crate 17092 BLAKE2B e54c7d452944d928d5777e1744208ffa4531b85a4fd0b294d26a93f1390900de97df808ab92ef9b838e8a0c59b98a16884fc3b4c081960dbc7034694fe91525c SHA512 c58c7b44de1746e560596a9409ba542eef1b33147f8ee842da6e7c9c062046044a0f4cd432d0876928f036a590d9e6c007d4372a043aa5d8317fffdd605ac993 DIST ctr-0.9.2.crate 18344 BLAKE2B 195dce5872a0f59b90bedc268c5a5796f3076d12868f29f887294301b3576047ea82098e73ae996f564e400ce316cf1cdd9016ffb714559aaa0465dc826f0cbf SHA512 6a027f4e3881e51e3dbcb89348c961a2086bb63e70652c49107f49b7d021e31f74ec8c6ae91fd1605928f93f5ffa27889f257c166669e18508995168f17b46a5 DIST daemonize-0.5.0.crate 7125 BLAKE2B 9706f4ffb140533f73fe520755a06ee909fe1768e3f2e9b553acd2c1b80bcd4aff152058d1d70fb1ece7a7de6059cefa9d2db0fadf493aae641e1445e3c6d686 SHA512 8ab439f3cb43a83a84ff11fed4ef37adaac4ef5a83e497e8d6ad06ba1f10359366eed9741a07f3c97f3c83472da5513b5e28b6ded4b4b3ca9a1c536b7de62921 DIST darling-0.13.4.crate 20895 BLAKE2B 76675c20937450c47c1bda80170140930fc626d27d58b7dad3db33dce2e69457e2262189853141bdabeabf257d05d954f7dc1dbfa344276e05ee6dedfc8a2dab SHA512 7392896b97b80ad24d76a985f4b950668ba351498f48ef0722c783c28d43c4a4828f5f6eba7e754ca554b6662fc419e73bcb65d4b20037285a16e345fec9ef75 DIST darling-0.20.10.crate 32031 BLAKE2B 038c2a4d919a8e9ff6eff5f83911b40cf4e918ac27c90f313b6b9131c41770f83cc3901973fea1c6fea2886a8360f3c5cf73b807d14e579b8b8e87f15e3bc6dc SHA512 7a14eebc20e48fd39ddf7b8376dc937a04f561d723aba864432cabd5ab46eb189706b43e5121a7f4fb0d68dbfd044353875bb479d4bd5cd96b76e3571733ce55 +DIST darling-0.20.11.crate 37614 BLAKE2B 9bec875e60dd2971ad97a3098ec6060d16ddae7b4f85c0daa1326ab2411516c2da2eff283fcdfd091087402643d1a8db5db151c7792b97f75ef9722ef8219eff SHA512 62532fb9ff5f63592ac61d55a3f899ab90bddd380212637f380ae49e4037c3a3058055f88a5b5fe9c707c2884dc1333756364ba7acff74b0184050d9a063d596 DIST darling_core-0.13.4.crate 52937 BLAKE2B e038aea27b5b56f29cec8874132881ef589c869ffc974427924605b92436ef06f21c7ea748e97d9b719aa7156b3024e788968ac0cc6144d58eeace658b62a08f SHA512 96d431ebfb9d13aaff2c50f7ad7d5ac5e95813fac851e3e1d7739d1fd5b366fda32172829af88cabadb475f83b4500199167ede54bc802ca1e52137cf6c16c0f DIST darling_core-0.20.10.crate 65015 BLAKE2B a94adcc6092a7a69728725ec4bf4cb7c163bc3fe0890f272bba9963c256697bbe1ad964d58a975c80742019c59d4e1b3e56e624f938576996e216d2f99e21f2d SHA512 2b971156b8c1433dd0ddb2213ee522e2fe9968a62889285d1457b5e733daa70a09c21bca9b8573d9c742026b4c06f4dd2025a6a196ec0b08b25a78d8737dff6d +DIST darling_core-0.20.11.crate 68006 BLAKE2B 7a112380a91d9e8bb5ab84ac50ee1e21e25aaee4757cd976e82fca912eb17941799f3367250af10ea36182c26ab4289d51bd003f6aa7fe686587c696f4e87910 SHA512 aa2a8ca52bf3513711ed97fda6825d9139e0bcc818d4bac7023455a96c035e7cd676d6e3ed9bf594a6725353923de7c2e8474de3081f6d35f0c5dd507b2ca1d2 DIST darling_macro-0.13.4.crate 1910 BLAKE2B 432adc44108cce6a13adc9ec45ff9b7555eb4c0ac7f1000fdc8f8e9d1bc0ecfeb65b78f81438b097946aed8e37835f82028c1b16c1d466a124998139ae854df1 SHA512 908ea6459110da16e4ec6ac843659664ed4fa3fb2ea9b92274a738ff5994cf81fbb48403db609b9a70f39c3e288da4358ce369c66821122e3a6a0940473da94c DIST darling_macro-0.20.10.crate 1874 BLAKE2B 29cbdc6bd63e4eb0731c8f8f0a50cfcae9a88f116f8cfc0068e5d3cddc20b42b7f0f20f128ffa0f7bcb8d72f0188b04b3838b8327fa6f3ab45de4cf5c3bbf317 SHA512 565b8d535248d9d88b49a58e2a210ecc70f1cd39bfaf029ac6576a9b2eac70a6b18b4930aeca746d76d53b745c6aa82172bb341c4844b3757fc7978732fc2f52 +DIST darling_macro-0.20.11.crate 2532 BLAKE2B 18b7a038f1a3aa245f1089f5608d859982eb82f76c9085e96f21f42ba83a65a076d5810842a4fd952dd4ee65392fd5d4e478f067de31ffcbffa34db2ce933d64 SHA512 4884d05a87ba1638b7cdc0a3ee2718c38aa255aa19547388aa834abe95159a72128817494f4184dfd1aa811f1eda385ed4d4f3e65fc8735effa01769fbbacccd DIST dasp_sample-0.11.0.crate 11617 BLAKE2B 30bad992ba12c78769ff2f72e187f5ba0775a45f0af9d346d3e56271f414d3deb607415e73d40eb09023149c261ab02240f112386c0acec26e99d666cf8cb959 SHA512 438a2ed44fa3cc97edff6c6b6c2869dd06a5df790457e339a36ebcff024c152ade36740d889cdbedddb5dd7bd706dcd61778e68f5f42aa100eeb76213f5fefbe DIST data-encoding-2.8.0.crate 21394 BLAKE2B c07bba0c16083131e654a8ce91d4d59eea88a4f9c3c331ff395353d3aeacb6632c11ee213aa7bbfa9c415070bba697bb725ec9c3000e21ca9141b2ec02eab568 SHA512 5152e65bd3f3b24d2df43630012d17891b1b10d860ffce110332598de4aede15139ad948ec4486961d48baf1282d842fce1c3eab416d6254c8fcba2eed7af5f8 +DIST data-encoding-2.9.0.crate 21564 BLAKE2B 2abe5ad8772030140a67c015cb1ef5c0f1fadfb0398d0e73bdd8f93ae229955ef9ae430b28cf622ea3cff4ea8108159c05aa4d501eb6feb5b7a34b4a6c86fe03 SHA512 ec4edf4b7e9cf3f0f963de117e15cf4e7723587782b4520b01101e91880b074eca1473dc6c9d4e484bc2193caa975a7fc11ef3efb114354c491f13c86b149104 DIST dbus-0.9.7.crate 104206 BLAKE2B f08f72170fbf9af3e525c20f4f11de64368e4a5d010571bc2ed9985c13353d99466f7e98a39ac949787ee9f4d10845d6940d9dbeaf1fae2122d49eeefa5306b1 SHA512 c1557d8be0c5c5623ec6a3928de310c80eef2cdf976d9fcbcc00f08a532af5b8d530f8ee1eba4de12f2df0ff7cf4d21323dfad76be82eeee2f386173991681e5 +DIST dbus-0.9.9.crate 106151 BLAKE2B 213b47aac901b34f5c5dd6ada695e75460d29f999c67b8d8a5c03f4d92335b3f930efef49ba379b61b3ccd7ac882867f64858d2379ea4f9c3a5996f41fefa14a SHA512 86292e2843fbbdd34b73c1b386f347096520b18a33c13d201502aa2a98dd1587f5f145826a91840e9cbe65a53663a21f0fa19e1efee56b31c32380b93189d021 DIST dbus-crossroads-0.5.2.crate 44664 BLAKE2B 3f3e330dc7c93acc0566c20b44dcda01c36cc507cc7907fb1f730448e1648546fc3ce31fcc59283bf6b8b375cdcb49ae0f248df02e01f7430c590e8eca9c54f7 SHA512 987b80358831ff77392b622a5a86577e3e156bb793810185c432eb345ab99f98ef97ba8e483b9a1443307f3fba12d8d20ed8b570f55c6f1a5cbb511febb1cfd6 DIST dbus-tokio-0.7.6.crate 17545 BLAKE2B 67b874844d2120824101845d0022b4f75c1318658db52a1491bfccb462f476be7022bf3eb2c3fec1639eedb3ac0caf3c0468f034ab981d4c87f56cecc88f8709 SHA512 4c88cd8e88bcb86c519009150c2256a3b5cb129f75b762104536943201d387cde154ae26b75193f8156dcf85b745973a929c5b87ff70835e983995bb586cfec6 +DIST der-0.7.10.crate 90111 BLAKE2B 7a99e9f047b465eabb798286a613948347aca44afa4bdf171fc9663f128b26edcc23a8b1057f64e607a5847a9bf41a292a1f1df920bb248e98737d2ce85d4891 SHA512 73e25398cf349d0bf3a656cffc4390f2c82304c10a5da6900f2216ead1150d82e614eebcff8fc3e837b185b705114a77745700c6d7c0dd6bcbc2299fd213d73b DIST der-0.7.9.crate 85173 BLAKE2B f2dcf402e3d8b6a7ca818a8f260e0996290c77517b06bba8b22849c4d0e0c8f3dd57d664a06d9a7bfb1da6a39abd0740cd7d9776e75669aa970cc3ef63f924d4 SHA512 6de996346365647ac0da23d3fa9c72100d665c9225dc2f0bf1f553c4f0e7eb5c6acf3f1e36a11a7cc20e8b1c44752997e6f592c1d142755df145c5e302800f5b DIST deranged-0.3.11.crate 18043 BLAKE2B 738d5a88732e227bb0e0d33c04ab8248a699c7c499100666ffcd78673d1f38ad2d740222ab405e3eaa7a0a6f4596cfef90bd581a1baf77c954dca830c22e74f9 SHA512 48485666d3e50eb7976e91bed36bddbaea80fac4ac664723130069bd7d17893b6d1a2b82a4c3dd61677162e4305ba5ea8aec7bc2793d1b8b92dd1666c204fc43 +DIST deranged-0.5.5.crate 24438 BLAKE2B e0e825fdae479fbfb057fa084882eb58836490b5158205d55b4adb593882fe70f10f9b1b6c2ebd3ab6a61673dbb3a56e4f5af32b154c645fff3b53a814e5e648 SHA512 c19b716727b904f1c3dcf4e0b5489ca3a7540925f2c633f827ce6fff7a2649bc22835b433fc06376dfd0fed48b232f70aa23b24fd0e834692f96f1d6a319f266 DIST derivative-2.2.0.crate 48076 BLAKE2B 56d27e27493c3b818ad45703efda607a0a0d9a48b0d43785b6a013443b8b964b67bb5b5284d242358415c5fb81b86b02079ee7c0595ec07bc658240eb114b887 SHA512 3c65ecdabd2dc202be3d83b06f96b6f68504fe542ede7e2285093c6d360a33ec76a3787c436c6e5ff8f59d430436a4b8ce2f908cf7b2b08cd8b0045de4e5d1da DIST derive_builder-0.20.2.crate 36661 BLAKE2B 27679d1837dc87ad4103459df3be6ab42d4d8b70aa01a1552aceab82042dfee81d90134c9f940f0c1c62bf359c5a70128bb4bf7a62bc4844066f198c771fabe9 SHA512 75d08f4c106ee5df795ebc8be3dcf34dada037c7566b20bfb52243e16f288b440c723fd17343a654d2f170c056a4197704b9c6b69c8e0d1b250039bee43fd872 DIST derive_builder_core-0.20.2.crate 31397 BLAKE2B bc8c8da24a0b7871c7574330230544c3fffddd3a00c403f076997def95ae882be99d5f3a29c4e08fe536af9de87751ad63a5ad77e6cd9587764d19dda174fb0d SHA512 ab154b7f116a21984cf8c9cea538e8d33be1680663f4578af37f7d74696547431e9ded07bd8ab0265fd2c4aba5937b948f57d4f9b60b96c840f5150e8c10ce86 @@ -138,6 +182,7 @@ DIST directories-5.0.1.crate 15833 BLAKE2B 2348af89efae3020f901bc6d97a42028c12d3 DIST directories-6.0.0.crate 17842 BLAKE2B e2c77770b1aaf34dc40b4ed716439304b2d871ecbef25f19394c15cfbebe5f8d0e3276f2d9855a3d34c9c5d079b17ce94f0646387750149a2b4992e3c3eda723 SHA512 cc0466a28fb61a8e10c5ae931774c131153080dec669efbcf4e34bfed5d50b58ba3c583de58df5191df36c4c2d7e996561c8e5ffe909f6eb8f5eb3cdb535ad31 DIST dirs-sys-0.4.1.crate 10719 BLAKE2B 30334f2192698d7d03bd4e8bc8a682482da7d13baacb8547a132f55019d3727ac35579926ba4367fe0a5b7fa917945abc03e010cb7363683753c87440581df42 SHA512 53c7c8bc76d7211d08a0e6b25caaed12eeb7283cb4b352c12311db3c796794330943259a08e48ff9d3a280917920a088e5aede32677a4b2f9f819c2dca6adb9a DIST dirs-sys-0.5.0.crate 10157 BLAKE2B 0808bd5c7bfaceef00d62476ff459a8f3ab19fdd4d3a860b04698e51c390285ab8f01690fdec7faf01ccee5734b28c44e50a4358f30de1193a0d54ae5c6622c3 SHA512 c2ca362ad04e92c929e2cea4db359de689e512b7c76246c408f40d10f1d47c5dbbd49238e67edc0a251bd642ee292cae88992e5755035c632baec36cd77c10b2 +DIST dispatch2-0.3.0.crate 54606 BLAKE2B db60f0e73ae0858168c617de34e22347e657b22f5328e7d86c136008d3b6b93ae36f295b1b5b3ca677c419e333451d16dfb7852627fa36639807dc7f4cdc9a04 SHA512 2f0a168885fabe8fb7443994bb666c94ce95d9b1f14eee6e19b185b27d4cb33c5e76f85244cb9e5735566d02b7c61675e42911d6d99b079590dbd124aed56f59 DIST displaydoc-0.2.5.crate 24219 BLAKE2B ba3396c93d27a99a92ff4a0f01a8d192b419bad25e48d9427b76260ebf2f9982291d77f2eb24d239c0b1fbb097e866a20bc46dc1879fdfc6637ea49928444a92 SHA512 5ca35fa59f263162389c1180331e9df607d9374bcb056cb04bc46c98e4d87277162ddb2335ffa8a8c5f69218abc3eabccdcaa71c21b8dd9081cc4146f266b948 DIST dunce-1.0.5.crate 8244 BLAKE2B 1499ae0bb3d34e8d42e97eaf551308efc95697366b804dc83c51171a939d45bad46fce9f82a39e17b6b92fc833aecc85eabd2104823c7db30396833388125728 SHA512 36d7d75217d629185a9a9187f7d2e2dc346a28be0ad1c21b1b6bcbe3991e9cd11797e53d745c0b3b5ae94cf1e4cf141cdb2322bab86d97cc258b4145e3b97a56 DIST either-1.15.0.crate 20114 BLAKE2B 2f87cb6408b1e1a15ea19d930cfca3948d867d268c8ff18cbaf39dcb7f7fdc628811575ec87a7728940dfb2c26775995a3165ab9c17dd42880d56569b22c6f88 SHA512 d70c34d903e8e5088fd065a6da6673eadb569a20af183fa9bd6418940b37c8c2a777c44dbdab1b9960890cba5cb7464b805667ac42f4e05499ddcd4277d24e3f @@ -146,11 +191,14 @@ DIST enum_dispatch-0.3.12.crate 22400 BLAKE2B c8a3da572bd8fcff5afe8aba87d0b40d5c DIST enumflags2-0.7.7.crate 15090 BLAKE2B 6533e0aadd1a85b410d14f6dfa140c33ad58e2e8cee7c446b4c27f7cf567f33f5f788da4c1f0fd6cc5c3d210dd6f9626434105b1cbd7275e2fbd86a9a073e392 SHA512 2519a25cad271d86b3195b29b0b75bc8792ef08816881aa9f3b403d7c63e6bc69b1b0d4fd565a62fdef3ee0f387157e331f8b3a17093e4374565125b1c9f080f DIST enumflags2_derive-0.7.7.crate 7903 BLAKE2B 0e8f4ad8558254a6e532868608c23f70f63abee3708ad7fd5c41c8791c33a8790c3fe2eeeed722d207fb75721cc37773b64baf2ce0a406dd465c016092e6caf2 SHA512 f4b0c3b1a731e83c7cf27765392baafb0f27555c0ab708a7a430f349c520df7333d4d926c348a15339b082c6d0335491fac41eba3e61d42c3522717acbf05df5 DIST env_filter-0.1.3.crate 15191 BLAKE2B 95fa27602c10e819ef09b8f4935dcc3204104f7c5a0227e5fd33cc51fd77f70cdab3d822670d216321f263643d1f5220f5849002ad857925d4170b1b56cd3fd7 SHA512 94db29f1639636655e05ab02611cf14d5c2c8778be6eddddf0b6b8c21f364a71909a2ecc3acf3f4062d5d3c79a6316e9ef30b2fe042f617108af8431e198d344 +DIST env_filter-0.1.4.crate 15281 BLAKE2B 4c069793165e5adcbf59586a4bbf4aa436532d838f1b939ad92db011f51f1e337cdbd7e3b84cb9e7681d942c36400f169e0ed6f8b66429cdc77626010a781f68 SHA512 58ebb6a087e50c212fe1292a4e0fe6ce7154d3ca7164ffc6bab914e4300543726f4b7875918effcdbb660b08ccac67df7c91b1fc43f5fdf53ea7a46351ac9299 DIST env_logger-0.10.0.crate 36574 BLAKE2B d2f387682059fe9b4566ab995be449c58c57b8df5e5d8bd5ffd153aec1648721d8a9606d3f9aa034263651f5182043e08b6cc08d2d29d0a10f6cc61df9949a06 SHA512 4dd02f9d333a1f15657167ef4bd403eda5426cad17e0a4a43fa20cc65449345eb4d3fae2d6b10a3480016b9e23497fac13ed7e70b40c9450ef430be9f910d3e4 DIST env_logger-0.11.7.crate 31842 BLAKE2B 2f40855eea20ad6c7ac1fa4fa539637356c2d56b4a45f0aa2b7c26d9b3158f554d0227a6be9d3b6f566fb42789d4f7f216ce6fd0ce23401a2e8f8fdc3ceed591 SHA512 4fab31be7d6eb07d180e8074e0d191a4827ea2b977f799d944c26cd5d1ab9c55367d135965cffde0e069c0e0f906a3ed9ad55e38d3b5843f1cc1193b05f9400f +DIST env_logger-0.11.8.crate 32538 BLAKE2B 9d62afecac4d4fb20bbb99611cade6ddbec17c8dedca94aeb13fad8fbfcf82988a55bb45400e78adf8257fb346b0d6cda3e2c2ed2332961d485055b365f396fb SHA512 84091355d3d9f2bfb1fdf4f1c6309444b513385d9b911f3af8cd1b5c467033769e7add11f65f31da8931dd05d96a348e0bcd670733d31ff981faf760d727afa7 DIST equivalent-1.0.1.crate 6615 BLAKE2B 302d78069d9df05e78b53f0488a9e4eb98fa2bc1e21893dc8a0acf2234347ba7c4df4b9d6b380ae77d8ffb1074b9c790460fe2dae47318aa1c4fe4208244540a SHA512 b2bc60e804c1b02c461dcefcfd60fc37145af710d183ebe65f9a4d63f2b2072d23193f98dc550a9213c7fdc6a2a837af23b04a89294ebbb681a4aaf5d5031140 DIST equivalent-1.0.2.crate 7419 BLAKE2B 7ce4fb7b911961cd4ccfb48323eea4952110a069789c6bd177a63391c270df861afadd00c07db7b22768f0864f320e429e0200c433284f528336e2f81d071eff SHA512 8e0e2dc070794a85b276e93f9e4a65d3bbb8587b33fda211c34479a0b88504c913d8bef9e84d7996254aeabe1efe4ff1ef6259ff4fe3f9ccb90dd90070b3e4d4 DIST errno-0.3.10.crate 11824 BLAKE2B f9976b538868daba3cd2d47ff2fdcda16b4a436ca767f865f23d1139e7f232aba263dd4aa38d573442c762999c8a8beab8a4a8c10649d21b49090fa65ced1ec7 SHA512 fa4b9a368f254cd90c6f69f6883af4c579829a6da6f31481a1b527ac9602c8ffcb5e9518cdc32c39b5589c151a20e75a7300c8a907d178346185ecc6e8749f3f +DIST errno-0.3.14.crate 12002 BLAKE2B 57fd842a717086ffdcfa5102a8c52bf8210672820366d78aadb6f159055917477e6771e9fbda88787278bf3a116bc7253dcb705b601e54038a93a1820c3c287a SHA512 1de95c9806323d63e7cc95111e67b3ba1ee4b9d47b70cec33485194574d6b584d22ff877dfbc244317822721291d537d9509ae5e46f1b45169cb478a78322366 DIST errno-0.3.3.crate 10543 BLAKE2B 958e9d12766533ae9e84a60b121794929b9b3b1a8111aca9a2e914beee5784b64c946e143cd8031335ac9cb51069e51dbc9a6b61073a2ccfd3ff60612a20b619 SHA512 9524db39d0c9be287e0d2aed3358a86e961b2868717037212a2e9dc408bc73198ab23196d7923a9ba7e0e9357276075148f582e0325ad36ae1b212a8c674173e DIST errno-dragonfly-0.1.2.crate 1810 BLAKE2B 781fc26dce5c33d83b9a1fd9be2b2ce9ac2559aaa858957ba6777e143b1e44cdfee48e1b47e3c91a95075a51921d1a421d0b45eb3d8de827cf4dd0ad744a7d8c SHA512 f853f1e1b8dd0f359a8f9a0399b3384c1103cd090d96e2b2204f91a40d40a9eb99383d4aa6a11e5470c51557afacf452d4be2049600d4235d27f59870fa3b916 DIST error-chain-0.12.4.crate 29274 BLAKE2B d082bcbce47411477e8b597cfcb76985cc7d6f1696926cb5314f4e84d2c8642939f5263e110aaef56353ec086a21874a8093bcea1d018be81c86ca42c2c30d71 SHA512 c0ee19a0ba2d79ff1843148d0a582045e68466a9dc429e5f3c8a3a75bc1b6e0d6de03ad69fce851bc0297e7db77b2c6817a13c37e1c3d4501ed41db8a454bf79 @@ -162,10 +210,16 @@ DIST fastrand-2.0.0.crate 14402 BLAKE2B 8bf830151ec616dbc25f216265722e39f8a2cd9a DIST fastrand-2.3.0.crate 15076 BLAKE2B 15c9a1c4f64d94c4bfd38ae139c6fe19b6b621a495c1b57209edd6d76d978eaf018ba77f356b5086c3f462a6de044fb5e3b172fc288309569911a17ec39951bc SHA512 267fecbb7459c8840f03425733d278dd6c4e7637b85b99552877117ed5e8015e094d86aa95841f77064136b7f382276c3cb2c2bef7b2881d272f4aa57c5cf947 DIST fern-0.6.2.crate 304626 BLAKE2B 7dbfc8a1cf0adc288732a1dcc23e30bfea6668b01e162b60e867b67b995b7eeea5399b9e9a630510e3f56c8f36b79b34913342b7c8834783ddacb2cd7b94e140 SHA512 f9c44d1387f803b567b7254d91cd942c55d30a1c3cd37786101d7d49d346bc2bbc593fa8a3b2e59711c5320c1496354e8d2f3ecf0967030ac1e5199650523fba DIST fern-0.7.1.crate 304533 BLAKE2B f525e0dbd7c36690d47fd48eb52651588719de72e185b4922e37ac3bb5fd6c59d03761c69bc3ce7c151728a0d930bf919e80295e743f2e79a52b7e6b9a238792 SHA512 550c47b49364b1e517de67655b9422356434b05be9bc52392d6dcb80a94f738ae84d5e3cf8efae9e3b91f2830fbaa2d19f7f4d37d34bfab1971d8b3fd4805691 +DIST find-msvc-tools-0.1.5.crate 30942 BLAKE2B 25f061bfb8a195752109bd444deaebfd94228e52c6eb94396fff9ba9d450876a58bc4352158684c59d1a2cb2a13a32ecfa1e96f1d80ac0c63827bfd7f46d9c80 SHA512 71021ce1a16c454bdd30abbb937c2ca67ab28ffcf88574e3ab758683943b44a96312a53cd6f5b8e76c89284a0cedbf46edb606894af720e3612c812bed189ab8 DIST fixedbitset-0.4.2.crate 15954 BLAKE2B 91270883db5ad0e999ebbca1123d8729d3040eb936034ab8da3cda72a830e45fcb977b3fe3c2b94e870c1fbc366ee8602357bb77e8b9a40cc41a04afad1b266b SHA512 57c5d756b0a202b2506270f0d5e890f7617a1e0c015b6059ea23fab49cf7af47fd06927eb56feb03b37cb2b6c467e326b3f0da1e32cfcb6339cf11a130a3ccab +DIST flate2-1.1.5.crate 77015 BLAKE2B 3bc8387b79a2f8d4124f98aa9f65580c3bc6f1a927643b52f414ffce4eb3eeab0fb595532e14591573ec0955800891b039c3935619b964d7fed3b2dac9031256 SHA512 b1be1942083756459f87044212b9915656a4c272ca9414f76d38a87242fe5c7a993cb7b05641f18163b2481daf6e9d724f500bed2fde9aebe35103470f065648 DIST fnv-1.0.7.crate 11266 BLAKE2B 81da85889c91b6567e0f555e37dd915f1bd919719d1ca10c31a6861d7aec29a49ae9c1e8bc500791bf9d6b8dbb318c096d04872c5872a4b1f7d45fbd8e12842d SHA512 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334 +DIST foldhash-0.2.0.crate 23329 BLAKE2B 49af83a79ca7954f05d8a52566d7d20cbe057c89c2c767ef76b4c8d83bf099196d053054c8fbaac74da7fd5eb0224fe43731102f2f0bcb18ccdbc0c8150774c3 SHA512 1495281089a8a1b7bbacf8004a5e8051bb00bf37718e9ddce9d43e4e198f529135f864b6850ee4422456b0d4731ae58647f0a1aaae0d67921c389f5d108fc163 +DIST foreign-types-0.3.2.crate 7504 BLAKE2B 520818b702d990d296ecd31a8646850202509ccfa18edd0e1b260289619a6c351e758f317ec0824bd76eccb209b6f087057c25f1bd01a47897715013dd834867 SHA512 bf27b8243ed482c202d120383374f19ff09422535e24b9c1aebccc66529bf300ca17b8bbc76d67f98ac092e614497afe3add9dc68aa69c93074df05762f91232 +DIST foreign-types-shared-0.1.1.crate 5672 BLAKE2B d2e42e04b6657e7a69fe0bd20c672176629c743e49a55fd007bb30e289710b70045d445ae9cae0eeaa747ee708c90e8abd9b5fc39bad8ec0666befe1b696d4f1 SHA512 bafdb2143e136fb0818e2ffd90b5c862b7181647d6568947d4e4531012bbf7a57b597221ec7056c1b562dfc0c3b5dead26d1a4111ebc15e7863737a873518a4a DIST form_urlencoded-1.2.0.crate 8923 BLAKE2B 2408d9bbca582be13febf041262f0e63a3d661dd8fd2a42e9203feb6ff02a94e3eade6b83179fab34448b9913c7924fdf53e0670ae97e550318229432978e33d SHA512 899ddd113a79bdeac12e499f581c5499d1a4b698c75cfc2d6aada5880cd802fc8537ff9ce68eca28374318d66fd70100962105c1e8962868a5732bb86326c104 DIST form_urlencoded-1.2.1.crate 8969 BLAKE2B 383d3a197b73fba199220b7708e16d770591ac16725faf4efc1a8c230c569c381870d4a11b8fba623e761e68f9d318630b22101d461e67dd26c67e13a73358a1 SHA512 c65104e2dc08fad572bb31f981700fd43dd29fcff42b01c7ccdbd3d4c23dec12360aed3f1b5fc4766fee386d418a65349b2941b8735f788cb0d35d631a6a8dd1 +DIST form_urlencoded-1.2.2.crate 9347 BLAKE2B e02670f9af81a09e8df16680dbb80708632ac9e708297fda2f821af8076fb827c011ff359d4ce50d5ddb8f4403d4e19f74a4b68d11441f32eabc6fa2e38b3b09 SHA512 07d27d852504e146d586d007b090e53cbe740da140859dfb7d647c83c1b55265a83ea0a0e514587699b1dc6b6ffea2fc913319bcc83b55ebe191801a3b429c8a DIST fs_extra-1.3.0.crate 31298 BLAKE2B 96dfb4e886767d3d3850d94cc789867c3ed461feb9da0ba90c600b2b41c3119067953ba795cea5e6c8c338adb6fe6426769a6e6894ea3e02eb1ab11794eb8d5f SHA512 090d2ace0517b86dd2f54c5491366cbb6e1677f64cf64f024f7dc6a3c42c4f8c54b215e954572e2df10ae7f0e956890ecf7ccbeebf66b645c7647409484c845d DIST futures-0.3.28.crate 53229 BLAKE2B fa4420594a8e261d2622715e5e40123d401b0a549b8eea9f72efe177c606b1fdb3743717a4826bc82479c1700e90a1b3bb3d0955d75e7eda84adbeabe0dddf89 SHA512 271c83c157de76b1c58db49d6f7aa0591c665551e60dbb260c3ad292a48138979b06e76b99a78cb4f3ea57cff3ec5884839cf6a0b807fa212d54ac28799c5e6d DIST futures-0.3.31.crate 54953 BLAKE2B 4b91470d3c85b9260c734dc6be8c985f78491b599d2a6ec0d1e824b82f684cd030be6f64179f7aa7c1d1fbc7cf0c5a1bc5bd045123b73461f490d7c2b9011f9a SHA512 a08d23cdac9e162d0e6ae72bd792201ff4e13d7ade6b498cc597149b3df2062b06814804c0750d941d8b5be5d2ab4cfebbe2d08a98d875d2092bf25e6e71a51d @@ -190,21 +244,30 @@ DIST futures-util-0.3.31.crate 162124 BLAKE2B 69ca647a261fe24f90a4221d8629169a8d DIST generic-array-0.14.7.crate 15950 BLAKE2B e74c785e3127095625951da192a018281ea9976aaeb11019f9088c3f27748c5fed1ef25d577150864486dc48b5138d6892e42f99979339f711a66fc70756c82b SHA512 363a7b04e4102f9ca63d429721c1ada6272be6bf0a2e97da681faf76381f73f0e3acb86623b9ce2dae441de9fda704088391779b9769ec02b3c8c9f9f35f897d DIST gethostname-0.4.3.crate 9336 BLAKE2B 12be5fdca0b6e3788cf3d67a4a80f283d240611b4fd37b6d1c37eb2503e4a7025b17bbb70adf421ac840d8f952434bdedf4691f31362780a267e21e8c4d3a006 SHA512 8c5dc404132f2ecf9bf82d8b89cbd698b4cb6d43141c47a60b95401da2e8c314347ab0a0ad5fba50cf98f01a621faa68293cb78f48977d3ddfe6e6f21926abf7 DIST gethostname-1.0.0.crate 10313 BLAKE2B f1e2d2fbc706d739ceb41cad2b6888389608f62d939bbeac46e240e04cf1b5a9d779b2ef6a7ff653ba056d3c7c8c72a4ed43c0d7db8fef0b66afa14908ca176c SHA512 d1d9b6f06c2ce3954fa73f7828d69c73457e90e04a40812d3ce50b4c12379ff323ceaa34ee4557d3c4e55537e16284c27f4a1967281121952116865ba6168cdf +DIST gethostname-1.1.0.crate 9865 BLAKE2B 40c9385364ebda2a61217fab5b213b6f6208916ef80f38385f6873ff55b390ed8a8b0be8810fe2c2aaaef978053cb55d2593edf15269615d42db2a95383df152 SHA512 6b877cb492777bd6646422586ca49fd691e37cc58b79891b976aac1079bc757367ceba81bd2a67ad1606294458851f6b37f25b1827eb29c57f4f687dc3852ba0 DIST getrandom-0.2.10.crate 34955 BLAKE2B 8e7b8554ae360484ceca2a05f834c2664b08f41cbc6c955663e1f8f22fb5750481518bf1c7b49f49223a99a66914ef013347b9186acc97a20249f3222a13f9d4 SHA512 82af9e0417bff9272ed0478be4ac90426405ce210014b21899c6b95fde1b16893bf46295388ff5f13fa712a04c99c46b770fab83f41a1343af1590a86ca8da3b DIST getrandom-0.2.15.crate 37163 BLAKE2B 7d534e799a4711d01c6553b8c9422dbf01e384a850fb0f7cd76e444628f2b96d28d0f5e8dae042f8081a2bf9340f57c558be50a6f22ed5fa6b0301a15898fb35 SHA512 04789a53d3f4a84862e1e8b2113641af67e471b468de1222470d5e6cef0015232463a2cf3c3518dc2a533b3983b175a7c8922da00665bcf71c1e4e279b67e6fb +DIST getrandom-0.2.16.crate 40163 BLAKE2B cf95b380a610313eaf068fa210bdb4a9e0b9211321d708f9877cd9e1901df0f6b7f57462a4937da3419c7547ef300291deb5367f4dce4ff776e7f0d9d36dcd8d SHA512 6391d5322f8ce2ea7d14062d378ae2ffad66622afd58b9f1732e5314b27d3a554c8a008f6d0d133640f11d769ac51ea4acd24e40259e14e2ffce93d5c3c1eb1e DIST getrandom-0.3.1.crate 42449 BLAKE2B dd70e0abfd27a7c363ce1b91746ef7568edf1d176d5575201623b6403f3a503b5d8503d10ba01d055f9de61cd8092729d34ac8f0f4f9fc6ad79b9fce926720d1 SHA512 431682efdc2ba82114e173925b99e1059d4915ebec6b0432d4a7683e56ccff7b4b45b9ee9cf5d0ee53067d5ae1ba733524c18577379c8414c385189718fbbcfe +DIST getrandom-0.3.4.crate 50932 BLAKE2B 34165a6994877aeaf3063affd48eb499512371a1fdc0d890feee598b5e22c14cb8347642a0e9374cd5d8a59a8281db839e45923769260312379321bef54c687d SHA512 43c44ec3ba0668f388519b2cefbee63f959f0e078730b3f7563742522e5f4b120472024b95fc94aeb90900a15d327c3573271bb26b2de4785e589a8bc1bc9da8 DIST gimli-0.28.0.crate 269277 BLAKE2B 4d651d9f71b826d06b3089cb09933f30d785801b8072228c9a5c9ed2011172c679e86205dd507cb1866634238b20721773e60410bd25fbcc5c3421c72ba565be SHA512 a5a861c7398ec655635a39c3a421ca5c9effb03f4980a000c342b81b9bf229481639a8a62c4396508a9800ec9d313317036a8e4e7da3add5adeca596f1c09d51 DIST gimli-0.28.1.crate 270497 BLAKE2B 4089e0f871295d464e548610ab5f0c2fd863825416109cf58ca827e482897f00eab23b795295758f1e3af16167b52c77c91df6f707f1f445984a6c4bcd68c6ef SHA512 695e46471fc07813dc4a47744458729b097f6efbfceeb57eb3db4165654e99bebb98dde2d73230b90bb5dd7c0ca0c6e77c7c3dc6f2abf70058b830a2fb386d25 +DIST gimli-0.32.3.crate 289789 BLAKE2B d2794b527c4e0fc8ba10d12711deba8606bbbbe3625227d9b886b3d6846760d9dbc7ec258fbc13673017bb0706a9cdcd573b760d21857fc55deaec7b4be30994 SHA512 e3ec768bcec1e4232b46d7c0a63470d5d966098017d344001ff600587df9ff8419b133b2037fd0869946414718da0da9285b1255468dd5375e46bed3d3a95503 DIST glob-0.3.1.crate 18880 BLAKE2B dc89b3a664e810264dd7a01ad892e865ce35b504bfe5dba12d7ea8084da7de84feaa94c2208f1a1eefed90297e552636ad61ccebf6fc8cb4d01f27d605ad0a09 SHA512 29368160138bcb7ea5660f9f30c5711cfca8bc8ba836bbade3fbe8c424e7b4118daf27cffa677962e37e36f025fd2bb5a9c2aea865b0ff155cace455dfbb658b DIST glob-0.3.2.crate 22359 BLAKE2B 564b72e2738cce5311aee12d8d6147631cb571f7b96d8d3823098d3dd449bcc23ffed5a6584f8979402bef95536b0e73fe9772f273295a0079782b9f7d88d19f SHA512 d15389441e337e3fab9c30102fe7b4b1b3e68d8cbb5d14162d2fd7e7d01a9812b2d6d6d2a24a60116418be41e2075e70becd6994c13b34365d512521e8debb02 +DIST glob-0.3.3.crate 22861 BLAKE2B 34434d0ee1d50d0453f7294cb793ff123415feda605b09a2634708646fd91584db6b77a51d38c20ec89d8e3b36b136d071d30020f6325cbffbce736403c68803 SHA512 159a5de81cd59c472cd5705a50f140d29adb64ef10d8dd4bab77f9a44cce33933a779ecd12b399edffaac551fd935a3aa74ede4c9aa9b3e5212d220b3fe22219 +DIST governor-0.10.2.crate 141599 BLAKE2B d2f9da6823784f94cab761f26fabc220d6cb5cc99227c7ecef8a172486033ed49ed5e9b2ede9083f6c4742604e07a2eaa24fca17ec8fc7ebada45bb159c741b6 SHA512 d4f0008b508a38f9f2bddc095bf619941422e6998de01a0f093760ab56d95f6073042230639cb3acf4e42bdf98bb5fe57797fcaa6dece97a703a3b1acbe8b197 DIST governor-0.6.3.crate 131110 BLAKE2B 86fac0f7075a5ea52622a204c3edfad08a48d76b4057d2fa34a8145189f9774a3eb56b559cdbdc33174cf9ecd09002a015d559cc6bff57453c71c1472f7efe16 SHA512 05054fb3a820a21233aa22dfeb91c01f0c9bc92a72d330e0a429161b83982d61ecb3ac8eef52d6cf856a63deae6c6e21dfc140765c1e939d7f7fb23cfd383870 DIST h2-0.3.26.crate 168315 BLAKE2B 81c65e519bacc8570a28b82808828044d1c94f8cf9111ae432b1684f216ce51c1b583b87a2bda3c36cf206dd508084b8f0877e93d58c8d511f87eb143bc77ca9 SHA512 3e1fb02d42d86c9fbaee6f10fec78eebd9a31a70efbead1f4ca22664ee0e96809a52b06e23a9b6f5d0646422dc8054b5ff5d82644ef65cbc0ed2b3729d849163 +DIST h2-0.4.12.crate 176264 BLAKE2B 6ae29aab3dce77a823664d6ebe07a23c53a140edbffa7d0e9e640ef91e4e500a65c936380610b60dcc7c49064a1d927c1578711eeb8acd25516259213264c7c3 SHA512 981a9a86327d68ed21d8916fb6dea80e8760748def3dfaeff8b8f3bb865f40755eca28aa0f2e61b040d10fc8248ec9e43e5a681e3ab9d33e3b6f00ed756625ce DIST h2-0.4.8.crate 174535 BLAKE2B 21efef2688c0a287deaabaa569e93710eccddec0139803aed2445a7de50b8518f02e60fbc64b452974c6456c79fc895c74b8a624a203b8482461d60ffbb44034 SHA512 21d49245fa2fd26909aa35a038037ab1e08d5cf4b1f7fd9c7841080c1b8a9e901ff9c2932e12bdd7ccf3cc28942529c8f1d8a3d1d29f8e25ba287b4abed72207 DIST hashbrown-0.12.3.crate 102968 BLAKE2B 492072f27eaec45abd2c5d7405c614c0c6a8221425e901bb6174bfa1688ee524408a618650126d6c683b7285b9bf0a21dcdbff7347e4d8f97bf7111defa1b7e5 SHA512 b3700fcd659a21a6b9b3777c18b37a83bf25542b4e8f2b963779a122f5d22e1742c064cfc03e649583e7dd5c6e90ca8407f8c51a0e8755f6a108682853022f76 DIST hashbrown-0.14.0.crate 116103 BLAKE2B 24bab03e8a8cb7623b92282c83bf8acaf0752c696ee1c010249e3ebb3646e7549d8d6d798b02c9d5b621afbebba7320f8a859d9a1af1523dbd46377b857dbb5f SHA512 f0fbdf81517f59a0b67f792a4097f1131d346b2b4cbda93590749cef7f9f1c9029e0e182f58c23b74d3028f7502c30b9593c1eb4da37f95388d74b14582b8959 DIST hashbrown-0.15.2.crate 138478 BLAKE2B 453888ce68b10cd6e93d787986603fceb29b83fe2dc417e7e57316b9e0060d0bba51ec7fb71d46a038662c99f60deac8237a8f349297208d1d223bcc13f0d0ea SHA512 d6fc0613623f9313533dfcab1240e97f652f78f05baa21419f7edb2eff030c4a2c5f426d3eaae747923cffdd8aa9cc2648340e5fc229395b5eacc6fae087c8cd +DIST hashbrown-0.16.0.crate 141708 BLAKE2B 260b2ae46c2c376f32aba951ef562b41e40aa1159b170a966429263df5d81359d1d7861076e2b12a88fca612374fd9b3d7265af891d55c077dce041e180c854d SHA512 ad819a3eb38bd2939e08686789529172f146fa77911cc9dd61ddbde4600d49af79fbade6fd53187906a8b7766aff057187171e2dcb2d07e1079e4dde6104d615 DIST headers-0.3.8.crate 67904 BLAKE2B 53425c36437b77bf01adcd1194e775b17031af2f47dfe5a4acd60231fdd153529b969db044403ddf454df8f2d1d1bd986e87283263a4664a750514292c903dc0 SHA512 e52fccde38dda43c351cffa9528bab517d787613a2d3185aa8fef6c83fd7d77892c98c1488f530d88ba9e594d94c986ee36a39fa07a040c3c7e556e57bbaf4d2 DIST headers-0.4.0.crate 68864 BLAKE2B 6d026e120073799807a8f7d4c6a7acd83364c7abe905f301a7569033509fbb433d3a77e391c15997740d2f9e92698456d97f1e27cd58010772a53cb081d117c6 SHA512 3b2ff94e0a6c0a23b0e5175213ae45c4d0c5482d883506fb88c17b7238002efeadb00086d98278ea566e97916b3a85084badd5aaf85955340a0a9bb712571d16 +DIST headers-0.4.1.crate 71105 BLAKE2B d9df28ede2bb8c13126b793c18b3b87fad28df84733cc37b0f78ba723dce4789f570f3eb0745f6dfbc592aa61d48a498808cfd6b16d6f20c3e827e595046634b SHA512 425f989d05765ad4594c607da9cd4fdc16ffc80148ee0dd338d9b2becad291af37a98e130a2f93697dc29ee1932173d434b3c9c4f7d05f4cacd6dfae8a4f4039 DIST headers-core-0.2.0.crate 2380 BLAKE2B b9edc2634ef43c53372038a67713785656bf5c030ae285bce287b7b130abc04bf56e66fcc2c67e3eda162d64b008c9a45a1f7be990d248da3ec1c18b361f33bc SHA512 1d502e6a3b2ad70a0d1e410c55864ddbf4118ea073ff7697e6b763cd18748d91f074b36451c015e3bbadad4400d099f4a2e350c609f44daee4ad40398633a8fd DIST headers-core-0.3.0.crate 2333 BLAKE2B 0a84e5cf8f56fcca6cfe875ed75a292e9cd6bb3eb64160f6645c8128a48f7244569089af4e0a3c5f32670482303ce2821437d2dc01c9e454b0ffceeddc73aba9 SHA512 488af227472332754ddd0a7daabf0a88d592cf017d3267341c5087e94a89c29f44b2ce1a31d722180090d42b2bcad7864bdd266923326ee536789f02132e6f8a DIST heck-0.3.3.crate 10260 BLAKE2B dc756738081d855583f239908f671e9b5dde72ebfb577f6387b1a169817a03332464cf67071708a4c4f06b1ecb222118e8c719073ccdec1c0f938e5ef378b13f SHA512 b3498e033f44e03206421e565efec5b21d13107b60d35e4476331c44e6effd75c81f7678f2452c822eefd581209a2ffefd2034779cca2d8b4fac4583bbbf777f @@ -217,8 +280,10 @@ DIST hkdf-0.12.3.crate 170910 BLAKE2B 08d0c28891f780abb46936481251f217e9d8f2d17d DIST hmac-0.11.0.crate 11385 BLAKE2B 850527040c0fef278175f35a0c8bf77bc005708539af8ec5a85111f83e9c94a912741a2b24965c026fd75db6c58fc82a46a9c5de9454540400c9f19341561b4c SHA512 82d83071d1cea14603b1f1a85d564c78e28d982025a029779d8d83522fd5c56583303dd3a902d8023b5e9df2ddb5c5d9a5fc88000d41dba45dc026239ec81d0d DIST hmac-0.12.1.crate 42657 BLAKE2B 5d432a666dbcf9077a98e1f8a4aaa3afc88f3d88553cf7a2356d117c66f38efafe686c148598ad67ae89d64ee3edf56387a6f89b75dd9ab5eee63e13953dcead SHA512 77d4bf51f4633a8c36712ce3178945141df31cd645eafcf4bd130b8ecd7cb498bf1ee6f2d9c8dfbbc9f97ac638919fcc81bd3ee600a1b27c3be3fa87313aa0b8 DIST home-0.5.11.crate 9926 BLAKE2B d9c0d3660aa7784f3a26f3930a5ee35dd50cd15b7e252d930240ff9bcb70fdb0169f78c02b5fd82318af8c398d7139be18d2e9675a1b85c7845c90266945da1f SHA512 cd107c4cee793b6db8b29157c3aa2629b5ef1b9fe129fd903fe414faadfa06a881a1b685f1c66fa5aa1deefd3013a210603c952bfa4bf02d5d1f90f75ba9ff18 +DIST home-0.5.12.crate 9445 BLAKE2B 22790e93236af05957848cb61a2526da2b70177ec7386cb14c10427a932639e03b7dda04f988cd738de341278bf4bd1389ff0ba722fa25bd17b8888a8774eb75 SHA512 3397947c3dc44749075b3076cd038936993b5755180b8190ea45c31b7ddd1701a14a4fb36c07adc7010a171b750f1a1ccd82c83640d42d350e996ff56c311df5 DIST hostname-0.3.1.crate 9272 BLAKE2B cafcae4bbfadd51d058e3daba3e63d897bc3418723d8e843fd941d9663dbc89dba131c77d14ce7a5da552650ea3c40c4e418c88d465f1bab2fa20c178596852d SHA512 a90407996353c9bcf5b76be03713e3a0455ac80a50892e77a508744cf436a938ddb87ef97d8cc91ec7dc4353cfb7bca0fd28c90a72f8a9ecd4f29220d174edf2 DIST hostname-0.4.0.crate 10632 BLAKE2B 85c1b224aa0de4c64a4c56dc284145c50bfe3ddc9063e0884de1cc994b38931552229c57dfa832e927f816df0d93d7b553bd8b4ede582939bebc36c0acf451a8 SHA512 1365d02b3c438d467cee0bb704e98b601390cfc76ff290da198d6c1e85bdd57db5ea07ed9d14b35f4b0cb3c2999eddda69667fca4b01ef3b6c4df1769f0abd21 +DIST hostname-0.4.1.crate 13819 BLAKE2B de5598e53328075e653f1d7e3a4228d82a5aef740aa42897ef27b0786b53fc5b1772a04aedd85f0006c0af33e1345226a4f678e789367c5b45114dc178d1f07c SHA512 bdeb7071dc112f73a5ac86f5db7d119a5a98546ca4804862a8d61ab050ccc49d10a792d024392c725256e7b3588098284756dba09a09376112650fd9ca6631f0 DIST http-0.2.12.crate 101964 BLAKE2B c35c2ae5f9494cafdfacefd778b4b6824588e74685fe5204bc6efa87b667d00b28f59cae667115fe45ae332d8542e7a0c2c7c42fdeb302302f89b00cb716f380 SHA512 e32dd4600aae7e26f1d530871815b30fa0b9bf95293005649bd9a7bc4df7f69a1d8de503d1b8873e67a5496e644d0a47db2a0680fa1e9058bee4dcecccebee58 DIST http-0.2.9.crate 100146 BLAKE2B a720a5ea6e59d1bd4e7b422fdaa30b3b9d72a7533c5e91d1c8ee2b1dcd899309b490479ec578aa3b51f1dddeb5c6510f28136e9fd1f04d2af12d2418261f6c03 SHA512 17bbc886d34f5aa4b56d82a605a54e920a244988085d06e70bc416f8e0edfa3356544f29082b3fbf3dcea18e741ade374375dd82ebe2276fd9a9508735a1e03a DIST http-1.3.1.crate 106063 BLAKE2B c7ac3982bc0ee5ab6885d058ddb4341a85f2308cbccb59c51b5bf76df93c77c23a6ed974cfc45844b5d8a4db21081f262b115e084f10869636e3cd02a4917614 SHA512 20c6a049d93294e081150991eec281f531d2f2aa66b04b5d51585995bd07c1f9748df7f21a4f94fddf4cb04872c83d77822cce12b2d65778ea55197666e550ac @@ -233,57 +298,82 @@ DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c DIST hyper-0.14.27.crate 195700 BLAKE2B 4c079a6f99b1da3816c08df3935b5c9c1a3acf878111f4afffe67cbe816975aae0bd49577fa7cdc1bd55ed78dd2328cb1b0cc09064e9bf6caadde91403159912 SHA512 580f2589dc1f938d2563d3fdfd1cb2f1b11278333ac54e813e4dbe50a0e63952546385f057b20eb123516b2f74e19b62a3ed0cd546fdf868f6a5770cd95643a2 DIST hyper-0.14.32.crate 199622 BLAKE2B 05b0a2ac2c29157cf4d6258fbf07d871fa9d29b7f453d8d8fda9700db1423f6ce9c0de2b30ffa1faac877279bee75a283a81c2b59c6e429a7e22a4d5f1f49913 SHA512 d2b1d713a3ddc8a469ea344a5e7732da637bb644c2d999bed8e8b00b602742e193e553b9bc77eb58017ddccbc4217b20651e2b1698ac98568e780bfa3aa1a819 DIST hyper-1.6.0.crate 153923 BLAKE2B c69d338d00dd9be80c910dae6b3b995918d862d6ee863e9f85442f0e45584a054056f51864313b8ca0068680d7667faac61d70adfe2e7d2db2346f608b45bb32 SHA512 8c30624f51fed280e909ca526284f81a0863e3ace05f20ce8117298f180efc1567e92f807895034d9ad83026059e4b90c5a3cfe527a3e9c99674489fd17fc6a8 +DIST hyper-1.8.1.crate 157353 BLAKE2B ddaf59d791c00f20eb177c762d16b5b5be6eadeef8d4d39847647ddf82d013070d97f4aa681d6cb91e200d320dd6da91d2e8a5652e3a58febbcc643c6f87a40b SHA512 b7a9638fcd74828b447966025b172899943ac8f9286860646e7fd073a796f32b0ccfea5d656d0e5c0c55b8a15db613370c0cd0341b55bdb15abaaaaf23b4c623 DIST hyper-proxy-0.9.1.crate 10317 BLAKE2B f9d00182507e6ac917adb73c0fc9b58fab95998e2e22d8c129e51e9e39239e58086ccdfd862713dbc615b8ea736f68e72ae7fa834c7af44c2c62f5203bb9a50b SHA512 4a8c5e79475d9fb09f7bb1bf54b97e7879037ab4f97626fcb5ee788e8480dc617fa686cf43379a87bb90d0b96d91c13cf496ae07b527c06cceb6ac337e90556a DIST hyper-proxy2-0.1.0.crate 20056 BLAKE2B f8736e72df35be2a06abe6007b1572b175dd06b872af3bf4ab86d57512c53fc795c1b194d57142ee7f72a9f2c3aa7f4abf9e0a65ce94ef04a4a93b3605e8664c SHA512 26ee942bd1d7111245d96660e7d88a26a908b2f2fc213c7f5cd951eb7a73a489a50fdf97f2ff7035e1080b25480b1ea4b9c0337d9e596ba46d13ffd51787fadd DIST hyper-rustls-0.24.2.crate 30195 BLAKE2B 79d5c6512877c98f3040a6ed26027e5345d42cd55ee9e9bb6e020cb7bdd4345556d910c338ec759a6a9a2907e645aa841d5666879ba8254ac6506a980811a7d9 SHA512 f30e83408376b985ee9df26728f8183a7048d4586c5fa3d797cc837931e13300018929583a087767bd19d4bd60d85ea1c2696601c236fb65be9a6805ef6fc193 DIST hyper-rustls-0.26.0.crate 29538 BLAKE2B 9c6c62097e17b66e7cf9fc1325daa1e0b851ced699fe5c19a42e061dcfa7bdb26d614d6aaa6704bc07b5801b0efe54c87f8f6eafe2462ce01c0ab85418e0c783 SHA512 df6bd4e2e9b5f54315c4235c13fcaab4bf9fcb3b0f1673311da60a34ab22f2e566c4de3d3002e65620fea0b7942d27a83f52187310cfd9d8ee4e06ee6fe384db DIST hyper-rustls-0.27.5.crate 34660 BLAKE2B de261692fa4765f3ffdf8c384250532a0747b2595c41fbbc1a01c69c2c8a68a87656572f70228ecadb4aea04851ea6e7a0ab7077d6ffbe75b1a15805e64fbcbf SHA512 6a2451be2f42880978b0236385e8775fdfc3f538d9642c7fd6993ce85b16d623357f97a8c2a328e76e31c76083a8be557a4e7447f34aa52b9e990f4c9680e193 +DIST hyper-tls-0.6.0.crate 15052 BLAKE2B 2d9baa91bb89078e58b6a3af87af6796c110cc26f79604d56552836b3fc770ea63b215b44623a57394d1d60382d65f9ac0502e68700ccef4a2d4b19414497545 SHA512 6b99b08669e689005a27f2ca70a12aa51298a6a4226de072cd84fb15275339dde8e2054838541096484d732a1d2d913bfa945ff3003054eb62ac4c2d0a8ecbd8 DIST hyper-util-0.1.10.crate 72887 BLAKE2B 9d8ae7445ea56505e19f57ad680020b748e943a5cc3eca7292c06d93be1b58499db5769b214687aba53a0e9aa6fff3b3f63d1623157350ea826cd2decaf8d0aa SHA512 0a16c5d8857cf522bd53017dac50e530ae685c512eb55221fd6808299c7d716815f7b8192f8a9a504421b938cc0536bd497c7388d2f70ebbd91c46b644496b2a +DIST hyper-util-0.1.18.crate 101688 BLAKE2B 2dfc236ec132d713f4313adc5c7defca1dd920d05c775b15058231efcec059d2580adab73e5f126232666e0a91144c0502c72894a8b143a8813866f55002a2df SHA512 3ff61e52b17b257fd397a5315a1c87668b061d02cb30a9a10034bde40bfd7cbf6d58f58172de9125ca5a73d9939069e94b8d633a1da8a4d938e0b06e4d60baf1 DIST iana-time-zone-0.1.57.crate 19785 BLAKE2B 2304a63e4d3a477125ed07fccd5a84832f775c4a0fbd60a995e6f1850aaf3f5047c6f70975c9f6334f96def12770d470677e1f536e9817f8ab1df8a312622cfe SHA512 79bc0fe559dce022cd3c15ffc3b6f870c14a40de6d5a61b4a5a6ad28fe7efce82a16ac5102073a3510f3ba683843475f7fb8a4029bbafbc1cc25e48b98ce2fe8 DIST iana-time-zone-0.1.61.crate 27685 BLAKE2B 2091f0bdbfae3f63ff846e27136d9779a2d65f85cef899ea3ab0ff7c987329e6a584cf49c57de566f08e0277bd4981ac3db30ea0cec6a6757ed50d96e2c6583f SHA512 d16c67f435606334042c3a286350db46ff3409f142c0782509b136150b4069aafff0dc5c2ecfb7519dd8d105b9a2e6649df2a7bec33ee3966dc94034c9d5a1c4 +DIST iana-time-zone-0.1.64.crate 33152 BLAKE2B 4298a6fd124d7e164df21405448ae17f11e5d23be3eb40b2da27d36b432cd6583170b1bc31c5238160e4ae2cca9ca77ce19ca35392b7937ae26109dff9fa99e1 SHA512 f204818f8ce5e3098b12a7b99d0b6f29153983d5eb64170051f6a6b8120d00014fc91d3da7c9c7cdfa0e16a7ca6d0c6926e8ffdac28985c8d6158c78c40ff071 DIST iana-time-zone-haiku-0.1.2.crate 7185 BLAKE2B 37fa14b589ff092377b9271c414d4e584c5a531f13f70ac48df26df3cc03353db635b4630ba192fc65b800cce11823e91b91f03dfad85e4bed55aa18398156cb SHA512 448224ecafa935472ff6f0aab7cb71f9dabdbe71569c4b94fcc65baea925ef48841577687c9a31106a1826c2105e8dd73c748e9d27fd002648e5b0ce838af6b2 DIST icu_collections-1.5.0.crate 82762 BLAKE2B ab89336790ceafe62dd72f0aaef16a6eb47fa5e41424ed990e6c059ad431cdb3dcea943436aed0bf9c6eabd7aba12d255a2233fbbcf9cf5f666ef1dfd5b79a16 SHA512 127f1c91101ba69405b10a2590579606df766166fcf1fe6aa9a74c4900296425cba5c47a391a53a01b02026af5581f068fce4a7a400179809f7ed9922b94c0db +DIST icu_collections-2.1.1.crate 87233 BLAKE2B 7c627fab991ad55a6033adccae72306a3116a3611fc2e4a9553cc5690a4e6b88d6180527c9032451f89568a73b019749f3e4d4f49ea5e83558612e0671d318ab SHA512 41d20dad05d6d37ca97ae37f4afd51da9c2de968e8087d42a628c1543fde1ecaf9a284730d81a1718a8102aa0fe9ffff6b4a77f0e941c92fdaaafbd911f03a9f +DIST icu_locale_core-2.1.1.crate 70876 BLAKE2B df4099b46518196e8122aa5c248acdc5049153b19b804a043c1b00b3fe5010aea622e0b97822a5ca102b106f38cf75f24ec9578750bb1c8d10c042762f879246 SHA512 d83d2f14af1a285e3bdf6f1b81ab3ec6f8529e2375e04cfec245a9dd356265fa6770f76c1099d52f9d80219c7dea556035c3999abfbefc50091e142b8d2ecfb5 DIST icu_locid-1.5.0.crate 55131 BLAKE2B cde2b988f0af200b8e7851a66b8ae08881670ad6ff79c5caf5135a04c200e5ecd0acf27d8856fb0fce46d502527d506095f469c28f325b9b9d21d2a3657149be SHA512 4b85f0e7cc73166a542b2e502b3ffae1f30d2a9609ab83acf98e90b0edb37fa8ae4592f61ecf48a0ae0779fdd376abeff59e1d5cb97475012eda99ce2a97da57 DIST icu_locid_transform-1.5.0.crate 29094 BLAKE2B c7bb5c5ed273a6a97279d4599f612dccdd796f3ae717411aa5b21949721989986d8b766041b9c7e49a91cdd42a48fc965effb8d7fb6d33554926d203a6535953 SHA512 1779078e2ef9859bee2bfd5414ad7e4b0f0a40e6813f4ccf8de2bbe8c764fac7f99ef001cce22332a8b3840af22e9c7fb7cc0341cf8ba61303794ebe87071e63 DIST icu_locid_transform_data-1.5.0.crate 44727 BLAKE2B 7fc5408510886bd7b7d796850a542f2c1d759d2c67492b695245d46b34930e3918513cae2699963f603d2bd02484960b05afd58cefb6c3152ec201880366d44a SHA512 1c00fb962eb4b8c759b1120313bb890f4388d579890d7450b798d6266a7d6adcbbebc8a8dad2f267668ca6f1c059d0bd2209eafbe2a72f4558c85258eba57405 DIST icu_normalizer-1.5.0.crate 53113 BLAKE2B ccd58f24469da1f237ed9a349f0b3bdbb49b8f5b1995d6254c6e3eab53a71208ff4a0b09bdc68082cdbd288df66499efb19555f41d12a19205d724af22fb504c SHA512 22612b86a24e3ea222469392763ae9d40dcbb37191dd8b9fa1c64332463a4299a53275a1cd3deb7e0f057d137f4312d990762f9925d0ceafbc8839d67c425a13 +DIST icu_normalizer-2.1.1.crate 67132 BLAKE2B f43d626ee58afbdf472fdcac1bef6e334b8716c000f4a12ea21b917121b53ccf2d99af5594f589e7b68480522768c5bb8d9ce50093719c26250a77eac38bb3c8 SHA512 0dbdd24797e799ecf2c10a3c983222647698898c61fa53a257c67e95006fe80fff42698f421e5d9605a0d114e8493023dc888e769f4d1593ca988fa3234563fe DIST icu_normalizer_data-1.5.0.crate 50561 BLAKE2B c7b8c5751c6d6df03b23d63855335ef67b34a0b13b15f1f8a8986943b5131874f5205155889e12253692b39918256fe2cfed70dfe2087011683ab9165a5fd786 SHA512 222fbb819791fb4ec7889e45ed3032ac8d4753e2e9cdce9d0b3f79128baca5ce64157a8a58ecdf39cfddb6c2395001e3cc8828ed51803e85cae133c247cb338f +DIST icu_normalizer_data-2.1.1.crate 68649 BLAKE2B edd3436fb594109ceca6d5d9420ca876a091c0313e793ae96c932198d7a7d973416f0fd22fcd54faed2799977f10b33c169c1ba9c11b3ae461cf751dcf153f46 SHA512 9f6c6deb921252f4c9a243b6f2c538415d005c6e01221506cb9f5ca776c85795ac113833b1ad2661e478dd2b469f0f55a59e3b202dc667123daa8ff32b820823 DIST icu_properties-1.5.1.crate 64479 BLAKE2B be7d3a1663664095f4af654723ebc74f385a6423fbd3acad325ba0d6188dce9d9321eb323c1b1d8e6d75fc9aaef3d873b609d7049525d2402456c6331bcbf486 SHA512 7e347c0a02a41a3add950290bee90a339091a713546d4369c2995022e64f127f54204b0d46cbb88f396b3bccbd4cf12720a93d8551b73926f78fd5ec01829cac +DIST icu_properties-2.1.1.crate 59036 BLAKE2B 73b7217852b8b5972335eae3424dc237248036a55a6885b0087107003655253b016d6a9dbb4811261d54ee1c18c77649b10cd3c934f97485f01eb50f6b5c674e SHA512 0d30c13da9b0e864dffdb7e2a43b48c4847d8345b23aeacb12a204facfb1dc3b27424e23924b5383b057657c0ebeea0f71654fcf6c3d16396579d691d272e1d5 DIST icu_properties_data-1.5.0.crate 227993 BLAKE2B 3b3141507077dfdeb4f89316e63e1a651fc5570cda58c6c2d566130858ff67f900c3b151113e6303962fedf1d6b6d617601b21a08c4c0c98e6bf135aace6f299 SHA512 c651d0a50c229acafa648ce234a73bc1d0a85a8bf2369fdadaa62badc741c35e8a7d5392fb1bdb7b720fe2e0f883d1309c78de4ba913691969e5367a4e8bafac +DIST icu_properties_data-2.1.1.crate 162431 BLAKE2B d52de2948cad10de6b1e1b42aab09271d9e8aa4ffc4d85341beef140d5817cb644cbf89c2f0121eefc94028e1a33a607ba9f600c0edafd68ea3e3fe2898d206a SHA512 06345d1ea0037b6518f264485695136992f9c944ec0c7ee5c56e63a75102895ff0566887933febf5308d48f47659129e93eaaa22c8ea7d288f9df03691eff6c7 DIST icu_provider-1.5.0.crate 52722 BLAKE2B b1e53ac677e2db5870df0a91de405ebbc635c3f7931960f3bd744b57350c7536116f3861d4177faed2145b79c1c957d79815fadc2dc85faa656a1f0bb338a16d SHA512 6c11d89c7d2b788a44757f02b0e298b558ebe174fe917664401d91109cdc7bd1aba5526b3cdcee1f066018de1b775bc9dfc294bdfb40476c53d552bd6f29d6a1 +DIST icu_provider-2.1.1.crate 50907 BLAKE2B 32b368e70ed50baf016a259266d01f126e3647aac03178f798764f31cc49d83e6634e45b394d6aa079ce39bd161598a641e5217e7ad57bd4c5138fa577652b35 SHA512 36ba219c8fd48382a023c0272cc7c8f32ed5e5ed648a9de0a61bb7d7a3728542ec92404e4a197433e2f65ff6a3f4c9e1fa4717f7a60b53e5a4f5d3a5276f2d12 DIST icu_provider_macros-1.5.0.crate 6436 BLAKE2B 7405924dca41db72ce422437434a4affece69f888e5c18d2a92f761a8d83b180f40c8de9a34ec15d0e107b63b2fe0502cebd0a0ae6f98d9d6ee37d197e754703 SHA512 a0dd58d731556a010428fe4aebbc9dbcd626b46d380cf28ba5236ec8824045a20f6f2ec986e0c1e791bc8bc2b692a10306f448279f079b4c37237e4a3c3cef63 DIST ident_case-1.0.1.crate 3492 BLAKE2B bc79ebeefbb7e3ed1139e3f41d8d20fb175786bb123bdb9c1a92ea70effb4a0e5e798f24b068cd66a1bf20d53eea4bf24de495b5568c2d649ea804389a1327ab SHA512 81003a43f18da5997d644319274502e2066af9f9fd1400afda7cf2986b3ae0b7355b932302723cd3bda2d46b264340434d9279dea58425bad13785698d5808a9 DIST idna-0.3.0.crate 271128 BLAKE2B cf8a2c43760f03e94953c6692423a12f28fe763aabea8785b93cd247b3aedd2aeef2cd99978a027186290016ed924db39d19fe7d397da1ab570be9646bbb630a SHA512 9b7cee27811ee52ed9bb39fe82f724742eef2e5370642b6c756bd134c8cbc20bb6faa9f296053672dba8a66f7356a08b2ca99f176407b173e2d566d85d066441 DIST idna-0.4.0.crate 271429 BLAKE2B 8b81bc4535d2e8a1100ddeaf6f43c043fd601ee3b37eb109a9dff01630a81603223407bd5c2f1a1b108d741c811781b205c10148a0122b8125c237a5d5ba8a58 SHA512 b4133c5f73bd9c4ccc05245a9edcc5c980714129ce4f6eb7851eea7e509617ff972fadefe6ac78db6b4106667d9d6070de52c4d42414c95921e3d9fe1b7a76cb DIST idna-1.0.3.crate 142515 BLAKE2B 6835a64772e5d301c2456a94f8f5f40ebe6828aaeb1d48e3fbe015917dc3ef95ac7cfd0e1f1763e23950482f4b46ef7987928c8dfddebab63947d5a29fb490ac SHA512 e75ab18297878df11d82bf3623b005a3dbf7a6fa38c8f78830c219adc7d6f4ac07dce24a5f1186de69035ec316421319e487396cfacb053674137342d72a4126 +DIST idna-1.1.0.crate 148747 BLAKE2B 89c6bec54cc2717741ddb5cff2939c08823189a490b79ec0e9c7acb3aa2b4fee472e33f36d7c345fb6658c863d3c174577aa1f1a10c9bba7558fca9f76b8ae82 SHA512 1d49993145fe694f33f7c71ebe62face416f2229b12690cec23ae2e4be2fc1c5aa5ad5651d815ab70057b68edc450ef6004306a775b920b8773c221c0fe6c106 DIST idna_adapter-1.2.0.crate 8206 BLAKE2B 5e8d7dbfea699584542cde53039df9d8c3dd408efa2534f11fce7086f679872c45d9905d6b2cfe523148eda3bb0cd4820a7b14317f91725f3d9cdb475aafbd57 SHA512 1d8b54c19878645749a1bae768dacf353b07d266f2cb3bfa1071a7afb56ca68f534dc1d54cae277b777bc97e5986f297cbe2051a82e14f553ea73cd723d9da7e +DIST idna_adapter-1.2.1.crate 10389 BLAKE2B 464a9a20da73aad657cb7c0d573d92bd21159032daa8e28fbe61a980b44e59d1a2b2e076d30ca35a49abcaf1bb71ec51f774ee137792dcddc81086a1b6c2eb61 SHA512 e94555b58646c596fe64006ee6f4458962987ceedc3341a12694d809cc298c38799fb56b382adaa966e3171b1f62b7835fbb2e688251e742deb7067975bf1aba DIST if-addrs-0.12.0.crate 10680 BLAKE2B a4ebe07016cfaedba17dfdd60b2adea761b3da528c7bc79f490a4d7595115c6e4618867ee2fa6ea2633385fae1238cb8ce718b5a89799116def219d6e6ef3653 SHA512 54efd5f2b336512fc9282278d95f819ff5b365ff5997a9f21147d1d753e0fdaa1a194afcb0c076b7ef762392f0aae78753feb5f2942685d1258ed0a81222ba37 +DIST if-addrs-0.14.0.crate 16237 BLAKE2B e3c3feeca53ec1f5a43696e9549554fa2e1ea17e6f9c467d5a7b3584e19a5f3630a8a6f12e8f92dd5384da8fde647cc4aa261229f6fc43535576819311cfd18d SHA512 f030511d5c5911b7322dcb8c3cd861a736429d00862b2c0ddbf7c9f8a68e4886e3df7ab4c0d7f2e73a0ebc4481dd5d1022f850c9188e283c871cf37dcdcf15cf DIST if-addrs-0.7.0.crate 9632 BLAKE2B 000319f2fd5a7cc4d386815acd27b783a689e31e18c9bc9f0c0a6680fe5b0bf76a49f9efe8dab3659391ee30c05d26a746768cfd669abb04de01358f270bc8a4 SHA512 ea82e01a21e70395c239eee1bf94aabd42fb291e932a787e7b340962ed6c4e618dcc0fd3c66bdb846c1231dac59732a0a28c3c308a33ff55017ccdd22b5961ba DIST indenter-0.3.3.crate 6587 BLAKE2B dc4a73eb90bf05ec939634d3f1543f57c8b612e44e0fb3b38329ed2b9bdedcaedce84eb3f542f71c726b00c7cd273c3c390f827da170b5ba361cf669de4d1d3f SHA512 6585964939ee84739cdd19576faef467703415777e159ab2ff8b0f2a371fb2cd6c7a83dff4df954e9bea35844a43b72d93131dd4d23d328e9f365950ad831a71 +DIST indenter-0.3.4.crate 11101 BLAKE2B 4134fa08bfd3c7238f23a6d8821d7c74a52615fe833e7973017a8a2b807f4982e27d4059f751c84e1cf1de810620c8b02850c17040b2a87c0780b5497f9c8d40 SHA512 7d52483c23f17e805cccf35c284bfd71c924d850cbbfbab8dddd65e1563b23f2bc14fa404f16d517ed40ea998219367791c4a40bfd7931daa4ab33e41b352d0b DIST indexmap-1.9.3.crate 54653 BLAKE2B 7bc1768589e74020dc15d3dd064009edaaef39b7aeb682d0ca8e49944e3f020b9c04d64feb102e88b22feb40863479dfaf4722d6a77b5d19e7ca553f4bf64c1b SHA512 2aa8069eb07a814c8fa3e11296c9f032ef60963520d7786ad20cca5cb7e73b8f76d97722a994d65295bb713020aadce5008cd3df5e99d8bd968ef1979f910a37 DIST indexmap-2.0.0.crate 64038 BLAKE2B e7a1b2bbd790f1446f77262b5b0799c2a816a01295a9a4db66f10e6c0502f8970982fb808581472e840cc34dc70e7938b89408799ed0d91aa50d3dd0b4807995 SHA512 59bc19653436389e1408e21b0933e5ca6f9fe228f0f5fbe9a7e4fb461b9712ba82983cbf22c0581eaf7913298b9ef5842702946152b493c1dc651381d6bce1a3 +DIST indexmap-2.12.0.crate 100446 BLAKE2B 3fad12a9daa3c5c8b3db1926391bc770c9b1b133455ddb9ff4157f212176351ac1d00c50c8fadf2afa0557487e5633648d8c6a1cdf80211b974d2ff0f773eb06 SHA512 3ceb00f2cadf667e6e7893178c43f68776c2d97ef899209ffc83cf4f536172cde52bf73f8d512a9bba8119bb77f6b6c2a920b8edbc1875b1ee31033830917c33 DIST indexmap-2.8.0.crate 89670 BLAKE2B 65d206045ca5c8479f9436df693d282fb73e79873fa1c586e5a2922e29ceba0adad529429bed87afb4ed4fcd66bb03c29711ee4bda9b9f848a2c35dcd7cafa8f SHA512 4ac87d1b1991d4a3c332bf4f3c6fa864ce783e1abd04e80558f6e4f3b28180062afec5bd1587511d04883c52d1756f25eeed48a45a4395b9a4bdd66e6f9668ab DIST inout-0.1.4.crate 11280 BLAKE2B 557fb7818cd5e5b8a921fb456028b1d41b42ece0e9824976e83b577981e5c5dec30ed0acab903ad85b059ac40cc8b0f117c1810221dbf2362ffddebc85537373 SHA512 683ef612191d19a867afb1a622a30ceee8ae720df432132293c7e967ad1782190ad973e84ece7fa52a5d1ec7f4d8f078f56d818ac07fe7268547deb5b2399370 DIST instant-0.1.12.crate 6128 BLAKE2B 728923f757c1ee4e4a7afb90e460eed81392068961240a538e5c6468e15a0b6491f590fb5f6cc46e6d78901ca232351f65abb9f2f230d8f4983c5e58c4011902 SHA512 fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407 DIST io-lifetimes-1.0.11.crate 37346 BLAKE2B 7f278b7378a8569d3552c9b6d4be06d7908e05d77cdb964267f0b621ec4975a42fb6e48fc030a75ad5865681adf32ff747943ac559ab4ad73331a6611a1b10c6 SHA512 30c6e5ce6f5beabe0d7bee4f4522884d1316cf7d9b8d093ba0f952995997be3d0f10e1e77b9c20b7fe2b65429de0d2ec89bb35e939455795205206a3154ed544 DIST ipnet-2.11.0.crate 29718 BLAKE2B 5cfd0876d2c45de886a069fa564d5bd0d4bc53a62ba445692b35c12ad4e3197d9d42b51b14e31bf79e7b8ece129e4612dbf47c90ace5e2e5a9f0e478bd6a5b1c SHA512 9d3c42b5bd93a792ac09975b9ced105e6e8b1eb83bfe012aeabcaa3fc388ee2c5a0541d5cd6dae48dfb97cf82aa970316962d231b65298873136335ac3e5ddca +DIST iri-string-0.7.9.crate 142144 BLAKE2B 14508e5f1eed0e9ca443e529a74c0915d763a8a7f00a79f4208312550d959c4c0361598c8f41dfe6a71c58f7e38c35d4f2d4f66da5523f7f077da4dabf195d68 SHA512 59d575e73e1cb20ae6d9ea13ae4989bb4fe8780dd222333ee03aa45e121a39e23309c949d9c923ce9f56ddf0a341b874ad5180e68997f4a40afb7278c25198f4 +DIST is-docker-0.2.0.crate 2664 BLAKE2B 6c3b10a805bb077b9d0c54155fb9e72a15304fb3d6f0ebfc3efea8b42e02b99737d22c16a5352ee0c1f820699f765673bf0ca8f46c6a49b45796796c01015b84 SHA512 759e00292710b685954df031ef96bb650993cc3384cf03760ebaec377524cadc929c6561dde5fd3e14d71f9f122c86495dcf9893d1216d99055048542123ff06 DIST is-terminal-0.4.9.crate 8109 BLAKE2B 0fa495da123f6fe5e3ba5f643f1ee097fc4f8e8aa54d9525b6108855a6a2e58556534a5e8dbfe7b5f8e2f1932003ac63f6aa3384317de7b385cf724bee294468 SHA512 0803ea53945715333d9b5fb18feec7230a49cb1a5f7308e2ea8d06a650e376794dd372be111e85622fd21320228706dd589423510dd010cd6ea112f185c46966 +DIST is-wsl-0.4.0.crate 3264 BLAKE2B bb9842ea007d5ff132c77b719c877c370eb5cdf63aebea8f3165ab49fbf6c68d624a3809de2b374cc4c6c86dfd0fb23b9dc32c2e7cc5f2378b2efc918dd710c5 SHA512 69ffd419eb4de2e50ef4e61efca76ec4547216957d5422ac7b2bde85264080c2f522714aa40b5a6566c25eaf791d12ec0df09afe3060cc43087d18510f33d049 DIST is_terminal_polyfill-1.70.1.crate 7492 BLAKE2B fa663f858ab8e5fd56202d731b572bfdd4ab0e8262100424e27360a9ffd2820182bc57d6718a305ef82d04c3798111841c0d9f9dcfe219765c0f63edb560dc1e SHA512 4730fa09401cb4e69c92b38b2b43afd74699c61f5bd7b37605efbc0c08ca7a1318d43e4a844e46e0f84f83f42432f01e33771be2b18eb5977702ab9f894837e1 +DIST is_terminal_polyfill-1.70.2.crate 7548 BLAKE2B d84c45a94bc0ede333843ddb5206379f1a7d9df742c7f7940374d6b17b0a9c300e32fed5fe2bc58e6b3bc5d18b5fc58dd4e283c01c2f3b4f10f254b3cf7668c3 SHA512 d62f444e83950bdd441215c0ce681ff774692b35fec2af7181dfa243dd43fe42ff7e10a6e3b1d578712e4130dbfdf471ecdae73a3a584a2856a848d387b6c261 DIST itertools-0.12.1.crate 137761 BLAKE2B d7db67feb7418d6a779dc17d8a2f33481114cd81a4d53a10cffe08e13f0d3cf4525a5ef43368fe979d5a3ce230872eaf993f7065885531aeb5a6479351857708 SHA512 0d9c1849dcc0ddf7555b0aeb7e4f2ef3b101cfc6f03310ce1b6072d70ac8c8d3387ef4c726146102012e75171e0b0bf13465704b6edfc02752e349dc6af7cf68 DIST itertools-0.13.0.crate 146261 BLAKE2B b23d59a87f80d24925bc868c0ac7abb6b9d05aad5ca08833634ef760ce228a1b753062ec4bd22237d0e74727edecd7ba3df9789cee896345b69780d7de66866c SHA512 c6cb8f93a93b6ac1a2cbb3033e66fc81a39f83be773b734bea3311332b96bc71bbb518aae3e6b40cb537590c23de1ca4964361c336795c3985bde63232d410c4 DIST itoa-1.0.15.crate 11231 BLAKE2B 17c261baf95bff2f6cf0dbc33ab78ebbab0cf5dc56aeb7f8977377af868deb5957918f1763c2fe8c080e931489ea89ebcc16b3ebd976eeeb7663ff74989a1071 SHA512 158ca5dd4b04cb12d9292a4df63c72443adaf5aab1bd9aacdb964dc58878d847a64251f84897cb25c34648d4c973b44fef5b4c175d7c04cabc2c13b4631c2e42 DIST itoa-1.0.9.crate 10492 BLAKE2B 0d5acef9ae72d3f4b5a387d231952e6025def69da81d38269b4882bc534be7acadc073e526fd8bebdca898a98b2c741735c541e0b6a35ed0f8f8799b906b65b1 SHA512 95f7906edb7d6a2690389167f8c4d01bc37827205bca87d527f2eb33722419ed2f2e8afaa559cc5a0a7e7fac76515c9c44c71c42b536aa34b0e2858c40946b6d DIST jack-0.11.4.crate 51271 BLAKE2B d900938c27d5f680237ba9c4a4bffe9379f3ce4f4235944fc0fcfd32d0b839bd0cafde82c5b6db1485d8aca46a2e14d7a195fee618dd630bb0f78b0f1f371ec8 SHA512 069c8b64c49e73a1aa71c76e4632f66a4c58b6b322278f7fad4b315b46914fb3ea948df3c0416a291983fcf75585a4a2327e9ae9603567c8be53295f4e6305a9 +DIST jack-0.13.3.crate 117970 BLAKE2B 9d5147aa51325f7249621b04da418822df8aea7ac8a60cbfbad0646ff10b0c2151e14fa0578b889a0b1e25549398135d78e0eb997d14dc80c72c88c4ae854453 SHA512 a1078ead9b1015a8144aa15cfd48609c610738ca405c0de2fae10099ea7db4c1b9ba4009d9c3630b21187d0d4667b51c77bbdaefbf71fc420e6306e5d99010b1 DIST jack-sys-0.5.1.crate 15319 BLAKE2B 9bdb16011e5d6ffe69fe9fe5eb559c8abf6c3dcfc5b2f1f9e5be1562bf8c3afaeefa89e41e65ce6feb3b53e8f6df391c13a5640d5fb7d8fe2678ad829701adab SHA512 e7d0b48a9ccd117b909e00fa9219d376149925f44c97c84788fd046925b87eb0ed747f346e1e8a28d61e98ad3c6f847e998932d271afaedbac7de1dede4f9ca1 +DIST jiff-0.2.16.crate 731814 BLAKE2B 70fe71b4093af82d4484c32bcab37a49c3c2a7e5f155aaa91adc3fca0c4f1ba8240fa8095f431cb373b2858bea8ae6a7e71baf96ac02194bc40bced43416fafb SHA512 981899e22374207bc7af728a14703b0468cfd65bfc331c2c3c179a10fdae85c32d8e5711ebf64191f6eba3d913a94c4998fc70a0c7bb2dd1371c4a37e18b33c4 DIST jiff-0.2.4.crate 698395 BLAKE2B cce41c16fb2b400bd60fd32be0a1070c8c37cb4aad76a8a23c3febd38de83c8745ec3f7853d522576715257e95fe06532a65af62a051845d461586ef33e603a1 SHA512 060c865cbb8dfca205a4a0d5b18657a719b1edf1cbf375f9fbf164f654e63fbe420c709e613d441f438a2f5109428ce8a5791293f3e96a5c3720a1be390d52aa +DIST jiff-static-0.2.16.crate 77672 BLAKE2B bc22d4e757ed36a1dd04ef524f5a27707d5ccda94e009deac32cb0ee2eb99a59181bff15e60e1168afa42e15198f1f1200610e8729da60372a929da6b51bbf52 SHA512 5701a44d5d9f2f70e67018271a47ac224d0bbcc5b92f66919c89d59dd69b45332aa4674e82016f4458e666026ca1b56a14568a75085d7fc58d035e8906245a2e DIST jiff-static-0.2.4.crate 75875 BLAKE2B a22ffc5a2f90ac8a5cff0b6236f9cdc0425f57870d1a6dad5d155613cdece4d49be7f92cc61a09eac1045b49f7c108964b7308cfac7c86f8b5ac1c19a981ecf7 SHA512 ab2b9d6a4209cdca5af07f2584a5e53b9c67641992395a634ee1563e190442dc8c52bb6e82ee7b6056ab06782bf2ad756a125fb8fecb8caf99a1ce975e9c6972 DIST jni-0.19.0.crate 65890 BLAKE2B 78f93688f80f123027a5b800b0c3e8fa714a1a06b59ab36de73ab2d02f1f9ae3ceb2d3d4fd19c8d6d951394eb85f986f303987ad1e23b2fc451a237a04a9ef4e SHA512 75b48cd05ffbfa6e220dc4ffce3f37eb89105d42b0ac4e108930ed81c3525c4ee3d1c069342cee203c401c9f2e9bb2c53382fb61155da922ea9585d4fff9b212 DIST jni-0.21.1.crate 105028 BLAKE2B b384973d4d991de027da3f0c27aaae33a5d1f2ae8037f0121e8c637a96382055611da753c14732cd9fda56f929b307c988f1c3f6bc2c7617e2e5182a66a943b6 SHA512 46897d5fb968e598fe39179307376305f4604db61ea5d7f12050506a6813e242c05785536528ff2d59de8a3877f6b24be15c30f451f1bec40a5c72fa3b772835 DIST jni-sys-0.3.0.crate 10232 BLAKE2B dd6334daa6db9fae6cf1b31b9c13f09f9dc3f6a0e227bf6779880a6e197189d91583cd463b9876125cf892ffa5f8417dcc51aa010cdb8c99bb4f969990e969b1 SHA512 1e47582ed4dcf608ffd218549f1eef5ee3c87a89e28c65eeb5bba801edd6cabc0f095e213e8df606e050a57608653a59ced6f01a8bc76a5eb32ba1a337a63321 DIST jobserver-0.1.26.crate 22645 BLAKE2B 44bcc15330268ea29650e58605c7f21c35108eb64b790c005968955238e948d27b3d12e6bb06bfc0eb4a3fe5f9e5322bc0657200212bf87e08d9e043e008a5a8 SHA512 ad3ebb693018928daf399e918ce35ed0d4e643cfb5c78bde04697e41dc8adf2861023ea1cf2c5033a3026048ca0ebeb7f2f57a966ba8e420558e42dde8d494f7 DIST jobserver-0.1.32.crate 27549 BLAKE2B 5f6556788d10af992fafcb578ecfd2c81698eea31b636d3adb7544e12155796082623735c8b10ac4c04d891d1acc307fb4e4ac3f88b2006e181013006f51c8cb SHA512 d4528113dd5a5d4a3765d55599a07e0998c69c7d21a90d2872679755ec4bd7726e9721af9220c36e1179b153ad8a39214a422af63aea15eaafd7cefc828ddff4 +DIST jobserver-0.1.34.crate 29013 BLAKE2B 4d89234147386d61e8402872e577c52c60fba41b21831acbc6934ec7668b22dd9b876cf78180f5a06b2b26b642a0d7e02c9a67dc36ae7d3aa3b95125dec3d7de SHA512 42fe03eaa4caac030c40b167c742aa104151a126505de9ff4c52ab97ac13cdd2b7219268bff414f1d09061f3f9e36be01bdd6255597b957e18589f9ef4a65549 DIST js-sys-0.3.64.crate 80313 BLAKE2B 7cf5dcb2b9e0b63cb82771c9e98518a4cda70372c5aed07866a07d2aa51274622357e4b5a665499328f5a3c38f7c515303da50421bad4a496fbb658e2132325f SHA512 a4f389a4eb45c2122e7bcf365dccdce8fcf14b1b521b8b839746bba8783296e2f1b959d73bdd874743f49c61a24c4077dec52f63cc7d594cd42e9cd6ea9c2e64 DIST js-sys-0.3.77.crate 55538 BLAKE2B 8a4c04a8e93bf5dab63784a24320a314cc5cb629df788e116c452857b8c049c6bf357f3bf8f35086eaa81bc2d7f0954001addfd0577d845844871ee138e81bc6 SHA512 d9370ed6ea892bd51ea181630ca661c348f82d575381aa4c8b529113dfcab6687f4d19bceecad7e1b28ebaca74d405862150a5b5ee2d5d55efdaf98eed1ab255 +DIST js-sys-0.3.82.crate 56436 BLAKE2B 9f7b485177d1a3ade0f1c47becb114ba3dded7fe308420e56e1784199cd9cfcc1fd773a53fe4cc30132ec6579454936ae2be641ab3007c07658c9d525d73394a SHA512 ded31e414e3921c583358032b3e70895e570750f7b3913d685b2582a45b350e854acce64348f1c46692d910d4c7b366b6748574ec993c197b18e87870a52657b DIST keyring-2.3.0.crate 53412 BLAKE2B 653f312b4944d6a96179567d0346912b4c7bcf8fe10af224f438e2e085a22795e5b740974e4fbb66b183764a41f9b42d6ae09e590ebbae4e993160bfdf96e412 SHA512 b2bd4ef09d6b2951296c23064ad9678685368ede9c2543e7fcb9fc2d4c51ea98daad29f7543facccf089f5e99639711fb3823d6d9fcd5dbec9c9cff0df70c9b8 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 DIST lazy_static-1.5.0.crate 14025 BLAKE2B df29e0e3d1c061815bdd608b41074436024dc407d454f32517705ab04b2fe06075e310086c5e4961df0b4885e91021589d0bca2c1cbe6f0aeffa3ff1b3fd4637 SHA512 6d2f9887cd7f34f019644e42f02f2bf0111accd73aeaa60973ba0b039b6774670debece1ea9a6978e923208ef5d3ab7326473ee3560c078817f0f7ab8ed0f65f @@ -291,70 +381,98 @@ DIST lazycell-1.3.0.crate 12502 BLAKE2B dca2d3f46823a52dcf87b7d6103fc4f1f83bc524 DIST lewton-0.10.2.crate 68807 BLAKE2B 348af2eb2cf9a8d3e2277d5c63a34430910b7ce0c470b4aafb41c6dc2289702b5726cbdd4e390b9d5b88df594bd4d168dd0647a64342e8fd3677fec96d89b3ea SHA512 8868d1347f75099d40dfdeecb17ec1aa26540d3d9dda88ae62329e35b30cc7cc2869420592d777810a7df1e5e2c7a9518e7895f885921d68ff66ecf3417d28dd DIST libc-0.2.153.crate 740614 BLAKE2B 523a41bc8cff4ebcba0edbbe9e6a2286ec7cb3ba5e90ca5926c972b68e4b34188bc077d20c22376238c3cd91b7455898a95c505ace4ededea88cc496edb4c5a7 SHA512 3f99e3a192974fffdc053ef21e9ad5fb54b7cdbd4755df176704a95dba38047138ccab76763e89c6b565f37f98fd549fe368749f84f6d1638b3209cb07eae9b4 DIST libc-0.2.171.crate 785246 BLAKE2B 2bfbb3146d63444632b924520bc3d8af4adc6bbc38f4a7c6e8a003365430372ac1c05246684b54f0a98c36c8a7f02c325e1a6dd7fec44adeff41767e427ea77f SHA512 aca8b5f769dff18d9b3d73cae2c496f64a9828edfb0b57412da01a89158e770a5dcbb74bd83612870f9a08eb31647c1a2c92463189f16b01be8cdfc76fe0bacd +DIST libc-0.2.177.crate 792045 BLAKE2B ecea1ade26b0faa9cb5fb025e237f3a59dfb562e7b3de3682b42a41038b1d436e83b42b53158c1fc1cc4b1cc64ab55ba1497e869ae850a677c089fcce9138912 SHA512 9d737091dba80244137987d06a52ffcd44a968c96b59ae9af9cfa40c38cb9675d023f6324fbf25c436ce1b9592ebf26248f85b0a7c97ee02360ca624b0efb3e0 DIST libdbus-sys-0.2.5.crate 1557017 BLAKE2B 4528c792d727e71141ee2fb2bc7080b101df650121487c420c7c6f3602d2ac987deed7ad49bab850619128f258c1f3a94364f7658b83fed16167944c4ed12c88 SHA512 94ce1de7e1f1727e923b2042aed6652f9d0e68f27388c186c37f7aa2195fd71cb3c92a2bee7e8628c95f36ba2d2a38d25d9804900bf55eb13af31f790bca2847 +DIST libdbus-sys-0.2.6.crate 1105988 BLAKE2B 63452c0c239b32adda03f46d7495fbbda894611ffff15636f73b75f7d644fa9c71600dc6f3391914f4a4e269be2826c890503ce5d245082d3f8ee331a12d3a5b SHA512 b12a56cb3297b21d79dc6d63167db16c4955eb846b3470e7a7e46a696483d30e702b3c2a1642d0b4edbb81dbea570c7194208f8ab2ecc535dfbd297c6101434d DIST libloading-0.7.4.crate 27580 BLAKE2B 491faef2659270b10bb88ac46e0453f747f35e78d7f28b7d6d9151177b4c7a7aec0a1efdf702eda0988c31e9dafff2990eba4e6a9b0b695c535ea9086ccf36e7 SHA512 34439d9eca68bac8fcbe2bc94a70e07550e7e95d713ab74ed60ba6736ec807fd9c9135c178d436fbeb39afb074b2a9b05775d953340845c088f5f8712f5f56a1 DIST libloading-0.8.6.crate 28922 BLAKE2B cd9d7c2652bc4b0220e1c29cbfbca41f44d12d76c4dab3d025c21e5d317407ab656a88add0db95f1086934a424f55b4b413f33cb2a52cdcadde7641f9c5b3fc3 SHA512 f49ab79244d4b54c2f181bd9d7506fe5df9824a09446924dc429636e08ed7bcd6f5d2afaf8a0c862982e2c2c5832370b118266d36f36bc7b7522668bd598fc81 +DIST libloading-0.8.9.crate 30222 BLAKE2B ea3e581dfad82c73731e7c2ca13dc608d78c4e6c517d063ecfc0fb138775ccd9c071aa2c7b539476223510dfb4aab03783fc46d610771eba21933aaed339d1ed SHA512 374d82f4516e81c0ff66f244b89b486ccba675cd7e9e65b7732242830a43caefefae2efd11c209da64d8d96755c4432aea97f2dd200969fc077545212a1175ee DIST libm-0.2.11.crate 111477 BLAKE2B b1247b197dc66a38b9a1f9db0e32655c9ee09575347895bb1e3f22e6953c334d74574a7015f214b0af0eed564ff2ee4576d07d0db5421aae917a7aa1e10ea142 SHA512 86742b5d97dc976cec5bbf75f565b40c7058e74cf840cbc7baf4d84823318040ac692b5796a407bd44caac553dda3f5a087d3bf8d6099cf26305123ce106c7bb +DIST libm-0.2.15.crate 156108 BLAKE2B 0bf4cf92e877f3f7e0bdcd79a3d26a3802f1ba38d0da08e750d2e6107d5dde49cc626a63d55910e8d597175483b1cb55ccbe866059e06c2cb51519ac5402655d SHA512 abee4d8d50a9d25f8d5cbada78877d53ea50d82434b888d170bd83a532bc0534190abbf877e38aba78c370c8cfdf9dc9955c8a8ba4640732e8e6deee3992ab41 DIST libm-0.2.7.crate 115688 BLAKE2B e180347d10847c40a88e43d321e08561df053e6fea0cea2cac480c4162c2f31d8697b4572a384edae323d43781d3c6462b2d77220dd71b2fd0da3a2757487db1 SHA512 b7adbf657be812451fc50cd5e5f92b7a71d43b4e48761bd2738d65498c9abad851f8e86d3be06ae75cf39c7798c23cafe767bc5fd40f596774e858f69fcb46d9 +DIST libmdns-0.10.1.crate 27936 BLAKE2B 815d4c303ebf0553a20acb5f70de853154a150d6f8c6ab5eba6b76822c2227da2e0f0688992673ff2201f11b015d1aae66be09c2c5124b3e1e53ed4e8af946f6 SHA512 8c3f609346cb16aad9bdf4dee6133c8cd654d92d79285b85198617cc0ea280d1a2e687339f463e6102ebf0d0a6134824cc17b46435f63ef1516933dd19b6b86d DIST libmdns-0.7.5.crate 24563 BLAKE2B a8725780844997636a22b1fafe9d225265e864910f53df3abdd70993ad38e33aba2e3dba4c05ad2bc2d75dd4a1100d7de7e70b61aa75742b63644b2212009bc8 SHA512 1e4084e80bad11d0942e5ad072ac4603a7869ac8ca6d114d9ecd46707161f8668a2755f187e06b0905c5773153b5b95d9116d4b1738e59975a0916e28e9b98d3 DIST libmdns-0.9.1.crate 25965 BLAKE2B 8281d93012be715e08001cd2363dc35ede038b06bac7eb04807073a75c0aba1382dee63541dc3e6f16239043a35f84cbe081f47ba489ef395f87c25be8b5fd53 SHA512 1246427f551cd060e3362e5c4d65c71542b77068ebb6e5e78a3a3129a8018a44b0cddefa404b242b3af6f1c09bf593d515b0aaa6628cce55629a6a3e36a1fae7 DIST libpulse-binding-2.28.1.crate 130637 BLAKE2B 3b5490c5bbd3d60e8deb70d2a5561437770694c0616dc655dfb7d8368cb30b58b1ad6c05d60d6d1c04cbc7e6c895b8ce7bf77d0d63df0d5de5f4acad8ee30fb1 SHA512 224e8e6dada41084d5cb238715af7ed9e057df6ccdd37736a6b8bd8305fa66c2878884a9c66063ff337ef26e441de8fd7ba148be0f73c6196d2442aa3b25465c DIST libpulse-binding-2.29.0.crate 129628 BLAKE2B 4fffff2024395b5251fbdd6768d3fbcb2d60c248fcb9f2e88f47374e8e2a87423c6759d2271f6d9c5d7064e700ff981374bd510edc9b33f7f8eb959f082fd158 SHA512 309ad83508be6c007d4dc0f561a8ab871136b921343875588d20be39acbdceeb454ea2f953014327d4fad936535cc26cb479a982e512e44de7b7782d95ea13a4 +DIST libpulse-binding-2.30.1.crate 130490 BLAKE2B 0466ab554b70573e532e25136dc90b550888951e3eca9efad9a5703b06e7efe7c7c2c3a14543bf31dc9dffea3dcbbc0175da980ca3cb2a0c33a86916ca700a5b SHA512 befee757dc9c543787706c23c6cb8a23280939f3700d0f6bd62ee2de38d9b4e625a6bcd14ca68918780797863ac1680f11c6b5bb460eb9c4eeb5a139cb2a1ba6 DIST libpulse-simple-binding-2.28.1.crate 12265 BLAKE2B a64a054503e3fb312a06466ec5709ae9d4f273eb3bf51ce71051dc8fdafefd9768dec9fce00ece74f464fab4d7510d8bab7d3bc0e92af2979a7e8d5d1f574eee SHA512 676fa1a92fd1946fa3579f4d0c08bf9faa1d3ce291fb40b437b88412635ba9ff48080a62a824c9ad78affe39a806edaab1fad538ae22bfb96ae473ca0bdc0094 DIST libpulse-simple-binding-2.29.0.crate 13697 BLAKE2B 0f4e34e9b9313cd692d194366e74d6523014e13ed383f51d8bd93fde59c418dde5cd1a4efeb22a88490e64ee7dd3b4c1a14aa7dfc4d9221f0542e8956a2115f9 SHA512 668f2b5ab04721e8449eb9c88da9f5985cd14217ae2dc868eb76330a56a103267719349c728c5f6be8da1d197821f1a2cc952142b848c017d605f19b1b84bc7b DIST libpulse-simple-sys-1.21.1.crate 10465 BLAKE2B 929246968f53ccc169b5f1862675288693e40f3e8cf82fb91075276b9886576700436df01d950fb36dd8bfce8d71f839efc87a07667ea063c2e6c56c1b54c007 SHA512 953f4f4659aa218a19a8fd684a0e7cc8c4ac1bdde2fa1fa4dcecadffcbdc346dea565d0f2f7b645ab71f124a89801e3b29e2f73e65cd729b365d9997fd3e0d2d DIST libpulse-simple-sys-1.22.0.crate 11624 BLAKE2B f667a848df283a10c8cf2cf7de54ec0a54495022c7c96e10cfff7b9cde052ac4bd08992f7c2a53dd3bf15d44c19804276a66288c783a63720795af8281fb65ca SHA512 6fffeb5e95fdc6c322e8d077244bd1fdeb671602c6e438194adc12985dd2a89697c4eec6c9eeddb240f794983441313cd443c18ca9e1ca02d14fcb899fe1a08a DIST libpulse-sys-1.21.0.crate 35899 BLAKE2B d230d20d9e029458b8b43498282cd1cd0838a05393010f322fe7311d5a1d474f9c7cc25cddec280fb27ab0459d2051bbc62950e235c77d14d424c656509056da SHA512 74b9725742f7dcb3abf49dc3adde2621c7645b372bbcaec6c23caeaeb73b939b47d1f4a9dbc180a37de633408e2c478d979a25574df9605b545a41b5751ad212 DIST libpulse-sys-1.22.0.crate 37106 BLAKE2B be2a3ccbd21051561636539701b28c09faeed3446c00d41c1604e958319708646192a0934e08c08f31371e338946f199f92da657c896a42597346facb1e347d8 SHA512 7320f14bf9b762d850589c759f5c9e36c0ceb3f74855b5e6b0d0c72a66647d56afb5cdb3b7146abe8fb529994b8aabe161b8c4e26baaa8892843d2297cc12e10 +DIST libpulse-sys-1.23.0.crate 36914 BLAKE2B 0c588d0a8e7a2b10ea5c267e0946e7380bb3a4014b43735b97e9310db0772dc2b7c3d83108fb0bb69c8fa7dcd3bfa1959a8287c60f75ee71ad467f64cab95afb SHA512 4162d53331dabbb5aa4c30d62bc98c049343dc89250d7fe0c781b3d8bb48a57cd680d90a8ba7ddde6be5a4e5eb6a1aa947caf1a689afda98fe25c0d270bc3b62 +DIST libredox-0.1.10.crate 7332 BLAKE2B b3dec5511df635f98f1424d9765724a8313b85ed73bbc6fc736a57b5b0a49972cf02d546654c88562846dd6bb2eb3701d4e14312eda85b173336167104687899 SHA512 3cf139189f8ae2ff77fa9663d1a5405ac3047d5cbab76b6497038631e2070fc2b637f9aab5001756d2f0d2f34e820a909de19da68a59c903ecc3bf80d8e80680 DIST libredox-0.1.3.crate 6068 BLAKE2B cf09f261d3a945d290ecaaa724903e0042d66eca46dde8a40c261ccb1e82c0d6b9926898eadafc6313fdb9f19cde56377b8a9179935482559c4b9707e327511a SHA512 c62142fdca92388664eef83fc89b8607e2df318cbadff6edf9e3d927837853d5cfeb54445299a82054a0ca81853b0a33536966ab26f1f2e0fa43b39aaaf67c49 DIST librespot-audio-0.4.2.crate 10621 BLAKE2B 5186a36ad0d24f2f9a9d2dcd5b297da6b1e4fab30867853901880f6c6d81712cb7b474f105cd31d2878afaabbd5c69e1b79a9f0be756d2aeb6285e5a0674fa2f SHA512 948e762e995351d5fd38e345cb46b2dfd4636f3233991cea37938f854173debf97a306e4e3af4b99c479da1cd8d2bed1fde571a62b071142ab7f0952933c7767 DIST librespot-audio-0.6.0.crate 12209 BLAKE2B 4050b52877860be5113dc11d3775f5676bef6345a0d153052a899ee6242d9e03368af9ef42b2a1a2175fadc714b271af43b491fa484ecf516a551496bbc4e42b SHA512 e90c61c4dd97f58c0d54d5e53067e0b1c613a1e41ee6bcee82efa828e89cf7e2e89a27e30f935176bd39478f76c6deaa7849b9c71d9a511c7311aaabe169acb3 +DIST librespot-audio-0.8.0.crate 34092 BLAKE2B 98e5fd43475e476f2bf8eca0b94387263f00f173e581090aec82949ddbcd9106d37e885b100b1237f355ec44e94e24e93c3ef9be3723cfc4b3bd1e2c4006aab8 SHA512 5d8f42546263d1bdb850f23cdfdf705cba55324d1433496ce1512cbed4eed711da00960d2a00a64daf4e6a58d541b6f75b4321b88a7cca0b484a9426684ff06a DIST librespot-connect-0.4.2.crate 11194 BLAKE2B 41e7b254d2eafd59016af1c415167e81396a4a3600b84791c25ca4ac75b16827a56c0a5bab9dd5e58e9944c801524e577dbc1f2573a181f1614f96289eb79876 SHA512 aef9e1ea184a53da87c7512eacfc3c4df52d03f6f34d3564d734189b4fe015acf0194a2717664ea2edc93a65c7119ef14b6f389894089b3eb8bfff2fbc2e0536 DIST librespot-connect-0.6.0.crate 13820 BLAKE2B d9b2544f73d9dfa355556c9f975776b3305cb1c87682d1b464db685e164fd999062263089e94601b23d7d1b3b4e91ffbd87b96d68107e4a6574737721dee4f99 SHA512 da000b16df8e5ba254d36d21a6f2677faec09c3d2f21b65c4a9874702bdb8ae6fa220db3d594964dafb1c85965e771301c7aa463eb471e84592a731db13dc9fe +DIST librespot-connect-0.8.0.crate 59376 BLAKE2B be6f498161491cab4798adcad10f7dc659069df993b25e2e9c8e1febc97e20ae36b57a58548efa694a055622e60d2de3f81a3e024211b2fd7084dbedcd904dc9 SHA512 b856f1814220a5668796acaae4d8dab609fcfb6c8234a4719a4d631b105733433a7c5288f955e04d062b28128641d99da8305d1242e3d9ee55cccf9dfab02063 DIST librespot-core-0.4.2.crate 25197 BLAKE2B 15e9b3815fc0851b9a38902612eedea44a0cd2a5247b9352c25d8ec0ee100d23eba9e2790c6b3b50b5e55200be5cf3d0e72db407c7b77e5c021a2bb29b5152f6 SHA512 13215105d12b9fe61fdeccbe049d6d8466a5a231e1f6983d0bdbbb59a5a1b39aa8d4fb2cba91da0f9dc32337dbd95313756e075aac0faf61dbfaba0db335ce94 DIST librespot-core-0.6.0.crate 60420 BLAKE2B 9ff40680fc93346f2826ee36a44dd46c3bfa5c92138ede6fdfc80a9743ce4b9b2059bb250b2e2362618d58d66a342e814e5329e910e12db062453de56926e761 SHA512 8235857c6c7f5b18390e290a842ed94e587fec8a9c5885a503e98712a502cb17375733bbd32706d6cc2ff84776998f47f36a48b5af87b7603a0ccf53b3a4f870 +DIST librespot-core-0.8.0.crate 91738 BLAKE2B baa20cd42ca16084b377d0c441dfafa5c5ffa217ab2985b5c0d0b6118d95a340018644c28abe7a59b0009801f5a6885c437c6c4f537599b751bde487699e9dfb SHA512 2d74de7d5705131b6dc828e4f8caa7215e7bf1a50f683ab2b5b336f0e9a4a7824be09c0d8beae280a68cda52796c66025cf9ee6c150b37ca76d950c8f6d89f81 DIST librespot-discovery-0.4.2.crate 13773 BLAKE2B 4e8bd66ab81b92fe8a402a2e984ed760e4710a3e1360b431db66a443e07ebbb42b18944ee47196ea1fa72c5d70c65eda0b32dc6f76b7851514d4e301027ddb23 SHA512 9852a09f48c6a5821186cc7291546aabad08719c4208ef6ffbac06aaf6b1f130fce137323a75b6decf686ae5454fe8876d1784342b946cc4bd006134e2720f8f DIST librespot-discovery-0.6.0.crate 31988 BLAKE2B 5c5146de448b2532932234500067307a1a771fcad2fc4b2d4912d3bc8addc74f4017d0ad6d82937d53d05d84de206f2157c380dfb7a69dcbe9884b7a7ed4588f SHA512 f4d73191c085134b43582c3ae4639afa583dc1666635eb700e3d9f6a2f9960fbf1bedb4e507936a309bd0b59adf987556e9f9e96f8caffd6b6b6a727282c5324 +DIST librespot-discovery-0.8.0.crate 35146 BLAKE2B bbf90c3da1e6ba0708da4399b29960efa285fdb8ce26bb736af95661fb639833213a39b02a0e4171d2c53e074afab4f4909f31a80959c4c2209c7435f26e14ee SHA512 9f3f773e0e5029d3fe9c53e1657c94afe150d1bc0d3a9a0f4314d319eb121a26e4f79377930e9e73b8dca607a9359a436136b5a77825da08b21ae43259756368 DIST librespot-metadata-0.4.2.crate 3850 BLAKE2B c6dbc60565fbbf989787b3173cd5586d727d83c7d08f6ec0f12344dc0a66d93647d7b54acc2942b51a4ed4961b220cb4d389f4e90bc77703a06fb5f8a217d903 SHA512 eab90ae89d4207487ff074312dbc8291f616d7f422a5d8120a72772d25550bfc7f090bce4f0510ac37db031bfdacb6763f0720321338dd8627dfcc21237bb396 DIST librespot-metadata-0.6.0.crate 15225 BLAKE2B 12c0df08a977f88a7ad04bfad66cbc83ed5db3fc68be53570f1c0e4f27cd9cc4f972133f8e70d417b341583e1c4ee1b8a2a9e6a16a269461e2ef195d4ac8698c SHA512 ed81e554d0a2889f4467b8286741768c3537819b977a21f23e575f291269c5f3f8412d48d27e9d14d0079962652e440a09ba4ed2c3988a4f30bbc661fc519ec1 +DIST librespot-metadata-0.8.0.crate 37723 BLAKE2B a3b4f76db3853f5723d22355df882704fc421991a04e398a455ed726aa64d350e64483beaf450507bd6adef392b18c496b660c46291bf7554853e8b2306a63ca SHA512 55c535ed75cd9aba875948b7fbe3a7278fff977aa5a0d30c001708ab6c4e1d7d1ae67811dc53ed01078f855e54f1825542e0ecf060eab35627d087f01e5276cb DIST librespot-oauth-0.6.0.crate 14154 BLAKE2B d97170ac9416db9c4cab2d2c7a6aa18f6761d3e5bf5257ad13f4d4cb341f97f33e7970a5066ca643ac8fafcade3ac3770378cc553e0af481571a5c817d0ef859 SHA512 0c246db6b639552e25bdf220275825daa325b1a9ed877df576d9867bd4d61dafe600648e4d43094f14f3a0d778930e27d983cf80d3c336f3cd52dfc955b4e798 +DIST librespot-oauth-0.8.0.crate 21740 BLAKE2B 11a696d56e4d6f1e78c26a339ec4cd9b9ff104d2eda4aac4b8589f742e9e452b3438de59c8c1d50054508cb62511e416cb1f3119ad78710dc0bbdeb0a94a4799 SHA512 e055dc116760a00774bfb3eca40119e6a88dfdeef699e5a7f79521c43f7f861ecc99622e7ff970101a86e92b9cd9251c98b1a18add6fcbf2c532b79751b63e6a DIST librespot-playback-0.4.2.crate 39168 BLAKE2B b8d527e35e80c10388afd9d9e02de3c6fc7edc8df87bc28df4ed676fc2601c8b3861ae748f0bbbd302d6aa6f21b90958243ad62ac32292351c0a1f719289881d SHA512 88f773c35267e6b70b75caa21c3bbb55e1c4a609a5b96d1817fed755ef52286cf0951d32e43368e18538b1345017ee3a4e014c4d76b16291744160c5f2e6f67b DIST librespot-playback-0.6.0.crate 43753 BLAKE2B d195ae3929d3d5de1e241154f46f00a5d30833d3ba690f160f3cdafd089ee07c89da1a4fb3a2fe1cd04076ab3f0af2335fd545b4f0adcf0ac8a75addeb5e4e4b SHA512 0690f5d63d0c146922b18b6d3e41e6387c042ecfb117bb021c09e5c04c17efd674f45720df52678425cecc48478dbb2aaa66bd77e0f094fbaff8aafb50d284d4 +DIST librespot-playback-0.8.0.crate 76786 BLAKE2B 73aac4eae551f5e572fcd09723048086b3eac9f7e0de34153030958dd3847c5f87dbac8a6598d287b97992ebc2907dad9d91e4d538f95b833febb67d18d937a5 SHA512 2f46192cd57896f4b4d1e4397c71f5d29a22f8222d5af3086a335b116c43ec261b66797e7e07f0d1f6733cf420e5639665a35f64a0f017bb2d9ac385b2166697 DIST librespot-protocol-0.4.2.crate 12192 BLAKE2B 21c299e6869000380e424c5acfc21fe3e3cd9f58aa56eb2d7b306555d34e8cd13865ebe80f9328459eeec53ea5cd4ee05070d877ec4a7d5ad985f77e50e9586f SHA512 098d336ff7ffedbd930ce382ab80e6243860df3a28c85a7cd29c8a6e5cacf8b5aa454dc21ed5bcea03e7840fb279be88b2698eba5bb46989b9d910ba7673b3f3 DIST librespot-protocol-0.6.0.crate 71113 BLAKE2B f3cbd6b73630b24e5bd78112aad4e72e80ffd644448a597b30d40d04f7f8d1109dfbbc6ef1251ad1bc514a18ab05556e73318e2e955349f15a03117f2440096b SHA512 ba50000422448afcc8f034768a55563a3c0a85a1b8646641cca602f11dc9f8b90303fd501b6111b586de3de9d146bd0d70cbcbf5979881f24744d4efa9089895 +DIST librespot-protocol-0.8.0.crate 87814 BLAKE2B f85ba03f00e1e6c9e7f3c7996bd220037e4d0bf136a00e93270f34fd8a3ae69a9b161d37193f392315e90c984b6c8ade8ba9934ea458ece746efb5f5c7f63af4 SHA512 9d83f0d0d0db6dc0e783137ceccaf80dbdd62bbc532811eba4239e242f1c193a9f6b2aedd4b57ba7096e2902a63cdfab3e2c6277cb35e110b149609115eae95d DIST linux-keyutils-0.2.3.crate 18434 BLAKE2B a31163a446ef8897be8ad73be22ae3bf56a9ddac4ddb6b89bba2360b967f0f6eab4aaea98eaee16e5fcf0ddb43fc1883bd0da2a5c85db505b7b404586ae6604b SHA512 3dd56475a93dc46f9645e60eb145c315e647e3779fb66326962b8780d3a5955fb217fbfbf56d18d0c3d4872bcc02e64f09dd7734e6df3418d82e5648fe6bfe70 +DIST linux-raw-sys-0.11.0.crate 2659624 BLAKE2B 0852bb981c64b8e70c7037a3da13a6a16b7a89190bc50a07159d28a797e6d1ef2f2010383df5a43cda19fa291ee5eb4c6365a51f5d9fd31f204544ac7e115129 SHA512 b16261142f3cbd1caa4e0a17ba06dea49f0d4514f583ca511d9c7ba6ef231f18322f37303b7ffacc73ae7f22b81dfd740584ef7bfaf67a9eaf43859d2de1f941 DIST linux-raw-sys-0.3.8.crate 1013776 BLAKE2B 375b29d2cc700e95d94ea8dc304cb711562952742f65c9664e33560a3da862aba74f2ad2ee66b1dface8cd5371ea9cbbc452ea953a6b6c656ade7d938b7d2ff2 SHA512 cb0e5c54870dacfa513ad05f7a84e9e90dc1a42f55685fe3e252fd25cffa4b875f1b65eaf4ad132ef0a19e6677c7763b360d71ff0060fe6ce5198f38b9956375 DIST linux-raw-sys-0.4.15.crate 2150898 BLAKE2B d1936eb74377d9bfddccef3830b56eb716c38ea3cb7e13b73325dfd00f9fc0df74bae49e4214dd7f27c257403b8b12cd1ef332d53336279d13f7e9497caf4135 SHA512 b5c39181fb6b901abddd8b2e7b449142e2e5691cddadb8e6b74ddc3b53076b1d410522cfa45af68dd18befd24ff12313c2494cf2cb0cf142e2228bfe42014309 DIST linux-raw-sys-0.4.5.crate 1274380 BLAKE2B e15ca5b63cb994e86a8161e3b6e4bd20da8f574d1a470128f9a209a729ff22c86470f4c2b2a8ccbc1e37d6284b026e0805902645ea4b742425fe34491e519638 SHA512 13c36e03cb5bdb2e9f17622e21eda608057fc9d908bc55a829fdeeb77785094769d4f4b4daf376c5509ceb3abfdb3936f668bd6d5b2fd48e21c5c28b6e597e78 DIST linux-raw-sys-0.9.2.crate 2297426 BLAKE2B 981899ef8948d1edf74bc64ced0fdb1841d0f4474abf1eb5baf3d58b0dfcc637dfbe6c0b75a0120965ab3accc64ffb8287f3605eb9e4fba286d2f1818bc9e40f SHA512 3471aa11ea0f435a8dfce1e670e4c377846e16c2f4b61b59f66bca867b7cbdbd5989ae7f978e9b7d2f487c2442a4086b5473606ba5e336c43be0cf612e883c60 DIST litemap-0.7.5.crate 29962 BLAKE2B c94ddff0b5f6fb99d6adf31ee7c953bb1bb3741e5a68cfa598c75f58f6f426a53d19423e40b0b3ae2010e1533b4d46eefeeb7e86fdfc72289748cac897ba99c9 SHA512 722345f73b4ec2e91a9407dafd3951f1aad0acfb66e0adfed8b0a83dc1ea71d513fa5570bf960ef51409c9d50aeac23f85410ec6392f5620dc1f1e1e1f884659 +DIST litemap-0.8.1.crate 34172 BLAKE2B 3614a408d5c6b03c5371396dfaa5c654073dcbcbed3782a15cb6aa53973405344ae8ea7e96cf4b00e036be985cab9503bbdb51379fa55ba739c387d28d646a85 SHA512 6034f72d3c90ebe406b7e1b6df7e2535cde7728cfaa5328e66351d231f888625f394974f6aad891eff48142b00f14916fd8464a59fcaea1627ebc7338b865ead DIST lock_api-0.4.10.crate 26713 BLAKE2B 113adf8554c65e9782e8fd0360d0398567dfbfddb1fea4928cc152fbab98dbe086e42b81170f6f5c333d61dd3261e8a1ebfbaed786e6bf6378e6afde6d7f9e5c SHA512 ffe8cad8099bc382832181c1ff95e0935993491f247114604201be7d4ddf8402fd4db8fd6499c611f95fbce7d57dc3d3738eddfab31c52f50ab8709e549697db DIST lock_api-0.4.12.crate 27591 BLAKE2B 4504d146a114d8f8e1fe9ae70b993c713cbfe884dd69c61c54dec978733b95a853c3e5af26f237e48ebb4ee9dbebfce0f6c06067f74a3d122e92f5ace40e22d7 SHA512 525d971f495449bbd02eb70fcd84d4aab05ca582142144a5f314f9aa67ad4c5b4c98dc919a416d0ed2e555063eab037a441d671d56b633f2cb75dfab5d99bcf7 +DIST lock_api-0.4.14.crate 29249 BLAKE2B 52d2f3a3eb5c3cbb4e7f01a2932f90200e3361155f53f282228f436211c54d1e429bddfd9e305a78b9c26b022b3234ae8ad3bee209bd4feed5b64a86af5b3d85 SHA512 73164d411c9899323b3bbff4fd6824e2b9ff44971ddd267629ae5a70b456c1ca945716e952412790d35331993ae71600b0e6a2aeefcdda117b26a7222ed97bf0 DIST log-0.4.20.crate 38307 BLAKE2B cb9c9a401b49bd68c18d5e42f2ed94446f1aeb184caa23cefacad4ce54a2a357143af54a5595c45d6f3c3d20b054c451d9e6ccdc09c19cca99ffffdaf8bbfc72 SHA512 8661b0c71d3b7fc0d679aa3d7f06910e6d3da1c53862aa06526000e1bcaa0b0b068415a1a9ab317c318f00d15346dba8a4f5d2a60d8850790bed9cfaaf757b3e DIST log-0.4.26.crate 47022 BLAKE2B 529ce84cc92d1258327e148e1fff16cf4cba1d53f311353a15814856ad12d48f654aac5d4c6356a45439858a2f1938bdb7df582a1d62bf75b9380f2cf784caf0 SHA512 d85f3cb8bf90893d59b3174785295616d719c8d2078c04fa3e131c3f3cf84b73c75b932348df70b7eab2aedf261b27e6544f051696eb5c287fb461d1ee699ec1 +DIST log-0.4.28.crate 51131 BLAKE2B 2911509cabe6a69b60945e798f2afee934d865d21efa22d150288de6a27a797fe00ee4f249fc6f6d7a02e2efb7377d2a7188a8ed8cb692f76b94a0df56d74d83 SHA512 cea74c92c80f291360a7cdf022e3ce2f509b9051b415840ab2a159585384f3fe606289da00a6def0c3d666416c5fcda865e2ae4ad48df07618818e8486cd0209 DIST mach-0.3.2.crate 19611 BLAKE2B 683aba7d140a3697933835efe4e2e5a6a107f0a6122ce4533bd9079c0de4346dd1a817abeca4372a44a85406a424af9deff87496e79359df4c8d9ff89daab7e9 SHA512 73622b37915f3445a57cbac5eb378bfee61f5a2383c0dd8bd7c29b5e46447405ebaeb706f3a3274e5afe37b0506afaf1511836cb8897d9d480a3abd41f18fa26 DIST mach2-0.4.2.crate 21889 BLAKE2B 137db92691ea6647ca19257abf90402344cc3a8508fe6f8760a02fbe6f56d5341a025fd9e5ef92ea355feff9f36ed6926bf70c79edc17977b65e935ad5f36959 SHA512 5338254f5b9833d41957715898ab4bc52585f99bc8f8fef3ebe526ea36d8a5cbd191aa07a218ebb6f71b7487418223e4279977294b4a6494aee8d01f34cf447b +DIST mach2-0.4.3.crate 22180 BLAKE2B 7667b42c1a59d2f16405a09e554701eaf447b1361705839eead236e7d9a38f7fd40d4fe55c8f2fbf22551b818390a3a9859e2819dee23e0071461c92fa2137c4 SHA512 ad8e5e287b30d5945f6ead08b05709aa0e06bf975eb18cdfb37afeebec31ae7d0100a9792796394194e258cdab54929fdcd1dc7cca6db4a6c42688b5f5835aa8 DIST match_cfg-0.1.0.crate 7153 BLAKE2B d3f40e5b16761fed337ed18dfa9db9e46aa2ad84ca8cfdc7cf7c72bea7cff8d084d95214ce013b3515bbe5b1ad4b8527bfce692569551e4588fe6f396a8a96ee SHA512 fd36f2b128d70a0f278e708bcb3274d90380229f754aed7ce9b808138b0189d5e1a07e0ba732216f788a530cecddcdd980559b3f71efa371d8805a213ff8f2d6 DIST maybe-async-0.2.7.crate 19186 BLAKE2B 9c60b19577943ecf43acca877ca96fcf386a62cd5e55a3a0cfb7e022f1e477b56a3120d6f92fe39742dc119cfa90d16c956853f61d2268d8977e5bf8f3729d66 SHA512 ef5f4e705def3b188ad2dd4be33dbb2c3f28d08855a1cff0aabcfd63fe22d1ba99e6cb7d10a43bde3bb5d30c2fd98dd2c9172d2e0a2cf877051b5117f0e7d262 DIST memchr-2.6.2.crate 94202 BLAKE2B f3c9a2fcb2274585ee8abbf4622ffc228b9170b18f8b6a407abb0b562e55fbda247a288ecb33e075003ef2cdcad33a1d5786709471be766d0e90dd7845757d3d SHA512 c7c77bc8c33a78cccdc3829334aa142522c6e7d53de2427df7173252ee6b728a2c9d44c097e00c8dc1cf885f982c9052bf1a25ed3f6dfcb51e56ca4d180bcee5 DIST memchr-2.7.4.crate 96670 BLAKE2B da38114beca670467c3e1fbf4e415af6f22d52e3223715d52e181babb89b872b46511563985bcc16d7ff4e82f812c6e83ad904b0fe2501b14445119dfa8240e6 SHA512 8d0e8b9c30208897d4b1b920f1bdcccd0c2b75d92a06abe4a1b2407938768abb6487d63de56c6a80419798fe69517210643dfaf11f5f5540185f0eccf220adb2 +DIST memchr-2.7.6.crate 97616 BLAKE2B 3429786e97f1aa078892e417c8ed8198ec727969517309049b842e44097e58038583508aa974e6246888c18e11f9d23863c1bb012b542c5685250fe34e250d7b SHA512 38843817334da88ad74ce679b4401cf948cf8138815f3acc5eb0d005da3aabceb2216e20887e79344396569a2fa136e3aa1f7f3251a00d07dd6934cee79f4fad DIST memoffset-0.6.5.crate 7686 BLAKE2B 9a797388702389076c426052c3d54dc62802d5db8bc5c9c83990429f2ffaec4fab4c7dd3f09cd0704d1ea555e87976563bb43408ba54b5e66ce7e406d4604009 SHA512 11bdd9185b99dfee8e659e051b09ee301c7142a372a8117864745a5085c015436d2efbb1478192886f09cbc562529e209d2e3325d94938a64bc75b1d91d2bf3f DIST memoffset-0.7.1.crate 8556 BLAKE2B 1ef270f1c8dba32e66cf47a1835f10c342024762c0e56953f16e82d575250028154054d4c42b1324c60f955a40fad3bbb1c5fced147c11c9a4ad62f6f0e948c3 SHA512 40ca3c4b1fb929bec75bfcde0135037f81a6c5aa80181bc7dd7bbcd9c0946288eea8d23fca95e296567ccb02155ed0f66c7c23644b5cb3e6d3932be9f9742157 DIST mime-0.3.17.crate 15712 BLAKE2B abb892b75b40657d356b6b53b9a45b2c822a05873453e919f2bbfeed9e5c06104f24db9cef2716f302198020870eaf96b2c62aff55cc11d8ca4f4f614d7c8e17 SHA512 e6d2ca92bb58fc747c1bb65a7f9023e5dbf4b94966003a72e4913bcaaeccdd6752725cdbd5081e0fd69d9e8f364d79664fcbe70061737d5c39e5b3e3a154a0d1 DIST minimal-lexical-0.2.1.crate 94841 BLAKE2B e6b8919b80d938d0b98d60d4f5f29ce43d77ebfcf8b18bde08909141915c6ef4f0d07a543538d4f3ba8527a9f55926d4a8e83473248469d087e80b274d701d61 SHA512 385fab51884bdcc7b0f2728a219ab164d0dc8efe42160b918f2c09f79ecf853fb12bda006d11e649f097bae1499dcd41ddf2a8784ee7d178cf2c28059e46078c DIST miniz_oxide-0.7.1.crate 55194 BLAKE2B 56afbe0c0b3eca98105ae2d507493f365353cce29a6b04910ff26bc75899400fdbd067756cbda7b3d86f047fb8f3d737de00043a4a7348a813cc43e45824e33f SHA512 5eb6ffe34a866403273ff0267ff7838aeb50722ca57a03d5a1d842a5f19a3b4af570b133a3b9d64d78eafe49e4b9732b92dd63fd9c6b0ce59b3295daf10f6a3c DIST miniz_oxide-0.7.4.crate 56119 BLAKE2B 68facfec9ff405bebe99f52bcf3aac6788f1b5eef313ca393e2a15e1158bf294003cbe31efea4c793e644e8ab4e00ef67d38f7d32849ab6f01a8e19d31c30221 SHA512 482bf02d7bfd25bd8abe5e5959132677202d8c5dc014b9b0b64fbdc204be1b8431867095c140a1183dd1ca59f6ba871a355422fbd148ce34d62960cad2b7a978 +DIST miniz_oxide-0.8.9.crate 67132 BLAKE2B 1a11c5aeef43ac93635942e0c4f17538150f8307fb280b0d66436e4b6697638f0b1bafbdebb377a5dba14a75f213024201e325747419623e5f7d57060bba4445 SHA512 3f6fd786c5fa5b4abafaf21244dd4830d26688d5b6975522bda595206517f354d92d13fb95235667cbc39c0275371c737164d9c7a58e32e09da86eed2f239242 DIST mio-0.8.11.crate 102983 BLAKE2B 913a8e0e4843b3b19cce3eeaaff0a0024eaf1bdb4784a710e54ee95b6631edbd763e37669ec7d269e45157907663dd2eb6c9279db850fa47ef4c1eee867ea24a SHA512 9a2806ea78b0637d0cf92448abcd50bc5d09bd80da0f37752c847bc98d014baae7a5cc4d929de98be6283c76d82ccab1f1467aa6ab583a4e782d97d5592b0bb1 DIST mio-1.0.3.crate 103703 BLAKE2B 0d2360e4ef45f37104208a31e9aa467d6db041dfeb97403a010a36e1e1427f51d97f8408948c75c0084e6c118f058267bfe87d36e7911cb37366f2b1ac6eb693 SHA512 2142edc7e9378fc3437110c85ba2cee9c9683e87034cd44275d2c389645979db53fbbc29fec304f1d8c8f0464ae17d2a5db1aa9215d696fa0282f5069700b1e2 +DIST mio-1.1.0.crate 105232 BLAKE2B 22c96a2ef27327c27176651d957ba9e8f6159406e5f83aa39b1fc81efde17a60b4d5e5802382b45c51594d1f3361da99b5433518c096f6edc650bbfb7843c7e7 SHA512 7fb0d6ecc9c7d5854c0da8c2d683012a86a427f752b47592cd392c44a7a06bf84360f559198d685e47ec937ae6517c0a279c362d6b47fef6d4ab6edbd858e944 DIST multimap-0.10.0.crate 14359 BLAKE2B 4e9b4481ce708ba6cf7560ddad3fb5b603e072ae514a9f4a18f5c77223fbfd33d0c504f8804389513c515766f94b4191e680bf7624096e9a78717ba33484ef90 SHA512 0d8a7d2010dd89f731cfffcf0f068d98b7b2e4ef64ce181e4cb3ae7d10c9a4866275065fc9d7669e1a26fa6e9780cdedf718e14287a550477810d9f786ad5db1 +DIST multimap-0.10.1.crate 15232 BLAKE2B 6bad6d81e1387bfc2dd9ac8e7aa0011474f6b69e2909854141e35367de0d30a0dd97000b96552bde482eb1c6451848ba5c78e34da37e00cf85d61f64dc6c4bef SHA512 ba2d121311fda8d2d0b78ceda629d0beed6e060552b4e0fdfd62060a46f8cc044778a01bf22ab920e8f5b8d5918bfa0226766f5a11734e952fd6fa05de93cea7 DIST multimap-0.8.3.crate 13518 BLAKE2B 7e00324be2944f3ca38bf02bfe37f47313aa501fc166ec417cd05f11059b14aa761b58f7a737792e2f9488ef5e7825fbb13cbb6ba2ce4935f4c39414fe069730 SHA512 8580982dde6624a0d181cfdf6cc2293c368762b548f32d196fb7a29fb698d1cb743bc2572ca284c6ecd107a632ea2a428fc998c05df164437f2cb470d24d23cd +DIST native-tls-0.2.14.crate 29385 BLAKE2B 4bb414bb54d24bb3b7fd297e2f0ad34b01f8ed0a0f4f4f4876cb5c0b3582c01dce0b6f78427f65c4be15698574db35ddf26999836085fb6e0ff57174909106d6 SHA512 fc801db02bc2c61056b83c609b0b97fcf919d67e83b62cfcfafde032f20848d653d8faba82c5376d7caf93601baf3a1fcc25bf2889a6d8aa4c5f51e45a3122f7 DIST ndk-0.6.0.crate 39828 BLAKE2B cf59da1e11fed905b245520c7fb00012c194379aad9a8d75e39e771e3df629824c17bc04121b4899bd7f13e9546cde3877593f0b4f3e66d6876f9ee6625285fb SHA512 62af40a702784a35bd3517131aa5c5fe22da81091e45a8c8639fa8f1f8b3fed117991db9518dcf55878cbd6222f696d09e0bfb28e161aa47d77b2825ad2e1fbb DIST ndk-0.8.0.crate 79770 BLAKE2B 82ad3258f730bc26f91cfe231b3bb811de466ef30244b963c7b78f215cb396a50528129773a986121069d058f5b1d79e7aa8a18f4217e371428520f95c934301 SHA512 bf666942469ebac77eb2ddffed6a276098ac291d459d4b544920fa6644e9fe71a41e556d7d46ae2c23b46865d2825b08d0e2eab3bc3dce2e6f9b2d5786f1d9ec +DIST ndk-0.9.0.crate 84865 BLAKE2B edb91aed693550117386583ed41bc5c2521a1622f5d6f994b28193c808ace18a336327e04d92d4f36fe3e64094b9aecb85dd58c5e90ab52d6bc2f6dc743cc2d6 SHA512 d6f7962406df285e9b96d622590f79fe00be854c9f1c91806a277d3ec1f58e59666cd96663ac543290f41a361dc3632cd91a3c39fa70f0903e760d1e415feefc DIST ndk-context-0.1.1.crate 2205 BLAKE2B 6c1013410459ee13357877654303a04c2ee674eae77911d8c35dc7ebf3df2e8632440c26273f994f90f083fe20b4923240e3b9eaa2ae90faccc7e2f0021b6e0a SHA512 3e15db351492b3f1935424a4c119d878f5d771d6ca0cb6161e4105b263178e96e41cdf1e927e5f3c81a281f55dee25929a9cee911eeb4ff307dcd31fc400398b DIST ndk-glue-0.6.2.crate 5227 BLAKE2B e1b10ef9a622d8a1fbedebc5bb81e7359fe099712e1f30e4253cab71e5cbcfc35d8b1afffa4e114cb3f17b95e1037f67b7853d1834fb90d8ddd51d4aeccfce91 SHA512 0e7e82eae7104ef8c4279c5d93938d4d6270a133255429ed3b4fa307096d363f4831569f45c403d32c1564d6daced04212ad65a45fcb4ca513fefb93728c8082 DIST ndk-macro-0.3.0.crate 4884 BLAKE2B 97f7cab83e5fcf16bd5d852327107f0f7964f5c3f7674b7764cb369ffc2554c4c550a2be57eb7253b9da26f7921c49735333497bb74a09672655ed8f76e2fbf9 SHA512 240f8b7ec5b72a450874dd6b9eefb2825714e4aa83074efe13a958313193d491e6b4547ce62d2f727afc552d9d8c009c9489a808da54d5967fb29da7eac22d3f DIST ndk-sys-0.3.0.crate 282815 BLAKE2B 29342ed697feb1a02cda4ed23108c090206fe67715214de0f03dc81b7b787a40302917af7fb8f45e4510d1d1cd43d369d938af4c14f7424fb229bf97a24cbdfe SHA512 9d85898d812be7c61c7bbf4ef7a6088fa427f4ba334d491a17e5d1e8cf0ef9e37fa277008dbb940d1127c385749ca2b4665521e677388f6b01a2243fce310485 DIST ndk-sys-0.5.0+25.2.9519653.crate 307233 BLAKE2B 884f73ab15acf81b238d0ef06b66942949222506ff0f6deeb009348ac8870b0a8e74b4015ceceb2bf0611609ec4acd0923c2724b1240f314d0b56a42213e0b44 SHA512 380a6c0124df4bc2a835465506c1837ced58f1174ddfd89891c1784ea27508023543dfd229a5440ec1e593461e0e96b07557da72eff4b90032deb8cdf9db9be5 +DIST ndk-sys-0.6.0+11769913.crate 329984 BLAKE2B a837bb5fc74dfe13f20f1923f1882257dd23b2d9eb57bf516696c391f48a2ad3a72be8062f7b957e2b25f00f729dc9f5da2b2c0942c43e7f2f3e844100281f11 SHA512 3f7a26aef2e220a5a98fa94e9770c0d865653b5c23331b8a6652819176be5d319d589050d4fb68a12ab3a4a87650aa5f30c7f50582fd097a411ab763f3359112 DIST nix-0.23.2.crate 242042 BLAKE2B b44292d87e9379debd1676952cde1175568cae88f64435cf2e347ae624ecbfd3bc08a9cd7de1c50b23a416754dff4b7cb51983fae06a66f7f16089cde94f440d SHA512 8617a5d99c9aa729f35b42b3797ea46e3c1779c234a836c7460cabdc7d4229b79c8772098b1b95f8b444351bcddd2729515a0433f68ea035087ef6a93033ce93 DIST nix-0.24.3.crate 266843 BLAKE2B 1eb1667a60d07c4541a0cb0cf0bed2c7c5256411028becdb229febd0f6215e8e176d3bf691f3bad2fc64841209bf364ff8345a3e92afb2bf8d3705fd734c8ef5 SHA512 6ecda3a14ce00002265e46a066b443cd3c092a306e25d9206b74ae31b8468fd5105b597ff1e7097588bbb6ef5e52fa48ebad908303b61db53361b525f44c13ad DIST nix-0.26.4.crate 279099 BLAKE2B 41debf1f21427ad6c25c6cd26b7867feb8ba46366028c4b74073307e902e526543f536fc0a66db2cdc5a52fbbf9166a6a4843aba57e5e5caada3d914286ddd60 SHA512 cc68ff8e3e8ea8635c6fd4c0a866cf42121aa3e25165666ef3b97b5b2c1d9273cba6f689e80eb812b55b5ee513390924a926d95fce45de0a74b98764dd1fa27d @@ -366,6 +484,7 @@ DIST num-0.4.1.crate 9522 BLAKE2B a7235566f657ea9dd3c15d4cf5ce85ac94f9f0e15ef5f4 DIST num-bigint-0.4.4.crate 99369 BLAKE2B 09a44754e3a3d4f949b3714d96ddd7f3915164d611036675e3df421d6c0863e368eb0180978a4ec27fbfff529b4999d2593e411903516670c24c08fbed6a79de SHA512 0dcef3344a933509fdfe87d6adb0bb1bf67af3c692ccaeec5663a8f18ad0a251199ef9c7a24c25b95d1b255b413947e70f0a205669d549b13e54b6f4864ab3b5 DIST num-bigint-0.4.6.crate 102801 BLAKE2B 0460e7dfdbd44b6c68fc8ead6bff4353e549127158dab8bb5d217ee33104fe9ad5f58b63a01d56fffa8d7c4df1a87dcf5b536e436a0ef98dc4418a4690c4cc15 SHA512 19d14a7755de2b559026547d9e3e1775e636781bdfdd418f2e1d962c51411a0973a46d84d0356e30c0f708a7c7b2097926611960043f71391919cab1aeb6aa04 DIST num-bigint-dig-0.8.4.crate 123825 BLAKE2B 9710266116ea15d0e56792b7c8e217931765dcf2377bc05f23bd386625087eb6a7d7aca7b8f0beeb78ace9f280895565a6de3b14ffda7721e35c741ff64b71c0 SHA512 88ea682c5aabc61c0cab9234e31a2dccdb5458d3bc018e1f9ccbbf0a9f09ed0053341e93bc53f65b5bee55bafe71d50bbcd48fd085ac723ef4662e15664925b8 +DIST num-bigint-dig-0.8.6.crate 126196 BLAKE2B 6d278bde470640c5e88c361899fc5f1e30d2fc261051f930697f1c4504595d178834ce11ac026cf996f8df6262ffc9bb27d3ceb780e87c5de800cb57c22cad82 SHA512 f028bead9aa4da4ad0d6e10ad339a629c7cfbec710ca6feecb4beb59ab97b7997b043533f57ed85b339bc899af7f1fb1ac56f4bef68cbb5afa149fa6b102aedf DIST num-complex-0.4.4.crate 29564 BLAKE2B 8ae65e8f2d87de96ec0a3d0e6d580584aff8cfbd0ebe56272dcf7cc5eea1b545fb9d597cbe4b1e25562b99a217a03ceef60e6cbda47c1e8cbd29b38d16cbe428 SHA512 632f9486df426d9254d2b6484c560b31e4ac0270de85878b9c4d14339a05ab318a90019f0724d2fac4d8496b03680650f899cedb1741c58eb7536cf3732db600 DIST num-conv-0.1.0.crate 7444 BLAKE2B 4f5c4695006aa3ae77aaf5c55999a07d8ddfab294584fe10d73eb6abbb3f551846646156581599f966a28c74d80d3ac4373c49d2099991f7ed9edb56d36feec4 SHA512 7884c0c6599c66e40b9a79435e1bbcec60aa7e68b59686922dfab19ccbcac6a6e54f208cfb3d5a8a12e86e4dd67e09977d60b69ef6940e308a28256733f36100 DIST num-derive-0.3.3.crate 14545 BLAKE2B 3af73d35ced61f8e4fa2f2bef695f72a3cf1f1a67c77982d3518d9383331f34c1222dd7d72802cec22baa108ae08a87805a11942132c565ab8439c4983e99871 SHA512 e0f4d06fff26c2d2b140ff5ec1ba655a46c8d8fda484f03a8ad4910e8cf1392f0130d5c0bfbbe3bfb95da1f93e964f73364de6551fddd81e6fc27bfa35c15053 @@ -375,18 +494,31 @@ DIST num-integer-0.1.46.crate 22331 BLAKE2B d88c9f84e5d803a3aa8f44dfc1bd6d9b5e33 DIST num-iter-0.1.43.crate 10655 BLAKE2B 41ee6d80f38f0767e134835ac84dacee8b50395b29c3e620b74cf4a843cfedfa71dc690e787b291a2b08750cd8386f1dad768e1b506ce088df33cf9e51b90a8e SHA512 97ac20f16d4518c8cbe944e5c80089fa6bb75d4632fb9f3c9d9891aaddb0e0f2209f6e854317f3d3b41bfb330c9d3ed830f3797f0120d4b1863b1d6fa3b9c07b DIST num-iter-0.1.45.crate 10320 BLAKE2B 9f2a60a819e31a6e7e048ae86f7fa029015a73888348676e54ec6fdfe76abe94b632a49a82b53b86488ea5af1031f677b0eed8ba7c5e843ce804c6d6af123622 SHA512 6195c7bd5f904e9f0aeee3ce17b42c0383d053f9d37954a9ce3b4ff0a048afa121c9a37aa9c74b9ace7353d7fd9f57a7d04c7a18e1456fc2c4c298d8ecfd0172 DIST num-rational-0.4.1.crate 27889 BLAKE2B c6db5b2165eb341268cc8b81df44caf25a18242d0ff1cc0959444ed9a51ba9985c1238d6d79433c3927267ceb181da6d491bf282560db6bafd7768b79ec65842 SHA512 a7547ca663543e9da9e18dd079762cde371b85d55874a54d6b343ba775a9373392c85cebad511c53b5af5db298bd5d57ccef6161c1c28587a6c9fa2c5962a0bd +DIST num-rational-0.4.2.crate 28159 BLAKE2B 653e05b9ea621a92dbac090339d9e0ae0b3f952b332e3a54f27ba8f5209a4e9957b014ef18355555cea0caa63432de0ec0be7ea6798389aae46402f789432554 SHA512 0999130db45e5d877d1e2232c8900cc633bd39e749186b2ef4ac4343b958dcc80edcc2247df5f229546dcb3537fd45984a7a459a9bd8f62aee69a0239fce0b62 DIST num-traits-0.2.16.crate 50130 BLAKE2B 1101d28cb4dce477657684a068792b94c7008a965e655edbabfeff51cbe6f008450dc6d7e4fc5dc4fe9c3ee8623ed77a7bde83ce2f68e75d618295fe6cebe0a8 SHA512 2ef65e2f6275b1000f611cc4d019b2f4846a8964b54d9b96462da10e3ac9edbf3d1de82e40094c76f7f5205740361b0eb0ced414bcddbaba5955144f728c6f94 DIST num-traits-0.2.19.crate 51631 BLAKE2B 78637360cbf32d172510a62bd9442708af9730c0296a2bb4ebd200c08facd49bc31bf8ddd58967e0df7273a938832b620265d9f8f4d26ad16049bf6dac1cb4e5 SHA512 180018a5eceb45085e4e8d103ff21bb4d5079cea874c42a0ad4c76c99d275d434bbc1cc289f0cdec172866daa89dbfe0871410b2cc3407233fe1129786905956 DIST num_cpus-1.16.0.crate 15713 BLAKE2B 11b432fc7c7496d48918f09ed0954e0f1d0845596301266321293b374392898853fb7c313a0b0fd9d22d9dbfe3ccc5cc1e38f38407c89b2e5906eb76caa6ad68 SHA512 a75863afc4a563e63c64d06471c7921615355d98011ea9497b1f1a7dac2bdfc876509136018e8062ac38575ccf476a196d1fd9231e09e90017333bbf2df4615d DIST num_enum-0.5.11.crate 16772 BLAKE2B 4f032e0605730dbd72d2e7d6e06085211e885f66ff43193b32c7860905fb85070030371544ad1ce0f926e93ce13a1aad6f70f4c300abeed447373f40a46d02b3 SHA512 962e0e05e7c0eeb8e7520a699066f2b0af2ad0d5d8b4ff174c93aecb609051a1d45992c0cb6a62cbea0ed391d716656047966d5bf4c3467adacd2c5550f33578 DIST num_enum-0.7.3.crate 18603 BLAKE2B ae7644ae0697518e538a38e33fc1658057641b719437351a5cd1d5add8ce2b03b834097a4b2ddcadb27937c266bf758894aab5e0949fe82b63150b8332aeae84 SHA512 8b8fc32da39d1c89210fda38098425f21cc384b6a38841f3b04264dbb24ba3c46344835be6e70b794c18365f86796a8af584085dab41bfa677136b8c9c9b6197 +DIST num_enum-0.7.5.crate 21570 BLAKE2B fd291db8ebbfec7d57fc3269e9305703a3edb8815c0a5617710ef608c574a6cd44f255cd506bd407ad4d929757a62c8f66e29e2e16f5159243d76178c4cd15ba SHA512 ec108a291341c0a380be9cfda841ebcc18241378c5c732700fa613a07bccf93b243e87996d5d858a0a7cab4948b0431dcad74c5d4466f65eddd210470636e1af DIST num_enum_derive-0.5.11.crate 15552 BLAKE2B 35ea9ca8b1a4e7b40b7c9193f57a466d4436945a8ca1e11e40fafaefff8de6229957594db72e6632dfb49382c52cddac3c0198e9ea063299502ead3b6d958900 SHA512 c2f89d0642c41faf6baf6b718b52b8b09cd17b6753c0098649eb8333cb253c8a166e1f1ebf1be99039e1d7d9c50541a8741645d630df8285905ebff7b26759af DIST num_enum_derive-0.7.3.crate 17092 BLAKE2B 79b4e4f1def44702347a2291e7c2b3f97a902b4768031795d9fea53c624f31acce9f5ee68316d08af149681afd8374e39b596c3d63e3547445cfcd28d3b5314e SHA512 d670d60cf9a547232190d663d92a288b06953ccc5989c2fd9d4101db35be9e3e7386c42878c15bd820817aa703ba06af3a9641898f4a204fe9d7fbc32c3bd786 +DIST num_enum_derive-0.7.5.crate 18760 BLAKE2B 00f7b70aaacb058529980bcaeefcf34014cbc4a99beaa0dba450353b839eb1b864ded0d883d6e115f7004b1a0256baa5485e09e463d82a349052e81faed129d5 SHA512 7d05b7f1352f3350de5fe75250de974cb8dcf87665e743fc15f0633fec864613f47979a4a9ed08b4a81cc94fb25f088e021bf4d0143387e66dde907ad399cee6 DIST num_threads-0.1.6.crate 7334 BLAKE2B 416efdf395b0299b6b01e1508823afdda08cf67ca54e1d644fc5accbb0490945a492a34bc5ba70c3e838e6405d17ddce164ef87468bd9da27097de8994ad9577 SHA512 b2d9897e29e59353379b6372a629fc7f9afc89f777b4410eaeac7b4729527948a8dbecb175f056899f9076693ef855cc0d40e725cc54f28af588fbac5f7ce3b6 DIST num_threads-0.1.7.crate 7455 BLAKE2B 282514d1c6ebe67ab2c30f91efd5b6c8880baa078265e22d5d7200eca4f96702aad8b537ba772e5d4e680a6e90fa6919fecfcf37a060668b2a618bb01bbabf2a SHA512 60eecfe49c1afca8efa320c5f4d0cd794f6adf8924193682c903307f484ca0a1ddb56102a772232aca040f29651bbe26ddc1c4939e1f030e229d179837e06bda DIST oauth2-4.4.2.crate 74489 BLAKE2B de597144878fa6e56b349163f01739aac50164ce454dddaf72370423d7d08a1f9d2ee20dd0f158c3ce00bf7dd800bbf91dafec9d7cf35c74cbe9e8bc56692751 SHA512 bf00eb3ab5f5fee1774d45646467c4622b2b032a7c51dc6eb09c45ca58d39888fd16dcc405d847b1ec139b2dce4758f3a3c330ccc727299ccaaf3b1700fd57fc +DIST oauth2-5.0.0.crate 91364 BLAKE2B 9c73ab1b2f8f523d36282f54b90c5b939e22b1d5dfb4e65c3012203295c7460f555b1aad350108f2877ef196549c1d16303d64ca519db6cdbc727165085cc778 SHA512 86d84f03438b068ebd57340be37be837ffdb8b79387f614c0b5969b97ae0b8061100c8e4f364010b5d6a79911b5f30c057923383a793836702df11d8d09d4a64 +DIST objc2-0.6.3.crate 272490 BLAKE2B b0eb4f2dc6d9426a781920543c6f2a4f942e9cdaf4bf86f5b8ccbdf4d9a2f65954933af26743996057176e493a4c5a6e03de77bf89fcaaf5b19b694fb5e1662c SHA512 6b2605d00d00352cdd5a547bb090c186b2c3c6d557d9fa56b12a6b46d9460d45ee4643b86ad7e7f8649153acf2c05baf727093844157f27225c69d51fda7f047 +DIST objc2-audio-toolbox-0.3.2.crate 186265 BLAKE2B 15e438d0bd9f93faf89f69441e611cf9697d6f8e8b86e761097e342d9069cc31fbf7adcaad7fea0141dd002a140c9990b1c9dc0404c416c868ba7de1864f76ba SHA512 911fabe4db84c6887c8c4d1ba4dc6abef785f73aebc16b063bb468f8d5e62382ed043a901a7b666f30576308801648ee97a62142080dbf6b29813b5f6f9d2efc +DIST objc2-core-audio-0.3.2.crate 32748 BLAKE2B bdce0db1ccca40c8e30685ae28f90493f05038270646ae878c5072230424e42f89b12ba3ce6a96aac064cc8568662b77108bc1c8be3ef4181b08fdda6e57ded6 SHA512 0f9286122d1fadec18026a27e7f475ba1e39531b2a2b3665089f50815bde02d8b05fd61462ded60d55689c3c87d46f5ec533987d76c9c60b4c7271a7a2c76fe8 +DIST objc2-core-audio-types-0.3.2.crate 20525 BLAKE2B 1cdfe96191d3a1fdfd3dcd122a3a9dddc0e3295a27680d04e703b7b32d788eff03adf16c16fb4483654d97ea6fa8a19b2144acd93253649afed6aaae200dc999 SHA512 81edf4cdebbc2fa327d553b696aac69e3b0090d162a0ee24921afaf87c01ae3f2da70549dad3e275784a3b6c424d8f55268664cf5f37959b88a86fd8215e86bf +DIST objc2-core-foundation-0.3.2.crate 180804 BLAKE2B aa6fc89d58cc9d465e2f439406a5f7c1e76996672306dd70a4c5faf535c75938bd4d1da96b5c99f2d99550687524824b60076130dd4d9dec974ba77980a374d1 SHA512 b1a5f5201bf0b3f6e93bbb0b71d285d6c162e644b748504f58bc05c92299848bcc785c1159072959129bb575978e4091cb937203e8e90a4ebe1519b7b8b6e402 +DIST objc2-encode-4.1.0.crate 21004 BLAKE2B 6f3b11c96ea4941bd24f2949b8fef5c3bdd91037eb0a0d9af88a0798001e4164e252817fdad0ba7e150f1b2e0c9d4cc0fb976dc01def7ac19d308c989a92f714 SHA512 47a23fca26df26e1efa1045a9778322dc0b2cd232acc2be750a98a1ddaa7f264c39848b14a5d9821573495601dded2893a4bcbc36a0e21ae442b7c9de5c12303 +DIST objc2-foundation-0.3.2.crate 345384 BLAKE2B 61f7af188ac7b3317f3c16fccb22cf0785037286b5f79fdbb10386efbde6b36c763496654e5e2364dece8b418ef6f4c5a3dbd574483141c048821dea5b04b376 SHA512 cc08bf8c418414a4358642c01a118cf8c790bd542ae72ce841a1378def095377a101a6f7d5f5645bb25125791998c5c8a55bb1500590724e3ad2649a1f5b8221 +DIST objc2-io-kit-0.3.2.crate 262569 BLAKE2B 26570d033525bac468dd6c72492a37220dccc6478cf8c9d6ed7bd15e6d3722a85195803b488e1e04a70d571aea70c70fa8bfa1f39fe36e8f5a2e97c4f91adec4 SHA512 deee85a5502aa2780bf5f5ba8eb069af8013f314b01a20e169ca13f0787c9ae60c22da3b0c673da6efb5a0350dae08059c309a66af35a9a9d24c4a7a746adede DIST object-0.32.0.crate 275335 BLAKE2B 5d048c7a6df2825af87f3f0d255ac6473753a66df0de2c490a58b5657663b58916521651a4e841e080e979660d84ae50ef9a345b9e3fe7a0f9e25f7fbdb76550 SHA512 0bf081fce405b7075bfa25d8020b13d1346836396ceb48004e6de9ade9f4e3de6d0c57d1f59634196b77d7787104ab8f3f38b888868a0f5a650ca78d3ae25b3b DIST object-0.32.2.crate 286994 BLAKE2B b9085200fe0107ab0f8ddd5c5ac82bc681dc6266c6503e4a803ae4dbdec775ae84ca4a736754b770d858ebb058342af45d485d4c9a41f57966ca1466de40a4c5 SHA512 5d03d998f06dc592c3be141f7163bd72a0e73396f95d22ef1e0ffbfc66489bf727a6f6fb813a32739609b619b8e34a471974b2231dcfa23df8bff52007c25a96 +DIST object-0.37.3.crate 344032 BLAKE2B 7cef4fb0adfe2c0ce56705404b1e1b2b22afbd741cdc16bb5a2c76c9c2df03eca801b0cbd9077a4ad153b97c37d20637608018f532918e82d1f27c75f603dbac SHA512 e6a72ff6ed5066e0b6fd4b5c37dc0c3d334052f3d123fa0aea2dfa45c8ba5700fd6a66f4f76efbd8823f0935c6d1bf9cb3aadcb8eec1370b0126511606038aa8 DIST oboe-0.4.6.crate 24067 BLAKE2B a3e1c3ba6534fdc2159ead7a301c6b54718b19ce2e3357ce3bcb58b31c1ee3b86b427f4470564b2e8a3e8b0120b33c25ac069bca922dfdd0a1478ece5b398f40 SHA512 bfd792bb8cf2254030e2750b09a87da70defc4fc65882d94ca70469b175e04175787bd89707cd4dee876dba127b8f3b8ad9c5eee32ef5ff0cad49b046b29a793 DIST oboe-0.6.1.crate 24588 BLAKE2B caaac8795247ee9c14f02e4c572605f590930686487d7f5f3195b4f1adaa837a024d8fe2043f90b97af7832f9b8624750dbe7def8111536a2cf1f154ac6b43ae SHA512 62b7573b685ff2e64d28337c3c08c556dc6355a11ad31cfb2bf3423ef1eb6a73ff38201dd5c116580b0a540b3f76dbd4a5347758ff40accc1bbd50a893cfdbf7 DIST oboe-sys-0.4.5.crate 140656 BLAKE2B 26fdb4ea66dbf2f74ccf38beb280262715642ef22b87076d16f0b8e7f7b8d284714d8c7207567e51cbc421d22224b664f0b1051a0eed3c78c16d825ccc8a1d1e SHA512 b8e31b5cfcba10d43b9e373793427341175b7e84f8805fd18a8be387bae407801a0f196d0910103175c23e41b193c4eded2a4597b958128c29e401a27d9b4474 @@ -394,25 +526,36 @@ DIST oboe-sys-0.6.1.crate 169091 BLAKE2B bd2ff90400c1a2602cdce23ae7a85528a491352 DIST ogg-0.8.0.crate 27128 BLAKE2B 11b8d47fd7c34bafe0b5261bc9be101599bb19e4ba7d919fddc4aba5a87cb1c642accffbf2e0f5e134a7a45b1d9e1dbf22e69e8aecaa93d69bf3bce364dd7356 SHA512 d5ea03e00ecade8713a8bf31e34bc45cba94b812c26dd46b579d85d61ff502ba501626b64d3cfa066a47343819f65d27c478372439b758cb7ab31ebce81f48b1 DIST once_cell-1.18.0.crate 32969 BLAKE2B a08d5beee50a7add28bd9e50b18709e7b34574f0f55f80909d5efb7ac5917e5f30bdcf3fb43ddd0a4f420a427390c7ffe1cc1c7191a3a1d939bc6e3139e6eef7 SHA512 9328968afdf3535b2d9e0113d75afa725259d76994ef2e1948ad7efa4ec8a65bac7cfdc31b749d5cd55ad4e28d2e28ac57b871e3067b89182453c7e2413a13b8 DIST once_cell-1.21.0.crate 33959 BLAKE2B 5913de9de0740a96228c34a9186e95dd3c5baa95e6cc3ad62893fbf6b7ef8501b7277f1158299128a4c5bd76fc345409ffeec6fbb5792dc61857de70dd992378 SHA512 a48bff528b524bce41a709998327d2a03ca5ba39b95e43b406d825a9eefd771e7f3d132d26741db6ed565648e92789da8b6c46bcc3adc5a83da8710c66c80612 +DIST once_cell-1.21.3.crate 34534 BLAKE2B 3578aaef305cad2fdffdc40c392775a3540bfab3f3aeafd22466d9507bf8346b9fcc200929d48525b051070c0aaa423ecbcaa12868b34dca007991effb224166 SHA512 32a87506c6f4598f3ca2c88556014ef2093d5db9a08602335e847caa537a866492fa74c894e7e1da2e4289a1d3dbffcb90a9e37a4a1453203832f434b8206990 +DIST once_cell_polyfill-1.70.2.crate 7448 BLAKE2B 5a90f8eeff25a555987b84b9800f9e0b2aa94fb4827f76678ef45d344c4baeae5a079a288fd02a570d0f0099e9b2842d32dd206dbd609212496e77ede47a4d21 SHA512 9e0d07bcd40e4a5c271646d6fce71677acbfa4439b4e818bb4df823eb31eff976ba78239e3a7e0ad21e80ea8d0d3af3e74a7d0a0a55b308d4c777b9b5e1ef8ad DIST opaque-debug-0.3.0.crate 5767 BLAKE2B fb5d32c876a271b41582563f5d6978d75bc1cba2cc34167f491bc198e6eded45b9dea65effa3aa972ede20978808b37ad1aadb6837f926fa3378ffd382076d41 SHA512 9909b06668a4f97b4d0e916de3e1d0a922a5a0b911a7ce190de786f62ceaccd382cbd0dbe01ab0f15e5472c10848482da2307a6d897928b6b7d5365bc0321cae +DIST open-5.3.3.crate 27716 BLAKE2B 2a02d775e3bc8fe782adb0dda2d7d4aa09828ec6108c060a9d8e1dfb8f939109e573d009b983e7327b18657131ec72493534e7e8a6da0be3cc128ef019fa828b SHA512 45e12b606ac1a3475c9e04bdb8ba31900914a04187b5a4ba61e5446ca86484c1e4bdcf70c3c966957e242a3ea2707467eaabe2dbc4849c5ce687ff5a98e8197c +DIST openssl-0.10.75.crate 288136 BLAKE2B eb264f6a14a08752293742aba3af16059b6d1230e99990cc7909908f6aaffc1872864c13c4003a394176f5975c4990df1a283b7efa8418fd18db2259a7c7b4ee SHA512 3af555f306fbd214237ecde8c0813eb6714a187e9bc2f782f61b9e63868c7ffa88271c7b91ce5eb9d2528bb912fd58d716212a4e7c8d797a59c65a7d56f1c5df +DIST openssl-macros-0.1.1.crate 5601 BLAKE2B 69dc1c1f3b7bc4f934cae0dce64c3efa501162e5279efd6af3b74f7a7716c04b6996b306b310f1c045cfa2eff2895314a47ecbb020a817e461c6d77d0bc11e92 SHA512 57e75c84f78fb83f884eeaedb0dd135ecb40192dad2facd908e6a575c9b65b38a2c93bca4630e09ea5a82c77d8bc8364cb2f5778cbfe9d8f484cafe3346b883c DIST openssl-probe-0.1.6.crate 8128 BLAKE2B 912371bbd0e105e7281eaa1462d68c6674ae11226f72a9e5c2808be12e975e39a257b5424cafdc527fac9d2313ed928f34ecf407cddbfb179283137e0817631d SHA512 6c2f02a9d42caf578fbd2a40277ad346bef32d191f27564d04a83477d62d6ad1f44945f40234e9425503e3f701a9e0ec8735ade52641170ff57fa6732666ac69 +DIST openssl-sys-0.9.111.crate 80871 BLAKE2B 0fa159af5137cfe2ec94645d99ceb8908d260c50e1b7b766f54ffae2df0dc74451a92e2941076750b8e48834278392e30df65ed91b1f07ddcf0de9932a5836d0 SHA512 605c9a69f3a67470a8c35c05d2cbc5c2f3ed98e6ffb102a3b3032272ad8dcab91ea4e35c01dca73d214d4f0e58221632aced40203602638b8820763a4ad6ae99 DIST option-ext-0.2.0.crate 7345 BLAKE2B cbfc03e7c960fe3023512a4ad816d657b4f54f8ecbde9f9c4df4c5fee3b36b68ab463c67ad650778279e01c7ffaa63a0dacbd0c080c8c3d15b1611de0e71f92d SHA512 f8539f97b01af97e0b80fc96556002251befa60f8ddd19613311e62f9dc9834d71c22f5d8e7c53c4925046e38cdcf834c3c28042a4da862d6f6a21ddff8d8e56 DIST ordered-stream-0.2.0.crate 19077 BLAKE2B 581285d32136bb9c2134f405c5a2d67c952a36eb3613912be029f2826b847919188e1b479506b46f20e0b63d371f476b99d9e7e1ee8d47ddef7b4f48451b0e3e SHA512 99976f90637f0daedeae05d4270d33bc03fad1c06a85bcf2cd7140b149f76c7560d5e60becf05a633a62dc82f7f65900eb8f510c62aea4e630b78c45dc76d83e DIST owo-colors-3.5.0.crate 30310 BLAKE2B 6fa9d00cd72d149748e5280360e1f0b0ad8c78c5678dde6e72daeb7975a182b4d06d835cba1ac307428e0e638456cf219b8d979c24649623bcb7403095cadccc SHA512 1718f03d9f3296ffe3145161e038ebdb8dc40b69c0e2cb80a51866b519cf857b6573aedb7704895401e10cea11ca422a384c3594b8762be29eaa90908e24f7aa +DIST owo-colors-4.2.3.crate 38315 BLAKE2B b19d40fa0f9e929bd30233f990342fb5513ed1f73d8b5b99984e47ed0189470ef21ca0e8819249c5259664575cfce167d3eeb63dcaa077658f85b65c6f1c219e SHA512 f3a9fe83a61dfbac527daa7c0667ab8e2809201aa9216e4bbd20789e45a888ed8e359994a4bc764fee72d375acf1c11d00e18d3974b74fd44f2a873be7c03c39 DIST parking-2.1.0.crate 9491 BLAKE2B c65653dbb00796d86bd6540e4d501f0a0e1ebc255c0fe5b5c96fc67ecfd6fdda5b3bd267dac31811ebe334603fc1a26622ea41dbe39621ce12e24e151ca4ebaa SHA512 2cf5741c137df3c7bcbc20208ccd9d1aa580ae25917766db1725a13b692ae7c6fcd212bd572cd7c00b7ed09f3f88ee303e8ecedf84b393c22b02239c3571baa4 DIST parking_lot-0.11.2.crate 39869 BLAKE2B 67c555e87b68f5763a7790563fd8d542e126bcb77f91267f3b76c51fd73060a2c32dcb91f9d0db7ea772e555d91576c8d7ff48053a9c35fbd3b749d2459a660c SHA512 526b176363dffa59501c18324bb723a3846ef5b0ff9bf1d890e40ad10e7023284f7c8012eda87520eaa94515ee828d9ef52692a9ed590a55e176383d6d472f9e DIST parking_lot-0.12.1.crate 40967 BLAKE2B 940a112a066e3cbd15e2f6df89bfff37e4ece2194118618a96fa14871813c91798f93181ab0f768d3e1f3d60805508f216724013afb7e3da95678d0d951a42d4 SHA512 07327d3b737a913508dffb66023766348ce7f9d555c224a099cabb05baefd16a28e15fec638e3a148a5169dbd980c4541b0f8820ae9d06dfe0704482838fbd5c DIST parking_lot-0.12.3.crate 41860 BLAKE2B d1899a1132035aaea3a784290cf4951ea3b36b2018d407e27d333b2a2ce3820e040d635009c44cb6e58ad07cec6565c0347af6f6fb02954eac2d4c348bb036f0 SHA512 368c17203fb5b9e4ecfd4857e3b1ab96b86da3770b8f21be392818c845952f72dde1072a10265760a62aa8a1dd65332bfd585667444e5fbb9dbe3280b5862703 +DIST parking_lot-0.12.5.crate 46735 BLAKE2B 36d82b682f7cd0a2c308fbc672f0c7023a3b6ba6ff0f9de75067bb26227d2ca460a09ba37a0a5b3867ed788d72a523a5900b99241bc30a67606481aaec30536c SHA512 432639d4a14acfa20127f03741e1101fa591fc63048b0b0369b44ad269d3dcb6fbab7947eb9995c7948f6fba90245abf82154a70df2b7a99aa7365b0b88666ca DIST parking_lot_core-0.8.6.crate 32567 BLAKE2B 9943244f813879ab85eae0b9a6bd8f8f0070fe190bc43148a832b217ad546bc97e58707a3987072965a79ae8bc2fa839aebac272f2de00993b8ac1ca0c5fc5ef SHA512 906241f8e2d71784d572fb78978c9550b19af9c4e32fe3b2da751287806d0faeba61f5bd36f7aab026970b2bffaaa1f62ddc10c64dc348eae61bf7b51297ef80 DIST parking_lot_core-0.9.10.crate 32406 BLAKE2B 25339d028579eb45a957ae5fdbac00288b1472d784c0aa7fa2953fcf9279c750d243ce69744993ee8cbe6899633e71e0a54ffc11e39247755685107f2f8dea54 SHA512 4f30fb60ded274d3154ffb00f6f50ac284b6fb97daebc1a2ac897ce97fa8e2ec6ff30cbdadf3b7419617a410fa7525f30ef5e580334e07d4420f4c0200a57389 +DIST parking_lot_core-0.9.12.crate 34110 BLAKE2B 4c1b3fe163c843c05effee9cd0a0461e39875040298b8a8b880c05a7db038c55ed84d1e4534417fa0e7a0395e06200d909fc16031514e3ba0ec03f011a86598e SHA512 6ce29df4aa9eb0ccfe9020b066832f2ba27afe41a48792d935d0051a595367f71d50f6862b921d91312a1ea80f087a416388d4b29a11de17373483e529f12d8d DIST parking_lot_core-0.9.8.crate 32383 BLAKE2B 2f9666872894d1c85895437d1353f9e15be2bc8d004ffc8f0e5be95e9dd4b274797db3752eba1c0b5b6071c1b8a71e4857cae0b2aff1afdaa39e92e70be2e6fd SHA512 8d6dfdf661b0f7d0774cb9f61121f2daefd182ac8a2a0d24eab451febfbe1a664c815c163d34a7f3d15a54915a8e22e6c6cd10e89cb7d7598d48d81ad6a3c256 DIST paste-1.0.15.crate 18374 BLAKE2B 69ee7def55e658a9aa72405bad62325e8d6021a4989fbf11c88d1bf05fbac520f7b04d467bc3c6eb45043a41119f65aceecc4a6a1418a9192d73f33134545062 SHA512 5026d3ec7141ec4e2517a0b1283912d0801e9356f77b703d954b379439b8d85e3886d42fb28f7835edaeeac465582da14233564fb010c71425a59c9e1cbd46b4 +DIST pathdiff-0.2.3.crate 7495 BLAKE2B 4fd2dc1beb3385b86603404a344d992ec8454addc580384df4004df1e83bc326283081f591b8b1d87d99a4c9f08a3a68159776c0c57a64f7299c1845961ccf73 SHA512 54938b311d4eeb49d1d7418d2ab7ffd19bd308c36419cf3ad3ae58785b971fbb2fd2d8f5907e0c47be7bf74ded98c62deeb90f509e6cb0edc6d3c1a69dce3bf7 DIST pbkdf2-0.12.2.crate 13906 BLAKE2B 062731ec8623719543e497dbfc23b909c8cc62a521ba927f5cb628290c1b3898a0b6ca7677d733b2eb0c563d7af4018981f4ae533b5b3a23c312ce98119eae6c SHA512 5360a661db8ef11586badfa2623dc409e34f3e2f79254cebcb5fb68bfb20c3be47def7bbb16f7779facb42a92bb789cf0e71947d1c4c6f5b1ecb8d358f6b41ef DIST pbkdf2-0.8.0.crate 12328 BLAKE2B 0ed3109330ba0b7b2cc236d3277a001ecf92ae1ba6cadf64f95a51e2e7568c7baf385bb15c369ee04f381aecf3ce87884e1e553b2e555089ad1826f0f459ac7b SHA512 a36e17e8c09f4bee22784fd357bed80c3895dadecc8bd106722cad12cdcef0aad954c821303f3f4bff4db01d8737bf6343ba6bfe6dd99fed87b7eb6b46f60701 DIST peeking_take_while-0.1.2.crate 6697 BLAKE2B 31571604d00872900abcb677a483da93654de523bbdb0331c326dc9a3e531f246e571bebcb983e79dc46e33ed6dd32b978be509841ec0d9f1e7209c06289c22a SHA512 7bf8721987c3e2e1986683dd897746592a909382f02b840b777effec7d8b0a864c1a83b03c73d555e359f22c423168a54b75448a7e7b996b739527ce8c88b721 DIST pem-rfc7468-0.7.0.crate 24159 BLAKE2B 478d355dd970b9705ebcf44d74d61ae0694db6de16b2018548fda88546f53e35b965ff72d939def399a49fe97d3c8317a10385ace94b3d552797ec64ace1eb8f SHA512 f47d3b6c7c8bf4547916acc2a3d6671f6c1308e74641419c8f1df810d8bd940aba8f94d361e4cbef3eae3b7f11587cd3996a11be3be41d19111abfcde7a9272a DIST percent-encoding-2.3.0.crate 10196 BLAKE2B 155bb1aaf0db4d22179bbe24b2d312f3d507876436e8ce76dfb59775282c1136a6c2bf5672f4b6bc274e4535acc9e50497c3e20b77aa2490512755c9cc9e6c41 SHA512 54ba129b0f3b43627707be994a281cdb69d5a7bdbc91dfeaa0226cf2834adeff7d2597dca5d11dd48b5731e831acf1284497b251abfebc0618761f98fe3c01cd DIST percent-encoding-2.3.1.crate 10235 BLAKE2B cf8e2fd7b359a05b7bdaf731f9ae84c7fe6f468a53482eb2db7f93dfdaab64ac812b3664899db260055a93449462e6d219c695942fc5b030517b197b4df9b95f SHA512 5951ea8315e52cf3acfbaa023cb9e13a136b114c54a7da0bd44619ae24cd2159d4a96469d7572a2fdabd94e19513a033387117d7ca81d0eb409fb383e4acda44 +DIST percent-encoding-2.3.2.crate 11583 BLAKE2B 58925243b23a6a1decc3d92c4ce17d06af5206844ad283b49e69e523ac0db2c36c3f4407af4104ab92c029c2581c228bdf416a054a2531191a9e912448ba4408 SHA512 495b4aac88a7a46420811671d6bd82817e4eb2fe51d5068d11c5b50d0d927895d54c855cb07d4f4ad5a2d42b22f9419ad0183c14781dbfa240804fd49761035a DIST petgraph-0.6.4.crate 185895 BLAKE2B 9ddfb2796c461d2820db8227753113b02024e5dcb694a0bb2826bc1f375f028d8b98a3bd67555485db7fab88eb86043f5b768585dbe0c60703cc655976030a2c SHA512 b5a21572526387af3151dd4f864bd95c94f65eaf0612d96f99926faf646214df205bcc652b98d3b281f2e270779a4c1fdd6a32614ed60b3612e5d594b2bf3f20 DIST petgraph-0.6.5.crate 710970 BLAKE2B 7f590e93fb44f1bfb8920e512402edc1cb087ff9d5dac7bc4be965f64ffacf9c1c503eab4156cd2005f41099f6b34f51e49b21dfa217271fcc0d4ee16ae85366 SHA512 454e9805731374abf1085f1a8a72aaed85e83cd30ab9601bcfe0e46882ba6656242284bdf32b6e75c2f5ebdd1325d5f8873d5f720aabf297822ca97311afb677 DIST pin-project-lite-0.2.13.crate 29141 BLAKE2B c434a336716c9cdd16ebc297fed393e9106ef167a693c4aa0b12c681e03141b8ba3cdf64c310916cb7d5cc43cbbfcaaeb39bb5fb1e8b3efb9e94a3f72af914eb SHA512 7f12595d751d315de6c0d380e2f501b74154661eb676987d2cab6fdc956091a68c9cac658df45dbff73615e982e6ae2ea138c09ebb708cd6c351f0d18dbbdbee @@ -425,19 +568,25 @@ DIST pkg-config-0.3.32.crate 21370 BLAKE2B 74ded191f066bc223739b3d4afec58f23de57 DIST pledge-0.4.2.crate 4779 BLAKE2B 16e7f1d8bf8881050478a2b5a261723f9d41443d761b93f78c197370179f2af307dd137c917af2bec4e89afd103ab87320d9908aca9f2842ec6da6a49be732bd SHA512 f13800b303eed68589a96c4630cc4e4cd1c418e18cb03db82cc1476a4c5bbc01e0cf5bd021e05c038f893c669d236b5ce44fe3f97b70c7419815c1bfb0b17103 DIST polling-2.8.0.crate 43554 BLAKE2B 8fc5986db7c34989954bbe84bd69d1f61c59b890d4e5fd21a20f3861bad750aafe2d1a89b3181df97f3659f1a6c980a92e43dcb9ef9e1de3881518024caa6f58 SHA512 c22dc35f39f374f21483c987d43108472dbfc291508e3f5e1d76e2c466f40b396b1ba7c222db5e5a2c0e670e83b4c34e0fbb5c3e93d86435b8a2ebb0890471a2 DIST portable-atomic-1.11.0.crate 181258 BLAKE2B 627bd7c306f6c4d7991abd9f995b7e0ce110a7ace738690c287a43ce3b979691214e525876f8ace0c2f0d10d781fba95c7d3bf29aea28e09b05b06f4764db03f SHA512 71774f8308963c5399095c6b755befdf9ff3d28f9529b4bae1fe0f2aba733339a267aa6f0ff854e59fa5044a9b0c2c86bad3bc4fcaa951724c839b0d6a22041e +DIST portable-atomic-1.11.1.crate 185506 BLAKE2B 953bb1f2059dc1d891305eb89945f1f6a172fa50972725aee499de72b5dd9b4ad8ccefe4e891183ff8e6b64f4d1bb45ec33b06e0f5af34c940f817b290f746d9 SHA512 4c037ae0b4aef43077bdbf803389bc078d963f20d023e2e1d339a54f67fa9b27c174e7c1b6eca8881ecf301e30c431632d2c0dcedfb5b19552892fac0f81e2e1 DIST portable-atomic-util-0.2.4.crate 47043 BLAKE2B 6a8e122bb2b9eb8262e9eb790f336dbb602f6c086f8ac025740c043170360d5474af578b3842b06ec51535535de3f4d1b6753ec54a6871dd0396f5c1012b0bd4 SHA512 f2266e78576181123aaf68e7b5d3523a368fa8136d447bac68a08d65c7051dea677cea84491a1a03b9decb4704b2f9392574d68dda9427092a2ac92cfa0affe8 DIST portaudio-rs-0.3.2.crate 13267 BLAKE2B fc47e0d51d7aadb9358c1602659f823a70fe5addb75fc628fea78e08904cceabc8d9b7cfab738f21b054cbf6dd104036d8a7fbfa3b1ff82106749a278dc45a2d SHA512 cf2b9250fec8aba6a5095b0838279e39beab5cb5f077330e6185dc146e049c6a8580aba883493fe497ca20c2b64db24851c81de43e48fe19ab876418d3b910d2 DIST portaudio-sys-0.1.1.crate 2327 BLAKE2B 2b2b3312138c2e23ebbec4ac120e7f93eb535325b95fc4cdadab96e82b1fdb3d541d62c8563ce85b5a46c22ef364907177a2de943f697600d98dd99b27500fbe SHA512 221ba8f669048ed4eed4006b5eda45b8289e05fbf0b133809c64ed6c9b65714dc62a867edde3ef960ae5f644b91a0ab4f65b5bf259e8c4b75d63f58009c3abd4 +DIST potential_utf-0.1.4.crate 9514 BLAKE2B 97979688c9a93a05c29a9a55ac0a37e704eb4623d5890562cdc1c797cbf3e73aacdc6251d47151ac0874ec6d1eefbca8173630f20de3c44fea254be90819e027 SHA512 a8e36c596d7fcc3f13a80457a07da5ff0fda62954efeae3c2aa477bb32465b20fabcaec269929af666030415343a2c94d86db26f9f9bb5e2e2b151581f0e6022 DIST powerfmt-0.2.0.crate 15165 BLAKE2B a3e1ce63f5866f75526eeb749bec6607e42cb495bbb953082cde7e98e6aa429ecaa41889d98ff7ed4cf5031258b4f7e0553ff8fc435b3b6f8b4ef2b6d53d9b61 SHA512 0623f92e4d6ab284b3f6dae58220d79d9185df4a738999d68040c50d72fe0380d70358cb622f079c629bab53bb03c6e085e165d5bddfbeea84245864fed90029 DIST ppv-lite86-0.2.17.crate 22242 BLAKE2B 48c4a31a3b555fa37072c4de083580bb769747c7668748541af472778b5b58c3e7ab2b5e178760f542f973774f09910bdd4058ae5fb9d6b10c103eb76cfd0d3d SHA512 539d916e7e5869d832045c1aa88aec519bd000227f9b01d4dd0bfc9ffb640d5f5eb21b05eba718174773c97192a655ad3cb31b53ceb914dd19179a6699b3583a DIST ppv-lite86-0.2.21.crate 22522 BLAKE2B 150b2ae019f296dc0a15090bcabcf4981bc58159d592b07da729565ef8976e3d1b4416381c6ecaac77874d8e259995254255c8831861ac20922b810753128cd4 SHA512 94710d5b25b67539cfa828476367849e1ecaca744f2e0429b48c05b47ec48cd57f950fb9845a361fbfd96f361ac00fd2d47cc27c584b79ce3d9d8fc133f5b7bc DIST prettyplease-0.2.30.crate 71670 BLAKE2B 1a47627fd2cc85c919466391f646135b8e1d6c0127db77800ff04b7f5b043466c4290cca81090cf3df8b2c714c5bee57e5ade843e60ef022f8271280bcafd832 SHA512 e91f0d1c55ced9c443db9e75084bfc117cb10c9ec5a4fd23064776ec5541de79c599b5825122bac8809c2b25474708736fc2f33f32d8f9d0d5faf7ec7ce4fdeb +DIST prettyplease-0.2.37.crate 72033 BLAKE2B 997c8d855023ba6dcc7aa3a8f1c0ac6f6ca72dab2804cfcfb0987832ae044ffc5f5d7541e66d7ff5b0679065e5217078a832333e6cb92d89a93660aedaf0b447 SHA512 3273621f42cd2f4f892ee81e130f50e7d30f7254f922a84e55e454c0157bd0a59c678ee352e05007fdb0a62cdab2d7693185990354b81d2b1f5d08b51cff77d0 DIST priority-queue-1.3.2.crate 33905 BLAKE2B 2bd083a8ef4e6025fcd2de360a29442da3190d642a176cfec240743e060fb4c54dbc4c1e86fd10259296dbdf69accb802033594bd8aee9c664d684f6f983188c SHA512 8f0b05aabad32201b69e1c7d410df43d38ebece63c2b7c0510ae41733547f3df71cc93d100d2241453e0caa490a0b6e5f66d67a6fc05dd0463227cf8b364c7f4 DIST priority-queue-2.2.2.crate 41338 BLAKE2B 60ae502a5134af0b698b579633e1a30ba288bb938959f98e85df861e66726bdc1b5e6d6135091461a8ae1a1986536ca701e13a5062e02311aeb0b34331e395dd SHA512 ba2afd407e2ba373434c2600a251b9568eba5a673b03e34211e411bcb147c6bf836f13ee12525b3d231c8515997e938c43fa5a99c5d4b8eb09637af8f569a863 +DIST priority-queue-2.7.0.crate 51641 BLAKE2B 47a3a82e7bddcae5caa0baa0f6f5ee487ab89d937ab7c145dc97b330e342e299bc94ee5c48039f79fb0382144548dba5e0cc4590d38f52d672b27efff0e15f1f SHA512 8f6ea07c3ae75737119e41fed76a97674677d3f6c8c5b46a8717c4aac0409f38bce0774eae89abab19a30b93b0c2c5e7760f0d4c34ad201ada4de0d4550a765d DIST proc-macro-crate-1.3.1.crate 9678 BLAKE2B ed617a1930bf28a26e865f6477229566a0c4ade7f2c1e8f70d628c5536985f03c7533c561490415e207c0f58b4885367e7f54ddcf10b058711829f78a34d68a9 SHA512 5306f017933ffa89eb6111ee00b0536179c5cfab56529440630a0bec86b62194ff16f57ebb471b233e88cd886b7b9871de8402ed29073b23e5ca98193e513659 DIST proc-macro-crate-3.3.0.crate 12432 BLAKE2B 79892f0f9907beefa62e715773fda97e606ef70f905a072758f44b685c63a1c3aba40548f5f63cde1fba7f3882701d763dd6246a500c26e7e3e41c351c89fc91 SHA512 c16c0227336375106f655c50006a2ceee151c7bbd0a9c7a06fe7912c3370b0c3a7e4076fc8977b400c63433dcc3f7fbd96912a5a6a83148d93df82ced484ee20 +DIST proc-macro-crate-3.4.0.crate 12690 BLAKE2B d65a1be2058cbbd5458870153bd2758be63aa900f4daf012b7c527ecda915c6589f4778b4a5140b6c1a77e3bf1b954e0146de0ed6332ff12d3b9821640534d35 SHA512 bcfa9550d1938f2d92c3fce823cb7fa088c16b43a430962028df77682acd5227e7195042379a843007cf5b71b2d53a2dde649c89b92a1b87d982acbc088d78ad DIST proc-macro-error-1.0.4.crate 25293 BLAKE2B ef918c5efaf2545ab38787c8d0c07315af00431139e4dff66346bf798e3a429f91d12a79776c150412fdda0b158a72badd5e1044ac4d6917f8482d4b5a7110b7 SHA512 8a47bc9d3e24e9561d1e384d8f5a633284c2cf9b5e6733c5f9d1dbfe1870ccc8e2152482852e50b551cecb68e009148585b910ffb0508a7b4875598eaf8657db DIST proc-macro-error-attr-1.0.4.crate 7971 BLAKE2B 98e2925881c2be186e22c2c439697e91d43f807eb61a5d13e3b0b4321ed50a74f3d699942c04b89b6fea0f156bb5d19ebcf22f9cd4b98a7e6917c437600ed823 SHA512 2606afa9ec78d7dad4500c98d3a5ecbd02c6b53ab829c742bed7f57b322a95238ab4e01cf268746815f1424fd9b02eddfa30e72f98c66106f57765f3d3116495 +DIST proc-macro2-1.0.103.crate 60024 BLAKE2B e5ce5f77838fd063b5615b1555db02175621135132de6aa7479d67fd0a34c15e8235290112a728f3251cf913a835bf0aafaf6930880511427143b63152047259 SHA512 9a6964a2ad24dbb1108b7018882ddb48cb6e6f652d1c5eed1cac94602539fc71f011a0a276765778df161edbd6387bf03a8505d93565e0c106f09e98d7d6efce DIST proc-macro2-1.0.66.crate 43575 BLAKE2B 9eb3e816b00fcf625c280ba14ad269f5893d0523473a24de07c21945f6f932fbd08efb3c339b35d903245510e3f065e1478439b024a325f2bb9f97bc7bcbb18d SHA512 85f5a762f9411142e5ac28144bd380f07f0633ed2e44d8a2545be9fb8f42abaca6b5d45631b4be83b8e8b9beca7438bc52f25615c3a410a3a1249474b1aca407 DIST proc-macro2-1.0.94.crate 52391 BLAKE2B c50986bb34468379e22215c6572c2b722f54381c02258fcba6805eef0166e4bb591d20b94b9084b5d68972df8ef12476ce0d1081588cf80dad3c4ffffa347660 SHA512 3fc4552187d4130f0fdb415f94e625c156a1fdc6cc955fda8a68b49983ac8a83b897f43d1caa130c4f0932fbd9651140b7670601faa2b9b936947c3fd89f7769 DIST protobuf-2.28.0.crate 167541 BLAKE2B 3db5e11d458f54fe0e121fda6ed4c1949f8fb0488148c48e512e05cdb3ca3e2fea4a0a0e4f22b312eefb75d3bdf0ef30fcf3d865ab5c06caa8d11a8b96f44b32 SHA512 14e87f5e4039eb98d473055634102e7d8f79d294de0e04e0c0423dba6e34abbb28b1f94bc2d96ab16d3e02e770fe876b4c8c3af8835a43a8448514efd0b02312 @@ -445,48 +594,65 @@ DIST protobuf-3.7.2.crate 211978 BLAKE2B c62279dd5d8ed0b8cb8acb20d087b0a9f316937 DIST protobuf-codegen-2.28.0.crate 40826 BLAKE2B 0e581fc7b1b2d2b28aa10a00493c79053d5b1e507200961cd26a548d4bc46bd56717ffa00b0f2ad5b92059b2fcb39ba18bd4a85449a87943fd623bbe1e8213f2 SHA512 5b23b4987f2a7a080dd93842e63ab58e8b95e4a2d78de3e4af7ef863f8d6c359b989cbc6c0a6e0853803d903f66a43021598814efbe85a8d712320e38f9485eb DIST protobuf-codegen-3.7.2.crate 58021 BLAKE2B 3dba9f7835e8e5df34b849fad1bb430fd16769417afc5119716efa9a29b4a95e0735e5aa94c5b5ccfef671072c0d55105b33938752a4fb6a5ad50b4014d8502f SHA512 3ed9d436846d72d4e661335ba0acae44bd8aaa7d636f43e2241a87903c9457a6772e902057806bc7d122759bc5837124a9ae641ff14e26bb3b785e02195ce385 DIST protobuf-codegen-pure-2.28.0.crate 58102 BLAKE2B 32617f212d0a7642661363dcadb8c0c8acd18d4241576bf7a336fa301faeba52e98c66e54413a917571e5dec6911177e987f11521f7afe6b8a93bd4657e3f581 SHA512 f09f04fd04ef06259ca60f1a9ab254cfba27a1ef468a91f29e70bf44ebb1a33632eeaa3b7d0405d12ed2206263d750bb48711ead7d1d51804b043d2cf46c3d07 +DIST protobuf-json-mapping-3.7.2.crate 17932 BLAKE2B bb8171659a02f3ef6fd0249e7c554b6b16a30928fb09307b7800edf252888d12cd69a81aa3f1623ed31a349580d01a124b6b060b0162c0d83bef0677d8ed2963 SHA512 ab2130db256e0e5c9a9b9cccccb3a3701ea8b492157d0a4220a58f5fc86461d23c52fa07ed03203c7bbcdf64cb247cbba8e11cc0005f3739c30ec119a261da14 DIST protobuf-parse-3.7.2.crate 68279 BLAKE2B 7081a97a313ba6e631fe1dd5ca56e61143ca709590aee02826ade68fdfeaada758536018e34af3378ee2be6b2c59ebcf75427a10472e07fe12a9bb731a1512f3 SHA512 045ae80809c8607a93c5fa9d2f899a31e82a6b4b30ee3baa3766017f6f5d3e72cd00301d46cbfe43cd0eb320aa65d4be7bb0601422bda5b1d33e338647098b51 DIST protobuf-support-3.7.2.crate 11725 BLAKE2B ade6a8f1e8698cb749343a59e0c8e8d7d0f140d6c6b0405d725ca703bd36c7dc585006a512820b10a8fba7c62615cd9aee6de8f3ae89bf926b76c408deeb113b SHA512 a057946e43d24b507d0361502acc4447d2c912032275f564a58e80c3a035acc175e7b1bdb488b1293ca5417da1f0347f2014a16961d0048da8c4b0241e3e6cda DIST quick-xml-0.36.2.crate 185201 BLAKE2B 4541812a73fd95bedf21f90f07f27b31eea6c514ae17818ba957dd83ed176b0f17bcf3860fdbda07f0fedfdd7ac660bdde5e8ae2aa9903bf7a7c8ad2d4770470 SHA512 7cd4778dbb1f50fdfd7290241fbb42c8529f7d44c2633cac017657010d0d443024f049287e1a1806f5bebe46465549973cccc660959c587fe383490a150ddcdc +DIST quick-xml-0.38.4.crate 205035 BLAKE2B 242ca800fc568f77d0d2b7f2963fd16142a05150a692a15584b3044c54fb5a2b44eb703dcc04fc9fe99b6efa35560ef6a760a180ac445a26b0f1e944d7ea1773 SHA512 dd2bea3dec3410978f8f15a0f6046047e5735fc75e714f6a19ab646090b347805ed77be51378ce3f9de19744daaf588ab5ea6e6a8b2d1f72198b4c78056b3877 DIST quote-1.0.33.crate 28090 BLAKE2B 77c4b166f1200e1ee2ab94a5014acd334c1fe4b7d72851d73768d491c56c6779a0882a304c1f30c88732a6168351f0f786b10516ae537cff993892a749175848 SHA512 c1e76c3c017e8554eebe309f8167fd56fce931981c06798aa85a0cc6d64a9cba6ab103f5a1324e69c6f9ca5dc47a8e31ff2e847850542748697afcd265b5939c DIST quote-1.0.40.crate 31063 BLAKE2B 09036ff3e5ebbd775c466bb936de91d4c070481eb4b98c62a4cddcda57cd7b67d63f979b321f6ec64aabee3f5da6c28e7a3efb83f4647768ba578f1bd0bd0bdb SHA512 45a76e22a2b0bec47e4ba73c3b73cc41d821dfcce9876134c5d8eed514da214aee4ce7612e372c8709f888c0d8b9b7e5442f27adb7a59f3571f0339ed7e2ac99 +DIST quote-1.0.42.crate 31504 BLAKE2B a8106c0fe3953bcc2aa421516dfbaad6d6cb2ea839b2ce1447a45b8732dad40a921c2008b477bc0fa029dc0e0357a339db543b1f90bb9da77a5a3681fc16bed0 SHA512 6d55047312de6bab660459750c54213e986f0a80b4458fdb706c2fb3bab83b8239cd230dd9291662076d395c818a391142af1228ae3158cfa4960d6c74d531ba +DIST r-efi-5.3.0.crate 64532 BLAKE2B 54bc882e333f7ba52b6dd6ac92b8a282581c10b47de91a4c4b71b15a27b2df885ab52ae2fcc8a546367ee1ce98300dcaec3c33cbd7393b134383528540bb7d14 SHA512 e748db9729dbddf215d5c37630fa272197dd2921297800209ca7bfcd6ffd8530b598b944d95547ad9723655cafdfb69b1c1fade9ba5f8c2ac5c55ec38258fdad DIST rand-0.8.5.crate 87113 BLAKE2B 516f26bb2a969d0d79e957818133f35d2c0b4d9f1b401098ea23c5b80d27599e842b9298c0c5e46e2a6cb6953857bf8a9fb71ec9366c5ce6708cf17df14f179c SHA512 8b33a8988906ba5e2057a9a84bdd11f867a5536c22f5056eec59ed4ec4e3a6da2fd773da4c0510d343762e5a4ea0f007db4c4a7cef87a47f90e36c1a84d86fb2 DIST rand-0.9.0.crate 97798 BLAKE2B db07e33ceedec70d4cf094ba18d010e45036d9ab847beceefd1dbfd3cf7a608d9e333ff1a0f157cd920dd71d8e63d0e3634f24076b72a88aa3ccd29f25770536 SHA512 e07c9650dda7f9686b4f604990bb7f948667bc820322f464302fac3b2a8136a2a5d48ae6399f104e47bc1ebfda105f99ad8b031ce090cdb71840afb85f6a3032 +DIST rand-0.9.2.crate 99930 BLAKE2B 4440c21211e3c09daf8797de5ae1c7c461ead207456ad0a0405c6da266de51427dbd68090c461f1a349a04064e4bdba8151656e2e9f7c17be1f4aaeec1e26f3a SHA512 91faee823d9a3b109135182b9566e6327881736359c9d68358ad7dc78eac1e845c553820e2450ca481cae1e0969ec6566e72f7f9233251b1f9133449306f2965 DIST rand_chacha-0.3.1.crate 15251 BLAKE2B 645771b2c3e274f085e0837a20306b1d59f6e9032fba8eb38a6d1b30180d15e2f89ffa2a162bf6358da41e030098242d81e71dab4321980d0a4f6ddfc2974ce3 SHA512 8198c580b1b9b0429758ffa49cd8138fa3ce724f0dcf73c767ea7e55611d6a2e4c7cad9950896510def500ce4062b594386c947ac3d89425b4e5c9b04d0b8075 DIST rand_chacha-0.9.0.crate 18258 BLAKE2B aa0efd158877a116b2587177f2da84832ba8153b629aaf8181ca7622bc8ea624b5a5d205d1b745caafaad78d5a55aa08a4f35822b8925acdf7d1212baf62abeb SHA512 f62a7bb067ff984049c96cddccc841cd9931daeb5b25bb69f056bfe577f62b1b35c08f2bb5028590eefa04a9369beead4e6b03607eec97256e0383b20542af96 DIST rand_core-0.6.4.crate 22666 BLAKE2B 8b6b66d50aade877f2779c006f8038db450f808c66d73d79efa66c4178dc03db06f12201bf0e7930181c4b0f4030c49b20cce6eb7839763cf2217cad9710789a SHA512 36c67eb845aa2ccca49d6d680f28d418229bbc5a050729e487fe6b9f9f384fdd7b8d67fc6508b90b79ffb3c26688e72feceb3ecae57d3d7f59338aeb62296f79 DIST rand_core-0.9.3.crate 24543 BLAKE2B d611130e240dffaff33f8384f13a008af93254b1530bbbd2369057ca33f295c7037178010efe76e4d7bf18e36003f843409fabec060c8c78077cba00772e66f9 SHA512 6e8e4067dbf5853c55b0ed38293b6bc6bdecbdd31bb9d624609b0222f706f5b29281ffd5fffd5c316367ba5b22c29e5282c61de3738344798ce0f9cf9cf2ce19 DIST rand_distr-0.4.3.crate 58255 BLAKE2B c93a4db62e1c27bde51c77423e15674c4bafd04a63424ee8b8863e4eb27e56f774136949edc8b05ff4189dfab1f0dffc92855706f4a612be897523e7712ee830 SHA512 e5209a78b8ca1af97ac6c6add858ee6d91e67c1edd124bb297f787d37218a5f1afd570252da2eb25738b8d77482df4e93aa1eb3c4a8165f90219410dba495cda +DIST rand_distr-0.5.1.crate 75593 BLAKE2B 9328bd9cafd24168fb3680f27311f7de525e1c5babb0a733db24432c374657102660b4d4706078a23d2dd42aae25ac43aebcce37703407ebc34371ffc94d57ab SHA512 2525a8d5597eb2680fc06655095888c356eaad31f2bed1378c3de6af7d08c876db0ff7a36845873585bef914593cbcd4af942233ce85c8c13ab574d83c7bff8e DIST redox_syscall-0.2.16.crate 24012 BLAKE2B 9497a52044458b1435ea16e86ee072e379b6b11ee31602ea72d6b6072a4a99426f409c2e58108a4e9c36dc193fa49c83951e71f4fd4e158eafff18c594dc01ad SHA512 63b5d876baaf99f5cf737679bc6ac7a9e3d8a41aa93f5c59416ce7e3841e2513bff678773553cfe62fb452707f82acc384ea63aec932a31bf94679cd1caddd27 DIST redox_syscall-0.3.5.crate 23404 BLAKE2B 85aa4299d9816666bf576f523da5cdeae87b3c8fbb2af103e82258d23f73303c068a4b6c3ef4117ad67958cb31e41f836a9f59f2ce1bc52c23605e34399afcf1 SHA512 16f8f4766932bb54e4740cfdb4f0802f76246c0bf88c1d76c69c115949b124b625d8c3b85d8947073c2e9544f425aa16c10f71fabe3c03d29e424c47fe4ccdde DIST redox_syscall-0.4.1.crate 24858 BLAKE2B c3301137a0b84e03b09d28dfa377ab3bea74d574a08cee21d35713b278d8b5b30ca2a1d73a0981baeb4644cbb88c86c8eb15ab3bb2692e38b93e6b35fab4e0da SHA512 073ed9d96090cf46eab9877742277a013c62d8da86d9caf2310b4fa868af306511936553579e01309f27067d344226cc8dc5e3aef01d9b900da2febd33848f8d DIST redox_syscall-0.5.10.crate 30226 BLAKE2B a61a155b8b490d12c62389e51540e691cd63a06a830006b06bf7959cd0d9a1f53b62827052fa72b9627c0a4f15a08bf40df44c58bd5a468fbf3fffda3fab482b SHA512 fb27b2624d26488eb439efed79a63f8e6991d51cb7c7a8deaa97fdb9fa3f5f7cca4f5a0a7ab3f9c33ab4bcd62694067d84489218e7a3885981c1dcfea611d8de +DIST redox_syscall-0.5.18.crate 30747 BLAKE2B b9507a055aa34178982f0b5861602d2e11e13c2604f905c9b747c39aa6c45f06e60cf5c9d17d914712a815fc5e9ad75bf648c300e7265fd4afbac0b0c207afa6 SHA512 69f1cfb215666f1243616366711dbd8cadd6bb411121f48f6e4ffd7b25479efa6f900dd072d7cc6e6fb8130d95cdb42f4c0cb4ba9e05b09b1fa676ca32932101 DIST redox_users-0.4.3.crate 15353 BLAKE2B 5e3b4e902566620cee8856c092cac193366ddcd2f5aef787b1d485353a0da11486ae1359dc60f3c87a198cb68f93ef99ac7551cc2315412b93b10ffb10540633 SHA512 0d3366e23cf93e1b0e025a29025eaebfcd1145bd158e2663b94fd952dc2d8a25566819e3a03c4136ca16a6408d37396e2ead0814c3f0c2bb10334dfd0b838fda DIST redox_users-0.5.0.crate 15586 BLAKE2B d38045f8b10c2c62eeca1207110e6a194366d17964a641eb4e2898378b9ebb127a5a89f379caf3b4d530f247eb5440844e31056d47a125fe0e6aff25d98d17c5 SHA512 11f255963cede17382071354568315e6aaaec5afe5ae09986fc71e273f6a44ae8eef2f6169e3a5b635bfed7729775d485a4edf655ae8c1297aa73bc156d78554 +DIST redox_users-0.5.2.crate 17280 BLAKE2B 7dcb0b6727d4d4a9b2e3b9a2410a53eaa1b0cca807010446f36a658f062f0f33b07475e61f549922a7c5ef4e7ee3693fc154ba33bf7aec710c8053d03ae284ed SHA512 0468d42c9a5aa9b8811d00b4126115bd7e92f96af4ee136cf5387939474e351fa2c01251473691aeb34f5e4c8e8804938adf1bc83b5edffb6d06869b4b816b7b DIST regex-1.11.1.crate 254170 BLAKE2B 5cf41012fc2ba8a006c0eb4a922cbbf1614bf300be361c9e2d98956a9a5e9b140e37bea09132fab7bfb633d4439158723624bcf45e8c619c4061b399253c1b82 SHA512 d065f6dc405771518260425f39a5eaaf8cab62e78c91ceed3b3994a9a121674d2484cadaaf816bdad89c87a40550d57b66a3d9de6618a7119a658301ce7e67d8 +DIST regex-1.12.2.crate 163843 BLAKE2B 4e36124886e35c2e06ecf3310c32f45bb80fff978a99509abd7d7eb6378f81123819470c227d5c234fd6e3bc7a8e7baa331ee0ed3137f9256c76cb32413ecb7f SHA512 c459657944679350369462c3c7686dcdf412597f75bc13c450a131bfceebfe2cd1e1d7f95f0f55b4aa16bfc1acb5c777f344fcfd6a5927aa76b8a2d7aa954d3c DIST regex-1.9.4.crate 253112 BLAKE2B 434a56ab97d988d0121407f4b49825807c639cbd9c498249da9fdd186a40340157adfeadfb8b0f442fbd63968f4c9fb36c487d9472cacacd1fdba9c357bb9218 SHA512 4c7c478c74dd6a470ff89320a6944ea301967543a5ab281341cb4c8abf1dbbf909f329e73082ff5157db8108eb61b7a1a8b1e88555f848a876bcc5072d23e894 DIST regex-automata-0.3.7.crate 607421 BLAKE2B ed040e37e24979118edfe37ddd25443986cab4ab96e6391f9a6f70c6ac308678d5773a14bc2d10e809d7bd26d2725bc45d01493efaaef7e6038152de6fc7fc08 SHA512 967f5d0b452ba782b7e5edcb3e7f1e730407cd65f072eecf9d28d1e4c2cec9954a891a3fb4d69310d299a287a5c6afd22f71f7403dc65e07b7be207a2eac83d9 +DIST regex-automata-0.4.13.crate 625250 BLAKE2B e8682eff5df93737430a783cd913265dd45a9692fc4623a956557cd7d6553f34eff731f6f3ec5fed5c0dc6b7f8f31236203ad9f459a998fede053d990d9faea6 SHA512 f76939dc573a88d17b4cf37fedfcdf95202171ca8607374a5c2bcdc515abd1ef9231376175c6cf11cc567eddda34e0c5f90ed1c592f2c5efbd1dee883954a932 DIST regex-automata-0.4.9.crate 618525 BLAKE2B ee3fc41c8c445be4c1aa3e5b19a3e61efd641b1a24e7a1ed55f837c1fba9c816272cb4645c13232b66b170bc7c413802928beb22e3891500141ad4ede65b60b0 SHA512 40bde0ec91cc27bc0c3fa237a37ecee5a1f023dbe006a999c5888f8f578ee2c4c64d9edfe1827546cea8e92ca3c10f8b4d494d81f3d0422b40d90bca9cf598d2 DIST regex-syntax-0.7.5.crate 343366 BLAKE2B af07596e45e3525ffd253d6070ddad08dffc8f0409ea14843a135646da8b37a7a568c12ede809d9fa47eec2329f68da7a3b3c0e0cabfa200de64affe6ecefee3 SHA512 6388dbf68c8c86d8a5bd8cfb13a86e9ab2da1a339fd607c1a16848f85dd21c85d744d694c7b918954ea27eeefc90b589926c9da464343fb78ab639a5e2925efd DIST regex-syntax-0.8.5.crate 357541 BLAKE2B fc6d125f7a8574c37d81c75cbfd447cbcff736f2d9991b19814ffc1a414ebc5b76e84fb8fd36c983b38e8e391d165cdd9047832b0d9100f0e1ba7085484b7db5 SHA512 549d8d130fea9ec0d5806126f57f31d433f50e9328c5532ad417c44bb5488ec0d20acb0983dbe54dabaa0b453cbea4533cf7baac7144df119e8f78dfe55c5ab8 +DIST regex-syntax-0.8.8.crate 359141 BLAKE2B db4a6a76dfd7d2619fffb7fddd8a82411afad16bc8b1a8501628e872c9b3e0a4fe71947a135900442590b944a623c5e9253e36bab865703bd5b5150aa2a65e51 SHA512 337ca84af81f2c5cd7d213e3ad96a1facba2917f135c4c1ef03571160d24e4ae47186ad07e421a7a4ff0baadbe95d34365e69400f3c36ef39ebeb3e7c14224e4 DIST reqwest-0.11.27.crate 163155 BLAKE2B 0135a99a42400d601a19299d379e28f2df7454dc85864bf3905a8148c908fb1b0f363cecd3fc2ed0c4ba0c108739eb3ec5116d511bcb73530bbff6acb10c691e SHA512 95e5c2e375e345a3ac9d4f4b4fa9aec28f45a457c1615d303d4b4dddb639749995ef2834a6f8659f5f0cbb49e0876e89c9925bb2b2ba62207e393c9b12e58ad3 +DIST reqwest-0.12.24.crate 159974 BLAKE2B bc331cb57bb28b9c40dadc32d488d6d77605497cfd6f41e246e07198ce83c254eb6e4818baf97fd31b83c94fb78c795d60ab9c4cf4c479799c23c37f57325004 SHA512 fa029c0f9acdd1511ea8b65e1b1c83d9c1de8f9495a587b5b143666902a1ec4f2a8f28b28b535ef12c5e92c12e540f7cdb23f7cc253b1574c4a88dd695c004e8 DIST ring-0.17.14.crate 1502610 BLAKE2B b33efb6d21931ab94f044373f24428e87015029a0e065071bfd901f8679d30944f6b27bf0325c77fc4bea7fcd935209087a349e5c279677bea73af6205725371 SHA512 88d38205dc1a1f89bd4ae887ec5c168e68a4b749b3ac0612674092331e99d14a9b8d0f4a98d72c1a3853bcc9da420402336da3ee053bedcfd598da8de93afa14 DIST ring-0.17.3.crate 4146357 BLAKE2B 32e9e6defb181a67ce3ab38eb0b3b988d3dba7b51fca9af521f606e0e596ca2cb6acdc9b853c9345c54f79970c654a13da536b1adab6c35f511a814c5a555f41 SHA512 389a640186adc694ff42d18ca7bb458cdf84aa75505ecbb3ab44a92003bff09602cd33e01463eac764589e82d8a9afaebc14816fc9be4dd6a749b8a7239f231c DIST rodio-0.15.0.crate 7414161 BLAKE2B 89fb7543b3fdf24d5099bf6a46fa50e7fc386071337bddde4ec4100482cf04e31605490c8bf48a11b644aa1c370627f0602b541ada9dd62441944a19cddb3db9 SHA512 5a138ccb096f5f86c556c53d26ca794b9b519b6e4e556ec30ef8822e92ae04849af58767b7a36806fd7a6e8f18fd01ed852da8c19e2fe43bc2ec9c2ae9a9707d DIST rodio-0.19.0.crate 68402 BLAKE2B caa963e358c5fea456afe8abc6c5ec438ea607169d0e131a74a6122848de38fb7c6299dbd4ae39bc167e69005209e7c8d0d4bb601377ac1b588c652f22b28680 SHA512 9e9fb98474102c453bdae19402f32f2b16da99233e4b94c5024c6993affca1267ca227bca772774dd67d6155d392a8610b1040150391be2408433c723db412f4 +DIST rodio-0.21.1.crate 135395 BLAKE2B b292113cb0ca637b1e83112fed4207dcbcdd880f46a7833eb1b9367589ed554904b82b65dc11aa983d7467278e13ee1e4a1221d12ed342d5a7004ed4cea57a32 SHA512 84027968c60588e38755a8060a201d3a96acc419d439c8e446f3ddc128bdb49e3175a4919f62b040ee5b06b254f96a35af25a12729f45d83d5c972f0af90e9d0 DIST rsa-0.9.8.crate 85741 BLAKE2B 27c797ef28a040d299be6931599886fb5544ed5db2111f2db9023a885d0fc4610658d1a6fd2eca133a38c81f06d468677c1c110cdf8dcd5658e9d43b289cb097 SHA512 26dba3b2ace36675fe128271f93c79396abfdd8b1caf81e71fc8097a67f5dd875b96764a66f496fc8e6018f466bf165f501da17ad5f4323585625636104b02b0 +DIST rsa-0.9.9.crate 86379 BLAKE2B b03d2b15843709ab754e7fe6443474e8053b99ba4f3d95ccccaa31fa5b5b0f50982fabb7dafc6f05c121326e54e5fa8a2c2f64147a6ddd23c7e0690ef5d7adb5 SHA512 8c763fb4a7f86b16250a2e976375329a90819b1702ef63dd269f4cf0cbf708c954be9131e6701002035d165380c0708f311933cb734a6db418d234f429845dbb DIST rspotify-0.12.0.crate 2443982 BLAKE2B 780d98b04f1d00b68673a55c63b7585e214011357744edf412432695d6934b2b3ebf72957afc14b5980216f048fcc08994d2e8af832dd348ba1ebd1db05f2ccd SHA512 6e6fe98ea1242aa3671e68099b05fc51693b29cf8b78e9509144cb290273ba30009aeee4fd0268b756530a039cdfb9935ae0ccfa929a3257f488b0d77abf1f99 DIST rspotify-http-0.12.0.crate 6145 BLAKE2B e5fb5430f837ac10b33477fbffa45898e3f5ac36220e53ccbe253df8b8ff6bb90488a8fbdf2ee5b80eae1b99bade7e0e9d3ad7ded59985b09837bc33e4ab55dd SHA512 abf0afba2c85547907028cf51cc0d5b20525a3e19dcbd7adf8f77d41988fec65c71769c1a43bc96e0ad7f9cfa42be5d9dfb154cacc5890537ebaab98bf385fb7 DIST rspotify-macros-0.12.0.crate 2753 BLAKE2B 211d3cb3d4f03b9aee4d36a23c34e1092f722308fe541af4bf2ab58493e85d8ccaab79f376530283add68371e12b456d9207a1bddb657b7ee79bcd3bd5493077 SHA512 faa21a44aa056f4c01b23431ade8b437524bb1e6f70c9ef1ea15e15c080208636e36856cfcee718717cb5b7d87822342653a078ea498c97ffd5aa16ed525ab97 DIST rspotify-model-0.12.0.crate 23442 BLAKE2B edc4ec5ac14bd37ca657efebc541a3f10c94f331ccdb59bbfe8bed76c817ae6b26a50f3a6fb62dc2cad4013eeca45ba564de14e0f628bacf3150157f4f89e169 SHA512 2730cab77e83ca1b17170dfaaa3bbdcdbdd02f677c9aae20f8186d8a3f2fac57fee74e3d051fe78d6bb9b9ec43c28951113026848d5219a5708d58cd65dc543f DIST rustc-demangle-0.1.23.crate 28970 BLAKE2B 611d2e41a8a9799db2f8bcb8fc8fefcda361d055a417d2bfaaf2dedcce9d6f388c69d905a28c65e6691b4d408d7922ccdc97ce524c87c3cccb8467e314bc87b9 SHA512 8cd29800254b1305ad50f1fc008838c52d9659f97a51a68e9f2bd6d0a60126f3ebdd1c79760f96445b3bf998d0773526ddf663b174acca81babdc0b423247247 DIST rustc-demangle-0.1.24.crate 29047 BLAKE2B 8248b014eedb26cdc0b748544ba91b9aae9c992a6f93b4d3ac256b78f691d572f8885a3575492ea556698a241d2759743968293079ca02bb6a5f318b0ed66dd4 SHA512 eb897c35300b87766e6105917a907fca1c5b1f7691fc03c6c1aaf38075ac883a73d1eb54a245d13ba59c7b0f0333d6543e23fc1b1c542fbbd5c750a84660b9e8 +DIST rustc-demangle-0.1.26.crate 30340 BLAKE2B aa4d90be1dc313db5777e7b47fd6e6d9ce7a96df3296060e0e062508fdb9a68adda2bfcaa18d501e33e41f08c2beeb0721901458aceb072fd5116d67003fd56f SHA512 a3b32cdd685ee6f2112bb9d3a2d09dbf84efc5961a468adf1d784688f3f9761d9bab066be8969ea29d2251a08d4ae3ada872fb19b02f2aef8652ad50ec963348 DIST rustc-hash-1.1.0.crate 9331 BLAKE2B 16ac56622897f47a06b661fb59a196b08d48e782ab87549c8bd5c6fe92f374c9bfd44dcb36588512bd9b6125c2fd79a12d648aaa308fd9694bcca3a7c1b49ac9 SHA512 84e673ea9b046f7b989d47f2c4505557fbd5de991e6fc9f56a03605d40e0b4ba5427cd566954890153cc033ccbec6c984306634571935bfe0d4cdfbe56f39544 +DIST rustc-hash-2.1.1.crate 14154 BLAKE2B 7a1b3b82bbbf6a123512815c3e8f068a17890cbbb8b68e88a5a492f62469942fadd776207eebd913052a1c06e1fd37a549e86526b9fc8f08b9ca7cb0044ac16b SHA512 87097d98d47f327d000041ab13acddc366f1500d9c3e5c82169c3358112c7a7c03701c9b3c2c81d9f9da65b7ebac1c479b179dfaf7c059cd0b929b4673e51084 DIST rustc_version-0.4.0.crate 12175 BLAKE2B 6fda2ce03eab45d7193fa0d70175cc7ffb56b7be85fb1314092bdcfd3948ea145420569ace3a47218a4a2a6e44a818862cea6dd8cfb945475496f63b591c29da SHA512 f66da7c6efe431db06cd01180d84ba67fcd38f8cd6ef693762957c00ccc2211f23c08079d7f184776e08f28d2d6ca3bdb5f5016f7de245c6193d4722891ba1db DIST rustix-0.37.26.crate 324663 BLAKE2B 49876bd8bb34da5d03ffff3c0635b78c985d6d5360f783a902a7b3c878a7dd25d10d72f8990d23adcbed9e60bfe60279c527562edf17e37ec9e95219dabd45d7 SHA512 ac9266a30274ce399d3856f0363ff55708ab5cbc817b6a1da31a2c14d14de3e00af4aff49adf1a9ddf3dbe2d6b6c8d667e6c9c5291e3cd3dc40020f73f3016b7 DIST rustix-0.38.10.crate 342427 BLAKE2B 6b65b3b8d7ceba7e606bb1a2b07d447b8110c728c0b3a81838be8b0ad04ff01f4a6d9b6fc1a4725a392eeb0d455a06b6f7abf40b0990a7dbdf4a632199ccde95 SHA512 4329ad809994cb377f2bade3673a3cc829062f4c9977019735b90df17af92c22d3f036a13a3fe7073872dcac8f5e424db7bc56b0d2530e5e7b468a9d92a867c9 DIST rustix-0.38.44.crate 379347 BLAKE2B 780efaa7c9e7fb78782c552345ead692e4dc87a6e68fe9c972097ed4ef9066b54633c565d4f1b4752e08a1ceceef15ed5d8c11286c7cf17d971648ac5f9d399f SHA512 b7e66a27c9188eff307aa9912852706f686864852a97af0696ac5fc5dccdf2e4d22a69266fa74ac71aa123e2831f24b898b7ee9121850d65cfb56e12bd647d8f DIST rustix-1.0.2.crate 411835 BLAKE2B ff362d2e0fd524043ffc4b5d867de20a6f429a9cdbf1d50ec26989d7573a709a64a0c73840f3135b134ae750fbc9b0cc8b91feefa99472aac2e3ab7b54cba0bc SHA512 17537bf2c9db00da58d479089223e304a9a9f6ab0a849b76cd630035075010b3b0e2e97a7cb2321d65875c6e673b5f4e6cf1ea71222b55c5acb05066708e1b9d +DIST rustix-1.1.2.crate 422717 BLAKE2B 603a41f610c6a2be2ee170f6d35ce1683a50590d909ba5444c1777b9c00b584f4544868f4c4d3b2397ca8b77da2d8a40154ccc6f0f2f6affd2353aebfd6b4515 SHA512 4a5ebae0902c7ce683acf5c2a0ee62a4903ccdd7f147ab5b1a657ae6d4b468beca31a15c473f02bb2f9e81c2b07924c23b31ff860482a711808a774dfb5af5bf DIST rustls-0.21.11.crate 284815 BLAKE2B 1d14027e1bffe6f0f1190330eeb19dbd4eb2df1c52e7b78dc2e35102d008a55724a3948d04b2598b2b698e1d934c90be337799831dcb63b04d7daee89b0f484b SHA512 e16d817d94b28e7d7d5b466497d8d52b5a850ce289b3d899bed81bc69246ef3fde7ed5a8e7a64babf5566c8b3666124dae67bbcf14f2f2f3ad84a021b938dcb1 DIST rustls-0.21.12.crate 285674 BLAKE2B 44977600effb314aa3c89609059c61337905f0380464ce05b4e91783f1a1c9076a016c8957afb3d184a7a6d076cdbc59e4703be22fc15c540e46a057527ac1ca SHA512 7e48a990ee69fc298df45d9a0de9b5a33a56261ec3f79ff16065cbae7368705c1f3432b77e3262a6141df68b19cbedcccf16eb271a54202049435c63454186e5 DIST rustls-0.22.4.crate 333681 BLAKE2B 01f84b7f44883c807d8651b6058647180d6e9d48deb51fab0e76d7b587ad11face13215170db3bb7d0216505eb108438dcc3bc08ed2080816401f3955f73fbab SHA512 0b62c741b73dd49dd9d5531c9ae749fc8eedd4a396c5b4c02b1b33062d56c84e327e12f5a984b9ca22c7984103896d4ac69899032397dd6eac1b737e0647e2da @@ -496,14 +662,17 @@ DIST rustls-native-certs-0.8.1.crate 31129 BLAKE2B 1148d6095c4fb23e72dd96c7c4daa DIST rustls-pemfile-1.0.4.crate 22092 BLAKE2B 9a776027d6e43a336ecfdd6713d4b1e6642378f81b73c97752563ee1d2cac5b3988afd48c92d25d55f655a6fa248436954aaa0e0bd9c7c679c987ce7df0cc99f SHA512 bc748ee06f2c101d8e54e8c4555e88c5ca824ac7bb0182f8e49bfe1fc66d418d2a3da8e454f3741697f491ad0c7bc8e924a752697023a191c1bb6eb98c48aa37 DIST rustls-pemfile-2.2.0.crate 25849 BLAKE2B dfb94a77fe9d86b17b0c6badc6b715f247e9aaf0b312bc9698dbe8d38fff281428ceaec2ec73bef8009667dd93536dda2bc7e7c49d194b36244dca38dd86d577 SHA512 1e69f0b72c6060eb0a54ec8a1cb51809525b053771a1d417892205f8f5dbcf4ba45250fc0d6a836e0cc8fede06d934f0a90c47d475cd8e066dcb3f7504ddaf17 DIST rustls-pki-types-1.11.0.crate 63933 BLAKE2B 487099180f45163b87614a8ba7088f189547191ef628011911f76ae6f6aa615b16e969682e26f26ce47f52463def702395f2a5dcf6a1742a87fb7c6d559a2e59 SHA512 60a6d20b66b15f077cbded6abcbfbc8524a02229209a3a73ed676a218ecffa26e375ab086247c05aec826ad63bcd9d446748a061191fe2ba5d9f35ec05b698fb +DIST rustls-pki-types-1.13.0.crate 65448 BLAKE2B 76c5a60134a3dbecff28c64b9df50b0d40681505fbbe5b1b2556c59376ad717ae198ebd16e3886767f85ff0dfb5aeb6b7a4e789f78c439f259e57d83e8f3c3a1 SHA512 95fc09a81d687deb4063b1029949f6829dc0c301be7a0a2c0bf7f160eb07941c76e936274f130622e9a8be3f59673de1648c93ffcd3b59b83cbbbd501eb18733 DIST rustls-webpki-0.101.7.crate 168808 BLAKE2B ab7177449be359e17f1f4553193e96e71b8e26e1298a0937af658b1a6f9485f051183d1bf8262d52430ea4c3b96263d1fd903c7a5f046bfe5f87b6b97ebb0672 SHA512 680e3d52f699c9d6200e2e738a4245a5114fc7122546c07d3f15f1e6741a52275061b3e016c2240f1dc3eb9f701f7346193bd82e827274fb73b8e9e0d5af4e68 DIST rustls-webpki-0.102.8.crate 204327 BLAKE2B 8db832f181b46bdecc419e1433dd5550bc181cbffa1961aa90b2533f92696ebe15d71d742225bf806e2dc3a4ebb110d48bf62b0677089df1eede6d5a072c0a28 SHA512 8cdd5d07bb8d6c3f0d1d6663babc3b7ccbe8c9b1463870a3dd095c67f46addf4097a715da796c70f1891ebc1d045ae7d7c3a352400e8bfd6687e6cddfd33b1ba DIST rustversion-1.0.14.crate 17261 BLAKE2B db30d01914059a893bdb4c448ed0bf04852085c2d948bfbed8819a1d2317c34133cf609abdd806ad628b86974a9c1ab9d09f79743cb8e13257ef32cd444f49c6 SHA512 466d753c28c4899ab3da3e9f3366f7ecc435d484f51e0c07acfa5f3367af0de27ea3bc75efda22159b4990c976b1466a27e7c31c834c72a87d8234318357454b DIST rustversion-1.0.20.crate 20666 BLAKE2B 49fabcf276fe3f59b4a1c2e8a07364ba59c5ba4e0a33fe4150ce2eb93c6da42d32ad4d4a197baf6616c1cd703d34fcf5a90186c5467c1656388d55e7962d01a3 SHA512 250be168a4ee64f4b85d78658706659122d5fbbc748f321fe2b9baf48c547de4f0004c87882642645994b7798077c514a44e06b73784a800d04e4cc673aa8906 +DIST rustversion-1.0.22.crate 21096 BLAKE2B cdf773cda21ebde50da897c0af0e4af14660ce953d3037054a99d8adc3db2dc6e30a57201a45676abfb183c62016a68069848e7537f711b1752339d194b0a378 SHA512 7929352df3e5279ac88cebb26ca89bb13c755f46986d2d1f514d18a3239a63638bf64f8ff153920569d173185d988d692ee676335afba0bf72d47f71babe0e15 DIST ryu-1.0.15.crate 46906 BLAKE2B 6d6949e43aaa27fba0ec6002fa11ba859af8d867f87c90d88413267186abbf6302b817985bca3d577ab3fab2e319e11756f144473a16330dfd8fc7b604cdc4b3 SHA512 4655b5647f919082a9b84b889539ae7fb23a1201057cf280efe79c58cb5f040864efb7812cda5021bf6d34838a15d173ac8bdb0fb9fa2dba85173d3efa5a826b DIST ryu-1.0.20.crate 48738 BLAKE2B b126085448cb58639a7b5867fe313dcaabaf19df478f67fcb6cf15b8e881a21e641878345e0bf1fea7d24b56b921e667fd26a39cb81fca7ea02585332068263f SHA512 329c581429d9b8baa7d9edd9cf20e23fb8002f339d9fb3d50ed4c7eb68fb19c1ba966d52a9c9602265ca5f59f2bd4393ddcb3a7ac20c64aee3096e137eb2a384 DIST same-file-1.0.6.crate 10183 BLAKE2B a320c8343e0b38078ba81c4f0159d886bf47764c74efe0d7cd2b3218426e8341b51e523c00a9e5fbc2ee1057618296bd70b576c68751bd55d6ddb352defaca15 SHA512 3ba35309742c8db63210d9ea78bff4ecd80471d69e6238eb96c7bf0673814f221e2d838fe6311bfc5a0e71b4a7ccba33e07859c0b9cff2171969ff08a4214a7c DIST schannel-0.1.27.crate 42772 BLAKE2B 55b3cdf596d6d490fdbc10298eed7cb1b1bb8d6349ac8700ac2e7db66e1d75f0a5bea5b1b322bf30cc0f982262e96aa421998151a8ee1e620b5a09d25ad4263f SHA512 f469d03c2be014c248e7b6408f541584f250a9d58bc8dd8ff4d1e63f5720cadba1c0579b1e5d97b58844fadaeff10e9cfae6d5cd33c5de0fa4ebe699a8ead4a8 +DIST schannel-0.1.28.crate 42312 BLAKE2B 702e120221ca71836a0d10cb2bcf65fdb84d6cc65a65bbe43474ec4981aab2d178798aad0cf6237d8fe0dd05a390c34a68279804bf407597630a143f82e5dae0 SHA512 087fbda739eeae4ed0729e59a3a7be14127efa657430cf8b2eaa4f08b4766f6c5f024106030b1434c6d55c969f0d9a2b63a6a1072cac11c806e1a89b9eae08b2 DIST scopeguard-1.2.0.crate 11619 BLAKE2B 8b7e9ed6cefef9ee55407fb9690d57a2a98bb93e5105aeebdb475a52485e9e185255249e1dce8f83cd80534e7402d485aac3efa7e8493b13135de27550cd4bc4 SHA512 6247719a15fe1e4e2d179127b9a934bd2f99367724f41175ed9522f58824b6bc69b35002eae66b35880375ff61d77ac43ddaa78cbde7160a35183a1da32d3fbb DIST sct-0.7.1.crate 27501 BLAKE2B 12f63e62f49a0ed0c5a62c1c9b42a83c1df43401ed1de85f993167d8fc52733908e58ea1fe76cd7ff6128d4d6046d7c0335434672ed1865c8ddb1b3fbaecb590 SHA512 6030295b3b11411f5a7e518db1066282bf11a279c27414c5e959cd430e9fcbb7358e5d69bcc68c8bf696d4c1d9579ed7218b7f9dfbb61de2271c4c3d3316fb7e DIST secret-service-3.0.1.crate 36343 BLAKE2B cef282f06499539ea9fe8fe6b9bbc63d081308bad914af3304ffb92196b502fb257293a012a04ea2caf5aea076fb8327009e624f37fe0d9a7b8caffe9fa06c0e SHA512 f5613aaeb09fbcaa74a4d2e21947b89cdeabdea30f85d73c97d1b7a4775c0f369314e56ff53cc09e2c0f93b7722b6f40022640543f878980c52f12400475a65b @@ -511,20 +680,28 @@ DIST security-framework-2.11.1.crate 80188 BLAKE2B 844d36d2b2216cc7055687110d54e DIST security-framework-2.9.2.crate 79295 BLAKE2B 96be139f2d2b9bc2fec7805c9e90f19f68fb6cf3f09a879f1d5952b502951900fd6889451c6866e53394859a0f8a842b4a674c4bfa82cd71f48195c0af365475 SHA512 fdc58c1c12ff849af3acf34208411caee50f30b9d55e20ef9d3922ee37664c606abcf90c4b415e5c22498dff2116fe2b2f374a0bd382c837ae7d281cd1a0a54a DIST security-framework-3.2.0.crate 86095 BLAKE2B 711c6fbabbc381ad08816aa9c3f1a66fccf05b7a3145a76b29845e4b2f059dfcdffa4cb6eea13967f3cc973744160d9d0e5ab8f84bb06b6d8b6d902f8058e01f SHA512 bbef2a7720ef18e3e07559b852ce3bf0651fcd0b8a93cd01b512381c7afc2782cd4ef1a61b29fa439aac630b1acbf3d6248749a7c3b839707f74154d131642c4 DIST security-framework-sys-2.14.0.crate 20537 BLAKE2B 50a04eda370788fb769600b0df2f984155d9ff67c753a8b138568c648fc23f90f076092c9a8f984aa3b6590c547171e53b968ecc4f80f6b7edb8cbbf23bce31c SHA512 a6b5a391450ad91118aff3b9d8420e1099fc9f96926043f5c4061a1fd615a00bb1f86f5a06b9a549f45b27a43b5f9ceb5a015d8589d7df258a77dd4b4dfdd7e4 +DIST security-framework-sys-2.15.0.crate 20718 BLAKE2B 886fbad71ed3d76457135e3f1bf2b866239ba05349e4932f75dce1aecdcdf25702ac16cd1727b10089fb36f62539a4ac47279aea31f0830a41f897c797fa35c6 SHA512 8207502201222d56de839285f4f2e31dfbb4e32d08f4932d3afdd76d8e0a547621b9bdacfa11ece5e7a1be0fe1c7e15fa392ab9603c283ce240efd61cde69472 DIST security-framework-sys-2.9.1.crate 18284 BLAKE2B f1484b6b691f3616192ab363c81eb3d6279ad0bae6bb7fbc4eadfd9fc6b6bcd5ce42fb8edab1eb8934f40a1d42714eeb8ca3616871e8f80c90318834901e8ca6 SHA512 3118d1e982d94c5fc6e8ad6270ba398da98a042c7a2060eafb3b78a54491091c46529bec30d4f871744431f01b828ba2a795f695cd20d008441839f3c4350462 DIST semver-1.0.18.crate 29703 BLAKE2B b1867f552ac87968d895c5e49123bcce0f8aa0ad384e421e5ac88bd04ae203ed6b731d5c77fb8488ec6601f1f02a8f2a207a9d21f1cc66d433032628f5d7beda SHA512 698dcd37b354cfd6ee452dce02d16051f23088ce53f0b4d099e1e4ad0f9350996f0b9b2e1c3ac7d5ed258accd92773266892e945fcae28055d4671c7ae5aac02 DIST serde-1.0.188.crate 76230 BLAKE2B 81e92adf17e3f2ce73c82e3069b8fd656211cfeb6755abd338b74d52f748f5bba6690abf5c83ea2a126fbd6187bc587b539f0ebcf621e928085876f28fbb9513 SHA512 7d42ce834bcd1034f8ccbcd6646cc93f8e189e344f29f4d7b0ab148ba11ce7848d0ab986dce7a0245fcd6893243f5768f7bc0ca9c24c75c53585ecc899d312d2 DIST serde-1.0.219.crate 78983 BLAKE2B 7e9542a04c7f1aeff95b821245034368ff1721d98d7138bb1e0a99cdd6436dc37d69606308834fd33daaea3a1792409b3b2305b802433fa1d155816c55ca2a7d SHA512 0d3fe9a47af027d0d79499e60d940661dba6e29e8f0ce47d0db2ab722030d255aff637248af6f893a9c4224239733db09ffcdc6e1923a7177bfae55c98ebe769 +DIST serde-1.0.228.crate 83652 BLAKE2B d1909d671ea6d5c2eb4ce34ee4493ecaf665d416111b4cac754b5d33b85f916296110bae7aa961efd987a2ceb4a31ba645752ce99dd28dedb9f1eecdd4d7b1b2 SHA512 9b645d6214203533b303fc5e88ad4f7686c22df084878d18a0209a92304a340fcb62fdde88a7080cf7a7348d47b9b363885c4e1da90dba08cc99ff620f375e97 +DIST serde_core-1.0.228.crate 63111 BLAKE2B 8a64e4627ad21a3d16dd37d53fb809d11171bf337ec16bb1223075cbf81b6b85cd1c8d19abadf42460d0fbea323e2f351eeb6ef823389d519121b74e68edb215 SHA512 43897e3a7ebdc85d81d1cb30cda8f0a11610f6f551529c8a21462c24fb83110652b462846aa3e1bed5fbf8b5d7927018845a524ee9e079e2c8acf2c687efd6c4 DIST serde_derive-1.0.188.crate 55563 BLAKE2B 3b24044915a704d9d8a2cae6e6547ecffea7ee3fd4260ddb2bf7fa38b23fd7fc597b61ac28bf65b9f0d45e18ffd6bc7596f5a3d602cc79835697fb3f5440242f SHA512 fa9132a319f7829e6afad65289031be99255466d76270875d9d81f82f63e53592eaef5452d0df38da92e9d0b6f2b37e91026635fff4bf597b0ae662b71b5eff0 DIST serde_derive-1.0.219.crate 57798 BLAKE2B 071f02019f829a2753769ce915d11df8f0d202ca67314fe83b42e1f1f3d07bc91b7e7c38fe498a0513714f80d3a3dbf2b447b1f85762de06dd021119801afa89 SHA512 1676bbf09e11273705a35c540d52d35d1bba7cdf1f347d40a364d7ae9269167f9f0f62ff4fa384aaa613c83e432a8eb3c016587ea643bb11434c00664a5c116b +DIST serde_derive-1.0.228.crate 59605 BLAKE2B 166ee2f9ff9f7a0928d0a65a72db3d9226c377bca2a1771956e8ecd9c7faf0544673c9c21be2a5553e621b55c74c7b958052592a1cf6eb6427a2d4f3e3dc6bb8 SHA512 8bfdfeee10ee7ef0670972aa963ef63b13e8eb2c8a09b9e0b717f92551aa89b3dd2a0dcbae6ccf20a1caece07e6adb18f0db56fdac020e4e0281b0d24e376003 DIST serde_ignored-0.1.11.crate 12799 BLAKE2B bd2f89d4577b483444aec5bb802742ecfea91760ca0e40f87a55f297840bebeba6e5eb784571c6aabc57c75989001998f5fd0d5b54fce4b83d2d5742ca573a25 SHA512 483c198d213bb06a68e41f5b0383a3c733cda93bef2c1f3ad4c547e7a569d93632ff17e34eea97342c9ae55d71d6535a50a10c0d7b2650ead03b18fb7bc9dee0 +DIST serde_ignored-0.1.14.crate 13078 BLAKE2B f700b8703d1e94a7701033c38a94cbe02db04736e76a1eaa46e50cded1af3d843befdbb01089ae24c8188fa1c16caef8aa82ba0d9affe6aef04a80d1e9a5ee62 SHA512 1f82a1731007ac95c9387b2b3bc62bc761752467eb871e7c1711bc6b15a4fa25f5fa26370fed67e3687722c904ac7e839317435938241a55981264c8364a97ef DIST serde_json-1.0.105.crate 146316 BLAKE2B a40b99ac4b5e9aa31a61c4f49f9f4dd9fad94946267a47ac4ba7c1bf3af7122dc410c8984235281b19a917b1fea088615c8e95b4f1aead0957c9e31f2b222599 SHA512 d4203d93ee6e8ffa0d88c21d347196b8d1496d506841273e992c9996019175ed9a965e9401ba63d48589133b13ad9cac6246b7e0143545778b5a090a48a31452 DIST serde_json-1.0.140.crate 154852 BLAKE2B 733aecfb88fc37de37b60fdd33a45fecc2bf0ac2165b81bdb12665de7e26633836160e927be5d538eb2056a799e85ca4a1008cbd30af23b72a594643c6015f22 SHA512 bafa26fd43ba30cbf73572b8203292b1f275995636e9dfc3d47954939453fe4ecf0c60f25d2af1ec16c7cb0e7ce3b96cc07507d1b53b7db566fe7cb2624f0e12 +DIST serde_json-1.0.145.crate 155748 BLAKE2B fdb06251cf3a18f2f3685823585f4ac16f2f3b762e528e3f815168a6d7991d384eb140698f9f5c39c4ce04e17fbe062f3f9c07cfea9915415a7e1f9046b6a83e SHA512 e2054b7914e6cde0c58e952d9c129f7fe8c55981b74a9700cb282480688868ebedeb44281c1e3ccef2e2a04a9a18fbdafc8a4d43169f4d09ce905808e4e056be DIST serde_path_to_error-0.1.17.crate 17662 BLAKE2B ef96e143a29c0af8490316dcae5cfd5e530bdd0a630ba3dcc8fcd9bb0247cf90efdf566e24042022e6b63df0df21b5643283ed8361a5ebfa0858121520c1530d SHA512 f4ff71f7c098a3136068055d0e5e6e12409d74406b58c54d0339ed029e62b421d8b42cf8f37a44a21977648540a7de1e669c709de756c1f7baf88c8205f6ee36 +DIST serde_path_to_error-0.1.20.crate 18046 BLAKE2B 3f182f9dc568e006d969f8f4827f44b9dd1ee6afc0f96d735683d6b04b27b09d8d6cb677e740b0021c6a4ce242ad53fed505feb7ce3f4ab8746e68f65d867672 SHA512 16f4d8cd50c8684be35daa12b12985e2f171d682e165662d6bca9967816239f4f46f4600f5a729dbb51b9315201713029d9dcbff2da346581424fc039039a473 DIST serde_repr-0.1.16.crate 9629 BLAKE2B 0d017d4018be91dadcd124033f015e31460d54bbadf511d19c55c7fbb63376e705217d2d79376aeae5a54fb7a6bb07fbf982741e0dbac0273a7775d340c692e0 SHA512 a465f7c6bbf728150b4e6cc26d3b6ecc9b80dc1a303ff473308b57dcb898c832e7f89f825a9ad88997e50f18fad40ee2bd8afd455f92a68ebe2ab1728ecff5dd DIST serde_repr-0.1.20.crate 12627 BLAKE2B 64aa318e56628fa7d9777f7387e66d122454008fd1f296ed29b4fa7f4ad4c358ad981bf7d093f3e3a5ac8aaeb29a9a62b0c11ed70983d82ab76897dfbacb9394 SHA512 0b47cacfd34f914acd48f443b62247667565b12f2a5bd5b80f6474074e08bb7a3bc85b8711bb3d45e17003c181f3366da6669382cfed6276cfa88b6ea55c3e68 DIST serde_spanned-0.6.3.crate 7737 BLAKE2B 957352cb24d5cb1173613a48de7e411d768c61a73dd57572530490be0569e133e7c8eb62ec34e542a17010871562a53e37b296386c54dee8ea61d175dd0b05e3 SHA512 5c4f4a861dba2af7f0ad0c585859f845a7ea6c0a8ff8b63985503c9da27f313ba15b904b0aa56a59043c44a87c75fd317b23006a3804d332b84855189e436610 DIST serde_spanned-0.6.8.crate 9330 BLAKE2B 630bb2cabd74e8d9736e315ac57c4d2c5c4f72264aab35ecc8e0040cb4186885722051a9f7b8a9006fd121fe58428cbb151e5cf541e7de30b6528c84e968f7ac SHA512 2343a2fda35ff57ed8ff7d8eeadd651821fce7e22f91c2d5797c6af7db9e009b7d637382f6f390c17911912865a5aea1ce87a86fbe36f4b6aeccb065a4c8942d +DIST serde_spanned-1.0.3.crate 11011 BLAKE2B 95c3bd4717544595b6c376d20ea169b3a92ead2437cc7b15b8052412e6b79225bc407f4ff20aafc9eab438f9771c3fa857d84814249436e57868c502cb4658d1 SHA512 4021188c75aca535b6726c4cf682099aba8e0f08c7ad5bf89f2dac719387000e74d9af060fd4850968a61df8f3c4f3c9bf823abc6375dd1c9b14fc7e74bdf971 DIST serde_urlencoded-0.7.1.crate 12822 BLAKE2B 38c74ea862f041828467dfa586bad9b8e1d1d64a9f82fb7f98727e3965377d00e59f2dbf20955a9dce976b6911c0a619d2a6e4cc9dfc73cf0f6c449d873fd072 SHA512 b209ad01b6565e95c1d5b431a3f4f8a0df3d11c2a06a44123048bfa4b34ebb6807eec593f0c1c89de3a06ac3786a14747df9c70b4f4d5e4b72b4feb53084eb60 DIST sha-1-0.10.1.crate 12018 BLAKE2B ea3d41ab252d2d0f857326fa4e21c0ddedc80864811bcd3bab19d4cc5c9a48c7a94379f1d64f8bea00fa392fe977f535b2019e234121b4fa145b9bfbae91d6a6 SHA512 325e98435b79b88ff6e835e665ccc8c386a0ba9ea17c7b05e8ff42f0f5d70589ed2e874dc4ab60b45c7f7d67a896ad051dfddc6efd90bab7f3c165f9f964e8c2 DIST sha-1-0.9.8.crate 14029 BLAKE2B 80fa6903880ee36841375345d1763672ae8c3b790965b0bfc7cec7ecc69744be3a35a890a6f52b2a25f9ed1b91ce6986dd04b00ee455563b00218f8acd4b6ce5 SHA512 d4708a762d5f3dfd902ed335f0383cf63b442f95b1aebbaca3643606ed2480060d2ed04f123d0c44496147ecbb06a093980b435f9d3ff9e0f5c908389736aa9f @@ -532,6 +709,7 @@ DIST sha1-0.10.5.crate 12146 BLAKE2B 476a0c365ab639a0ce427856787595865a60339fd6b DIST sha1-0.10.6.crate 13517 BLAKE2B 85ad8dcd237125945f6f9c2d7a48bc9802dfe8398a2bac86ddb96763486092fa18e80a2e69f89cfd6e95599d34d60ced33b26a68cbbe39bf158238a79433584b SHA512 fd37be7e3f1d4b6addd313a36b55215fb70abd21be7831b71de28bd3eb03b7352817d8a7b1a166df002c3a23eadc8224e49edd4a37556c0e5357565305d4128f DIST sha2-0.10.7.crate 22541 BLAKE2B 918a8f4042c57e4f8931d645ba758f6e7da911d02482c78d6ef3a12e8068e7f3a08526580824ab548628fa7e75bc64f17bb12f1ceb167861a781ab9813eafbd4 SHA512 c33d6bdecaf49d0f60276531e845231425f62d2ec18c4d53c43e49f506a2dcb2548f5866c6642806b6b64f008a481c48920b7b4fc867df7443dc31b44f297fdc DIST sha2-0.10.8.crate 26357 BLAKE2B 1d01b381223a931dc631ad3a1191f5378b1d2f3f9f20474c5f020e366624c73b08330ce8dc4bdd3e63b15f647276f533de655b545b77f70fbedc1a1846f44f0a SHA512 3be73133a6b7690e14acaead47914dc92395dca4191fb657a2ea186fefd0ccd94d12a1121d63a26027d9a9c62b775c53202473edc461587b9dcd75472af77785 +DIST sha2-0.10.9.crate 29271 BLAKE2B 1d614e0efe085cdb40e05726578a9b4ca6bce93f6d3324f5dc0444cb37054912cdaf5d28d468eac2c0046030d920fced2ccd006953b80865ce8a2d43ef3daa81 SHA512 963adeeb4ed8b0e7fc19085e8721ea13e9b3aea5d115ca1b3dbca495ad14810c6450991dd3753807c293c415aaeb1054b8b4124c72e7090cd9e86f09fcbb4f80 DIST shannon-0.2.0.crate 3503 BLAKE2B 141db8dce783af786effa0955963d59dcd07ca783043056d38d1738a77b8b19a88fea1e0a9d0d978859764134f0ba027702bc5526138086c6531eabe7a8a75b9 SHA512 1357ab46f32c4a732fb5373166b1fafce53d1292f6a259d770c1514686f39af9ffc2399dbed405c360270aec8ba6e2faeea3844fab385f3b52bd2b0d29b0a3c6 DIST sharded-slab-0.1.4.crate 52479 BLAKE2B 766d81761909006ac740cce13e8361734c3c7072cd07c8c8f611f09772e16f11aa93cabdc5273b9446f5da391b26b7e7d619be523488d8b3558c64c18f20d591 SHA512 123a9ddb126d1adf41a30a632604264d66a06bacc497db6373e9dd36164197f8321f2fc826a16247674f0f69d9f6e30aca37810f787693c4a5c2cee8c5887c55 DIST sharded-slab-0.1.7.crate 58227 BLAKE2B 9b4c4e4849ed324cf48c2b905f21139d1d65aa5ab13e7fb11817cac9a32ad09f8dbb1e50a93d40cafa0aba872792bc92f7bd2e219f62f80695409e949c07978b SHA512 3be7438d4a75debb14463477f34de6db1ac38abe958ada5d5dae7ae8d5993e245da69fcb989d91aaaffda5f2b085d4bcc88d10e07ec567b7f40a21437de6d4cb @@ -540,19 +718,26 @@ DIST shlex-1.3.0.crate 18713 BLAKE2B 18800c364d3a628f1a3125097ea82fe6286550c2997 DIST signal-hook-0.3.17.crate 50296 BLAKE2B 5469a11485362b4a76f99c06071c69f6cc083bf4cceea93fce0b43385163ac3621b7a3c98d18ea1fb9e1439460ea37f470a29bfde9dea199e60a12b248be5d25 SHA512 045ac6268e504c5561d3884610a48c930dfd936086f793839f42602e92e4a8cef289955776e8eba8a5ca1a91b5f27ccb3724f49b32091f8f06c8bde984d82298 DIST signal-hook-registry-1.4.1.crate 17987 BLAKE2B f1df8bba55c72a506b9210347f9dcac4d158948e73f6d1e60f43340ddfae368aff1bbb6a109af326af47246d9738d49f76d380c52208efc3c6f79ea0acd31f0b SHA512 e83acec2b0083967555f6c659dfaacc32d851a9485c9f6f4b4cf257742ae3ffba8c14708c75f1a5520e9d132ea9e21d6eb65aba492eec481e8492af8b798c5d1 DIST signal-hook-registry-1.4.2.crate 18064 BLAKE2B 7274d4c115678eae2640a709bf9d682ce867c1f6295a0c5f49e492f95dd1c457f20b56207a74221df1fd9d744b24c6260e28f705777e3c7d47b7bdd36f1d57fb SHA512 16362d232b1d301007c069198d7716848aa73d898ef92e050422b36c09001b4334390dc95a6650e5315377fd8960d4336e5ae869b0a305e8525e977b8327c508 +DIST signal-hook-registry-1.4.6.crate 19277 BLAKE2B 0ae8056e09cd2a036cbbba5d654a480e58a31d3f39e2654e991c03f628e3c755cff692c4bf984f8f033a30085abc9fd2164e4d31e13c5e8115b61deaf83e4886 SHA512 58b60f104bbc529ef5c207c25f1f9805be08a5162c4e4c7ebbec486834eb39882f6be8d6e8b1dc3cf56774ed46aff2cd22dc69fc9c22ef1f2cff6e22878f9fec DIST signature-2.2.0.crate 15531 BLAKE2B c584d9ad52a1ab3cdc129c36cb2ed6dedc40a8d49f7294352a7df8121dc57de78268f15d9ff9ce076abf1dd3c56773daa26ed5ec39c83a600b6a377b51d4db37 SHA512 673a8f6229c795cc8f640fbfe02cd912b41c6359ca23c5ddeb1679f49784b84f109c6c45e6210201c9ca05e441c1be64ce6537e81ccd3589b37be6d0bf50dca7 +DIST simd-adler32-0.3.7.crate 12086 BLAKE2B 8e0ae18603b344fd8a6573cc3fe1f8594ad542619a6e0d6e8f62e356a3a97409f4de3a215d561b8ed0e063ab431d81b63967a5a0b6561c45537a27ee84eaa362 SHA512 2976bb7fa153854ecd0d68ccdc108bf81d5da374839d53ce9dfb27e80d8db258bb817ea3dac73921e408541d75e2797b6d20fa63c42c1e8a935b6d75dee14bac +DIST slab-0.4.11.crate 18549 BLAKE2B a4895b6dc87790946621e1d52b5bbdc0fd78db238d9164121a380f298b85be94eb3424405067e3a6d96ef42747680a8b2b5341373bf5733d5a62a4ae383fdd5b SHA512 b2f199651b1d0f0eacca534ac2da714a2e9f642608c4874e7a1440ba7f035d061e117f518c51915f982befa2269da747c9e12e3b0599675e6218cdd8e30bfdcf DIST slab-0.4.9.crate 17108 BLAKE2B 8e5288c4d00efa915e7be27b55f2204850968624f0d8101c091a357131106bceeea7a63c98007420c12f67893dd2228b15d3f23508108c3a0ceaa605474bc7a9 SHA512 b6b5423ae026472920f7c9a4abe0962314140a36dc562c0a9e3fa60725b2b8b7a8b343110d9d4c0e18fb318b0103e14c0ccbc9ae350d5563a5ac80c35f228c40 DIST smallvec-1.11.0.crate 34680 BLAKE2B e54d56f6bbffbfa7ce5fe5f04e325b2e5cf19d290e4be278bc00a136e26284625b9c18c7c2b10b7fb8fad0ea7e3770f3cdbcfbaa913f5ac08d0a2f8b4e0de188 SHA512 41bfbecbc2c244497568a41724d65791ec3fd6d8057813d521367cca316c09c2b28fb3973826236b01c1f5d2f905d8d22b0c3c47f957a9ff5d7685591f15ccd7 DIST smallvec-1.14.0.crate 35561 BLAKE2B aa8ee61800a6d13eda5acb4e9dc03543160849479a96a72c50ab38013b23e9593a665773b455a09777038edd436d7a35b501f6d4a0e16ff49544be60345a1e50 SHA512 90de38f208f551cdbf4980fda2314dee57d4e2bbf769a01c47bc849189e9243474932052faa92fe0ca59ecc9c5d1ed84091ef87f724343d38ebbbf710ba232be +DIST smallvec-1.15.1.crate 38116 BLAKE2B 8dd779d7726694672945e928399e0459f4973d284a6c2d664c2fc757ebb1177658f47c812d9800e982479cbd7413fd4283c64a4d248ba5cff6397f96b758676e SHA512 c26b097a063353beedfcc921129cd0fb838c1c9420218993a05b2655b47b6ec16f11e0054312018658b4abd893beee140c5d2739401a5e5aea2e64575f237047 DIST socket2-0.4.9.crate 45421 BLAKE2B 19c296b1b42839086793a29234f604a6c94ed1b9d30c4eb1ec695a76acfa266840f482e64b4ee2d5b4520f70849fbaf88984020ac25ec393918b89b2682d2541 SHA512 6cb2aabc409fc7d9942afc2073a36ad8730c06dcdab1866b9d3d72dc55afc643be6a2ca1f38c2e19fbfe782ae584512a1ab357c0f4974f98967a4f489e65331f DIST socket2-0.5.3.crate 52588 BLAKE2B 03692b67f27530670048db0920e26da4d95373a3aaa81ffe840b09e73a5730e2cec4fa43c25e63db0a6164c67d6fe555b0fcf1c9f7ce6a231d2972f5224a4d50 SHA512 63cb78d66b057587e4b3b50b9c618db1a202102c72b52b79c2e9f9a401dc1c28fe4523a0f6483b38ca8a3d24d1e2fca0b7176d96fef6ec1b922ae7c4afacc324 DIST socket2-0.5.8.crate 56309 BLAKE2B 309e5a0e46d0b9debbbd6049a138e56b82df4fc0e9d1115745ed935eb40c81b004ad748844f641934e13b5b88773db5cc4a57fc9e61dc82b5322fa0232110864 SHA512 b7d03608a3d4cf3e2d1539b5a375412effcc96279e8f57668fa8cf67b3f0a3a6b611ea5e2e72f282460582954acbb5364320611f7798a11ec9e4833e53830b60 +DIST socket2-0.6.1.crate 58486 BLAKE2B 990bc645f361576edfeda680cd4b6a0a29d6de80bda1164954369aa572bd702db5d92cfd26e68842aa0978df351d9b52f2900a4bf1f6d4aa5bb0f31d259ff48e SHA512 cafaf371870a8d85bee30d1a8341c25ec023f6031eaae96f783f0486e2c9b0ff7a6d742d40500f9c772472805d8de9f36a163405a476c57b254249992a5477de DIST spin-0.9.8.crate 38958 BLAKE2B 8648bf2e48fc618758e3de67f0a493bf3cd22a8d18666164b0d850ed7c0d73650f7b0af783019dd361116bd60c61d24895cdd2c579383cd2700de0e32a23cdae SHA512 b15ad66ba9b308937f34ea166b799676fa45c67224e10cb57530fe33d2a8317ff3e3db3223a3249fa2862cc141c964d2130d3f39910a86ac5ef8aaf8ff4bc6ee DIST spinning_top-0.3.0.crate 52579 BLAKE2B 752f3c6a341c658f7b6486c572a2bcf294e009df8e347095a9f5bcb6cc7c2be565417c48a33a95e6e9a053f250ac9850f11e8288ac30b291a0147c795b4edb65 SHA512 53290365999d2c4d1304400d7e1b03072f87c1f2ad6efde48ba3b83a45e6d2d71720bb5ba52099b57f6bd5e823ec7727a0c2e2dd092816a46bc5f448b6f29981 DIST spki-0.7.3.crate 16409 BLAKE2B 6b39144e4e718ce5eb454e21ee89fb936ffd31ec99554b0150fee47bca396bdfe4ef39603ec029d4af4d8c4c3ba2de7f6c549244f8c20114de9b43ff14921681 SHA512 d33a6a7844b33c37628024ccf25c1a631f7a6661595e063049b8c9a9b4edb28f0335397faefc592c6fc5e96378b870ab5dab9b0649c3387577b2370ec8210db9 DIST spotifyd-0.3.5_p20240513.gh.tar.gz 86484 BLAKE2B ac269145d534153ba72c8621cfc08fda394ced638c7f65cc76addad72c173dc3c26feebb1c30aff0efaa4923b44e7c2ae8e5e8a07721ff4c17913778a0882c3e SHA512 bed095542d1192024d7220697a7448b2915dab3b12a35ef132b250441b100a634bfa4a69bf9d29e5b3ace75f190346996059d9ed2d417e2204bf25b9a9da7054 DIST spotifyd-0.4.1.gh.tar.gz 95319 BLAKE2B 3657e0cc266a3c49d012d4dfbc678c44168ff572935f2088d99bbef6b1363bba10d0089c32c9d8ed9aaafa2843d4b7fb3b74ffe5004413cd667e4aeb0a2169c7 SHA512 8a0305dd4ad203747fe3728b092049f7581bf0417ac4622e8806a590fe3fd85d969f09e971d4e267bcfe56ece5bd499e8cb90d3272718d5b311bb702b95e5b5f +DIST spotifyd-0.4.2.gh.tar.gz 96642 BLAKE2B bf61c133252cddc79ef492836a99da8ab099527f0dc508f8ea29d6057f4dd4ac5603bd4e38e69f748bb3ac7bb14e03341377cfd4889f0d8c3667e85562518303 SHA512 03a28037db2389a9415cde985dbf8c639c38d8000da5985178833fc5250249da5798f426e9b6e89c18762ff2d05b1331590905ef818f1430fe1c7e2507020898 DIST stable_deref_trait-1.2.0.crate 8054 BLAKE2B 287a65c3e5b47213544a43e57c60a54add60b4c2e3c8d042407d860cc950ba7ca01a2e67ce56aed6744992b61ec1f9aed3321e3d88482e33129548b7d51df205 SHA512 a13cfb22723f1f2cf089b2d07d657846f50c37bc0438d1a76096bea30214cad226b7a422c21f9e191ce87071da8a141d61882aedf9e0203a5fffdfda86a5fb03 +DIST stable_deref_trait-1.2.1.crate 8186 BLAKE2B 6408959d169d1228c1b0802ef31c850206405f8259168f169aabc91f63683dcdf347ff0e74fb3535ab05d7642889dd2637afbdea389b43b0925e0d6cf441ed67 SHA512 630721d3f8e9f3290efc250c42aba13e2325839e62167a2a611618c18c6aa58c08a53622db61a9aa920284570626b98df26b3c28009cf45b6ce1ec134b9c9f5c DIST static_assertions-1.1.0.crate 18480 BLAKE2B 358dd5ac413d06f62da0388e2016c5fcb8ec68fd7dceb0dbbcb97665c032b7509b7e083c20701648b6a9174485f117c02682ae4bde7ef037e80a85cdf6a0c86e SHA512 46d0e35f77941dee6f60f574c130472248063dc38494c1c4f84f7c048244cc2a58a86fe17c0990e3f0f01406b75ed385a13d00058612b27cf0e867c8d31c92ee DIST stdweb-0.1.3.crate 90221 BLAKE2B b8072c7be865327b47facaeac68373ce3085474d7a694f2e7f371024b5c4c0c616b8215a75e71b72b0e7aa534c9f8172593c7ec648c32049288ddfac1b0764cc SHA512 d7119427aae5d37336b8cf0002bae9c0d76a87a6865dbc9cc4c1f9abe64efe8d861c149b3975c6b3481a804e20be4fa28619257c233d3ea3d550ebd550ca5fa6 DIST strsim-0.10.0.crate 11355 BLAKE2B bcb25ad0a7284e24e4f17ebe0ccb621bdc4118e499b50b094d98aa7e8fcc0b96716c9953c3516ce7ea78309d41d424892ded595259696a5bbffdcb07802b5c2f SHA512 78b318532addfcf5c1ccc1e14539e258aab9d3cd893cc45d82342549bde838c177d90f13c560671f8f32929af47d0b467db35e6876bd7697d8b3f9e055aeeac1 @@ -565,64 +750,99 @@ DIST strum_macros-0.25.2.crate 21964 BLAKE2B 9069220e7adaaf9e87687a710ba372e5c36 DIST subtle-2.4.1.crate 12630 BLAKE2B 05a90232bfdc2cf67522e2972bddcd8dc9a165b1d1cf775d0b1c8358fc7c4d0559b2b899126b6688b8ef77b8b7580b3b300f74a599a7ee77f99c064a3917693b SHA512 7fd8234b7ffa3ca7e473539cad958df0842186e1dd735905e0d4977564f40a5f2e18b58180fcbe52614a00964dc150bd9f6964500847ea658f22bffe030f5c6a DIST subtle-2.6.1.crate 14562 BLAKE2B 3cf4940b7a01f04715da1057f6a92b1043a6b86ab2ee7f9fee0337b680ff781201d330409460f6f90b3f81bb5fd4b563e17c762c6e824ba3b0af99e4ae7d66bd SHA512 f5946ebd9bcb8776ee3446abcbf4afb3cca5d8bd847cadda87e864333ac7ded537a3efa773e9648adf20ce4add2c1da85172cff88c1e1a3a6cb051401b00c6bd DIST symphonia-0.5.4.crate 12039 BLAKE2B 9bd9230cad0011a014471ed2e01160a2ac7e31383345e7befdb7e7d44197e12d8de86e9c399743760f79245d85214b6ac99a1209c06e899d1e1044e6e32f6c60 SHA512 fba7aee862ea3225790d6e527f7253a08c3d735e4d3eed8812c551b2fe180bec116bceb1f4718ffd1af53e48156b4f4cbdefe75657ca1487481757f7e8cb9d13 +DIST symphonia-0.5.5.crate 12085 BLAKE2B 97d2ae0192ee5a13ecd1e0acbb7d8ea9deedee630dd5e3527cf2ac5ccc6ba1945677a9b7dc4bb66c8ff77fc82d0c9dc57f9eb66c2afcd25f221f9d5ad587d73f SHA512 c76d10f0d3a76a5dfc4dfa738e271c6e970398437834b868ca83aa66bd8ec5ea9d7a7d6b29fa92e541af2bdd417875f762c26568207fd6c0fae13fe322f82de3 +DIST symphonia-bundle-flac-0.5.5.crate 24141 BLAKE2B 7a57bbff8af4bcaee1a30c5860837279050a2ffab5465243c2351de55635c5d0c9d181367a7cf51948a0843eaae73b53834260f0e63aa7e86eba6be9b7b67206 SHA512 e5ba2e5b7f3a614f7da63f5a4898c65dff169e6f33c0c88798638e2106ca8e4024bd2d1f527cbef362c10895047d45671e92c21f7f81f20bd7e7541864810526 DIST symphonia-bundle-mp3-0.5.4.crate 60104 BLAKE2B 1d7a86ee6092c706be3b622326615d161a48aebf16dea96768cf986fc9f7b295a59fdf85b47495d3444e05667d619940220df8c73f7f5a114897fb4257ff2c61 SHA512 19b2132af39be9ae7d74ef0141a637db0a0f3d4df6405331bc928a6bdffefd783e16fb75f60adc08e0235034a9862228355871b30d2adbf4d412a539e7843d56 +DIST symphonia-bundle-mp3-0.5.5.crate 61019 BLAKE2B 250d14a11f5b0a9b9c51d21d2c80b7f712b571f66a59ff1420acf57ffea5fc8dc27eba9692990b0928e6a538836996e880733487016363680e8ff09b3a9da656 SHA512 9a4b673fcd31d6a87f3bb40281bafd7bb31efc08d7a78e62018856f78a23659e38569332912ed77c7df3869dbe98d5236dbf1cc0eda788c5040a239f10ea80f7 DIST symphonia-codec-vorbis-0.5.4.crate 24651 BLAKE2B e1704d8b1a5687e4e77a183e3d0b3eaade81d1efa98245db91e179abb81ec0f255c7d2189c16b020c95483d6f758392585c6f7954c45951c8b9b31a9a58e6e0f SHA512 cce05f54deeeb7e884dab34ccb3e456b7c86afd85853501706f077a77aab07695ac08a126f1032be30f02a15b0b0783420d02b49f0fd06bc8e440834849021cd +DIST symphonia-codec-vorbis-0.5.5.crate 25527 BLAKE2B e5648e975a73b207c528ebc1d688ca01219a8b0134d5059a6ac7361bb27c51a3a9cf0fafd1efe036c6afa0497efe5d76db35f0c2d5270476670ce4c985915a7f SHA512 944a6fb5c21a62dcefdf77fc58b84b977969b95056391b453afc217c5daddbef44bf8eeff1c47b2194fd918b54751ce449b6087be93463d3fd4b45aec4c1d1b5 DIST symphonia-core-0.5.4.crate 98029 BLAKE2B f65a92cbde4b91865d088c7a7727fedffda325450281ab98f8ec93b1866d88e2ae6ec8bb25ced31a716537d664298f82658914d02c729af9f9bcad0bfa8bd160 SHA512 3f2265b9eecf405d699779d66014017f6654452607e62462bdf7914fee51d812c63773d0d22f78fa099df67a11aef375bf1859258ce1ecfb07a45c175c686888 +DIST symphonia-core-0.5.5.crate 99682 BLAKE2B fc96fc637043c4f542eeedad82cd14c0bab4dba83555c6d9fc0dd9efa4b0bbc86e2bfff19115104383a32266b4d0d502d17fcff733070dbd003cff7833b6c1c2 SHA512 59509280609c5cceaca7be7dde0e88a7a632a678684e7c475a54e00e24947cf7ba483911ed5dece55bc0b0f39454b7f7cdf95d27e635d8eb52ecd11bd97925d7 DIST symphonia-format-ogg-0.5.4.crate 23239 BLAKE2B 3db94bb0f85e447813f5fdfd4fed856d026e28a295c5f9465fedd473e51382fdc78f583abeae986aaed9cd9bcd37d768232ae0a0a0ad1e95db5b9a0577b76bb4 SHA512 f6f2320d74cae36c47970c5de3d1534a58025f9958f3b55ed598723f1e63fca7eacbe219396fa224f78c1f7acb297e6e9cf4e9665c015eea24db1d53d6908d45 +DIST symphonia-format-ogg-0.5.5.crate 24285 BLAKE2B ef7eb20f37fe1061d9f3597919a458204e4d790d887f8e52f674612ba93f2ff8e8c2a04180fc0e51db41b33886b36d2ae335685569f8a48a34b6378ddca76b79 SHA512 a6970dd007e047f41e691d3a4c5412d0f856faec09caae54dce8427370bb2329fdd9ec1a456e49ad211abb7237d7edf47471998b606d46f0aa9c37b6c7a0b629 DIST symphonia-metadata-0.5.4.crate 23343 BLAKE2B 2861b684047bddd0f4a524be213fc15b1287d9301563ee862a1fa69f50eaf6df07357616c33ace46066373c55868ed7b40655630051e0215ed230a11e2e34d20 SHA512 b1c0f37008d7ef5d21f7da5a93fc68920c0606d9745e79a7f0b9120b3d92e5fcc75a67bb5c0528c9647730fa4212b6a589e3ac299ce3bfa5e9641c1de0bef18f +DIST symphonia-metadata-0.5.5.crate 24184 BLAKE2B 4cef3d46405fdf6085e4ae3ae8401c42e7c2c7739d407c26a813157513d64c742f145eb5269ecdfef6ee44a34a6663a3837f94d90e40a605c6bbb5334c287c4e SHA512 3ff0291ee444ec73ce33f7f2ac7c792ff852c53f84ace1f8c3cb83ce2d833cc8628953cb71a2b3e0e792da0bbddae462880570851b79f3b53710fcbd872b4529 DIST symphonia-utils-xiph-0.5.4.crate 5787 BLAKE2B b9b90436f7cf99b9d7b648ed59be02d75cfb5348835b05e47570c2f2df953f1ac815735a92ad1bb503b06df0e433147b420ee743c8e0422269f3180e849d781f SHA512 676a59abbef0cd19ecc498d40b7ace86fb11774889b5819570bbd4ef6b973c3ee6b7570c8ec1fcfa61e19206d7dc2b3360cea1d6068ed460cfa40466cde83439 +DIST symphonia-utils-xiph-0.5.5.crate 6617 BLAKE2B ebfc7d1f5db18ad2b36fb28039882b8c771c6f142e760daa5afe2161441ff136c760124d90ef6b30201137d8f491d6a01b0b3ff82bec0581403096b36421c1f2 SHA512 7cb07ddf4672a659736b8b9626978623a5f29b7cc5fdaeed8b2de27c64400739aab796e79436bf38c49c5bd827b8b94093fb8746d6b09fd693e81603057676f7 DIST syn-1.0.109.crate 237611 BLAKE2B e827445d00c79a8eeb91eacde472f1987addd6ce9e1df95d7abf6446a77ff4173a8006845f3ae71c1da47193cfb72e0ead9a6d6bad2573be12c17e90735d9ad9 SHA512 12816b9e8cf984024b2fbce9f0ae14cf94d4d2c06f08cc54fb793ce78770bb4cc1288eb7df0ba5e8e937756e1e8e295c53fe07a0c5dde1ea8ddba03b6203b37d DIST syn-2.0.100.crate 297947 BLAKE2B 50a9b244732eebc16464bef152bb620d86aba590942b0d68710d36e89c0ee752629be5bb8db48866c7d252d545ab910625891a5a9b499ad9142191881eb9b42b SHA512 082a975c6448febe38abdc0b43ae929a97a303c0f980ecd2bdd6c44aa2b39ee5aeedf6b1c84316cf088e0d97aff011ec0482a5242ddb338dcf7db5d55926cf6c +DIST syn-2.0.110.crate 302184 BLAKE2B 68135017080bbdcee324fc4c98a719d70f9abe3f0a0913b82ad5dd96c8969712bb50d1bb387ed5e60b9fb64e69d6a1e0070361b4c41bc7c0804a4b674099222f SHA512 f9a393a3edcb49d039926bafa46f8befcb840da2af80329eb8b0efa1a2911e5db3e531d1866341f78cb4c28b7a122a07e269263262ff372c27334c7988f536e1 DIST syn-2.0.29.crate 241664 BLAKE2B 5b339433249d7ee17b032cc9ecb118169957d91f438619940aeba0003ab0015b01cc6afb00656b5492539a5396325ec16c37e33764b00d6f9b8dc6b5b5e6a9f0 SHA512 a6319ee743a7690c7858da8492ffb6a963d102beba07009e82b08082d33ac8e8ea2675bdfc3ac3684392b3bc3d7f2624983dc508dd8b8f1fb9a57ec8a5b82828 DIST sync_wrapper-0.1.2.crate 6933 BLAKE2B 0ec797ddead298a95bde0a508ae942a4e90943948d3c1e4833fb3ad1cefd3566b7fd1aa0b133d614839707e3f416e3e739099ac73441527213da81b6d1c47d50 SHA512 ca7cd7a6dd242fa420e8dba820117d85b1b11ea6a9fd99c92a5a260f12263cac0c034c9f9fe10090d5830fb5bf5eefc8a5a0d0b5a40f3f809d69e5393693d5c8 +DIST sync_wrapper-1.0.2.crate 6958 BLAKE2B b2e162f982ea827229dcff468bcf31c6286c57ea3491a909784cdb50b0ba36c3a1a6fbdc7b34fc2aa9a7df1d174393d61ea9dc7ab3439a5e1a1884e2473a70f8 SHA512 aa314a6ab3ba028d2a169ea55a50eecf3b73b475a81c91330430ece9f1734296562627a8c32fad51b5a26796931f364e2803b3a13075ccd9a0aa614d5220903c DIST synstructure-0.13.1.crate 18327 BLAKE2B b29ee88c559a2d58fa46b7af155b448f001649ea79a1898f0ac87e69108b87c65cbd287d8f9001f360df7fef06ff39c937b48d33e487a30c8eec6a46c639c0c2 SHA512 09024193b44fc9a8901bda845b9f86c57dad65d0f53e309b2e7e968538fab6f67db1c86e5e52a2eb8fd116dc073e3ad10983bd60764662ec6ba94fee22a958aa +DIST synstructure-0.13.2.crate 18950 BLAKE2B c475f370d901a371262f466dd98e3914dd6f36aa473a33362866c0f781d27b1813233f96b02208f3463a825e8012cab0f8872eed848d9aa0eac88b581a0d261e SHA512 2698f4e80b93f7cf1d8ae97c4c42a7f61e7b7081f7f1bbb94d7f48ab7ae813a666d73c49ba3812cda9155e0138b55cc246fb96e5858e411a8d32bafb3e2b2afb DIST sysinfo-0.31.4.crate 182989 BLAKE2B 311ddd7c5e13e4e69406282ee50ad88aae4979f3ede53c764a12226f4b78984fc8736ccd76923679f6d3bd82921336e686d9d3c02a7fefce56a19cfd33f4daed SHA512 9c40515b892c16687c942e5184b019784f81c92e693ff59c26001b39e464ccba85fdceb4994a91f79fba22e9e8c769b14aa89972c572fd26797e0e71243bc579 +DIST sysinfo-0.36.1.crate 213643 BLAKE2B 625ccf879e32a6baa0d6b7c03e3510163243b8de6d075405465093345a18e62bf07fefbd93e0390b88c7084a9548889a2e567864eff9a8197ad7513051e63b82 SHA512 fa87cb8a3e137a6a9fcb5817d914bdce77983f12e13f9877d5138bba6cd34d43a4f0dabfa9e69efe33c43636903d7459c7416de4f9747db669e03e8d5d95480e DIST syslog-6.1.0.crate 10000 BLAKE2B 2d1b6c3a8c7ea727bb46d2f22656c64a6097b67ca830e1b72d942e4e2c96c4a12aae46e0943b0096f8a65fbb53f8e89023d78d1e20ae6294e1535ee5415d1430 SHA512 b3de1ccd8f4ed33da9974b3034d525ae7e44e29d9560482742adaa664b6466dafa524ed763a77da9c0d1726b33486a1956e1da39641abc0b99e3e166d180d1ca DIST syslog-7.0.0.crate 12968 BLAKE2B 383cc618e5b1d5732c9391b317966d48233c5b3675053c476bb454a882326deb417dcbb73e61f16831ce32aa20c3a6d50be57e47b89431c125f7d03f482c7cc4 SHA512 2569c97d381feea99e5d63e1944f79bb57658ed740fa15ed90e2f1f80ff0efa470027b24d5606f1cf3ad3d3a679f2b69f66b84d0b8afbcf0b20603b3b0fc775d DIST system-configuration-0.5.1.crate 12618 BLAKE2B fa75a24f8db6eafe578bcbf162fcd110ca059c58af24916acd64959b48d8541e0aa95ce2c929a8a50c62e7e8a967de9101640d1da7805fce2f76b7c5c86c4544 SHA512 af77ed5be890e826b9b8f975bd2e63f3905adb24a597069a887ff2a861820f1ed40582b918f35c3d4eb063800e179b93e5acd7d5b48b147e9b16e3cf4c12840f +DIST system-configuration-0.6.1.crate 17935 BLAKE2B 9f4d8f60b3b000995b39f9c3a2ab56e6587293dd64c26558763203bde641adf57ce1dc5107b4f73b392daf3997038309e02b3da8c6bb0e4beccc0732becd0333 SHA512 ba7eddeba87d22206c250908f0158120b4984750cf7b2b8d57a50a32b323d3346321c8f2bab726c1d7ad97fc5da0b19d663c0e2db27ff74e3889463639a4ec89 DIST system-configuration-sys-0.5.0.crate 6730 BLAKE2B e40c4b5e7897cfe30b2fb6daa9b44fe2b83eb2a12d798a1ad8908b51abc735566becb0e001f52f5f8a0d3596f62a9eec631341c3a9cbd132a4f650f988c74b93 SHA512 764168ee5efe1ba82e847ed74a14d1f5f1892735e98657c3ecaafcb4b405d4f779592dfaade252f6a577ca2cfd5cd5e467c0b6326bbdcfa573c3ab01cdc8fc34 +DIST system-configuration-sys-0.6.0.crate 11090 BLAKE2B 2bc38fa55070e33e762cba4baa7e1f5a637e625c150a821bfdf99c60d08343e83cc26a302f4f70a44cee967bd8b4784caacc15436df82d10e05751831b46c1e6 SHA512 02b1693b8c18ae3484e366a7f7395a31902a026e0864a8ffc7643c7b4a856f912f58f2ec19ba52a50d0d1dc09a806888fa1f3222e1af1f65b8a16eedcc966234 DIST tempfile-3.18.0.crate 39574 BLAKE2B 4399653f3c747d2b70677f82f6fbefd8152785c5c3e31c854adefafad20d62edba536ee8e0541dbb0225426127bbd4c533b64a7205b6fbc65dd9320e8ffbb75d SHA512 43575905e7958a7a7713582a660ca84e508863f354f7cd1446072f13e4285ee9d283571ae1654d991160e865ff790d741f5187ea2cf8259db938623a9cd4dbc3 +DIST tempfile-3.23.0.crate 43063 BLAKE2B f799368de517d83a5e42505438565c9d16217300d5c5f552e2789de4edcd493474d1d9a9e9cfdb88a776f26f403a89e0f436308b2ae7535d9b377b7c652f7cae SHA512 8e9f84400f714209eb713af5960d1de501c10520817299f0ba2fd53a7c5f0931b60d1053c2c84820aa627aa94bdefa1b0e82c787784b1960170930f0ed2d8753 DIST tempfile-3.8.0.crate 31720 BLAKE2B ac975555bb4957f91e7d5733ef737bf25c62a738096457afa05079ed038de5e7144cbfd0e28bacd3eeb832de611616fb39ec07866481205c1f5c1005b2869d31 SHA512 8bc8e954bc0c6af46cf6e77d70f93583baea39fce54b111f4bba51fe5d5e5c184753ae2a2ea68a882b6ba5a157a57aeffeecc3e3cae86d78d952f3aa025fdf7f DIST termcolor-1.2.0.crate 17917 BLAKE2B 5ca7802b0bd29495bcd2deaddcdb4c3ff964073a373eaf39964a24ed91a48c5c33e192d676099e2837064df3149fdd73aba7d241e9aeaad9887bf1bcae9d38f0 SHA512 cf1896523353390b2f90b2a8bf30f47da5fc7c2daa635bd0cd8059bdc73feb243e46e4279562fe45d5726f2840833b1e967c7de19ffc0c853592d9f86c0c1be7 DIST textwrap-0.11.0.crate 17322 BLAKE2B 257428908342774593bbd3528fcdae710712ff54e8a711393a24356d8ba0e16e466a4b20c05f942c48ca76b3b5b5aaa90ec202f782cad892caa8b71ccf124da6 SHA512 f5c0fe4f28ff1a3a0931e8e235b5157a45f67967985bcc752418c5ec3481fca44a8ae4800088889b37e8cd0533f53d3c456d5ffd19b767b3f83a87b49a2e209a DIST thiserror-1.0.47.crate 18811 BLAKE2B ea2da26fdfbe3d9519942761a9fa8a7c3528a170846c290a111a33420dfbe6c3f114591e3ad101258ea2a01a756ce4710d7b46c01b40011e5ea01cabc37db189 SHA512 fdb128982f0b0a6d83221bfa6b274431a1008a9727c82d55a8cb2770bb85d18842e6b26b90885fc0f00801b157b96de61fdb0f72d98b8092c69181d8ee67cf63 DIST thiserror-1.0.69.crate 22198 BLAKE2B fdd8ca8c8ca78702377d0bf7b253440519018275b105db980d63229d0d44aa5c39a703e14aa6fe453c779b3c864d8044009dfef893d2a5294950f067656d7a80 SHA512 ef50d2867d965da1dfb29d26faf6de273b5fadf78f95313f6caf44d68bfc610b9bd4b7544200b05bb0861231cfc84e961007f8db83c7905244c492037fd31899 DIST thiserror-2.0.12.crate 28693 BLAKE2B 1145357098af4342f8d5f5cbe329acee408cf35b86ea97a0cbdca1cecd18a67f4798518266bce21f154a8b3baa0291b7bfd8edfbe29879364cc86e76e7c714d7 SHA512 aeb6de221b28443adba6a03337e7c70c54f99fe9500e39f904c3a8e612d895bc65025fb72c861890c7c011595d2b36832f4b642781847513edce1416b30f309c +DIST thiserror-2.0.17.crate 28857 BLAKE2B ea60d7597439a703f50faf77dfc1cba7cf4ee5c9f7a28b9c553099fddf0534be55e484f4d0761639c845596ee4b4f2b273169cad6c1d36e1a06c775ea79554d9 SHA512 1a20ecdee9e0cef6f4af845255bf7664c77f55a8e6d878ef9c398c42d6c6f6e3deaaf606d7739df3a157f55c5be8bd0ae1af9e9bd7a66cd218e9a6268f7fab91 DIST thiserror-impl-1.0.47.crate 15080 BLAKE2B 4b8084ae885160607905333dbac2287576127992eeb58293050c46ccc2abdc1a04f85b07db35846046d9a3e7e94ffc7c8912bab37e4eb9a5290bd55df46d0d02 SHA512 b6b73e9eea058492c45d41a70d5ce491b773f4747e171b794577f996f0ed5d76562338a18105f82a6733e1e37954aced4fca78d5f66c05e6789c15bca5ebffe7 DIST thiserror-impl-1.0.69.crate 18365 BLAKE2B 51663251ea6ec99c59aec35fe73c5f9760809d6b6b7eaa8ecbc8f6939acdc4d0ebc11f9034d9204dde7bd689d5e8303ae0be86e298745e9ef96825bf73453a08 SHA512 579eb796c8885feb01d27638862823acd96c79440655bb444c3445ac00121852603396ce7439aed617c0a0ac69f62102167fde5845411c906997574a46d6d9e3 DIST thiserror-impl-2.0.12.crate 21141 BLAKE2B 091cfa822bdf6cbe0730ac0ddc19c6102f6aa341fe68b18f335588f1166d9a0d34278c73e440c657b5890689f2c73c3c94f4d07abcf7bc77ac2139ce6c0bb555 SHA512 01bb00310cd8e80386250469ee7be2cb8db7ff4883869f8ce2ce0de1742292ed4e6d7fb1d7520f1e2555e72044309015bca84dcf058bea99b8d3db970cf0bffb +DIST thiserror-impl-2.0.17.crate 21344 BLAKE2B cc54f1423307f64857c67eebc2ae0537ffe9ad65a0443ba31c35ce20a7e4de96ad29a18237be48fad998e509cc4262e1483d4a983efc606b6714ed11bab9cd1e SHA512 3e1185fafd0c77acf6f79ead5633ff756c55e88f83285e10e2dfb9e58155b3c1c1b637a0bb7cd5d36a07cc9b014401942aa5b0709b6387e44d37c2b407e012ec DIST thread-id-4.2.0.crate 8551 BLAKE2B 6d9914f41d5a264328e51ff5c80544506adcbd3be308ffb63f7fad7406e280de5c6d1d5159f3f6bd7662e3c999130af2778e7660a3dbeca7086943022d44a332 SHA512 0c9a608c6839b6261a653d9911e92d9e3793823510cf389c9908c0b9a6744fe49d3d3a9612316cc4d665c439e3b62386fab30f5fe9509f29e7a6912902d4004a DIST thread-id-4.2.2.crate 9230 BLAKE2B 07598f1a9f30ee38f3ad08d757d3ea2f84a2a21a614a15785f4a3a1970c935ea2686ed74359ba04bdfc29963a36785743359997d38e1c921517cc8b85c376489 SHA512 f67ee525d118a41270d45de609dd020d708853a6dce4f2dbe181ccaaaaf75cc7e615bcb37c05dd7b5a9bfd08fbf1ea611fb01f7fc171c56f8df13c56faffb49e DIST thread_local-1.1.7.crate 13585 BLAKE2B f497dbcdfaf7dbc8b4b0dd97f77ba93df15b63303e7894c9032c9822a5b8111e0a21db2fa8cfdce5a503f70959ac9cdf48c840b925bdd850dc15e8436ba72379 SHA512 3772452c2a349fb564d29bb06e13c8ae64807db27c3ee217fa04fd0e9847e94adeea582b82ffc2d9116f31ff478eb088550caf1346c263de49b55fa17b431c31 DIST thread_local-1.1.8.crate 13962 BLAKE2B fce2feddaaebde42bdb83d814929868f06387a4fa25d5becc73ff0b983395aabe076268569c6a89e2d90ce6e68d2ebca7c3e0ba1c9159c61b32631ce39289a9f SHA512 6d7e3941f43c43ac091db5d1cf2a8a3892b54b0634d9200426eadeb82015566532f04b6040085dbdcb10580ac724b6ded8416931d764d795a5f923aced66c492 +DIST thread_local-1.1.9.crate 19315 BLAKE2B 31151ebc58e76753ef8c15a8b283a2b3a8f833aa4431ff1a28612d6a700088315839abe09a6d582ae0dab824978e2d2b67ec00e46cdbbb4c962fb72788b5368d SHA512 80fc2548bae302f22de10d8240d0701efd64cc41eb48b06234426d40f0e05716132e08a8bfe89e17754d61fee37d3359394cbef8e16af307dbfa76e1524de7d4 DIST time-0.1.45.crate 28911 BLAKE2B d43e2431752881f6885d572017f461b304d07ee5ef0d8b4898e62b47c8154268839c3bf69b141159090cfc0d90bd0113d6084fe99ea1f2b1e20668528ce21112 SHA512 e643fb8649f3efdaa1b0b6abc6a140d55ac550a55cad99d0cce9415dc51e155fb1ea240953eeaba5dc47ec73c49ab7f2962af79c693436289de0eb3ff60985ee DIST time-0.3.36.crate 119805 BLAKE2B d4da96368ab8565373d034edce261e0d8867036f2ba87e84b5e4a506a70ed3b62b93ba10734aecb39847e258cf7008b6ae57f92df8d0e5229cd3fec488d14caf SHA512 83da6e27691d1f0ef37ed276528e927686a06dab4811b6e29d625ef7a0f7c30fbb86896d74a2b087726e7a24a951b0a83aa1f5f22d711ead54f447d36ac47133 DIST time-0.3.39.crate 139037 BLAKE2B c78b09d53b337bd4c8734444d12da5c7adee600cc3e26626069b3b58174895ad874459112b913b563e29ff281d71ce3f2c3e85d29a3e2034db0119ec1a1c5620 SHA512 320d7f3d5a3145fa5452d492a9e0a8ea8d5fbf4e61d138cdc87fb7495c9fd18f139da7eca263a1b9c809cc456a6bda7249a6bd374cd88382a12d53b4f1b80a1e +DIST time-0.3.44.crate 143200 BLAKE2B b8b17a189a5aa95177b63aa303421aeacbc7172aa82760ce5b222ef82a8b083b9ae63746bcacfa9aeaad5caca5c398c818e5d761499810f10e9e0fe48369679d SHA512 c29f40e41e963df4d6f5407d892a98ccd148678e0cbf1db2ec6cc60f09f210822b7e211563845a4944ec290af4971e0fed3e46cb5192473408596d98583e2e6b DIST time-core-0.1.2.crate 7191 BLAKE2B c477ad3410ff29f3bf4a38fc6ac4a043d49b6d2bdf5cf309ffcd2eec3bb6e4c4b62156ee7f069f0b37ea31c163bc75ccbf35abc1db2833cdd4912135e60ddfc9 SHA512 3861724c23cb806829a01186deb5217ae8252c20af622975264e6670cff528f42155039e4937756a9eb312a5580ffab07949437d5504d684a0e70755046cac52 DIST time-core-0.1.3.crate 8002 BLAKE2B 18d87668ef52e63ac3153391b8f9c375ef4e9f60939480d3d54df6e0fa13f20f371dc38407186185c8e98188aab4fc0ba1a093c5efebf0f651cff7100e0ec61f SHA512 d7d492f10f49f2affbe90af0f177b35313d41d2e14fc392dd3f508b8e452f339f61490526b50260db57635abf305f501004d4a31090a2cb6a774451cdf440bca +DIST time-core-0.1.6.crate 9105 BLAKE2B bf34fb3ff2afc5120a394129728c5e7806084df16f04427e3fa70104c68de414da69addbb651fac60923248b37ee146a0e73e124542369c6f68fd5fda9ecef2e SHA512 135f25c99620788a8548027c04bfb94152681d291848b69650ff6dea3aad42fcd974a2d0e5ede8b091f37d4d80d97804e1aca70f353f5970402ef545a5f1d407 DIST time-macros-0.2.18.crate 24361 BLAKE2B 09fa325be0b1a5b922285f035484b0de8e339306b49595c87f6374e46459d6777c6db4b12c1a0c6ea9795ae8c741188fbb81208d0499a651760b9f5089323fc7 SHA512 557786115add272290be8305ab79c44f5b4425b64eb698492fe300f15879d9e013c66933cae8aa8faad9c109e2917e7a0e43c8a5eed7f4b0f0fdad092089efe4 DIST time-macros-0.2.20.crate 24416 BLAKE2B fb5f6dced727effbd524c535ffaa7ba9b4be7df3bd5a0e68daac22f9aea17763843368a9e6cde45f0cbea87646d3137bece92267766e9f32f142c614b8cd712f SHA512 90faa7f4d65f1074824081a1a277cb37b66316d7dd26530cac2eb516f14cef455c58f369da816d3022c61caaf83fd866eb768c6a74978bd9d645eef44b026764 +DIST time-macros-0.2.24.crate 24715 BLAKE2B 218371c56da2522ad6b664039d7e4bb4454a0eaefbd76afb6d8205d2c3dfb3c9873c2b8bf161e1ad144efe6a64c69e8dc0908f4fd0e6287c9c9c6f02840de3d8 SHA512 a9ed3dc956bd9a16ff6c76ea4614709912c33104a7c607c43956d644743b2dc04ecc257c000c6ccf66c026e655ba439250d1ad47b668a12e769e30e069f2dc10 DIST tinystr-0.7.6.crate 16971 BLAKE2B 33a248261c4cded41a81f0d6e6c8df55437f042b37f235c39787986ec562f0dbff50b282ad0f1483daaf49c4b33e6618e139a6677d1238c21f4e12082562b4ae SHA512 a33051848de248cac0a2d151760a78cb3aa62c787d84ff7aac38b11c0660e9188e4d43d43a77fb8676e49ac6102015e9c3db057848d809e71981851875d0fb25 +DIST tinystr-0.8.2.crate 23942 BLAKE2B c84593349183f328d3df66b2ceb3b5bb9ccde3b9c082de72b7daa2845ab2ccfba9ef170a712f41e5ccf02008c018b456fef0ec380eed93f020605cc9b293d287 SHA512 21416092df2692c3f3f3efb9f1e2d124389162fbbd1038d244befc419347cdc686cb01d6bf1d589bf23fc6f69e23a94522bc7dc81aa7a2be74c697cdbcfc8501 DIST tinyvec-1.6.0.crate 45991 BLAKE2B e9699d4d80a78978f0ebfd049f5b33d7f23d401cf4f4439ccb168e8c0e322473ad0ea7e2ff0ff69e9aac3e5c4c9ae5a7102185533bfbf96dbe77b3526e700bc9 SHA512 e5acaf353c58c60ae5556130a934f1048abb79cf6668ae467d308bac44b689d8a9997227ea879f4b5fe50f29cde8761801b088d7149bcd063b973056c381921c DIST tinyvec_macros-0.1.1.crate 5865 BLAKE2B 2bf4f68ca11dc19c72232951605a4c809b34ff38ee365ee4f592a3c41360e23c9330cfba961e2692a0ad568fef4aaaac51c40808d491178cf7a0c4b5a1c5d484 SHA512 10008c7b3a3d50c94b9c370015b76ee082f5dfb6dcacf014dc2f2dbe92f903618d10d0202b21f48fcf98a94ae76fb712db55a5e8ad353645d378cf0e6ec74f7e DIST tokio-1.32.0.crate 725004 BLAKE2B 80dde8073cdd361c8e05a8ef3b0fed0b4ee56c915ed6c0adde4bc2db487e0dd60a3adafa55aa9a763d37ec992a27208063aeee6a95b594b2e5b02e2bf65da9a0 SHA512 c7a64e08b4584b52c98118dd07316ee3bc0c2b405278f37bce58c512072c20268df66a8ab553e4d3bd3470753899ac3b1df4b9b5411743dc0e092fbc2d9b11a2 DIST tokio-1.44.1.crate 830115 BLAKE2B aa5782eb5c17671154aaa5f306cd97a7f47c298b0aebbd9641183796a77fead391c837986873e27ba617e3ad61d92af050ea3e1bf269a7b6eaef508d1571a635 SHA512 41250b12a7fef14026215f098eb5aec128c83d601cd6f005943fa06f89a096a384c0a5f66c409d26281aa44b0039598d8b058ca86d9e58d9a76a780a58db7d2f +DIST tokio-1.48.0.crate 843434 BLAKE2B 4a2e3221f6820f2b092275fceef9bf295e35e445d81238f9f71679033b499610696d8882da118279b9cbb3fffb2383afbbf9cdded910546933072f70e77ffcca SHA512 7e275ed26e857d42255dd27e8704bcb0a5daa8658c5a00f9798f4522265006a91e04d6a06512a87f30e0ad090a1676c03d3b02fe8d60263e4ba793940a85b98b DIST tokio-macros-2.1.0.crate 11472 BLAKE2B ae03d8812bc2b8f833e0ca77f1df8edeb8e0476c06f8f5104fa632ce77369ec54a80ff3da86439192971bf2e11147eade3765c447d76238b768732702004db95 SHA512 e2a24c1befd512d68b5d8b26a3f1d940dd10bfe0979b5d61a71052478d9fd19b28eb7bcbeaca4cf3c9736fd3da0386c899e3a619f47c2d9f7e6b497140586b9d DIST tokio-macros-2.5.0.crate 12617 BLAKE2B c30d0011173d246dc82a5c24ba97b0ed6b66bd8f19b0977e0305b03843b3611528fc5911b632d2c46bd22b8fd2e8488956bde0037c322a3ff8b7306e72cb9bdb SHA512 c1d24cbb8b3f500357e39f93cf139790e4bd3ad1657dd5d695f5e4f9a2a460cd63e8c1c32a36b64d3cadd7b6467e59ee34cd5b1548a99449d8e46c2db83e9ec4 +DIST tokio-macros-2.6.0.crate 16505 BLAKE2B 9a6ac1a92c2ca1cf2a51b7f78e4e043e086f595f3d7ab3d543b6d16df306721f56ee3e02b87f568374fb95d8a06dd47090169a3e60b749eaa2f80551dd97e490 SHA512 626e2dddbd80cd4bc365a93dcd4906752c6a1d0f2698daa007deb64596f518b420e5a0374ca415044d5c8acd247a83e3190ca5611ef9185f46785f8194d380a2 +DIST tokio-native-tls-0.3.1.crate 20676 BLAKE2B 4c752179aab8b4beaa6aa212dc8d9e4a2b7c12be0dbf80406f20f92fd12844a3390e88a1536875596ab44774a67ce35115ca4622f9faa977c80c4261ab4c06ea SHA512 bda2e77671e030a021f628ad760b3fbdc26e7483a5f9ef6c6892ae0fc38b538d52d527805c020d578079896d50fff0bbc036a87cc91604904840d5b7dc181914 DIST tokio-rustls-0.24.1.crate 33049 BLAKE2B b061bc5895b9d7e5aef96512667673ac6fb813a4524b1f6620af9e2598425662b15b5e07d3896499b8a24d820462d15b71a2b9cc804886d546c8ac5957f28529 SHA512 93098f34d117107214e2e80e0e6c030423850ba160d1858b5149c165643700d308dacef7723e45b79fc911ba13bc1bf363c89ccac047cc6636e48a9a5a9502fa DIST tokio-rustls-0.25.0.crate 30541 BLAKE2B fc85306724dbb91efee7924340e0cbf4557cfeb149cf11dca84e37ca96e6ca54cbe774edaffdaf313da11af98ac03cca23bb7c2ff6ea551f5328a3bf3ee9aa02 SHA512 4e04669ecdd8235edd438075e6b125f6473e117adc2ae13ceaee7668705e81a87f97242253f51dea204fa1bb3b9f8f9f21b587b4edc7c2e58e375f5537ee5f95 DIST tokio-rustls-0.26.2.crate 31655 BLAKE2B 44a569a4aa8c13f2153a18ac56e6ce6b5b9c9adb4ba6d94c1b9579e340233e614cd61da26670f74080c870b54e0d7f5f008692120a823782144cbe42e97bbdb0 SHA512 c0ff373e02c90704d8bff39b634d118143bcdb3d657e491d7d9279bd5a0a166541c759b5a26f5348fecc4d3a1f11c8ce3127df217137f68c57db581714bfc735 DIST tokio-stream-0.1.14.crate 35881 BLAKE2B ae77512f93bb58c33036c1c0e7b8f29dd1d56274b6168a51b262c39184f0a3d366375414a3fca2a7c6c836f618e236189fdea3dbec39a861155409ffc9a77d3f SHA512 b600ef2dd90e0f46d21e94cd04baba91ec3f586832125cc2f51f350b47e7f9cc1ff5bc7529843347fc60043a61243e5b846d8db8406014969a8935385f161303 DIST tokio-stream-0.1.17.crate 38477 BLAKE2B 9b8d7307ad8194145ff8afe682874d9f4cc7b06a11429005912dd9bfe1bbfb980876bf831b7d715552bc86ee18344eec331fc18c8871681d58171abcda7252e7 SHA512 c44c5da6f916ce128e8a13025d9c3e92ddb4c82d2cad52bde4bfb982e6f83eb89125b616f89f2fbbf9ba8b7f800ce46e33f43104a59153db2e950bc2f0d570c4 DIST tokio-tungstenite-0.24.0.crate 28904 BLAKE2B 09c4549b80762d155ccfc474dde1ee242a2aa704b557ddb9220cb09ab902119faae1db3fa8dfb5f6661c53189923a6bc45e431a7282cac448d88ebfe28295d37 SHA512 27fb548fac3abfd5e3aa96df4dcf938095629bc64d04488a8fb56a436ea8ed1d82e8cf248a6d283042e339cc08cabd23946c49fbcea2e6cb6e6e39beb2b408d3 +DIST tokio-tungstenite-0.28.0.crate 29876 BLAKE2B 778ddbc01e85a39f6904b11ec7a58be4bb546444f90b0990d3d23824d94702217cf87eb362c3e8bd62aa594769911640b27894bf0d9f4ae60a60f513e32becd3 SHA512 108aec1d0705c768c9b5840d3bbbb448c3f6ce7d7ecc492ab3fb97a4cd16ed2f007895f8862bf2eeb3803cc50f9878c64505e047beddd69dfe31b3ca25538ff1 DIST tokio-util-0.7.14.crate 118861 BLAKE2B 77ce7e2a6eb3bad6da00a4614642ed8493a9122e096e81ed5c529706278b8ed03ff732df2d8ae053f82407942fc13f23cb4b4eafd040a31a65450db73cb0d171 SHA512 7a4652f539acc7b7ca7b726e63279a5cdd2863620f0e79c7a643dcb4ff1d1778a1734ee2fc02759575cd651bf5ecc1d0228562693d62c02b5795bde3f712e555 +DIST tokio-util-0.7.17.crate 133898 BLAKE2B af5c60f835cf6140997624d092768e80a04199e088f56acaa6900b0e1d260d09d652dc493ab99fbd3d23f7119cdfa5fce00068b9b2657aec2ffe76c834cfacc4 SHA512 80012252a144ccfc388a5f5e2bae022e72400b9ea797aefcffc65833eaf16393a86602b249dff8243c92f447350ec59ca65b6f9bddca32bd8b5dc6a5cb5dc296 DIST tokio-util-0.7.8.crate 101644 BLAKE2B bfd0b10b2ef7d1264262f78e406aaab07a1e060885dd7d9694b3cc34b6ae9f3d46946bbdc5aa3dbd0f6164973fc3305b20da04f37176250e874b3259860cfe51 SHA512 7b1501dd224b4a6749a5296751d83e6d57bae238a92430c32017813ab82c358086a555fd7d34537cc944c240ba73d4fb94864a5743dca05c138f834d45ee245e DIST toml-0.7.6.crate 49220 BLAKE2B 805bd9928fc3d05a1658188d4b858df62347cc93bf870a3846b9509c1dbdfc4123bc29a26019efa04e98699239ca7bb95ce63c802badffd86246266cebc65d7a SHA512 e51c49af63e37d1682892b84e74d48e171591c36dccb26e26bbf136385181ea9cbb94809b8900eae82b15e1cb79f844ae1cf0b00f0a6ac3afd5ebd02d554f9bc DIST toml-0.8.20.crate 51095 BLAKE2B 8e46bf5b667fa650883fba759efd1cc524fa758eaf1b9124f73121127cc72c0ebefaf64edaba6d249d7a9d0d81f75295d335f68e4e88d20949aba538a2aa71a5 SHA512 c842705270baea3e62e3b0535485f15af87e9a1b26dafb7945e1918e9fd59654b83316ace4ff837d84739d2dd1fddfafabc7d7b0c3ea1dcb9a07433a8cce72f1 +DIST toml-0.9.8.crate 56104 BLAKE2B 216327936f6973ed5f45a4200253b1c48f3138f993a9207c057fefe0540793f79d285731396462f4f4c95f5a69430e52896f574492cad760058a1535de81462f SHA512 e7ea1ec2aadc2bba833e9c42d3b2636a5d77cef2fccc4147fc327db4d0e1ac39508954597b040bdc88af4d8c9294334f12ea48ad977550087afa30778fd3b53d DIST toml_datetime-0.6.3.crate 10770 BLAKE2B fc1754eb7c3a7073cfe41e5ccba152ff09891a8de8afe38991cf2dd7b93aacf07f1075fd24d7aa643238cf31e3df1fc3162335b2c475438178b4a4d8a2055471 SHA512 cabf5dce24ed3bf4674008743180a21e86286d999cdce79f934de48b1e1fe0f16a7f3d2498bf059acdb823b51bc01986faf47139f8100ae272e6bd19095cfa9b DIST toml_datetime-0.6.8.crate 12028 BLAKE2B 62113366771f22b437b2ed0d3bb2489ae9078cb589cfad2ad2e92c81ddbda48f689e5a573366eea4f54c2b3cbc6b37eaa8b442b6d935b631a992de4917268757 SHA512 d38b98db3b2d4eebd3001d88e2135b6fdbae63b200f7e900c6bb9c121dd3f170e557332bd26f237312c1cbef61666716b0cf550c2d730f86fa7cd9eb5f64a16f +DIST toml_datetime-0.7.3.crate 17827 BLAKE2B 1e2f419d7338f27dc2f0f3d9f484a863c0dea555e4510880b6c0887654b5a742b1f4560d9051cafd25e9af024a92d99d62736423c522bcb86356bcacddda8bdc SHA512 feb8c7559a7e14aa2d52fe6236a406feebd499b03c37e1dc50e5a116a43d317046d5b6ab6326a4193c066692e02ec9d30104991a501d9d7347ceef5cae4bd520 DIST toml_edit-0.19.14.crate 94875 BLAKE2B d11328357d66d4139ac23766ddc84985eb9e2ab7eb5ac5b3639be2098938596cb69c28150589f24bd404c10ec2fe06e0adc207b787c3dc869472eff15ec0fa2e SHA512 87f432e0f6870c2ff1476fd1dbafae8cfd736ab39436c1c60627d60511a65fece8c07bd9834d68a080f6969a256430acb20381f210b775c281764b183ec57411 DIST toml_edit-0.22.24.crate 106399 BLAKE2B 7a28b08a5eac9c9d43243173e1b87f763127d4685f07e4792cb7bdf3d871faafd183129eac29c6785718a48b7f8e8804a9a568ac7d0b6af26c5fdc53e37f1475 SHA512 67798e7ec7b2cdbe895b0edbb50f5fcb86a11acc674605a42795e15ee5ceb8d1a3cc1249c6a914b397574ee4bcb7ffd7417598f766c6f36215ab5f5761134319 +DIST toml_edit-0.23.7.crate 65946 BLAKE2B b35ee1f5310cf8028bf16822f34de5cd6e78b671784f4a1c8d33cfd6343e37e7c77f2ad4a91fce8bc6a64646ad2a2f5503d5c2531b9030357041d9d93cae3378 SHA512 8af6803b22d9eee10a2b3d40df739f8e5825778b5d2b31fd8d8e395f65c61bc32f1ffc06d04221cd15c885146cecdf64265997061e30e8f8d5a21ac386864bbb +DIST toml_parser-1.0.4.crate 34978 BLAKE2B c0951a7bce851de56273dfc51e83925e7eb10005038a173d2e0084c503f3a41cf74574519876e64ff2683953ab29ca3a980eb32fc54d7dbcb7d27662d40321df SHA512 00416ae9ce4202855a0ee4ac9a704379d1eb151ae0e9e05c8d3eaaee06d97bbe427a0fe668a4134ad38382b1e248659f575bcf50071681d55dfd609b64908370 +DIST toml_writer-1.0.4.crate 17146 BLAKE2B 7715af600465bd322b59095fbd629b58eff8183b88a2c844561a034a22102cfa254c31329e7162feecdb48fa8daf34c7beef13f927265d1364043fc4ed83885b SHA512 92f058981fa8685bdbb891838c5580f8315f70d69fff565949e1ca1d00924370ed4927052ff145b1867229a100aacd2dc8918f102001053180755b2544ac3eea +DIST tower-0.5.2.crate 109417 BLAKE2B 414f17e97102224f1fdf23a03e6aa958e0a2d6cfcfce93ac3f2e911d68267aee33aa079c94540626ec3fa895e1780e6e5d18b4831f9f05cdf3e8c26ff73b7279 SHA512 e89c4ffd83fec3566334a4c4e9151ddeabfd3437269afc8bffb46201391bc1cdc82cbb97c69643a30f8873e87c511ad9aefc6c081241a4419fe315c99c61ffce +DIST tower-http-0.6.6.crate 133515 BLAKE2B ae9db0b0860a4f7dbec94d9053dc2d6f539700226e46f901187cffd47f04b013e8e241338edd4a47bd009419b508315855e3ec7bc0bc68e0228f6058c3b697d6 SHA512 30352ffd99f5679c858ca2ce518035ad1fda674040e1fdc09e3d4df3db4caef3a4d1a917574b3c1b5181a41955414d2a87d3bc14ff169b244006430af47dbea2 +DIST tower-layer-0.3.3.crate 6180 BLAKE2B 20435102dd62113c3e961bb28d7b18ac6f8ec6d5f0051f511e6f5eb044b20016f247ddd1b8eae9dc9f1ee259d8cc31e0bbddd26f5a22fadeea4007a3011b8500 SHA512 edf36671076cd29bb32c29351b648afbf3e7134316988a697c7807db62de7a63cb0339e4db7c0f36ed60d8aced7f3e493318cccc272070c037b01e2dd189b934 DIST tower-service-0.3.2.crate 6847 BLAKE2B d4571704eb4bf7f729f4535a04b7eb94f644d71ba8c5604297843351adf4bcce7ff64ec4e5435783ee6ada1b0a5c97726cfaade391525c6b2bca933cd5e8ec19 SHA512 f4578421603067fa708c4ad9eca5ca096b5262b6d51a404f37d9fbb6c64f027cec6114991e4b7f8324cb756c033971a384f1804add28e00d0cd6b2ee01d9e005 DIST tower-service-0.3.3.crate 6950 BLAKE2B 32ca66bff783eeb015af982b539acb63c9d426b931832b27aa45088382712df3894132a9e6e96fe1ed9d0f9e582b7a25b33e0ab73711acb06b4e134e69158452 SHA512 770cbca46d8500ff36fe84a9a420beb84a0e893dbeaccdd93a3970e746c893b5d32580182ef3017662f421e4b2d71f079ed2cf1727dcd5fc3443a4484f9b43fd DIST tracing-0.1.37.crate 73888 BLAKE2B 60c74379bf84d7b152f0b4d5b4d4669a1227dce0f3b5c10210338193853ca332de7eed3cc3b6160ee3719da7fdfe565665a887f2f82fb1e1c716c421048a2e87 SHA512 2116045f51b35e90fc933cc136d045d09c0aaa33400a9056051d887fea2d2982b394830e4d4c3bcb4b831e62b9c19f6c751c2d216169f663aa18c4067aed7d75 @@ -630,19 +850,24 @@ DIST tracing-0.1.41.crate 82448 BLAKE2B c056d938e001654e03efaec7a11eb8ecfbdfe9af DIST tracing-attributes-0.1.26.crate 32060 BLAKE2B 80e96f77194d90c324867155a22ad4b6831551ace5832434eb83268cc1919b5aedd7d193e00ce7b8764724d446bbcf0f94d01a94e1347321df8eb6858c4132c3 SHA512 ddb9f5efb33627586cef49e3bd45d45b643cdc0e280c970a32f92c8ebe3bd51428ee395c43613911e23841ffab36daad322f2a874732491aaf6a95bd5035fb44 DIST tracing-core-0.1.31.crate 61263 BLAKE2B feec046ddd3e04995bfe24defd6ae1187fd7ad78d80d69031178f67ed534e9aa6ab6aaea92dad509f57e220df5f6f025ab8f96bbc957834126f53dcad36580c3 SHA512 66fcd0b4f32de3816b1dcbeda1af26fae0a79d088894637984dc6a0ca65b609f5f166cea376601f6a75f8e3a281da6d4450dc796aa0a7177ad615330237e2bed DIST tracing-core-0.1.33.crate 63434 BLAKE2B bc36332ffe5f4c95ae2d12df43944bcf589746cdb923a39098e5f4007fd1f19d7c3bb115011ddc40c13e3ae0e5cfc9a59c49861824e99fed7430fd29479abacf SHA512 1c6f0cf3b7bd6c8f6316ed9ea0b315a619308de6cbf7e50e665a193cf8c3399b5227d4f145d83b10c7e01a2f9fbc83d16e108cf09b7fd6cef413aa5c1acf89ef +DIST tracing-core-0.1.34.crate 63760 BLAKE2B 3e4377814970e27524b813177fcd619df50a4ee75e7d1fe91dc61ff191137c445dc9a50a333f11694f728206283c829cc8601631660a2740d8e84f6b74d3e059 SHA512 21ee3e1668310a580d089a95242197f21bc4eabecd2f58c21a5dbbf036cd452275a0d56dd3810aff490dd710cb94bf8d0e79fe80a3ae7e7e0fa29143523fda3c DIST tracing-error-0.2.0.crate 13938 BLAKE2B 9a05554a8fdba016b239d3fd6f4dd616f3f69af2170c94fc61639bff8206f00e2afaaf98cdaa2b958b6e55c81adff2f0feb8a5aecc278855629fea4c424312c8 SHA512 db65b70db051c66ade443a37044bb4358e609a5154f1022c110b744c1d605e309ea44bee2648c8413355ba1f98e520e5bf65f2f59cb1045647d02bd43670344f DIST tracing-error-0.2.1.crate 14135 BLAKE2B 1b21099c7924a9297de5163512e8dbbd92a4691613fd00d772711210a77ac3c2288e232f87e7987dc9ee2f8c69cbb95857943c1b061c63b2c3c39a65f74adc11 SHA512 57640bcfdccc7b1a3f01a88a3a5490642c3993ec3b3475d79b623ada93043f735ed9e79b5008a4d2455558e22f7968b91034a3b5cce8f64a28a872e680159e77 DIST tracing-subscriber-0.3.17.crate 191711 BLAKE2B f55c8e8c70ca67f57cb3c8a411519f317b9961620e3f7db3a3933d549cb64a5871624c21231bd6a0974c94ecaee2904d2304ac9fde3aa8463f0fcbf99f94b5f9 SHA512 53a2a760d833f729e042b4f76b56c93ff7c50ddba968dfa9294f24425fe9a3dfc6c3b95a526ebd78df852b48b76c85d2f4f7be9170d75a6eea8734f77218e727 DIST tracing-subscriber-0.3.19.crate 198345 BLAKE2B c7083168e62619c856b872570b85b44475edd687fb6d5c3334246622900fcbf4e4a8484c23362fbfb358d6d9f8088f7dbad2e2ed30954aebf76d1b57324b712b SHA512 840e35103f1152e94ef9138d0f03f157b296def538bab6c7464fa7d363aef7734feed196091782dd3aa9bf06c7dc181a2c37149a23f5be036f00c00b5200686c +DIST tracing-subscriber-0.3.20.crate 212274 BLAKE2B 5df381443a4d46c046390921da456c91f20af3dc846604b644e120bbf5957d969b10014fb5b178e2d4dd42863689112edd406af20e3e98ece212a76398ee79d0 SHA512 4948d6aa6757f8a9bc2cd37ff02845d8873eb7ad2a4449bcbaf1b828e1aa6f72835ad81a8cbc2a8410d03c38f1ff015161a805ef062228f0b941e91c84509495 DIST try-lock-0.2.4.crate 4467 BLAKE2B 7afbe36d02ccf31351c7c7ca4415578383bb4d0fbf89ba2c5c7835dbf410326fb0f6cb302baf7c1edccc4b193a2ab8079545fd67f26a74457d116204f3c6e745 SHA512 fbd989589eb0a1fb226de65537d51eceab632603e69710b37708d6109ed09c07333189675d5e560e35cc836e5cd211c726d8ce247186b5ea4529328d46c22632 DIST try-lock-0.2.5.crate 4314 BLAKE2B e75c6c0d7c975e294e3d723e2fb023067530ad6db3c7bdbe89b9558764606fd1a74f0d1ba787d85266db1912dbeda85408e85646d0f7cb24496d743b7a18c705 SHA512 433db3c52f55d78220db414ef6a7367791dd66eac935f41dcda85ec9200f0eefeab6e8342e70aabe35c300069c0e7b7c4f8d63a2334b52a081cc98416371ef08 DIST tungstenite-0.24.0.crate 61527 BLAKE2B 46f291441175dab487d095c729d699c47aa807abec782395d922fed54e27c7922870c1fa64f950e1f3e3ba15a2d3118b445911fcee22faf021e71b9901726759 SHA512 dc6814ed57361f8de26e627a9b3eb54bfce71d35c47b70a26348e03e76a2f16bd037ed0149034084dd5353891357f79c943fd3f15f0814ffcc88a8576ab9d1fc +DIST tungstenite-0.28.0.crate 67629 BLAKE2B 7cc0272bf2504bc79967b9353fd19d4af9dc3d251b051ea8af7b3907d25c9e2d7bb2e709320d16f9b8099c2dace1b1da71bfe77aeec9d56318a8b04b98d927ae SHA512 604e069b028fd5b67bc0fba6acdb06b3d15822e86b58814ccf6d7a13a469732420ade057525c3ea5bc109f3d1a335688e7581db4b7a887032816a216d3337fd3 DIST typenum-1.16.0.crate 42477 BLAKE2B acc6dcd4521493c438a8a3d997ab0456fdbff3db66aee9b81ba219714d47522c3ca8fe26f8ce84edfda416ff9a22747caf3ecc9cc4bcd1e7647ac351d5aef407 SHA512 93da3ed62573acbc9d5d31257fb72ae9cfc7d59e4040c1f32d93e8fec94795e1aa20a3bf76ddc64c4b383184306bb2a66e51fd61b64dd4ce46a1bca8238b57b2 DIST typenum-1.18.0.crate 74871 BLAKE2B 99116d32b5317a658526daaf4fece2b9dc8cdbbc30c1e7a32fadf913e56a270a742abe0a0d348ea6039ae74fd4258c702d4626b14071626b7c5d2e2c31d82dec SHA512 c30ca78f8ba2e3e1bbfb3472c01974a0aeecb4471640ef373ddbef984ab37bca87ad4eced8193e5db6206d35ead31ebc25cdfe958f371625eeb97b6664f9c9e3 +DIST typenum-1.19.0.crate 76414 BLAKE2B 8083988e0bf1d7927377112b8939607f32af098f198a2bfcc2c5302170d9f6e5b29cf02d3cab16c1ecd0fb9f0a45ea3c6bd4a4e4baaf2dfdf8f694093300deeb SHA512 09ebcd7a2cc11f422469cf4fe706f1988bcd81d628e2bab3f54ae82b0aa5486d03a4392187a3736c13dc0c2027053387f89ac656caff72f36365c8be38bc7ff4 DIST uds_windows-1.0.2.crate 16206 BLAKE2B e895e97b5610c1402023b2b86daa5b248c4528f06fcbdb900cc996ff1f62a8234cbd6d8cfae84008345399f73363f9cdf62b1def60b782e06514b9d215236a30 SHA512 a58806bb9673f583d58ba2088c0dcb03808752bea6c0a502b717a541cb54c1b4cf70af8c8f3ae48437069c9017012c6e880a1e7c3c754835193e581849f28587 DIST unicode-bidi-0.3.13.crate 44477 BLAKE2B 90d80e7c57e93aa9aaa83e7c3c1a93bb6e4d51047803e61ed3f7c80361987947b2029a2b679bd301e8a0766ee8ea7f080e9b9b6ebcbb4354e19813a0f7da2abc SHA512 fb094fcfd907d90fa7232432aca0143209446e4c5c73d8a0fe6d2dc44b9dbb5b8b926c59b5e3f9a5a0a36f91c04613509b6e430c9c4adf526e7445e6e8d7a3d9 DIST unicode-ident-1.0.11.crate 42067 BLAKE2B 3c7cac3d2bf1cbf1cf04716a482f130123e8e6940f7a90a17bc62fca44ac0069688165538f5329b95a72f735b594cfb85e3250738393ffd1b53cb0cd95077d89 SHA512 9682bbee339fb987c9d0bb6a54406d37b28b5c3587372d406402e4341900fec97e3234cd03b5c98b90b6378fd533dc452cac3de90d3ade19c4b09657e4abf6df DIST unicode-ident-1.0.18.crate 47743 BLAKE2B 517ab42a847020515b2b871844d0571ea672340f89a762631a791eac18935ac122122fa5566e58b99ab47de179eadb5298e8ff1d05b123c4e93b7fa989c8e31f SHA512 d11f89fb696f9e2953c96a40b5478832651b268c83b9c7a700b07e768e795d6e8dc346597d1226df21219d36866768d1f640bd8edb68db8bd3d5d437b2bfd324 +DIST unicode-ident-1.0.22.crate 47919 BLAKE2B 766f52249631092af952df717e09e1eb0d2a8e87c45e65113f0b2b88b42e8b406a87241fadd368ceb9e13339362b48cdbbc6f699f95f448ab45dbbd861615d62 SHA512 81666679aaa2eebfe1429827fa2a88ee0b52bd69723067132c24252070133b3731287bcd880ba16d16274f038c7b27bcf637e9150b6cd955fb4ff49642078125 DIST unicode-normalization-0.1.22.crate 122604 BLAKE2B 3f3430b279cc0ce1595392c869442ce676ab097154c688779ebcf726e10c497df59be2cd7bb2f84f99499a9df0654760a10ac92224c17d74775aeebe291241e1 SHA512 a5810d5e9cd93dbb80e013997aa9d38e60834619483a6623eb2859ec5d59a5aec3fc4db123dc7f4e2fe9f2b8799cf6af48bdff22d69a00a23707240e8bf3bb3c DIST unicode-segmentation-1.10.1.crate 98416 BLAKE2B 4c391ad34c5f8a00096ce89793b15212555f2d8a367f3ae78f26a36c5897b69f3efcd280a1bd3eb3f61c87b8a26061804b1cd56e1c1500cbcd62e8bc74520014 SHA512 e96224bba73fe9a167bbf226bb13fe5bea085765a90f7232cb20b42f3c584242b7291aeba1eb8edbe2ae40e5bee2f4714f434324f79316b22e8437c77a50e86b DIST unicode-width-0.1.10.crate 18968 BLAKE2B 6174e307fd3ee290d0a5d1d31233baaa5315cdb73f19b8580718e9f9eb04cfd3aeaeb474af1e50c4b9fecc6fc777937dedc527c9dc9ed14ccf42af099e591f31 SHA512 9836a8d489d18ea1ecfe1957ed6d5da7dce825e138cd1848aef093fa8d2eb83fcf01eabb1a2446df4f5ede4e67316e9e81b5d58b59d4e8c5d67870e8fa5dca3b @@ -651,18 +876,23 @@ DIST untrusted-0.9.0.crate 14447 BLAKE2B 8e9c3ae09435af0885bc4a6e3c8943805b48cfc DIST ureq-2.9.1.crate 114348 BLAKE2B d605db0134ead8a77c9b9fc8b06573e82d701ded485f0d88bcd64f6ea1a5232d67bcab47d0b430bb13c79ce249304ecbb7f67d4a3c789f451b9639ada5b3f0a4 SHA512 a8c580f624300e6e1d068814c38719f3624ed63274bc0c4fe06d6ea30023b3e79ad3241fed2ed9f008a8040b49fd2d2271fb0221db1e657369f37060251e3eb6 DIST url-2.4.1.crate 78228 BLAKE2B 6e324237af50605e9285889d967e6a66e258982c5e78ec99b2df68cbcc555574c0b0d650724ecb015e1065c737c88e3c04205973c35b0afcd63f222e91dde3f9 SHA512 ff2aed100e405f4474e17dcc01d59b63460e7a8babeb7cdcf9df6c1c65216c425e24d557f76c7097702b2befc381656107bef755ce929089b52a3901c46aa185 DIST url-2.5.4.crate 81097 BLAKE2B 74943c63809ca41a526a146bedae66f91f390fbd2ccbd90f9397d8074ee7ec26535f0f67170eb1d7232e139d8d795fde99be37f53f1bc32c6a6a4d46aad1369f SHA512 8f1d62bfdd45f52fa12ad657a521a3478d0ab54d187346a29dd59cc66a0f140ca96d850948e09f6316f08b44b3fc68526c58bd620fed5d065b7e8528df3cd46d +DIST url-2.5.7.crate 87907 BLAKE2B 1c8fae906be2022bec520d0ba28399961fb60d2920f5495571255997063197127314f30b89dda2796eadb47b3c68c7228febc0b2f0aa102a577f3991f3e3d8af SHA512 bef3c8fa25242615f5749428cac1ad2ca895c7f194bb3df39020d6d7697c4fadafa11046378d44a72f46e39c5f657ecdef8760fd2a36cf25d82b1de75d190999 DIST utf-8-0.7.6.crate 10422 BLAKE2B 296690040895ba9da9e69d527aea415f4bd6bd3c010e67a08f9cffd2f4cd92a99f9ddde77512f9ef5a0db069ac9ac3cd6fd91aa18f0bcadf870ed212fdd76f2b SHA512 6bf0787cc297a1ac4e47389464d05ef6850602f549621687e776618bec96c1f7bacbb1ac8faaa63e5d28d975b850db8d6c784eb66e2466128f0521b91c14015b DIST utf16_iter-1.0.5.crate 9736 BLAKE2B edcd9776113d4d2b267a9cbd58cab11c5497ff1a8252c4e695de619fc8e5eee1595343c857651774b3670d13392144e9d7df579f2e226842aa7e4e023a76fb65 SHA512 44dcbc5a7db149392fdaa31862be240f78fc5d7616f54be32cfc8f3adbee310e8681ae1bbe6edaad8a7fe6e7759dbac8ae4f69d0dbdbe5350c21dccdbbe975fa DIST utf8_iter-1.0.4.crate 10437 BLAKE2B 1e7a8b9241ebbb62cb497542b970473780f735010a0af900771a43abceae4e7f362d21d4f79f7c00630e4549400875ea17574b2cbe4f5ea19e8ed428e3b5577d SHA512 a72671995b3eb295581c60dc632e4a25ba257227fb5d58a8bec322428b6d69529bba79a6f02b8e7ee6698b7779d9d6695f5badad73e07c254b00c9d6256c9090 DIST utf8parse-0.2.2.crate 13499 BLAKE2B 095b5d219ab8ff04c06fd6303e03d913ae36a57845f0b2ca3217a40e31a54cb0fb5ecedbde165d28f5f60f1553d8252986d7098fa83befc84a7cb20bf3b76144 SHA512 f3dbf78fe924f1dc3cf9498b6e43fb10174699463f31091a7a8136d8f31ec84fc00e80e3d8551b7e86257e8b3573cfddb56fc0de797fdb2cde0e962a8f239266 DIST uuid-1.15.1.crate 58728 BLAKE2B 9d6747083e096b795ef69dab3b1c14cb67db8838dd3814e23a1b4869b8e5b4c4d067120209550a107036c195c86238df2d2036bbe21f95e378e17d8dcb3c3f1e SHA512 d389b642f2b5a6c10eb951e53cc638a5e615f89bde4a727f7289d0da2733d90e581e80ae735941b03d314237423037d059b07f9597c351cea1c3d7e7884ff144 +DIST uuid-1.18.1.crate 60468 BLAKE2B 0e70361595e8d0baf8c4c69a09878fd39fee414d404a7b3cb457ad60cd3cd351418a8981090f4c3d507fee42c575eaf6699f494a604da0470573e81b7a56366e SHA512 2a088f752c4dc05291b8563f83ff8efd6534697f55da76baa89d64122ae436a7f0e19fa46a9e615d4e9b013bbc575bbe0f7646c182b37a6c24edcfe24e518400 DIST uuid-1.4.1.crate 55291 BLAKE2B 36a1d7abe0a695f6fa3a8ad3a0c8a078bc61b17396a317b01226d9b35a3544a8a74305ade1166dfee7a9028e6d4a1e6b0956dc0975ea58a86ec6052fb869c577 SHA512 95914b62948941e9dcda7b66b932088b328a23286d163449a72961874f4a856db6db1d60a125e56cd1d7b1c00391485a45520852ea49bd8e5a7b8cae8ecf8b96 DIST valuable-0.1.0.crate 27718 BLAKE2B ef5ded994c9a6dd302bed27f0d757447b0c86dfefa499c1ef0d25c3a6745ce61cfa2c926826534c9f605f9b89b4a19f91f06f94ae7c03f1ddc4c58fab3ae58bb SHA512 a97f65db1f1c5049a276dbb0e45e25c6fc6ce9d27ac1fcd77c945324cd8216ef60344065c79799ca04e338455e4f7422c44078eea32d5fc359dd0211ee7eb387 DIST valuable-0.1.1.crate 28679 BLAKE2B 33a68f81cb0448fa737fd7416f2dc1f0e4f171851692e5f759bc375ca8ffbe6eb53912823a59da44228029d379729b669e8213f00928c9b1a182c5d26c0de8bb SHA512 d8a4bffdc8a166d1ee11b87dd91cd68e5c898916b14db7039ad2faaad34f4bfef76f3fc3d17d6e7bf05e495778f7c9d5223fbf45331bd114f93fb6ec950eadbf +DIST vcpkg-0.2.15.crate 228735 BLAKE2B 6b6bacd9a7fa38919241f45a97f58cae957e58d3aac99df208a26aa718e4f1644f4ccefa31b09151e5c1952288e0e5837c363918b98c7f55079a948a952c1c50 SHA512 7322a21e8811b2fe4e79e09dc321458068ecdf1953f05d36233f3278ecc0b1dfc64194db7010dd46fcf692285f42475beb090c6c6cac0c8f9fe0eb5c770e3172 DIST vec_map-0.8.2.crate 14466 BLAKE2B 8f109fbff19604b82ea2aa61c952e2ce9b5597ccc8e1ef4e847648e2de08dece8c4debe92889edeccb8d393645fd0b62436b49d236ded7ad181c4a51239a9539 SHA512 4f1ef59bc2c437e79f1f84fe021bce5aa8ccd581f500f3d5776913d5f17d45b03ccee64f5bd03d47656318cfc9344a1f4311079d471fa409a8e4e94c143973f9 DIST vergen-3.2.0.crate 16897 BLAKE2B 1a83f338f13cd55aed1d57db05e6454d1c86937f5d3a9a7b5b14bfc72a891671b70665ef388590ddd0a19ac8acad8251990bd81b9fcedf80898ed5d327f9d373 SHA512 d582ade1ed57f5067b4b24376d0164405a7a5a587e12c09b724fe0773b03d4eee95694fbe9f43d0f34bf6145dc297850e05039c81ac6df27670e326b7a254c09 DIST vergen-9.0.4.crate 33518 BLAKE2B d901213a14fffb1b506d76292f9a384685c012161fd62ad997180f3baa2e9df1997ddfb9149aef31ab42d74a9cbc5a3e4b1199ce4b17e69ec3feec46eefb3932 SHA512 07e7f66f162eb008c50ce47b9a58a7684c09997ce582b3fc38244e8131d966cf24c992c79bc62ceb4ea817806d42326957d2185f68d0a7577ef24e8a6777f5d2 +DIST vergen-9.0.6.crate 33160 BLAKE2B 3f8d4c43827d2f939f7da415184b2033c4bfbe6ad721018cb1cc2c961e7c228a5b7e13c1dac17e5dfc8520cb67d612f971d4805b79ad05015b02af44ffeb5fbe SHA512 4dd0a750e972dc955634a57c0087eea81872ad534ea63e26cd1bcd4644bf5e13d2e231ba72f3a1d6367104e8df8b8ff4fa705aa51f53c5439c230e01a78e888d DIST vergen-gitcl-1.0.5.crate 28520 BLAKE2B 49b21f53eb234baa21d67dfb0d8cb02c92ffeb13ec289f7308a527c4ea3f7927bfeaf11bdd228c709da5af60be129810a2017694a0acd2e8e3238c3523ba6c85 SHA512 dcf8934389dc9c595f8d922dfa803922ee92ecdff3bfeb2722d31867f51e661eb35217577838694fc50056a36e4af63d72886c9cf50d52f24f6fdb8f70e8a0e1 +DIST vergen-gitcl-1.0.8.crate 28712 BLAKE2B 4d09618ef0e3e57f93adbc4c12f2f27d108efb5e97ee2cd4782e3638b85cc316efb2758ecf2c44c5913cb327aa158b672377e5cd179b21ae7ff09461ad2d4f78 SHA512 617a6a684ef1357420760a9845981c4b62efe4b33f45b6f1cd0fe95bc676e2f4067cfb9049a3468aa02a7bd25cf0bde1faa83a3b1b83aacb23943c646b3daa53 DIST vergen-lib-0.1.6.crate 20754 BLAKE2B fcfcd85ba6a7f53e33dce0c0542c734626462c5ba1a42ae0097ccc5c63e038b23e06b62586b93c690002a3b6bb5d2786ecb860c7faacf2f926b55aba31ed9958 SHA512 f9adc025fbd61aec4c82e8ca532d6db445f13c5b7f56011356ff5301ed1206614f47078d0f9f0a18d5232ef572de6a021491844b197217d2662acac43504a293 DIST version_check-0.9.4.crate 14895 BLAKE2B fa1fa4008af165bfc1fdbe560488afd9d232cfafee94104fbcc4cbc52f234849bff9ddfa88109a1ac682f6d9c1d86b0459893d223f64e65adc08966aaf93dc89 SHA512 b172dc9a3759a4a683ffc39b9a40b03b9974b626a088217de87090466cef695226557c226cf3e469b2b25ee7297b7eb0d7719878cab42457f80146a81943c0c8 DIST version_check-0.9.5.crate 15554 BLAKE2B 131e75cc287518831e142430e2a39b48e4275874f4473780d47a27552294097aa1cddb65c385583e1022478f940b495eb43c24a8b1617b8ac5a24af3340c0d72 SHA512 d11d5a2240ab0c67ea69db56561ce202201edeef9a8e5eda3d9ae7ab7bb5752d8f343fe7f6536d8383de8d55f9024efa84f66a0c21e69563b7a38c4a628014db @@ -672,29 +902,40 @@ DIST walkdir-2.5.0.crate 23951 BLAKE2B a2d3a973f206e94699adec0263dd5e211347722cf DIST want-0.3.1.crate 6398 BLAKE2B bcc1384bbb86db27b5e082b29a8dd4d89c37b40f6cdec4df8a86c8d205b418468b6cd42a78bd14ebaba057b28e151c00b474c098d7596f49a823ce33510c13b9 SHA512 f93f765113f035e134b967e8eb3f4511b8e03e793a47899b614d826afac02348fc02865c298a10410ecec4eb64f35f66c22bcbdbe36ed0c4c1665dca1db4d526 DIST wasi-0.10.0+wasi-snapshot-preview1.crate 26964 BLAKE2B 525db01649a5981ee82ad80a1a4bab9baffd235262452675619f36a1b454017a74593c53c129f8c30b865994bbe30ef19cebaad9d245ccf54b9b07ef70d5d8ec SHA512 88e2da617f50d9ebfb1e0c5857321fb86b5ee88ae8a8d199d3cc092e0f39688a2cb68503f7c6bb09dd6bc50a9a03597a1eb2e032150fbd0d0b8afa02ad771c88 DIST wasi-0.11.0+wasi-snapshot-preview1.crate 28131 BLAKE2B fe501889f25d65e2d032f885cc50c4f8bf7dd70fd5cbc438de349838370d8699e9627b0a4fc76030ea9fe6d508f41d0c9928a875fdbc47e73bfb17241cf7b155 SHA512 043500ab28cd9cb779475255da5d109ebab7fccca72b64873dc28d77bc5a157ba8d96b9e8f05223b5b36c7089bb7b4ba87657fc69bac16b78972f897294a865f +DIST wasi-0.11.1+wasi-snapshot-preview1.crate 28477 BLAKE2B bcc773ba28cbe8d820e9e9fbb275fb4451bc7f39b3bd88bcd93850bf2bdb5300489bd8eca27489ccc5f6269b00f4e1b505ae3a33a35d708cd5a414ad307be149 SHA512 29e3c903763db2580a15f50db487c5e1d4e90763e48d90a5b3f681e468a24f9df1a01773bd1ffa0e3cd293dd8cb4d6fbabfaa63c0e13889c811a56f4554ada49 DIST wasi-0.13.3+wasi-0.2.2.crate 136754 BLAKE2B a17e2670caed033c1b2e2bd709a79c1dff5d0ff46b32e9d9b0faceac2b3350397e7bc6ce113a9275c400537121c9d853130b4bd546afbf0bcd248f4c69d8a708 SHA512 c0b0ce3c4d82ad7350e017fda565a69cf91186ebc41a1c5bc21a6e2fd2f0d8e7d90bcd60488074da6062ac1fa39c684ddd8ee1d8efd66e82eff36ddb16682abd +DIST wasip2-1.0.1+wasi-0.2.4.crate 132087 BLAKE2B 9ae5188981d55ab0cfc52668cd822bedde6b03104990bcd070f459a39ef75699a792bfbd33766cdfae852147c2f3ea236aa1d1b792e85c56be21b74aee2232af SHA512 56b88f97224b6b9763f4d2572e986609fc86a98f597930b5cbc8095d4184a0279286c8c79f6ace19bb08ba08854a408a61004bdc6b2f3b72d4f3fcb5e43edceb DIST wasite-0.1.0.crate 2346 BLAKE2B a5a03d04135e3e32354d298386f132f9aa3b5c3806186f0c1eb75138038001d07f3bb5a3c6f8f938c9bba7c84b97b06b5304be3c9f86255d2d00f46a134ccd3e SHA512 06be2f7a2d289136740cc7b9ef9c4addbbf85210312759a7c99f977aa52285e2c3e4e3dade82d454a266ae42aaeeda7e767140b0bcdc1208ecc86aa18afc1384 DIST wasm-bindgen-0.2.100.crate 48288 BLAKE2B 8fc4f71c7d6cef15f131a9bdbb50e3eaf9f3894a5b6c1d73876824efb731b46e8c3449947893103f23bc15cad228a1b8bcccd45ada20df53b3f3dde6e419c184 SHA512 2a8ea7ec669efe10f5701dc3b2bf496e33afa70c31dbc65fda5191c9c28ddde54fa38bb168a41b0319a4ff0bb5ccd897ce51ccd7e523e647b3544fb390f8a4e3 +DIST wasm-bindgen-0.2.105.crate 48215 BLAKE2B 1246bf578db288dfe1f441ed307d781c8c3b593343eaa70efdb602dfaf7eb20ac52ca5744c9ecd03784e4c61d166401db66cf7599b1385d1e15133b47cf2ec0d SHA512 f79d9c1251c005f8ae3a6f7e364c54a34eb80f445bf5a23de0428114dd5dd6f5f74b76c92df784f7b54a0d978c02d5df932626819bd26a97fe90fbbd3d6f8396 DIST wasm-bindgen-0.2.87.crate 175052 BLAKE2B bf8cf4aa1786ac5c2ba76e80500b5c54313adf9690ef370e60b894401bd1b81416da7bb46b90c014412c96f30f995bd1e52cf7f3a6be1111aea40866e8178396 SHA512 0c3099155ef079d2b91d2d5b135243d687bf865cdd9ae9d97d8cc2eb4c9bf7439b66b28d5b1d7e95048e53be63ed4909b6b3f2427951348de25ca7abb7a03705 DIST wasm-bindgen-backend-0.2.100.crate 32111 BLAKE2B 6bbbef709753e22230176121388a95fdb8f4dd32e0755dce5bf6c1127c54a236af292f319d14b5cd97bdb310fee65288e8f404921b83693e287164cf9d589a2e SHA512 a2ee30c1185644f989af6be34e93149a791c05125de24c0ff91c320f683f6f5d939fe42b8ca09d629096388a39256469f8b96a6e35722ccfdbe8d978c9a51770 DIST wasm-bindgen-backend-0.2.87.crate 26821 BLAKE2B e230aa256a1f681ab3ffd2c83c3f6a810c305bb79a5e1d806b8b2b9f54ef0babc83809f6153b9ca511faa4b122f80bd1cc9eb97e7ae3cb4cba9e2dc1c6bd0b51 SHA512 317ee2bdf85067cb7f4b4ed6ff475ff9e5063143e9b7c8a28572211c09025935815227c4afa8c92823ac92102562d4d34531aa4891d8c922048d37e27377ee94 DIST wasm-bindgen-futures-0.4.50.crate 16181 BLAKE2B 2659a84c54a1703c7378449339c216b601363be1f1cb22d97a7f85572cb5968597cccc868e03d48b20dae2ffeac83cdfea7c39185dd57158824fef8a51f9567f SHA512 bd24e131150f1a16fa6330400af0c1c71fcdb577562f0c8893d24ee75cd5afca4a7272b424646ffd3330badde92800bbdccd6d4d9d9e47f404e6c29fdd83a51c +DIST wasm-bindgen-futures-0.4.55.crate 16687 BLAKE2B 93cec5a8148a86b9611fee1958fa97f2d779f10134a999526a11a9b4a45ece7a0ab29df3b4eb076930de34bd5edbfb8f82a1ec58aad8adcd798caf87f4379bfb SHA512 006e3452dae915abb5c57a36fbe7f128886f8246590ec16306a8f61983d80f5e829f64ad695e2fa1d0462437e0fc496067af308aa260dedeb57afacd1fc276f9 DIST wasm-bindgen-macro-0.2.100.crate 9663 BLAKE2B b8a3fc6b3571f8caf106a9e9f3d9cc48b86096d714c5d0208f03d44d47003b3b26441b5cd68bcd49a8c05758bc1b984e460fb62ab439ff2d68c72766ce20358f SHA512 a1942f838eff5fd54406b573d81fe18f262df48a19535245b1a46cb31db2a022746e861d72e5286c632969d15d416655460d3865309c4947cd3d7965dead5c42 +DIST wasm-bindgen-macro-0.2.105.crate 9264 BLAKE2B e2c4327e94482a8f1a22cc5bd2a67a7af96290c365bfaffe9e07acb1fb71034bda67dbb97e03e9239c8ef0be06a967ae5e1072f88a35ecb61b110a1ad122e243 SHA512 5f3ddd3dfd3060210e63f5da5384a308dcb1466d6c0435e30b4b0183b34284fa972aa70224c6c8f7cf19058e08b6945bafb17ad4d008312eb7b30d26f66fbb3c DIST wasm-bindgen-macro-0.2.87.crate 13897 BLAKE2B 0926975b0328cdd5525820358795b7b68b4ab9dc460715ed84e5d276e76e936057140efb1ba875acf25f3d2862e680f9827bd05cc47560d54f7ec673f30244cb SHA512 af366d8d853b280014cdf5286f3b1f6d7fb0837ce6e359a81cb6f85161537c8e2cd06d7f893c957f5bf1548d34084d33a213670b471937782b56033a23cb15a6 DIST wasm-bindgen-macro-support-0.2.100.crate 26243 BLAKE2B c18e35978b62dd2822ba8a4f6955cd5154b2a0d81b8e8032c2f8bda42c1c25f74a13f3e1c3a7bf47a823de2517a237e6a1aef18b189bf1f2b934123c58d1eb34 SHA512 0d03eaeda37c9c6ae06c0fa96e872b54780c4cf545b621c730dcc113dd59a8cb6333c5e3818f51365f71913b9669d8a870a06e70729722d03c07a49cff8a4fdf +DIST wasm-bindgen-macro-support-0.2.105.crate 49633 BLAKE2B 36c59a0fffe14cb6b5cc767285e6533aac2f1832ca91da5f535779d51323433a324bc07f351d491a151a8f6a67e234e75bf07d508494c314f483bc5d2882b03d SHA512 a579183f46e5e3a9ef32183166b443050af50b8df84ca4cc25cc5a6787e8e45fc1fc3b74c29e3fcdf44fd7b522627252c4894205c693317f27eb475a1b0d9b4e DIST wasm-bindgen-macro-support-0.2.87.crate 20006 BLAKE2B d32dfc7231e4fbc226586e66063538208f9e299fbf803c4e2d1e1e61b4a22f51cc7509bdd269a44f072f9843a083ee84d2326408fb3211009ce93542c3fdc6ce SHA512 9390aa2767fed1027be168612c424d4c7cd4423addd83b79afd8c67886f66303ca4846e6454302ecc78b47bc62e8ee46849a4c0d3edb98849ce8476901424e33 DIST wasm-bindgen-shared-0.2.100.crate 8570 BLAKE2B 886fa72cae891d4c2311e12e28f0a7bde9bcaca893603afa3428a402726b3b2bcdb6cb7dca6fdf983bd8fac5f049f0543537f2161318769b43c7eebfc906df27 SHA512 3fca8ddd1c6b2f66f70f6608c9b341822603f1c0dd71d47d27c6be8fe3f2c88598619946627720734b48cf999cafd0c63a08af5db28ea78a1538d2165a5fba61 +DIST wasm-bindgen-shared-0.2.105.crate 9269 BLAKE2B c67cbf7f2eda35a29c0c60313e9887bc4e44ce0233cd9387f30fce55bfe173551b06f3b0e0d1834dd7c2a0e6383ce0b28390cf05e9ff692245fe4e38751e0b17 SHA512 a3604dd72ed83a627a1b708f1b268693c93a56cf1851823398e43da066f87a25535222cfdf987153d12f948cd7e316e5c2382d12273c63317025ad774411c079 DIST wasm-bindgen-shared-0.2.87.crate 7248 BLAKE2B 0393ce9452119fd5f92836a76b28d3a697f91fb09de39d1af0a2a83e81d48bd4a17f39b48f15ae97edca3e361d4f8fedae8de04173c4ba1711decc73f64000d5 SHA512 cb9ff537554f56fd07052ddc4adc904a57ee64e13298df1dfca58b361ce163c34640e7dd9ed301ec1375f335dfa424230e22638ea7569ceb34aeca4505f6c008 DIST web-sys-0.3.64.crate 725584 BLAKE2B f650eecc22ca53b75fff06c4117439d8fe9efa486701cb16a0daf76865cd017a9e25ed8c7ae1fc65fa2dd94a12c14bc2e6f9e837b70b47b4ca468bef65a29f82 SHA512 b02b0bc3f1354842b364d2f062ea4f5025edb6e615046750b56a6e2fcacef7e0b46a190eb45e14e590cf297e3ec1a813a81612ac5acfc12d744fe16c5ce041a4 DIST web-sys-0.3.77.crate 638246 BLAKE2B 3f21ab03a18d82cffd96432e4f08bfae183b24f9a50dcfc51c927e9973dabfb8b6bb1f3ae044890832809ec91709242c1c37463931770d347fdf521587a72515 SHA512 cd149286105288f7c385a29eae7df2306d4066edfca4de1255efc7bd8a4e8eaafc313dab85091025c3b5d5e333fce8b7fcef1fb824fe4d799bcc9bb78b73c97a +DIST web-sys-0.3.82.crate 644272 BLAKE2B 31ca76ad485456e1723b0651eed226dd74108567bcc0b74c0b38c9ca918c183be29e6df5ccbcf37d8f7709cf9b959f22411e21074b458d332115b400da09c4c2 SHA512 ac194e864b9c55d1db4370557553193ea889713a7b6f4a8dcf20434c9ca654ac05fedf5b0efd49bbba1d7ff479cee96eac5dece9365272b09c08c5a4461d2d7d +DIST web-time-1.1.0.crate 18026 BLAKE2B cd72e384aca90c79e587448160587531c417f31a32e9ded23e6b78d492d0e517520170fd03177f28870c313b9302b28c32069a2408acccc076a1e4939a2c8f8d SHA512 73e4ef9851de089fde9381a595cb9e37a434f563f1fd350e345f2617b701caf57a9aef739b922b5b10cda131cdf2fd0af42c55603f8973a623a8b6ae70f6cc9f DIST webpki-0.22.4.crate 63472 BLAKE2B 35862693d6e10574490f516dd8683cb5b167bca9ac06a72ca0b1ab2007b055cc14db9c6f92ebc872394775d769d38290b8c592833ae9778e5070e115caace504 SHA512 b1bb203a5a36c01259840d9f32c729e736b25baebfa4de66ccdb9c38f164857e701fb597a91e18537ab1c31a6b29cd3d0cd8f45658cec87e55dd27c1c582a637 DIST webpki-roots-0.25.3.crate 251565 BLAKE2B dad09323767a29df528fea7fbf58f4f7e4e2c01ad86672b3236774122fdca97279a11aa5e96abbb6405348ed383504bebc5fb654ef84f50ec819a52803380faf SHA512 53770d6b4f7c0f25de31d9658261c1fed57e0ff9c3246a39f257646bec088b0f9a6975fd5505c0fac52dee3eb00df8291c3d5a5aef86899442f5626b5cd8478a DIST webpki-roots-0.25.4.crate 253559 BLAKE2B 737f608323fec02b77c47a40f8b2f9bf44f1b29d32b936fd7bd8c1066efd8916451b96ffab8949f5b5ba537bb1ed6300143bf51d1ef8663ce5a9a7a33947e81d SHA512 4891aa5c6a5bb8a4d6bd730fca5ab5bbddb5a39b9267c81951ca8d3ff0dbcd305b498328f99b2da79ac65cdc9dfa42c40631a4f8d6975ac6f4ed9c85a8d2178e DIST which-4.4.2.crate 15953 BLAKE2B 40ca22cd2f625cb035a1d919ed457a300b482c7751dcee4441974c53d56ce13f1f502535e1f7c0746a01981f4de2e2f761c3a255902d6353db1a4c3c62637448 SHA512 2d12aa1d4c2dbc140e39c8f15bd4ee1eeb8e8de71bcdf579479ef4be860fb0839eaf4cdb818addba242d50420f6e08acaf2bfc979a889e092c83644819246fd5 DIST whoami-1.5.0.crate 24008 BLAKE2B bf4cb6e7fefecd6a0929c5f7d04b0b3dd545bb369bc675f7f95425053d0d986d90f2a6cc495988c033783a0f997cb5d8bf908c7014bde5a9bcd6d53c6189dd7d SHA512 5d37406a7e456aaeca5c58de0ff2694e01dfffbc9b147b61b8322f8f7bbc754333a846f36e3e812cf301081d43721370dc1bebcef5a5c739fe6472d6a1aba2ac DIST whoami-1.5.2.crate 24204 BLAKE2B 29ca6ac8b280d10882d39fe8f15850e2e6035c1e72445c7fb541acdd8784ee756f0a412daf3ea48f7f7755fd5ed68bdd309e85e9380bb9c5af7b05c197b46b14 SHA512 5ecb06b352528e3320cc71c6700f72a79a04791c33f08fde172762f6f2dde25218aa0d405604d0a18a741dba7c370c26cb63b471f09c7b2a6303cdf849606398 +DIST whoami-1.6.1.crate 24975 BLAKE2B d6e7e100bc055b2e92c40869221c241ca77433840d306251c7fa248dbb4b825e0aea091e3f11bc48379ca78c8a814b10ae9e1eaeef3307b2475dac181625b6f5 SHA512 20923e833ee3fd7a396adb5a810030483d254bce71963504b295394b446ab7343ac0cbcd276749fc32ebdcab3f16dfa3bd3aa03077ee2a403a0699aa8dd6284d DIST winapi-0.3.9.crate 1200382 BLAKE2B cb5799749ccd935ea2d7068d953cecf19f543d9db7dc16ad4584bb7005373ada34937a3ced7225544d8bc765da599911c7a3190efefb3a25b7c1bb7123b4f673 SHA512 ff8b7b78065f3d8999ec03c725a0460ebc059771bf071c7a3df3f0ecd733edf3b0a2450024d4e24e1aedddaecd9038ce1376c0d8bbf45132068cf45cf4a53a97 DIST winapi-i686-pc-windows-gnu-0.4.0.crate 2918815 BLAKE2B 4d357e4d30f9552972170d65b9a5358b69c46a3e772fe05efc22f3d4ffc1caeeaad7aacdc7abd503a7ad0545f8bd7d22bf351dcb6df76f812fa4d45c34d65df0 SHA512 a672ccefd0730a8166fef1d4e39f9034d9ae426a3f5e28d1f4169fa5c5790767693f281d890e7804773b34acdb0ae1febac33cde8c50c0044a5a6152c7209ec2 +DIST winapi-util-0.1.11.crate 13368 BLAKE2B 164f49c84952ece6e566a9a23f32ddf34e16f3930ff531f8d7527bcc18768c9a118cbee748ae6a753a172b4ce8d0f22108142382992b2918b442387ee5904545 SHA512 cc1511c004c2a81da4d7a0414973f09ab711033fbbadfd597f56df2cc6c99b3c1822f0b8de1952e78400a88462b9050acd85d2e4b36db72254049a2d6f725a01 DIST winapi-util-0.1.5.crate 10164 BLAKE2B fc800aceae5249a858c806c3e969ef2545766099872d856ebee51c883d9acf1122278db9607d50ca53eac351502b700fd2463900932d342240f97f683d517963 SHA512 7baeb661f397c4693dfa001fdc774b323c51a7c55caad40f2de5112a1cefd1d6151e3df41fa4ee193460a5905917c83d2b1de5fa10b4bd014ad96690af95c0fd DIST winapi-util-0.1.9.crate 12464 BLAKE2B 7fb9dd803fc2608c4e5bc75674472992d82da364f24c22072d5624d6ae6abc44abd3e3ea3c45a7558e045331f3d87572b306b4ab5de52c07ff3706e7f13c2a38 SHA512 c46b893f67ec6e36499b00736bb6b9421e0e2611e76784afa6da01d7ebd033df82f1be7cf8d871d541125d290983f98f26f759488ba9aface49efce8edd682e9 DIST winapi-x86_64-pc-windows-gnu-0.4.0.crate 2947998 BLAKE2B 2ad1ea8b5fa07d544e910ccba043ae925269b76b26c9da356305b34b86741dd8b9aff0b9ffe3d562db4fcd7d7c46a11ce9e3168b782b1d89ae6881742b7ede82 SHA512 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513 @@ -702,65 +943,103 @@ DIST windows-0.48.0.crate 11864177 BLAKE2B 39c0e4f058f68a829ee08721818a0b04287af DIST windows-0.52.0.crate 11843715 BLAKE2B 0d35225f5d61f71b0cb768f03825031101e05c83d7f12e05cb17b14ba28e6bc6a3d5aaee5ba07e54c1a773b6eadde4ce3523ab87e8e313e5578e2de01a3dcdc7 SHA512 8a9d443cfae3b44ab50bdffd70b70ea3b3d536f464e4beb7cfa9e15eb4e4505cbac20266b44d589bb7231790a87f473ead6d2160b8cd18d62f31b78bf61417da DIST windows-0.54.0.crate 11096265 BLAKE2B d9e2741577ef5a8cdd66ff0dc3de16d92b5005a43c4d521f9c9670ec15fdf0ef5f9656219695d80e2f9bc2ed51e31b5e3b867c484a00dae1a388b647f2eca6b9 SHA512 703d9de3d8624b9179e3b4aae24c8ba384c823d54e9f55133c9ae8bec8090019280674aa6c8e47872d91fb0f194c692ef5cbaff710714bddef12cf3fe98552db DIST windows-0.57.0.crate 9694564 BLAKE2B f506c91f909e82f0ba7653351bbd9b455a4a028cac24ed0cf7bedf07e3670f3b804391ef65fd21a8a66c554c1089c48244ff1e30530bbe40bb94ea240454778b SHA512 df59ddcb41a6a4e4598b06e66856bc7bc01162e0fd1f109fcfd24e1c6c835475241746fb6a9abe458cff55a7c524837ffc48c6a3e0fc0b4f5edb614cc1d1062c +DIST windows-0.61.3.crate 9372520 BLAKE2B 37e569c1002f199e6552e6f812cc483fcfe430b235fdb0b09dfd801ef42f3f5165cdc7eba1099c7ac2838ec666fe59923a11c0ecc1971ae6476c46146c6d13f7 SHA512 a909a0e5de64e66298da88d61509a4ec893e7838e7bac6fe9fd74418900fb1b26639f2a83ad1a507abf3dfd6266349b18b8b922a8e3639de79d35bf37c2855a9 +DIST windows-collections-0.2.0.crate 13579 BLAKE2B b6ba4ce0acf9bee0fe8a20ce1108e34a2c79c4f2867dc7bf71b9980d028656274d79d568baa422148c9d9f16ceaeffde012dea3ebd414d38780165a5140118d1 SHA512 8b8a6ec75f46da464503a32f610d5b315b441645f29e831ee9afe7a67bcdc90cf221786dec57d94de40120b384162c095370c0f03e78f872af68bdf9d618913e DIST windows-core-0.52.0.crate 42154 BLAKE2B 9670bf02261b4ab2a24eff97dad11e305deac823cacfae286965b62b11bc035f19a55ca710eaa4359c8a4905433a94fe62a836b77ddd68f244ad6ac2c9657f58 SHA512 0c8f1c7e63c11bdcf1361150ecc83abbfba8da2c6d28523799bd286bf8aa1df61ffed19175e8cb3ef516a9afb6248b640c2101a2e0c09a99bfd7a18c6741bd36 DIST windows-core-0.54.0.crate 44015 BLAKE2B 2ec7bdc09eef66ca4360dbe6b6c75548b91abc6cbc7272818108d3f37b97141bf4ee57e1b70cd33a5ee9d637be9f3674067ab26cdd204d97aa195e4f59b98935 SHA512 eb83e67ea04b7fc6cb33fa470e43683588a26c842f6949abd3b5ef26753dab3f8ce6924872a3dfae4b497f7980921027162c6d364a02430d3af7d2f63fa9f45f DIST windows-core-0.57.0.crate 53695 BLAKE2B b986279aacd34409286ab5761ed38cea9218a2c9b4c5463ba662033b08a167cb65870aae17273e7a0977315ff6a6ad7593011d559fe51d8d8ca157184a1b2542 SHA512 db7dcdfe0f464206b15fbd262539386f67102f2c54c1ff7fe2e6a2e2b28e8d5e4ee0312b787ea55632ecf83260552dc2ba0349933b2d5ada4527b95d196c62fa +DIST windows-core-0.61.2.crate 36771 BLAKE2B 0f24843b8764dd9eab2df52d65b837ab3b0132a4cc5e4ba58ac21853add8294abe0e57f9e30c6419eb758652c6aabc808c79cac35014e963c6a392f06ece58f1 SHA512 02d34f3122dfc83e385a7f865e143ca13220913e04a09b8abc1eedecf97fd8665963557719a0c09790a3c5bcb4969402a659737ec23cf47b86a7660338cb4ba0 +DIST windows-core-0.62.2.crate 36932 BLAKE2B f291939153338efd768bee7cb3891814a1d46ed5cac1e2ea72a7ac66613842c02e1de89052a53e8b164d1055d9d4a138711929af897486b3a6da02e91aee3103 SHA512 b3b3e95b7ff6df91ebf866f8ec9c5e8f67134a26f1690d286f62fd756ebc5e2c59c583d4fdc213e5aaf6834f2693329f3eccbee83fa0567663cfa7d9d9ca549a +DIST windows-future-0.2.1.crate 17532 BLAKE2B 3302290f69c896c87969e01fc87fa239fc6f1f60aba3104d02e71b260eca5891f5bf3443d42a3cf59d7b0a67ee3d08298d19178212bf70a0c7f5fc2e6a5a2139 SHA512 a605bc57eee3f213ddcc0c03552df8793c0d77eff2101c8cfb5b901c8a296156643a5b0cda812f781c48d886a1a1205c08b4cfb472dfb60e6b479d8b09182dc2 DIST windows-implement-0.57.0.crate 10470 BLAKE2B 62bf0f37b73ba8d02dc316015deb7c47c9ef82e0d64cb7d1e624b320cabb37961a8ffe94132b97abafe1d1792bfd58b79d83b0ac3fb14e917f9ed6d9d5f7d362 SHA512 a78d37c8af8b163fb475f02ba667fdc6242bfd7b647061de2156aa94853ad793db112f0fb69549ed171119d654a4ccff0435c73664d5faaf3a32454054e1f12c +DIST windows-implement-0.60.2.crate 15325 BLAKE2B 1f4e5b6759224a74f006c3bfb9acd3bb5fb111fdcf6e4f5e838ca10ac200baf48261583386962d357deffbabea4f67f8e257b8ad8b01b5aee6fe67f3822a7c13 SHA512 212fd6c1f25da40f2131b07ce1c0a34c23177c4666bc518e00a9b4f2bd23c1d131bac565fde531c51f21167f9eb1591e381fc6bc44ce952f6945bad6547c1579 DIST windows-interface-0.57.0.crate 10931 BLAKE2B deaaf2adfffff0c0ecaea0f43bfa772871e5f0894ddc6cd8a3bbf211c341bd04db653d4c164bb29a779665972d605439a3a79d5d8072ca78a3a228c1969c4fa9 SHA512 5c5814f81f819e9d220e8b16342f7ffc051cd920b466d8213144298e038b9c92e8ebea8e130c5357e5c6e9b04f1b1db125acedfac2d189658d12183f637248aa +DIST windows-interface-0.59.3.crate 11809 BLAKE2B c3f439e14e85175f12b4403295f063f53d03224ed1842ad3826fb2beb89c2884317105e28d9d9af2000e08b5bf2fd05befa48dcd0325baba168acb19c8341d86 SHA512 6fe54da90ca797a5e1927803febb07d1e2e4db0bdba5a9cd84d823dc9118390c0f988387e8c614949b9f3c3a0fd47743fd0ddec3200f897952c53a57bb34adee DIST windows-link-0.1.0.crate 6153 BLAKE2B 51b34d4e9eefc3d389a205f1cc654b142641c562b036775504fc923ea83702ef9d2bf8909ce439af7f76aabb486405b91c25861510a92c2f8aaf05944912a2ab SHA512 c7e7b6e67b8041534f8bbf36567fc627b54b46bb407743864fd34113e2f30b7ecf4aa6c04ec328ef1b3cdbebe13ce8f9a2c31520d51e1c32732bfce2a1ff015c +DIST windows-link-0.1.3.crate 6154 BLAKE2B 28e87a3e32312ec3252945eebb11a6bee886de50f13ca2a2c45aa9c7b7c7f7e41cc2323519135e8dc96d433694aeedab7e4cfc9a46c96a2735831017ebcc356f SHA512 b1d6551fa7391b569771bcca3185ca40be6108b9881184aa4c54edccda2a4bf2b60b04248839b718d15b82d9c64a3de61d1b75245cfde5f166ed1f778def682a +DIST windows-link-0.2.1.crate 6133 BLAKE2B d1ca714178e6fe12bb3b4caeed9a52a36890989e77ae2dcd6f2d18ae4a21fb8479d304cdff63bb0a5f28acf44eaf104821cff83cd66b3a0406a5f33a800e3641 SHA512 afb0c87beb8914fd9a3e52db6f2f64a840470b9751b66c83892c24cb1c46cda63fb16b1aeafcaa5a1fc7c5ba01da46be63e5227cc108dede8b0bd27785498a6b +DIST windows-numerics-0.2.0.crate 9686 BLAKE2B 58491292e46cd869c47a96a5c8177b1f7175e495384c1eec8154a5fb15e118f06a0cc10901f5dbb1e4bc860f11e842b9121d19c12218c38dda2e6b8ac40ef1d1 SHA512 4fb59b445ffef54afef22d6db277c71e67a13a907b65a251e52bdd605baae10085c16aba25e0640fa8e9b28d2634cb6d11c1a635ef22cbe19d3cdf170727d29f +DIST windows-registry-0.6.1.crate 13358 BLAKE2B 5a0240e81124cffb387aa7d683a01b36db9c508a1a3943b596a30c9ba1f445b9186dfa2cd2057220c33b773bc2681438295907bab95a5e6d75990acb9497d053 SHA512 bbe256d749d766b638f65e3ae554ca1fd25b98b769365d6e25043ad696de062b64f3564113f6320ce5f071309f21cc32fc73aa093ddb5b1d39d4dffa2fcbb11f DIST windows-result-0.1.2.crate 10601 BLAKE2B 75db56ada75b59fbc450ea39d73c7ea2ca05239c7a1973bbbcef2445f5fe009e32eb0b1df15ab8b44802cebdb71671ad5e741019beea2d49eb59c37534b63197 SHA512 435649961752a345aa3bf5234f88c87248768ce0ee099f6836e889406941069fbbbb17b4c6cea981fe0aa30bcb8839dba88731fbb023265a14b6232c03fcf7df +DIST windows-result-0.3.4.crate 13418 BLAKE2B f9563f7e1c169c43e18cda275b47058e92e461704ba58f197625f13735c9c949ad5c9e359606c36c162b5d6cb2d137cfdd3ffbe7a6471e2b4004ce1d5525302d SHA512 e07044a3b629e12a350f517b40fbac3b8b5916852c09b43014f788bff545cf4c3ff9933e95a4b50ca7013e74c9f58562e2a247789ae8fb9b9adea59f71d1c3e0 +DIST windows-result-0.4.1.crate 13381 BLAKE2B 3960ffb7f15826bd2f8636133412872d7af9c2d89fde07d2183188083e22580ecbef11f423523aa864c0b199a494aabf1d6386d7c7fceeb7ad74575347efbd27 SHA512 a2b7cc53608b8243bf9b19adb75cdc1698b8caf78d939c3afc0c01b1e89f9cb951306cc1673f9b400b926437340681af641ee322f7e761a641ee40e52b21b9f2 +DIST windows-strings-0.4.2.crate 13983 BLAKE2B ab8603b4927b85790ad12884ca564a9416fd51c06d6f574bc8020820253ed19f14fe831cca297f492bf34d7e8a856012d3da1225aae3bb460134b5cbd998dca4 SHA512 2cd546950ed2f2d80ef007635c2ea6df597e100d06ba5a2d4149b6c320dd928bcd6ee829969c36692f1ad3322d38aa1a4aabd4865fc8ae432e38e1ea85318e2d +DIST windows-strings-0.5.1.crate 13966 BLAKE2B 9143cfa5a4184bf0aeb62f8c85d0629d7417b74727349cf46f0d1f28d0e255cc218ac5bc39fe1c7f0311c418f23644e84644b8e7833c5b1c8d1f523c3d38d728 SHA512 c1c3e620aeacbbba0159e789cf0a0261e943f626d21392a77ff00d321c867a0a6ea75054f594a63fcc86cb9ba6bb580d96c29e0a8fdffe90e73658aefc3472b2 DIST windows-sys-0.45.0.crate 2568659 BLAKE2B 6f2d634d121a9bf41e2887e277a73f33aee69b04c7fcfc6ff973d21902787997f1e186f530e9226cddc003ffc3f85a179c069c8a8688de459f617df92d33f94f SHA512 f239346c0141b95aa76e0771e2f4e38b9a592f3cd92c6001de353637cd65cd73b94cbf9917a4eaa9b0c0b2e6e2af920b9cf6b3fccb52770df5160254cffc1c47 DIST windows-sys-0.48.0.crate 2628884 BLAKE2B 551e900de4f67187ef034b60df9fd0e0d8f82a3100ef28e1eabd543ac129d882dc86ffcc1714071aba09e4cb2ae2d2f07ace1a32b99fd989ce525cf05991edab SHA512 bdf534bcf3face31e9ebe11427a911a53f89f4ff5eaea8cccd094e139bfe14b2aec602b1cab1df774794d999477439d9adc6b627a8e33c20334fc348ba2c47ed DIST windows-sys-0.52.0.crate 2576877 BLAKE2B 69d6b560ccfc8f679e2678663ba606060d71fa28efa82c8aef8cceaa2c63b06f2052764d60163964f939649a26bbec6361ee4b094555e941fae92070db566980 SHA512 24ee0df246c2b456a4987a9124786a28acd358768cc7d1305bccd81bc5bb8822b81a03fb18d35174a520b911c6d9b685f81a34ab319fee13da3b985273584f03 DIST windows-sys-0.59.0.crate 2387323 BLAKE2B 3110c8cd2bc005f8c95cd038a8d574af648dc19788fe4485f977376f92e36b911b1a542d669a07ae9cd4ea72a884ab01ec78b8a2b5587456eb202452d1d8fa0d SHA512 d35e009e979633a1f3c8468cd038bd5c8c0381405165ce03497decd7d9edaaac485d704487e4a61d9aaf4e4d011b4248408912df6a0044d50e8457259867e061 +DIST windows-sys-0.60.2.crate 2518479 BLAKE2B c2e2f614066e5a9d7ec461d9d25bd441188797ad85e1e923baeb0193e82f5c138ae7fb4ad0255d483f60f7a94e3f5cd8373d01b7485c052c9498937bc40da992 SHA512 a48aa1b66479451e431032737b63dc62eac6f63c251534e258de75bbee4858829faf5e641756566f00e153b08548ba32beb437b5ea42e9531e3fcbd8eb25209d +DIST windows-sys-0.61.2.crate 2517186 BLAKE2B f4eab0b365aa1df8a353d634da5081237bef0f7b69f02ffcaba232a688e59dfe877c47114de64c81e3cbb929c2fea1143ed6bda56ce935e66d871a993ac29106 SHA512 e6c8f61f0724dafca7821ee9b9c07237ccfee69be269be2fa7318eb48b151285ecf63e860aa1fe303639222fe11268e3773f37c2dd79f923029af58c645edb3f DIST windows-targets-0.42.2.crate 5492 BLAKE2B 42fc4a7d3e287fe2a70637e890304b49737776596f4a94a6d216668247092135e84322bd04caddd19c83b7700b0f27278e600ce8ed326957fabc21bffcae89b0 SHA512 84fbaffcad9a80beca77506aac26d0c5cb75aa0f21a5a70bcd3f6a16e71e8753ae00d3b89da9262c99756624163dcc0d6074fa9f99dfaae0dc098018209025f9 DIST windows-targets-0.48.5.crate 6904 BLAKE2B 7396bb210f37bd51da86f39fca3425c8f6610721d5c4e94f9fafa0a8a8046303b3fcc6979146bcfaa32f4406d242a0455f6cbb220f84c6ff84650e755acf5223 SHA512 e079eeef255a046be7f8e6a31c14f7b230254ebcf05eed2944827bb3d2a0dc30940d87593cf544d5e7ef35f6312b99430efcfb01421d91b02bb9c4bef7d98709 DIST windows-targets-0.52.6.crate 6403 BLAKE2B eb98d0a8daeed5fe76e7fa8edb2743e2a3e77dfb9c4ea68605a6ab10532cb7cfc43bc1cea0180869445bd940be762a40136500e26b84ca88b5e0c502004c7a4c SHA512 d6d2dbd96096c6c396dba141a9817e377c35877f3b2fe58b2553280c7cfcb1ed6ee75bd4d62c9b882662de67ddaf0c1049b91530d29c94dd709c230e08eb895f +DIST windows-targets-0.53.5.crate 7126 BLAKE2B 17a0452fe72a42df4aec8b4ae7798bd611df4f3b093709aee7b8dc991fbc2351edd23e134d12412fb47e9930ae30476b55841d52be5e764fc42a7922e3134ad3 SHA512 285a2ad1c370d8485a84c3921b180416c79ad596ace5ce30a1100fe0d9725139e9302f5728d4874789d8abe5c53e9b30ff4738d969da1c07940bde2b01c7a203 +DIST windows-threading-0.1.0.crate 9085 BLAKE2B f29c1f12c3f3cf7006a03e72637f3a8c60138a2ce3be4f0fe11669c328c250155209fcf434b24a1aec39b17755f9ba8b1c1f5809e81d342190a54e3bfe1d5042 SHA512 e662713517e4e97c88be65c0aa4769d28c7ae65f06ffb4ec02a4af07757423fa533eaa2404abd38bfffaf0f6697941c2d53f10252ef126cc72ee0f5f2035e6e4 DIST windows_aarch64_gnullvm-0.42.2.crate 364071 BLAKE2B 97c4e3b2a2dd3f936f9bfcdad23639c9c4c499eed220aec361d26d6013d798efa118e6b298f9cf841ac149d2ae5d58ca653731718450fcf2910bb5f6fa39159f SHA512 75cd7eb1def8ce9d0ff3d7468d2b1cc31cc76c08f981a2460c3d1eb09cff7100d7442863a3591621c1f5f3b3f4badf0b5c95285b6ed583e37283a8403f1095f1 DIST windows_aarch64_gnullvm-0.48.5.crate 418492 BLAKE2B 5c6f7d73ad05740f0bac304ed1ef9b2ea63b0d6ca8f875552ae299a0b73b1557e8fe996f1c2b69be9f2df350c9288690f49ee62239a2896991364331d6c55462 SHA512 20158d31454488f6053d3ad7b97d7fc6eae6cf37e4ba0e50c28bd29b368505eed64199ae31104d5f97b66846be54e5ed25c0ad31ea850819205c573a31ac0996 DIST windows_aarch64_gnullvm-0.52.6.crate 435718 BLAKE2B 8b12ae02892cb69401329034bbca671d13bd268a112120b56b90504707cef89decfbd2560492844a9f0588fab62dc1476ab7e931126b939015d25a8cc91ca334 SHA512 f62b2d942bdb3a9353465b07d47b93de179bb706511aa497e4addd74cff95e689a9b633e7801ce786e73b5ae5f30b506b6faa199c5ab86eefdc1d94652df79c5 +DIST windows_aarch64_gnullvm-0.53.1.crate 787748 BLAKE2B 78729e1107cf64ffc6a3d70c14cc93e7867578be51d3f6f442914a5f2d065fa86be843b72cd24d707eb59b779e9a719eb28d025619cdc219e379827acb4a16c2 SHA512 5e480e54af09c142ff75e77f733327dd3862f32620e0b075e02bf8119e955ef2f3acfa00f7c7a4d6a2b034d03d70c45e191a40c8af628484d0e76a0b15870cdc DIST windows_aarch64_msvc-0.42.2.crate 666981 BLAKE2B 9f3cc5592cdede08bcdc1e7c455325279e3b763d96942695e10dccf1dfc37a81c749b69a7d6de883d4c0fa6e8a0d2f578fe2a8d6c42ad8ef6282590bf8fc87b7 SHA512 d2dafa8c94d01c1b65ca1bd631d31f2ef842f1db7accb132ff78c3f8483221b991afd3391563e03dcec42bbc9cbdc0ebdab47b991d25af85b5ba2ac1bbf8db63 DIST windows_aarch64_msvc-0.48.5.crate 798483 BLAKE2B 60c466d6536426425a34b5ca20da97c8127ebeb4fb9b1363911165bada484f8913fcd50e90410b5661e0c27dbfe8f4eeaa62fb17d1f3566bfc82b6255e11619b SHA512 223f016c6f1a44dbc5c8a8428b39438f75380ea06951b7c26ed0877b19d79410c6fde5e4c7f2c839b6e76159131f39a1230e0e3a208dfc425ba9117e3665c4ff DIST windows_aarch64_msvc-0.52.6.crate 832615 BLAKE2B adc8ff61b6dc96d39c92c7d4221ae6aa0575edfc016cfcd046067ca5d8fcfd56d10e8e227be1c038ce34684be22c7ccaf5f18cd5a7638d28fbff4ba15b48b90b SHA512 a3e21305ad0e6de38f5b5ed5d37ee5825b7521064163bcdf31d63341cd87983f54377865d2daf3bb480d2d0aa66d6f598fa09540ec1d71baea74569c86bd213b +DIST windows_aarch64_msvc-0.53.1.crate 838009 BLAKE2B 0a04f6d80bd0ab41964e9932040d6c748b6bf10d609bdd35074ba26d245a98281739c8ac68a3fe251d36148a53e1730b0ea2dd5347279e74dea881be43d67707 SHA512 81175036792cab41ede4e3a21ae324e638c39604e14c7a3dae8db4090cec45b385aca32416ccad50ab194ce06d3a71f2e12473767d680348795383dbb2d17426 DIST windows_i686_gnu-0.42.2.crate 736236 BLAKE2B 4ef0496462afc73d9d72af7e5da1e6d3506a92f8172930e88ae64ab97596ffd31c4f97fb969e9b677e30159c27f00a8e756deb006b630fb98ce83f03c8b762e2 SHA512 ad09d650a05cb91cb6b40f59025c023a4c286bc1194586697c506016df2b9b0d5b02606b81687bc634795a0d9a9b8a73e486599328ae09c853e8e5ba662fc59c DIST windows_i686_gnu-0.48.5.crate 844891 BLAKE2B fdc37cd74a4982056bf22fdb7b84e1c55dc838f3cb19ff3648730a77e673ef4ecc0380b3e4277bb8df2fcfa25f57b69014713d9e3ed27c28e19b25b3ea2ab774 SHA512 931ba5c1e4eb8ae73248e00d9611298d1c4b4b0dae719fdeb9243930cd420a103a7bc2738e0a4887c42c8f25728d6c5d64ad141dc092bc3f1d0f35dbe37d303a DIST windows_i686_gnu-0.52.6.crate 880402 BLAKE2B 5aab8ee07132eccb7695807eb44811beeb0657aadfb672c54e99b6ae39c067ba9b93e38fc69bb5b9b14a9759f263ccd5e301597d2727d83b31b49a409b6bd405 SHA512 a1f6b5dd23d17ec3567bc9d11a4be6f35e196eee21ca342e9b88dbaa6a5f7c46e439c834b77e724f32ac22c0d81573746b3b513a6c944a221b92b2c76fe98822 +DIST windows_i686_gnu-0.53.1.crate 939775 BLAKE2B c6abfbe7b82c7fd95a483da467ce8f12a3777572e34c42777e6378976344c95e5a56e3e7ae47049e14de81aa26f276a723ac5cb61f2c62b141020a97a91f137b SHA512 5af8519d1e0d9947738d5aa339091695467a55b62fe97bac680eb469679180a54e9f65e2ef8d0c34d4e63ede8c16f34a0fbd1f54ff53924ebcd6cef17c3474d2 DIST windows_i686_gnullvm-0.52.6.crate 475940 BLAKE2B fec4fda8bb2bf319a501a22372fa642ae682e4dee3235b258a028190ee73220bfc55b3142f06249bb4579b17e5fde662bb2b121aefe18544653350d7d0fe7d8e SHA512 95f13af855d530acc0b856214478d4b11b8dbab3f8f79dd223d0b009790c0e46d096fc1773e0277997deb2d5b96c704f17f23c7df11411524629f75415dec99f +DIST windows_i686_gnullvm-0.53.1.crate 857396 BLAKE2B 4fcc61c3634d7b905c946ccaa2f6d03ccf0feb6f8080337d5618959a532fddd5989dbc95d8559bbfb06335865387900e7cfe942cfb67a7724c3c00dc99b1d603 SHA512 492bee10b669c799a93b7ad98ee7a15c0ccde4d13697408612cd345cca2b7efc38b85c550eaf1b83470bee53ff3324045b7b751c3a31ac0e214b9965e05bbffc DIST windows_i686_msvc-0.42.2.crate 724951 BLAKE2B b084286cd4927efd2889b149abf8a9fe9d3d777130db9e592982660dbf9a96a0f5e723ca121465787aa11877d2d29a5a7d7cf066cdc8fa7e90d7ca7dcb7677f1 SHA512 c1706fc36d4b157c020744a11b3eb5d7dfbf05a0b56775bc717e94b7fd725816b20154fdbcd69ac08dbfb8b8bbfa74fab72d7a9c10399aad6a1cc54cf597e804 DIST windows_i686_msvc-0.48.5.crate 864300 BLAKE2B 3d3ea8be55e2d6ced0eeda18abe1dffb925a1a78f456d683e4450d9f2fd287ad2e8494d65b2b770c677a12b3a60d10f0435e16c61880e3867c3657fd44892442 SHA512 70e2fb4fdb006a4cbd43ab2c7e940b277a15fb1790dfa2d1fc1f1fd18bead4886f6dc046e44326603e4894d988578917b8932aba5d9a6a4cc8424911cad9dc7e DIST windows_i686_msvc-0.52.6.crate 901163 BLAKE2B 99ed34e052db5ba77bab240ed5d38ce450be347a794d63ec39b719304c32722c9999b540ab40abe0216318900b7412970df99dfb36d1516a9517cae0c77d1bdc SHA512 ca97913ce202d73266cf55947b868bea7e964a4516b6a096a81aeab6a60ee73867171032ced35e3afccff741ddfb2def7468343b6eceb95253e4d4f349efbf96 +DIST windows_i686_msvc-0.53.1.crate 907688 BLAKE2B f6ae6032836367e9a42261779661abd028d303cfb13c016dd1a745b21b58d62531dd0d7658a6c133d2bf1dd95c538cf24340bb50e6743a82d6be9a622ff371b7 SHA512 b78f2a21e88adb65bf8a81bfa8a133d6ebe18b8394220421bd5f10b619528f118a255dacf6e78014ddb4db8a27b936be7af6e137133d914e1cc0902139a0e0cd DIST windows_x86_64_gnu-0.42.2.crate 699373 BLAKE2B 01c70809d564b16b268656e47295e99c992d8f9839fac8a51338a0e7c3b9cdcd0429c456ca8c1c139a8c687ed7ed6c43a82250889d881aadaa65bd037223e0a6 SHA512 5767af3c86e717f93137a89d442230e6b60a649057edb3ab104b1f82c0bcd64fe089dcdf2f4fd486a799bece1ddb5f0449641536b678211945e749ae24f35c1f DIST windows_x86_64_gnu-0.48.5.crate 801619 BLAKE2B aa7e7e6a6ff9f9553ada3a0a39a9aa798e9d995a8eef36e0b6fdb2a0db93ddecee5548970575271fe43aec74797a420d0ee231d503b5bad1bd999059261e0e33 SHA512 1d6056fae430b3d042bdff3c6217c76be4b8b9f5dada9bad06beaac2db7d7ab9b0a82e44f498ec88e61afa73e99f56d84d445dc3847732b9ce5d947e08485f74 DIST windows_x86_64_gnu-0.52.6.crate 836363 BLAKE2B e2335829155cdbd4a55cc9f9babc237e14e32aab97f6f91afabcdf80d2aee37d6fb4b8669aaf433ff532c85dba59b3d366c7d41b61a2f29b96f960169c900687 SHA512 c4086bb0280042f2bef9b556283b67f8a5cacddd209e1c5fabec63decec6d4fd2d6a7071407973981b98ae0c0cf7034fc612f9e70dc6d3eed9acdec771ae31cb +DIST windows_x86_64_gnu-0.53.1.crate 903712 BLAKE2B b5a86bd4a760fb6d937dc5285d2c594245ed6bbc541ffd6cf6d169c7e4e8c4334523c06c7a59c52f100a05da7976193fbb535ff3bf7db30897d9940d4d5648a4 SHA512 e4c5bbc49202636c03953aa0fff1f1affed69970aae198cb4d1eeb5dda63b9e07b0cfaf46015bca3b8c48fd90d3552488a6a7b17b53aebf9776e996ccbf9c7d5 DIST windows_x86_64_gnullvm-0.42.2.crate 364068 BLAKE2B 64bc53e98eb3fc649c9b43a6e734de4e65088e41edacabd49f7afcc5dc6e1065c563ecfc682747dda05978dea2dba4f45c16fcc18c3b00684c3d93681e5a7deb SHA512 d39a8bc948110fe612d3f8d6628b3f0d56620df11d8a49e0fabb6c90389ad407582b3af10e4eab46c79b3d11d2e10753d73d9e55963fbeac085f41e9749bdba3 DIST windows_x86_64_gnullvm-0.48.5.crate 418486 BLAKE2B 12a2199d434617c1df1a839e9f435620ad64b40c579f6d0c3677553ad7a48e5765d12c266b04946402e15c92cff2e4ac4979ce2130750ef426e2672119680284 SHA512 c016d5b5e73832b61ff67929d92fa8c16e154656294357266ad29ce1f44db4ca2d2935dba31a6b571187dc838b1d22f1e3b41fefffd1d719a338439adf1646aa DIST windows_x86_64_gnullvm-0.52.6.crate 435707 BLAKE2B ab77dccd06328cdb00175f41cdbc120594050a9678b7f9820444391fb50aada3911a91ea00f3a6db2b4fa1820fd23bc9a007dfbe65ad41417c26ee1137ef9b96 SHA512 67681f5859e249c56b0183181811f6212cc7008d6471dad78aecc7ebe3d027686b19210b8aa9014c554410f69f913d21ce2aca928eea905eab779bea26464cbd +DIST windows_x86_64_gnullvm-0.53.1.crate 787739 BLAKE2B b5e3aaba4ecd1e5e21a0b9ce5beaad3f9ef78249f21b3dbdb69af98d5f36d01f2ce65d3188788392b866f296548075857e2f904e30cb79db33fb3134fd78e946 SHA512 30b8919ee9ad36acfac4e28a3b22378ce11ee73d35de60dd9c9217adf14e85222da5526100b0252372e039e559a5bf734ba134b10f707657d542341056947588 DIST windows_x86_64_msvc-0.42.2.crate 666936 BLAKE2B bc3a456e7f8bc272f8978ec69506ec9d89f97b7582ebbe05d8bd57bdf8156ef62d0d2dc6137a97e81d54059d70db97a24af9a038adff357f5dfd28805d6193b5 SHA512 53a35f438903fceb59e36bd2ac331773fb8e6c8c5a6d984e79021761f91b3b4a23efe49d219667a4d0d23dcdbf906da9c24e74fb1cff93395b5c55ff524e3788 DIST windows_x86_64_msvc-0.48.5.crate 798412 BLAKE2B 8abc0721e2fb337fe17c91d278947d36122d9045b839ba0cf3e690202d242265b676f23cc301da5f9d98c56ca4ecb76f7d6f072ee71bf986a1deca87020b90e5 SHA512 fa1c5cd14ca2ff0082e2504cf59d317dc4dc6f7138d35c12f95d4476a9c13d8b7f5537d0ee251eee7c99411ad31b22263171b7fbd391daa5d3ea3488ceaa61a0 DIST windows_x86_64_msvc-0.52.6.crate 832564 BLAKE2B 8e9a3044654c6de99a9153e7cacd575474e7a8a3d883c67b02132af5d3fc99d03cd5f7a4dd666a3947451d11218e6acc6eb5e2526f012481106cc13453839719 SHA512 21944cd8e3a481b514509e73ae3f62722fe7ed380d37ea0c25f8fbdeba79174dd52ff65d898838da5df4197894b74e00f45d47489418e978753b4e55c7e623e7 +DIST windows_x86_64_msvc-0.53.1.crate 837950 BLAKE2B 5775d30ce763835fa26376d85e9ae6f598b817b8d32b01147e5d197c364a5071ce7b5b09ee6f611fcf30790af79c4e4282e04ced620190629eebcbccabb8d720 SHA512 bb724f4051db90ce49b552021e746769e5dfe3792b522416539960c27f9ace14f63c47f0f240d6563257377129b5f3ba2c262c6fea9610428aa860fe035f189c DIST winnow-0.5.15.crate 145621 BLAKE2B 039262561227641c2d8b996ebb59c79718de3f2b7dd8e369fc3e341f3458b1e0213f35c575d615e87d5f89aad639c7a258e4efb2c10f58c2cd6e120482702cc2 SHA512 42dce18906f41e45e6dd75ba01af6a94501317dee8b45f4c7340f7c9c94f8935afe2536cd9ad5a91eef6f3a6135cab0a451d67a35b5a0fd69130a90e6aa47603 +DIST winnow-0.7.13.crate 174454 BLAKE2B 037d07cc421502502b5fc99e2640e3d78b476229071ba44252da52e368f9a46607b6fd3b6e0c0be2f201beb7502850ae01ddf24e0fdb4f4585c05805bcbd19b2 SHA512 dd8b5fb359f894e17e4737d29ae9629125d2f9578abdbfd5214c333be8faa2860f5345e4383f207129ac4f0e6e419d681c59375ba8b78604e9230835d77867ab DIST winnow-0.7.4.crate 173588 BLAKE2B e4d6f93fae99ce2c90fe5a47cd1a6631e0ff69f3b6af91967178be8f71acd2897da71965e5e8662f5872580f5cb38823d5e41c7a849221e1937f0d5b92e260db SHA512 51edb11507a90f6f174f6dd1eff937c879fd9890288650489227363c9ef4a453663de185f2a9749168fa85d689b408fec8dc2395a0e368684ca4425ad8f5b7aa DIST winreg-0.50.0.crate 29703 BLAKE2B db9a968ef96cc07bc1088831affc4627e09c7ab8170a54fdf70a599c2d6180a8a9ac46b6304b61fdd2fac96e01bb004ebd8051940300c7b52c5b7b7975732d11 SHA512 2f52a9e3ab794665263499c88dfdf06009c6477d180a90ebbe86e786ae7f5003c9dc8b3c26224024e79450f3b94688000458f2ea8b1ae1c3691453c3d4df4787 +DIST wit-bindgen-0.46.0.crate 60508 BLAKE2B 4422fb47880ecd70749d615ea6ed0a8bcb5941bd9de2c2164a6f1248574363408fcb634e0e9aa0af3e0f278c9311a81212818dff70ef39614646ffdd646b1fe7 SHA512 5d37ac5855797cfb906c983a70780d7cd29d70c4e5b6e54328fc18297feeb89ceda0aa732123280a12610015fbdb42bcd76aae12b1debb281b0a848016134548 DIST wit-bindgen-rt-0.33.0.crate 3357 BLAKE2B 7c5227e835eb405b681ba36a2472fb3330b9e44f8e9cef06ae5de326691d4e4535cfd09843241963572060f4ccb048aa088fb8692591f9253cd215f510969420 SHA512 fffae2da775fcb5066398aba5cd02119a07f5bb5ab2282c74f1665656de0278ba13352b8ccc6ff107677aec3ec5d401729158332f653e0a2e7b393d1aa018b8a DIST write16-1.0.0.crate 7218 BLAKE2B 548796314339463e4b71f8af3d344e45dc89480e103180b6d56c90fcb816ad1a37ab2ba20766c4b9754f2cc686752eb1f3a5a12ec1ed4369a9cef749ad4f3e97 SHA512 655a207b8082bb88e462f992ecb4833cef9d590da06d6356b41d109df2862b49ee5705189c78a607b549e7343035119d158020d58fcad49608e51659357a83c1 DIST writeable-0.5.5.crate 22354 BLAKE2B e4ff9862c070b413568ce0c75d1eccafcf1db8578eee4795ea9046dadd643f8a77258b437be288b93af247199d63455298ac2cff909226bc432f91c0aa863921 SHA512 818b2546c8ec25816aeaf5e31a1ded927d197bf7256e7c5073738c2709bc58a95d382a0256eb38a99235ae83729b578701261866d42ea3357a26024906e196c1 +DIST writeable-0.6.2.crate 25181 BLAKE2B ffc57bdfd8eeef7e2b50a1a7fb2fc8af0322c17cc99cc4a3eef3fb2062e447e05721db74e62080fab08f565db15dba21be8b6bfbcac984acd2eb2a80e08b9ba2 SHA512 d267aba601237bc4061a484103c10f0cf4ca3cf6db0f50063319801e1aa73272280115ad3ad4f461ecc4ed9cf4ee19131ee7cfacffacfcde54657bdfe3c557e7 DIST xdg-home-1.0.0.crate 3310 BLAKE2B 9ca30a8daabf4e48aa3266f382c8d33313388057d7cc0b837130229b342df4da8b712831df6ed4b71f55014e0b6acef482849735c82957e71fffcdb4eb781f63 SHA512 943414b1238be9cb0785987e45e90412ea1df6f838ec845147555e09e2433966b2635b59884f9adc13f79820661062f13c1368fa959f785897a2617ffad0bc23 DIST yoke-0.7.5.crate 29673 BLAKE2B cd2e42103140e080a29bf579fe5176b36a192f9b1309c1f2fd7557fe93b2f6eadbf6fca4a6a3b1a7b6288403d2f643841dfc7a5b6a4476776943950abe5c1613 SHA512 6bbd99671d1a5a5217890eaa267113d193b3636b265393afb6e72a313f01704d462fe017264f061405e8e84c188b590094c29e3fcf19a63c375ae165d1a0bbef +DIST yoke-0.8.1.crate 32016 BLAKE2B 9dba7f506636b93ce559817ec57380836858eb14fd3484d5024535ea909d5e7d5da759c316bad86847607f05db1228a04d65942dd020b426fde1b7fa40962c02 SHA512 0ab6353207432bd0a18b6ac038cc37332ece4f2f5182b7eba6e47881a051f0f2ac41d365a8feb74bd3de1d4e4d8dc20c92fa2f3f1252b35d4ab6ff0f56f31de0 DIST yoke-derive-0.7.5.crate 7525 BLAKE2B 9b6b97eaf3c50f0f5ce8cebf685a1a17d4c21eb9b26d38eac99e0a4c0f9d592e95a7843b7a0b897945a14c4eb78ffdf2c0972b448d31d7bc7b077f27aad81d9a SHA512 e30b06b020aa283080905004295fb643c539b130d0d53bda51927b95e79ba562336aad30d8a6202d9a0c62d5b64559a01218c6f02f3faada6003d4b03c205cd6 +DIST yoke-derive-0.8.1.crate 7593 BLAKE2B 09953385df0b24b5cdbe4fed4c8788e20236c9f5a79d144799a31807a1a4e82380cd3ed451a46055ac21561c2f9a05ca91c953b7c8aa250a26a2e11fd11b7a9c SHA512 20561f74561f3e7d5ce2a2b702bac565047be284cdd24a3bf837d423954c8260d32f8d27ef9761f5e891bb539f59af22afc4830a4e52cf9888c8ca2a50784a96 DIST zbus-3.14.1.crate 148931 BLAKE2B 6fe6dccbe50d58302ca514ed703f2ae73d6042399c7cdf8bfd156b6c3b08c9f0e6cd47dab2995b5a5dd6217f8c657b31a72676bf7627ab94b7021c507bb272d2 SHA512 e972c93293ecad9b25adb2175a6960d2e7f94acdb300e3d887c807d9532aba4e604747543142a174955057fdcd082c4a3cb340a4398e31b491c44eaa92829c9b DIST zbus_macros-3.14.1.crate 25893 BLAKE2B 432742f4ca676bea1c97ead3089d912a238ff1e002e4650a80d1e4f10f75f8005bcb37e8d937e0e72c0879806b59ab4356e784e06bd66c2a5ea3f46beefc8de6 SHA512 1b6a4376e3b5e7b5f95a52026e7ccf48c459b816b210e6cca2b67ff47161f586590b8c68e7876573105f7892e1c4c33163b3679acae779feeaffe220f64eaa09 DIST zbus_names-2.6.0.crate 9638 BLAKE2B 014004eda1335361f34101ab5715d457a0d6d7df8ba5c4262304c338ff16fd7723a9f9a47e088d8a949e3343d20c2a9a05e24fb3fa0e46a9c10c58399ff20042 SHA512 3d0e5fb5aab3d2955b4516168b19be5c86d04cf2cc7d7f83779ba1d0f637a5670f16bc2f34e57bef0692477c3e2c1821f820214424c45f0411c40be954e38741 DIST zerocopy-0.6.6.crate 47473 BLAKE2B 234279a161f5e136fb3ecae263274dceaa878c0da180b070d679d090c498385841670783824739ce8b2c0db10e8470bdc3993e1b2460064bc44d80526937e94e SHA512 2933bc6560c117e4574334da24eeb53d02ce8b158f46fdd77cd7dfe8bbd108b3b95318df4b0b59718ab696349649111c06a8d3960cc5f52223abe2c9dc335dad DIST zerocopy-0.7.35.crate 152645 BLAKE2B 8f13123c9d9257ac5a5c6954d38c3510fa658624442f7e03cdcc6db5a0977d9f26bb4e277be172b7872ec365cf6e58ac742e5578636f7698f9f37093e9249d9a SHA512 17fcb31c029ae89c01e5bae5fb2bb46bd434120199a3dc2c7fe0012dbbcfe2a0bb38934c4a7d3a4920e3fe47c097403beee554fefa54b66cb390f8b1de638d3c DIST zerocopy-0.8.23.crate 239977 BLAKE2B e1959cff4a27dd663f499fb1721ac91bba099e5b1c87e5a37e6e8fdd67dd2799a464c48cf911ca874cbb168bca3a086735fcfe1a62a7ae5bbfce5f81893ff306 SHA512 67fb584ff03a47de0e8347a816160f49f69a08ac6710d6013949f12ffe1401113e4680ccbacdc95c76daf156fb8e2f7b0a832cf9e8c2d76c3bc42534f8c9641d +DIST zerocopy-0.8.27.crate 252663 BLAKE2B bef5142d18ae053a542d3a481e5ed3594ee73f9d89eb82224c115701e38245e87ba9cfddd15812fbae5c2486ad46c11481ee722a3c3832a2540a43f84f6dce7e SHA512 f3f8d298b3a56d0eb3061207d069f34302e1dfb61e6b3ab2a9c8d0656b5da807ebd70310ddf818fbb40547597183e09be77c07c4b665690af66f27a9cf96a1df DIST zerocopy-derive-0.6.6.crate 522443 BLAKE2B aa3626428c9d79a4bf6f593da0fbe42c77cebff8a0c1c4b22bbe2a5aa63f6e30771681887565905fd62241c2d396eefb32435ed1c01d3d165cc1989d12c42401 SHA512 c91144a6d5c85a0917dd34302a7518b98780c06377399831a777a0d4da7826c70f66e3ec9eeadf1bd5f63be36a75345d49257cca1ba15db0f6d9f129d7f0c1b4 DIST zerocopy-derive-0.7.35.crate 37829 BLAKE2B badeb7fa5e0bfe93a6788d93fd297604ed31de526b121549300ead3c49d450f49265f499e2e7ce606dcce2b59dd01f7fa817b8fbb3f237475185c5b42f5299c4 SHA512 dbe23573b62a6267d7bc8c744320b75b2fbda03b908c1d175211f7394374fe182bce58021e25485c10671d726b2007f250565dfe53134d51c89293bb607e9feb DIST zerocopy-derive-0.8.23.crate 83885 BLAKE2B 2b8fdfa64f54f592997c8092b6a1f630ca9c6b7f8eaa7b8ae33bbcc3a9f1afbc6ff65907d1678d347ca537c9d15092870a9f7985791c01983cfd607ae0f10932 SHA512 322b571147db92a453b1d6dee7d83a7d95fa9f4427220e811c151d0f1f2519357e8251624e0ff865f6a22560c84f87d2b72a5e54e8c1ba307fb3ebc19e7091cc +DIST zerocopy-derive-0.8.27.crate 89827 BLAKE2B ace5abe8aca7cdc22ab66826e7e244b89d84adf495186eaa2714d6c521403e2fd84b56259eed6d2a6ad9800e164021dadfcdf4c80ad8a8b7eb0dd7fe799e9749 SHA512 9fd0b4f900e6ea7c92998b7297deafa84870e7e57d09225ae3910894358da9f405925fed88d2528f52caf5a1f6e32dd75bfa18ed3a7f9fee75bfa88c0f23e451 DIST zerofrom-0.1.6.crate 5669 BLAKE2B 1428e9cfdcdae13b39b7465524d1b8b79bdd89f743d3db4a3305c2b39d61ad7ced958dabd673a135147a04c8ace69d8c710dc06c6a07b1dd3987fc0a45148094 SHA512 e87c50b4f87caff70d026099bddcced73398c432f6aade32d74ad199cb3a985956bac282f48efdd501e64e80297afe4f8a4518db32437bf297fcf51a6f94bbd9 DIST zerofrom-derive-0.1.6.crate 8305 BLAKE2B 9ab7425b450bf8c47538be7ff32901045393bdd91b9687b8a32ac194b7272dbd4f5310629647c6710f97a50cea45c722c018a77006f24da2b44a4c475daa54cb SHA512 ef4226df3c9ca9c0146639b19d9aa611f2ea3148c10ea875f43ca1960ee8ed438a553b078a9b449a58862f44cb7d4434fa35bbd6db6f0a773618f63d2575c985 DIST zeroize-1.8.1.crate 20029 BLAKE2B 092eba034cd35ec47290020e0c2b213177ff5dbe14ab9e7f0b4ef3cb1ecbc42fbec2b951414e26ab00bc65aaddc2c93eddd5a1963b27c6cd613ac71c65d5cc24 SHA512 dd40ebe98b98fd742608d4066b5ab66caba94b2e679428fcaff9fe547d8cd6ff2360dc85d671ee9183e32fb79cb554d00d6aef9eb8f3d8ad0ec92d0435aa4ebe +DIST zeroize-1.8.2.crate 20907 BLAKE2B f9233758bde107e2409b56e936e02f51442ff29dfb2589c0b194edb38645421b4b8e6064208f7548a93836149c425de90c08792288e5cea1ae117911406bcdd5 SHA512 ce1fb97ac69cb0792f2f5820919aaa0a9f71c4b410bd0d0c2343d8415d39e3eec3f948cc2769eaf639c14695a3961fb6cd96ba7a77a15a77924d1a8c16497b81 +DIST zerotrie-0.2.3.crate 69547 BLAKE2B e5195d0ac15eb05ced2064cd106892855253b11fb996fa8a9f8b44b3b2958e900c95503200c5fccaef91df3fcf0dd17c9a028ad8c014ba09485f7743cfe6b74f SHA512 10d3cb670f959b81a7170440a081ebe66f147c76be8e6c769b9093bc737cbb28c1b632515311adf7ffccee0cf05f808ad461743128429d2d1ad86932e54b587d DIST zerovec-0.10.4.crate 126398 BLAKE2B b078784d6f178bbb9de1c3c1b6c7ef996f00bdd7dfd2924bda921e62f3e09e953fbf50f8d0da99ac6ff6d134f146253846f5663549dcf8df08eaf34b9d4016b3 SHA512 db12bba1d7476ddead92e6dfcdcc30e2e0defff4f263a740244eabee265a2cab265473a663d3dc3210f48e113b66d951da496dfab7965ce1bc792e5f2db422a0 +DIST zerovec-0.11.5.crate 119620 BLAKE2B 8277a379f53b95575fc14ff56b41930099433af7c10b480e7ac7e4b3c9b971571f7966873272bd4249dbdb2ff388c56963a5b9d7b2c9ac2072ac2a85178028e0 SHA512 65705ab802bc441561efe7af6cbd6187c04ee8d2feb2b5d5137dbbcf92d65edd30db5ef003c2f34588dd1a3a0a2aac475b4312d3c4951a32a82d5aeb57a2fda9 DIST zerovec-derive-0.10.3.crate 19438 BLAKE2B 9f7df8a4e4a0b62ab25aed967b26509db4bcc5d5b10b3bd73305099a4c49a60be8921484ced1a34d9b7ae30ffa5abe789686f432416a8f1cfc07de1db1dff594 SHA512 caefbffeb35265db9f74933bf07109d57f0da48156cafd4f330af78a5c7eb9ab0831a80789ad4fb119875ebc6cfd7e3de68c9984b77dca5151f9be41f1ae6e09 +DIST zerovec-derive-0.11.2.crate 21421 BLAKE2B 42ec1fd49da71796845e1b3414d3422ebecd6f30e7affb7a672449a75a70acfcfc24096130edf3c247651272b03134519a89bcfe36dc2e426a8224fd687236cf SHA512 ee36fa909e0ba80ec0cc10608837bcb0b4fde68b12174c8311ffab0eb8ac78f62ed6540bfb5bd4fb756c911f4ebf44b3a0bfb5ce293572bafb75b9e5705a5745 DIST zvariant-3.15.0.crate 72221 BLAKE2B d2bea9c05edfda4a3c27a813a2d5274d3e7e35fa56d17bee91958c641e45b8c9bc7eb4f7787e099d712585e770012f364e244c4c1c30cc918886a688f666d642 SHA512 7acbeff6f717530ad771a415b5fd59804e6cff862c36ff4a7adee715d988a5ced8bcd47d3b41636a716239af8c0ac5b9dedaa663acc6f9f725b4a6072088341c DIST zvariant_derive-3.15.0.crate 10943 BLAKE2B e75d5feb9a76b74c7b77d0be8552c06a2323337884c5cae60827bf7c470d0875d2c3d40c393fc84c63789206650100b6726da7e57446958ae07d5c20605905c6 SHA512 262009179f7c5d6b559709be69c89697eccc0202fbe52575f116894390b4443986edf6bf51ad83177423d5713217ec8f0fb9ecd3382960120055666124afabf8 DIST zvariant_utils-1.0.1.crate 6223 BLAKE2B ea304bac65493168f1be268192829d5a666a267b1f69533a9d2da2b2d2447d7a9f0f70164d60ab02afd90134e37060f86706bc7047c23aedb198d0834f987d15 SHA512 3cf364d53f1169d5274998c3f06ef1a9371071644b256223441deb004553d4eccbb564305ddc0693cf1b7a595e8c1b989df0f8b4eb8447a72782d7d200120f36 diff --git a/media-sound/spotifyd/files/spotifyd-0.4.2-no-logging.patch b/media-sound/spotifyd/files/spotifyd-0.4.2-no-logging.patch new file mode 100644 index 000000000000..b7cd420b2a06 --- /dev/null +++ b/media-sound/spotifyd/files/spotifyd-0.4.2-no-logging.patch @@ -0,0 +1,27 @@ +Adds option to disable logging to allow use without syslog +--- a/src/config.rs ++++ b/src/config.rs +@@ -234,6 +234,10 @@ pub struct CliConfig { + #[arg(long)] + pub no_daemon: bool, + ++ /// If set, starts spotifyd without logging/output ++ #[arg(long)] ++ pub nolog: bool, ++ + /// Path to PID file. + #[cfg(unix)] + #[arg(long, value_name = "PATH")] +--- a/src/main.rs ++++ b/src/main.rs +@@ -149,7 +149,9 @@ fn run_daemon(mut cli_config: CliConfig) -> eyre::Result<()> { + } + }; + +- setup_logger(log_target, cli_config.verbose)?; ++ if !cli_config.nolog { ++ setup_logger(log_target, cli_config.verbose)?; ++ } + + cli_config + .load_config_file_values() diff --git a/media-sound/spotifyd/spotifyd-0.4.2.ebuild b/media-sound/spotifyd/spotifyd-0.4.2.ebuild new file mode 100644 index 000000000000..074cc34c036d --- /dev/null +++ b/media-sound/spotifyd/spotifyd-0.4.2.ebuild @@ -0,0 +1,525 @@ +# Copyright 2023-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Auto-Generated by cargo-ebuild 0.13.3 + +EAPI=8 + +CRATES=" + addr2line@0.25.1 + adler2@2.0.1 + aes@0.8.4 + aho-corasick@1.1.4 + allocator-api2@0.2.21 + alsa-sys@0.3.1 + alsa@0.10.0 + alsa@0.9.1 + android_system_properties@0.1.5 + anstream@0.6.21 + anstyle-parse@0.2.7 + anstyle-query@1.1.5 + anstyle-wincon@3.0.11 + anstyle@1.0.13 + anyhow@1.0.100 + arrayvec@0.7.6 + async-trait@0.1.89 + atomic-waker@1.1.2 + autocfg@1.5.0 + aws-lc-fips-sys@0.13.10 + aws-lc-rs@1.15.0 + aws-lc-sys@0.33.0 + backtrace@0.3.76 + base64@0.22.1 + base64ct@1.8.0 + bindgen@0.72.1 + bitflags@1.3.2 + bitflags@2.10.0 + block-buffer@0.10.4 + bumpalo@3.19.0 + bytemuck@1.24.0 + byteorder@1.5.0 + bytes@1.11.0 + cc@1.2.46 + cesu8@1.1.0 + cexpr@0.6.0 + cfg-if@1.0.4 + chrono@0.4.42 + cipher@0.4.4 + clang-sys@1.8.1 + clap@4.5.52 + clap_builder@4.5.52 + clap_derive@4.5.49 + clap_lex@0.7.6 + cmake@0.1.54 + color-eyre@0.6.5 + color-spantrace@0.3.0 + colorchoice@1.0.4 + colored@2.2.0 + combine@4.6.7 + const-oid@0.9.6 + core-foundation-sys@0.8.7 + core-foundation@0.9.4 + coreaudio-rs@0.13.0 + cpal@0.16.0 + cpufeatures@0.2.17 + crc32fast@1.5.0 + crypto-common@0.1.7 + ctr@0.9.2 + daemonize@0.5.0 + darling@0.20.11 + darling_core@0.20.11 + darling_macro@0.20.11 + dasp_sample@0.11.0 + data-encoding@2.9.0 + dbus-crossroads@0.5.2 + dbus-tokio@0.7.6 + dbus@0.9.9 + der@0.7.10 + deranged@0.5.5 + derive_builder@0.20.2 + derive_builder_core@0.20.2 + derive_builder_macro@0.20.2 + digest@0.10.7 + directories@6.0.0 + dirs-sys@0.5.0 + dispatch2@0.3.0 + displaydoc@0.2.5 + dunce@1.0.5 + either@1.15.0 + encoding_rs@0.8.35 + env_filter@0.1.4 + env_logger@0.11.8 + equivalent@1.0.2 + errno@0.3.14 + eyre@0.6.12 + fastrand@2.3.0 + fern@0.7.1 + find-msvc-tools@0.1.5 + flate2@1.1.5 + fnv@1.0.7 + foldhash@0.2.0 + foreign-types-shared@0.1.1 + foreign-types@0.3.2 + form_urlencoded@1.2.2 + fs_extra@1.3.0 + futures-channel@0.3.31 + futures-core@0.3.31 + futures-executor@0.3.31 + futures-io@0.3.31 + futures-macro@0.3.31 + futures-sink@0.3.31 + futures-task@0.3.31 + futures-timer@3.0.3 + futures-util@0.3.31 + futures@0.3.31 + generic-array@0.14.7 + gethostname@1.1.0 + getrandom@0.2.16 + getrandom@0.3.4 + gimli@0.32.3 + glob@0.3.3 + governor@0.10.2 + h2@0.4.12 + hashbrown@0.16.0 + headers-core@0.3.0 + headers@0.4.1 + heck@0.5.0 + hex@0.4.3 + hmac@0.12.1 + home@0.5.12 + hostname@0.4.1 + http-body-util@0.1.3 + http-body@1.0.1 + http@1.3.1 + httparse@1.10.1 + httpdate@1.0.3 + hyper-proxy2@0.1.0 + hyper-tls@0.6.0 + hyper-util@0.1.18 + hyper@1.8.1 + iana-time-zone-haiku@0.1.2 + iana-time-zone@0.1.64 + icu_collections@2.1.1 + icu_locale_core@2.1.1 + icu_normalizer@2.1.1 + icu_normalizer_data@2.1.1 + icu_properties@2.1.1 + icu_properties_data@2.1.1 + icu_provider@2.1.1 + ident_case@1.0.1 + idna@1.1.0 + idna_adapter@1.2.1 + if-addrs@0.14.0 + indenter@0.3.4 + indexmap@2.12.0 + inout@0.1.4 + ipnet@2.11.0 + iri-string@0.7.9 + is-docker@0.2.0 + is-wsl@0.4.0 + is_terminal_polyfill@1.70.2 + itertools@0.13.0 + itoa@1.0.15 + jack-sys@0.5.1 + jack@0.13.3 + jiff-static@0.2.16 + jiff@0.2.16 + jni-sys@0.3.0 + jni@0.21.1 + jobserver@0.1.34 + js-sys@0.3.82 + lazy_static@1.5.0 + libc@0.2.177 + libdbus-sys@0.2.6 + libloading@0.7.4 + libloading@0.8.9 + libm@0.2.15 + libmdns@0.10.1 + libpulse-binding@2.30.1 + libpulse-simple-binding@2.29.0 + libpulse-simple-sys@1.22.0 + libpulse-sys@1.23.0 + libredox@0.1.10 + librespot-audio@0.8.0 + librespot-connect@0.8.0 + librespot-core@0.8.0 + librespot-discovery@0.8.0 + librespot-metadata@0.8.0 + librespot-oauth@0.8.0 + librespot-playback@0.8.0 + librespot-protocol@0.8.0 + linux-raw-sys@0.11.0 + linux-raw-sys@0.4.15 + litemap@0.8.1 + lock_api@0.4.14 + log@0.4.28 + mach2@0.4.3 + memchr@2.7.6 + mime@0.3.17 + minimal-lexical@0.2.1 + miniz_oxide@0.8.9 + mio@1.1.0 + multimap@0.10.1 + native-tls@0.2.14 + ndk-context@0.1.1 + ndk-sys@0.6.0+11769913 + ndk@0.9.0 + nom@7.1.3 + nonzero_ext@0.3.0 + ntapi@0.4.1 + num-bigint-dig@0.8.6 + num-bigint@0.4.6 + num-conv@0.1.0 + num-derive@0.4.2 + num-integer@0.1.46 + num-iter@0.1.45 + num-rational@0.4.2 + num-traits@0.2.19 + num_enum@0.7.5 + num_enum_derive@0.7.5 + num_threads@0.1.7 + oauth2@5.0.0 + objc2-audio-toolbox@0.3.2 + objc2-core-audio-types@0.3.2 + objc2-core-audio@0.3.2 + objc2-core-foundation@0.3.2 + objc2-encode@4.1.0 + objc2-foundation@0.3.2 + objc2-io-kit@0.3.2 + objc2@0.6.3 + object@0.37.3 + once_cell@1.21.3 + once_cell_polyfill@1.70.2 + open@5.3.3 + openssl-macros@0.1.1 + openssl-probe@0.1.6 + openssl-sys@0.9.111 + openssl@0.10.75 + option-ext@0.2.0 + owo-colors@4.2.3 + parking_lot@0.12.5 + parking_lot_core@0.9.12 + pathdiff@0.2.3 + pbkdf2@0.12.2 + pem-rfc7468@0.7.0 + percent-encoding@2.3.2 + pin-project-lite@0.2.16 + pin-utils@0.1.0 + pkcs1@0.7.5 + pkcs8@0.10.2 + pkg-config@0.3.32 + pledge@0.4.2 + portable-atomic-util@0.2.4 + portable-atomic@1.11.1 + portaudio-rs@0.3.2 + portaudio-sys@0.1.1 + potential_utf@0.1.4 + powerfmt@0.2.0 + ppv-lite86@0.2.21 + prettyplease@0.2.37 + priority-queue@2.7.0 + proc-macro-crate@3.4.0 + proc-macro2@1.0.103 + protobuf-codegen@3.7.2 + protobuf-json-mapping@3.7.2 + protobuf-parse@3.7.2 + protobuf-support@3.7.2 + protobuf@3.7.2 + quick-xml@0.38.4 + quote@1.0.42 + r-efi@5.3.0 + rand@0.8.5 + rand@0.9.2 + rand_chacha@0.3.1 + rand_chacha@0.9.0 + rand_core@0.6.4 + rand_core@0.9.3 + rand_distr@0.5.1 + redox_syscall@0.5.18 + redox_users@0.5.2 + regex-automata@0.4.13 + regex-syntax@0.8.8 + regex@1.12.2 + reqwest@0.12.24 + rodio@0.21.1 + rsa@0.9.9 + rustc-demangle@0.1.26 + rustc-hash@2.1.1 + rustix@0.38.44 + rustix@1.1.2 + rustls-pki-types@1.13.0 + rustversion@1.0.22 + ryu@1.0.20 + same-file@1.0.6 + schannel@0.1.28 + scopeguard@1.2.0 + security-framework-sys@2.15.0 + security-framework@2.11.1 + serde@1.0.228 + serde_core@1.0.228 + serde_derive@1.0.228 + serde_ignored@0.1.14 + serde_json@1.0.145 + serde_path_to_error@0.1.20 + serde_repr@0.1.20 + serde_spanned@1.0.3 + serde_urlencoded@0.7.1 + sha-1@0.10.1 + sha1@0.10.6 + sha2@0.10.9 + shannon@0.2.0 + sharded-slab@0.1.7 + shell-words@1.1.0 + shlex@1.3.0 + signal-hook-registry@1.4.6 + signature@2.2.0 + simd-adler32@0.3.7 + slab@0.4.11 + smallvec@1.15.1 + socket2@0.6.1 + spin@0.9.8 + spinning_top@0.3.0 + spki@0.7.3 + stable_deref_trait@1.2.1 + strsim@0.11.1 + subtle@2.6.1 + symphonia-bundle-flac@0.5.5 + symphonia-bundle-mp3@0.5.5 + symphonia-codec-vorbis@0.5.5 + symphonia-core@0.5.5 + symphonia-format-ogg@0.5.5 + symphonia-metadata@0.5.5 + symphonia-utils-xiph@0.5.5 + symphonia@0.5.5 + syn@2.0.110 + sync_wrapper@1.0.2 + synstructure@0.13.2 + sysinfo@0.36.1 + syslog@7.0.0 + system-configuration-sys@0.6.0 + system-configuration@0.6.1 + tempfile@3.23.0 + thiserror-impl@1.0.69 + thiserror-impl@2.0.17 + thiserror@1.0.69 + thiserror@2.0.17 + thread_local@1.1.9 + time-core@0.1.6 + time-macros@0.2.24 + time@0.3.44 + tinystr@0.8.2 + tokio-macros@2.6.0 + tokio-native-tls@0.3.1 + tokio-stream@0.1.17 + tokio-tungstenite@0.28.0 + tokio-util@0.7.17 + tokio@1.48.0 + toml@0.9.8 + toml_datetime@0.7.3 + toml_edit@0.23.7 + toml_parser@1.0.4 + toml_writer@1.0.4 + tower-http@0.6.6 + tower-layer@0.3.3 + tower-service@0.3.3 + tower@0.5.2 + tracing-core@0.1.34 + tracing-error@0.2.1 + tracing-subscriber@0.3.20 + tracing@0.1.41 + try-lock@0.2.5 + tungstenite@0.28.0 + typenum@1.19.0 + unicode-ident@1.0.22 + untrusted@0.7.1 + url@2.5.7 + utf-8@0.7.6 + utf8_iter@1.0.4 + utf8parse@0.2.2 + uuid@1.18.1 + valuable@0.1.1 + vcpkg@0.2.15 + vergen-gitcl@1.0.8 + vergen-lib@0.1.6 + vergen@9.0.6 + version_check@0.9.5 + walkdir@2.5.0 + want@0.3.1 + wasi@0.11.1+wasi-snapshot-preview1 + wasip2@1.0.1+wasi-0.2.4 + wasite@0.1.0 + wasm-bindgen-futures@0.4.55 + wasm-bindgen-macro-support@0.2.105 + wasm-bindgen-macro@0.2.105 + wasm-bindgen-shared@0.2.105 + wasm-bindgen@0.2.105 + web-sys@0.3.82 + web-time@1.1.0 + which@4.4.2 + whoami@1.6.1 + winapi-i686-pc-windows-gnu@0.4.0 + winapi-util@0.1.11 + winapi-x86_64-pc-windows-gnu@0.4.0 + winapi@0.3.9 + windows-collections@0.2.0 + windows-core@0.54.0 + windows-core@0.61.2 + windows-core@0.62.2 + windows-future@0.2.1 + windows-implement@0.60.2 + windows-interface@0.59.3 + windows-link@0.1.3 + windows-link@0.2.1 + windows-numerics@0.2.0 + windows-registry@0.6.1 + windows-result@0.1.2 + windows-result@0.3.4 + windows-result@0.4.1 + windows-strings@0.4.2 + windows-strings@0.5.1 + windows-sys@0.45.0 + windows-sys@0.59.0 + windows-sys@0.60.2 + windows-sys@0.61.2 + windows-targets@0.42.2 + windows-targets@0.52.6 + windows-targets@0.53.5 + windows-threading@0.1.0 + windows@0.54.0 + windows@0.61.3 + windows_aarch64_gnullvm@0.42.2 + windows_aarch64_gnullvm@0.52.6 + windows_aarch64_gnullvm@0.53.1 + windows_aarch64_msvc@0.42.2 + windows_aarch64_msvc@0.52.6 + windows_aarch64_msvc@0.53.1 + windows_i686_gnu@0.42.2 + windows_i686_gnu@0.52.6 + windows_i686_gnu@0.53.1 + windows_i686_gnullvm@0.52.6 + windows_i686_gnullvm@0.53.1 + windows_i686_msvc@0.42.2 + windows_i686_msvc@0.52.6 + windows_i686_msvc@0.53.1 + windows_x86_64_gnu@0.42.2 + windows_x86_64_gnu@0.52.6 + windows_x86_64_gnu@0.53.1 + windows_x86_64_gnullvm@0.42.2 + windows_x86_64_gnullvm@0.52.6 + windows_x86_64_gnullvm@0.53.1 + windows_x86_64_msvc@0.42.2 + windows_x86_64_msvc@0.52.6 + windows_x86_64_msvc@0.53.1 + winnow@0.7.13 + wit-bindgen@0.46.0 + writeable@0.6.2 + yoke-derive@0.8.1 + yoke@0.8.1 + zerocopy-derive@0.8.27 + zerocopy@0.8.27 + zerofrom-derive@0.1.6 + zerofrom@0.1.6 + zeroize@1.8.2 + zerotrie@0.2.3 + zerovec-derive@0.11.2 + zerovec@0.11.5 +" + +inherit cargo systemd + +#COMMIT= +DESCRIPTION="A Spotify daemon" +HOMEPAGE="https://spotifyd.rs/" +SRC_URI="https://github.com/Spotifyd/spotifyd/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz + ${CARGO_CRATE_URIS}" + +#S="${WORKDIR}"/${PN}-${COMMIT} + +LICENSE="GPL-3" +# Dependent crate licenses +LICENSE+=" Apache-2.0 BSD ISC MIT MPL-2.0 openssl Unicode-3.0 ZLIB" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+alsa pulseaudio portaudio rodio dbus jack" +DEPEND="alsa? ( media-libs/alsa-lib + media-plugins/alsa-plugins ) + portaudio? ( media-libs/portaudio ) + pulseaudio? ( >=media-libs/libpulse-5.0 ) + dbus? ( >=sys-apps/dbus-1.6 ) + jack? ( virtual/jack ) +" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}/${P}-no-logging.patch" +) + +QA_FLAGS_IGNORED="usr/bin/spotifyd" + +src_configure() { + local myfeatures=( + $(usev alsa alsa_backend) + $(usev pulseaudio pulseaudio_backend) + $(usev portaudio portaudio_backend) + $(usev rodio rodio_backend) + $(usev jack rodiojack_backend) + $(usev dbus dbus_mpris) + ) + + # At least one audio backend has to be active, alsa_backend is the default + cargo_src_configure --no-default-features +} + +src_compile() { + # cc-rs + export CFLAGS CXXFLAGS + cargo_src_compile +} + +src_install() { + cargo_src_install + systemd_douserunit "contrib/spotifyd.service" + local DOCS="README.md CHANGELOG.md" + einstalldocs +} diff --git a/media-video/obs-studio/obs-studio-9999.ebuild b/media-video/obs-studio/obs-studio-9999.ebuild index a563b068c4a1..af8eddf34b49 100644 --- a/media-video/obs-studio/obs-studio-9999.ebuild +++ b/media-video/obs-studio/obs-studio-9999.ebuild @@ -160,6 +160,11 @@ QA_PREBUILT=" usr/lib*/obs-plugins/swiftshader/libGLESv2.so " +PATCHES=( + # https://bugs.gentoo.org/966051 + "${FILESDIR}/${PN}-32.0.2-fix-build-with-qt-6.10.patch" +) + pkg_setup() { use lua && lua-single_pkg_setup use python && python-single-r1_pkg_setup @@ -180,7 +185,10 @@ src_unpack() { } src_prepare() { - default + # Un-comment after all patches are gone. + #default + + sed -i 's/-Werror //' libobs/cmake/linux/libobs.pc.in || die # -Werror=lto-type-mismatch # https://bugs.gentoo.org/867250 diff --git a/metadata/md5-cache/app-admin/gopass-1.16.1 b/metadata/md5-cache/app-admin/gopass-1.16.1 index 078fcc3e24c4..3b202d11c425 100644 --- a/metadata/md5-cache/app-admin/gopass-1.16.1 +++ b/metadata/md5-cache/app-admin/gopass-1.16.1 @@ -10,4 +10,4 @@ RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 SLOT=0 SRC_URI=https://github.com/gopasspw/gopass/archive/v1.16.1.tar.gz -> gopass-1.16.1.tar.gz https://github.com/gentoo-golang-dist/gopass/releases/download/v1.16.1/gopass-1.16.1-vendor.tar.xz _eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module d96f2a2fd6d8fbad6d94516bf238f885 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=54d38e9c2a32bc0a0a262de339143d65 +_md5_=0589f956a0860bc34da5c3883a98f041 diff --git a/metadata/md5-cache/app-admin/talosctl-bin-1.12.0_rc0 b/metadata/md5-cache/app-admin/talosctl-bin-1.12.0_rc0 index 8d82c50cc522..a5e50674bed0 100644 --- a/metadata/md5-cache/app-admin/talosctl-bin-1.12.0_rc0 +++ b/metadata/md5-cache/app-admin/talosctl-bin-1.12.0_rc0 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=Pre-compiled talosctl is an tool for interacting with the Talos API EAPI=8 HOMEPAGE=https://www.talos.dev/v1.10/ -KEYWORDS=~amd64 ~arm ~arm64 +KEYWORDS=-* ~amd64 ~arm ~arm64 LICENSE=MPL-2.0 SLOT=0 SRC_URI=amd64? ( https://github.com/siderolabs/talos/releases/download/v1.12.0-rc.0/talosctl-linux-amd64 -> talosctl-amd64-v1.12.0-rc.0 ) arm64? ( https://github.com/siderolabs/talos/releases/download/v1.12.0-rc.0/talosctl-linux-arm64 -> talosctl-arm64-v1.12.0-rc.0 ) arm? ( https://github.com/siderolabs/talos/releases/download/v1.12.0-rc.0/talosctl-linux-armv7 -> talosctl-armv7-v1.12.0-rc.0 ) -_md5_=cfd1ede236f92bf80bb04219016772c1 +_md5_=dc92de90fe8b751676d1fb311f5f572d diff --git a/metadata/md5-cache/app-i18n/mozc-2.31.5851.102 b/metadata/md5-cache/app-i18n/mozc-2.31.5851.102 index 82bd377413be..1181c4c1298a 100644 --- a/metadata/md5-cache/app-i18n/mozc-2.31.5851.102 +++ b/metadata/md5-cache/app-i18n/mozc-2.31.5851.102 @@ -7,7 +7,7 @@ HOMEPAGE=https://github.com/google/mozc IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=desktop dot-a edo elisp-common flag-o-matic multiprocessing python-any-r1 savedconfig toolchain-funcs xdg IUSE=debug emacs fcitx5 +gui +ibus renderer test savedconfig -KEYWORDS=amd64 ~arm64 +KEYWORDS=amd64 arm64 LICENSE=BSD BSD-2 ipadic public-domain unicode RDEPEND=fcitx5? ( app-i18n/fcitx:5 ) gui? ( dev-qt/qtbase:6[gui,widgets] ) ibus? ( app-i18n/ibus dev-libs/glib:2 ) renderer? ( dev-qt/qtbase:6[gui,widgets] ) emacs? ( app-editors/emacs:* ) REQUIRED_USE=|| ( emacs fcitx5 ibus ) @@ -15,4 +15,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=amd64? ( https://releases.bazel.build/8.1.1/release/bazel-8.1.1-linux-x86_64 https://github.com/astral-sh/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz ) arm64? ( https://releases.bazel.build/8.1.1/release/bazel-8.1.1-linux-arm64 https://github.com/astral-sh/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz ) !fcitx5? ( https://github.com/google/mozc/archive/refs/tags/2.31.5851.102.tar.gz -> mozc-2.31.5851.102.tar.gz ) fcitx5? ( https://github.com/fcitx/mozc/archive/f16444e45bd3c7f7a0af718f4af86ad181b6dd8b.tar.gz -> mozc-fcitx5-2.31.5851.102.tar.gz ) test? ( https://github.com/google/googletest/releases/download/v1.15.2/googletest-1.15.2.tar.gz ) https://github.com/bazelbuild/bazel-central-registry/archive/b553f46a71d17fe8f32661f64e755cf6fac03ada.tar.gz -> mozc-bcr-b553f46a71d17fe8f32661f64e755cf6fac03ada.tar.gz https://github.com/abseil/abseil-cpp/releases/download/20250127.0/abseil-cpp-20250127.0.tar.gz https://github.com/hiroyuki-komatsu/japanese-usage-dictionary/archive/2025-01-25.tar.gz -> japanese-usage-dictionary-2025-01-25.tar.gz https://github.com/protocolbuffers/protobuf/releases/download/v29.3/protobuf-29.3.zip https://github.com/bazelbuild/apple_support/releases/download/1.16.0/apple_support.1.16.0.tar.gz https://github.com/bazel-contrib/bazel_features/releases/download/v1.21.0/bazel_features-v1.21.0.tar.gz https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz https://github.com/bazelbuild/rules_android_ndk/releases/download/v0.1.3/rules_android_ndk-v0.1.3.tar.gz https://github.com/bazelbuild/rules_apple/releases/download/3.16.1/rules_apple.3.16.1.tar.gz https://github.com/bazelbuild/rules_cc/releases/download/0.0.17/rules_cc-0.0.17.tar.gz https://github.com/bazelbuild/rules_java/releases/download/8.6.1/rules_java-8.6.1.tar.gz https://github.com/bazelbuild/rules_kotlin/releases/download/v1.9.6/rules_kotlin-v1.9.6.tar.gz https://github.com/bazelbuild/rules_license/releases/download/1.0.0/rules_license-1.0.0.tar.gz https://github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz https://github.com/bazel-contrib/rules_python/releases/download/1.0.0/rules_python-1.0.0.tar.gz https://github.com/bazelbuild/rules_shell/releases/download/v0.2.0/rules_shell-v0.2.0.tar.gz https://github.com/bazelbuild/rules_swift/releases/download/2.1.1/rules_swift.2.1.1.tar.gz https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz https://github.com/hiroyuki-komatsu/japanpost_zipcode/raw/6ece210081fb73d0ea4a5ea8e13ac9584d03fd76/ken_all.zip -> mozc-2.31.5851.102-ken_all.zip https://github.com/hiroyuki-komatsu/japanpost_zipcode/raw/6ece210081fb73d0ea4a5ea8e13ac9584d03fd76/jigyosyo.zip -> mozc-2.31.5851.102-jigyosyo.zip https://raw.githubusercontent.com/google/material-design-icons/4.0.0/png/action/chrome_reader_mode/materialiconsoutlined/48dp/1x/outline_chrome_reader_mode_black_48dp.png -> mozc-2.31.5851.102-dictionary.png https://raw.githubusercontent.com/google/material-design-icons/4.0.0/src/action/chrome_reader_mode/materialiconsoutlined/24px.svg -> mozc-2.31.5851.102-dictionary.svg https://raw.githubusercontent.com/google/material-design-icons/4.0.0/png/action/settings/materialiconsround/48dp/1x/round_settings_black_48dp.png -> mozc-2.31.5851.102-properties.png https://raw.githubusercontent.com/google/material-design-icons/4.0.0/src/action/settings/materialiconsround/24px.svg -> mozc-2.31.5851.102-properties.svg https://raw.githubusercontent.com/google/material-design-icons/4.0.0/png/action/build/materialicons/48dp/1x/baseline_build_black_48dp.png -> mozc-2.31.5851.102-tool.png https://raw.githubusercontent.com/google/material-design-icons/4.0.0/src/action/build/materialicons/24px.svg -> mozc-2.31.5851.102-tool.svg _eclasses_=desktop 7b6f6e9d65093966fbc8475399c5dd4e dot-a e5200fe17cfd2ed6fa66edd80201763a edo a5e294016aa84979fcb2459749eb80b2 elisp-common fe05085d051330f15cf7201109b5cd23 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=1866ac68e53c379fa06a631828f57c09 +_md5_=96ed9498854885d800d18211cf8a539d diff --git a/metadata/md5-cache/app-text/build-docbook-catalog-2.3-r1 b/metadata/md5-cache/app-text/build-docbook-catalog-2.3-r1 index 18f04655e63f..c66ae5478b16 100644 --- a/metadata/md5-cache/app-text/build-docbook-catalog-2.3-r1 +++ b/metadata/md5-cache/app-text/build-docbook-catalog-2.3-r1 @@ -7,4 +7,4 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libxml2 || ( sys-apps/util-linux app-misc/getopt ) SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/build-docbook-catalog.git/snapshot/build-docbook-catalog-2.3.tar.bz2 -_md5_=531e851979ca41b0f669d74b48a36629 +_md5_=8f586b4b012da9ce8c7444fcf86186cc diff --git a/metadata/md5-cache/app-text/build-docbook-catalog-2.4 b/metadata/md5-cache/app-text/build-docbook-catalog-2.4 index 199f4928f1ef..831c2d8acf29 100644 --- a/metadata/md5-cache/app-text/build-docbook-catalog-2.4 +++ b/metadata/md5-cache/app-text/build-docbook-catalog-2.4 @@ -7,4 +7,4 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libxml2 || ( sys-apps/util-linux app-misc/getopt ) SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/build-docbook-catalog.git/snapshot/build-docbook-catalog-2.4.tar.bz2 -_md5_=531e851979ca41b0f669d74b48a36629 +_md5_=fef2e9c10a6b52238d326fcdbca8fcdc diff --git a/metadata/md5-cache/app-text/docbook-xml-dtd-4.1.2-r7 b/metadata/md5-cache/app-text/docbook-xml-dtd-4.1.2-r7 index ef5dbebacdfe..64a476fe1cb2 100644 --- a/metadata/md5-cache/app-text/docbook-xml-dtd-4.1.2-r7 +++ b/metadata/md5-cache/app-text/docbook-xml-dtd-4.1.2-r7 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/docbook-xsl-stylesheets-1.65 >=app-text/build-docbook-catalog SLOT=4.1.2 SRC_URI=https://docbook.org/xml/4.1.2/docbkx412.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=5ace3c3eba951d8cbd403416df937601 +_md5_=b3c92fc7e7ea4a3b569017c40b7dffb5 diff --git a/metadata/md5-cache/app-text/docbook-xml-dtd-4.2-r3 b/metadata/md5-cache/app-text/docbook-xml-dtd-4.2-r3 index 1fcfc752b25d..d33dddd484b1 100644 --- a/metadata/md5-cache/app-text/docbook-xml-dtd-4.2-r3 +++ b/metadata/md5-cache/app-text/docbook-xml-dtd-4.2-r3 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/docbook-xsl-stylesheets-1.65 >=app-text/build-docbook-catalog SLOT=4.2 SRC_URI=https://docbook.org/xml/4.2/docbook-xml-4.2.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=88b59bcb3a09568cc9f80e1dd36995d2 +_md5_=5f8b5edd68ca7a3dee7838acbfc4ac8b diff --git a/metadata/md5-cache/app-text/docbook-xml-dtd-4.3-r2 b/metadata/md5-cache/app-text/docbook-xml-dtd-4.3-r2 index 4e34a8efa623..7217e466b69d 100644 --- a/metadata/md5-cache/app-text/docbook-xml-dtd-4.3-r2 +++ b/metadata/md5-cache/app-text/docbook-xml-dtd-4.3-r2 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/docbook-xsl-stylesheets-1.65 >=app-text/build-docbook-catalog SLOT=4.3 SRC_URI=https://docbook.org/xml/4.3/docbook-xml-4.3.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=88b59bcb3a09568cc9f80e1dd36995d2 +_md5_=5f8b5edd68ca7a3dee7838acbfc4ac8b diff --git a/metadata/md5-cache/app-text/docbook-xml-dtd-4.4-r3 b/metadata/md5-cache/app-text/docbook-xml-dtd-4.4-r3 index e3e175a090d8..0da878b0ce87 100644 --- a/metadata/md5-cache/app-text/docbook-xml-dtd-4.4-r3 +++ b/metadata/md5-cache/app-text/docbook-xml-dtd-4.4-r3 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/docbook-xsl-stylesheets-1.65 >=app-text/build-docbook-catalog SLOT=4.4 SRC_URI=https://docbook.org/xml/4.4/docbook-xml-4.4.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=9cc8433b5609888a3e16989ffd15f14b +_md5_=16296aa2fd3b3bc915549d4828a21f97 diff --git a/metadata/md5-cache/app-text/docbook-xml-dtd-4.5-r2 b/metadata/md5-cache/app-text/docbook-xml-dtd-4.5-r2 index c8006afa8595..a5194cd29610 100644 --- a/metadata/md5-cache/app-text/docbook-xml-dtd-4.5-r2 +++ b/metadata/md5-cache/app-text/docbook-xml-dtd-4.5-r2 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/docbook-xsl-stylesheets-1.65 >=app-text/build-docbook-catalog SLOT=4.5 SRC_URI=https://docbook.org/xml/4.5/docbook-xml-4.5.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=9cc8433b5609888a3e16989ffd15f14b +_md5_=16296aa2fd3b3bc915549d4828a21f97 diff --git a/metadata/md5-cache/app-text/docbook-xml-simple-dtd-1.0-r3 b/metadata/md5-cache/app-text/docbook-xml-simple-dtd-1.0-r3 index d25a31f9b80c..768e4adae251 100644 --- a/metadata/md5-cache/app-text/docbook-xml-simple-dtd-1.0-r3 +++ b/metadata/md5-cache/app-text/docbook-xml-simple-dtd-1.0-r3 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/build-docbook-catalog-1.6 >=app-text/sgml-common-0.6.3-r7 SLOT=1.0 SRC_URI=https://www.oasis-open.org/docbook/xml/simple/1.0/docbook-simple-1.0.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=2cf9a8144321ae3e88ced47f91913a8a +_md5_=2bb5040e36e2836886cefae6387c74fc diff --git a/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.4-r4 b/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.4-r4 index 85ec894f1a4c..91914c98714a 100644 --- a/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.4-r4 +++ b/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.4-r4 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/build-docbook-catalog-1.6 >=app-text/sgml-common-0.6.3-r7 SLOT=4.1.2.4 SRC_URI=mirror://gentoo/sdb4124.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=e26714e0c99e8bc98f5d4239bc0135e4 +_md5_=7bd7f751d583a3e06e25a720b0aee346 diff --git a/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.5-r3 b/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.5-r3 index 07748aecf1f4..9c85c5a991df 100644 --- a/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.5-r3 +++ b/metadata/md5-cache/app-text/docbook-xml-simple-dtd-4.1.2.5-r3 @@ -10,4 +10,4 @@ RDEPEND=>=app-text/build-docbook-catalog-1.6 >=app-text/sgml-common-0.6.3-r7 SLOT=4.1.2.5 SRC_URI=https://www.oasis-open.org/docbook/xml/simple/4.1.2.5/simple4125.zip _eclasses_=sgml-catalog-r1 3f5bc11b4b3984844a0b20d2a679e217 -_md5_=54420aaf7241945b4d897b3862941314 +_md5_=cc07358adcf1138c5baaed977686025a diff --git a/metadata/md5-cache/app-text/docbook-xsl-ns-stylesheets-1.79.1 b/metadata/md5-cache/app-text/docbook-xsl-ns-stylesheets-1.79.1 index 2a3d59af35e9..dc8a72df44b6 100644 --- a/metadata/md5-cache/app-text/docbook-xsl-ns-stylesheets-1.79.1 +++ b/metadata/md5-cache/app-text/docbook-xsl-ns-stylesheets-1.79.1 @@ -9,4 +9,4 @@ RDEPEND=>=app-text/build-docbook-catalog-1.4 ruby? ( dev-lang/ruby ) RESTRICT=test SLOT=0 SRC_URI=https://downloads.sourceforge.net/docbook/docbook-xsl-ns-1.79.1.tar.bz2 -_md5_=ad9d81c64271eb2a6de704b03a5a9211 +_md5_=dfb7530f7e0c71f8e6dceb72a1d68c56 diff --git a/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.1-r4 b/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.1-r4 index 3dd46ac4ff94..28cf37cd3800 100644 --- a/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.1-r4 +++ b/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.1-r4 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://downloads.sourceforge.net/docbook/docbook-xsl-1.79.1.tar.bz2 _eclasses_=ruby-single d1b60f2dbb45623756c128d02b2d3497 ruby-utils cb2cdbbce7fae7a6b2b1021219b0680d -_md5_=533404912ce1e231e95000776e7cc3c2 +_md5_=6e8fa983bcc5675c12510f937d2b4137 diff --git a/metadata/md5-cache/app-text/ghostscript-gpl-10.06.0 b/metadata/md5-cache/app-text/ghostscript-gpl-10.06.0 index 9dc45b73321d..104143905814 100644 --- a/metadata/md5-cache/app-text/ghostscript-gpl-10.06.0 +++ b/metadata/md5-cache/app-text/ghostscript-gpl-10.06.0 @@ -12,4 +12,4 @@ RDEPEND=app-text/libpaper:= media-libs/fontconfig >=media-libs/freetype-2.4.9:2= SLOT=0/10.06 SRC_URI=https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10060/ghostscript-10.06.0.tar.xz https://dev.gentoo.org/~sam/distfiles/app-text/ghostscript-gpl/ghostscript-gpl-10.04.0-patches.tar.xz _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=1f3bba336e04b0373c192937d779198a +_md5_=e9af078d9092bed49e93ff6383e99a1d diff --git a/metadata/md5-cache/dev-build/scons-4.10.1 b/metadata/md5-cache/dev-build/scons-4.10.1 index 0fb84ab167a8..612d3f394359 100644 --- a/metadata/md5-cache/dev-build/scons-4.10.1 +++ b/metadata/md5-cache/dev-build/scons-4.10.1 @@ -11,6 +11,6 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10[threads(+)] ) python_t REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://downloads.sourceforge.net/project/scons/scons/4.10.1/SCons-4.10.1.tar.gz doc? ( https://www.scons.org/doc/4.10.1/PDF/scons-user.pdf -> scons-4.10.1-user.pdf https://www.scons.org/doc/4.10.1/HTML/scons-user.html -> scons-4.10.1-user.html ) test? ( https://github.com/SCons/scons/archive/4.10.1.tar.gz -> scons-4.10.1.gh.tar.gz ) +SRC_URI=https://downloads.sourceforge.net/project/scons/scons/4.10.1/SCons-4.10.1.tar.gz doc? ( https://www.scons.org/doc/4.10.1/PDF/scons-user.pdf -> scons-4.10.1-user.pdf ) test? ( https://github.com/SCons/scons/archive/4.10.1.tar.gz -> scons-4.10.1.gh.tar.gz ) _eclasses_=distutils-r1 d35f403697c0f86d762e7560bb5cd143 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=dc8a2925587dd0283ee92da38037e712 +_md5_=bd192283fc4d1c951b7cc979ba627f8c diff --git a/metadata/md5-cache/dev-cpp/robotraconteur-1.2.6 b/metadata/md5-cache/dev-cpp/robotraconteur-1.2.6 index b83209baa6ea..409eb125587c 100644 --- a/metadata/md5-cache/dev-cpp/robotraconteur-1.2.6 +++ b/metadata/md5-cache/dev-cpp/robotraconteur-1.2.6 @@ -13,4 +13,4 @@ REQUIRED_USE=python? ( || ( python_targets_python3_10 python_targets_python3_11 SLOT=1/1.2.6 SRC_URI=https://github.com/robotraconteur/robotraconteur/releases/download/v1.2.6/RobotRaconteur-1.2.6-Source.tar.gz _eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multibuild 4650a65187015567b4e041bb9bfdb364 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=e36dbfeff05b0611cd6fc62a6c3ffe64 +_md5_=708e4fac095cc86281f2aa611afd2e1d diff --git a/metadata/md5-cache/dev-cpp/robotraconteur-companion-0.4.2 b/metadata/md5-cache/dev-cpp/robotraconteur-companion-0.4.2 index c631080950b7..abd0fa8a2578 100644 --- a/metadata/md5-cache/dev-cpp/robotraconteur-companion-0.4.2 +++ b/metadata/md5-cache/dev-cpp/robotraconteur-companion-0.4.2 @@ -11,4 +11,4 @@ RDEPEND=dev-libs/boost dev-libs/openssl dev-build/cmake dev-cpp/yaml-cpp dev-cpp SLOT=0/0.4.2 SRC_URI=https://github.com/robotraconteur/robotraconteur_companion/releases/download/v0.4.2/RobotRaconteurCompanion-0.4.2-Source.tar.gz _eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=716de04f17d234e1aef65f605cce3677 +_md5_=67d02722090879bac6fbe9da4ce14534 diff --git a/metadata/md5-cache/dev-embedded/rpi-eeprom-28.10_p1 b/metadata/md5-cache/dev-embedded/rpi-eeprom-28.10_p1-r1 index 9ff0dd258274..9bf84055237a 100644 --- a/metadata/md5-cache/dev-embedded/rpi-eeprom-28.10_p1 +++ b/metadata/md5-cache/dev-embedded/rpi-eeprom-28.10_p1-r1 @@ -13,4 +13,4 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar SLOT=0 SRC_URI=https://archive.raspberrypi.org/debian/pool/main/r/rpi-eeprom/rpi-eeprom_28.10-1.debian.tar.xz https://archive.raspberrypi.org/debian/pool/main/r/rpi-eeprom/rpi-eeprom_28.10.orig.tar.gz _eclasses_=multibuild 4650a65187015567b4e041bb9bfdb364 multiprocessing 1e32df7deee68372153dca65f4a7c21f out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=07936a988193b9431b96a1e1b90180da +_md5_=9e4025dac76e3661c69e75ded7dade6f diff --git a/metadata/md5-cache/dev-go/golangci-lint-2.7.2 b/metadata/md5-cache/dev-go/golangci-lint-2.7.2 new file mode 100644 index 000000000000..02533da0e82f --- /dev/null +++ b/metadata/md5-cache/dev-go/golangci-lint-2.7.2 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-lang/go-1.20:= app-arch/unzip +DEFINED_PHASES=compile install test unpack +DESCRIPTION=Fast linters runner for Go +EAPI=8 +HOMEPAGE=https://golangci-lint.run/ https://github.com/golangci/golangci-lint +INHERIT=go-module shell-completion toolchain-funcs +KEYWORDS=~amd64 +LICENSE=GPL-3 Apache-2.0 BSD BSD-2 GPL-3 ISC MIT MPL-2.0 +SLOT=0 +SRC_URI=https://github.com/golangci/golangci-lint/archive/v2.7.2.tar.gz -> golangci-lint-2.7.2.tar.gz https://github.com/gentoo-golang-dist/golangci-lint/releases/download/v2.7.2/golangci-lint-2.7.2-vendor.tar.xz +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 flag-o-matic a7afe42e95fb46ce9691605acfb24672 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module d96f2a2fd6d8fbad6d94516bf238f885 multiprocessing 1e32df7deee68372153dca65f4a7c21f shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db +_md5_=9562e8e6659906bb394783ddff0225d8 diff --git a/metadata/md5-cache/dev-libs/glib-2.82.5 b/metadata/md5-cache/dev-libs/glib-2.84.4-r1 index 3048eb2ae7b6..3380eb7f4b58 100644 --- a/metadata/md5-cache/dev-libs/glib-2.82.5 +++ b/metadata/md5-cache/dev-libs/glib-2.84.4-r1 @@ -1,17 +1,17 @@ -BDEPEND=app-text/docbook-xsl-stylesheets dev-libs/libxslt >=sys-devel/gettext-0.19.8 doc? ( >=dev-util/gi-docgen-2023.1 ) dev-python/docutils systemtap? ( >=dev-debug/systemtap-1.3 ) || ( dev-lang/python:3.14[xml(+)] dev-lang/python:3.13[xml(+)] dev-lang/python:3.12[xml(+)] dev-lang/python:3.11[xml(+)] dev-lang/python:3.10[xml(+)] ) test? ( >=sys-apps/dbus-1.2.14 ) virtual/pkgconfig introspection? ( || ( ( dev-lang/python:3.14[xml(+)] dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13[xml(+)] dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12[xml(+)] dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11[xml(+)] dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10[xml(+)] dev-python/setuptools[python_targets_python3_10(-)] ) ) virtual/pkgconfig sys-devel/bison app-alternatives/lex || ( dev-lang/python:3.14[xml(+)] dev-lang/python:3.13[xml(+)] dev-lang/python:3.12[xml(+)] dev-lang/python:3.11[xml(+)] dev-lang/python:3.10[xml(+)] ) ) app-arch/xz-utils >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array +BDEPEND=app-text/docbook-xsl-stylesheets >=dev-build/meson-1.4.0 dev-libs/libxslt >=sys-devel/gettext-0.19.8 doc? ( >=dev-util/gi-docgen-2023.1 ) dev-python/docutils systemtap? ( >=dev-debug/systemtap-1.3 ) || ( dev-lang/python:3.14[xml(+)] dev-lang/python:3.13[xml(+)] dev-lang/python:3.12[xml(+)] dev-lang/python:3.11[xml(+)] dev-lang/python:3.10[xml(+)] ) test? ( >=sys-apps/dbus-1.2.14 ) virtual/pkgconfig introspection? ( || ( ( dev-lang/python:3.14[xml(+)] dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13[xml(+)] dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12[xml(+)] dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11[xml(+)] dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10[xml(+)] dev-python/setuptools[python_targets_python3_10(-)] ) ) virtual/pkgconfig sys-devel/bison app-alternatives/lex || ( dev-lang/python:3.14[xml(+)] dev-lang/python:3.13[xml(+)] dev-lang/python:3.12[xml(+)] dev-lang/python:3.11[xml(+)] dev-lang/python:3.10[xml(+)] ) ) app-arch/xz-utils >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=!<dev-libs/gobject-introspection-1.80.1 !<dev-util/gdbus-codegen-2.82.5 >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libpcre2-10.32:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,unicode(+),static-libs?] >=dev-libs/libffi-3.0.13-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libintl-0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-common-1.82.0 ) kernel_linux? ( >=sys-apps/util-linux-2.23[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) selinux? ( >=sys-libs/libselinux-2.2.2-r5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xattr? ( !elibc_glibc? ( >=sys-apps/attr-2.4.47-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) elf? ( virtual/libelf:0= ) sysprof? ( >=dev-util/sysprof-capture-3.40.1:4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +DEPEND=!<dev-libs/gobject-introspection-1.80.1 !<dev-util/gdbus-codegen-2.84.4 >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libpcre2-10.32:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,unicode(+),static-libs?] >=dev-libs/libffi-3.0.13-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libintl-0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-common-1.82.0 ) kernel_linux? ( >=sys-apps/util-linux-2.23[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) selinux? ( >=sys-libs/libselinux-2.2.2-r5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xattr? ( !elibc_glibc? ( >=sys-apps/attr-2.4.47-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) elf? ( virtual/libelf:0= ) sysprof? ( >=dev-util/sysprof-capture-3.40.1:4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) DESCRIPTION=The GLib library of C routines EAPI=8 HOMEPAGE=https://www.gtk.org/ INHERIT=dot-a eapi9-ver gnome.org gnome2-utils linux-info meson-multilib multilib python-any-r1 toolchain-funcs xdg IUSE=dbus debug +elf doc +introspection +mime selinux static-libs sysprof systemtap test utils xattr abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris LICENSE=LGPL-2.1+ PDEPEND=dbus? ( gnome-base/dconf ) mime? ( x11-misc/shared-mime-info ) -RDEPEND=!<dev-libs/gobject-introspection-1.80.1 !<dev-util/gdbus-codegen-2.82.5 >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libpcre2-10.32:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,unicode(+),static-libs?] >=dev-libs/libffi-3.0.13-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libintl-0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-common-1.82.0 ) kernel_linux? ( >=sys-apps/util-linux-2.23[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) selinux? ( >=sys-libs/libselinux-2.2.2-r5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xattr? ( !elibc_glibc? ( >=sys-apps/attr-2.4.47-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) elf? ( virtual/libelf:0= ) sysprof? ( >=dev-util/sysprof-capture-3.40.1:4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +RDEPEND=!<dev-libs/gobject-introspection-1.80.1 !<dev-util/gdbus-codegen-2.84.4 >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libpcre2-10.32:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,unicode(+),static-libs?] >=dev-libs/libffi-3.0.13-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libintl-0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-common-1.82.0 ) kernel_linux? ( >=sys-apps/util-linux-2.23[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) selinux? ( >=sys-libs/libselinux-2.2.2-r5[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xattr? ( !elibc_glibc? ( >=sys-apps/attr-2.4.47-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) elf? ( virtual/libelf:0= ) sysprof? ( >=dev-util/sysprof-capture-3.40.1:4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) RESTRICT=!test? ( test ) SLOT=2 -SRC_URI=mirror://gnome/sources/glib/2.82/glib-2.82.5.tar.xz introspection? ( mirror://gnome/sources/gobject-introspection/1.82/gobject-introspection-1.82.0.tar.xz ) +SRC_URI=mirror://gnome/sources/glib/2.84/glib-2.84.4.tar.xz introspection? ( mirror://gnome/sources/gobject-introspection/1.82/gobject-introspection-1.82.0.tar.xz ) _eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 meson 99e6a34d0f7039439dad788f7443b574 meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=e665cfd94c02f8d40bbe78c1c81e201d +_md5_=0a13bc10a81e5c4523c465a49fbe1b61 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-vimdoc-4.1.0 b/metadata/md5-cache/dev-libs/tree-sitter-vimdoc-4.1.0 new file mode 100644 index 000000000000..c080b5023ebc --- /dev/null +++ b/metadata/md5-cache/dev-libs/tree-sitter-vimdoc-4.1.0 @@ -0,0 +1,17 @@ +BDEPEND=test? ( dev-util/tree-sitter-cli ) python? ( python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wheel[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=python? ( python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) ) +DESCRIPTION=Vimdoc grammar for Tree-sitter +EAPI=8 +HOMEPAGE=https://github.com/neovim/tree-sitter-vimdoc +INHERIT=tree-sitter-grammar +IUSE=python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug test python +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +LICENSE=MIT +RDEPEND=python? ( python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/tree-sitter-0.21.0[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) +REQUIRED_USE=python? ( || ( python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/neovim/tree-sitter-vimdoc/archive/v4.1.0.tar.gz -> tree-sitter-vimdoc-4.1.0.tar.gz +_eclasses_=distutils-r1 d35f403697c0f86d762e7560bb5cd143 edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db tree-sitter-grammar 7a26eda0bafce723174d2c49ee0a72ab +_md5_=e5aa288625b65b53e99824708e3c9f94 diff --git a/metadata/md5-cache/dev-libs/vectorscan-5.4.12 b/metadata/md5-cache/dev-libs/vectorscan-5.4.12 index 4b7636d43789..2d3cb478b496 100644 --- a/metadata/md5-cache/dev-libs/vectorscan-5.4.12 +++ b/metadata/md5-cache/dev-libs/vectorscan-5.4.12 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://vectorcamp.gr/vectorscan/ https://github.com/VectorCamp/vectorscan INHERIT=cmake edo flag-o-matic IUSE=cpu_flags_x86_avx2 cpu_flags_x86_sse4_2 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=BSD RDEPEND=dev-libs/boost:= !dev-libs/hyperscan REQUIRED_USE=x86? ( cpu_flags_x86_sse4_2 ) amd64? ( cpu_flags_x86_sse4_2 ) SLOT=0/5 SRC_URI=https://github.com/VectorCamp/vectorscan/archive/refs/tags/vectorscan/5.4.12.tar.gz -> vectorscan-5.4.12.tar.gz _eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=909443e60c927d1ec6832791b17d419f +_md5_=9211bbc6f006c292b04bbb9213e4f7c8 diff --git a/metadata/md5-cache/dev-ruby/backports-3.25.2 b/metadata/md5-cache/dev-ruby/backports-3.25.2 index 5f5231d56631..994ab7676212 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.25.2 +++ b/metadata/md5-cache/dev-ruby/backports-3.25.2 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/marcandre/backports INHERIT=ruby-fakegem IUSE=ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 ~s390 ~sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.25.2.tar.gz -> backports-3.25.2.tar.gz _eclasses_=multilib a199af442898963433d6f038a88cce9c ruby-fakegem bc37b1e2fa23e795fae856dd70a23846 ruby-ng 960d5adaf301da1ef0ab9bdba5018a6d ruby-utils cb2cdbbce7fae7a6b2b1021219b0680d toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=6dce30357d9e1a50ac1437c254806e8f +_md5_=827285e0604b4d48c7b07d16d6fd4614 diff --git a/metadata/md5-cache/dev-ruby/erb-5.0.2-r1 b/metadata/md5-cache/dev-ruby/backports-3.25.3 index fed9ec0610f3..a0328ee48998 100644 --- a/metadata/md5-cache/dev-ruby/erb-5.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/backports-3.25.3 @@ -1,17 +1,17 @@ -BDEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rake[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( test? ( dev-ruby/rake[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( test? ( dev-ruby/rake[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) test? ( ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) ) virtual/pkgconfig +BDEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rake[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( test? ( dev-ruby/rake[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( test? ( dev-ruby/rake[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) test? ( ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack DEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) -DESCRIPTION=An easy to use but powerful templating system for Ruby +DESCRIPTION=Backports of Ruby features for older Ruby EAPI=8 -HOMEPAGE=https://github.com/ruby/erb +HOMEPAGE=https://github.com/marcandre/backports INHERIT=ruby-fakegem IUSE=ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris -LICENSE=|| ( Ruby-BSD BSD-2 ) +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=MIT RDEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -SRC_URI=https://github.com/ruby/erb/archive/v5.0.2.tar.gz -> erb-5.0.2.tar.gz +SRC_URI=https://github.com/marcandre/backports/archive/v3.25.3.tar.gz -> backports-3.25.3.tar.gz _eclasses_=multilib a199af442898963433d6f038a88cce9c ruby-fakegem bc37b1e2fa23e795fae856dd70a23846 ruby-ng 960d5adaf301da1ef0ab9bdba5018a6d ruby-utils cb2cdbbce7fae7a6b2b1021219b0680d toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=765349e064f7c60d5746401f8528013c +_md5_=6dce30357d9e1a50ac1437c254806e8f diff --git a/metadata/md5-cache/dev-ruby/erb-5.0.3 b/metadata/md5-cache/dev-ruby/erb-5.0.3 deleted file mode 100644 index d2ef6d832dd5..000000000000 --- a/metadata/md5-cache/dev-ruby/erb-5.0.3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rake[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( test? ( dev-ruby/rake[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( test? ( dev-ruby/rake[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) test? ( ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) ) virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) -DESCRIPTION=An easy to use but powerful templating system for Ruby -EAPI=8 -HOMEPAGE=https://github.com/ruby/erb -INHERIT=ruby-fakegem -IUSE=ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris -LICENSE=|| ( Ruby-BSD BSD-2 ) -RDEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/erb/archive/v5.0.3.tar.gz -> erb-5.0.3.tar.gz -_eclasses_=multilib a199af442898963433d6f038a88cce9c ruby-fakegem bc37b1e2fa23e795fae856dd70a23846 ruby-ng 960d5adaf301da1ef0ab9bdba5018a6d ruby-utils cb2cdbbce7fae7a6b2b1021219b0680d toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=765349e064f7c60d5746401f8528013c diff --git a/metadata/md5-cache/dev-ruby/erb-5.1.1 b/metadata/md5-cache/dev-ruby/erb-6.0.1 index eef902590b54..d4f6c9682d8b 100644 --- a/metadata/md5-cache/dev-ruby/erb-5.1.1 +++ b/metadata/md5-cache/dev-ruby/erb-6.0.1 @@ -11,7 +11,7 @@ LICENSE=|| ( Ruby-BSD BSD-2 ) RDEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 ) RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ruby/erb/archive/v5.1.1.tar.gz -> erb-5.1.1.tar.gz +SLOT=6 +SRC_URI=https://github.com/ruby/erb/archive/v6.0.1.tar.gz -> erb-6.0.1.tar.gz _eclasses_=multilib a199af442898963433d6f038a88cce9c ruby-fakegem bc37b1e2fa23e795fae856dd70a23846 ruby-ng 960d5adaf301da1ef0ab9bdba5018a6d ruby-utils cb2cdbbce7fae7a6b2b1021219b0680d toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=765349e064f7c60d5746401f8528013c +_md5_=25d57c5d150d8d439c9bd2e3382cfb15 diff --git a/metadata/md5-cache/dev-ruby/loofah-2.25.0 b/metadata/md5-cache/dev-ruby/loofah-2.25.0 new file mode 100644 index 000000000000..ce98b90e45b6 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/loofah-2.25.0 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby32? ( =dev-ruby/crass-1.0*[ruby_targets_ruby32(-)] >=dev-ruby/crass-1.0.2[ruby_targets_ruby32(-)] >=dev-ruby/nokogiri-1.12.0[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( =dev-ruby/crass-1.0*[ruby_targets_ruby33(-)] >=dev-ruby/crass-1.0.2[ruby_targets_ruby33(-)] >=dev-ruby/nokogiri-1.12.0[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( =dev-ruby/crass-1.0*[ruby_targets_ruby34(-)] >=dev-ruby/crass-1.0.2[ruby_targets_ruby34(-)] >=dev-ruby/nokogiri-1.12.0[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( test? ( >=dev-ruby/rr-1.1.0[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( test? ( >=dev-ruby/rr-1.1.0[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( test? ( >=dev-ruby/rr-1.1.0[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rake[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby33? ( test? ( dev-ruby/rake[ruby_targets_ruby33(-)] ) ) ruby_targets_ruby34? ( test? ( dev-ruby/rake[ruby_targets_ruby34(-)] ) ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) test? ( ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) +DESCRIPTION=Library for manipulating and transforming HTML/XML documents and fragments. +EAPI=8 +HOMEPAGE=https://github.com/flavorjones/loofah +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 doc test test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux +LICENSE=MIT +RDEPEND=ruby_targets_ruby32? ( =dev-ruby/crass-1.0*[ruby_targets_ruby32(-)] >=dev-ruby/crass-1.0.2[ruby_targets_ruby32(-)] >=dev-ruby/nokogiri-1.12.0[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( =dev-ruby/crass-1.0*[ruby_targets_ruby33(-)] >=dev-ruby/crass-1.0.2[ruby_targets_ruby33(-)] >=dev-ruby/nokogiri-1.12.0[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( =dev-ruby/crass-1.0*[ruby_targets_ruby34(-)] >=dev-ruby/crass-1.0.2[ruby_targets_ruby34(-)] >=dev-ruby/nokogiri-1.12.0[ruby_targets_ruby34(-)] ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby33? ( dev-lang/ruby:3.3 ) ruby_targets_ruby34? ( dev-lang/ruby:3.4 ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ruby_targets_ruby33? ( virtual/rubygems[ruby_targets_ruby33(-)] ) ruby_targets_ruby34? ( virtual/rubygems[ruby_targets_ruby34(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby32 ruby_targets_ruby33 ruby_targets_ruby34 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/flavorjones/loofah/archive/v2.25.0.tar.gz -> loofah-2.25.0.tar.gz +_eclasses_=multilib a199af442898963433d6f038a88cce9c ruby-fakegem bc37b1e2fa23e795fae856dd70a23846 ruby-ng 960d5adaf301da1ef0ab9bdba5018a6d ruby-utils cb2cdbbce7fae7a6b2b1021219b0680d toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db +_md5_=e1decfb3133441f9500648ae612343fb diff --git a/metadata/md5-cache/dev-util/cargo-c-0.10.16 b/metadata/md5-cache/dev-util/cargo-c-0.10.19 index 6bcfc7cfa6bb..9345f1f4aee8 100644 --- a/metadata/md5-cache/dev-util/cargo-c-0.10.16 +++ b/metadata/md5-cache/dev-util/cargo-c-0.10.19 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT Apache-2.0 BSD ISC MIT MPL-2.0 MPL-2.0 Unicode-DFS-2016 ZLIB RDEPEND=dev-libs/libgit2:= !libressl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl ) net-libs/libssh2:= net-misc/curl[ssl] sys-libs/zlib SLOT=0 -SRC_URI=https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.10.16.tar.gz -> cargo-c-0.10.16.tar.gz https://github.com/gentoo-crate-dist/cargo-c/releases/download/v0.10.16/cargo-c-0.10.16-crates.tar.xz +SRC_URI=https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.10.19.tar.gz -> cargo-c-0.10.19.tar.gz https://github.com/gentoo-crate-dist/cargo-c/releases/download/v0.10.19/cargo-c-0.10.19-crates.tar.xz _eclasses_=cargo a1af74aa9e34cd73aeac642cd0dd54d8 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db _md5_=73aed8ddfff1d0df44306ebe236d113b diff --git a/metadata/md5-cache/games-strategy/7k-ambition-3.2.7 b/metadata/md5-cache/games-strategy/7k-ambition-3.2.8 index ca42d0ef756c..5b1d05b8cd2a 100644 --- a/metadata/md5-cache/games-strategy/7k-ambition-3.2.7 +++ b/metadata/md5-cache/games-strategy/7k-ambition-3.2.8 @@ -12,6 +12,6 @@ LICENSE=GPL-2 music? ( 7k-music ) RDEPEND=dev-libs/boost:= nls? ( <=sys-devel/gettext-0.22.5-r2 ) multiplayer? ( net-libs/enet:1.3= net-misc/curl:= ) media-libs/libsdl2[X,video] media-libs/openal:= RESTRICT=music? ( bindist ) mirror SLOT=0 -SRC_URI=https://github.com/Infiltrator/7k-ambition/archive/refs/tags/v3.2.7.tar.gz -> 7k-ambition-3.2.7.tar.gz https://sourceforge.net/projects/seven-kingdoms-ambition/files/7k-ambition.png/download -> 7k-ambition.png music? ( https://www.7kfans.com/downloads/7kaa-music-2.15.tar.bz2 ) +SRC_URI=https://github.com/Infiltrator/7k-ambition/archive/refs/tags/v3.2.8.tar.gz -> 7k-ambition-3.2.8.tar.gz https://sourceforge.net/projects/seven-kingdoms-ambition/files/7k-ambition.png/download -> 7k-ambition.png music? ( https://www.7kfans.com/downloads/7kaa-music-2.15.tar.bz2 ) _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 desktop 7b6f6e9d65093966fbc8475399c5dd4e gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ee6c1e4c4487f7ef9759dc9b659b7126 diff --git a/metadata/md5-cache/gui-apps/awww-0.11.2 b/metadata/md5-cache/gui-apps/awww-0.11.2 index 52b6fb88c9b3..eebab1a36646 100644 --- a/metadata/md5-cache/gui-apps/awww-0.11.2 +++ b/metadata/md5-cache/gui-apps/awww-0.11.2 @@ -12,4 +12,4 @@ RDEPEND=app-arch/lz4:= x11-libs/libxkbcommon[wayland] SLOT=0 SRC_URI=https://codeberg.org/LGFae/awww/archive/refs/tags/v0.11.2.tar.gz -> awww-0.11.2.tar.gz https://crates.io/api/v1/crates/adler2/2.0.1/download -> adler2-2.0.1.crate https://crates.io/api/v1/crates/ahash/0.8.12/download -> ahash-0.8.12.crate https://crates.io/api/v1/crates/anstream/0.6.20/download -> anstream-0.6.20.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.7/download -> anstyle-parse-0.2.7.crate https://crates.io/api/v1/crates/anstyle-query/1.1.4/download -> anstyle-query-1.1.4.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.10/download -> anstyle-wincon-3.0.10.crate https://crates.io/api/v1/crates/anstyle/1.0.11/download -> anstyle-1.0.11.crate https://crates.io/api/v1/crates/arrayref/0.3.9/download -> arrayref-0.3.9.crate https://crates.io/api/v1/crates/arrayvec/0.7.6/download -> arrayvec-0.7.6.crate https://crates.io/api/v1/crates/assert_cmd/2.0.17/download -> assert_cmd-2.0.17.crate https://crates.io/api/v1/crates/autocfg/1.5.0/download -> autocfg-1.5.0.crate https://crates.io/api/v1/crates/av-data/0.4.4/download -> av-data-0.4.4.crate https://crates.io/api/v1/crates/base64/0.22.1/download -> base64-0.22.1.crate https://crates.io/api/v1/crates/bit_field/0.10.3/download -> bit_field-0.10.3.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.9.4/download -> bitflags-2.9.4.crate https://crates.io/api/v1/crates/bitreader/0.3.11/download -> bitreader-0.3.11.crate https://crates.io/api/v1/crates/bstr/1.12.0/download -> bstr-1.12.0.crate https://crates.io/api/v1/crates/byte-slice-cast/1.2.3/download -> byte-slice-cast-1.2.3.crate https://crates.io/api/v1/crates/bytemuck/1.23.2/download -> bytemuck-1.23.2.crate https://crates.io/api/v1/crates/byteorder-lite/0.1.0/download -> byteorder-lite-0.1.0.crate https://crates.io/api/v1/crates/byteorder/1.5.0/download -> byteorder-1.5.0.crate https://crates.io/api/v1/crates/bytes/1.10.1/download -> bytes-1.10.1.crate https://crates.io/api/v1/crates/cfg-expr/0.20.3/download -> cfg-expr-0.20.3.crate https://crates.io/api/v1/crates/cfg-if/1.0.3/download -> cfg-if-1.0.3.crate https://crates.io/api/v1/crates/clap/4.5.48/download -> clap-4.5.48.crate https://crates.io/api/v1/crates/clap_builder/4.5.48/download -> clap_builder-4.5.48.crate https://crates.io/api/v1/crates/clap_complete/4.5.58/download -> clap_complete-4.5.58.crate https://crates.io/api/v1/crates/clap_derive/4.5.47/download -> clap_derive-4.5.47.crate https://crates.io/api/v1/crates/clap_lex/0.7.5/download -> clap_lex-0.7.5.crate https://crates.io/api/v1/crates/color_quant/1.1.0/download -> color_quant-1.1.0.crate https://crates.io/api/v1/crates/colorchoice/1.0.4/download -> colorchoice-1.0.4.crate https://crates.io/api/v1/crates/core_maths/0.1.1/download -> core_maths-0.1.1.crate https://crates.io/api/v1/crates/crc32fast/1.5.0/download -> crc32fast-1.5.0.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.6/download -> crossbeam-deque-0.8.6.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.18/download -> crossbeam-epoch-0.9.18.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.21/download -> crossbeam-utils-0.8.21.crate https://crates.io/api/v1/crates/crunchy/0.2.4/download -> crunchy-0.2.4.crate https://crates.io/api/v1/crates/data-url/0.3.2/download -> data-url-0.3.2.crate https://crates.io/api/v1/crates/dav1d-sys/0.8.3/download -> dav1d-sys-0.8.3.crate https://crates.io/api/v1/crates/dav1d/0.10.4/download -> dav1d-0.10.4.crate https://crates.io/api/v1/crates/difflib/0.4.0/download -> difflib-0.4.0.crate https://crates.io/api/v1/crates/doc-comment/0.3.3/download -> doc-comment-0.3.3.crate https://crates.io/api/v1/crates/document-features/0.2.11/download -> document-features-0.2.11.crate https://crates.io/api/v1/crates/equivalent/1.0.2/download -> equivalent-1.0.2.crate https://crates.io/api/v1/crates/errno/0.3.14/download -> errno-0.3.14.crate https://crates.io/api/v1/crates/euclid/0.22.11/download -> euclid-0.22.11.crate https://crates.io/api/v1/crates/exr/1.73.0/download -> exr-1.73.0.crate https://crates.io/api/v1/crates/fallible_collections/0.4.9/download -> fallible_collections-0.4.9.crate https://crates.io/api/v1/crates/fast_image_resize/5.3.0/download -> fast_image_resize-5.3.0.crate https://crates.io/api/v1/crates/fastrand/2.3.0/download -> fastrand-2.3.0.crate https://crates.io/api/v1/crates/fax/0.2.6/download -> fax-0.2.6.crate https://crates.io/api/v1/crates/fax_derive/0.2.0/download -> fax_derive-0.2.0.crate https://crates.io/api/v1/crates/fdeflate/0.3.7/download -> fdeflate-0.3.7.crate https://crates.io/api/v1/crates/flate2/1.1.2/download -> flate2-1.1.2.crate https://crates.io/api/v1/crates/float-cmp/0.9.0/download -> float-cmp-0.9.0.crate https://crates.io/api/v1/crates/fontconfig-parser/0.5.8/download -> fontconfig-parser-0.5.8.crate https://crates.io/api/v1/crates/fontdb/0.23.0/download -> fontdb-0.23.0.crate https://crates.io/api/v1/crates/gif/0.13.3/download -> gif-0.13.3.crate https://crates.io/api/v1/crates/half/2.6.0/download -> half-2.6.0.crate https://crates.io/api/v1/crates/hashbrown/0.13.2/download -> hashbrown-0.13.2.crate https://crates.io/api/v1/crates/hashbrown/0.16.0/download -> hashbrown-0.16.0.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/image-webp/0.2.4/download -> image-webp-0.2.4.crate https://crates.io/api/v1/crates/image/0.25.8/download -> image-0.25.8.crate https://crates.io/api/v1/crates/imagesize/0.13.0/download -> imagesize-0.13.0.crate https://crates.io/api/v1/crates/indexmap/2.11.4/download -> indexmap-2.11.4.crate https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.1/download -> is_terminal_polyfill-1.70.1.crate https://crates.io/api/v1/crates/keyframe/1.1.1/download -> keyframe-1.1.1.crate https://crates.io/api/v1/crates/kurbo/0.11.3/download -> kurbo-0.11.3.crate https://crates.io/api/v1/crates/lebe/0.5.3/download -> lebe-0.5.3.crate https://crates.io/api/v1/crates/libc/0.2.175/download -> libc-0.2.175.crate https://crates.io/api/v1/crates/libm/0.2.15/download -> libm-0.2.15.crate https://crates.io/api/v1/crates/linux-raw-sys/0.11.0/download -> linux-raw-sys-0.11.0.crate https://crates.io/api/v1/crates/litrs/0.4.2/download -> litrs-0.4.2.crate https://crates.io/api/v1/crates/log/0.4.28/download -> log-0.4.28.crate https://crates.io/api/v1/crates/memchr/2.7.5/download -> memchr-2.7.5.crate https://crates.io/api/v1/crates/memmap2/0.9.8/download -> memmap2-0.9.8.crate https://crates.io/api/v1/crates/miniz_oxide/0.8.9/download -> miniz_oxide-0.8.9.crate https://crates.io/api/v1/crates/mint/0.5.9/download -> mint-0.5.9.crate https://crates.io/api/v1/crates/moxcms/0.7.5/download -> moxcms-0.7.5.crate https://crates.io/api/v1/crates/mp4parse/0.17.0/download -> mp4parse-0.17.0.crate https://crates.io/api/v1/crates/num-bigint/0.4.6/download -> num-bigint-0.4.6.crate https://crates.io/api/v1/crates/num-derive/0.4.2/download -> num-derive-0.4.2.crate https://crates.io/api/v1/crates/num-integer/0.1.46/download -> num-integer-0.1.46.crate https://crates.io/api/v1/crates/num-rational/0.4.2/download -> num-rational-0.4.2.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/once_cell/1.21.3/download -> once_cell-1.21.3.crate https://crates.io/api/v1/crates/once_cell_polyfill/1.70.1/download -> once_cell_polyfill-1.70.1.crate https://crates.io/api/v1/crates/pico-args/0.5.0/download -> pico-args-0.5.0.crate https://crates.io/api/v1/crates/pkg-config/0.3.32/download -> pkg-config-0.3.32.crate https://crates.io/api/v1/crates/png/0.17.16/download -> png-0.17.16.crate https://crates.io/api/v1/crates/png/0.18.0/download -> png-0.18.0.crate https://crates.io/api/v1/crates/predicates-core/1.0.9/download -> predicates-core-1.0.9.crate https://crates.io/api/v1/crates/predicates-tree/1.0.12/download -> predicates-tree-1.0.12.crate https://crates.io/api/v1/crates/predicates/3.1.3/download -> predicates-3.1.3.crate https://crates.io/api/v1/crates/proc-macro2/1.0.101/download -> proc-macro2-1.0.101.crate https://crates.io/api/v1/crates/pxfm/0.1.24/download -> pxfm-0.1.24.crate https://crates.io/api/v1/crates/qoi/0.4.1/download -> qoi-0.4.1.crate https://crates.io/api/v1/crates/quick-error/2.0.1/download -> quick-error-2.0.1.crate https://crates.io/api/v1/crates/quick-xml/0.38.3/download -> quick-xml-0.38.3.crate https://crates.io/api/v1/crates/quote/1.0.40/download -> quote-1.0.40.crate https://crates.io/api/v1/crates/rayon-core/1.13.0/download -> rayon-core-1.13.0.crate https://crates.io/api/v1/crates/regex-automata/0.4.10/download -> regex-automata-0.4.10.crate https://crates.io/api/v1/crates/resvg/0.45.1/download -> resvg-0.45.1.crate https://crates.io/api/v1/crates/rgb/0.8.52/download -> rgb-0.8.52.crate https://crates.io/api/v1/crates/roxmltree/0.20.0/download -> roxmltree-0.20.0.crate https://crates.io/api/v1/crates/rustix/1.1.2/download -> rustix-1.1.2.crate https://crates.io/api/v1/crates/rustybuzz/0.20.1/download -> rustybuzz-0.20.1.crate https://crates.io/api/v1/crates/sd-notify/0.4.5/download -> sd-notify-0.4.5.crate https://crates.io/api/v1/crates/serde/1.0.225/download -> serde-1.0.225.crate https://crates.io/api/v1/crates/serde_core/1.0.225/download -> serde_core-1.0.225.crate https://crates.io/api/v1/crates/serde_derive/1.0.225/download -> serde_derive-1.0.225.crate https://crates.io/api/v1/crates/serde_spanned/0.6.9/download -> serde_spanned-0.6.9.crate https://crates.io/api/v1/crates/simd-adler32/0.3.7/download -> simd-adler32-0.3.7.crate https://crates.io/api/v1/crates/simplecss/0.2.2/download -> simplecss-0.2.2.crate https://crates.io/api/v1/crates/siphasher/1.0.1/download -> siphasher-1.0.1.crate https://crates.io/api/v1/crates/slotmap/1.0.7/download -> slotmap-1.0.7.crate https://crates.io/api/v1/crates/smallvec/1.15.1/download -> smallvec-1.15.1.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strict-num/0.1.1/download -> strict-num-0.1.1.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/svgtypes/0.15.3/download -> svgtypes-0.15.3.crate https://crates.io/api/v1/crates/syn/2.0.106/download -> syn-2.0.106.crate https://crates.io/api/v1/crates/system-deps/7.0.5/download -> system-deps-7.0.5.crate https://crates.io/api/v1/crates/target-lexicon/0.13.2/download -> target-lexicon-0.13.2.crate https://crates.io/api/v1/crates/terminal_size/0.4.3/download -> terminal_size-0.4.3.crate https://crates.io/api/v1/crates/termtree/0.5.1/download -> termtree-0.5.1.crate https://crates.io/api/v1/crates/thiserror-impl/2.0.16/download -> thiserror-impl-2.0.16.crate https://crates.io/api/v1/crates/thiserror/2.0.16/download -> thiserror-2.0.16.crate https://crates.io/api/v1/crates/tiff/0.10.3/download -> tiff-0.10.3.crate https://crates.io/api/v1/crates/tiny-bench/0.4.0/download -> tiny-bench-0.4.0.crate https://crates.io/api/v1/crates/tiny-skia-path/0.11.4/download -> tiny-skia-path-0.11.4.crate https://crates.io/api/v1/crates/tiny-skia/0.11.4/download -> tiny-skia-0.11.4.crate https://crates.io/api/v1/crates/tinyvec/1.10.0/download -> tinyvec-1.10.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download -> tinyvec_macros-0.1.1.crate https://crates.io/api/v1/crates/toml/0.8.23/download -> toml-0.8.23.crate https://crates.io/api/v1/crates/toml_datetime/0.6.11/download -> toml_datetime-0.6.11.crate https://crates.io/api/v1/crates/toml_edit/0.22.27/download -> toml_edit-0.22.27.crate https://crates.io/api/v1/crates/ttf-parser/0.25.1/download -> ttf-parser-0.25.1.crate https://crates.io/api/v1/crates/unicode-bidi-mirroring/0.4.0/download -> unicode-bidi-mirroring-0.4.0.crate https://crates.io/api/v1/crates/unicode-bidi/0.3.18/download -> unicode-bidi-0.3.18.crate https://crates.io/api/v1/crates/unicode-ccc/0.4.0/download -> unicode-ccc-0.4.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.19/download -> unicode-ident-1.0.19.crate https://crates.io/api/v1/crates/unicode-properties/0.1.3/download -> unicode-properties-0.1.3.crate https://crates.io/api/v1/crates/unicode-script/0.5.7/download -> unicode-script-0.5.7.crate https://crates.io/api/v1/crates/unicode-vo/0.1.0/download -> unicode-vo-0.1.0.crate https://crates.io/api/v1/crates/usvg/0.45.1/download -> usvg-0.45.1.crate https://crates.io/api/v1/crates/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/version-compare/0.2.0/download -> version-compare-0.2.0.crate https://crates.io/api/v1/crates/version_check/0.9.5/download -> version_check-0.9.5.crate https://crates.io/api/v1/crates/wait-timeout/0.2.1/download -> wait-timeout-0.2.1.crate https://crates.io/api/v1/crates/waybackend-scanner/0.6.2/download -> waybackend-scanner-0.6.2.crate https://crates.io/api/v1/crates/waybackend/0.6.2/download -> waybackend-0.6.2.crate https://crates.io/api/v1/crates/weezl/0.1.10/download -> weezl-0.1.10.crate https://crates.io/api/v1/crates/windows-link/0.1.3/download -> windows-link-0.1.3.crate https://crates.io/api/v1/crates/windows-link/0.2.0/download -> windows-link-0.2.0.crate https://crates.io/api/v1/crates/windows-sys/0.60.2/download -> windows-sys-0.60.2.crate https://crates.io/api/v1/crates/windows-sys/0.61.0/download -> windows-sys-0.61.0.crate https://crates.io/api/v1/crates/windows-targets/0.53.3/download -> windows-targets-0.53.3.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.53.0/download -> windows_aarch64_gnullvm-0.53.0.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.53.0/download -> windows_aarch64_msvc-0.53.0.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.53.0/download -> windows_i686_gnu-0.53.0.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.53.0/download -> windows_i686_gnullvm-0.53.0.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.53.0/download -> windows_i686_msvc-0.53.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.53.0/download -> windows_x86_64_gnu-0.53.0.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.53.0/download -> windows_x86_64_gnullvm-0.53.0.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.53.0/download -> windows_x86_64_msvc-0.53.0.crate https://crates.io/api/v1/crates/winnow/0.7.13/download -> winnow-0.7.13.crate https://crates.io/api/v1/crates/xmlwriter/0.1.0/download -> xmlwriter-0.1.0.crate https://crates.io/api/v1/crates/zerocopy-derive/0.8.27/download -> zerocopy-derive-0.8.27.crate https://crates.io/api/v1/crates/zerocopy/0.8.27/download -> zerocopy-0.8.27.crate https://crates.io/api/v1/crates/zune-core/0.4.12/download -> zune-core-0.4.12.crate https://crates.io/api/v1/crates/zune-inflate/0.2.54/download -> zune-inflate-0.2.54.crate https://crates.io/api/v1/crates/zune-jpeg/0.4.21/download -> zune-jpeg-0.4.21.crate _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 cargo a1af74aa9e34cd73aeac642cd0dd54d8 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=ede9536ab8621002c9234e179003946d +_md5_=b8fde3eda6ba779423de40253e2dec54 diff --git a/metadata/md5-cache/gui-apps/awww-9999 b/metadata/md5-cache/gui-apps/awww-9999 index 853e5ddede3b..ac3a0c5f4da3 100644 --- a/metadata/md5-cache/gui-apps/awww-9999 +++ b/metadata/md5-cache/gui-apps/awww-9999 @@ -11,4 +11,4 @@ PROPERTIES=live RDEPEND=app-arch/lz4:= x11-libs/libxkbcommon[wayland] SLOT=0 _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 cargo a1af74aa9e34cd73aeac642cd0dd54d8 flag-o-matic a7afe42e95fb46ce9691605acfb24672 git-r3 875eb471682d3e1f18da124be97dcc81 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=b0b86f87155ef556ea3f8f4476355f16 +_md5_=140a945d8baceeca3d8c76a90edb3335 diff --git a/metadata/md5-cache/gui-apps/walker-9999 b/metadata/md5-cache/gui-apps/walker-9999 index f9de003831b9..c1410ef39aec 100644 --- a/metadata/md5-cache/gui-apps/walker-9999 +++ b/metadata/md5-cache/gui-apps/walker-9999 @@ -10,4 +10,4 @@ PROPERTIES=live RDEPEND=dev-libs/glib:2 gui-libs/gtk:4 >=gui-libs/gtk4-layer-shell-1.0.4 dev-libs/gobject-introspection media-libs/graphene media-libs/vips:= x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/pango SLOT=0 _eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 git-r3 875eb471682d3e1f18da124be97dcc81 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module d96f2a2fd6d8fbad6d94516bf238f885 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=d788b313153fb10bf512a3aac65b3e35 +_md5_=e05267d8767651d56b789d7169313bb2 diff --git a/metadata/md5-cache/media-fonts/maple-mono-7.9 b/metadata/md5-cache/media-fonts/maple-mono-7.9 index a69456f1c685..4fb997e1ce57 100644 --- a/metadata/md5-cache/media-fonts/maple-mono-7.9 +++ b/metadata/md5-cache/media-fonts/maple-mono-7.9 @@ -10,4 +10,4 @@ LICENSE=OFL-1.1 SLOT=0 SRC_URI=!normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMono-TTF.zip -> maple-mono-7.9-ligature-tff.zip nerd? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMono-NF-unhinted.zip -> maple-mono-7.9-ligature-nerd.zip ) cn? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMono-CN-unhinted.zip -> maple-mono-7.9-ligature-cn.zip ) ) !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNL-TTF.zip -> maple-mono-7.9-tff.zip nerd? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNL-NF-unhinted.zip -> maple-mono-7.9-nerd.zip ) cn? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNL-CN-unhinted.zip -> maple-mono-7.9-cn.zip ) ) ) normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNormal-TTF.zip -> maple-mono-7.9-normal-ligature-tff.zip nerd? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNormal-NF-unhinted.zip -> maple-mono-7.9-normal-ligature-nerd.zip ) cn? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNormal-CN-unhinted.zip -> maple-mono-7.9-normal-ligature-cn.zip ) ) !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNormalNL-TTF.zip -> maple-mono-7.9-normal-tff.zip nerd? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNormalNL-NF-unhinted.zip -> maple-mono-7.9-normal-nerd.zip ) cn? ( https://github.com/subframe7536/maple-font/releases/download/v7.9/MapleMonoNormalNL-CN-unhinted.zip -> maple-mono-7.9-normal-cn.zip ) ) ) _eclasses_=font aa113a3df9cd0a9693a1c1ee7c34a6eb -_md5_=fdcce7d5c48594c419020ee09e249df4 +_md5_=4ed56e1cfa3329ac351b9167cf06c028 diff --git a/metadata/md5-cache/media-sound/goxlr-utility-9999 b/metadata/md5-cache/media-sound/goxlr-utility-9999 index d34971a13019..d683bca73645 100644 --- a/metadata/md5-cache/media-sound/goxlr-utility-9999 +++ b/metadata/md5-cache/media-sound/goxlr-utility-9999 @@ -11,4 +11,4 @@ PROPERTIES=live RDEPEND=media-libs/libpulse dev-util/pkgconf sys-apps/dbus tts? ( app-accessibility/speech-dispatcher llvm-core/clang ) SLOT=0 _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 cargo a1af74aa9e34cd73aeac642cd0dd54d8 desktop 7b6f6e9d65093966fbc8475399c5dd4e flag-o-matic a7afe42e95fb46ce9691605acfb24672 git-r3 875eb471682d3e1f18da124be97dcc81 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db udev f3d9a4376ebd22131726a68e1a0a058f xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=5a64ab2edf9c1d61ff32be82923a673e +_md5_=b65181b50aefd1ce3d84cf4f85ebbf1f diff --git a/metadata/md5-cache/media-sound/spotifyd-0.4.2 b/metadata/md5-cache/media-sound/spotifyd-0.4.2 new file mode 100644 index 000000000000..98ff27553df4 --- /dev/null +++ b/metadata/md5-cache/media-sound/spotifyd-0.4.2 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) virtual/pkgconfig +DEFINED_PHASES=compile configure install setup test unpack +DEPEND=alsa? ( media-libs/alsa-lib media-plugins/alsa-plugins ) portaudio? ( media-libs/portaudio ) pulseaudio? ( >=media-libs/libpulse-5.0 ) dbus? ( >=sys-apps/dbus-1.6 ) jack? ( virtual/jack ) +DESCRIPTION=A Spotify daemon +EAPI=8 +HOMEPAGE=https://spotifyd.rs/ +INHERIT=cargo systemd +IUSE=+alsa pulseaudio portaudio rodio dbus jack debug +KEYWORDS=~amd64 +LICENSE=GPL-3 Apache-2.0 BSD ISC MIT MPL-2.0 openssl Unicode-3.0 ZLIB +RDEPEND=alsa? ( media-libs/alsa-lib media-plugins/alsa-plugins ) portaudio? ( media-libs/portaudio ) pulseaudio? ( >=media-libs/libpulse-5.0 ) dbus? ( >=sys-apps/dbus-1.6 ) jack? ( virtual/jack ) +SLOT=0 +SRC_URI=https://github.com/Spotifyd/spotifyd/archive/refs/tags/v0.4.2.tar.gz -> spotifyd-0.4.2.gh.tar.gz https://crates.io/api/v1/crates/addr2line/0.25.1/download -> addr2line-0.25.1.crate https://crates.io/api/v1/crates/adler2/2.0.1/download -> adler2-2.0.1.crate https://crates.io/api/v1/crates/aes/0.8.4/download -> aes-0.8.4.crate https://crates.io/api/v1/crates/aho-corasick/1.1.4/download -> aho-corasick-1.1.4.crate https://crates.io/api/v1/crates/allocator-api2/0.2.21/download -> allocator-api2-0.2.21.crate https://crates.io/api/v1/crates/alsa-sys/0.3.1/download -> alsa-sys-0.3.1.crate https://crates.io/api/v1/crates/alsa/0.10.0/download -> alsa-0.10.0.crate https://crates.io/api/v1/crates/alsa/0.9.1/download -> alsa-0.9.1.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.crate https://crates.io/api/v1/crates/anstream/0.6.21/download -> anstream-0.6.21.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.7/download -> anstyle-parse-0.2.7.crate https://crates.io/api/v1/crates/anstyle-query/1.1.5/download -> anstyle-query-1.1.5.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.11/download -> anstyle-wincon-3.0.11.crate https://crates.io/api/v1/crates/anstyle/1.0.13/download -> anstyle-1.0.13.crate https://crates.io/api/v1/crates/anyhow/1.0.100/download -> anyhow-1.0.100.crate https://crates.io/api/v1/crates/arrayvec/0.7.6/download -> arrayvec-0.7.6.crate https://crates.io/api/v1/crates/async-trait/0.1.89/download -> async-trait-0.1.89.crate https://crates.io/api/v1/crates/atomic-waker/1.1.2/download -> atomic-waker-1.1.2.crate https://crates.io/api/v1/crates/autocfg/1.5.0/download -> autocfg-1.5.0.crate https://crates.io/api/v1/crates/aws-lc-fips-sys/0.13.10/download -> aws-lc-fips-sys-0.13.10.crate https://crates.io/api/v1/crates/aws-lc-rs/1.15.0/download -> aws-lc-rs-1.15.0.crate https://crates.io/api/v1/crates/aws-lc-sys/0.33.0/download -> aws-lc-sys-0.33.0.crate https://crates.io/api/v1/crates/backtrace/0.3.76/download -> backtrace-0.3.76.crate https://crates.io/api/v1/crates/base64/0.22.1/download -> base64-0.22.1.crate https://crates.io/api/v1/crates/base64ct/1.8.0/download -> base64ct-1.8.0.crate https://crates.io/api/v1/crates/bindgen/0.72.1/download -> bindgen-0.72.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitflags/2.10.0/download -> bitflags-2.10.0.crate https://crates.io/api/v1/crates/block-buffer/0.10.4/download -> block-buffer-0.10.4.crate https://crates.io/api/v1/crates/bumpalo/3.19.0/download -> bumpalo-3.19.0.crate https://crates.io/api/v1/crates/bytemuck/1.24.0/download -> bytemuck-1.24.0.crate https://crates.io/api/v1/crates/byteorder/1.5.0/download -> byteorder-1.5.0.crate https://crates.io/api/v1/crates/bytes/1.11.0/download -> bytes-1.11.0.crate https://crates.io/api/v1/crates/cc/1.2.46/download -> cc-1.2.46.crate https://crates.io/api/v1/crates/cesu8/1.1.0/download -> cesu8-1.1.0.crate https://crates.io/api/v1/crates/cexpr/0.6.0/download -> cexpr-0.6.0.crate https://crates.io/api/v1/crates/cfg-if/1.0.4/download -> cfg-if-1.0.4.crate https://crates.io/api/v1/crates/chrono/0.4.42/download -> chrono-0.4.42.crate https://crates.io/api/v1/crates/cipher/0.4.4/download -> cipher-0.4.4.crate https://crates.io/api/v1/crates/clang-sys/1.8.1/download -> clang-sys-1.8.1.crate https://crates.io/api/v1/crates/clap/4.5.52/download -> clap-4.5.52.crate https://crates.io/api/v1/crates/clap_builder/4.5.52/download -> clap_builder-4.5.52.crate https://crates.io/api/v1/crates/clap_derive/4.5.49/download -> clap_derive-4.5.49.crate https://crates.io/api/v1/crates/clap_lex/0.7.6/download -> clap_lex-0.7.6.crate https://crates.io/api/v1/crates/cmake/0.1.54/download -> cmake-0.1.54.crate https://crates.io/api/v1/crates/color-eyre/0.6.5/download -> color-eyre-0.6.5.crate https://crates.io/api/v1/crates/color-spantrace/0.3.0/download -> color-spantrace-0.3.0.crate https://crates.io/api/v1/crates/colorchoice/1.0.4/download -> colorchoice-1.0.4.crate https://crates.io/api/v1/crates/colored/2.2.0/download -> colored-2.2.0.crate https://crates.io/api/v1/crates/combine/4.6.7/download -> combine-4.6.7.crate https://crates.io/api/v1/crates/const-oid/0.9.6/download -> const-oid-0.9.6.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download -> core-foundation-sys-0.8.7.crate https://crates.io/api/v1/crates/core-foundation/0.9.4/download -> core-foundation-0.9.4.crate https://crates.io/api/v1/crates/coreaudio-rs/0.13.0/download -> coreaudio-rs-0.13.0.crate https://crates.io/api/v1/crates/cpal/0.16.0/download -> cpal-0.16.0.crate https://crates.io/api/v1/crates/cpufeatures/0.2.17/download -> cpufeatures-0.2.17.crate https://crates.io/api/v1/crates/crc32fast/1.5.0/download -> crc32fast-1.5.0.crate https://crates.io/api/v1/crates/crypto-common/0.1.7/download -> crypto-common-0.1.7.crate https://crates.io/api/v1/crates/ctr/0.9.2/download -> ctr-0.9.2.crate https://crates.io/api/v1/crates/daemonize/0.5.0/download -> daemonize-0.5.0.crate https://crates.io/api/v1/crates/darling/0.20.11/download -> darling-0.20.11.crate https://crates.io/api/v1/crates/darling_core/0.20.11/download -> darling_core-0.20.11.crate https://crates.io/api/v1/crates/darling_macro/0.20.11/download -> darling_macro-0.20.11.crate https://crates.io/api/v1/crates/dasp_sample/0.11.0/download -> dasp_sample-0.11.0.crate https://crates.io/api/v1/crates/data-encoding/2.9.0/download -> data-encoding-2.9.0.crate https://crates.io/api/v1/crates/dbus-crossroads/0.5.2/download -> dbus-crossroads-0.5.2.crate https://crates.io/api/v1/crates/dbus-tokio/0.7.6/download -> dbus-tokio-0.7.6.crate https://crates.io/api/v1/crates/dbus/0.9.9/download -> dbus-0.9.9.crate https://crates.io/api/v1/crates/der/0.7.10/download -> der-0.7.10.crate https://crates.io/api/v1/crates/deranged/0.5.5/download -> deranged-0.5.5.crate https://crates.io/api/v1/crates/derive_builder/0.20.2/download -> derive_builder-0.20.2.crate https://crates.io/api/v1/crates/derive_builder_core/0.20.2/download -> derive_builder_core-0.20.2.crate https://crates.io/api/v1/crates/derive_builder_macro/0.20.2/download -> derive_builder_macro-0.20.2.crate https://crates.io/api/v1/crates/digest/0.10.7/download -> digest-0.10.7.crate https://crates.io/api/v1/crates/directories/6.0.0/download -> directories-6.0.0.crate https://crates.io/api/v1/crates/dirs-sys/0.5.0/download -> dirs-sys-0.5.0.crate https://crates.io/api/v1/crates/dispatch2/0.3.0/download -> dispatch2-0.3.0.crate https://crates.io/api/v1/crates/displaydoc/0.2.5/download -> displaydoc-0.2.5.crate https://crates.io/api/v1/crates/dunce/1.0.5/download -> dunce-1.0.5.crate https://crates.io/api/v1/crates/either/1.15.0/download -> either-1.15.0.crate https://crates.io/api/v1/crates/encoding_rs/0.8.35/download -> encoding_rs-0.8.35.crate https://crates.io/api/v1/crates/env_filter/0.1.4/download -> env_filter-0.1.4.crate https://crates.io/api/v1/crates/env_logger/0.11.8/download -> env_logger-0.11.8.crate https://crates.io/api/v1/crates/equivalent/1.0.2/download -> equivalent-1.0.2.crate https://crates.io/api/v1/crates/errno/0.3.14/download -> errno-0.3.14.crate https://crates.io/api/v1/crates/eyre/0.6.12/download -> eyre-0.6.12.crate https://crates.io/api/v1/crates/fastrand/2.3.0/download -> fastrand-2.3.0.crate https://crates.io/api/v1/crates/fern/0.7.1/download -> fern-0.7.1.crate https://crates.io/api/v1/crates/find-msvc-tools/0.1.5/download -> find-msvc-tools-0.1.5.crate https://crates.io/api/v1/crates/flate2/1.1.5/download -> flate2-1.1.5.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.crate https://crates.io/api/v1/crates/foldhash/0.2.0/download -> foldhash-0.2.0.crate https://crates.io/api/v1/crates/foreign-types-shared/0.1.1/download -> foreign-types-shared-0.1.1.crate https://crates.io/api/v1/crates/foreign-types/0.3.2/download -> foreign-types-0.3.2.crate https://crates.io/api/v1/crates/form_urlencoded/1.2.2/download -> form_urlencoded-1.2.2.crate https://crates.io/api/v1/crates/fs_extra/1.3.0/download -> fs_extra-1.3.0.crate https://crates.io/api/v1/crates/futures-channel/0.3.31/download -> futures-channel-0.3.31.crate https://crates.io/api/v1/crates/futures-core/0.3.31/download -> futures-core-0.3.31.crate https://crates.io/api/v1/crates/futures-executor/0.3.31/download -> futures-executor-0.3.31.crate https://crates.io/api/v1/crates/futures-io/0.3.31/download -> futures-io-0.3.31.crate https://crates.io/api/v1/crates/futures-macro/0.3.31/download -> futures-macro-0.3.31.crate https://crates.io/api/v1/crates/futures-sink/0.3.31/download -> futures-sink-0.3.31.crate https://crates.io/api/v1/crates/futures-task/0.3.31/download -> futures-task-0.3.31.crate https://crates.io/api/v1/crates/futures-timer/3.0.3/download -> futures-timer-3.0.3.crate https://crates.io/api/v1/crates/futures-util/0.3.31/download -> futures-util-0.3.31.crate https://crates.io/api/v1/crates/futures/0.3.31/download -> futures-0.3.31.crate https://crates.io/api/v1/crates/generic-array/0.14.7/download -> generic-array-0.14.7.crate https://crates.io/api/v1/crates/gethostname/1.1.0/download -> gethostname-1.1.0.crate https://crates.io/api/v1/crates/getrandom/0.2.16/download -> getrandom-0.2.16.crate https://crates.io/api/v1/crates/getrandom/0.3.4/download -> getrandom-0.3.4.crate https://crates.io/api/v1/crates/gimli/0.32.3/download -> gimli-0.32.3.crate https://crates.io/api/v1/crates/glob/0.3.3/download -> glob-0.3.3.crate https://crates.io/api/v1/crates/governor/0.10.2/download -> governor-0.10.2.crate https://crates.io/api/v1/crates/h2/0.4.12/download -> h2-0.4.12.crate https://crates.io/api/v1/crates/hashbrown/0.16.0/download -> hashbrown-0.16.0.crate https://crates.io/api/v1/crates/headers-core/0.3.0/download -> headers-core-0.3.0.crate https://crates.io/api/v1/crates/headers/0.4.1/download -> headers-0.4.1.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/hmac/0.12.1/download -> hmac-0.12.1.crate https://crates.io/api/v1/crates/home/0.5.12/download -> home-0.5.12.crate https://crates.io/api/v1/crates/hostname/0.4.1/download -> hostname-0.4.1.crate https://crates.io/api/v1/crates/http-body-util/0.1.3/download -> http-body-util-0.1.3.crate https://crates.io/api/v1/crates/http-body/1.0.1/download -> http-body-1.0.1.crate https://crates.io/api/v1/crates/http/1.3.1/download -> http-1.3.1.crate https://crates.io/api/v1/crates/httparse/1.10.1/download -> httparse-1.10.1.crate https://crates.io/api/v1/crates/httpdate/1.0.3/download -> httpdate-1.0.3.crate https://crates.io/api/v1/crates/hyper-proxy2/0.1.0/download -> hyper-proxy2-0.1.0.crate https://crates.io/api/v1/crates/hyper-tls/0.6.0/download -> hyper-tls-0.6.0.crate https://crates.io/api/v1/crates/hyper-util/0.1.18/download -> hyper-util-0.1.18.crate https://crates.io/api/v1/crates/hyper/1.8.1/download -> hyper-1.8.1.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download -> iana-time-zone-haiku-0.1.2.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.64/download -> iana-time-zone-0.1.64.crate https://crates.io/api/v1/crates/icu_collections/2.1.1/download -> icu_collections-2.1.1.crate https://crates.io/api/v1/crates/icu_locale_core/2.1.1/download -> icu_locale_core-2.1.1.crate https://crates.io/api/v1/crates/icu_normalizer/2.1.1/download -> icu_normalizer-2.1.1.crate https://crates.io/api/v1/crates/icu_normalizer_data/2.1.1/download -> icu_normalizer_data-2.1.1.crate https://crates.io/api/v1/crates/icu_properties/2.1.1/download -> icu_properties-2.1.1.crate https://crates.io/api/v1/crates/icu_properties_data/2.1.1/download -> icu_properties_data-2.1.1.crate https://crates.io/api/v1/crates/icu_provider/2.1.1/download -> icu_provider-2.1.1.crate https://crates.io/api/v1/crates/ident_case/1.0.1/download -> ident_case-1.0.1.crate https://crates.io/api/v1/crates/idna/1.1.0/download -> idna-1.1.0.crate https://crates.io/api/v1/crates/idna_adapter/1.2.1/download -> idna_adapter-1.2.1.crate https://crates.io/api/v1/crates/if-addrs/0.14.0/download -> if-addrs-0.14.0.crate https://crates.io/api/v1/crates/indenter/0.3.4/download -> indenter-0.3.4.crate https://crates.io/api/v1/crates/indexmap/2.12.0/download -> indexmap-2.12.0.crate https://crates.io/api/v1/crates/inout/0.1.4/download -> inout-0.1.4.crate https://crates.io/api/v1/crates/ipnet/2.11.0/download -> ipnet-2.11.0.crate https://crates.io/api/v1/crates/iri-string/0.7.9/download -> iri-string-0.7.9.crate https://crates.io/api/v1/crates/is-docker/0.2.0/download -> is-docker-0.2.0.crate https://crates.io/api/v1/crates/is-wsl/0.4.0/download -> is-wsl-0.4.0.crate https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.2/download -> is_terminal_polyfill-1.70.2.crate https://crates.io/api/v1/crates/itertools/0.13.0/download -> itertools-0.13.0.crate https://crates.io/api/v1/crates/itoa/1.0.15/download -> itoa-1.0.15.crate https://crates.io/api/v1/crates/jack-sys/0.5.1/download -> jack-sys-0.5.1.crate https://crates.io/api/v1/crates/jack/0.13.3/download -> jack-0.13.3.crate https://crates.io/api/v1/crates/jiff-static/0.2.16/download -> jiff-static-0.2.16.crate https://crates.io/api/v1/crates/jiff/0.2.16/download -> jiff-0.2.16.crate https://crates.io/api/v1/crates/jni-sys/0.3.0/download -> jni-sys-0.3.0.crate https://crates.io/api/v1/crates/jni/0.21.1/download -> jni-0.21.1.crate https://crates.io/api/v1/crates/jobserver/0.1.34/download -> jobserver-0.1.34.crate https://crates.io/api/v1/crates/js-sys/0.3.82/download -> js-sys-0.3.82.crate https://crates.io/api/v1/crates/lazy_static/1.5.0/download -> lazy_static-1.5.0.crate https://crates.io/api/v1/crates/libc/0.2.177/download -> libc-0.2.177.crate https://crates.io/api/v1/crates/libdbus-sys/0.2.6/download -> libdbus-sys-0.2.6.crate https://crates.io/api/v1/crates/libloading/0.7.4/download -> libloading-0.7.4.crate https://crates.io/api/v1/crates/libloading/0.8.9/download -> libloading-0.8.9.crate https://crates.io/api/v1/crates/libm/0.2.15/download -> libm-0.2.15.crate https://crates.io/api/v1/crates/libmdns/0.10.1/download -> libmdns-0.10.1.crate https://crates.io/api/v1/crates/libpulse-binding/2.30.1/download -> libpulse-binding-2.30.1.crate https://crates.io/api/v1/crates/libpulse-simple-binding/2.29.0/download -> libpulse-simple-binding-2.29.0.crate https://crates.io/api/v1/crates/libpulse-simple-sys/1.22.0/download -> libpulse-simple-sys-1.22.0.crate https://crates.io/api/v1/crates/libpulse-sys/1.23.0/download -> libpulse-sys-1.23.0.crate https://crates.io/api/v1/crates/libredox/0.1.10/download -> libredox-0.1.10.crate https://crates.io/api/v1/crates/librespot-audio/0.8.0/download -> librespot-audio-0.8.0.crate https://crates.io/api/v1/crates/librespot-connect/0.8.0/download -> librespot-connect-0.8.0.crate https://crates.io/api/v1/crates/librespot-core/0.8.0/download -> librespot-core-0.8.0.crate https://crates.io/api/v1/crates/librespot-discovery/0.8.0/download -> librespot-discovery-0.8.0.crate https://crates.io/api/v1/crates/librespot-metadata/0.8.0/download -> librespot-metadata-0.8.0.crate https://crates.io/api/v1/crates/librespot-oauth/0.8.0/download -> librespot-oauth-0.8.0.crate https://crates.io/api/v1/crates/librespot-playback/0.8.0/download -> librespot-playback-0.8.0.crate https://crates.io/api/v1/crates/librespot-protocol/0.8.0/download -> librespot-protocol-0.8.0.crate https://crates.io/api/v1/crates/linux-raw-sys/0.11.0/download -> linux-raw-sys-0.11.0.crate https://crates.io/api/v1/crates/linux-raw-sys/0.4.15/download -> linux-raw-sys-0.4.15.crate https://crates.io/api/v1/crates/litemap/0.8.1/download -> litemap-0.8.1.crate https://crates.io/api/v1/crates/lock_api/0.4.14/download -> lock_api-0.4.14.crate https://crates.io/api/v1/crates/log/0.4.28/download -> log-0.4.28.crate https://crates.io/api/v1/crates/mach2/0.4.3/download -> mach2-0.4.3.crate https://crates.io/api/v1/crates/memchr/2.7.6/download -> memchr-2.7.6.crate https://crates.io/api/v1/crates/mime/0.3.17/download -> mime-0.3.17.crate https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download -> minimal-lexical-0.2.1.crate https://crates.io/api/v1/crates/miniz_oxide/0.8.9/download -> miniz_oxide-0.8.9.crate https://crates.io/api/v1/crates/mio/1.1.0/download -> mio-1.1.0.crate https://crates.io/api/v1/crates/multimap/0.10.1/download -> multimap-0.10.1.crate https://crates.io/api/v1/crates/native-tls/0.2.14/download -> native-tls-0.2.14.crate https://crates.io/api/v1/crates/ndk-context/0.1.1/download -> ndk-context-0.1.1.crate https://crates.io/api/v1/crates/ndk-sys/0.6.0+11769913/download -> ndk-sys-0.6.0+11769913.crate https://crates.io/api/v1/crates/ndk/0.9.0/download -> ndk-0.9.0.crate https://crates.io/api/v1/crates/nom/7.1.3/download -> nom-7.1.3.crate https://crates.io/api/v1/crates/nonzero_ext/0.3.0/download -> nonzero_ext-0.3.0.crate https://crates.io/api/v1/crates/ntapi/0.4.1/download -> ntapi-0.4.1.crate https://crates.io/api/v1/crates/num-bigint-dig/0.8.6/download -> num-bigint-dig-0.8.6.crate https://crates.io/api/v1/crates/num-bigint/0.4.6/download -> num-bigint-0.4.6.crate https://crates.io/api/v1/crates/num-conv/0.1.0/download -> num-conv-0.1.0.crate https://crates.io/api/v1/crates/num-derive/0.4.2/download -> num-derive-0.4.2.crate https://crates.io/api/v1/crates/num-integer/0.1.46/download -> num-integer-0.1.46.crate https://crates.io/api/v1/crates/num-iter/0.1.45/download -> num-iter-0.1.45.crate https://crates.io/api/v1/crates/num-rational/0.4.2/download -> num-rational-0.4.2.crate https://crates.io/api/v1/crates/num-traits/0.2.19/download -> num-traits-0.2.19.crate https://crates.io/api/v1/crates/num_enum/0.7.5/download -> num_enum-0.7.5.crate https://crates.io/api/v1/crates/num_enum_derive/0.7.5/download -> num_enum_derive-0.7.5.crate https://crates.io/api/v1/crates/num_threads/0.1.7/download -> num_threads-0.1.7.crate https://crates.io/api/v1/crates/oauth2/5.0.0/download -> oauth2-5.0.0.crate https://crates.io/api/v1/crates/objc2-audio-toolbox/0.3.2/download -> objc2-audio-toolbox-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-audio-types/0.3.2/download -> objc2-core-audio-types-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-audio/0.3.2/download -> objc2-core-audio-0.3.2.crate https://crates.io/api/v1/crates/objc2-core-foundation/0.3.2/download -> objc2-core-foundation-0.3.2.crate https://crates.io/api/v1/crates/objc2-encode/4.1.0/download -> objc2-encode-4.1.0.crate https://crates.io/api/v1/crates/objc2-foundation/0.3.2/download -> objc2-foundation-0.3.2.crate https://crates.io/api/v1/crates/objc2-io-kit/0.3.2/download -> objc2-io-kit-0.3.2.crate https://crates.io/api/v1/crates/objc2/0.6.3/download -> objc2-0.6.3.crate https://crates.io/api/v1/crates/object/0.37.3/download -> object-0.37.3.crate https://crates.io/api/v1/crates/once_cell/1.21.3/download -> once_cell-1.21.3.crate https://crates.io/api/v1/crates/once_cell_polyfill/1.70.2/download -> once_cell_polyfill-1.70.2.crate https://crates.io/api/v1/crates/open/5.3.3/download -> open-5.3.3.crate https://crates.io/api/v1/crates/openssl-macros/0.1.1/download -> openssl-macros-0.1.1.crate https://crates.io/api/v1/crates/openssl-probe/0.1.6/download -> openssl-probe-0.1.6.crate https://crates.io/api/v1/crates/openssl-sys/0.9.111/download -> openssl-sys-0.9.111.crate https://crates.io/api/v1/crates/openssl/0.10.75/download -> openssl-0.10.75.crate https://crates.io/api/v1/crates/option-ext/0.2.0/download -> option-ext-0.2.0.crate https://crates.io/api/v1/crates/owo-colors/4.2.3/download -> owo-colors-4.2.3.crate https://crates.io/api/v1/crates/parking_lot/0.12.5/download -> parking_lot-0.12.5.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.12/download -> parking_lot_core-0.9.12.crate https://crates.io/api/v1/crates/pathdiff/0.2.3/download -> pathdiff-0.2.3.crate https://crates.io/api/v1/crates/pbkdf2/0.12.2/download -> pbkdf2-0.12.2.crate https://crates.io/api/v1/crates/pem-rfc7468/0.7.0/download -> pem-rfc7468-0.7.0.crate https://crates.io/api/v1/crates/percent-encoding/2.3.2/download -> percent-encoding-2.3.2.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.16/download -> pin-project-lite-0.2.16.crate https://crates.io/api/v1/crates/pin-utils/0.1.0/download -> pin-utils-0.1.0.crate https://crates.io/api/v1/crates/pkcs1/0.7.5/download -> pkcs1-0.7.5.crate https://crates.io/api/v1/crates/pkcs8/0.10.2/download -> pkcs8-0.10.2.crate https://crates.io/api/v1/crates/pkg-config/0.3.32/download -> pkg-config-0.3.32.crate https://crates.io/api/v1/crates/pledge/0.4.2/download -> pledge-0.4.2.crate https://crates.io/api/v1/crates/portable-atomic-util/0.2.4/download -> portable-atomic-util-0.2.4.crate https://crates.io/api/v1/crates/portable-atomic/1.11.1/download -> portable-atomic-1.11.1.crate https://crates.io/api/v1/crates/portaudio-rs/0.3.2/download -> portaudio-rs-0.3.2.crate https://crates.io/api/v1/crates/portaudio-sys/0.1.1/download -> portaudio-sys-0.1.1.crate https://crates.io/api/v1/crates/potential_utf/0.1.4/download -> potential_utf-0.1.4.crate https://crates.io/api/v1/crates/powerfmt/0.2.0/download -> powerfmt-0.2.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.21/download -> ppv-lite86-0.2.21.crate https://crates.io/api/v1/crates/prettyplease/0.2.37/download -> prettyplease-0.2.37.crate https://crates.io/api/v1/crates/priority-queue/2.7.0/download -> priority-queue-2.7.0.crate https://crates.io/api/v1/crates/proc-macro-crate/3.4.0/download -> proc-macro-crate-3.4.0.crate https://crates.io/api/v1/crates/proc-macro2/1.0.103/download -> proc-macro2-1.0.103.crate https://crates.io/api/v1/crates/protobuf-codegen/3.7.2/download -> protobuf-codegen-3.7.2.crate https://crates.io/api/v1/crates/protobuf-json-mapping/3.7.2/download -> protobuf-json-mapping-3.7.2.crate https://crates.io/api/v1/crates/protobuf-parse/3.7.2/download -> protobuf-parse-3.7.2.crate https://crates.io/api/v1/crates/protobuf-support/3.7.2/download -> protobuf-support-3.7.2.crate https://crates.io/api/v1/crates/protobuf/3.7.2/download -> protobuf-3.7.2.crate https://crates.io/api/v1/crates/quick-xml/0.38.4/download -> quick-xml-0.38.4.crate https://crates.io/api/v1/crates/quote/1.0.42/download -> quote-1.0.42.crate https://crates.io/api/v1/crates/r-efi/5.3.0/download -> r-efi-5.3.0.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand/0.9.2/download -> rand-0.9.2.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.crate https://crates.io/api/v1/crates/rand_chacha/0.9.0/download -> rand_chacha-0.9.0.crate https://crates.io/api/v1/crates/rand_core/0.6.4/download -> rand_core-0.6.4.crate https://crates.io/api/v1/crates/rand_core/0.9.3/download -> rand_core-0.9.3.crate https://crates.io/api/v1/crates/rand_distr/0.5.1/download -> rand_distr-0.5.1.crate https://crates.io/api/v1/crates/redox_syscall/0.5.18/download -> redox_syscall-0.5.18.crate https://crates.io/api/v1/crates/redox_users/0.5.2/download -> redox_users-0.5.2.crate https://crates.io/api/v1/crates/regex-automata/0.4.13/download -> regex-automata-0.4.13.crate https://crates.io/api/v1/crates/regex-syntax/0.8.8/download -> regex-syntax-0.8.8.crate https://crates.io/api/v1/crates/regex/1.12.2/download -> regex-1.12.2.crate https://crates.io/api/v1/crates/reqwest/0.12.24/download -> reqwest-0.12.24.crate https://crates.io/api/v1/crates/rodio/0.21.1/download -> rodio-0.21.1.crate https://crates.io/api/v1/crates/rsa/0.9.9/download -> rsa-0.9.9.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.26/download -> rustc-demangle-0.1.26.crate https://crates.io/api/v1/crates/rustc-hash/2.1.1/download -> rustc-hash-2.1.1.crate https://crates.io/api/v1/crates/rustix/0.38.44/download -> rustix-0.38.44.crate https://crates.io/api/v1/crates/rustix/1.1.2/download -> rustix-1.1.2.crate https://crates.io/api/v1/crates/rustls-pki-types/1.13.0/download -> rustls-pki-types-1.13.0.crate https://crates.io/api/v1/crates/rustversion/1.0.22/download -> rustversion-1.0.22.crate https://crates.io/api/v1/crates/ryu/1.0.20/download -> ryu-1.0.20.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/schannel/0.1.28/download -> schannel-0.1.28.crate https://crates.io/api/v1/crates/scopeguard/1.2.0/download -> scopeguard-1.2.0.crate https://crates.io/api/v1/crates/security-framework-sys/2.15.0/download -> security-framework-sys-2.15.0.crate https://crates.io/api/v1/crates/security-framework/2.11.1/download -> security-framework-2.11.1.crate https://crates.io/api/v1/crates/serde/1.0.228/download -> serde-1.0.228.crate https://crates.io/api/v1/crates/serde_core/1.0.228/download -> serde_core-1.0.228.crate https://crates.io/api/v1/crates/serde_derive/1.0.228/download -> serde_derive-1.0.228.crate https://crates.io/api/v1/crates/serde_ignored/0.1.14/download -> serde_ignored-0.1.14.crate https://crates.io/api/v1/crates/serde_json/1.0.145/download -> serde_json-1.0.145.crate https://crates.io/api/v1/crates/serde_path_to_error/0.1.20/download -> serde_path_to_error-0.1.20.crate https://crates.io/api/v1/crates/serde_repr/0.1.20/download -> serde_repr-0.1.20.crate https://crates.io/api/v1/crates/serde_spanned/1.0.3/download -> serde_spanned-1.0.3.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download -> serde_urlencoded-0.7.1.crate https://crates.io/api/v1/crates/sha-1/0.10.1/download -> sha-1-0.10.1.crate https://crates.io/api/v1/crates/sha1/0.10.6/download -> sha1-0.10.6.crate https://crates.io/api/v1/crates/sha2/0.10.9/download -> sha2-0.10.9.crate https://crates.io/api/v1/crates/shannon/0.2.0/download -> shannon-0.2.0.crate https://crates.io/api/v1/crates/sharded-slab/0.1.7/download -> sharded-slab-0.1.7.crate https://crates.io/api/v1/crates/shell-words/1.1.0/download -> shell-words-1.1.0.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.6/download -> signal-hook-registry-1.4.6.crate https://crates.io/api/v1/crates/signature/2.2.0/download -> signature-2.2.0.crate https://crates.io/api/v1/crates/simd-adler32/0.3.7/download -> simd-adler32-0.3.7.crate https://crates.io/api/v1/crates/slab/0.4.11/download -> slab-0.4.11.crate https://crates.io/api/v1/crates/smallvec/1.15.1/download -> smallvec-1.15.1.crate https://crates.io/api/v1/crates/socket2/0.6.1/download -> socket2-0.6.1.crate https://crates.io/api/v1/crates/spin/0.9.8/download -> spin-0.9.8.crate https://crates.io/api/v1/crates/spinning_top/0.3.0/download -> spinning_top-0.3.0.crate https://crates.io/api/v1/crates/spki/0.7.3/download -> spki-0.7.3.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.1/download -> stable_deref_trait-1.2.1.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/subtle/2.6.1/download -> subtle-2.6.1.crate https://crates.io/api/v1/crates/symphonia-bundle-flac/0.5.5/download -> symphonia-bundle-flac-0.5.5.crate https://crates.io/api/v1/crates/symphonia-bundle-mp3/0.5.5/download -> symphonia-bundle-mp3-0.5.5.crate https://crates.io/api/v1/crates/symphonia-codec-vorbis/0.5.5/download -> symphonia-codec-vorbis-0.5.5.crate https://crates.io/api/v1/crates/symphonia-core/0.5.5/download -> symphonia-core-0.5.5.crate https://crates.io/api/v1/crates/symphonia-format-ogg/0.5.5/download -> symphonia-format-ogg-0.5.5.crate https://crates.io/api/v1/crates/symphonia-metadata/0.5.5/download -> symphonia-metadata-0.5.5.crate https://crates.io/api/v1/crates/symphonia-utils-xiph/0.5.5/download -> symphonia-utils-xiph-0.5.5.crate https://crates.io/api/v1/crates/symphonia/0.5.5/download -> symphonia-0.5.5.crate https://crates.io/api/v1/crates/syn/2.0.110/download -> syn-2.0.110.crate https://crates.io/api/v1/crates/sync_wrapper/1.0.2/download -> sync_wrapper-1.0.2.crate https://crates.io/api/v1/crates/synstructure/0.13.2/download -> synstructure-0.13.2.crate https://crates.io/api/v1/crates/sysinfo/0.36.1/download -> sysinfo-0.36.1.crate https://crates.io/api/v1/crates/syslog/7.0.0/download -> syslog-7.0.0.crate https://crates.io/api/v1/crates/system-configuration-sys/0.6.0/download -> system-configuration-sys-0.6.0.crate https://crates.io/api/v1/crates/system-configuration/0.6.1/download -> system-configuration-0.6.1.crate https://crates.io/api/v1/crates/tempfile/3.23.0/download -> tempfile-3.23.0.crate https://crates.io/api/v1/crates/thiserror-impl/1.0.69/download -> thiserror-impl-1.0.69.crate https://crates.io/api/v1/crates/thiserror-impl/2.0.17/download -> thiserror-impl-2.0.17.crate https://crates.io/api/v1/crates/thiserror/1.0.69/download -> thiserror-1.0.69.crate https://crates.io/api/v1/crates/thiserror/2.0.17/download -> thiserror-2.0.17.crate https://crates.io/api/v1/crates/thread_local/1.1.9/download -> thread_local-1.1.9.crate https://crates.io/api/v1/crates/time-core/0.1.6/download -> time-core-0.1.6.crate https://crates.io/api/v1/crates/time-macros/0.2.24/download -> time-macros-0.2.24.crate https://crates.io/api/v1/crates/time/0.3.44/download -> time-0.3.44.crate https://crates.io/api/v1/crates/tinystr/0.8.2/download -> tinystr-0.8.2.crate https://crates.io/api/v1/crates/tokio-macros/2.6.0/download -> tokio-macros-2.6.0.crate https://crates.io/api/v1/crates/tokio-native-tls/0.3.1/download -> tokio-native-tls-0.3.1.crate https://crates.io/api/v1/crates/tokio-stream/0.1.17/download -> tokio-stream-0.1.17.crate https://crates.io/api/v1/crates/tokio-tungstenite/0.28.0/download -> tokio-tungstenite-0.28.0.crate https://crates.io/api/v1/crates/tokio-util/0.7.17/download -> tokio-util-0.7.17.crate https://crates.io/api/v1/crates/tokio/1.48.0/download -> tokio-1.48.0.crate https://crates.io/api/v1/crates/toml/0.9.8/download -> toml-0.9.8.crate https://crates.io/api/v1/crates/toml_datetime/0.7.3/download -> toml_datetime-0.7.3.crate https://crates.io/api/v1/crates/toml_edit/0.23.7/download -> toml_edit-0.23.7.crate https://crates.io/api/v1/crates/toml_parser/1.0.4/download -> toml_parser-1.0.4.crate https://crates.io/api/v1/crates/toml_writer/1.0.4/download -> toml_writer-1.0.4.crate https://crates.io/api/v1/crates/tower-http/0.6.6/download -> tower-http-0.6.6.crate https://crates.io/api/v1/crates/tower-layer/0.3.3/download -> tower-layer-0.3.3.crate https://crates.io/api/v1/crates/tower-service/0.3.3/download -> tower-service-0.3.3.crate https://crates.io/api/v1/crates/tower/0.5.2/download -> tower-0.5.2.crate https://crates.io/api/v1/crates/tracing-core/0.1.34/download -> tracing-core-0.1.34.crate https://crates.io/api/v1/crates/tracing-error/0.2.1/download -> tracing-error-0.2.1.crate https://crates.io/api/v1/crates/tracing-subscriber/0.3.20/download -> tracing-subscriber-0.3.20.crate https://crates.io/api/v1/crates/tracing/0.1.41/download -> tracing-0.1.41.crate https://crates.io/api/v1/crates/try-lock/0.2.5/download -> try-lock-0.2.5.crate https://crates.io/api/v1/crates/tungstenite/0.28.0/download -> tungstenite-0.28.0.crate https://crates.io/api/v1/crates/typenum/1.19.0/download -> typenum-1.19.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.22/download -> unicode-ident-1.0.22.crate https://crates.io/api/v1/crates/untrusted/0.7.1/download -> untrusted-0.7.1.crate https://crates.io/api/v1/crates/url/2.5.7/download -> url-2.5.7.crate https://crates.io/api/v1/crates/utf-8/0.7.6/download -> utf-8-0.7.6.crate https://crates.io/api/v1/crates/utf8_iter/1.0.4/download -> utf8_iter-1.0.4.crate https://crates.io/api/v1/crates/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/uuid/1.18.1/download -> uuid-1.18.1.crate https://crates.io/api/v1/crates/valuable/0.1.1/download -> valuable-0.1.1.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate https://crates.io/api/v1/crates/vergen-gitcl/1.0.8/download -> vergen-gitcl-1.0.8.crate https://crates.io/api/v1/crates/vergen-lib/0.1.6/download -> vergen-lib-0.1.6.crate https://crates.io/api/v1/crates/vergen/9.0.6/download -> vergen-9.0.6.crate https://crates.io/api/v1/crates/version_check/0.9.5/download -> version_check-0.9.5.crate https://crates.io/api/v1/crates/walkdir/2.5.0/download -> walkdir-2.5.0.crate https://crates.io/api/v1/crates/want/0.3.1/download -> want-0.3.1.crate https://crates.io/api/v1/crates/wasi/0.11.1+wasi-snapshot-preview1/download -> wasi-0.11.1+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasip2/1.0.1+wasi-0.2.4/download -> wasip2-1.0.1+wasi-0.2.4.crate https://crates.io/api/v1/crates/wasite/0.1.0/download -> wasite-0.1.0.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.55/download -> wasm-bindgen-futures-0.4.55.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.105/download -> wasm-bindgen-macro-support-0.2.105.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.105/download -> wasm-bindgen-macro-0.2.105.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.105/download -> wasm-bindgen-shared-0.2.105.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.105/download -> wasm-bindgen-0.2.105.crate https://crates.io/api/v1/crates/web-sys/0.3.82/download -> web-sys-0.3.82.crate https://crates.io/api/v1/crates/web-time/1.1.0/download -> web-time-1.1.0.crate https://crates.io/api/v1/crates/which/4.4.2/download -> which-4.4.2.crate https://crates.io/api/v1/crates/whoami/1.6.1/download -> whoami-1.6.1.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.11/download -> winapi-util-0.1.11.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/windows-collections/0.2.0/download -> windows-collections-0.2.0.crate https://crates.io/api/v1/crates/windows-core/0.54.0/download -> windows-core-0.54.0.crate https://crates.io/api/v1/crates/windows-core/0.61.2/download -> windows-core-0.61.2.crate https://crates.io/api/v1/crates/windows-core/0.62.2/download -> windows-core-0.62.2.crate https://crates.io/api/v1/crates/windows-future/0.2.1/download -> windows-future-0.2.1.crate https://crates.io/api/v1/crates/windows-implement/0.60.2/download -> windows-implement-0.60.2.crate https://crates.io/api/v1/crates/windows-interface/0.59.3/download -> windows-interface-0.59.3.crate https://crates.io/api/v1/crates/windows-link/0.1.3/download -> windows-link-0.1.3.crate https://crates.io/api/v1/crates/windows-link/0.2.1/download -> windows-link-0.2.1.crate https://crates.io/api/v1/crates/windows-numerics/0.2.0/download -> windows-numerics-0.2.0.crate https://crates.io/api/v1/crates/windows-registry/0.6.1/download -> windows-registry-0.6.1.crate https://crates.io/api/v1/crates/windows-result/0.1.2/download -> windows-result-0.1.2.crate https://crates.io/api/v1/crates/windows-result/0.3.4/download -> windows-result-0.3.4.crate https://crates.io/api/v1/crates/windows-result/0.4.1/download -> windows-result-0.4.1.crate https://crates.io/api/v1/crates/windows-strings/0.4.2/download -> windows-strings-0.4.2.crate https://crates.io/api/v1/crates/windows-strings/0.5.1/download -> windows-strings-0.5.1.crate https://crates.io/api/v1/crates/windows-sys/0.45.0/download -> windows-sys-0.45.0.crate https://crates.io/api/v1/crates/windows-sys/0.59.0/download -> windows-sys-0.59.0.crate https://crates.io/api/v1/crates/windows-sys/0.60.2/download -> windows-sys-0.60.2.crate https://crates.io/api/v1/crates/windows-sys/0.61.2/download -> windows-sys-0.61.2.crate https://crates.io/api/v1/crates/windows-targets/0.42.2/download -> windows-targets-0.42.2.crate https://crates.io/api/v1/crates/windows-targets/0.52.6/download -> windows-targets-0.52.6.crate https://crates.io/api/v1/crates/windows-targets/0.53.5/download -> windows-targets-0.53.5.crate https://crates.io/api/v1/crates/windows-threading/0.1.0/download -> windows-threading-0.1.0.crate https://crates.io/api/v1/crates/windows/0.54.0/download -> windows-0.54.0.crate https://crates.io/api/v1/crates/windows/0.61.3/download -> windows-0.61.3.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.42.2/download -> windows_aarch64_gnullvm-0.42.2.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.6/download -> windows_aarch64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.53.1/download -> windows_aarch64_gnullvm-0.53.1.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.2/download -> windows_aarch64_msvc-0.42.2.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.6/download -> windows_aarch64_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.53.1/download -> windows_aarch64_msvc-0.53.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.42.2/download -> windows_i686_gnu-0.42.2.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.6/download -> windows_i686_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.53.1/download -> windows_i686_gnu-0.53.1.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.6/download -> windows_i686_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.53.1/download -> windows_i686_gnullvm-0.53.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.42.2/download -> windows_i686_msvc-0.42.2.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.6/download -> windows_i686_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.53.1/download -> windows_i686_msvc-0.53.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.2/download -> windows_x86_64_gnu-0.42.2.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.6/download -> windows_x86_64_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.53.1/download -> windows_x86_64_gnu-0.53.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.2/download -> windows_x86_64_gnullvm-0.42.2.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.6/download -> windows_x86_64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.53.1/download -> windows_x86_64_gnullvm-0.53.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.2/download -> windows_x86_64_msvc-0.42.2.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.6/download -> windows_x86_64_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.53.1/download -> windows_x86_64_msvc-0.53.1.crate https://crates.io/api/v1/crates/winnow/0.7.13/download -> winnow-0.7.13.crate https://crates.io/api/v1/crates/wit-bindgen/0.46.0/download -> wit-bindgen-0.46.0.crate https://crates.io/api/v1/crates/writeable/0.6.2/download -> writeable-0.6.2.crate https://crates.io/api/v1/crates/yoke-derive/0.8.1/download -> yoke-derive-0.8.1.crate https://crates.io/api/v1/crates/yoke/0.8.1/download -> yoke-0.8.1.crate https://crates.io/api/v1/crates/zerocopy-derive/0.8.27/download -> zerocopy-derive-0.8.27.crate https://crates.io/api/v1/crates/zerocopy/0.8.27/download -> zerocopy-0.8.27.crate https://crates.io/api/v1/crates/zerofrom-derive/0.1.6/download -> zerofrom-derive-0.1.6.crate https://crates.io/api/v1/crates/zerofrom/0.1.6/download -> zerofrom-0.1.6.crate https://crates.io/api/v1/crates/zeroize/1.8.2/download -> zeroize-1.8.2.crate https://crates.io/api/v1/crates/zerotrie/0.2.3/download -> zerotrie-0.2.3.crate https://crates.io/api/v1/crates/zerovec-derive/0.11.2/download -> zerovec-derive-0.11.2.crate https://crates.io/api/v1/crates/zerovec/0.11.5/download -> zerovec-0.11.5.crate +_eclasses_=cargo a1af74aa9e34cd73aeac642cd0dd54d8 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db +_md5_=2b66490fd1fb2338fe3514fa080095ef diff --git a/metadata/md5-cache/media-video/obs-studio-9999 b/metadata/md5-cache/media-video/obs-studio-9999 index d89882c06c69..78ba6f00c50c 100644 --- a/metadata/md5-cache/media-video/obs-studio-9999 +++ b/metadata/md5-cache/media-video/obs-studio-9999 @@ -14,4 +14,4 @@ REQUIRED_USE=browser? ( || ( alsa pulseaudio ) ) lua? ( ^^ ( lua_single_target_l SLOT=0 SRC_URI=browser? ( amd64? ( https://cdn-fastly.obsproject.com/downloads/cef_binary_6533_linux_x86_64_v6.tar.xz ) arm64? ( https://cdn-fastly.obsproject.com/downloads/cef_binary_6533_linux_aarch64_v6.tar.xz ) ) _eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 git-r3 875eb471682d3e1f18da124be97dcc81 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=f4994ad1b50e8cf32d950306b4df5a93 +_md5_=ce4504418b4b0bec2e7a55a6caf4e2dc diff --git a/metadata/md5-cache/net-im/discord-0.0.116-r1 b/metadata/md5-cache/net-im/discord-0.0.116-r1 index 40c1e6ff5ff1..4b340987e425 100644 --- a/metadata/md5-cache/net-im/discord-0.0.116-r1 +++ b/metadata/md5-cache/net-im/discord-0.0.116-r1 @@ -5,7 +5,7 @@ HOMEPAGE=https://discord.com/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=chromium-2 desktop linux-info optfeature python-single-r1 unpacker xdg IUSE=appindicator +seccomp wayland +l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=all-rights-reserved RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus sys-apps/util-linux sys-libs/glibc x11-libs/cairo x11-libs/libdrm x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango appindicator? ( dev-libs/libayatana-appindicator ) REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=bindist mirror strip test SLOT=0 SRC_URI=https://dl.discordapp.net/apps/linux/0.0.116/discord-0.0.116.tar.gz https://github.com/flathub/com.discordapp.Discord/raw/2f26748a667045d26bc19841f1a731b4be7a7514/disable-breaking-updates.py -> discord-disable-breaking-updates-2f26748a667045d26bc19841f1a731b4be7a7514.py _eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 7b6f6e9d65093966fbc8475399c5dd4e linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=2213e6f73dec04d82b28730a21521538 +_md5_=95280a2022d07e5462960e42f1fc43d9 diff --git a/metadata/md5-cache/net-im/discord-0.0.117-r1 b/metadata/md5-cache/net-im/discord-0.0.117-r1 index f07862f977f1..e2c733ac3982 100644 --- a/metadata/md5-cache/net-im/discord-0.0.117-r1 +++ b/metadata/md5-cache/net-im/discord-0.0.117-r1 @@ -5,7 +5,7 @@ HOMEPAGE=https://discord.com/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=chromium-2 desktop linux-info optfeature python-single-r1 unpacker xdg IUSE=appindicator +seccomp wayland +l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=all-rights-reserved RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus sys-apps/util-linux sys-libs/glibc x11-libs/cairo x11-libs/libdrm x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango appindicator? ( dev-libs/libayatana-appindicator ) REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=bindist mirror strip test SLOT=0 SRC_URI=https://dl.discordapp.net/apps/linux/0.0.117/discord-0.0.117.tar.gz https://github.com/flathub/com.discordapp.Discord/raw/2f26748a667045d26bc19841f1a731b4be7a7514/disable-breaking-updates.py -> discord-disable-breaking-updates-2f26748a667045d26bc19841f1a731b4be7a7514.py _eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 7b6f6e9d65093966fbc8475399c5dd4e linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=2213e6f73dec04d82b28730a21521538 +_md5_=95280a2022d07e5462960e42f1fc43d9 diff --git a/metadata/md5-cache/net-im/discord-0.0.118 b/metadata/md5-cache/net-im/discord-0.0.118 deleted file mode 100644 index d56e684bd319..000000000000 --- a/metadata/md5-cache/net-im/discord-0.0.118 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm preinst prepare setup unpack -DESCRIPTION=All-in-one voice and text chat for gamers -EAPI=8 -HOMEPAGE=https://discord.com/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=chromium-2 desktop linux-info optfeature unpacker xdg -IUSE=appindicator +seccomp wayland +l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=amd64 -LICENSE=all-rights-reserved -RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus sys-apps/util-linux sys-libs/glibc x11-libs/cairo x11-libs/libdrm x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango appindicator? ( dev-libs/libayatana-appindicator ) -RESTRICT=bindist mirror strip test -SLOT=0 -SRC_URI=https://dl.discordapp.net/apps/linux/0.0.118/discord-0.0.118.tar.gz -_eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 7b6f6e9d65093966fbc8475399c5dd4e linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=d7ee732a356fa7d9589ce0a2e2acf578 diff --git a/metadata/md5-cache/net-im/discord-0.0.118-r1 b/metadata/md5-cache/net-im/discord-0.0.118-r1 index ee5b22447cb0..325ebbd22f2c 100644 --- a/metadata/md5-cache/net-im/discord-0.0.118-r1 +++ b/metadata/md5-cache/net-im/discord-0.0.118-r1 @@ -5,7 +5,7 @@ HOMEPAGE=https://discord.com/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=chromium-2 desktop linux-info optfeature python-single-r1 unpacker xdg IUSE=appindicator +seccomp wayland +l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=all-rights-reserved RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus sys-apps/util-linux sys-libs/glibc x11-libs/cairo x11-libs/libdrm x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango appindicator? ( dev-libs/libayatana-appindicator ) REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=bindist mirror strip test SLOT=0 SRC_URI=https://dl.discordapp.net/apps/linux/0.0.118/discord-0.0.118.tar.gz https://github.com/flathub/com.discordapp.Discord/raw/2f26748a667045d26bc19841f1a731b4be7a7514/disable-breaking-updates.py -> discord-disable-breaking-updates-2f26748a667045d26bc19841f1a731b4be7a7514.py _eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 7b6f6e9d65093966fbc8475399c5dd4e linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=2213e6f73dec04d82b28730a21521538 +_md5_=95280a2022d07e5462960e42f1fc43d9 diff --git a/metadata/md5-cache/net-im/discord-0.0.119-r1 b/metadata/md5-cache/net-im/discord-0.0.119-r1 new file mode 100644 index 000000000000..a61995b2bf07 --- /dev/null +++ b/metadata/md5-cache/net-im/discord-0.0.119-r1 @@ -0,0 +1,16 @@ +DEFINED_PHASES=configure install postinst postrm preinst prepare setup unpack +DESCRIPTION=All-in-one voice and text chat for gamers +EAPI=8 +HOMEPAGE=https://discord.com/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=chromium-2 desktop linux-info optfeature python-single-r1 unpacker xdg +IUSE=appindicator +seccomp wayland +l10n_af +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 +KEYWORDS=amd64 +LICENSE=all-rights-reserved +RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus sys-apps/util-linux sys-libs/glibc x11-libs/cairo x11-libs/libdrm x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb x11-libs/libxkbcommon x11-libs/libxshmfence x11-libs/pango appindicator? ( dev-libs/libayatana-appindicator ) +REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) +RESTRICT=bindist mirror strip test +SLOT=0 +SRC_URI=https://dl.discordapp.net/apps/linux/0.0.119/discord-0.0.119.tar.gz https://github.com/flathub/com.discordapp.Discord/raw/2f26748a667045d26bc19841f1a731b4be7a7514/disable-breaking-updates.py -> discord-disable-breaking-updates-2f26748a667045d26bc19841f1a731b4be7a7514.py +_eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 7b6f6e9d65093966fbc8475399c5dd4e linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=95280a2022d07e5462960e42f1fc43d9 diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.3 b/metadata/md5-cache/net-im/element-desktop-1.12.3 deleted file mode 100644 index 50bbf4de5717..000000000000 --- a/metadata/md5-cache/net-im/element-desktop-1.12.3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=sys-apps/yarn || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) -DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack -DEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) -DESCRIPTION=A glossy Matrix collaboration client for desktop -EAPI=8 -HOMEPAGE=https://element.io -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=unpacker rust xdg -IUSE=+emoji -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) -RESTRICT=network-sandbox -SLOT=0 -SRC_URI=https://github.com/element-hq/element-desktop/archive/v1.12.3.tar.gz -> element-desktop-1.12.3.tar.gz https://github.com/element-hq/element-web/archive/v1.12.3.tar.gz -> element-web-1.12.3.tar.gz -_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=c716a4b82af332815b8d8d72c8fad28d diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.6 b/metadata/md5-cache/net-im/element-desktop-1.12.6 index e29b404f9bf1..62a4a5b0d2ef 100644 --- a/metadata/md5-cache/net-im/element-desktop-1.12.6 +++ b/metadata/md5-cache/net-im/element-desktop-1.12.6 @@ -1,17 +1,17 @@ -BDEPEND=sys-apps/yarn >=net-libs/nodejs-22.18.0 || ( >=dev-lang/rust-bin-1.74.1:* >=dev-lang/rust-1.74.1:* ) -DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack -DEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) +BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs sys-apps/yarn +DEFINED_PHASES=compile install postinst postrm setup unpack +DEPEND=~net-im/element-web-1.12.6 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-39? ( dev-util/electron:39 ) !electron-36? ( !electron-37? ( !electron-39? ( dev-util/electron:38 ) ) ) DESCRIPTION=A glossy Matrix collaboration client for desktop EAPI=8 -HOMEPAGE=https://element.io -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=unpacker rust xdg -IUSE=+emoji keyring -KEYWORDS=~amd64 +HOMEPAGE=https://element.io/ +INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils +IUSE=electron-36 electron-37 electron-39 native-modules build-online +KEYWORDS=amd64 ~arm64 ~ppc64 ~x86 LICENSE=Apache-2.0 -RDEPEND=!net-im/element-desktop-bin >=app-accessibility/at-spi2-core-2.46.0 app-crypt/libsecret dev-db/sqlcipher dev-libs/expat dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa net-libs/nodejs net-print/cups x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3 x11-libs/libdrm x11-libs/libxcb x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libXScrnSaver x11-libs/pango emoji? ( media-fonts/noto-emoji ) -RESTRICT=network-sandbox +RDEPEND=~net-im/element-web-1.12.6 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-39? ( dev-util/electron:39 ) !electron-36? ( !electron-37? ( !electron-39? ( dev-util/electron:38 ) ) ) +REQUIRED_USE=native-modules? ( build-online ) +RESTRICT=mirror build-online? ( network-sandbox ) SLOT=0 -SRC_URI=https://github.com/element-hq/element-desktop/archive/v1.12.6.tar.gz -> element-desktop-1.12.6.tar.gz https://github.com/element-hq/element-web/archive/v1.12.6.tar.gz -> element-web-1.12.6.tar.gz -_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f rust 20da14430886f3de143eb101684fcf62 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=97e2bce12cbbb67cd0d4c8e97b9bac55 +SRC_URI=!build-online? ( https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz -> @babel-compat-data-7.28.5.tgz https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz -> @babel-core-7.28.5.tgz https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz -> @babel-generator-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz -> @babel-helper-compilation-targets-7.27.2.tgz https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz -> @babel-helper-module-imports-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz -> @babel-helper-module-transforms-7.28.3.tgz https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz -> @babel-helper-plugin-utils-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz -> @babel-helper-replace-supers-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz -> @babel-helper-wrap-function-7.28.3.tgz https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz -> @babel-helpers-7.28.4.tgz https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.4.tgz -> @babel-parser-7.28.4.tgz https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz -> @babel-parser-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz -> @babel-plugin-syntax-import-assertions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz -> @babel-plugin-syntax-import-attributes-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz -> @babel-plugin-transform-async-generator-functions-7.28.0.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz -> @babel-plugin-transform-async-to-generator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz -> @babel-plugin-transform-block-scoping-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz -> @babel-plugin-transform-class-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz -> @babel-plugin-transform-class-static-block-7.28.3.tgz https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz -> @babel-plugin-transform-classes-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz -> @babel-plugin-transform-computed-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz -> @babel-plugin-transform-dotall-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.0.tgz https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz -> @babel-plugin-transform-json-strings-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz -> @babel-plugin-transform-numeric-separator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz -> @babel-plugin-transform-object-rest-spread-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz -> @babel-plugin-transform-optional-catch-binding-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz -> @babel-plugin-transform-optional-chaining-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz -> @babel-plugin-transform-private-methods-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz -> @babel-plugin-transform-private-property-in-object-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz -> @babel-plugin-transform-regenerator-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz -> @babel-plugin-transform-regexp-modifiers-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz -> @babel-plugin-transform-spread-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-property-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.5.tgz -> @babel-preset-env-7.28.5.tgz https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz -> @babel-template-7.27.2.tgz https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.4.tgz -> @babel-traverse-7.28.4.tgz https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz -> @babel-traverse-7.28.5.tgz https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz -> @babel-types-7.28.5.tgz https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.1.tgz -> @electron-rebuild-4.0.1.tgz https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz https://registry.yarnpkg.com/@emnapi/core/-/core-1.7.0.tgz -> @emnapi-core-1.7.0.tgz https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.7.0.tgz -> @emnapi-runtime-1.7.0.tgz https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz -> @esbuild-aix-ppc64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz -> @esbuild-android-arm-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz -> @esbuild-android-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz -> @esbuild-android-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz -> @esbuild-darwin-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz -> @esbuild-darwin-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz -> @esbuild-freebsd-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz -> @esbuild-freebsd-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz -> @esbuild-linux-arm-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz -> @esbuild-linux-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz -> @esbuild-linux-ia32-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz -> @esbuild-linux-loong64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz -> @esbuild-linux-mips64el-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz -> @esbuild-linux-ppc64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz -> @esbuild-linux-riscv64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz -> @esbuild-linux-s390x-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz -> @esbuild-linux-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz -> @esbuild-netbsd-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz -> @esbuild-netbsd-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz -> @esbuild-openbsd-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz -> @esbuild-openbsd-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz -> @esbuild-openharmony-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz -> @esbuild-sunos-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz -> @esbuild-win32-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz -> @esbuild-win32-ia32-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz -> @esbuild-win32-x64-0.25.10.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz -> @eslint-community-regexpp-4.12.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz -> @napi-rs-wasm-runtime-1.0.7.tgz https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.0.tgz -> @npmcli-git-7.0.0.tgz https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-3.0.0.tgz -> @npmcli-installed-package-contents-3.0.0.tgz https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz -> @npmcli-node-gyp-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.1.tgz -> @npmcli-package-json-7.0.1.tgz https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-8.0.3.tgz -> @npmcli-promise-spawn-8.0.3.tgz https://registry.yarnpkg.com/@npmcli/redact/-/redact-3.2.2.tgz -> @npmcli-redact-3.2.2.tgz https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.0.tgz -> @npmcli-run-script-10.0.0.tgz https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.204.0.tgz -> @opentelemetry-api-logs-0.204.0.tgz https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.57.2.tgz -> @opentelemetry-api-logs-0.57.2.tgz https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.2.0.tgz -> @opentelemetry-context-async-hooks-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.1.0.tgz -> @opentelemetry-core-2.1.0.tgz https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.51.0.tgz -> @opentelemetry-instrumentation-amqplib-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.48.0.tgz -> @opentelemetry-instrumentation-connect-0.48.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.22.0.tgz -> @opentelemetry-instrumentation-dataloader-0.22.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.53.0.tgz -> @opentelemetry-instrumentation-express-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.24.0.tgz -> @opentelemetry-instrumentation-fs-0.24.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.48.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.48.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.52.0.tgz -> @opentelemetry-instrumentation-graphql-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.51.0.tgz -> @opentelemetry-instrumentation-hapi-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.204.0.tgz -> @opentelemetry-instrumentation-http-0.204.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.52.0.tgz -> @opentelemetry-instrumentation-ioredis-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.14.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.14.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.49.0.tgz -> @opentelemetry-instrumentation-knex-0.49.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.52.0.tgz -> @opentelemetry-instrumentation-koa-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.49.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.49.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.57.0.tgz -> @opentelemetry-instrumentation-mongodb-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.51.0.tgz -> @opentelemetry-instrumentation-mongoose-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.50.0.tgz -> @opentelemetry-instrumentation-mysql-0.50.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.51.0.tgz -> @opentelemetry-instrumentation-mysql2-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.57.0.tgz -> @opentelemetry-instrumentation-pg-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.53.0.tgz -> @opentelemetry-instrumentation-redis-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.23.0.tgz -> @opentelemetry-instrumentation-tedious-0.23.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.15.0.tgz -> @opentelemetry-instrumentation-undici-0.15.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.204.0.tgz -> @opentelemetry-instrumentation-0.204.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.57.2.tgz -> @opentelemetry-instrumentation-0.57.2.tgz https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.2.0.tgz -> @opentelemetry-resources-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.2.0.tgz -> @opentelemetry-sdk-trace-base-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.37.0.tgz -> @opentelemetry-semantic-conventions-1.37.0.tgz https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.13.2.tgz -> @oxc-resolver-binding-android-arm-eabi-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.13.2.tgz -> @oxc-resolver-binding-android-arm64-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.13.2.tgz -> @oxc-resolver-binding-darwin-arm64-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.13.2.tgz -> @oxc-resolver-binding-darwin-x64-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.13.2.tgz -> @oxc-resolver-binding-freebsd-x64-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.13.2.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.13.2.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.13.2.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.13.2.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.13.2.tgz -> @oxc-resolver-binding-linux-x64-musl-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.13.2.tgz -> @oxc-resolver-binding-wasm32-wasi-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.13.2.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.13.2.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.13.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.13.2.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.13.2.tgz https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz https://registry.yarnpkg.com/@playwright/test/-/test-1.56.1.tgz -> @playwright-test-1.56.1.tgz https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.15.0.tgz -> @prisma-instrumentation-6.15.0.tgz https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.17.0.tgz -> @sentry-internal-browser-utils-10.17.0.tgz https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.17.0.tgz -> @sentry-internal-feedback-10.17.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.17.0.tgz -> @sentry-internal-replay-canvas-10.17.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.17.0.tgz -> @sentry-internal-replay-10.17.0.tgz https://registry.yarnpkg.com/@sentry/browser/-/browser-10.17.0.tgz -> @sentry-browser-10.17.0.tgz https://registry.yarnpkg.com/@sentry/core/-/core-10.17.0.tgz -> @sentry-core-10.17.0.tgz https://registry.yarnpkg.com/@sentry/electron/-/electron-7.2.0.tgz -> @sentry-electron-7.2.0.tgz https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.17.0.tgz -> @sentry-node-core-10.17.0.tgz https://registry.yarnpkg.com/@sentry/node/-/node-10.17.0.tgz -> @sentry-node-10.17.0.tgz https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.17.0.tgz -> @sentry-opentelemetry-10.17.0.tgz https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.5.0.tgz -> @stylistic-eslint-plugin-5.5.0.tgz https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.6.tgz -> @types-pg-pool-2.0.6.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.15.5.tgz -> @types-pg-8.15.5.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz https://registry.yarnpkg.com/@types/shimmer/-/shimmer-1.2.0.tgz -> @types-shimmer-1.2.0.tgz https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.4.tgz -> @typescript-eslint-eslint-plugin-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.46.4.tgz -> @typescript-eslint-parser-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.46.4.tgz -> @typescript-eslint-project-service-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.46.4.tgz -> @typescript-eslint-scope-manager-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.4.tgz -> @typescript-eslint-tsconfig-utils-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.46.4.tgz -> @typescript-eslint-type-utils-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.46.2.tgz -> @typescript-eslint-types-8.46.2.tgz https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.46.4.tgz -> @typescript-eslint-types-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.4.tgz -> @typescript-eslint-typescript-estree-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.46.4.tgz -> @typescript-eslint-utils-8.46.4.tgz https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.4.tgz -> @typescript-eslint-visitor-keys-8.46.4.tgz https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.1.1.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.1.0.tgz https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz https://registry.yarnpkg.com/async/-/async-3.2.6.tgz https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz https://registry.yarnpkg.com/atomically/-/atomically-2.0.3.tgz https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.0.tgz https://registry.yarnpkg.com/builder-util/-/builder-util-26.1.0.tgz https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz https://registry.yarnpkg.com/cacache/-/cacache-20.0.1.tgz https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.1.0.tgz https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.1.0.tgz https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.1.0.tgz https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.1.0.tgz https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.241.tgz https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz https://registry.yarnpkg.com/electron/-/electron-39.1.1.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.1.tgz https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz https://registry.yarnpkg.com/espree/-/espree-10.4.0.tgz https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz https://registry.yarnpkg.com/except/-/except-0.1.3.tgz https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.2.tgz https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.10.1.tgz https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.12.0.tgz https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz https://registry.yarnpkg.com/got/-/got-11.8.6.tgz https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.0.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-1.15.0.tgz https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz https://registry.yarnpkg.com/ini/-/ini-5.0.0.tgz https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz https://registry.yarnpkg.com/ip-address/-/ip-address-10.0.1.tgz https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-4.0.0.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz https://registry.yarnpkg.com/keytar-forked/-/keytar-forked-7.10.0.tgz https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz https://registry.yarnpkg.com/knip/-/knip-5.69.0.tgz https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.6.tgz https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.2.tgz https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.4.0.tgz https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-2.0.0.tgz https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz https://registry.yarnpkg.com/node-abi/-/node-abi-4.17.0.tgz https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-8.3.1.tgz https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.26.tgz https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-4.0.0.tgz https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-7.1.2.tgz https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.0.tgz https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.2.tgz https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.1.tgz https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.0.0.tgz https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz https://registry.yarnpkg.com/once/-/once-1.4.0.tgz https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz https://registry.yarnpkg.com/open/-/open-7.4.2.tgz https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.13.2.tgz https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz https://registry.yarnpkg.com/p-map/-/p-map-7.0.3.tgz https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz https://registry.yarnpkg.com/pacote/-/pacote-21.0.3.tgz https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.10.3.tgz https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.56.1.tgz https://registry.yarnpkg.com/playwright/-/playwright-1.56.1.tgz https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.3.tgz https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.1.tgz https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-7.5.2.tgz https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.0.tgz https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.4.2.tgz https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.2.tgz https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-1.2.5.tgz https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.4.tgz https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz https://registry.yarnpkg.com/tar/-/tar-7.5.2.tgz https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz https://registry.yarnpkg.com/tsx/-/tsx-4.20.6.tgz https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-6.0.2.tgz https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.4.tgz https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz https://registry.yarnpkg.com/which/-/which-2.0.2.tgz https://registry.yarnpkg.com/which/-/which-5.0.0.tgz https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz https://registry.yarnpkg.com/zod/-/zod-4.1.12.tgz ) https://github.com/vector-im/element-desktop/archive/v1.12.6.tar.gz -> element-desktop-1.12.6.tar.gz +_eclasses_=desktop 7b6f6e9d65093966fbc8475399c5dd4e flag-o-matic a7afe42e95fb46ce9691605acfb24672 multilib a199af442898963433d6f038a88cce9c multiprocessing 1e32df7deee68372153dca65f4a7c21f python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=c7984912b1eed76e2db1601427b0624b diff --git a/metadata/md5-cache/net-im/element-desktop-1.12.7 b/metadata/md5-cache/net-im/element-desktop-1.12.7 new file mode 100644 index 000000000000..f6ec03efee08 --- /dev/null +++ b/metadata/md5-cache/net-im/element-desktop-1.12.7 @@ -0,0 +1,17 @@ +BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs sys-apps/yarn +DEFINED_PHASES=compile install postinst postrm setup unpack +DEPEND=~net-im/element-web-1.12.7 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-39? ( dev-util/electron:39 ) !electron-36? ( !electron-37? ( !electron-39? ( dev-util/electron:38 ) ) ) +DESCRIPTION=A glossy Matrix collaboration client for desktop +EAPI=8 +HOMEPAGE=https://element.io/ +INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils +IUSE=electron-36 electron-37 electron-39 native-modules build-online +KEYWORDS=amd64 ~arm64 ~ppc64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=~net-im/element-web-1.12.7 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-39? ( dev-util/electron:39 ) !electron-36? ( !electron-37? ( !electron-39? ( dev-util/electron:38 ) ) ) +REQUIRED_USE=native-modules? ( build-online ) +RESTRICT=mirror build-online? ( network-sandbox ) +SLOT=0 +SRC_URI=!build-online? ( https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz https://registry.yarnpkg.com/@apm-js-collab/code-transformer/-/code-transformer-0.8.2.tgz -> @apm-js-collab-code-transformer-0.8.2.tgz https://registry.yarnpkg.com/@apm-js-collab/tracing-hooks/-/tracing-hooks-0.3.1.tgz -> @apm-js-collab-tracing-hooks-0.3.1.tgz https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz -> @babel-compat-data-7.28.5.tgz https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz -> @babel-core-7.28.5.tgz https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz -> @babel-generator-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz -> @babel-helper-compilation-targets-7.27.2.tgz https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz -> @babel-helper-module-imports-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz -> @babel-helper-module-transforms-7.28.3.tgz https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz -> @babel-helper-plugin-utils-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz -> @babel-helper-replace-supers-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz -> @babel-helper-wrap-function-7.28.3.tgz https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz -> @babel-helpers-7.28.4.tgz https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.4.tgz -> @babel-parser-7.28.4.tgz https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz -> @babel-parser-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz -> @babel-plugin-syntax-import-assertions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz -> @babel-plugin-syntax-import-attributes-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz -> @babel-plugin-transform-async-generator-functions-7.28.0.tgz https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz -> @babel-plugin-transform-async-to-generator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz -> @babel-plugin-transform-block-scoping-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz -> @babel-plugin-transform-class-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz -> @babel-plugin-transform-class-static-block-7.28.3.tgz https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz -> @babel-plugin-transform-classes-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz -> @babel-plugin-transform-computed-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz -> @babel-plugin-transform-dotall-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.0.tgz https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz -> @babel-plugin-transform-json-strings-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz -> @babel-plugin-transform-numeric-separator-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz -> @babel-plugin-transform-object-rest-spread-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz -> @babel-plugin-transform-optional-catch-binding-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz -> @babel-plugin-transform-optional-chaining-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz -> @babel-plugin-transform-private-methods-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz -> @babel-plugin-transform-private-property-in-object-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz -> @babel-plugin-transform-regenerator-7.28.4.tgz https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz -> @babel-plugin-transform-regexp-modifiers-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz -> @babel-plugin-transform-spread-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-property-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.5.tgz -> @babel-preset-env-7.28.5.tgz https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz -> @babel-template-7.27.2.tgz https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.4.tgz -> @babel-traverse-7.28.4.tgz https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz -> @babel-traverse-7.28.5.tgz https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz -> @babel-types-7.28.5.tgz https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.1.tgz -> @electron-rebuild-4.0.1.tgz https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz https://registry.yarnpkg.com/@emnapi/core/-/core-1.7.1.tgz -> @emnapi-core-1.7.1.tgz https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.7.1.tgz -> @emnapi-runtime-1.7.1.tgz https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz -> @esbuild-aix-ppc64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz -> @esbuild-android-arm-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz -> @esbuild-android-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz -> @esbuild-android-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz -> @esbuild-darwin-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz -> @esbuild-darwin-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz -> @esbuild-freebsd-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz -> @esbuild-freebsd-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz -> @esbuild-linux-arm-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz -> @esbuild-linux-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz -> @esbuild-linux-ia32-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz -> @esbuild-linux-loong64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz -> @esbuild-linux-mips64el-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz -> @esbuild-linux-ppc64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz -> @esbuild-linux-riscv64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz -> @esbuild-linux-s390x-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz -> @esbuild-linux-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz -> @esbuild-netbsd-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz -> @esbuild-netbsd-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz -> @esbuild-openbsd-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz -> @esbuild-openbsd-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz -> @esbuild-openharmony-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz -> @esbuild-sunos-x64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz -> @esbuild-win32-arm64-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz -> @esbuild-win32-ia32-0.25.10.tgz https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz -> @esbuild-win32-x64-0.25.10.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz -> @eslint-community-regexpp-4.12.1.tgz https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz -> @napi-rs-wasm-runtime-1.0.7.tgz https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/fs/-/fs-5.0.0.tgz -> @npmcli-fs-5.0.0.tgz https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.1.tgz -> @npmcli-git-7.0.1.tgz https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz -> @npmcli-installed-package-contents-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz -> @npmcli-node-gyp-5.0.0.tgz https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.4.tgz -> @npmcli-package-json-7.0.4.tgz https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz -> @npmcli-promise-spawn-9.0.1.tgz https://registry.yarnpkg.com/@npmcli/redact/-/redact-4.0.0.tgz -> @npmcli-redact-4.0.0.tgz https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.3.tgz -> @npmcli-run-script-10.0.3.tgz https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.204.0.tgz -> @opentelemetry-api-logs-0.204.0.tgz https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.57.2.tgz -> @opentelemetry-api-logs-0.57.2.tgz https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.2.0.tgz -> @opentelemetry-context-async-hooks-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.1.0.tgz -> @opentelemetry-core-2.1.0.tgz https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.51.0.tgz -> @opentelemetry-instrumentation-amqplib-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.48.0.tgz -> @opentelemetry-instrumentation-connect-0.48.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.22.0.tgz -> @opentelemetry-instrumentation-dataloader-0.22.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.53.0.tgz -> @opentelemetry-instrumentation-express-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.24.0.tgz -> @opentelemetry-instrumentation-fs-0.24.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.48.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.48.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.52.0.tgz -> @opentelemetry-instrumentation-graphql-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.51.0.tgz -> @opentelemetry-instrumentation-hapi-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.204.0.tgz -> @opentelemetry-instrumentation-http-0.204.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.52.0.tgz -> @opentelemetry-instrumentation-ioredis-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.14.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.14.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.49.0.tgz -> @opentelemetry-instrumentation-knex-0.49.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.52.0.tgz -> @opentelemetry-instrumentation-koa-0.52.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.49.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.49.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.57.0.tgz -> @opentelemetry-instrumentation-mongodb-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.51.0.tgz -> @opentelemetry-instrumentation-mongoose-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.50.0.tgz -> @opentelemetry-instrumentation-mysql-0.50.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.51.0.tgz -> @opentelemetry-instrumentation-mysql2-0.51.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.57.0.tgz -> @opentelemetry-instrumentation-pg-0.57.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.53.0.tgz -> @opentelemetry-instrumentation-redis-0.53.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.23.0.tgz -> @opentelemetry-instrumentation-tedious-0.23.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.15.0.tgz -> @opentelemetry-instrumentation-undici-0.15.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.204.0.tgz -> @opentelemetry-instrumentation-0.204.0.tgz https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.57.2.tgz -> @opentelemetry-instrumentation-0.57.2.tgz https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.2.0.tgz -> @opentelemetry-resources-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.2.0.tgz -> @opentelemetry-sdk-trace-base-2.2.0.tgz https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.38.0.tgz -> @opentelemetry-semantic-conventions-1.38.0.tgz https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.14.0.tgz -> @oxc-resolver-binding-android-arm-eabi-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.14.0.tgz -> @oxc-resolver-binding-android-arm64-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.14.0.tgz -> @oxc-resolver-binding-darwin-arm64-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.14.0.tgz -> @oxc-resolver-binding-darwin-x64-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.14.0.tgz -> @oxc-resolver-binding-freebsd-x64-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.14.0.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.14.0.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.14.0.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.14.0.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.14.0.tgz -> @oxc-resolver-binding-linux-x64-musl-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.14.0.tgz -> @oxc-resolver-binding-wasm32-wasi-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.14.0.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.14.0.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.14.0.tgz https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.14.0.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.14.0.tgz https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz https://registry.yarnpkg.com/@playwright/test/-/test-1.57.0.tgz -> @playwright-test-1.57.0.tgz https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.15.0.tgz -> @prisma-instrumentation-6.15.0.tgz https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.26.0.tgz -> @sentry-internal-browser-utils-10.26.0.tgz https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.26.0.tgz -> @sentry-internal-feedback-10.26.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.26.0.tgz -> @sentry-internal-replay-canvas-10.26.0.tgz https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.26.0.tgz -> @sentry-internal-replay-10.26.0.tgz https://registry.yarnpkg.com/@sentry/browser/-/browser-10.26.0.tgz -> @sentry-browser-10.26.0.tgz https://registry.yarnpkg.com/@sentry/core/-/core-10.26.0.tgz -> @sentry-core-10.26.0.tgz https://registry.yarnpkg.com/@sentry/electron/-/electron-7.3.0.tgz -> @sentry-electron-7.3.0.tgz https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.26.0.tgz -> @sentry-node-core-10.26.0.tgz https://registry.yarnpkg.com/@sentry/node/-/node-10.26.0.tgz -> @sentry-node-10.26.0.tgz https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.26.0.tgz -> @sentry-opentelemetry-10.26.0.tgz https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.6.1.tgz -> @stylistic-eslint-plugin-5.6.1.tgz https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.6.tgz -> @types-pg-pool-2.0.6.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.15.5.tgz -> @types-pg-8.15.5.tgz https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz https://registry.yarnpkg.com/@types/shimmer/-/shimmer-1.2.0.tgz -> @types-shimmer-1.2.0.tgz https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.0.tgz -> @typescript-eslint-eslint-plugin-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.48.0.tgz -> @typescript-eslint-parser-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.48.0.tgz -> @typescript-eslint-project-service-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.48.0.tgz -> @typescript-eslint-scope-manager-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.0.tgz -> @typescript-eslint-tsconfig-utils-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.48.0.tgz -> @typescript-eslint-type-utils-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.48.0.tgz -> @typescript-eslint-types-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.0.tgz -> @typescript-eslint-typescript-estree-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.48.0.tgz -> @typescript-eslint-utils-8.48.0.tgz https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.0.tgz -> @typescript-eslint-visitor-keys-8.48.0.tgz https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz https://registry.yarnpkg.com/abbrev/-/abbrev-4.0.0.tgz https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.2.0.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.2.0.tgz https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz https://registry.yarnpkg.com/async/-/async-3.2.6.tgz https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz https://registry.yarnpkg.com/atomically/-/atomically-2.0.3.tgz https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.0.tgz https://registry.yarnpkg.com/builder-util/-/builder-util-26.1.0.tgz https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz https://registry.yarnpkg.com/cacache/-/cacache-20.0.3.tgz https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.2.0.tgz https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.2.0.tgz https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.2.0.tgz https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.1.0.tgz https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.241.tgz https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz https://registry.yarnpkg.com/electron/-/electron-39.2.3.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.1.tgz https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz https://registry.yarnpkg.com/espree/-/espree-10.4.0.tgz https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz https://registry.yarnpkg.com/except/-/except-0.1.3.tgz https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.10.1.tgz https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.12.0.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz https://registry.yarnpkg.com/glob/-/glob-13.0.0.tgz https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz https://registry.yarnpkg.com/got/-/got-11.8.6.tgz https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.2.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-1.15.0.tgz https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz https://registry.yarnpkg.com/ini/-/ini-6.0.0.tgz https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz https://registry.yarnpkg.com/knip/-/knip-5.70.2.tgz https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.7.tgz https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.4.0.tgz https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-5.0.0.tgz https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz https://registry.yarnpkg.com/node-abi/-/node-abi-4.24.0.tgz https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz https://registry.yarnpkg.com/node-gyp/-/node-gyp-12.1.0.tgz https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.26.tgz https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz https://registry.yarnpkg.com/nopt/-/nopt-9.0.0.tgz https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-5.0.0.tgz https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-8.0.0.tgz https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.2.tgz https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.3.tgz https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz https://registry.yarnpkg.com/once/-/once-1.4.0.tgz https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz https://registry.yarnpkg.com/open/-/open-7.4.2.tgz https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.14.0.tgz https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz https://registry.yarnpkg.com/pacote/-/pacote-21.0.4.tgz https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.10.3.tgz https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.57.0.tgz https://registry.yarnpkg.com/playwright/-/playwright-1.57.0.tgz https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz https://registry.yarnpkg.com/prettier/-/prettier-3.7.0.tgz https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz https://registry.yarnpkg.com/proc-log/-/proc-log-6.0.0.tgz https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-7.5.2.tgz https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.2.tgz https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.5.2.tgz https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz https://registry.yarnpkg.com/ssri/-/ssri-13.0.0.tgz https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.3.tgz https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-1.2.5.tgz https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz https://registry.yarnpkg.com/tar/-/tar-7.5.2.tgz https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz https://registry.yarnpkg.com/tsx/-/tsx-4.20.6.tgz https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz https://registry.yarnpkg.com/unique-filename/-/unique-filename-5.0.0.tgz https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz https://registry.yarnpkg.com/unique-slug/-/unique-slug-6.0.0.tgz https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-7.0.0.tgz https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.4.tgz https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz https://registry.yarnpkg.com/which/-/which-2.0.2.tgz https://registry.yarnpkg.com/which/-/which-5.0.0.tgz https://registry.yarnpkg.com/which/-/which-6.0.0.tgz https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz https://registry.yarnpkg.com/zod/-/zod-4.1.13.tgz ) https://github.com/vector-im/element-desktop/archive/v1.12.7.tar.gz -> element-desktop-1.12.7.tar.gz +_eclasses_=desktop 7b6f6e9d65093966fbc8475399c5dd4e flag-o-matic a7afe42e95fb46ce9691605acfb24672 multilib a199af442898963433d6f038a88cce9c multiprocessing 1e32df7deee68372153dca65f4a7c21f python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=12e0c2c502f74b73b1c93cc05eac800b diff --git a/metadata/md5-cache/net-im/element-desktop-9999 b/metadata/md5-cache/net-im/element-desktop-9999 new file mode 100644 index 000000000000..e37343e718e3 --- /dev/null +++ b/metadata/md5-cache/net-im/element-desktop-9999 @@ -0,0 +1,16 @@ +BDEPEND=|| ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 dev-lang/python:3.10 ) || ( ( dev-lang/python:3.14 dev-python/setuptools[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/setuptools[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/setuptools[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/setuptools[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/setuptools[python_targets_python3_10(-)] ) ) native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) net-libs/nodejs sys-apps/yarn >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile install postinst postrm setup unpack +DEPEND=~net-im/element-web-9999 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-39? ( dev-util/electron:39 ) !electron-36? ( !electron-37? ( !electron-39? ( dev-util/electron:38 ) ) ) +DESCRIPTION=A glossy Matrix collaboration client for desktop +EAPI=8 +HOMEPAGE=https://element.io/ +INHERIT=desktop flag-o-matic multilib python-any-r1 xdg-utils git-r3 +IUSE=electron-36 electron-37 electron-39 native-modules +build-online +LICENSE=Apache-2.0 +PROPERTIES=live +RDEPEND=~net-im/element-web-9999 native-modules? ( dev-db/sqlcipher ) electron-36? ( dev-util/electron:36 ) electron-37? ( dev-util/electron:37 ) electron-39? ( dev-util/electron:39 ) !electron-36? ( !electron-37? ( !electron-39? ( dev-util/electron:38 ) ) ) +REQUIRED_USE=native-modules? ( build-online ) +RESTRICT=mirror build-online? ( network-sandbox ) +SLOT=0 +_eclasses_=desktop 7b6f6e9d65093966fbc8475399c5dd4e flag-o-matic a7afe42e95fb46ce9691605acfb24672 git-r3 875eb471682d3e1f18da124be97dcc81 multilib a199af442898963433d6f038a88cce9c multiprocessing 1e32df7deee68372153dca65f4a7c21f python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=b00f9004700bd7735dd4bd3f427b9fc7 diff --git a/metadata/md5-cache/net-im/synapse-1.140.0 b/metadata/md5-cache/net-im/synapse-1.140.0 deleted file mode 100644 index 4d116df57c00..000000000000 --- a/metadata/md5-cache/net-im/synapse-1.140.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=acct-user/synapse acct-group/synapse dev-python/setuptools-rust[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( acct-user/synapse acct-group/synapse dev-python/attrs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/bcrypt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/bleach[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/canonicaljson-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ijson[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/immutabledict[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jinja2-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonschema[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/matrix-common-1.3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/msgpack[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/netaddr[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/phonenumbers[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pillow-10.0.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?,webp] dev-python/prometheus-client[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1-modules[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pymacaroons[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyopenssl[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/python-multipart-0.0.12-r100[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/service-identity[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/signedjson[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/sortedcontainers[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/treq[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/twisted[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/typing-extensions[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/unpaddedbase64[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] postgres? ( dev-python/psycopg:2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) selinux? ( sec-policy/selinux-matrixd ) systemd? ( dev-python/python-systemd[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) dev-python/hiredis[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/idna[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/parameterized[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/txredisapi[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] postgres? ( dev-db/postgresql[server] ) ) || ( >=dev-lang/rust-bin-1.82.0:* >=dev-lang/rust-1.82.0:* ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/poetry-core-2.1.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) -DESCRIPTION=Reference implementation of Matrix homeserver -EAPI=8 -HOMEPAGE=https://matrix.org/ https://github.com/element-hq/synapse -INHERIT=cargo distutils-r1 multiprocessing optfeature systemd -IUSE=postgres selinux systemd test debug python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug -KEYWORDS=amd64 ~arm64 ~ppc64 -LICENSE=|| ( AGPL-3+ Element-Commercial ) Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT Unicode-3.0 -RDEPEND=acct-user/synapse acct-group/synapse dev-python/attrs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/bcrypt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/bleach[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/canonicaljson-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ijson[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/immutabledict[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jinja2-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/jsonschema[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/matrix-common-1.3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/msgpack[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/netaddr[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/phonenumbers[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pillow-10.0.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?,webp] dev-python/prometheus-client[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1-modules[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyasn1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pydantic[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pymacaroons[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyopenssl[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/python-multipart-0.0.12-r100[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/service-identity[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/signedjson[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/sortedcontainers[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/treq[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/twisted[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/typing-extensions[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/unpaddedbase64[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] postgres? ( dev-python/psycopg:2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) selinux? ( sec-policy/selinux-matrixd ) systemd? ( dev-python/python-systemd[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/element-hq/synapse/archive/v1.140.0.tar.gz -> synapse-1.140.0.gh.tar.gz https://crates.io/api/v1/crates/addr2line/0.24.2/download -> addr2line-0.24.2.crate https://crates.io/api/v1/crates/adler2/2.0.1/download -> adler2-2.0.1.crate https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/anyhow/1.0.100/download -> anyhow-1.0.100.crate https://crates.io/api/v1/crates/arc-swap/1.7.1/download -> arc-swap-1.7.1.crate https://crates.io/api/v1/crates/atomic-waker/1.1.2/download -> atomic-waker-1.1.2.crate https://crates.io/api/v1/crates/autocfg/1.5.0/download -> autocfg-1.5.0.crate https://crates.io/api/v1/crates/backtrace/0.3.75/download -> backtrace-0.3.75.crate https://crates.io/api/v1/crates/base64/0.22.1/download -> base64-0.22.1.crate https://crates.io/api/v1/crates/bitflags/2.9.1/download -> bitflags-2.9.1.crate https://crates.io/api/v1/crates/blake2/0.10.6/download -> blake2-0.10.6.crate https://crates.io/api/v1/crates/block-buffer/0.10.4/download -> block-buffer-0.10.4.crate https://crates.io/api/v1/crates/bumpalo/3.19.0/download -> bumpalo-3.19.0.crate https://crates.io/api/v1/crates/bytes/1.10.1/download -> bytes-1.10.1.crate https://crates.io/api/v1/crates/cc/1.2.30/download -> cc-1.2.30.crate https://crates.io/api/v1/crates/cfg-if/1.0.1/download -> cfg-if-1.0.1.crate https://crates.io/api/v1/crates/cfg_aliases/0.2.1/download -> cfg_aliases-0.2.1.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download -> core-foundation-sys-0.8.7.crate https://crates.io/api/v1/crates/core-foundation/0.10.1/download -> core-foundation-0.10.1.crate https://crates.io/api/v1/crates/core_maths/0.1.1/download -> core_maths-0.1.1.crate https://crates.io/api/v1/crates/cpufeatures/0.2.17/download -> cpufeatures-0.2.17.crate https://crates.io/api/v1/crates/crypto-common/0.1.6/download -> crypto-common-0.1.6.crate https://crates.io/api/v1/crates/digest/0.10.7/download -> digest-0.10.7.crate https://crates.io/api/v1/crates/displaydoc/0.2.5/download -> displaydoc-0.2.5.crate https://crates.io/api/v1/crates/equivalent/1.0.2/download -> equivalent-1.0.2.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.crate https://crates.io/api/v1/crates/form_urlencoded/1.2.1/download -> form_urlencoded-1.2.1.crate https://crates.io/api/v1/crates/futures-channel/0.3.31/download -> futures-channel-0.3.31.crate https://crates.io/api/v1/crates/futures-core/0.3.31/download -> futures-core-0.3.31.crate https://crates.io/api/v1/crates/futures-executor/0.3.31/download -> futures-executor-0.3.31.crate https://crates.io/api/v1/crates/futures-io/0.3.31/download -> futures-io-0.3.31.crate https://crates.io/api/v1/crates/futures-macro/0.3.31/download -> futures-macro-0.3.31.crate https://crates.io/api/v1/crates/futures-sink/0.3.31/download -> futures-sink-0.3.31.crate https://crates.io/api/v1/crates/futures-task/0.3.31/download -> futures-task-0.3.31.crate https://crates.io/api/v1/crates/futures-util/0.3.31/download -> futures-util-0.3.31.crate https://crates.io/api/v1/crates/futures/0.3.31/download -> futures-0.3.31.crate https://crates.io/api/v1/crates/generic-array/0.14.7/download -> generic-array-0.14.7.crate https://crates.io/api/v1/crates/getrandom/0.2.16/download -> getrandom-0.2.16.crate https://crates.io/api/v1/crates/getrandom/0.3.3/download -> getrandom-0.3.3.crate https://crates.io/api/v1/crates/gimli/0.31.1/download -> gimli-0.31.1.crate https://crates.io/api/v1/crates/h2/0.4.11/download -> h2-0.4.11.crate https://crates.io/api/v1/crates/hashbrown/0.15.4/download -> hashbrown-0.15.4.crate https://crates.io/api/v1/crates/headers-core/0.3.0/download -> headers-core-0.3.0.crate https://crates.io/api/v1/crates/headers/0.4.1/download -> headers-0.4.1.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/http-body-util/0.1.3/download -> http-body-util-0.1.3.crate https://crates.io/api/v1/crates/http-body/1.0.1/download -> http-body-1.0.1.crate https://crates.io/api/v1/crates/http/1.3.1/download -> http-1.3.1.crate https://crates.io/api/v1/crates/httparse/1.10.1/download -> httparse-1.10.1.crate https://crates.io/api/v1/crates/httpdate/1.0.3/download -> httpdate-1.0.3.crate https://crates.io/api/v1/crates/hyper-rustls/0.27.7/download -> hyper-rustls-0.27.7.crate https://crates.io/api/v1/crates/hyper-util/0.1.16/download -> hyper-util-0.1.16.crate https://crates.io/api/v1/crates/hyper/1.6.0/download -> hyper-1.6.0.crate https://crates.io/api/v1/crates/icu_collections/2.0.0/download -> icu_collections-2.0.0.crate https://crates.io/api/v1/crates/icu_locale/2.0.0/download -> icu_locale-2.0.0.crate https://crates.io/api/v1/crates/icu_locale_core/2.0.0/download -> icu_locale_core-2.0.0.crate https://crates.io/api/v1/crates/icu_locale_data/2.0.0/download -> icu_locale_data-2.0.0.crate https://crates.io/api/v1/crates/icu_normalizer/2.0.0/download -> icu_normalizer-2.0.0.crate https://crates.io/api/v1/crates/icu_normalizer_data/2.0.0/download -> icu_normalizer_data-2.0.0.crate https://crates.io/api/v1/crates/icu_properties/2.0.1/download -> icu_properties-2.0.1.crate https://crates.io/api/v1/crates/icu_properties_data/2.0.1/download -> icu_properties_data-2.0.1.crate https://crates.io/api/v1/crates/icu_provider/2.0.0/download -> icu_provider-2.0.0.crate https://crates.io/api/v1/crates/icu_segmenter/2.0.0/download -> icu_segmenter-2.0.0.crate https://crates.io/api/v1/crates/icu_segmenter_data/2.0.0/download -> icu_segmenter_data-2.0.0.crate https://crates.io/api/v1/crates/idna/1.0.3/download -> idna-1.0.3.crate https://crates.io/api/v1/crates/idna_adapter/1.2.1/download -> idna_adapter-1.2.1.crate https://crates.io/api/v1/crates/indexmap/2.10.0/download -> indexmap-2.10.0.crate https://crates.io/api/v1/crates/indoc/2.0.6/download -> indoc-2.0.6.crate https://crates.io/api/v1/crates/io-uring/0.7.9/download -> io-uring-0.7.9.crate https://crates.io/api/v1/crates/ipnet/2.11.0/download -> ipnet-2.11.0.crate https://crates.io/api/v1/crates/iri-string/0.7.8/download -> iri-string-0.7.8.crate https://crates.io/api/v1/crates/itoa/1.0.15/download -> itoa-1.0.15.crate https://crates.io/api/v1/crates/js-sys/0.3.77/download -> js-sys-0.3.77.crate https://crates.io/api/v1/crates/lazy_static/1.5.0/download -> lazy_static-1.5.0.crate https://crates.io/api/v1/crates/libc/0.2.174/download -> libc-0.2.174.crate https://crates.io/api/v1/crates/libm/0.2.15/download -> libm-0.2.15.crate https://crates.io/api/v1/crates/litemap/0.8.0/download -> litemap-0.8.0.crate https://crates.io/api/v1/crates/log/0.4.28/download -> log-0.4.28.crate https://crates.io/api/v1/crates/lru-slab/0.1.2/download -> lru-slab-0.1.2.crate https://crates.io/api/v1/crates/memchr/2.7.5/download -> memchr-2.7.5.crate https://crates.io/api/v1/crates/memoffset/0.9.1/download -> memoffset-0.9.1.crate https://crates.io/api/v1/crates/mime/0.3.17/download -> mime-0.3.17.crate https://crates.io/api/v1/crates/miniz_oxide/0.8.9/download -> miniz_oxide-0.8.9.crate https://crates.io/api/v1/crates/mio/1.0.4/download -> mio-1.0.4.crate https://crates.io/api/v1/crates/object/0.36.7/download -> object-0.36.7.crate https://crates.io/api/v1/crates/once_cell/1.21.3/download -> once_cell-1.21.3.crate https://crates.io/api/v1/crates/openssl-probe/0.1.6/download -> openssl-probe-0.1.6.crate https://crates.io/api/v1/crates/percent-encoding/2.3.1/download -> percent-encoding-2.3.1.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.16/download -> pin-project-lite-0.2.16.crate https://crates.io/api/v1/crates/pin-utils/0.1.0/download -> pin-utils-0.1.0.crate https://crates.io/api/v1/crates/portable-atomic/1.11.1/download -> portable-atomic-1.11.1.crate https://crates.io/api/v1/crates/potential_utf/0.1.2/download -> potential_utf-0.1.2.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.21/download -> ppv-lite86-0.2.21.crate https://crates.io/api/v1/crates/proc-macro2/1.0.95/download -> proc-macro2-1.0.95.crate https://crates.io/api/v1/crates/pyo3-build-config/0.25.1/download -> pyo3-build-config-0.25.1.crate https://crates.io/api/v1/crates/pyo3-ffi/0.25.1/download -> pyo3-ffi-0.25.1.crate https://crates.io/api/v1/crates/pyo3-log/0.12.4/download -> pyo3-log-0.12.4.crate https://crates.io/api/v1/crates/pyo3-macros-backend/0.25.1/download -> pyo3-macros-backend-0.25.1.crate https://crates.io/api/v1/crates/pyo3-macros/0.25.1/download -> pyo3-macros-0.25.1.crate https://crates.io/api/v1/crates/pyo3/0.25.1/download -> pyo3-0.25.1.crate https://crates.io/api/v1/crates/pythonize/0.25.0/download -> pythonize-0.25.0.crate https://crates.io/api/v1/crates/quinn-proto/0.11.12/download -> quinn-proto-0.11.12.crate https://crates.io/api/v1/crates/quinn-udp/0.5.13/download -> quinn-udp-0.5.13.crate https://crates.io/api/v1/crates/quinn/0.11.8/download -> quinn-0.11.8.crate https://crates.io/api/v1/crates/quote/1.0.40/download -> quote-1.0.40.crate https://crates.io/api/v1/crates/r-efi/5.3.0/download -> r-efi-5.3.0.crate https://crates.io/api/v1/crates/rand/0.9.2/download -> rand-0.9.2.crate https://crates.io/api/v1/crates/rand_chacha/0.9.0/download -> rand_chacha-0.9.0.crate https://crates.io/api/v1/crates/rand_core/0.9.3/download -> rand_core-0.9.3.crate https://crates.io/api/v1/crates/regex-automata/0.4.11/download -> regex-automata-0.4.11.crate https://crates.io/api/v1/crates/regex-syntax/0.8.5/download -> regex-syntax-0.8.5.crate https://crates.io/api/v1/crates/regex/1.11.3/download -> regex-1.11.3.crate https://crates.io/api/v1/crates/reqwest/0.12.23/download -> reqwest-0.12.23.crate https://crates.io/api/v1/crates/ring/0.17.14/download -> ring-0.17.14.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.26/download -> rustc-demangle-0.1.26.crate https://crates.io/api/v1/crates/rustc-hash/2.1.1/download -> rustc-hash-2.1.1.crate https://crates.io/api/v1/crates/rustls-native-certs/0.8.1/download -> rustls-native-certs-0.8.1.crate https://crates.io/api/v1/crates/rustls-pki-types/1.12.0/download -> rustls-pki-types-1.12.0.crate https://crates.io/api/v1/crates/rustls-webpki/0.103.4/download -> rustls-webpki-0.103.4.crate https://crates.io/api/v1/crates/rustls/0.23.31/download -> rustls-0.23.31.crate https://crates.io/api/v1/crates/rustversion/1.0.21/download -> rustversion-1.0.21.crate https://crates.io/api/v1/crates/ryu/1.0.20/download -> ryu-1.0.20.crate https://crates.io/api/v1/crates/schannel/0.1.27/download -> schannel-0.1.27.crate https://crates.io/api/v1/crates/security-framework-sys/2.14.0/download -> security-framework-sys-2.14.0.crate https://crates.io/api/v1/crates/security-framework/3.2.0/download -> security-framework-3.2.0.crate https://crates.io/api/v1/crates/serde/1.0.228/download -> serde-1.0.228.crate https://crates.io/api/v1/crates/serde_core/1.0.228/download -> serde_core-1.0.228.crate https://crates.io/api/v1/crates/serde_derive/1.0.228/download -> serde_derive-1.0.228.crate https://crates.io/api/v1/crates/serde_json/1.0.145/download -> serde_json-1.0.145.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download -> serde_urlencoded-0.7.1.crate https://crates.io/api/v1/crates/sha1/0.10.6/download -> sha1-0.10.6.crate https://crates.io/api/v1/crates/sha2/0.10.9/download -> sha2-0.10.9.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.crate https://crates.io/api/v1/crates/slab/0.4.11/download -> slab-0.4.11.crate https://crates.io/api/v1/crates/smallvec/1.15.1/download -> smallvec-1.15.1.crate https://crates.io/api/v1/crates/socket2/0.5.10/download -> socket2-0.5.10.crate https://crates.io/api/v1/crates/socket2/0.6.0/download -> socket2-0.6.0.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.0/download -> stable_deref_trait-1.2.0.crate https://crates.io/api/v1/crates/subtle/2.6.1/download -> subtle-2.6.1.crate https://crates.io/api/v1/crates/syn/2.0.104/download -> syn-2.0.104.crate https://crates.io/api/v1/crates/sync_wrapper/1.0.2/download -> sync_wrapper-1.0.2.crate https://crates.io/api/v1/crates/synstructure/0.13.2/download -> synstructure-0.13.2.crate https://crates.io/api/v1/crates/target-lexicon/0.13.2/download -> target-lexicon-0.13.2.crate https://crates.io/api/v1/crates/thiserror-impl/2.0.12/download -> thiserror-impl-2.0.12.crate https://crates.io/api/v1/crates/thiserror/2.0.12/download -> thiserror-2.0.12.crate https://crates.io/api/v1/crates/tinystr/0.8.1/download -> tinystr-0.8.1.crate https://crates.io/api/v1/crates/tinyvec/1.9.0/download -> tinyvec-1.9.0.crate https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download -> tinyvec_macros-0.1.1.crate https://crates.io/api/v1/crates/tokio-rustls/0.26.2/download -> tokio-rustls-0.26.2.crate https://crates.io/api/v1/crates/tokio-util/0.7.15/download -> tokio-util-0.7.15.crate https://crates.io/api/v1/crates/tokio/1.47.1/download -> tokio-1.47.1.crate https://crates.io/api/v1/crates/tower-http/0.6.6/download -> tower-http-0.6.6.crate https://crates.io/api/v1/crates/tower-layer/0.3.3/download -> tower-layer-0.3.3.crate https://crates.io/api/v1/crates/tower-service/0.3.3/download -> tower-service-0.3.3.crate https://crates.io/api/v1/crates/tower/0.5.2/download -> tower-0.5.2.crate https://crates.io/api/v1/crates/tracing-core/0.1.34/download -> tracing-core-0.1.34.crate https://crates.io/api/v1/crates/tracing/0.1.41/download -> tracing-0.1.41.crate https://crates.io/api/v1/crates/try-lock/0.2.5/download -> try-lock-0.2.5.crate https://crates.io/api/v1/crates/typenum/1.18.0/download -> typenum-1.18.0.crate https://crates.io/api/v1/crates/ulid/1.2.1/download -> ulid-1.2.1.crate https://crates.io/api/v1/crates/unicode-ident/1.0.18/download -> unicode-ident-1.0.18.crate https://crates.io/api/v1/crates/unindent/0.2.4/download -> unindent-0.2.4.crate https://crates.io/api/v1/crates/untrusted/0.9.0/download -> untrusted-0.9.0.crate https://crates.io/api/v1/crates/url/2.5.4/download -> url-2.5.4.crate https://crates.io/api/v1/crates/utf8_iter/1.0.4/download -> utf8_iter-1.0.4.crate https://crates.io/api/v1/crates/version_check/0.9.5/download -> version_check-0.9.5.crate https://crates.io/api/v1/crates/want/0.3.1/download -> want-0.3.1.crate https://crates.io/api/v1/crates/wasi/0.11.1+wasi-snapshot-preview1/download -> wasi-0.11.1+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.14.2+wasi-0.2.4/download -> wasi-0.14.2+wasi-0.2.4.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.100/download -> wasm-bindgen-backend-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.50/download -> wasm-bindgen-futures-0.4.50.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.100/download -> wasm-bindgen-macro-support-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.100/download -> wasm-bindgen-macro-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.100/download -> wasm-bindgen-shared-0.2.100.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.100/download -> wasm-bindgen-0.2.100.crate https://crates.io/api/v1/crates/wasm-streams/0.4.2/download -> wasm-streams-0.4.2.crate https://crates.io/api/v1/crates/web-sys/0.3.77/download -> web-sys-0.3.77.crate https://crates.io/api/v1/crates/web-time/1.1.0/download -> web-time-1.1.0.crate https://crates.io/api/v1/crates/windows-sys/0.52.0/download -> windows-sys-0.52.0.crate https://crates.io/api/v1/crates/windows-sys/0.59.0/download -> windows-sys-0.59.0.crate https://crates.io/api/v1/crates/windows-targets/0.52.6/download -> windows-targets-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.6/download -> windows_aarch64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.6/download -> windows_aarch64_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.6/download -> windows_i686_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.6/download -> windows_i686_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.6/download -> windows_i686_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.6/download -> windows_x86_64_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.6/download -> windows_x86_64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.6/download -> windows_x86_64_msvc-0.52.6.crate https://crates.io/api/v1/crates/wit-bindgen-rt/0.39.0/download -> wit-bindgen-rt-0.39.0.crate https://crates.io/api/v1/crates/writeable/0.6.1/download -> writeable-0.6.1.crate https://crates.io/api/v1/crates/yoke-derive/0.8.0/download -> yoke-derive-0.8.0.crate https://crates.io/api/v1/crates/yoke/0.8.0/download -> yoke-0.8.0.crate https://crates.io/api/v1/crates/zerocopy-derive/0.8.26/download -> zerocopy-derive-0.8.26.crate https://crates.io/api/v1/crates/zerocopy/0.8.26/download -> zerocopy-0.8.26.crate https://crates.io/api/v1/crates/zerofrom-derive/0.1.6/download -> zerofrom-derive-0.1.6.crate https://crates.io/api/v1/crates/zerofrom/0.1.6/download -> zerofrom-0.1.6.crate https://crates.io/api/v1/crates/zeroize/1.8.1/download -> zeroize-1.8.1.crate https://crates.io/api/v1/crates/zerotrie/0.2.2/download -> zerotrie-0.2.2.crate https://crates.io/api/v1/crates/zerovec-derive/0.11.1/download -> zerovec-derive-0.11.1.crate https://crates.io/api/v1/crates/zerovec/0.11.2/download -> zerovec-0.11.2.crate -_eclasses_=cargo a1af74aa9e34cd73aeac642cd0dd54d8 distutils-r1 d35f403697c0f86d762e7560bb5cd143 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust 20da14430886f3de143eb101684fcf62 rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=c7a596cd3533e10f8acef9651980d5ce diff --git a/metadata/md5-cache/net-p2p/syncthing-2.0.12-r2 b/metadata/md5-cache/net-p2p/syncthing-2.0.12-r2 index 78de694bf4a1..89819f7b36ba 100644 --- a/metadata/md5-cache/net-p2p/syncthing-2.0.12-r2 +++ b/metadata/md5-cache/net-p2p/syncthing-2.0.12-r2 @@ -13,4 +13,4 @@ RDEPEND=dev-db/sqlite:3 acct-group/syncthing acct-user/syncthing tools? ( >=acct SLOT=0 SRC_URI=https://github.com/syncthing/syncthing/releases/download/v2.0.12/syncthing-source-v2.0.12.tar.gz verify-sig? ( https://github.com/syncthing/syncthing/releases/download/v2.0.12/syncthing-source-v2.0.12.tar.gz.asc ) _eclasses_=desktop 7b6f6e9d65093966fbc8475399c5dd4e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic a7afe42e95fb46ce9691605acfb24672 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module d96f2a2fd6d8fbad6d94516bf238f885 multiprocessing 1e32df7deee68372153dca65f4a7c21f systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db verify-sig 2cf23b136af9fd4c3fceadc34d0f98ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=ec4ac71cbc0983e26e82a0ad9936e8ef +_md5_=091c56bfb57189b3a23075e7ae667fc4 diff --git a/metadata/md5-cache/sys-apps/kbd-2.9.0-r1 b/metadata/md5-cache/sys-apps/kbd-2.9.0-r1 new file mode 100644 index 000000000000..9a78c4604b2e --- /dev/null +++ b/metadata/md5-cache/sys-apps/kbd-2.9.0-r1 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/flex virtual/pkgconfig test? ( dev-libs/check ) sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 +DEFINED_PHASES=configure install prepare test +DEPEND=app-alternatives/gzip bzip2? ( app-arch/bzip2 ) lzma? ( app-arch/xz-utils ) pam? ( !app-misc/vlock sys-libs/pam ) zlib? ( virtual/zlib:= ) zstd? ( app-arch/zstd:= ) +DESCRIPTION=Keyboard and console utilities +EAPI=8 +HOMEPAGE=https://kbd-project.org/ +INHERIT=autotools multiprocessing +IUSE=bzip2 lzma nls selinux pam test zlib zstd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=app-alternatives/gzip bzip2? ( app-arch/bzip2 ) lzma? ( app-arch/xz-utils ) pam? ( !app-misc/vlock sys-libs/pam ) zlib? ( virtual/zlib:= ) zstd? ( app-arch/zstd:= ) selinux? ( sec-policy/selinux-loadkeys ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.kernel.org/pub/linux/utils/kbd/kbd-2.9.0.tar.xz +_eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db +_md5_=1e9c4bc74b8a73cb6e5bfa3e77ddac9c diff --git a/metadata/md5-cache/sys-apps/pv-1.10.3 b/metadata/md5-cache/sys-apps/pv-1.10.3 new file mode 100644 index 000000000000..41a0d8e0a565 --- /dev/null +++ b/metadata/md5-cache/sys-apps/pv-1.10.3 @@ -0,0 +1,15 @@ +BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-pv-20251012 ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=configure prepare setup test unpack +DEPEND=ncurses? ( sys-libs/ncurses:= ) +DESCRIPTION=Pipe Viewer: a tool for monitoring the progress of data through a pipe +EAPI=8 +HOMEPAGE=https://ivarch.com/p/pv https://codeberg.org/ivarch/pv +INHERIT=linux-info toolchain-funcs verify-sig +IUSE=debug ncurses nls verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +LICENSE=GPL-3+ +RDEPEND=ncurses? ( sys-libs/ncurses:= ) +SLOT=0 +SRC_URI=https://ivarch.com/s/pv-1.10.3.tar.gz verify-sig? ( https://ivarch.com/s/pv-1.10.3.tar.gz.txt -> pv-1.10.3.tar.gz.asc ) +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd linux-info efd923656513c879204fec6638eadee5 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db verify-sig 2cf23b136af9fd4c3fceadc34d0f98ad +_md5_=a7c5a91f51270ce44ec0fc96044c3bb7 diff --git a/metadata/md5-cache/sys-apps/s390-tools-2.12.0 b/metadata/md5-cache/sys-apps/s390-tools-2.12.0-r1 index aa7b5b4d11cd..ea50583a4f43 100644 --- a/metadata/md5-cache/sys-apps/s390-tools-2.12.0 +++ b/metadata/md5-cache/sys-apps/s390-tools-2.12.0-r1 @@ -2,14 +2,14 @@ BDEPEND=app-admin/genromfs virtual/pkgconfig DEFINED_PHASES=compile configure install prepare DEPEND=fuse? ( sys-fs/fuse:0= ) ncurses? ( sys-libs/ncurses:0= ) openssl? ( dev-libs/openssl:0= cryptsetup? ( >=sys-fs/cryptsetup-2.0.3:= dev-libs/json-c:= ) ) pfm? ( app-misc/pfm ) snmp? ( net-analyzer/net-snmp ) zlib? ( virtual/zlib:= ) DESCRIPTION=User space utilities for the zSeries (s390) Linux kernel and device drivers -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/ibm-s390-tools/s390-tools INHERIT=toolchain-funcs udev -IUSE=cryptsetup fuse ncurses openssl pfm snmp zlib +IUSE=abi_s390_32 cryptsetup fuse ncurses openssl pfm snmp zlib KEYWORDS=-* ~s390 LICENSE=MIT RDEPEND=fuse? ( sys-fs/fuse:0= ) ncurses? ( sys-libs/ncurses:0= ) openssl? ( dev-libs/openssl:0= cryptsetup? ( >=sys-fs/cryptsetup-2.0.3:= dev-libs/json-c:= ) ) pfm? ( app-misc/pfm ) snmp? ( net-analyzer/net-snmp ) zlib? ( virtual/zlib:= ) SLOT=0 SRC_URI=https://github.com/ibm-s390-tools/s390-tools/archive/v2.12.0.tar.gz -> s390-tools-2.12.0.tar.gz _eclasses_=toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db udev f3d9a4376ebd22131726a68e1a0a058f -_md5_=05c912ef1d58e30ebcc1f794c4f13dfe +_md5_=e81b5e753e841de47301da4d3803ef04 diff --git a/metadata/md5-cache/sys-apps/util-linux-2.41.3 b/metadata/md5-cache/sys-apps/util-linux-2.41.3 new file mode 100644 index 000000000000..06fdb3e6a4f6 --- /dev/null +++ b/metadata/md5-cache/sys-apps/util-linux-2.41.3 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig nls? ( app-text/po4a sys-devel/gettext ) test? ( app-alternatives/bc ) verify-sig? ( >=sec-keys/openpgp-keys-karelzak-20230517 ) >=app-portage/elt-patches-20250306 virtual/pkgconfig verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile configure install postinst prepare pretend test unpack +DEPEND=virtual/libcrypt:= audit? ( >=sys-process/audit-2.6:= ) caps? ( sys-libs/libcap-ng ) cramfs? ( virtual/zlib:= ) cryptsetup? ( >=sys-fs/cryptsetup-2.1.0 ) hardlink? ( dev-libs/libpcre2:= ) ncurses? ( sys-libs/ncurses:=[unicode(+)?] magic? ( sys-apps/file:0= ) ) nls? ( virtual/libintl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pam? ( sys-libs/pam ) python? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) ) readline? ( sys-libs/readline:0= ) rtas? ( sys-libs/librtas ) selinux? ( >=sys-libs/libselinux-2.2.2-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) slang? ( sys-libs/slang ) !build? ( systemd? ( sys-apps/systemd ) udev? ( virtual/libudev:= ) ) virtual/os-headers acct-group/root +DESCRIPTION=Various useful Linux utilities +EAPI=8 +HOMEPAGE=https://www.kernel.org/pub/linux/utils/util-linux/ https://github.com/util-linux/util-linux +INHERIT=toolchain-funcs libtool flag-o-matic bash-completion-r1 pam python-r1 multilib-minimal multiprocessing systemd tmpfiles verify-sig +IUSE=audit build caps +cramfs cryptsetup fdformat +hardlink kill +logger magic ncurses nls pam python +readline rtas selinux slang static-libs +su +suid systemd test tty-helpers udev unicode uuidd python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos +LICENSE=GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain +RDEPEND=virtual/libcrypt:= audit? ( >=sys-process/audit-2.6:= ) caps? ( sys-libs/libcap-ng ) cramfs? ( virtual/zlib:= ) cryptsetup? ( >=sys-fs/cryptsetup-2.1.0 ) hardlink? ( dev-libs/libpcre2:= ) ncurses? ( sys-libs/ncurses:=[unicode(+)?] magic? ( sys-apps/file:0= ) ) nls? ( virtual/libintl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pam? ( sys-libs/pam ) python? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) ) readline? ( sys-libs/readline:0= ) rtas? ( sys-libs/librtas ) selinux? ( >=sys-libs/libselinux-2.2.2-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) slang? ( sys-libs/slang ) !build? ( systemd? ( sys-apps/systemd ) udev? ( virtual/libudev:= ) ) hardlink? ( !app-arch/hardlink ) logger? ( !>=app-admin/sysklogd-2.0[logger] ) kill? ( !sys-apps/coreutils[kill] !sys-process/procps[kill] ) su? ( !<sys-apps/shadow-4.7-r2 !>=sys-apps/shadow-4.7-r2[su] ) uuidd? ( acct-user/uuidd systemd? ( virtual/tmpfiles ) ) !net-wireless/rfkill +REQUIRED_USE=python? ( || ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) ) su? ( pam ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.kernel.org/pub/linux/utils/util-linux/v2.41/util-linux-2.41.3.tar.xz verify-sig? ( https://www.kernel.org/pub/linux/utils/util-linux/v2.41/util-linux-2.41.3.tar.sign ) +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic a7afe42e95fb46ce9691605acfb24672 libtool c81bd096be5f4c82f4e8f156ef112402 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f out-of-source-utils dbf9e34ee8964084651e25907fa8f52c pam b56d0c9c20fc5b553f13c8ae165a10a5 python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db verify-sig 2cf23b136af9fd4c3fceadc34d0f98ad +_md5_=8ffd98e4c7bc509a28d1873c4c3d360c diff --git a/metadata/md5-cache/sys-libs/libsepol-3.8.1 b/metadata/md5-cache/sys-libs/libsepol-3.8.1 index 6d14f907302a..c568b6a37701 100644 --- a/metadata/md5-cache/sys-libs/libsepol-3.8.1 +++ b/metadata/md5-cache/sys-libs/libsepol-3.8.1 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=SELinux binary policy representation library EAPI=8 HOMEPAGE=https://github.com/SELinuxProject/selinux/wiki -INHERIT=toolchain-funcs multilib-minimal +INHERIT=dot-a toolchain-funcs multilib-minimal IUSE=+static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 KEYWORDS=amd64 arm arm64 ~mips ~riscv x86 LICENSE=GPL-2 RESTRICT=test SLOT=0/2 SRC_URI=https://github.com/SELinuxProject/selinux/releases/download/3.8.1/libsepol-3.8.1.tar.gz -_eclasses_=multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=077cb82a5dc3450e8f881592ba5f43e6 +_eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic a7afe42e95fb46ce9691605acfb24672 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db +_md5_=e97358f6ff7cf33824f9be3b19083746 diff --git a/metadata/md5-cache/sys-libs/libsepol-9999 b/metadata/md5-cache/sys-libs/libsepol-9999 index 7f27ed841bbe..b6e26267dabf 100644 --- a/metadata/md5-cache/sys-libs/libsepol-9999 +++ b/metadata/md5-cache/sys-libs/libsepol-9999 @@ -3,11 +3,11 @@ DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=SELinux binary policy representation library EAPI=8 HOMEPAGE=https://github.com/SELinuxProject/selinux/wiki -INHERIT=toolchain-funcs multilib-minimal git-r3 +INHERIT=dot-a toolchain-funcs multilib-minimal git-r3 IUSE=+static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 LICENSE=GPL-2 PROPERTIES=live RESTRICT=test SLOT=0/2 -_eclasses_=git-r3 875eb471682d3e1f18da124be97dcc81 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db -_md5_=0e39d5af402a8627a70f9abbba9458b7 +_eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic a7afe42e95fb46ce9691605acfb24672 git-r3 875eb471682d3e1f18da124be97dcc81 multibuild 4650a65187015567b4e041bb9bfdb364 multilib a199af442898963433d6f038a88cce9c multilib-build 9ac26ea006828266d235e2f0135429b5 multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils dbf9e34ee8964084651e25907fa8f52c toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db +_md5_=16ec83d628e40d376299520832e01d25 diff --git a/metadata/md5-cache/x11-terms/xterm-405 b/metadata/md5-cache/x11-terms/xterm-405 new file mode 100644 index 000000000000..93a5f7f79270 --- /dev/null +++ b/metadata/md5-cache/x11-terms/xterm-405 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig verify-sig? ( sec-keys/openpgp-keys-thomasdickey ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=configure install postinst postrm preinst unpack +DEPEND=kernel_linux? ( sys-libs/libutempter ) media-libs/fontconfig:1.0 media-libs/freetype >=sys-libs/ncurses-5.7-r7:= x11-apps/xmessage x11-libs/libICE x11-libs/libX11 x11-libs/libXaw x11-libs/libXft x11-libs/libxkbfile x11-libs/libXmu x11-libs/libXrender x11-libs/libXt unicode? ( x11-apps/luit ) Xaw3d? ( x11-libs/libXaw3d ) xinerama? ( x11-libs/libXinerama ) x11-base/xorg-proto +DESCRIPTION=Terminal Emulator for X Windows +EAPI=8 +HOMEPAGE=https://invisible-island.net/xterm/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop flag-o-matic toolchain-funcs verify-sig xdg +IUSE=+openpty sixel toolbar truetype unicode Xaw3d xinerama verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +LICENSE=MIT +RDEPEND=kernel_linux? ( sys-libs/libutempter ) media-libs/fontconfig:1.0 media-libs/freetype >=sys-libs/ncurses-5.7-r7:= x11-apps/xmessage x11-libs/libICE x11-libs/libX11 x11-libs/libXaw x11-libs/libXft x11-libs/libxkbfile x11-libs/libXmu x11-libs/libXrender x11-libs/libXt unicode? ( x11-apps/luit ) Xaw3d? ( x11-libs/libXaw3d ) xinerama? ( x11-libs/libXinerama ) media-fonts/font-misc-misc x11-apps/rgb +SLOT=0 +SRC_URI=https://invisible-island.net/archives/xterm/xterm-405.tgz verify-sig? ( https://invisible-island.net/archives/xterm/xterm-405.tgz.asc ) +_eclasses_=desktop 7b6f6e9d65093966fbc8475399c5dd4e eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic a7afe42e95fb46ce9691605acfb24672 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db verify-sig 2cf23b136af9fd4c3fceadc34d0f98ad xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=7b328711cbb4f345d6d91815fe7ef554 diff --git a/net-im/discord/Manifest b/net-im/discord/Manifest index 837bb129cd5d..365b7a007a34 100644 --- a/net-im/discord/Manifest +++ b/net-im/discord/Manifest @@ -1,4 +1,5 @@ DIST discord-0.0.116.tar.gz 108661413 BLAKE2B 0e5a4e2e1f31586ed50f2730f59a9036e41de84222982d18232593dab854b68843ba2db6106c2e0b9da2c473773f1e318e1f7807d73ae2cf2c665ecf77bede00 SHA512 801a228ff7c84aba76ce4565535d1da1d0ee3e7c30e2c381a118db32b2c7dcbdfe0f52ea8caa369732ca29c5a23a3ef7bb5439adc57e70243beb6ab7fc539a7f DIST discord-0.0.117.tar.gz 108661808 BLAKE2B 2e5ff667f1fa1ee9ba9cbdb7edb37de72ac90af6a71ecada95db7372a28c0c2bc9f6c143f9d2d11fd19a593a4c6785e922fac0288c726364b7e748266f938818 SHA512 3c2b3e835cfd8f785f33e3c1a37c6c69dacc6b8d45151364ee46f220ef97022f862ac8e42a5e3915d3010e8443fc4caa5b5c1c209f698bda3fe847632207036b DIST discord-0.0.118.tar.gz 108665429 BLAKE2B f7bd5c5668d79da24bee169604a97966568999e494d8e46687f5f3bbfacaf13ef69df2cd7bd97824d2d2bc2cfbebdd91af98fa19ed24a705445cf409b42c41e1 SHA512 3658600194b60dfc7df9c2a77922be343ab181367a0fbc187699a8b6c2d06c6b1c2a67cb55aa8c8bf694ab4d190b6a8677618c5e5987edc0a1fdc5dbafd3300c +DIST discord-0.0.119.tar.gz 108665433 BLAKE2B 7d245d4fdab2e447c4d2f69587f3185903edeb6563dd353430ef52d792acf362af1186902bf814104493ca4348eebfc13fcc50789f598242f91b9252351e194f SHA512 bb981f4458c87c9af3d278112e3ac6d650ae96cc0dd8ca184d60954b18a5fdab2dfc3dfada66fad599de2f303903bc8445831aae07b2573d99da14217f568117 DIST discord-disable-breaking-updates-2f26748a667045d26bc19841f1a731b4be7a7514.py 1299 BLAKE2B b6c923c450a28405e2a439e0d1b8a83e01e0536c62095fafbae74612aa4e891df733aa13999ce6a8be3618fd14e154aec802aa4ee21aad1303b05626ffd23314 SHA512 a7ef493a216c71a5b02685cff6866bfc3940aaf9cdc73b58859c962d0d33b613349289ef7027359f184f42dddaed486b84f6d85b9023ab8530ab7ba66431c3c7 diff --git a/net-im/discord/discord-0.0.116-r1.ebuild b/net-im/discord/discord-0.0.116-r1.ebuild index c0429e9b6486..5c098109104c 100644 --- a/net-im/discord/discord-0.0.116-r1.ebuild +++ b/net-im/discord/discord-0.0.116-r1.ebuild @@ -27,7 +27,7 @@ S="${WORKDIR}/${MY_PN^}" LICENSE="all-rights-reserved" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="appindicator +seccomp wayland" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/net-im/discord/discord-0.0.117-r1.ebuild b/net-im/discord/discord-0.0.117-r1.ebuild index c0429e9b6486..5c098109104c 100644 --- a/net-im/discord/discord-0.0.117-r1.ebuild +++ b/net-im/discord/discord-0.0.117-r1.ebuild @@ -27,7 +27,7 @@ S="${WORKDIR}/${MY_PN^}" LICENSE="all-rights-reserved" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="appindicator +seccomp wayland" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/net-im/discord/discord-0.0.118-r1.ebuild b/net-im/discord/discord-0.0.118-r1.ebuild index c0429e9b6486..5c098109104c 100644 --- a/net-im/discord/discord-0.0.118-r1.ebuild +++ b/net-im/discord/discord-0.0.118-r1.ebuild @@ -27,7 +27,7 @@ S="${WORKDIR}/${MY_PN^}" LICENSE="all-rights-reserved" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="appindicator +seccomp wayland" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/net-im/discord/discord-0.0.118.ebuild b/net-im/discord/discord-0.0.119-r1.ebuild index 30c43d42ca79..5c098109104c 100644 --- a/net-im/discord/discord-0.0.118.ebuild +++ b/net-im/discord/discord-0.0.119-r1.ebuild @@ -11,12 +11,18 @@ CHROMIUM_LANGS=" hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv sw ta te th tr uk ur vi zh-CN zh-TW " +PYTHON_COMPAT=( python3_{10..14} ) +UPDATE_DISABLER_COMMIT="2f26748a667045d26bc19841f1a731b4be7a7514" -inherit chromium-2 desktop linux-info optfeature unpacker xdg +inherit chromium-2 desktop linux-info optfeature python-single-r1 unpacker xdg DESCRIPTION="All-in-one voice and text chat for gamers" HOMEPAGE="https://discord.com/" -SRC_URI="https://dl.discordapp.net/apps/linux/${MY_PV}/${MY_PN}-${MY_PV}.tar.gz" +SRC_URI=" + https://dl.discordapp.net/apps/linux/${MY_PV}/${MY_PN}-${MY_PV}.tar.gz + https://github.com/flathub/com.discordapp.Discord/raw/${UPDATE_DISABLER_COMMIT}/disable-breaking-updates.py + -> discord-disable-breaking-updates-${UPDATE_DISABLER_COMMIT}.py +" S="${WORKDIR}/${MY_PN^}" LICENSE="all-rights-reserved" @@ -24,9 +30,11 @@ SLOT="0" KEYWORDS="amd64" IUSE="appindicator +seccomp wayland" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="bindist mirror strip test" RDEPEND=" + ${PYTHON_DEPS} >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 @@ -88,7 +96,7 @@ src_prepare() { # Update exec location in launcher sed --expression "s:@@DESTDIR@@:${DESTDIR}:" \ - "${FILESDIR}/launcher.sh" > "${T}/launcher.sh" || die "updating of exec location in launcher failed" + "${FILESDIR}/launcher-r1.sh" > "${T}/launcher.sh" || die "updating of exec location in launcher failed" # USE seccomp in launcher if use seccomp; then @@ -127,6 +135,10 @@ src_install() { # See #903616 and #890595 [[ -x chrome_crashpad_handler ]] && doins chrome_crashpad_handler + # https://bugs.gentoo.org/905289 + newins "${DISTDIR}/discord-disable-breaking-updates-${UPDATE_DISABLER_COMMIT}.py" disable-breaking-updates.py + python_fix_shebang "${ED}/${DESTDIR}/disable-breaking-updates.py" + exeinto "/usr/bin" newexe "${T}/launcher.sh" "discord" || die "failing to install launcher" diff --git a/net-im/element-desktop/Manifest b/net-im/element-desktop/Manifest index 2259f2058955..8802c1c6b264 100644 --- a/net-im/element-desktop/Manifest +++ b/net-im/element-desktop/Manifest @@ -1,4 +1,1093 @@ -DIST element-desktop-1.12.3.tar.gz 3155645 BLAKE2B 0bad577b47fd6b77ece3d6712170d7f2b765188d1b35e1cc0d627aa188494637267443963a4ea831fd7ac93046d6e9ae9cae8cd8a8d93147889df9983a11a60d SHA512 f302907165a35f4a4f069f5aec6bc28edeba3d09c75f483c818e3930ceb4e838e5bb91ad9d42019a11a661d6e656da3c1ff25507cbb281c69183aac7d499e882 +DIST 7zip-bin-5.2.0.tgz 5625880 BLAKE2B 3732c01a746eaa73f5408e656774af189a13081cc50f288b1b7bf05476dd4b86646ee73d0d99ac686d103e84bf6603f3f477d3ddee15366a14f512f19e836f2a SHA512 ba44cf561a86e2337332ba36a80f4748249254937768deed95bfa17ea602b77111d325aba1e036551dfc30dace1cb43f7158fe0da20c69dd24142b565a8c21fc +DIST @action-validator-cli-0.6.0.tgz 15552 BLAKE2B 28ea1ad08cc5ec6c1de3b4fc434402622ad358ef5b8a37b59a25741350c3dae3cbbbebf1781993a4005746ebf4b1d3544fedbf7aa31978bb5cbe10fbedfeb3f0 SHA512 67c4d838ae06a9422923452eb295093c1e9d86bd27893ba68702398a2655a854579b8bb4e5b65ac2714a96da6fa0551f260f661db6c806595eaac449020979dd +DIST @action-validator-core-0.6.0.tgz 880222 BLAKE2B 53adbed18b0c29da3a316d47affa1c8ffc592dd690d6bce52d6d0974bc440f2f0187930d9fe892e6226519bd2c45e6dd8d0192839e05b32a83d51499319ab062 SHA512 b4f825c02afc326f125b3c2755ec30166a91c7dd45d16bccb0cd01440a87e022da9721a7766e775efa7e51c512cecc29935c248c80d823b47212158c2f23e48a +DIST @apm-js-collab-code-transformer-0.8.2.tgz 1321075 BLAKE2B 4212baead7e6ca7e5386b1612a2f9ee8491173fe60674aa07ebc513f0b71da1c5dee760135859bfdf9c42c9c01baa710683950134f29a032ea69602979560388 SHA512 6118c98cdab92854a30d4a2abb9a45516aebb2f18ec65e9cddbbbeb8c15cf4734da6d676acd53f4c8da72f0e239e140db646bdef611eda6deea9bbc342d3de08 +DIST @apm-js-collab-tracing-hooks-0.3.1.tgz 6945 BLAKE2B 661fd1b3c9bc463d4bcece1464e0c212c93233d55cf1e4662a54e88cfb14598ed2575e8cea0be14fbffc74e182362fd5add876f14ff7ede8d32a137b09c682d4 SHA512 56ed426e63d44653797d36e856e28ca098db3b9a9cabd7c0e585e9b24c777577bfcd306f8ce0c5a1eaf0fbaf6b5419512eb269c0fa920ea12e24310a22b4e577 +DIST @babel-code-frame-7.27.1.tgz 9969 BLAKE2B f27411effcefdb597ce36f0a958217f83cc45fbe229014f92326fa5411e4fcd57546ad2a037e10ff157348ea2046866ffca05a6782dee70cc0453c3591b57994 SHA512 72343b66543432fddbe3b84006e4debf24ee60de22fa5a09286795f5f95c0a020adfb7025d187e2f56ddde20479729deae143b0610a49f604f6d050bfab1aa16 +DIST @babel-compat-data-7.28.5.tgz 6573 BLAKE2B 00dd5c37e46c940a1754ed35ebaf4f3b2eafd9c522cd0fbc6ad732f18e756ea21a8584200166360fc123b96c3c1f15b02df5d4d93ae35438842791e1043d3118 SHA512 eae157c826b2a1c45baa164e07ee9772e65b90c3629b07d51858e2f024d99c2cce1d51af0eacef8adbb5aded805392d13a58b3ede40f841f02a4032f9f1f448c +DIST @babel-core-7.28.5.tgz 190126 BLAKE2B 5c6863ac8d7e31b5333475d841a655cadfbc26476ef6d38a6ce5bb85aca2d1e52421e9d26405103c54716fd384ca3f6d5c9eebc6a6bcdc0bf1660e92a0f53267 SHA512 7bb8d3e03c58bc80cb935647994fe6fe6075f6b7b1f6cbf47367ed06d8d206ffa454cffdd367a1d1f20d5330fb5302cb351fa3539f391b1509f3f1017c03397f +DIST @babel-generator-7.28.5.tgz 118382 BLAKE2B d9ee7d334559a8e8555cb1d54dc60394262169a9815eecfc2d8397a6df0f07f91a997ba4697e09509d981a200bdcfb158ef882a9fbdb6aa461b1b08cbd654671 SHA512 dc4c0b161677f09e15c883fa58db6dda451d5bd76891703d0abe08548147b82a59dc7f3f6053a5e498d91e2b2b9f57c04cf06628aa97cc316f87d7d4c07cfa09 +DIST @babel-helper-annotate-as-pure-7.27.3.tgz 2133 BLAKE2B 1ac3bd3092bde9aca269644da4a02fa1352b952a8d6c39332896f09846a3c24bbaa1bd4d6bbab6dfc3a47b30c528b0e70822b6e0dbd7d83676ff39e7a833c35b SHA512 7d74b0310aa2b5319e1cb042d3c12ae725f3da6dfb138a495f5a80535fb670d79dcff89fbff6d55dfb7dd157926afe6714eeb511c360c2bd1a2716f23da5813e +DIST @babel-helper-compilation-targets-7.27.2.tgz 14901 BLAKE2B 6919d590d15034bc2023a43512c477ce6b25a2eaf66edde5c60ac22548a95e12107d2301676337535e1d6988d90efe90518b886a318928ed4dd830233c1a51a2 SHA512 dbed6d8465145968cb4d84c76562b59fc6206b48a3073d5702151770acbcd6b77983aca1ee11aa329e39bfb71a7526c41dcf46dce4efe394b29de44dde9b380d +DIST @babel-helper-create-class-features-plugin-7.28.5.tgz 95326 BLAKE2B 94ed29db47f6ddd85078723ea8bc40f1b7ba457dc3b4f296cfa5bbd2f9cbcb1a065f05bf5c2dcc266f8167c137fd699adbb1da651bf73ae4dd46933e4d7aba0a SHA512 ab7582e097dd383ca9bf102bb0941139fba93c1abdfa53308caabb0b7dc685b15826cb9f0f4c9dff38b00fe849b9c2de5ac9c53d6663b14d83345a813c4ee3c1 +DIST @babel-helper-create-regexp-features-plugin-7.28.5.tgz 7908 BLAKE2B 474c6c820d710cbc4af269326736d1e87e75cc438da92ef178734debe885d579926c6ec34df6ed1c09b67b1380a44bc983e36d97b1877882f257b519eb6bfbce SHA512 375121bcbb47ccebe3ed040e502092dcdacf24ff1ce56e995c21c39fb6226a5bb2d62bb8af912621891794a36a4fdf428b0f96d260ea5a847a1d63199453f787 +DIST @babel-helper-define-polyfill-provider-0.6.5.tgz 60633 BLAKE2B 78d4164a5e7f9704a156c5cdc72c304d24cb6415d0ef4127cbdfeec489d2c11e014f98cf103d518c95e2950b63d76a4692bddce7b22d8e6c64a84fbdfc20ad9a SHA512 b899c615c3ec5902bc7ef8e018fe4b654659b18188a0f7918d21793c6c2b7a5620abb435e7f16df4d185a75ce0970808bfffd6d2e1b805ebd1b92251cb29593e +DIST @babel-helper-globals-7.28.0.tgz 6838 BLAKE2B 18fe623f3daaa6af5a2138a6d1ed2378759c385d5da8e832fce14e0db1617501b0b49b98bf72657521a9b96a484a5e7339818bb39d3d692d95c97725e4d31250 SHA512 f96e9c21291715ad635ec0c475803c1de7af413fc550b871cd1f7da71a6196d65c55aba0a6ce774c709e89603c4a0bb1c694a9de028f8ae61f496a2990b43887 +DIST @babel-helper-member-expression-to-functions-7.28.5.tgz 13651 BLAKE2B 997ba46bcb4e72dab8e6eee715e81794a69cc74171fec0b0f71d1c53b545c00b294e32a7a525350b3e3f1f200747ad7dde188fc5faefa13243064821f0f9ee86 SHA512 73033b48145970f08b825f1aedc634b284f54a9b52cc094c1f7f6fc22469390909961e77af985d1f02d2099a507552d3dfdb19b7e091a4dc181b8636bfbedab6 +DIST @babel-helper-module-imports-7.27.1.tgz 14067 BLAKE2B 41627c8f9509a2ab9373876e20186bb562b9a4e6caafc4c116c73014ab193382e543e0408fb88b1f44b0d86f992877a511e460021b2464153cc6bf793cc29e76 SHA512 d204855943cd5cda29aad20f42f943e56817608e4663690fd9c0afa13f247338db7dc7ee2258d36dc5abba50f50883c85f682dd708216c3cb4f32135a7efebdf +DIST @babel-helper-module-transforms-7.28.3.tgz 37829 BLAKE2B e55b054e06ced3436b995d2702c04b4f72e85feae52d39f2017492d54dd22d3fd4a67bc207f5dfa6e551747164ecc6c3457fa957fd4cd6c096ba9af4bd8e1758 SHA512 832b5751bb3c936b174bd3e7429b73e68d109e92cbe754b001220e458e97681285f3c9ec393d19c3db332ea9521900cfff84e58c1003e72f7ca765357ea91db3 +DIST @babel-helper-optimise-call-expression-7.27.1.tgz 2646 BLAKE2B 5242b9e6788891ca3db73813542398462259f8c786e095b56ac88ed780d1d79c3328273cf2d614b507aab84cfc83b0132c12d7220e24e80c84f32c73f888ee24 SHA512 5113061f4f0dcd8161b9b352189ae9504a6118a430310601c92cdab79700072635fd880846450b9c8cb7b4031eb3394bfeca361db7a29589685264a977b19d57 +DIST @babel-helper-plugin-utils-7.27.1.tgz 4461 BLAKE2B 12a304229340f8cb0d9a769ddb5eefb606f95dd782504f05760848a7297b2270778ab96001a9bffca8ea456826abae521e9621bd2041f63fb9cd72a92bab345d SHA512 d609f5529e585e46b761800718aa5b89d790e588dfd6d0daf6a61c832b33f9c3425ee9322e5e838cf5e10f7551c126fc73427db40e1bdbeac7119b5ce91d2d97 +DIST @babel-helper-remap-async-to-generator-7.27.1.tgz 3723 BLAKE2B 3071daf3b68389cf5324326162be04ff620de51a52795a0f7f990b21ec0dbe20666b1c8fef723a390c59406d9acddb8cf11b9b73b136c86e0f005a290bc2b267 SHA512 edf880e76d5a570f2548f788e19383def445928aa425c4becf8845a3cd9b1521ffdad35de9e279a8254c4b93b30e6661fe468741e05a7b2c4aeb096370fb6f78 +DIST @babel-helper-replace-supers-7.27.1.tgz 9164 BLAKE2B 56f0b27f3590c915d7272930ec658c731acf9f20acae99e304a66dc988089365abb4839b8d57854065bac2ac0ac9b2617eb0b42909cda73701c215455aa202af SHA512 ec41f3eaa0d973c4584b91253e84a1321796bc48044689c50acec80289d62cb5135d6e7d0cfd786c266df3dfc62b2ade627f20dd2f379b6d457a51ca6de0c228 +DIST @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz 2552 BLAKE2B 93aded5d6ff5a59d76a7e0077be2d1a119276a9c5671336fe39ea5b8e81d73a9703a10336d0a9c59fc7e072a2c825fe71e0bf5bc221fe90437f580fa4d773696 SHA512 4ee6f864a117a9b3e35e058b976fb726940060127cfa292943639c8ffabfaf42f013752110d87b11469bc878f3da4084b2b458f377b0d8341d1e5bae883405ce +DIST @babel-helper-string-parser-7.27.1.tgz 8383 BLAKE2B f06b0658a09a5e2bd63f0d95c99331e7e3e2d44de299705b7524758ce3323d2d2c7bb312a96dfff6760e066897e35fa4474f109c11feb5fa3413cfeaa3eddb3e SHA512 a8c952c4a6e946502b89d0c4c64f769d2a1bc837693e28d4ab60d6ea80e752a77488e1b19908f2aa13088a123dfb3bf82cfc997518ded9c6af58f6c26d69b778 +DIST @babel-helper-validator-identifier-7.27.1.tgz 14174 BLAKE2B 1058b1015fe1c71cf4422d5964dd28868cff7186e7acb3d1925fc6a3600ea59e09e251c5e90f96b282c0ffce5c6cf18139f63cdcac148e5ff494c719ff1614bd SHA512 0f684ff5e03e4aac75901660cf1661d32d6dadbb94f89a03922130aa1437ea7a1d62a270c842213d274c35dee53a6ff88a8ef696e4cf587db461d6b4c4eb94a3 +DIST @babel-helper-validator-identifier-7.28.5.tgz 14245 BLAKE2B 0291b6bfdf7a01d365849ea575fb85f49d3d33286f894e2d7c52fa9eb9e7bfdb4e2f5e9c024b034ecb03499ca6e5633b9a2be9f26dcd26be9423bf8265b8ce6e SHA512 a92b3889fc33289495dfdb9c363b2f73a5951ece9bed2d37b0e87639c1c5f541df54fa965802d4b0d515ce1481888b63459a0b1f1ee721aad58ea295bac519d5 +DIST @babel-helper-validator-option-7.27.1.tgz 4383 BLAKE2B 3af63fb729b6c632868e09c6b471d942895a8f48f4a104a0d590c3f1965836b8aa92dc7f1ac009c67aa8fc793360f07eec25c9d1a77a68269739d34fcb652ab6 SHA512 62f8c9a30f45c5b84514a0d2b859d509ed96c57935cd6736d9f15e3d5344696244bbc22b65595d6ba374b87c3366b50cd6297b342f4c969e0c68961b61df494a +DIST @babel-helper-wrap-function-7.28.3.tgz 5983 BLAKE2B c9888a0a5da15985a9d3effe73535984dc40d881682939dd7651fd837a2e00784a03055de9e6c4ef44e3e1c809cca0f593125ff9b3720097be10f297c02e3166 SHA512 cdd7fdf37b4d7cb64595eb5cd1145762b1ebb9c04483de4d2053249fa2bd75b78c627b201da48119c42a76c0924ad1b63d8c11aded1073634d4825db1bec5cea +DIST @babel-helpers-7.28.4.tgz 189216 BLAKE2B 5e12d071f096f47234e363f7fb255cdc507141dfc27f9b4cde8d88c682138ff10c0a11a7f4cd1644b0af5455663797383b604122e23763936ffdbaacd9a14a62 SHA512 1c5379f4c9905c61d5c9869d28b56e998b00f5d045ba7fe5758c62a448f3038d7dea3a4b65df148c41012e46c492f7d8ade0ea2616716005853edadf84da63e3 +DIST @babel-parser-7.28.4.tgz 435294 BLAKE2B de3203af5f377367dc2eb6db3643727774fd75fb4d9f5fca58ccea3490e56e08191464e0f9888c53a8155cd044e1f658bdae422cf56cf1f2fea7e57258a361e9 SHA512 c996c1a9e33a4e4a4ff5dbbf236a5466726c44c186bceb88ae18f30b50301f05beea17b89a78ba069fe6f228e7d223ae66e3c8d817e40a8491ba7a728e7ad02a +DIST @babel-parser-7.28.5.tgz 438175 BLAKE2B e2a474a2fbcd3a6955928f0684a4050071b92ca60a6731871055d1ef69ebd7851433cc2748d6828b9c9639eb6a4be7e1a5a13bb8b74e0189f6e1264ea4deb875 SHA512 28a054d5519847b391af702de4702d510f935774b34425e603ff0e7436622c3048671572cd7bb3b4f8df2dddc15753d10101823165921d884bd05f1de6e1c10d +DIST @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz 4319 BLAKE2B b3d2c78e023daf854b3e57bb3287c3bc94ba588d4e77eb9c219f9ff2b6861d17829d649e928b6249d81d063b90069ca6ac3cd6de2d50d79054aed512b6719cbb SHA512 f3b183312dedb263128bfddb58eb5ed546e52fe6144c5315f1264f67679210bd7bb3be02c3f97adeb47a36619528c616d86622f399c4fbf77a1f0e4dd1b124d9 +DIST @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz 3564 BLAKE2B 7c4d694b29cc21d3634fd487e7ab7dc085ab58cd808ff2ad8b768fa773a5e56a56e0a288b0ada238240ba9fc47731f5d92dded6aadca22d379eddf3ea82d4c81 SHA512 a8d7aaddb08a9c680b9045d4b85af2e9d3e519f09d40d65b9fbc9400f0889f00091cc53b4c725fac14a8ce4716ab9b0d33a45c1774bc5f240bd80e7628d47d20 +DIST @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz 3137 BLAKE2B a5e24c25f44b4859d0508ea4849e2440e72fcbe3bfb58268a666b2a10b694bf4ad02de600b0d999136650ad35517d40520b914cbdc816434a4eb56edd494406f SHA512 8382fb398ba7d383755b2a8c36395d17095f3c22d5920079e00fd809720265806cbc9244de40722aff5cf7e47f9c07e621f8e5dab2982cdc8c1dba186d969668 +DIST @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz 3751 BLAKE2B a78bd7ff35066ca2b5f5d2b530f0bb6e80a160d4b69014f68e3311c7a0370c47be75003b79bed91b38bbb4709a4264f4026aa1945a9fef66ad043aa56792f528 SHA512 a0ed3681c38d703e4ed624cb8bfe9facc2412305841dc7961921aaae90a610bf27a20892e89f4f065138f0268adb4fc9c752ee46697d6837ed2e07635d3f3e0b +DIST @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz 7879 BLAKE2B 1e71fde5e28b92295a08a6c554bead40ec06ab7835ee63cc70b5f54432a99ec479e390318732e477e53bd4d2244af363a07a10078801fdcfd76e128e3eb7127c SHA512 6fa6135f5d3c7afb2f1386205b243ddb5640145426dc19fe080dfe65794d5673e1c7e51fb15511a0f8df1803c28c182baa8df4c97fc2da76465fde83c6f47d23 +DIST @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz 5818 BLAKE2B dbf8d83fe34bf1e24e7a5fe69f45db6c2f84f2a13dfbae8fcd5685e98624aebe52f45bc5dbeba5964cee5eaddfe019682059524b89d700110265b3a858e4ad9a SHA512 48e4a47c90dd75a33b99a93a70f129b30c93467b9196d978dbd84cada4048255be3a4a2f9c2cec8accd39acae563ffea2c58c2a500c546f8dd9b6c00e693e6f7 +DIST @babel-plugin-syntax-import-assertions-7.27.1.tgz 2563 BLAKE2B 401b024543dd17d08e75b6a432db3a14ccf9b6b86687ec686e5a32498e2d625705ca3eeb6c56f51858f9476aa7ca534237f6a913829b264e73c07337e9fcd372 SHA512 513fc9ae1c39ef183820b1cb167cc5a4f0e531b71d12271a02d8cf4296e3f706bc4f8af92955828a61dc2ffe3ad20f07b740ccc43ca3b0b8225929158e7c0f16 +DIST @babel-plugin-syntax-import-attributes-7.27.1.tgz 2730 BLAKE2B ae70e0959aab3a47c1774cf97fba71bdf9a963cf6844c1e278ed4f70e3630eeb677b812f52fbc32ff0a534858b3b28ac6cb05a86d54e7f14d448beba869c1b26 SHA512 a054f416b287805e777f8bceb191a2d87877237e4f7d2995b3820114b163e1d9da7cffa12160cb8375722a65077cba0b1e5cb16380bb0c6b661ee2609fe206c3 +DIST @babel-plugin-syntax-jsx-7.27.1.tgz 2207 BLAKE2B 7932a13f0e96b1bd75c3c78298f1a08f87abeba710d4a56b9e598248f741f90b6570d189e3129807f6f22b5449d73a937c7a7baa6a97e6ee698ee1022b348954 SHA512 cbc61334878aa3284677d3b4262cb3cb2aa4f207639ee9864d03eccf4c4e64e43646691525e675be699f22f1442aab9c046e9ac4918164313fee2239b2e508ff +DIST @babel-plugin-syntax-typescript-7.27.1.tgz 3091 BLAKE2B 73aef57a7f6299a4351e3a8ae27c80263bfd75676bf68c5fd20783e5a83e13d3f8ae813fe7f0f9cfd0452e7b414e182ef93eff24130e0d54f173b045e7d045e1 SHA512 c5f60204cc6f787ad13270169756653d73998f390df364c716f2e142115716df356791e737e12d524661bffcdc2a9993ddfce6599074cb0881adb0b7be881bc1 +DIST @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz 1713 BLAKE2B 389c45ad5597001f08610e89d8384e36657bf61edb06bc4b64d5775ba03e4940256d0eeed4ed3f2b661fb67c4379a7d7439c49a9b377912fe33d98d28906331a SHA512 ef6ed890400fc122104efe629bc407cf7ba9aa9f762535a189d202f354ddc78549608b5efd59dd29fd6a2ab7e79e13cb88f8214ad59fbc2fe215a30242eecdaa +DIST @babel-plugin-transform-arrow-functions-7.27.1.tgz 2622 BLAKE2B 927065a646c948b01d5af38c363e33d4154ff2167011fd5a5c2a74801660e4bda146d12fe908348bb059b66c71e7fa8b7919c560290da88da4be158d8734e2d7 SHA512 f19e131a273ac56ef414a4e10391d810a2b206938eb2e713383d438d4ddf6710e0f8adf30497173059edff8c908999dfe7e32238c49743d3da10afc8961d4378 +DIST @babel-plugin-transform-async-generator-functions-7.28.0.tgz 6392 BLAKE2B a61a4eba18fbc687834448ad4e31d06a0d0a291189e4eed88d5872a38bfc0836aa1c4a8ab33fd0aea7aeb7a8da3a4340b22325ea3bf20212326718075e03428a SHA512 04439dbd7e3e33beb989c34f65e89dc800c8bd0d66d609ae9d7b9f5f1bd1112cbf8cd3727e8bc8a94c84ecc5601818d692d0a8265cef140d53a363b8ca620edd +DIST @babel-plugin-transform-async-to-generator-7.27.1.tgz 3093 BLAKE2B a66384b89a19e4eb8426d2c0325cf132837e526924915ba095a346aaf2a71004588011271baf537f923f015f30266cd90b4e5ffd4eef559dd713e4b1b6cda5ae SHA512 35112466c655252e31993afcab3139cbc01f20faac7507d1b9488b4531336fb4228bc885582c8329a515d9cd2b0ae8789630d9f7c00b1cffcf7ad8815769dd74 +DIST @babel-plugin-transform-block-scoped-functions-7.27.1.tgz 3067 BLAKE2B a3171b0c43fd2ea1b53da9eac52da21c200dad80cd0f09a95336dd3e01ebc87769dd81b455bd36106385886fbdf677286bb18c9dd71a524556a0aa9f93c1e4df SHA512 727aa4b8eb592daa56619518339ad521dbf59d762e155225b59e9927b9c88f9f3942c8ca3397612f616efe52025d9d4ec8800573b432f9bbc302d4d7a86ae586 +DIST @babel-plugin-transform-block-scoping-7.28.5.tgz 21957 BLAKE2B f4000b547ada8f355302962a3043d7b117acbd449fb69ba8e972f6951b45282d2842b9f5f12f5276272c9b1a12b2e8798ddb0099b7ca8d37b0d3ecae0465d9cb SHA512 e390e650ba72495be6abd3e3dd7f41fbad977be0c91a8bf6ed0adabd0254d4b2dc6a947aff5d22fa061502e706189a47069e6663120c2b89c3013fd00cbaf8ee +DIST @babel-plugin-transform-class-properties-7.27.1.tgz 2411 BLAKE2B 70d5c7c58ae31e70835b9d65dc22aa18c9014c8703c407be76e211dee645e539843f1defdff20f1cfc42e59ad2adb487c38156ff17b60c47bc8ee397145c0f3a SHA512 0f455c6a50a10ccb6e46f248bb753f7f05a37fc64cca4cf9899b20efb36e8fcdb5bc2288df30b244bc117566ecb89fee470661674d3642d0aa224c02fd992f6c +DIST @babel-plugin-transform-class-static-block-7.28.3.tgz 7643 BLAKE2B 67d4ec3267458fc112324d39705b99ccde696e115925f2bf01a8090d94e373fe7da23c513587b81133c452ccc9e9236acdceee22003129e5ec12b21b3652d607 SHA512 2ed3d79416d1a1ce0d8e5fe887509e0ffde30be6adcad6e77ff52a2e8a930dc1181943e3d36dbeaef7e46c3622794ad28f709a578c870c1c8f13e4f61f07ec26 +DIST @babel-plugin-transform-classes-7.28.4.tgz 22599 BLAKE2B d30d9aa06f27bbed6e1f1627892bf22e62819dd851585070895ef8784cf2c462055879af8b3cb54fca8cd3e71845449319670724139bc9ea3794e1819649537f SHA512 7053a584860f06ffe206873e292dcce9eb765cfb5b4f61e20917c15d6b5fa5cf4e032a2cb6577121ff5801807aca95110416f1f90bfa9f2acbcc049f25efa104 +DIST @babel-plugin-transform-computed-properties-7.27.1.tgz 6789 BLAKE2B c2e907bd35da409694f965493115a46c3fdbaa7f596cb44eeb2a113610ccb93b88aac7eb8e2a4eb0f4342cf99e4597b5f343aea7e9a6b126e461a25ff59b77b3 SHA512 963f4f196bcc4d592c6d68834f6b56ebccc64bf732a3802467f413a74b104f49a33e8a429ab4a4cf17979339e3a81c730c8e937256613896c199b04b8ee39953 +DIST @babel-plugin-transform-destructuring-7.28.5.tgz 20102 BLAKE2B 5da460cea8364cc098f23b5973385815300b73dbfbde55926bdda4fd433513b3b2bedd6285e84cbaf4ac46cb245ae98c2af0a4a8b3b8df37fca973bc533bebd6 SHA512 2a5f4173a0f4cd351c154be436e421e1e1973ca28d0ce2505d5cb233864040f32f7a78897718bc5cc2702e8fb14a85b7308abcd5b0f7de57147bd919a65d0c0b +DIST @babel-plugin-transform-dotall-regex-7.27.1.tgz 2086 BLAKE2B e66ebef93b76f987770b1c36369df5beb9a3a39b57ddc4fe474c8b5ea436ba837b7c01820df5f0b418d17169ca8b751f9084f2629bf21316423866ea0e91ceb9 SHA512 8046e40d5191be38fbf93d62bf1adf8328294fb194778be6383b58a5bb348190137645fcfe24a73ad652c62667b209b56234e08c8e952811922497af92b725cf +DIST @babel-plugin-transform-duplicate-keys-7.27.1.tgz 3289 BLAKE2B 20f8158643717031b39e9d379ec9df0fd4819914c954e9d56968bb41e620766c854c27b534e5e217d96d6cf5a34af5cacb8cba9a30d796635684c07a0480b91c SHA512 313c8993df2c1ef4acf9cbd9e2739abb04d31b525ea270e3486bc6194347ade1909ecf8ca6de965ff755cd6047820f9d6198640b85fecd30df91353e572f72ed +DIST @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz 2450 BLAKE2B c5f255320b0843252f24a6e330d83e662b3320ac1c3863aac2277c9603e00f14f214d5e42da3c03eca8041c35251ba6bdd8dc5641addc8abc925a6cb1b482e32 SHA512 86419cb9e4c4cee841df407778909b09878269a1103a6411d0076fce90f82e8374197316cf3192b91af1476c539c2aef35b5702bd37afe343dd8648b7e2656a1 +DIST @babel-plugin-transform-dynamic-import-7.27.1.tgz 2711 BLAKE2B 7d2f7e45089be057853930a9fe0fda12443ba8c129e417799147857032920647311d5dcc97b7e37f43e7d8853e78ae445e513fc353e76bffd9196b1f90bbb226 SHA512 307ce45907049a3cf3556f63daaf0b1a3c065a91b69a3c1a681d01350c2cb771488eab20f02b7f988665bd23c9bdf8bdcb6002f268bf92dc5b1552fda59d48e0 +DIST @babel-plugin-transform-explicit-resource-management-7.28.0.tgz 7583 BLAKE2B a3a2bfcdaa88e5507742a9b9f1c7a50bc09c6eedcd4563b3d547fb81fa759dba2b205b3465fc3fa45cd2eb0a831dfaedfe4be8577006c3536f57de4d0d514f65 SHA512 2bc9e151c9f77fa881f8fde0c02bff9e8ece77339941c29c856e8ddfcf55e8f0fc35458a647ce774e77db0f0d56cca01b1b9a332a941e0bf5f9be7c414d565c1 +DIST @babel-plugin-transform-exponentiation-operator-7.28.5.tgz 4140 BLAKE2B 082b3c50a148e9888dac5d7dfe49794484b129ba80a654b17174ae8eecfbe090f22f4af4dc330586138125d37e30781bca041097b14fb41cd139da30130759b9 SHA512 0f858831a16dc1ad8d8b33a9f9d9e816345ecff0a52a20b606aa889b029dd57dbc9ea06d644c82609da8cd0aebce5c4016b72b8f1a37f52ea485ef51343946cf +DIST @babel-plugin-transform-export-namespace-from-7.27.1.tgz 3133 BLAKE2B 95393eecbd1b82f253b002245ae663b0cad883879915ad6b0b5da3f4e509b156941946c22f71fdc329162629b80f08b0950d271fa76c585d89c5a7516a2b7235 SHA512 b50bc7592677fe31f6c6eabfbd90f2d23367f9975725e33c807bd7e259c99ac737fb9d323e559d65721ce5acbeba65fedbfb4922a1ea884a9c26fc65988bd1bd +DIST @babel-plugin-transform-for-of-7.27.1.tgz 11409 BLAKE2B 6fe1217ed1e8a2e2c1df8bc30be48cd4637cd3add20449343cb4487374b146e0f42ac7ffe14d26dbb865ac18ae173f995d2d39934fe074bdc26e290827f43bd3 SHA512 05f6d6145109150ccb090e4df15a1c9c2b40f09d422e43537b632cdb0a1c8fbe5d77a5698aa4b9679aae4d8714a28e18abe0cdd2bb6290e0dc72ebfb454f35b3 +DIST @babel-plugin-transform-function-name-7.27.1.tgz 2872 BLAKE2B 1d3e471b42fc3036322eb59db9675001bdfd241411b43022d429cf23d20abf4bd6e07e65dd6726a6458297ce06038b3faac86333b987b584ee2c5273500d173c SHA512 d5b41ec9d245f4daf578108c31b0be85dc26465b2fe5760e32ed37612585c0db341ec026b52c711757f2b983ea7a6565755c859a5094ef0f14135e0bba951265 +DIST @babel-plugin-transform-json-strings-7.27.1.tgz 2773 BLAKE2B cab55f46b2949cd1a5c4abe5750496d6738b02fcf2c87b4d607cf164ec9b72461c5127067f4fbc64e4063d9a2e6008270ba7a51977fe17f96da7fdac3bb0ff20 SHA512 e9654b5498938ea7106ae0619f52e4202b11d87fb39bad88de1f5f6930cab75a8fe239f6a3bdad4afa8cc2d1852864e9a2371ed2026cfbbe9e676b821d1661d1 +DIST @babel-plugin-transform-literals-7.27.1.tgz 2208 BLAKE2B 8d02358dfab2fef0c329b66ffaa0025b0c0cef8c9e3bd6e77bf35356d7271ed7b9a85ef4b7e3b6b22dfd5c11caecc9f42416a93ac143e33334b0a65c3e528e86 SHA512 d0708549ea48a4b4e42dcb22f3a186de64d4cf15798e999bbfdee14c44d6df2ceb0228fc6aa943dfab680750f475a54524cf0d2ba1af28ed20b255509a6fb364 +DIST @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz 3307 BLAKE2B 52caee2a183b0bd0a287189a21d0775f229fbe6b90b8767e6539ce64e6a7419737b2b40535d0b3ae4c9cef77f6c2aeee92f80663a4fe14d97198eb677fbb16ac SHA512 6b152eaa751306e5f21c6709115561f6939168deb00b96d87c4ec51b33e26966b7b3289bf66ee0fbf213ff856008e7b652979fe373c7cde02f72b55e93a42eb8 +DIST @babel-plugin-transform-member-expression-literals-7.27.1.tgz 2339 BLAKE2B 2ef82419a916d12545e3744fa2cff928011cc88f8af14c5498663df2e32ce77c6f82d55f1385c882eb79726aa408ef6ced244b90156fb56e3d3839dbb1bda6cc SHA512 86aa015f875c675237de309259c5eb3fed4abbb91da977f5a1e6a1ee8a0a38888074a43ebaa7ed80214d392cc0e40312d97207118786160e1c29109da71cd539 +DIST @babel-plugin-transform-modules-amd-7.27.1.tgz 6339 BLAKE2B 1b7fb56f47262d3fc6ed135bbde2478b7e85038ffa6244b90e7c918378137318c489d0a920c453d30911760f4416950089a7fdb08a3e45bea0b4021704748709 SHA512 882b32b4c83f37dfe816aea7fa0153bd460365038c2b990475e6319b1b7dd5f7091b271fc553fd0a7af1a2588cd28ba614445b6b68bc66dc11502321bcfd4b9c +DIST @babel-plugin-transform-modules-commonjs-7.27.1.tgz 11413 BLAKE2B 3ed798048075274e96435ed2e92815d3a7a7114b313b0e8f7996e0dbd8a939d290f4019b2cd7a015fe4e0342611fc0af4a1d437ab68e8de3d5cee566fd7fdf55 SHA512 38982ebb095362537480164544fab0386356b2c6637c851d4bb1cc62d37c7352a6c29c07141c1378566b83d5d96be0c54e2b56396e624c01bbb720943ec082cb +DIST @babel-plugin-transform-modules-systemjs-7.28.5.tgz 14828 BLAKE2B bb5f5cff41f386e60f0c1889127897d36645c44602e9a2a2793d0e88d1068a62b2596dfed144d825c9a42f2e8b55bcda3f966fa27e58b54258c42c60e9b9146a SHA512 be7e4999af7c2c239e072fcaa5e4215dc57659981a454b63c109a3a01b8b3653a6920d1f079a5dbd855e591608ebdc162b02b6703d506cc894427a2e8d6beb7b +DIST @babel-plugin-transform-modules-umd-7.27.1.tgz 7188 BLAKE2B 4be41aa344d0ee6e92c23588dd5955af742a29a3a0de9e8644d4271e74130d42fe70d9153757a9e096bfa0da08e299a4117b90c3f558722f293e42a206613bfb SHA512 890044ff10b9055d4ec496e9e961bb8eaf485a20fec7195984baddc293e44d7df27665ddbe80a9c9f24deda71a20165a3aa4dfafbea9833a8125f94d6de44afb +DIST @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz 2291 BLAKE2B 91e9a4679ace6ebdf43c5a0542e44e1096d5c5267ee8797ac736632cf124a9d2a22a6104b06d5976d536d7dcb26c38153ed4c1c9d4b4a48fb89162f17ff0729e SHA512 4acb51e49632f1d759bc3e8c855d2d33f8f5e9076ce2622925339dd58bbd27da498c7f776f11c4085ee982d736f17be4cd30fa3f1726ff467bdc7be4ee46f736 +DIST @babel-plugin-transform-new-target-7.27.1.tgz 3681 BLAKE2B b09937f796a7b7270252816864400e08bae3c56c5bc8384e282f365bff20559007db4da9a7db5c101494786789e0125f3b7f51f0503932f6a4f3499872b01055 SHA512 7fa3e261ea97434e6562add321f203bbf32d9622946cdc24180a4f52fca8ebeb5ceee691e1c3e33deec314faf5e54cb2720da5654e9bb59e7be42b90a1887b31 +DIST @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz 3890 BLAKE2B ab68c8c0512eda488652b7823cee70a26f664dc600c2228b7323b8c4b57fecd750f9a4883187058f7c1b321d406d3e4ba71cbcd21fd38bfd1861c913f84e86b6 SHA512 686661eb1328eaaf6fab5246730e7c959d59d3e8b4c41db1d1769ab8d2145dde8ed715dcdd1c28584065b1342b638290f497f4b39ae00fa4a23646947497a04c +DIST @babel-plugin-transform-numeric-separator-7.27.1.tgz 2610 BLAKE2B 5a2cb47d1762d3cc8f979a16cc391595e3431b389fb26f17394b1d14cd5bccb3bf03fe5fef325254a50b88054e9d3c76be22af0537f5e4628584b9470d0abe00 SHA512 7dd3ca01cba3baf1028710c127973ed014da4baadebcb57b0892f4f1ee26ddd7bca897cd22e09cda773b5c960e8c1a133097aa4a6c17274ca9135e110a32f06b +DIST @babel-plugin-transform-object-rest-spread-7.28.4.tgz 18518 BLAKE2B e9b995dc80754de9e93d423eaa436322a73d865273ef8ea6abf28d28397296b686bc5407304dcc447c24d6f3ef56a3bd5f205e4cc099906ac84ee00e222334dd SHA512 dfbdca0361d0cca85009889154846bfb7323a4239bab30e5cab33abb8236d35c0bf0ca76c077fbb81f06843c22b34de4dad8bc66beb9672caab35c4ec5417f13 +DIST @babel-plugin-transform-object-super-7.27.1.tgz 3569 BLAKE2B b6c6446dc587924ea13703ecddd55112d06fd27a2f731289af23045681554ddc91e8acf58a9a81c61b8c9df892bc0bb7c1caf2473e00aef10afdfb7e21e1968f SHA512 485cbc4bda6544f6c8731949f00ea64ff0b115d271fdcd3824472dcf88dff1865a552da9c77e23ecd5d1ae51a51e437f336827a4bdfb66919119514b77797c36 +DIST @babel-plugin-transform-optional-catch-binding-7.27.1.tgz 2345 BLAKE2B 6177d057d74b869788449c8bb47519f6b4b7239371e0ef2bb8ea2b3bdf523449bd0b3caba143f1f40e30a116ffc85a79bd3e069a4c51e793dc5e85c50218a79f SHA512 b7110010acd8ac7117e31499378909f8e7ca5c555258a07667133d769704df04fbb26c243665e8e4e451955ccc55d25b0fe43c20b4e0483efde7dba3fb70e6dd +DIST @babel-plugin-transform-optional-chaining-7.28.5.tgz 10453 BLAKE2B fd89f5f83413fa24eb2538c12275061bb78fc0916d3591d89cf52c3d6e2cdb22ef16cbadb2843d7ed8cf7acf1e3c39901bdf3b3b5203782a51790d2445cd7638 SHA512 37a7eeb7d21994f9e33f08224245cd85bf9c4fcc1028594936a71991695c4ea91cab1ebf914e329c698b1686b82d58814a2ae7d39600c24fac4016cf7f1b58cd +DIST @babel-plugin-transform-parameters-7.27.7.tgz 17366 BLAKE2B 49364dc46773385e03755536b5c6f4c7961406807e065bc38f889b609891a870ed9f4c30ea14dad7d364043cf59f2f0b961460f03d78b4d383272b7293bd3380 SHA512 a819184d809befa451c5433a09c640e4a46ef0ae1233c6a3cd579481574c54ef4d37db88fc669598183f58a2491a7368915f5263c17134e556197ceacd489d06 +DIST @babel-plugin-transform-private-methods-7.27.1.tgz 2380 BLAKE2B 75257089da9b597d1826d37030c7048ddaba58dd91d302df6a445c2263bcccaa482ce99c5476eb19329c2db057c5f3782d00df244584222ac546e0a5b3f0c1c6 SHA512 d74155b7e5f9e408d101823d06b74848df7f010587aa574e7990d4a0bca27f52a7d396b9eb15415dbf19a2e2fca59f637a6f10a5768eb7c4d2ed11d4212f863c +DIST @babel-plugin-transform-private-property-in-object-7.27.1.tgz 6312 BLAKE2B 6169bd88e77f30c6c14b441c9f9768ed878b88b4771c845d10f2cc3a4c1f96a8d7e1f34ffd3c30da10c7e20a180e929b1c78bdea85e1e7360ffd45b427819445 SHA512 e49f8886a4e2d573dad035c5f378d839a011ad7fb8d6039ec166e43f28cc3510ea80e0aa75f7c687c2f77ff124e6eb5a101644c63480cdcca3995f5248058e6d +DIST @babel-plugin-transform-property-literals-7.27.1.tgz 2294 BLAKE2B ac38d7b760ac3cc297b67325c27c73271f36ab6672e75a06e14b4f4e8e496c3ded566b3f113fc50d9954099623ec2016b2dbe022408b117222c7a3dc97d90fb3 SHA512 a13872dc10ae0a16bc90367c66480e8367b1bcf614969accba42905c8d6bd69278ecd0afc5f904cbcbcafabfe14fd9c5d006b81f55943d96631d316d02119f99 +DIST @babel-plugin-transform-regenerator-7.28.4.tgz 46129 BLAKE2B b5a90d13fcd3abdbb27ce8df3c31ee01fed849e3092d176a7aa478c5deaa69b1b59648eccfbf73a4497850f0e3a8765aaae8b576ba421712bef4adf43f6750e8 SHA512 f9911d425068460f66d8d9f3bc478b82dbc130ee2d905070e524085202c80a04ebba62e853b96bf8e8218ba926d8f163f9d6d4b76bb5a1bcb6c370433bd6109c +DIST @babel-plugin-transform-regexp-modifiers-7.27.1.tgz 2089 BLAKE2B 751afacad8de2c2ff31436fec87c290713b0aad466e484994e5ec36bc1eeabca8a46b93afe1996825a7167973dba8e21ed05f703b52340f4a460f76c4ca84937 SHA512 4ed11c8aba1a88e0ed5ef2d9bf8ae67cc8640aff23c77c202a92faf0fba23e1d8ce1fbf3e6386c03bebdecdd6032f92faff253175dc3ac563211b63d53b7153c +DIST @babel-plugin-transform-reserved-words-7.27.1.tgz 2144 BLAKE2B 7f5625ad76ae5d2523cd4670e6c5a6c6ac650a167425294701b3e7792ea0ff56b8378b4c9dd1531940cdf5252ce336cc69b9b326eeca87c76e82c366a160f50b SHA512 5760013c72095f8902ec77a02e46280e97e0f4f566b96cbf8babd43397862b6d9bc78615143dcce45d10427590a03b3a006b1459354ea290623054201da4a457 +DIST @babel-plugin-transform-shorthand-properties-7.27.1.tgz 2738 BLAKE2B 2293d49501d7774db1c6b39742c0bb4f96821909762c4297a10a91e6e56229be8560b8ecf4b9f8c3d1de652e9d2eea7a704a7f8b12d8a98cd9ce9813fead5bab SHA512 37fc07d6f727e2861ac1b275dd8fc5c5c42b5a4eb78e17cd6bb8de7f48a1ecf1d22075f62c1ec6584d6b90face9e46bd9303316fa84c975f69ee589d03e10799 +DIST @babel-plugin-transform-spread-7.27.1.tgz 6877 BLAKE2B b593285e989717b44aa89f2f1cb2d2bd83cceb5c781de63e8c82615864a1c15bd659c6953947dcd9e4073ec772097e1fef19f2bb77c996e79081859eb9986096 SHA512 9296f71d4a9a20b04971115584552ce93add7789a4af37065ecb3eebf9b151ddbbdcf7db5aa4831d1ccc4f6db7e20220d9061f023bd72d2aae3f5c44092834f5 +DIST @babel-plugin-transform-sticky-regex-7.27.1.tgz 2298 BLAKE2B 91ba2d4869956b6faecc27eb4ba6077f7391e8f062be3771b0cdcca61ad963249eb5cb744ae5df24e2223b3d1126876e493a56ea040fb6dbcedad674309fdba9 SHA512 96122704ee5b8bf2a8c1edbf68b74101ac228f1faad6943389c4a09e407a7543dcd7e442f109891ca7f63a3bd4f8d6568ad82e24711a1266d5e95584a2e4f9f2 +DIST @babel-plugin-transform-template-literals-7.27.1.tgz 5420 BLAKE2B 4586819fdef87f87a64f67674edc5220827e79555d4f2bcd5ef02aa10fb4a3adc325321af5ece3242a4e5f2153ca94f02a4b9851d499d81cb22389d0ce3e9d13 SHA512 7c124a895ec5d83c5952483912d1ca5d075bb1b5115b70d9290516a610ee9b4b913fa7871866bf1def667349b2a4bebcd296fe7bf94322d851a2196ff0d08792 +DIST @babel-plugin-transform-typeof-symbol-7.27.1.tgz 3906 BLAKE2B 1ff05462bee78a5cb25b45b02c9ef30c264731980839a8521c0168006698b574f9ac6d7dc85c0c4e2b4576037333e126e5e7f02399883903503fe18d2e406123 SHA512 4624882c2fa744933b158e6cac8c9ce3f7c6230521c83bae0527569f8cbac93ea09bae760e9087663222a609fa07b310d484ce52700a5a2c4452341120121c2f +DIST @babel-plugin-transform-typescript-7.28.5.tgz 34202 BLAKE2B 73834ca224bdd8f0105ddec017e675207f424698454dee8691a24cf1aa8d507ca1e4a27436b36011593efe661aadf4a032aadb953f090df657482e7f6685bf8d SHA512 c7641afaffc2b84a17ec3af7d6201faf4221227ad5396654ff6bc9309d3414e47fda733405c044725a5a7fdb1608373ebf97bd74cae1487f3f6adabf917efe6c +DIST @babel-plugin-transform-unicode-escapes-7.27.1.tgz 4731 BLAKE2B cdf31b58057f5a5eae0567441ef2598ffe087a61457ff5c4f95773732f4ae045914bb5be96134599346c16c74359a21e738f5cad34d54cd38c3c7ec373ae03c8 SHA512 62c838bfa026176ea4f6fa5f16e4d983c1d17d55b3b21d6455fa30036df2f63fc6bba74eb9a85d5158642eaa4e6e9dc922fdbb30b4a28ba9e8467b8a37c1f432 +DIST @babel-plugin-transform-unicode-property-regex-7.27.1.tgz 2367 BLAKE2B 91bc3317f1a9391264b8a7f57fa56d34cc2ffe1c960ec415e69d06d3b6a96d44638b111059a115838ae851d94db1adfbf068fe36c7c77bb4d79af62d7e50060e SHA512 b96db44b7f4f9da4c89b1a77f4ee6a1651cb4bd2c912600d8cc1bb4b12216a9f2b087aaed0893eb4b10f5f90ca9879fa0ac590ee3de58b1dad14e6b962d2f5d9 +DIST @babel-plugin-transform-unicode-regex-7.27.1.tgz 2012 BLAKE2B b1e81f9bc1b565a648c02d81850c52a73797c7fd090427eb58a1862f918169a1923cb9a03b818c02386cadb69c11b8fed4acee4ba9d532c206b63fcaac2719c9 SHA512 c6f20dab6e134688c3bb2b7a246b479a4564adf555dc53d3d7abb2b712262de059a96dff1f9db237e90cd4c1aec8f908431af32b03c7b3953f30fdea2b2ce41b +DIST @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz 2357 BLAKE2B cedf03cf0e02502fa31e28da09c29e9ee88832517fad1ff1541af9da1fb447064674dbe7a9a3ce78f5fe458d8450186c9d2378cc627828f943920e9a3eb2eb2e SHA512 12d90eba36dce1c82f6f49a5a5079f8b83533c1ce14887af6e515ebc008d2d4b299ab00b82610174bfd77e7cb22137ddf1f28166b672b3ddb339672293b8fd4f +DIST @babel-preset-env-7.28.5.tgz 35586 BLAKE2B b9a6f5395e2ff6e652df682840b4d5b8dbbfb150e315360e57247714c4f9e70ed50de61c933d499290c9e54265ae7d8241022fdbc0f61c719668551fcac644d5 SHA512 4b7ea63a88b549be85cfdf1f05f13e5194a9630e66266d0d507b482ab3ae35ca9e15abb2d49e9d22f5e6d8a4552a86ce49a1aae2dfe105774de07194df02fd5a +DIST @babel-preset-modules-0.1.6-no-external-plugins.tgz 10008 BLAKE2B bca3eceb93de242a50657d33ed71ff2e6c96a7ea8f11d986bd2e66cfc57651715f7e09a83f36e1340bdf1afc0385f78bec8259c3d1075d08ddff8d94a42dfaac SHA512 1eb7207081122e6f5a211f38db2849e5159a9ff81e6d0509e84fc4e7eadfd32f68ea88fbc3406bfac5ae2fa90443fa3f01d7ef47525ef631b5f3f827a708c4c8 +DIST @babel-preset-typescript-7.28.5.tgz 7283 BLAKE2B 77ea07beddae505f2a8fee3a1ffa7181217e07e2590710b837c0ccb9c207149ddac6ef716d5a032e5599f29163d0318edce860047ea990d9a2313afa5e704583 SHA512 f9b432e56388d95e8b259a4f57163eca9eba5dd676ca27eed0c73568fe4240a8239f840ce483768b97c0678c4aa29e3ba6bf2ba5586201ebbe9c341ad760bcfa +DIST @babel-template-7.27.2.tgz 18162 BLAKE2B 913e68e54e14eed191dcc49da3a2dcb84e496d1cd5bd86bad6642395998bb2937a386dd4e4a7da44b96ffbaaa1cc8257b553bf406f474e4568252012fde641e1 SHA512 2cf0d9f39684272612775f3f0e48cd878ff2d67b641392b05075938aa811c6bbae64bd85d72b879628151cbbdc1d8daf3075edb4a169267e8bc1f23b730ece0f +DIST @babel-traverse-7.28.4.tgz 165694 BLAKE2B 0491fb116d2c1f2574981df22bc57d5038ca27b701224cc45a457ae1916a9034cff6d8e7a2f42121f4098206b5eb6f62cdc680f6e9366ca375217a962714dc81 SHA512 604cee6e83f6aaf41abc072381035582cbc7203bfa669c17bdcbe39b2c923f60c832e0724bfea2a14e46f6962b58733a4f66037dcef181af6237360eb35d8215 +DIST @babel-traverse-7.28.5.tgz 168141 BLAKE2B 07852ae8378354ecd23c747dedcadfa7018db91fc5d5f5ea84383e23d0cc8f92ab0a39c456c59b8c2c278490c8ace13a3c7c11451383e0193ea26969117dc24e SHA512 4c20a3e2de7953dd24865624555ff44df9099009148378d9140dcd79beee9d94fc08fa24ee28917da5f417e5a7a96aadecec613a7d2e04a5c2c3895b2fc5b469 +DIST @babel-types-7.28.5.tgz 301922 BLAKE2B 49b78af5432b2a69d3156a1adeef2b955645b1b18b456515872368288e86dbbcbe8865f30aea9d425ff37f83469f6580fb88a894ac6983d8ae7a17fac928b96c SHA512 a90e66e3c788fcc14b4393f1423e0f15aa6b8f20932c8dfb12558c98db342bc2e4ddd55e39d36907792cf2373bc8ce420e6542ef778c564fedae4ddf826ad4a4 +DIST @develar-schema-utils-2.6.5.tgz 15731 BLAKE2B b69b983b436d4599e725eee95e18f7c997a36619c80ecaecb235d0cdd3fdeba7e29829e57600c937bca5abb48ffb3b56725e16e2aa2887bb7ae20f15f3707edc SHA512 d1ca783ec590ffd6afa9354c0ad67e1a2ae2908037ea292f8ed1f0794e3f8fcc8bb6039b234f8950f858152720c25b5ebde181d6bb770a6f1484dd385dac838a +DIST @electron-asar-3.3.1.tgz 23427 BLAKE2B 8ec40b09154b598d634ee319b8543bfb1aa10c6ce78ab6b4c874436ea5bdc9366280442a4c6de4bd2f7d738eaefd027d4dfdc5cf7c16f658b0ee22fe328e2e19 SHA512 5ada42ffedf8a74b2459989aad18cb032a9a017efc0e87e10f19d1132fd5e571dfbb55c45db14249231c0d0ea13423c915a3f2f3f36752062e7fdba20a4bca3e +DIST @electron-asar-3.4.1.tgz 25591 BLAKE2B dec17ed2da4be2572c8add4e41d86131337394d78a83b6c62649c6bec9f6663195b2e920d0a272270a4bd8df5c96dfae1325802f8799a6e7a554f584733b9b45 SHA512 8b8feb34f452f38b74bd245ad87a2b7ab1915d6c85e2f4e17c77acc347667161e9f9cb292bbe3751a9c0d2cb80e50e72f24cd8db2e982abbdb2149faf4108088 +DIST @electron-asar-4.0.1.tgz 22428 BLAKE2B c25287493b50d415eb3d9f7ded70649458cd35d4aaf1a4f9584a9669dc631ac90d9190c24963f288bd33172110678b40aaf55b58e026da00169be21c75c02e0b SHA512 1786249b58e2046635595fe8f10f28156f0dab4bbe4b6fef3ee8f3349b5d489e82e0b1c2e028862e7edcd7bb3b4a8959db781cbc279b32772666d35cf8c9313d +DIST @electron-fuses-1.8.0.tgz 16825 BLAKE2B af8247ce1efb7fbbe1a18b1f16c722a6c4848dd7ccc2bb85634d9f95f6a7bb9a19e1ff3ba29280a0149ded2c66a98e11df60a8e2c1cff1bae61ede0406aeb215 SHA512 cf1d0422aefc5a563f9416f5b97973899983648e2e6dc09720c278b868d7cd95b49d2d7d4e348f7973c08f3cd398a425254666d126e66613ca3fbb6e4354ac13 +DIST @electron-get-2.0.3.tgz 17544 BLAKE2B 437d666e36aefc0ff8f0c7e73fb0aac028b8a22b64644c58aa572bc72f9116de271bccd2f5d0d307ec8d710117999a4696854fc17ae4671457f49641e42e4606 SHA512 424ce9836b3d1a7555d88d818d192c522e375397bafb369031c8e8272d02f82e68c5a2a5f9f99c9060d016d469669655d0d41e92e659fad1b3ec403d4d59d0b5 +DIST @electron-notarize-2.5.0.tgz 14677 BLAKE2B 9b90ea8369a555f7ff2f66d142ba00f932dc1f91cef55224b929fe7f344b809e00473bc1016cf6b6c386569c7d84d47dd383f53b02675df191dd358b1de1cf43 SHA512 8cd4fc9f01f57fd5f91842135da43c205fca76c92f2243857c1d82bf0ba6b2f79589dce949cfa6be185331d0064981773be36ae3d949ef2facb0e0d15eed3af8 +DIST @electron-osx-sign-1.3.3.tgz 31787 BLAKE2B 98be4bb9213d0d776ab1454a91794bc44a92c761700d44eae54d7b658ee8b2a5abcdb63f7e0d9aa126928ad86827f65e193953b3b2646f3a75d8f06e273a7c33 SHA512 299f26857bd6bf6ac812031b599e32df76c31f250a3179f1e0cd2c4f23cd2bfbdc07cd4899d798f4681dab2d1259b3038266eac90fa98607a387a57747642e4a +DIST @electron-rebuild-4.0.1.tgz 36109 BLAKE2B 7b05a5c056cdb149d3a436072ca2701222ad70ab400f92b4e0e462c656939618672fea784c3ac6d597424e726df9993bc70926a3fe52a9b90cf28638bd399279 SHA512 88c1976fa21bec7fd0deff81299268113805f60e8a30d6556ec3b86fb0e6a606f9a9316ac854f3a96f45dd33921ddc9bbf6bca60acd24bd3a264bf9d7096fed5 +DIST @electron-universal-2.0.3.tgz 21147 BLAKE2B c9bd65f8fc487aad99f536789277be183ed9b2aaa967b25fb380daeb8bbaaa79f3406f48ba19f9387cce0aa0eb37680a5bee302ee840ed8491f2c6e7352f2cb2 SHA512 5a7f6c3d8215151165e479b030990044209feeba8afc4bab91f43fac9675e261cfde26138d94883925689c40278567805f0b70ef339e90646573ac93b59d2dfa +DIST @electron-windows-sign-1.2.1.tgz 207766 BLAKE2B c9d9bf534ffb4a6afd8d67890ba2022262a37e0bfae4cf67d2788a35dd0566a88e1b11a0f50cc51bce12cb858e3d3cfd6eee5ffe011c37b3eea9b21a0e1a6cd7 SHA512 61f0129eb849faf7ba438dd9883c26a41818822daed1b623780562dad0df37b61600a3bc5fd1043ae3c6b6a6c9a4f2cce937c01e29a08480a359ed9e689f0102 +DIST @emnapi-core-1.7.0.tgz 215981 BLAKE2B 42afff94e07d522a4abca1ad72ea8c97bf81fc08c14ee588736795e0658ebddb2bb849a745adddb14c094ae7a2c64c916dd00b698d98ba5d2da9bdad56d100f3 SHA512 a4974a1aaff58aab9662dbf54514a58d9925c4708e08024526b2263b964b28f25526555472cf3217035096a4b42e8f314f55405d74c2668705f67dba15610ab3 +DIST @emnapi-core-1.7.1.tgz 216363 BLAKE2B ff92ab5c391dd01db6deec0f6e5a3f2d5147347bc8797ebe957b07e885722b5665a7d5d877d16d4c80403c6d3d8bfbe05dd84f25adf0c0503e2e4e62713fbb76 SHA512 a35ba15004b2a3ddb5af65ed1d8387cbb81d9062e07bc8210444073169b2245a17969539f2422b861377c36ea5a506fa76ca5eb7079aa4c9f609237043c238c2 +DIST @emnapi-runtime-1.7.0.tgz 65406 BLAKE2B 1342edd0f7b00aaa51394fb1fe4f6aaeb220506007f88b387deeb37657e613bff2ab85c34f44980150a9d84215601187802e9b57444a89addd9f16efb8d554c8 SHA512 a0062842709869064a552e7716adb771e58c471ab912142c134c7445d439e634fbc1a80cbb993e7d2dfdbf57e248baedacb4255f054835e9ea84b32d4eb57fd5 +DIST @emnapi-runtime-1.7.1.tgz 65407 BLAKE2B 9da8788011eef35ade9c33a16be5aae9d0a76a22c69c233b0a5daef681232c8f5f04cb374b82f69a5b946a7aa06616ea16295857ff94b2627b2849bd680310a2 SHA512 3d5b49af90a62f060053d3d90cc213668479880392858444a11e39132c8badb9ed579d2675e3d38149f80263b0f7421f723fb1da4463773af51cfdd1acd88718 +DIST @emnapi-wasi-threads-1.1.0.tgz 39274 BLAKE2B 5572fc534bae35d67f951d7692376b20c7a0e9c58db3537ac05ef7c32293ef8cf74e5f2f96ad80c214f3f5956c2a39c57754dcf2a5bf0239afb2dea8806afacd SHA512 588d03759f311526e0323475b05b0a00127f0b93a746b8d3d3a2576d929ec491ab0ee3d3cd974361f165b207025c2c9ffacb86e505367bfcb55a8d95fce6a92d +DIST @esbuild-aix-ppc64-0.25.10.tgz 4151790 BLAKE2B 97c589c2bcc810bf995f51760d6dd2bb57804452fcce26e3ec8fd2039b771d4f386d95f86e793358449692fc81beb6892a0d041f1d4348cdf5bbd2bb8ad81a93 SHA512 d0d1569c0fbb978d62acdb9a49594b7e0353d7671a58954bce9e5e015859d33d6aa716e872471c12ddecfb5e3dac4eb8554237325db3b7c36fe4955ce105d3b3 +DIST @esbuild-android-arm-0.25.10.tgz 3248529 BLAKE2B 20d49083d7762d88350d0c8b1794705b0a7383742b848e900576f49c16b0e820850f2ed2744fb4a01af909d31c9fb715c913cc8874b3cd78040aeb9045c2ef60 SHA512 750031175756d42df3a5e0837392aa218b99d6d8007515cda193fbbe404846d2993d87b6c55aff7774a48ab925087b9d5b5078e6d1a2525cf6a545837db0c3e3 +DIST @esbuild-android-arm64-0.25.10.tgz 4204628 BLAKE2B 327b4ff737cd7a585c3fc1a35ffb72392b4a571e327989d23b36338eb0551df730137f51393b052e92ab8e5f6a265a8d5076ccd7a75e8faa908f2d5f07b72b4c SHA512 2d241aede0da872a6ffd53ba58aa216463d2243ab93953a8dd4a05475138b781a3d56ef3110314848fa5a3cd47f83b41fa43feb43801a7e338a0d0b0a7a91f7e +DIST @esbuild-android-x64-0.25.10.tgz 3248527 BLAKE2B 406adb123f22362328b2a51c270923aebfd673760aea3847d6c39887bc6fd9e9ec94e1068f227b73250a4740e3700a3fa0769e53a93597ed2dab5bef935d6231 SHA512 3220bd09674fadf8626dc5f0af7f69f616b5c7495927d29a55fbf30345b1c33f444d7e2fe421df174f5bc7ddf99c79618be331840eb774a45140b89581252d12 +DIST @esbuild-darwin-arm64-0.25.10.tgz 4172250 BLAKE2B 889645dffc336602be76dfb6614eb210d7ba90c2fdb147e375310ba5bd717412f56619403581cdcd351babbe2f7132716ed385bc0bc067d7e7cb46fc3812905c SHA512 242ef86dd5dc404a56f4a915df6e96a596632e0b926770df4bcc2baef3cc1e040e204206fec3d710dfd5f08b2ca0985b79f2d1711ab0e91407d8d9e9769aed30 +DIST @esbuild-darwin-x64-0.25.10.tgz 4445116 BLAKE2B 9e339e37ae0d1e1318e3c0bd0c0161836c823ad539b0717f1eb62f011b29033b751ed9d0d8ae3255c98324520b4d3a4394a24968dcf1bc842f3fa43be0944133 SHA512 b60b96835a2517a0c6ab3c2cf7ba4a67c1b62fb220d6f8c39864f0713b981dbb94e934e325ee455db82ce42d410731db2766e8d66dd69100db58ed8fbda99172 +DIST @esbuild-freebsd-arm64-0.25.10.tgz 4016230 BLAKE2B 86d8402782339cff534c58df7b96f6ae428e2bdf67f79fb8e5a1ddf353ad114340a2949063b2432029d91343dc147ec053003a1beffb537ebd4f92e707383c95 SHA512 dd98a84904a0d474f6374e58c5e256611f8b89b7b76d111549d5a1104804c56683b7215b6d759be3d4203ef147f2ed37bd43d7d7426124f733eecf6df7e6e85a +DIST @esbuild-freebsd-x64-0.25.10.tgz 4370035 BLAKE2B 51ac2005b9eb2bd0a795b8ac091a92044769f393888f1749c58adad430ecb60ab62340b667ea57ffae85d1eed2a0a47dc757c494ab735f098cb313b267c4a470 SHA512 2cb8097c7264d35e006b86a71836e1f1b988e4b93e422743986cee0b60febcfee6bff19e48df87dfdcce7fba4de4df29d39f4570e7ecd9b565ad1af848af56c4 +DIST @esbuild-linux-arm-0.25.10.tgz 4068675 BLAKE2B 931a36204d4466d9550d514ac01801d19d6b8b926c1c1d60ff49a43127e421966c478707150731936041858a77f59837a94cd22e64e48560ba9d170cb51f2aed SHA512 a11df51ad0531580aa10100b23dafa5b1a14fd9a1f665f7ada9a2e6514c46040af345fddb572a4bbc61770992180afdb794fb379d5df2331e28d245aa49637be +DIST @esbuild-linux-arm64-0.25.10.tgz 4022872 BLAKE2B 8e51f6662a8c9bb3a21c240f3f4122d0b5624ca39e3c794e3e97a943fa5d9a47438cac95342d48a9300ca025685861d24408542f582194de9ec728485dc634d1 SHA512 e65b8958de98281b1ac1de5ff62e3e73e81e622544c36d05556e71d2fd6410c58dabc51cb458c388c0130712ef9a61c0e1b7fb17a85345a260b60845afd8b389 +DIST @esbuild-linux-ia32-0.25.10.tgz 4051013 BLAKE2B 7740f8b8ca317428fc37dc967fee165f242df9fa2cee2a66d10ffd6c0ffa698d05d6aa21e4ec4be8e8f6234b377b1448d1084ea2c0341401d75271fc330a6fb5 SHA512 36b482c762a29b71279d6812e13c67d101add178a9a2e99beb3eac52d9796ce1192152a1cdfca9fcbcb0e02d43218bf3796ff999660f045254ddaffc62bef90d +DIST @esbuild-linux-loong64-0.25.10.tgz 4061527 BLAKE2B e19e55e069410ee1d34f873dc9567be2ed0d34966aa67a565a2f584a727014d86419d288248edf88b18cf000eddd66455f9edbab4f478f07a550c2b8cf04546b SHA512 c684a986b77801975af3ead40c37c3f49e8550c8eb913cfc8ada53213338ff181eac06597055bb0effacba7ef7df721f2b1186f2002afb735b7c43097e263e12 +DIST @esbuild-linux-mips64el-0.25.10.tgz 3713535 BLAKE2B 392397a7f7308b9d6d3755f0e39e85f1da9201ab4f4481dd46e178fb05d6e769eb92aa62cc43ab8649e822f2648243695acc8f9f56fc54e76387146a9533c054 SHA512 69be9e8ae0b0a0c9980f24e7ca9b682a4552de4f1fcbfd54beaec38f97335c8e831761aa0f64e8227048d121cea79fd7d41759dba44a739faa8d03464417a544 +DIST @esbuild-linux-ppc64-0.25.10.tgz 3998145 BLAKE2B 0ac22232e37a493605b64f1829f576f92b257a6d5ccc77fcb541f9835dc82bc53d534d77f602c8e55e0ef3e9deec2784b7985b789817935426db2784359f44b1 SHA512 34b8a7cf33a0650b06a6c4e411b7494c26a7c00e7fc28ccdf5d4a0125d7685a5c9073313a6cb1e6ee5d1e366ed84e177cfbcd71561f5026bd6ba750290113810 +DIST @esbuild-linux-riscv64-0.25.10.tgz 4034352 BLAKE2B 71bd84f193fe27e588d486bf0141b89a6a791f38c3bb946d70b6b4d51a579d91f31b7dbfb0fbc3dfb63c2b29fa5b8737218dbf8d4f098e36b1defa8a717fe40f SHA512 144e79ed77590ebb57f0d308780f0b0495f7742d8cf15197c1fad0594ecb07948b39a8df248c6649dc8bfe05359bae19b3d0812af9b8500b81a79689f0e827ac +DIST @esbuild-linux-s390x-0.25.10.tgz 4204588 BLAKE2B 7b501772b2063d5680553819831081b57330d515c945280b0bb45b8e912a8267af49a6c132eed58f81a929e63ae1d8e2a77da244d866251af3fcd641fadee7d5 SHA512 dc10526e0cee07d6a32e8559934986bbe107941c24bac46678d61daa6ce798c73dcc60121634acc6090db2a997ba0a4f934d2027424d2a1ffdee7c668dcb5d7b +DIST @esbuild-linux-x64-0.25.10.tgz 4373599 BLAKE2B 758f0bd9890f62cb53de297f13c95f616d476bfd311ac26a7e42c3ccd5d77477e3f48e3f43bbc38143bada71686534508e44dba4909d5f8fe388c5d204d537f9 SHA512 4125fcd4a845a191b07a75723e86deae081d5b59eb4194af7d50c02145ebdd6a8b459199a9693f3f84fca7648ff9d7b64abe473dcbe385c273122ba52a09f1b4 +DIST @esbuild-netbsd-arm64-0.25.10.tgz 4004346 BLAKE2B 033f8af1ac5c61c497444272306ff95e98562fcf1a2d3147e002a6b5d67d61d1cfbe1ed036e6b6c6dfa009e7abc65751fa85c8ac00ecd07a9500da6be24c64e3 SHA512 00a40cde07d87d25bc5d193c0dd302cda2d4141d79753ad97e75fc597428394a54050f8d6801423f590f4bfca46db198cfbaf19f4592e3cffcd65f61165deee0 +DIST @esbuild-netbsd-x64-0.25.10.tgz 4355991 BLAKE2B 5ebcab936356c8f9800cc8fa296a00f1e43b47dabe22e041203ed3bdab424ce8f1c863fd4ce286ce4daddcce40bc845471a2dc96131e3a0d94e9d24c87b5a523 SHA512 ed14f2b433c653a7de93f856b8df6a4297863c16457c1e33660733d952b6679569754c4423c24a62c83725f3b49ff67513fea5d399f4ba70c235ce079e14068a +DIST @esbuild-openbsd-arm64-0.25.10.tgz 4013001 BLAKE2B f043fad8073e4ac64317687eca8f005af344c2f7926d3beeb05c18e87ee1edc742d20e75419c83d85af6d97f40ad566639bd0b7295364b7abd3bf8d073fdd92c SHA512 e527b454cf56b6aefded8167f9d2e299fd99c7a31cb6db07da895406c0e697e966d0638245579b45652f0ed918e01598bffdcd8334bc6ff50cde340d879858cb +DIST @esbuild-openbsd-x64-0.25.10.tgz 4364531 BLAKE2B 16a2f86b19d0a7e0ec88946ab10280a96bbd0bd83a474abaaa11a74e211f9aacb83e16dc2841aac4098ee22c30afc038d6ef25eb5b53d0c4e9c4b40882e336fb SHA512 5e40387ebab54cb8f86c4301fb61e7234fb84678dbb8665f7adda0b3f2cdb391dcec3f3d65004743480bd8d0fa2f3bb5f905648e9df1d6021c3cacd134ff1b5f +DIST @esbuild-openharmony-arm64-0.25.10.tgz 3248533 BLAKE2B acb1de8697b0d60cbf944e1a85e6445722532078fa85885713729ceee655f48cc267dfd8bfd61a5ae2452566fe7186806db1ee95bbd1f04af17b1fb97fa3d5e5 SHA512 0154d20614d7f18fc5cfa3a6215062a7db49cd9114718f162e1ec8e7dfaea5ae7f18f861dbf68ce9bbce310c92b299c2087bc58bbf6432d7494b5c340d701e6a +DIST @esbuild-sunos-x64-0.25.10.tgz 4365677 BLAKE2B b0e96304004d934ae962d6f785b8753bf4dfba8daf14ad60cec344c9afa09f4f12bcdf266955ad1200db2f35f81319646e8dc799e0789f189bd1209045055b0b SHA512 7ecc24dd74f451fda918998ea4307bca49ea85590942401039c5bf71c54eb5fc74e4b91b58e69102d9f949aa97ca978a42b6b541a11af38d4f82b48bf6e6d23d +DIST @esbuild-win32-arm64-0.25.10.tgz 4061189 BLAKE2B 99e7f3942d04b0df4d871c886be593aa3838b2e2d50d6fd0e8efc85a6bef2d7cc21fa8a45cd30fbef597646b6e14863228b1caab936c15edd5f12ea24f23cbad SHA512 6a1fbd6f9f4a0d349fa5a0a0e95749a0e42f2a3237de74da42be1496e4305bb684c1942c6cc09f4e67c43b85727b03b1c7845a0d3ff10b2f6b6b618f5a63bb2b +DIST @esbuild-win32-ia32-0.25.10.tgz 4206312 BLAKE2B a1c6fceeeeeb703298301e7f2a280286b5b3291af907151fbc003c7d9e0e219a07364fa32bc410f7225b523b9c8be878adcb6f8235a2453bf830dcf5c201071b SHA512 4073c36ca92b18ef3f733f4b2959c9536d873a2e29c599d98610361d81decf93f3e0979f7e10e37fce44e7b3b2728d7adc69f334256464ad1bfe7e18d141dc4b +DIST @esbuild-win32-x64-0.25.10.tgz 4463649 BLAKE2B 2060359af50e18e0554e85378b7343cad1a98e68d72308cee73c88ee4189333a72096311043422b104e2a52c129b4a6d5bea99ddb2f0827c88d13ef8a42c8047 SHA512 f4aa71495142bb488ad68c287b3e9a0bfb3f11d5102c337769d4f1182ab131586b3c38fa6ede5d6eb1c35d4baaf81b36bc04c5041ad04b9bdd43f11dd8ffa76f +DIST @eslint-community-eslint-utils-4.4.0.tgz 63694 BLAKE2B cdd49eb64718456c501dc4bddebccd67e27171591c2fefcca4517313a984e24af059859595fd6bb6b0eb0c4afd6736714843c43215b71e27d766119fe1373c1c SHA512 d7fb00e1dc2bcc1032794a10ea8c5a8472a6ad9bec9cb0a0e117f15b76451869909123503c534b57d09410540fd71f446171d3a39a7ac5d85933535ef69fc07c +DIST @eslint-community-eslint-utils-4.9.0.tgz 80151 BLAKE2B 01783bd38dfe3794be4d51cfcae4124304fc5b12f13cef16f79ee08b20c7ae89750560354ca3e0576255dbbd84e74db32a3673d8d1a4bf0070732fdf25c73b9e SHA512 6b25451ddb59fa1b2ad6dd83cb6e300a619719ee2af46bb7b2684b6002c9aebe3bdd91f6eccb2748bf8b2949629a9e01589a8c0cc2e63e9c7f43d47738094be2 +DIST @eslint-community-regexpp-4.11.1.tgz 69866 BLAKE2B 21f66ce50498c26748b3a95a8f1ecdd7c0df3f01288165976a6b4733502fbf377c2f03706348e45aff6065f9be12b062838dbad706e848f9f37c2a22d2f30ca8 SHA512 9b80d537d66ab246682d4e4695665a7700e7628def004c9d8946b207dc2274297d7df5b1d88bcf9e9ea7de89f9ac99b38894b0f41bfe6770a10d574cc17098f1 +DIST @eslint-community-regexpp-4.12.1.tgz 73232 BLAKE2B db25115038fd16dd8645ac0e733584c38371be59990000c6fe7803ba53c113b7e727419a4ebe3c5f5996c2118ae76b9bd136dbfa8f7e955cc872b3924210224a SHA512 0826420c9b9db81f4e524164636220a69359322da5050803daacf05e41226b5e9c81eda98a363f6978bde8224caae0cc9f79c97653d5d40e4aac9117c1f2cdcd +DIST @eslint-community-regexpp-4.12.2.tgz 73417 BLAKE2B 1b6793c60c8fbf956651338bbcb9f968c99ff3a3a605d9cdf56918fe1c05708b1775d3d5f3a6e08a4b00760522f6b21aee82d9f40a9065f04d23137451abd31f SHA512 12b8924e5b79382f7fed25e445208085f4b1c684948019b7dce1fe224c1b769828aac4ac520ef2dee87e208088fd08380415abdd4da2dfd4699b271bc4cab87b +DIST @eslint-eslintrc-2.1.4.tgz 126226 BLAKE2B e98da24fe4be15d2b9ea9a8f5f2369a9a6feeed768c68f2d6f83f91fe5cc5bd020cdca4fc4fa04cf5cd89a1eeb382dab185c06c9f4853164e9d5520f962be300 SHA512 dbaf59dfd312eb0549b6ca14975d0beb459d92125574f1b6e10e1e6531f79e717a969bd24a110adf04230d7f494560143ef3e1ec23a8b8fa54f48aea69916fb5 +DIST @eslint-js-8.57.1.tgz 3778 BLAKE2B ba2ce095e5f5f32d44c0a70a69012d7256cfa1da3dea484efae8422826d563e39adab6a8d51ddaa0a72443324087bca96a622c231f704e47fb6a8360121ac8e2 SHA512 77dcda31149320a0cb85cb731f5d8cb57bc929249485a1dc8d5fb667e18af84118ed72a93f9c91e31f8ddd301c1d372ef7ade722bf9331c09be03042617d73e9 +DIST @humanwhocodes-config-array-0.13.0.tgz 15888 BLAKE2B 3d7bd0d1ca8ee442150176aaf2780d634592e48cc4fe409f75ce08e3bd5d96a3eff7ec43f4b1495a691e0043a4589f6733a9d8b672bb183ef43319e48bbd1e00 SHA512 0d92c412a1564058b22ba8796087b29cac7b265bc26162f470899f4915d9f65e1283679f905193b857fabf35e32b572ae8862453e120fc98b35f0f930f6bd137 +DIST @humanwhocodes-module-importer-1.0.1.tgz 7090 BLAKE2B 7ed185c929fa88e2f327543b0079ff537b3eb9f0a92a8a5dc19842d0f0d1f674d4121fb3743ee2c15626785e8b7a6beb8a73b7c0150a064d455ea504d44f00c4 SHA512 6f1bde57857cbf961be277054d3deb3d281904ea429237cad32e28555549c08b8354144c0d7acfc9744bf7cf22e5aa7d9bd6e7c8412359f9b95a4066b5f7cb7c +DIST @humanwhocodes-object-schema-2.0.3.tgz 6184 BLAKE2B 5c0dd038fba5c59389110c1c2757aba54d68acbf4c7c52c4a0a56b1953c88ad2d0714010d276c8153ae3a563a342b0b2ab6e200ddf4492c7cfe5146d9c2ef20c SHA512 f77cd874c112fdcd43ebdc9988a0c18f4576e2fa8dcc1fe4a05dba28f69a8007dddcfff8814961dc3cace688002be1318bd432ce50fcc7fd3c66def020a70370 +DIST @isaacs-balanced-match-4.0.1.tgz 4438 BLAKE2B 0c41c21148d58cb6c444e43a5bd2d90bf51b92ca96d40008067f37cdaff85c29668060aebcf7d08038e78a87ca07663c907dfc914d96ef451c7392c5cbacb2c4 SHA512 cb3313b7d9446fc1afef3462a148a54a0948d1cd2c999f64e43eb9ebbec32d62ed589697212dc2a9c1b250507260a967523e939232d5b39e1f065ebe4e21900d +DIST @isaacs-brace-expansion-5.0.0.tgz 7503 BLAKE2B 74188672074d6e912b010a3d97a15a695ee5d5b5677735cd11806176d7945885d158f7c9bd587f20899290cff50f90e712ba842387d644b2deb1f36a788391b4 SHA512 653e790432d5d32bf44419b673332267e4aa0863bb02f98e3371bfc36c6154f1feb5ed1a2a0163981bc694bd5d1feaa5dad8063b7315adb6f78c22b2be9827c4 +DIST @isaacs-cliui-8.0.2.tgz 6089 BLAKE2B abf8043fabebc829ac69f8407cae6d353ae725ff244fa8a8be7a12581e7dbfea6edfa0889afa7ddd2c3d9a15cb18ffe9f4d9cae5bf40f617a207373f6e711deb SHA512 3bc8dc8da6d76a578e1bd0d0d3e0115d66414df9cfe16340ab3ba224aee5978e009b118abff2763384cf8f18d8df39c109fbc15c5cee726d6dc1dc85c9b16a10 +DIST @isaacs-fs-minipass-4.0.1.tgz 12383 BLAKE2B a54f95647f2f68ad8da0a8977759ee218e64e6fa64f0a5a3141c8b71f1bf50ad1239d439c0c2caa9d3bb4892f25a3f84c7e6b3e05ecb631515b79586817c6b18 SHA512 c209bd1219768e97aa3f7cf0ffb9a8de4447169e4c10386a01dc32d5f4c69070309e418e56c829bd084bf01e67d6a95bd358d5de7fdb23465f669e65580d64e3 +DIST @jridgewell-gen-mapping-0.3.13.tgz 17972 BLAKE2B b5dd0475691651bf1a6c8816739572b720266a7d6e3fc81c6bed8cad4928128bd76f74d89f1cc54a4d06ab14ddd7d5fd79510bd14f3aca5850d58b11ca2c4f4b SHA512 da492dffb9e227a32010fc45d1b61d43a7ad65a03e7d0bc370b29c921cb5c8840ecdaa0a8c10634a3eb7fda2d58d8137aa146de5dbccfae5327c283a50a0816c +DIST @jridgewell-remapping-2.3.5.tgz 14624 BLAKE2B 716e3ef231d79beac7af535fca345e1277a9200a329c492b6a2a0e3b08e7c798c29ff1583b444a1ec92118e315291ab60c217783b484a643cef7e4ea5f5aa322 SHA512 2c8f6effe95a606e03b354c3292256d983eb22571560ec22d9f502eb1078de5b9e0a383157895f7ce0990ad605887e9334e5feb50297c7ded3e082876e1c8711 +DIST @jridgewell-resolve-uri-3.1.2.tgz 9622 BLAKE2B e1368c23a75efe6d02a8986bf6688a32ce860d954330ccdf10672aaca8687530514f78c6d28b756fd886b2e090259f56333759d853bf287409eae242550cbe23 SHA512 6d12128022233f6d3fb5b5923d63048b9e1054f45913192e0fd9492fe508c542adc15240f305b54eb6f58ccb354455e8d42053359ff98690bd42f98a59da292b +DIST @jridgewell-sourcemap-codec-1.5.5.tgz 17469 BLAKE2B 3504411099bcc4a7ed0af586a061f1be19dc863261cc865cd1e744e1102e62be26a7c2df5dca53ca58443df961885553888eef8d234c0f1645cc89243a3588e2 SHA512 71843ddf5d20aeac6e7966e5f96b885086a251a0dc8fb58eab97d58449633558117ce52163d7f2db34ef7e8a96b2779b87c4a5ef45527056c80af2672ca0743a +DIST @jridgewell-trace-mapping-0.3.31.tgz 30747 BLAKE2B 2a477708451e3f5c8e694092636e7b2ffdf017ed5a43f652704b5778858f2979c8ac66e270dde53641505766f0a3b28b82654729a77367b042551db163b8ea6e SHA512 cf3351f9275048327373c8e869e3fc410a0242bf0db98c76748232b65d507811191c9f6e5ba85e6ecad881bcfc849c1441aa374d608cb667d5f0dbb5b7038b03 +DIST @malept-cross-spawn-promise-2.0.0.tgz 8110 BLAKE2B 62857fb1d338d391ac10b5cfbb10e82201f26d29df09dd336829c26a378b3f6965005e57bf668025068e1da1c8861938b387d8e884dd405fb1bfe77940fe510b SHA512 d43a4a5346794e196d0708cdc92302d788340a46f28426b3f45921c6a36c648eae00f257152f1c3179412a8dba149f19b96e92f4608c711f483b99365f9ffd16 +DIST @malept-flatpak-bundler-0.4.0.tgz 7051 BLAKE2B 2ccf4709f0d374d1ede7f749bcb40655a377a6d3cadf8e260ec785f5763b29d60552ca0a046164b3fbabc81e59e3ab2ed823efbee95664179570937dee1e0e64 SHA512 f503ad35f7dc385fdcd6c78c0839e37246f747d587706df8b64cbe147a4d28a096d3073fb1c60bc0cb4efa9b721947cc5b4fdbfe7e2a46200b95a14773d3a3ed +DIST @napi-rs-wasm-runtime-1.0.7.tgz 586920 BLAKE2B e24d3431904654565732054a3ec601e95014016c204404384ceed4256c51e17ab26328ca150d87b2ece6871c237e8974e45fe22751577233dd0cdfc32b61c746 SHA512 49e0e738ed1393b3a48aae836d79a604e0e03806fd769f608e5a61a244d4c66b7c53796220fd59b28cc16a11faf63fd126ff917ece88c142874e041827f1c103 +DIST @nodelib-fs.scandir-2.1.5.tgz 6586 BLAKE2B d9f7ab1fb336fad0d1829256497b6f1938507ca8e502100a3985411dfc15b422f31417336194e7c6fa4f25896deb8769e657cf44f20230a6cb07b338ae638207 SHA512 beadb806adf29b91c4426d8d282af7c970f08dceef4ec1138510e7929d832bda75baa2d1f831eeae6fcd393a34286ec760753b7a9a4a663dcccaa62e3017fada +DIST @nodelib-fs.stat-2.0.5.tgz 4182 BLAKE2B 662139eac73be4355cf602f8d41bd81f460d8c042687ea8a3eb136fbdc18ebdeb4e4ea32fc35ecf59e6a623a6dad1ee1ae2c1590d70bd7bf89ce794c4b41bd11 SHA512 46484f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8 +DIST @nodelib-fs.walk-1.2.8.tgz 7360 BLAKE2B 0e7fe6a8497efc7f0ad61b689e8a48b4277d9a9190ba614f4947af3638e314f04546927be1ec4e96cfdaaac03951435e07b8c21761b7b02b4011e92c8d982681 SHA512 a0607e53196059c810920c28f067041b07a6a1316ddc520ef5a6da6c199a1b05c8a01299f864f2d293f5f396de1a0ecb96287f3521d25765c0b35967ce7a1c4a +DIST @npmcli-agent-3.0.0.tgz 6044 BLAKE2B fbe8539a73196170527a65213f0e197390dc67f1981f42b37c119d17615a513c6969079a5a255b5eab9e81591e5231eddaf453ccbf79f09674426abaad65a076 SHA512 4bbf4d74480341dfcd1826b2e930a85735d28fbe2c9116482897292630b994eab7e12673c88e8caad8a25a88955a856b4dc1a335e0b88a96e1d552079697c5e5 +DIST @npmcli-agent-4.0.0.tgz 6043 BLAKE2B db9174d16a93d2da321bd0f0c16ce549c11f432a50190a307b54349660927e5e7c762d2c2596a41c8811c5fd814d00d9387e79351f2ad1d9b062d4d18ffdd74a SHA512 90041370437d13c1112d583902c1b02cda056fea041ba7a781ba805363f8de00f8244224346307755434f7a16c380018a593c1d114add338089ca2004b597940 +DIST @npmcli-fs-4.0.0.tgz 8719 BLAKE2B 3c8ee22729c6bf254f356da88a22e0726b2678fea94278ddc3c04d63fa3bb0c61a90048c92ebe09acba07ec9b91e0386f1f616c881abae45ca6e595b4bda2cfe SHA512 ff11a57b323ac5f18ef4dc2e2659f0cff2b5e2a0f59024801ad69c0479c6cde008b8919acdca78e4a3f936ec80457a0a6fb730ba5006595b1b792c5d1bf71bd1 +DIST @npmcli-fs-5.0.0.tgz 8720 BLAKE2B 62b7602ec0a9990c94ca7cf4e98464c2c37ee759fd71291e0d876e5ff3a6489ba23a7a5e801cb393d48d06c6310ba7e5b59757c66f52cf3686dabff36e05f1d0 SHA512 eceb02d6034e44111ac0e6b9fa3da95cdf6fb2271a20e1f970f5f1a11e9f24e987ebf117a4907609a8d73aed5f3d116e9f69b5964b44157d75f8ff3d86a3bfa2 +DIST @npmcli-git-7.0.0.tgz 8940 BLAKE2B 586bf5a5bdcd296afd70c0ca21091efd263ccb94a7c1e49eb0c12be2c706c61bd482e6d556a8eca35845b014e1e624e7931b4249d148494bfb74ba24e74b0a9d SHA512 be7cfb0551ad39cb490081e8b8225dbd6061b1355220231e520668d9ced7022e5de51ae5f344b51fba0fca6ecad37711ba29cae50eacd9dc37ebe3e05d04dc30 +DIST @npmcli-git-7.0.1.tgz 8942 BLAKE2B 9ac641f33e28dbcda70e505d1f069a15c99ad49fc99679dafc8c64c5616f5e558f9e13ac3f3f09f1f9a2151912d2724f75c1c5b1e0880e5950d1c6c517cfea57 SHA512 f974c5c4ada3245fc4249e52a00cd7937ab02037ef15ce7f83e6c3dbbe0b67bb98ecb13cb137c6e99f2b39a9cf976644bd95aa36f98476d5c2db9704e7855ca0 +DIST @npmcli-installed-package-contents-3.0.0.tgz 4875 BLAKE2B cd8b7c9a14c1da3165b91558fc6c0ff73b8ea161bc15d5b5581010c0c1caa9faa0a9b870cea8018ea10cdec46fd21aacd0c0a3ec69a0fff4ec9bbf4a3e850b04 SHA512 7e4c683ee146bf1cab1fe390cf24e45f62d411a9ab1788d94a6c6302d3cf1c718ed1daac43cb532a39c84bc4809cf1dd936234dc10ed48c4792bfe25a0a83bf5 +DIST @npmcli-installed-package-contents-4.0.0.tgz 4873 BLAKE2B 53587716aa3698f4487ddb9b60acabf5f5514e2d3dec905f12c3a6a70b74ecd8f3fb3b1c7bc47ae77eeb9cd69526064eacbd891ee8db3fa17738094824d12a79 SHA512 c8dc8076407107bda0b59e06af05c233465479da3d9c86ce30a7c68ede82bba0d77f4a7ccb53d589900a0c2f2af24bff7ee7f1d164e3441752972aef9cfee198 +DIST @npmcli-node-gyp-4.0.0.tgz 1598 BLAKE2B 0903558f47590e69c070f5a1372c582e7c14a5b6a2fe00d940e8749071bd25dc1f396d9b1f36ede1712e1747a906e97a246e31e28ae7fc60c8b8172e4fddcc48 SHA512 fade4367a98efd0161efc3c1c8cab57c6480b9bfda80b2590d17c944c78e48d0adf2cf585654e3986a483f03e1bd74c6508264f96b33953d2b41ad56df7cb334 +DIST @npmcli-node-gyp-5.0.0.tgz 1597 BLAKE2B df3e893302ccd87a7dfe05c34f7170260165abf472f436e1182bc4b267372df9496c701a301b410724dbacde5a09823778cdaba41c338fa265838bb799c179cf SHA512 bae1b91d91572dfc852aa83c432a6c9a02d05bbb268918d5738e5ba83fe87d965c47fbb112381053ca833efd2cf5311e314880014fc60b96d1ebef947538ab21 +DIST @npmcli-package-json-7.0.1.tgz 14778 BLAKE2B 255bbfed1228fbd55de7c95b6d9780b1f4c496f560dc22e604a1d71fc7cf06c901fda89865a06aca669eda1a4e4f726258807dc1c9f70934a49f5077db654c65 SHA512 f79e9851e2346084db936f8a9e2ac2903d7d1cbcc44b485a6d5f8496cf9dc99695b1a33a5464a23709d1bbab770996aa0cbcf8297cb6cf1fb437f672e988e500 +DIST @npmcli-package-json-7.0.4.tgz 14773 BLAKE2B 5c12b868cd4c93a35a87dbec5d61832a0855310f4d93e51e3d44d6d86a26147a92a16cbe5e213c69070eaf242769751f2053358746958b70e36c498ae2ad5b2a SHA512 d30227246de3fcae34389b7fdf76b1e3b59f58ccd94e6e8e43107d703853b7986e08fd9af60d869e5b3199f37e3ee948b4d3c8a4fad9fa47f0c148a5ede1dc65 +DIST @npmcli-promise-spawn-8.0.3.tgz 5360 BLAKE2B 0e7b70b494ef368e3064e527d1a8afdb438b01e2f20adae48b8912a8b3507fb54fc00c75b282b45c911a8de28dc9a39838955854d4ff24bdbe89a99e8221a417 SHA512 61bd3449668be05f30f8af181a1439e7ec44e1150d74c1d5e375991ac89333dda04be942d261ac9fb23884bba0ee96daa34df94ba6e3dd8df0d1c50d18b7e692 +DIST @npmcli-promise-spawn-9.0.1.tgz 5334 BLAKE2B c9ec4136385ce9296fdde81e470dc716bc9eeefcc9ea1a05604208d6d9e0b786611817e648b20df70b1f74e15ff0190b3060aad2fbe11d82c18eac01aee752c8 SHA512 38b51aa2a06ecb1793a94be30371591625d47d80b56a5a7749af7d816dc4503cf7b59dc26d70dd719eea58a07389cac995e220b9ca166a6587d6c680987fe5d9 +DIST @npmcli-redact-3.2.2.tgz 5846 BLAKE2B 23c63ad96d8c4eb9be28793a88e38fbdde6370791ef9a132259105f2b6f3a900ecb4805b126e88605d13dc2fdcce0269d53ab7866d176a30a552dccb13d61a80 SHA512 ed599802693872c1afd3c433ac329271dce7d758c73c51b2a895b7f45c8f80fb80a77cc86949ae0a8d72c70f5a1acf8d109b93190f46c2aa6df77bed26e6ee72 +DIST @npmcli-redact-4.0.0.tgz 5843 BLAKE2B 33b3dade4afb1790c0a3c43eb9d2d6d72798db6f6da63f665150368b7e60a335f1a04ef7abc8c7deffb02efb259974e319b2ace5a1e53873ba5fc1cfb9de1386 SHA512 80e060e581cc7d9cbe4df1c0adf56883081f05e42729b6c6a37a525322bf812234015bbea4488355c2a541bd03f0c8352cd45920b67a5c6f08e5d2782ae01df5 +DIST @npmcli-run-script-10.0.0.tgz 7480 BLAKE2B a966627c3019a609593d37187efb022a982ccf102462ccd82c8f4cbce18cb5b6c229ff67e69264cb190095591b48d08fca3ab1edc9df8df608657d6f38f0d714 SHA512 bda423e2771c25b02c968a48bdde3da501f6361529ec6f696386f252d9b085edfb659bae6c6af1d1e07d856d85dfbb95351b830cae9bc8519717eec90ae31266 +DIST @npmcli-run-script-10.0.3.tgz 7482 BLAKE2B dd3d11d485a942f259c89eacef980fa9b4129f7b8b2def5284a7c577f3c0a6a0cccd7433d2be7d0c462416542362befdbf24d09a4ed4eb79f4cb1096ea7afb83 SHA512 111d8dea2b5193359b6ed56667d58a696c5594a94e781145d7fef1c7e280e49d7129ae098d4c0175bead0e9934bf5a80f9df950f01c8f6a98b7174967268be47 +DIST @opentelemetry-api-1.9.0.tgz 126777 BLAKE2B 5556cefb651c9e547eed2d60f7142079ec2aa76eace1f8c2cb83fc1d3b0ac615f39905fc16b40464f26e9957955caedc668a2322499b93511850ee2a348f3740 SHA512 de0880390bd9887e45f5b325322bfcf8648f31eaa0d1d6da7a8e7cff44a503db314aa6619d4b71cd7f7fd85cf2852f6c5907f94b418913400a06b16a8e979872 +DIST @opentelemetry-api-logs-0.204.0.tgz 22692 BLAKE2B 3af08ff5bc932586ad26a780f7d737dce3e0c2443800e2c4ee3dcd208de4cc32860da1380590cf1fc99dc2b1edc190a35b052db22efd43e2355cfc39c7cc0990 SHA512 0eac58f32a006a204f8afa090f852d82b312f20126cd9e659dac733e88f32d51c11aa3f18169b8cdcbaf7141d98aa43a9115f62a57a5dabf72f1c0361c0b6aa7 +DIST @opentelemetry-api-logs-0.57.2.tgz 23264 BLAKE2B 0c195ddb1e2d9e8fd20303a994e7d086d32b3f39eacfb4b9970b331643ae2684a6cfff98bed2890b36d48f86e54e77c89d84b1736cb0ccbc41c1be8fd9ecfe95 SHA512 b885f9d8d9d333488187ce0c4a1969a2e23b50aaa467b32b52ccd399aca91c1bb8afb3687f39d29d045f27eb94783b500e3eb0f1e1468392812c303000fcf5f8 +DIST @opentelemetry-context-async-hooks-2.2.0.tgz 13597 BLAKE2B 117b51c6a964b7adfc0352e4e54b69b0f3bd34871a942f44a76997dc8c10901a0e1854915ed708c7d9e4ec7f712256abda6845a9696bfebdb4b8ee9598d9691f SHA512 a9190b5a250464d02661aa59eca192e42e0e9812dc3ff1f67e85de3846a8c18091d308bcf5f1de8eb7d87dbb8b54230ba7f7566572af42eb1d6d41198c445fc1 +DIST @opentelemetry-core-2.1.0.tgz 70731 BLAKE2B 4a9579ca34e961bf1a4e90a220747ab849db2da31f0a2f2a6c2bd59f9dc6e5686abe191b553e3e6a27515e5612d5a0cf9196e1ee11b582df62f38967b7ea00af SHA512 44c12d1ecc49b3f1a21c7c584f9f08639ed45c0413b949d955ca3aca60c4a9336524a4e298ce2a3d43d57bc227345c818e11c1100c7893743c2ed35ac81b1b51 +DIST @opentelemetry-core-2.2.0.tgz 70571 BLAKE2B 3e0563e0c2136994d1403fe831a8c5dfeb7a84f3de20a8ded4d7e679e6734b0250104eced8b10b4c9775a292467ff9c78a1c5bef36009258ba66659cdbfa917f SHA512 16e69b9e7526f0b7e59e2795c6ce9e3fb677f37860414e16d5edca252e9a386dd1c56c5c1f20711fc7c3307360bbf805c7f3368ef4ce5bfe3f3c784bcfa6e35b +DIST @opentelemetry-instrumentation-0.204.0.tgz 85652 BLAKE2B 228176982ae5c85dcdd2b76c529ef5f65c51c565353ae844db57eb4de11f20efa9c753d5134b7302a6442cf07fff5529d772a23a1fdebaf049e3db43b4be5e28 SHA512 bd5e7e592c64b73a0c3fc26861629ea290a1cba1b71ca938510da11120910d451366a437fa7337bbc9e8546d0b98d7d15b07050676d9ef518a0bbbda618749d6 +DIST @opentelemetry-instrumentation-0.57.2.tgz 54473 BLAKE2B a8a7c375c429bd0e459326051a0686011cca1a1116f050da1de128901d34b9d54e3b3acf71454a57945928c95b33b2bff882ebc433af19440d558ca34849463a SHA512 05d046850061f088d9da82085fa176fd0dcb2a6fc50c32a2e9c71829c0537a2961e9235d34abde0ce2e4ef70644898d02c993aa9ee1887e847c3550f8420ddae +DIST @opentelemetry-instrumentation-amqplib-0.51.0.tgz 26754 BLAKE2B 6c25490ec1ee1661d7c575f667eb7b5e2cd9784e5675038b5de5ba36faadb5276e988bf7f543e35a8ca3e62254b28ded2f91a7f72e9b6f90e8fa16efa5b8c615 SHA512 5c69a36308d5464b43e1a8059d6056417a3d4a2607281c51e8083730b5f0b4b13847df4dddad3c90628ce520b5a8e14a2042dc4031851054fdc9d5cc1f4d0bbb +DIST @opentelemetry-instrumentation-connect-0.48.0.tgz 13177 BLAKE2B 19d04b0bfe1b2dd5f29fbf738f968fb73c03f2d2ff2ac702779e4f72683b9744bf6113680f9311162fc45b29d847852b86bae3d33552a4084ae45ee60e93db00 SHA512 38c8dcdd214be290b5e8f78afad0e1c0fecc46f0cf6a5602192bc6a94857e6b012908d87d11bb164739612561e5e457458ffbbd06c3a24759a73fd99ab09a177 +DIST @opentelemetry-instrumentation-dataloader-0.22.0.tgz 11531 BLAKE2B 6836a4adc1f53a6414b2069ba8cc56194f754078af7f18bd0e0f89432609289d6a1b9716391b85748fcb97b93aa1a97d940dae83e7348ccee7b0c92b097c8e9e SHA512 6d79d3730b67810b08d42be87459137a6aeb452423023671a8755cf822594c39e2753d13eb0b778e42a19ec8d4fca92473495a72be95751a42bb609459ad0e2b +DIST @opentelemetry-instrumentation-express-0.53.0.tgz 26148 BLAKE2B ba51c8923d73f274b76b4ea23805b4d66958b0de47c46b0b463f8c62341f0c9b010c7cace60e7c4452d5c346101a5db1d1c379d60ae5d61c6ffc2b390372dc9d SHA512 aff3c169f426158463bb12d8107277cded620673f61830359d73924ba134d8a9d83590158e3e96703035312b61b5d01450ad179e8b47bef58cf3fab3ec330ee4 +DIST @opentelemetry-instrumentation-fs-0.24.0.tgz 15777 BLAKE2B 512de2d720b7b67674790de6188a4ae97d96cab8d5a9fac326b300e0c429fadeb01e8b7ce796882d36d5eae56aa8dd51bce41442a6f033d2bb5d2bc8480522d1 SHA512 1e323127a081443efbd0a35569374c5c8bf6f528f3e02d643c208ae71d548e973a48d9cb18fa945722586772d48619c702a75bae5f37a205568c281e4f8434cb +DIST @opentelemetry-instrumentation-generic-pool-0.48.0.tgz 9053 BLAKE2B e7312b0f462ec827c3e7abcdff366f4ef678005549af9b778fa023c190f19d35ae09164592a0cc7e3f865e170db45d30733c421e32bf88701b88b71fb6294fd0 SHA512 4cbbff3a7f29b9fca7351fa951ba64cafb8449501265928c96a0a6e1b048993a57293a6a5da249de8fcc50378c94cf75ae97a7f8f12fd927b238a7070929606a +DIST @opentelemetry-instrumentation-graphql-0.52.0.tgz 29175 BLAKE2B ac352ff9fc6e3ae29ac2dce1e3b11416439b9caebbca02ba832bb1c5b48e32b22ba0ce41fe9417818dd9a8a1f9d118512d831e3dac6878a46841d72e082394e7 SHA512 ddf109f2338e330a29be5758d7a2aecc76d184f93cc12b0e4d2174bf6a6c98e0867b087a69df996e44f1ff1c942bdad4754316031455534b45a63e16c75be43c +DIST @opentelemetry-instrumentation-hapi-0.51.0.tgz 21266 BLAKE2B 9f2e2ea5433fe255982a9a7573abb80a6752785a1a3b6e29e70758520c2f2bef5fba89d2fe6806393ed2f4e194a912d503e71afabca30543ded58fbd02cb31fd SHA512 ab27f6ec368534bd5085ba3f75afb4e0c482c3df36074d8586e392e7f505f8f32133ad4270e8aeedf3ee5e3f13bdbab245e42e2459635c4e948ab96fa13ffada +DIST @opentelemetry-instrumentation-http-0.204.0.tgz 58120 BLAKE2B 56ee1b23e89e8b8cae48314d39896db26cb1a4f8b4f8436c5c25811be745c14c9bf29a5f7a49b16fbed95081ce82e78bb0dc9d1fc4ebb0214c2af47632b6ea75 SHA512 d5a7c96321910383a61d3bf415f353ad3033a048cf41462077ef2287f957d0b9590671a2a3f3bcd2fc40d25377927b093d2ec5883aec0eb5aadb92bba00cdb93 +DIST @opentelemetry-instrumentation-ioredis-0.52.0.tgz 13124 BLAKE2B 1c87d2d561f7059339010f622bd8dc2ddd1a72d6912b804c8b401175dedcd8aedde610e762ed06f64dd133ec585064ef82079334bc5230b6030d05ba05438940 SHA512 ad4be5c99c08f741d140f622731a431a14fcb1eb4cae51caa240ad06d660631416445e5105b1b8ab4a46b5b66f77b932b1eb876c5a40dc8ff9cfb33c6ffe72c2 +DIST @opentelemetry-instrumentation-kafkajs-0.14.0.tgz 24997 BLAKE2B e1103a1f4dc74d3623cda7f8722ef78163d121647f06b46972ab9bbec68b15c20dbd3fc512b821809add3d9245208c8a3a94568913bba34cb59a3dd07d3275b0 SHA512 91b079c974b8edd4c874efe57db6d797386f1c5b6eadbbb1e04a4fd3ee87efc2e4d019f8417899416eeb999635c41098d7a98d7026fc62dd26873f398539d254 +DIST @opentelemetry-instrumentation-knex-0.49.0.tgz 15326 BLAKE2B dd63e30eec72f016be472d972d6475792b83d27d1d6f2096565357784e930995005d18b3085737b8635c051dd0d61e60135d39ea5c5ae3f501839d9c10dc33f3 SHA512 34ab11453dbb7db2182f8231f818e33fc87862f7b229cfb6803e833196ebe51e6b51e0ea7c2f3e0d37c8b777377b1dc121ce55bde938aea1e737bab7e197ad2d +DIST @opentelemetry-instrumentation-koa-0.52.0.tgz 14373 BLAKE2B 0da161ca995ea8b017b57b1727483368ef3f52a77e458305bdf3cb625bf9e7e3e3203dd00c5d0f200421bebc6b82c0f34a77168401b60fdb9f3ae90e807c6366 SHA512 24948160b0f1fe6352cbc21b8bfb908b1bb6ac7d1b64e0c96bcfdccf4e2112145a899428789e54ace84efe64bcec876056c1eb9c13ac67abc3bb4f739eea72b8 +DIST @opentelemetry-instrumentation-lru-memoizer-0.49.0.tgz 8189 BLAKE2B 5924ec36a4a7b70c8b1d326dff3d6627343c8d553291398790938d9e9c72a4e2f95d2db0a74b9b75534445fd29373bcfb61d594a4ac478d9967b7eec4e18fb87 SHA512 72d5eef8eff51d269d031b63a04836c37d3b67988fc8b38c33c2113708da2ab229340b6160648e6a70a16e4d64a98eb35390aba643c719d013ea393c75788cab +DIST @opentelemetry-instrumentation-mongodb-0.57.0.tgz 25988 BLAKE2B e6ef03d83c8b33c30e649a9d5719057f5a3ad58bb0ac2254e5b28207bd54be308ffad297df920fbef340c7879f2335a818a761bb51e413e99afe9bc67da5fdda SHA512 283e918342921d60e48a4faa8c8396a24b22d71a92a62c7c4d23dfaae20ad434e677d39315be4f1e6324cc97b5e9300f544b849545bc82f80fe7d71a70572b31 +DIST @opentelemetry-instrumentation-mongoose-0.51.0.tgz 17052 BLAKE2B 7bb26c937cbafa93e1186e9b2eed865ad66d827f00ae379f8ea5d137d2574286c9e885767caaf7def450fba51b4a026b2ccb47a3fa62d103da0d1d255b863225 SHA512 83059a025861576072ed771bc94dc338b32fcec81e6b29b03ff8e4b430befee3e40a6801eb5ceeaf0a8e41d7a246af4a01fdb663676d13964b5f1cad2516c454 +DIST @opentelemetry-instrumentation-mysql-0.50.0.tgz 17541 BLAKE2B 1ddbc309b3939421f2f11888d5050d639822211eaa8540d917db52df5e95c127e1ed28b237447906f955be84431feab0b1225887577544ee20944f92b1f9437a SHA512 76e280bcc448defababbd270cc88a963dcc77e290ddb46d7d39b0bec68c378b2abdaa5742d0e000ed2924fb292b5d19c43e313379c208566db55d2e035c077ac +DIST @opentelemetry-instrumentation-mysql2-0.51.0.tgz 16759 BLAKE2B b4c6c05775329ec4f53723324799d6f698be0a92d2c0a5e602ad0ecb02e504448e597c416c3a1990a3dda7b4f984ca6a27f68b40407870d0aa7f2550e7bf68c2 SHA512 cd3d96836d979f8dd1c9f53734e5269c5b5be739432347ca7228c28fd01c2bdcee2d9e0ca1d82d2d73b20494927cefa1b0e099482d6ffc5c708fe9d92457732d +DIST @opentelemetry-instrumentation-pg-0.57.0.tgz 36627 BLAKE2B b3c768b6abd3dbfc3ed7df83e302f0d63c9ff9ae1baa22aeb6b149d6fb11b3a732b22f58d24de715dc96541af617ee6bd6183f35f1b944b1ce926a44d41f1d42 SHA512 7562c613eaf9941826d80f1269a4980c4dce289fe4c30cb958bc86cb3a2bf0f2e150bf559c946263aaa1a789e3c219e58e22edcde7df46d1b631ffd8c962de4f +DIST @opentelemetry-instrumentation-redis-0.53.0.tgz 25739 BLAKE2B ba29b03b94e1f1c84b4fe20e46ca4bd9271ec3b15e540ced48efdfb063f7a6ca82d0f9397afdefefe8a60eaeb6d1268d3d6221d573b7cb5751ef5ae5bd65ada8 SHA512 5941d5f1fafef32a39466cf253b0f9048135cf089a350713c993f0b7195fafba71e8d618c7b208a528a124aed603ad27a56ca77f1c4ad53ebb440545d0675f8e +DIST @opentelemetry-instrumentation-tedious-0.23.0.tgz 12610 BLAKE2B a219df6ac3f82dffdad113bb64498377fb3679cb4ce0ecf9a33b36c4032fd8170f6ff1ef5e2544e69fc7125bb1e323f614d18a224c72df519a829fab00e48b53 SHA512 dd331393ff55b654689d54da538b42cdb83862a5be22afe5e559cdd9ee7084fe8980483f3ca7eb19ba90f82c5058d2df2da41821480466a027e6093f8a7875b9 +DIST @opentelemetry-instrumentation-undici-0.15.0.tgz 30275 BLAKE2B 4b55c2dd3f1cbf9d5b812f2fe82bd8668c3a4379d023379c066e74d3d8084e4adeb3337e32a65000b36be1388880876fe6ddcb97f7531e8da64e3864ba881b36 SHA512 b0d14603f8820e5564363cd3ccf45cb9d988d75bd3fd601f020b9175963d22ca42c34d8de16482ef6cd3b908523217a1d9ad6075e33d9b2d629a7291bc412f12 +DIST @opentelemetry-redis-common-0.38.2.tgz 7389 BLAKE2B 5bdfe21a3aca94ba01f68144c46293593e976682b80b643819cd2572891dff5c9a8f14b01a3f86d3b6b5ec7130c93526e25e1d0adf2caf4c29bcf5ae5f197451 SHA512 d4109c53dde2c12459bc3020c14c42fc35784ffe34e9290c7f11aabb9a2373702f348f88f46855eefd09d47963b1cceeba172714b62a0f9566c155df0861f3c4 +DIST @opentelemetry-resources-2.2.0.tgz 52938 BLAKE2B 99f9dd8d07772cc6dd77c45a34731add8a8fdf02ebddb3b753f62226aa7a633b2d60df6c004f67fcd8917fd59c97657cf5886d780c4de33c038cd158cd9eaf2b SHA512 d693507ff25acd04cc0340623b9348354cc7d1c6cb6db97b9a7b4b6b86893660825d28f4ab4dd3e595d72f4cf0e06e794e374bf53cf7d9cce718295ffbccebe4 +DIST @opentelemetry-sdk-trace-base-2.2.0.tgz 71931 BLAKE2B 264641bb1f1ce5660f1f91835c864c62d9923e01c69e2d55a87e26f8b969e6d75479bdf14f609f4b3df792c3d32bb681eba24511e250ddf60a8ca9bbc63c8949 SHA512 c564202f406672db1a960e8f6971319b375e752a77832295f26401c0afe3f5519d083bb67e65c86f68007a104a6e45c2a49e073e482fdd07e8256453e1d1d66f +DIST @opentelemetry-semantic-conventions-1.37.0.tgz 1346991 BLAKE2B bc121a22f92ff26563e4ab29b44bebb6edd29abb71f5efd9a374a970bf8ccace2777fd2fd9632b68644a679a52777b6131a84c01d12d437ffc758290fa20614d SHA512 243e837ab20a7491a6469e234325f9165ad08c0e2d8cec3572f7ec3c06577ce38412b3141e33dc3d22024bee969ccd2707479f48501187428066cb3e6ef13138 +DIST @opentelemetry-semantic-conventions-1.38.0.tgz 1415561 BLAKE2B a3d4f0ec3cd9f6039b197857986e1f1c920ced10dab8c13d85033c75cecf10cba8781d4ee0a7fe2598b0a0429eea60531e9e24190c2ff864721517854fb5e2ef SHA512 9287238b1fbfb128207c98705ea0a56778bd63f308d1fa7b6fe83b902466ea9b32d9db1ff2e0294d1725c06d7c87c02f9bb0bdf9f9edf8edfa3eca49fcece85a +DIST @opentelemetry-sql-common-0.41.2.tgz 8392 BLAKE2B bcafb99efc23d8e12638a85b27541d99e31e1a45182784a1b7724f74935a68729a1257bafce943baf899305b09041269f9a86b1269521b841007a3e1fa200679 SHA512 e268569b767ccfe8b9d3ccd027bafa5e2ef2e269a826976f1f47d93c54645ab769e5fabb8616761e162890438b91fa923203d1e19f44c81dc30646ca18ea9989 +DIST @oxc-resolver-binding-android-arm-eabi-11.13.2.tgz 906000 BLAKE2B 16caaa647e5cec50a11c7095750c3fb0b7acebfab477d93922d200388f34b244134bb01d4585000b701c3db1393472b973fd65fae9e00752900b7019d8ca9265 SHA512 bd677534469c960fedd83b44998cd14413503ae78c23cb62c70fdf48d67d5c44d72d126202340c62961e7e541d4404a5a06cdee997a51c4ff020136de12fa993 +DIST @oxc-resolver-binding-android-arm-eabi-11.14.0.tgz 908704 BLAKE2B c68916ab74bad048ab6b573de89556e39914ea632204556f4d038aeada73daae9e0f558de0a272c6c378327949e083504c0ac33dc9c710f5ba6a13270bc209ef SHA512 8c1e3b899fed86f844f944822eff976372249c16e42abfe9ece06c4034c7a1d7bf18fc3e3874658addcd4356e3b75323f15d824bb8877520d8a1b675ff481a81 +DIST @oxc-resolver-binding-android-arm64-11.13.2.tgz 1110438 BLAKE2B d5591903ebbc904b340559f8cb3a600374460a8a880b1e83a8236273afa6dc56ae75b59e57dbb5512e856bf1890b493e20f623f94872d487f651b97a084165e8 SHA512 8f166b61cc60a48e88b90a60b9054040dad97d4ca261f315a91e292955373d12c233b02c7d734aa744c881cbe9fa5e9d61576867530c30c6b90328ddd3dacd3b +DIST @oxc-resolver-binding-android-arm64-11.14.0.tgz 1115644 BLAKE2B 969fdc01825a952f83bb5eb9ce3d349c56802977ced38c3a8b8ba73ac5f2f116a60d2f4a93eed8d5433658cb89c21a94bdda5eb0f4fcc362a70f2110f738aabc SHA512 5c527db7b77f0b3f9d58bcaab53cb75eb7a4cfeaaa378866394da239482beeeef5390b0f507208792f7fc0a6a710ad25e35de03f06a9224c9ce71f65b653adcb +DIST @oxc-resolver-binding-darwin-arm64-11.13.2.tgz 971447 BLAKE2B 7bf37866a23df718549e4017337bd4177f8473cc6ab891e17f1b64392042745039a7ff203267468db7ae6800d27150eb516c55f646392e2c760c92a4f9ea0671 SHA512 4434b71d47b516f823352d717c152a88427cf77f196f9afb88a001c3111b969dcae2e7d964d02da1a1e37541f64c9d131c39ae7f43b1c5550efd8fb8129e107d +DIST @oxc-resolver-binding-darwin-arm64-11.14.0.tgz 978639 BLAKE2B 4467d038395b579c0f756c6b3b870e06664412d0219f60fd37dc8ea8b2e2ac7f0a8cbc1c67e9f1d4fb48cad8188c4adc564eeaa98731632ad7d6992eadce2b3a SHA512 8307a1052f6c980d66ccaf1fac3b265021f3fba6da255c24285eaa5621e1a2a0379112af219de4e9634fe09985d7d2613a21b145ca0f6bc81945fccd817c0fd8 +DIST @oxc-resolver-binding-darwin-x64-11.13.2.tgz 1018274 BLAKE2B 6b349731482e84e5232c74b1e083158711462d2e47e05c542f9a61f52b09b4aeeb3ca09df4533e5f802d02c1176d6b5abf214b7c6dcfb3058dd0dac7c162f33e SHA512 b437325ad914ce4b7a6ae24b3f674e8cbf38071a8790a5b89b3da53512063d3abb6fe1c1ada07e9bc45d447e8182a4ef6e734408ec51dd700c68a04a0bc279d6 +DIST @oxc-resolver-binding-darwin-x64-11.14.0.tgz 1024471 BLAKE2B 32ce50fbfcaa9f4ea8cebb39db8fda538299652017bea39d8aebc5ebc4127c0c7dc05c3d8426bff68328313b5b10bcf15aa87006c0f38a4f6204bbf329f1b996 SHA512 e70c09bdfba86a12a202aa80b0c2ce236f2ba9d8773f62bb1e48c85945cd316019aba12b5f42f9af0273bba4f7dbe671c37935f02ed1f484b8c03abfdc0afeeb +DIST @oxc-resolver-binding-freebsd-x64-11.13.2.tgz 1028443 BLAKE2B 91b4ad9caad367b474d286f3f5d9d63bff27adf78f60b462d85b533904a31f991fdf525aa661056c1cb5bb21e8c19f949bb8b82ec1a64feb21742b299cc12a54 SHA512 7e969e37c434916bca9ecf6e48c83a09c2a8edc760996b7a27dd6cb4f7fcb1d33e10a5f367461c467596c9617c48cd7a41c2d43c2cb9230b7967c69804669960 +DIST @oxc-resolver-binding-freebsd-x64-11.14.0.tgz 1035094 BLAKE2B 2cef9445c6fbfb368fa3979a233ec5b1190457b6a2a981997431fb31df4e1b61dc93c9821db6305cee083c47f9c629e05680132aca5c84849cfce121861f8103 SHA512 3164edf8b39035c43a7daf94bb95629248a12e2d4f488ad0aaaa74403e3893600e45ab0d5a5d2344605370c48122035ef36a8441662f946cef38410e069d353a +DIST @oxc-resolver-binding-linux-arm-gnueabihf-11.13.2.tgz 1002780 BLAKE2B d7e22335cd1b1ef91a778cc5597b9122422d1e07bbd0a2d69cc7be432694adfa80abc56bc2c3c99d8f6776d75253439276c3deadd8b01a377781f31765677ea3 SHA512 89d060254e40bd2b0639e6885a214129b3418e9b9db87b099ab1b80816c450d5bf624c7e212cdcba3d4f1daca2617e91f6cb55b11863dddd8fcb299f0b929646 +DIST @oxc-resolver-binding-linux-arm-gnueabihf-11.14.0.tgz 1007407 BLAKE2B 1fbb1e8c6c440a281d5b78be3fbb42eb443b7a97a0bb7d321f0ad029dec5533bab4955b948d25531bb8fb62f28eb62673640a35072a44f04fc349feb8dc2bb5f SHA512 6fafc806a62b4b7a345e22d506c9dec7fc0af294d32be85b19f00c387554ea9ec3069c0f3cb802fed6afe085e8388502b2c4c5cfb69687fc6d528934b309fc55 +DIST @oxc-resolver-binding-linux-arm-musleabihf-11.13.2.tgz 1007637 BLAKE2B a8c2cc67a2f25de6c493e1852fcca80fbd47f7092fe637462e48a5b98f7617e4c75def6d251801e74807e3f6f797a2798d484bb81aee8e73e9d58cbd5e7fc4cb SHA512 06506f41486fbc833feecf7a2a52a1324d1db91dac8fc4fb1f28a2e3aff9427c1f37fa47c286ef38be5ccd9ebf48aac7341fc5fea0d8e211ac06e075cbbc604e +DIST @oxc-resolver-binding-linux-arm-musleabihf-11.14.0.tgz 1012180 BLAKE2B c1c128a3d49ede60f88c74b3484a2d56a5172c0b9974033cb864a656f1fc9a3cf45ff916a37dfb3875e654fdf71586caa3501ad544a78572acf83cf4055bd0b9 SHA512 a36421e7ecb9628a952ba61fce46a51dda664396e46c61b1b8b835a592d0d487edd31f958b1ec368512974297967dc6f617a2077f4f03a52f44cf978f8c4c52c +DIST @oxc-resolver-binding-linux-arm64-gnu-11.13.2.tgz 1044022 BLAKE2B 2f777e285476f6dd6be32f4d7eddfdf114161e17cdf06692c70e51a71d3abfcb72845ef6ce6fc472fd4b701de9c0df611b54fd3e36b4992e5a36b6a17cf11adf SHA512 9549834e660e1a96c82be1417d9d3249a413a3b83521afd69c39d0476c22ff402d7a164883f659220893fdf0f4891bca10a99aeb5dbfd0f568f1d5dd00a68018 +DIST @oxc-resolver-binding-linux-arm64-gnu-11.14.0.tgz 1048422 BLAKE2B 2ae9945adf9eb4692bf6761a6635c52a41ac149d71a15e6ce1d077e372af969bbf29894faa9245d53dc5ce59c9e869143554b9dcd03f8ae45ae3395ff635c1ad SHA512 964f260928344e0e2c106ef74623e36fb91e19c10fc2a4270475f767e051d9259efaa347a681dcc8530d69fcd2bc40b5f2f9710b4e00512a1aea4265fc2e738a +DIST @oxc-resolver-binding-linux-arm64-musl-11.13.2.tgz 1050336 BLAKE2B 2f490481fb85a7f03e4439feda6d1ca478daa0695c789aa7f2c0910585dd47372919ab7370b0a6254fc3a5841b3683f98cc4108c0b404e1cb1ebdda3bfb940f2 SHA512 7641b33b1a3e23d940e04afaab31609057af97726fc3223d8b44ff3e43891ef6b4e2b6f5a7d773f063e88133bdb8c2b896bc0b5b39bfa6202efad1d80bbbfbfb +DIST @oxc-resolver-binding-linux-arm64-musl-11.14.0.tgz 1055897 BLAKE2B e4de62874a1de0c046c5dfa4098187dc3c8782230e7727691767741ac2e38b96fbea3c23101d646a384c3f2d1dfcaf0322a27b7b44d4b45b2f74fd53c15e8a44 SHA512 2b291e21584233ba67f770016b47cd7bcbe4e17be76df64c10b9dedace8ff6d7491fd28c06c085062edad81992754b53a96080268900726e3a969733539d976b +DIST @oxc-resolver-binding-linux-ppc64-gnu-11.13.2.tgz 1377995 BLAKE2B c10c7917e3908b6a7274d935ea44a3b436625c0640968aef31f75257d2891892b3f65528bc68a73762e1577d2ecbe44ea4fb8862209c0f0b14b3745f91df4fe6 SHA512 e77916b232e45459e8480ec239da6cdfca41b2c378f3323c2dfb0ebeea6c990d3fe1578c61bfb4028f4eeabe763ed98566c181dd2d508ea6e397f3ecc23d5ade +DIST @oxc-resolver-binding-linux-ppc64-gnu-11.14.0.tgz 1383573 BLAKE2B a209887c0e81c60b4128372b48ab4d54911af83e7f24e6f2c37ba0b9cdb649f076c70781497820d0c2aaf2613eda228ed4193011947210811ee42374b49d61a8 SHA512 42a3cf58071953f8c702e6a6e1fdf357c39d1246113c3d97474a5e55eb7786830c82c8a14772e17bb27f6cb7259a8776f7b146d3e3a0058415321da74cdea858 +DIST @oxc-resolver-binding-linux-riscv64-gnu-11.13.2.tgz 1092547 BLAKE2B fa2a864120de184a2f4dfac2f3b316bd1814c565f1075f0f90a41fb876b95318b843730eb3d5c2809adc667571a99bdd69e70ed4d533952cb1e1b3505fa8cab8 SHA512 31fc4de83329be67426c6961789fa2872d75a13722a6a0df70421057d6a1dc5197051099b4138726940393ca88d98fa709756bdcd967ece4ac3b3a02e3ead261 +DIST @oxc-resolver-binding-linux-riscv64-gnu-11.14.0.tgz 1099232 BLAKE2B bfbb0abc1c1e0b85054c2ac86b0b43b5005e274ad8ca3c9a20761ffa2d74d14e08de473914124d18f27ef80e51dac6537ff34b34509fa9e942c28af5b6e4f5c1 SHA512 0ee9d603ec1a7de1b7863d4d003503ddcf8346f9b254da85e4b487554580d9bcecc2a9ae1195e5dd56014b3c5f0f48fe5274531582f17f6ec0329b6832c7a962 +DIST @oxc-resolver-binding-linux-riscv64-musl-11.13.2.tgz 1094358 BLAKE2B 9c4c1b9b872df36b895b1696f81ed0c720d507ca9f2f6d14645a26ed8e8d036c4f450e168f9da8e7f8eb9c3a90a50ca5c0bfc85da300c6a4500335bfb273e82a SHA512 597ae6e188915348a3a9bef65874a399f61a419eedebf92442b15ce09b54fa9504e03640fc311dc4eb9011de10e3756a98bbc809325649a64c942190e0f49152 +DIST @oxc-resolver-binding-linux-riscv64-musl-11.14.0.tgz 1100922 BLAKE2B 1b3c7db01f50d4446d7d9b2c86d3a8e467cb0fac151e734925fd782a033db174912f206c1429303b50891ff0c02df81d2e0db56d0f53cc3cb70c8e8cba7d13d9 SHA512 e1246fc0a4d393693aec442bf4dcb83467ff061970820088d425f005b03d215e283f7f031fc6fe3403f10d8d3248646c59b3e41bdd8560ea8ce005b31b819280 +DIST @oxc-resolver-binding-linux-s390x-gnu-11.13.2.tgz 1103672 BLAKE2B e701736494cf0d8fda3ae6f2a369f9b457946598075ba6782525dd251d1a6ad36694001a3513c8f1f9e074d63d7aa19986d87c93fc9dd12407e3bb8cabae976c SHA512 e2921258894e1515215b2bc6081dd7521b5cc32bf01868655e11f3ec85c25ee1ae7da42dbd1d39b6bbf0f14d599da3e1b1d3c191184e30879d5f5d5aca2e6e5f +DIST @oxc-resolver-binding-linux-s390x-gnu-11.14.0.tgz 1111710 BLAKE2B 28daaa276bbac4ea2251694b3faedf87f3999845271f15c0f04ab1fb6f9ef4d290328defc83302a97efef2a407b9e6d04767e0528b051b5de8ca8b62ab045742 SHA512 8592af91bb2eae3e093a89bffd1d406f63250b87067959b9cf332de08b12dd7c9241e623c8c2794c3677279ad0f1b563df18b8169254db2159ef6180a6c1d0e8 +DIST @oxc-resolver-binding-linux-x64-gnu-11.13.2.tgz 1105035 BLAKE2B 23c6254dc599d15552fb3cba53bab9582ef4f8961b017e3c3fe7394ecf09b5caecb4933abd8ff95fa8696cd8feb3d11e788c92dda70d3c88f8f582b64f473d4d SHA512 0d5a3a8d2f27ef7c8d0260ac50e3a4daf05e0bad23d916ae0d740cf29ed10e5d1a7ec11a03695edb6bc3f2d932ee2368339b6cc5f066138b0e25710a829c1647 +DIST @oxc-resolver-binding-linux-x64-gnu-11.14.0.tgz 1110786 BLAKE2B 99c0416fa4be27f739dbc9f570091e0598d48fb35d1816027c2e151f8a1a6b0eebb01386803f2cc43e683c45629bca72f6609ab5b24c3c60dfc6e8480ffe0d5c SHA512 84007141715726eae2bf0fb46a615d78470aebb705d4118120dd7eb121f3ab74d1bf84681bc9f9ab6244d382deda7d8aa6deb1838639fa572ffab6f698224b81 +DIST @oxc-resolver-binding-linux-x64-musl-11.13.2.tgz 1095373 BLAKE2B 24b9fe5021d25400e7c8e18b1d7192bb9908237af2588f6be8fc53628f2572ed82e91d941261d45a2c29abd46ab3a6e70b7e0c8b7b3787bedfde2c286b83f7e4 SHA512 e96aab13e8500453f7e4a77042359c66995d6d3abac899ae4d54e1212bbead8dfe8fa31a0e9d9c88b1d3af55faf2bd87ffba1c388978937367395233791244df +DIST @oxc-resolver-binding-linux-x64-musl-11.14.0.tgz 1101077 BLAKE2B d06542ce1cefaf434fe39ffa81889d7ec8d5e34ffc075fd964b287ce12a627fa2595a4131b5953c9c95b05a2daa9d1038f26cbefea7cea7556158620ad17272e SHA512 2e7ef7c140799a281946f0bba1b00076a570bc5be4ec052cd892ede20f501ebf059ea8af96c8e9502f4d7f6b2caf26dd8f243310c8edb54c4f673e9a28f4801f +DIST @oxc-resolver-binding-wasm32-wasi-11.13.2.tgz 540704 BLAKE2B 83dd5159490201276ec71149d9682d6eed7a023fce3cc47bf2d4fe7035b94c7435ce6e5f0b843074b884e5979fa5f836043adcc6318aa3449b57093d347165f0 SHA512 629c6f4263f60fe98d5242d065b0631b3db483fa58f17a0e05d3cfa16325f57ebc9621458d7c643d04eb6715b0e33cc6fd4913339cfa74f453c9378f46c31c8f +DIST @oxc-resolver-binding-wasm32-wasi-11.14.0.tgz 543554 BLAKE2B 88373617c587a14a5ae23877e46ba21290a927487a1030f41dd3f66edeb5aaa1d1ceb14516c3aa9552db751c0aea3968a8e43392cf3a3df522642c360fb430ba SHA512 cfe35b10b98238a36d58ea84079a837c75ce49607790640821e86aea71ed6701cbcdd54eda806ae837bf6b2858df282b882d57860688cf39e263b8e0acd9782b +DIST @oxc-resolver-binding-win32-arm64-msvc-11.13.2.tgz 919008 BLAKE2B c22e3cde9bdbf4980c40d436e6231eb725aebe74edae665d02b97a2eb1d78ff47359de13e1ca66c7f18d248fa3131c8107612ec3fc2144da00fa645196e118f8 SHA512 d52281c3a29c0a6bcf05d130d7f41da6fe9e4837f6de50974d6cfd5714dee90510ff5c11f87651dae4b8aba0bc5ba8e722cc0c4d06f1a53bd5c1d45797eb9f78 +DIST @oxc-resolver-binding-win32-arm64-msvc-11.14.0.tgz 928320 BLAKE2B 8be93658ee3a600197749df176c984bf1b809d1d2ccbab48659aa7e5ba9ac01b059318f8359342bb4abaef8cfd2afc3521ef545b74c188c9c913358cd3c8484a SHA512 16dd3ea9dec748eeb5a824cb2782c27411999292b20e3d6b1b43954992f50f1590a21f7b9bbbc41ddef302f52dc3c11c5a338c050b97e267d16a9ff1d8c382a5 +DIST @oxc-resolver-binding-win32-ia32-msvc-11.13.2.tgz 923444 BLAKE2B f130c86c327214365207005f010f57f455d6ad41bf5deb7b0686d3d98005345e174be20e23666eb65bbc8b6060f37a95afe78110b1388196f9eb12507b5d0f89 SHA512 284555ef08200ee731467defbf21e799308f5e8093eef5a91f5f1454b4f28226c726f3513f6ce5e6505a41c0887486986198cab7568623fc99ab166f1e888276 +DIST @oxc-resolver-binding-win32-ia32-msvc-11.14.0.tgz 933023 BLAKE2B d6be24053e3ac5938f5cb35c6202b86db3c244a5ab9bbb452f99bf6de7e205d9758e317343a93df46511085c53b1cddba5b8d7864350b0a00b5e177954df52a0 SHA512 a39e2360d49f19d3f11d2bd7121660f05395dcaf7d989d5fee16f56a54456fe61e7351905cdac95f164f23134c61e153d7793001607bcee4341d92e70c71717f +DIST @oxc-resolver-binding-win32-x64-msvc-11.13.2.tgz 956442 BLAKE2B 15a2a4adeacc443b974cb2735898f3eabec6535b1b0a7d2999eb033b4f435df26c828d6560c2cd503efe2307b0c50c6ce1085290234fa7ab353d37f134dc2ffd SHA512 e8001d37dbffc0ee5cded775ca276034b298973b8d81f3ad12a06aeb4584e3af5b25647b807806fd2e5a2d1da91fafe0c8f2ecf545ed22dc62f77e03fb412cb6 +DIST @oxc-resolver-binding-win32-x64-msvc-11.14.0.tgz 965039 BLAKE2B ef0cf133c85faccc428cacdab858096575eb55b38d9e1acfac88057a3009cade56f17c609ae7664252948e5aff9294be3eef67de0c6df1f2929cd2073cb4719c SHA512 8fdee271a391c8ce80ec68e0994cdf9fb57e286cd5bdcb5103e7809496f473639035a11317197a05765d9c60436feea80346384abff09de91dd64434695c8a1a +DIST @pkgjs-parseargs-0.11.0.tgz 21691 BLAKE2B 1c3065fad453da14e0648ec38b084d40a5596afb8035e672bce78f5aa46ae9f73db85fc9fa024f2c6a7298c9a56ce527e5a71d21ee141a764957fa0b11504636 SHA512 fb55648dd0f44012cfa1d1ab2547aa6ab1fc54022f40e0c86f087d5e93f94b28ac7fb628420b0928f345a2aa8b425bbe550fed552b21311ea5a0f327f14f9d3e +DIST @playwright-test-1.56.1.tgz 7783 BLAKE2B 2b9a7ecfe3de43548b7fafa6124d00f620bd36acefc810774924d8b4cec6cc70a6e2b0f3cee2d4c81b2b78bc467c0b03ab1a893760d272ed61faa94cb2d77e4d SHA512 bd2318b4bff339c169bc9096ef543f3841906fb29804f01d2a1df958d4a469903be499403bc103f1437a1943539b776b5a899c6dca913c5a906cb69ef3205376 +DIST @playwright-test-1.57.0.tgz 7782 BLAKE2B e01278cb8af65fc28406ee1808dbd9a1add3957189dfa09ebeaab13c0e49a3d9d67947e81f96209e0596ff55f09281f5290fce5f8a8036dc9b3b1a0539ebd0ee SHA512 e93c849c781de9202b40ef143b638c4f1b21967dd031606d3c6ace0a0b37c15126426c32b8db41d7421931f9980c4d2b8b0351d5cbb8abea4f731315b5a1b74c +DIST @prisma-instrumentation-6.15.0.tgz 8696 BLAKE2B 5ee392f5d08648e9f3167d41395e837803001193a74de454df6a133ba128dfe2423ed346b9bda2d94c906b460788b89bb1c4071694ea4940dc884589c5522d8c SHA512 e935da1fa3a60e430e42f3b1c0b67c5d2e75854dafe00def984da94a28c2222191258c8d78c70bea730740cc98759443f3097b2c5dd6cdcf8030f315ffd3a8ec +DIST @rtsao-scc-1.1.0.tgz 1862 BLAKE2B bd5a3ce2b17f261cb48f6c49d36103520edb4a0d1ec0e5c561ae921634189d1d2790209864707d68b1269a25031b2cf37bbd539b96a9985c0b29ef946c7aeda2 SHA512 cede8e76a683a0e9c9d5962c0981adf58996cc35e5e2f41d293c897afeb680585118a771ee6713e7857d2888e0f9ddb08bd117b0fbc03ca7bb8bb5a37d5581f2 +DIST @sentry-browser-10.17.0.tgz 209891 BLAKE2B b453eebb360300c4e109cf7ca3354020702f83d99044b094ea9031e85bc785fb67b06259a9a708c79cc9766c697ab9b36de2e719300068a5fc882ab3348e0644 SHA512 5f83a21840b3929ead23200a5c1ffd6de042da85f5c4a384903a38bffa6120a18fceb990e28e798f66bafd5db48d27d237bc3e91f679e882c4ef54b30bdc3569 +DIST @sentry-browser-10.26.0.tgz 302721 BLAKE2B d4b9f26028d507953521c54f5a405369226e875a2bbcfdef0b88c892c5c2a5fa31731071740275da8beb1a8641fc4d8a7259b4d265234f797ba15d87a1862ccb SHA512 baf57886792df1b87cc8fd1d8ac2747eccf2f057679321adcf221529d79065b35479fc1b0e17771f4289ac01e1279a1c50b307dc1f9d8a974f9b0d905db11f96 +DIST @sentry-core-10.17.0.tgz 801119 BLAKE2B c37cce72bf1da7cef64ff160942a004d1f077ae164728772d5e9cffb5d3db888dfabef6fee84ccb33d89b223fb842ebfc4df6d4b8c94ba7a1ef173ff52305b43 SHA512 51522fc52cd2d27e506c80cfc857f4597f48efb39fd5b72be9ad2c08429f8e124698643c9855a85a0476805e3070fc3ad1752bcdbaf20abefd78eb081cb43973 +DIST @sentry-core-10.26.0.tgz 925244 BLAKE2B 82b1bac7a88d5d63c7885464fe2dcad5d8be6acfe18cd7b9addf748385f36bcfcc2103304b7e671a38b357f6d67a4cbcc2e8e378c9b4d8dbb26d8332628e399d SHA512 4e30dee50237ed22ee574ab79cc387f0970f661bf67bce4500b69030885120b1fd09ee86ef15b91928e61fdd4d515abcc9cdd7b62a98973fc47a711901cb5ce1 +DIST @sentry-electron-7.2.0.tgz 257466 BLAKE2B 4b4984ee5e7e310500129e4e5537e883e5cf09417743e35ecfe502b47feb15bdf1f07691b8ef7e4923313295acfc18322cb2595ff7a85f09e73ca090ae4eb853 SHA512 32e2c9863864955554de248dfd77d14a1657d8d83ab16adf7e24906088f2632e7a598ff4c691045c6e442b333d46facb9f60f969b2a9767b72fea97aaeb3d9de +DIST @sentry-electron-7.3.0.tgz 258169 BLAKE2B db7d37044f1c3261f613c35a0c367cb966552848fd0c69e89a635120ecb641357f3bc891b07886f66d347d601f9a58976879f38d6386b196318cfe9ce26d34c0 SHA512 68a1c807ce4fb047ddbb85deef7c6ea1d01942820aba2e18e1ef43caed56ac2deff67db962c476b9009cf0324ec22c42d65d4b8507e1300c9f00ee8b54d6fd63 +DIST @sentry-internal-browser-utils-10.17.0.tgz 145985 BLAKE2B eed277c795215db4af4518526abb156cffaa685c9ba67631c0b2e93da4a87a0e61a09130e8783221b3265c320352a7344b41f3810928a67c9776427add0ab9c3 SHA512 8d70bb76d22d6583463fe2bd2e8fb7316696686548eae0c83c607d040664667b5cff59467e130f9bb168daa6f53756d43f4bce4c9d93992500f06371cb181e91 +DIST @sentry-internal-browser-utils-10.26.0.tgz 151972 BLAKE2B 0ec630be39fd31339d800dd85fa1576b67d95a129f9629dd5f7225dbc2761255ce3b75402e39f3c10171acdf8f75bc408ae24ff825cdb9027b6d112b1895f7cb SHA512 acf835f896657e9f75da964e3500166736d2699f4be91d95acc70211afb67b61aa93dba6e1bf8ba85e5141666c6ede59d27d1acd2cbf290eb301eff34cf5d23a +DIST @sentry-internal-feedback-10.17.0.tgz 139230 BLAKE2B 37d94ca8e2208919e09a9ee91b7e7aa062210a27078c6850ca8154b010e0910a75cef28d5921d76928fc64013084763d8e3866ec8cc8e4744b50772ce3e5d9c3 SHA512 288205fdd0d0a9810d6f1e2f9fa0747afcbfab1d50b4466c49946f5cd5fab549b5e020b2ad9783ca604cc84ceef114393de65789b6cf124cfbc4e5e21b7abe79 +DIST @sentry-internal-feedback-10.26.0.tgz 139079 BLAKE2B 82bb95f3d3a142486e988ad4af91a184f3494b926cb0c89b237acaa2fae2e520aa3f8f0b72b5ac1d6b8209c82e0786008c6eb666ca39fd5f75ff587fe8f7c83c SHA512 d2f93d7903f40970fb6365a47022161da02a9d73808b5f3f1aea6058b9db07692e415615b52b56c6d5be39645ef16fd7c129d9e66e8905355ea24ba4fced7a0d +DIST @sentry-internal-replay-10.17.0.tgz 560593 BLAKE2B 721cf6a89e947ae400d7805d0b02249f39a6abb7fd4a31ab1c8ba4f8abe0d4e3b27d705b64fa2fb2c23df943345c94ca2991e760fa3008be6b9173fd16941c23 SHA512 f648ab38fa77c1b7fe4ccc87980f224ad280cac92564f72b3e5074bf6ce1d2a463d73345634c400f6592831b82bc3f6b128e6a2a198029c693ed48e29fae2e4b +DIST @sentry-internal-replay-10.26.0.tgz 565593 BLAKE2B 24e3c44e3ebb97b593a08dd81d017dc7250171443bccaa1dc86f44d314ef182d601f4077619dbaa07b374f67da9bccb7cc7b8250dea93f4c18dbabac656638e6 SHA512 14cc92427636fe9d1d56d15406050ef9a31d2b6a2faa777b43f024bcc414b0dff9ba5ca3e8a671dc95f70aa3aa46d02bd62ce809ee0a876a62e6dfffb109afb2 +DIST @sentry-internal-replay-canvas-10.17.0.tgz 169337 BLAKE2B cc980dcb2c18f7edf5d2256f3918acebb7a6236f45c7492eb2bcee10a2fe4c65517cbdae0ea02bcb9ae227698a24c5d7ac63ed6feebb43bad842c32005b9df3e SHA512 19729922b697adba0fd37f974be2b092429524ef9c4a53341eb7e378f49f16a88d6db9e346138b7a4a0bb83bef1ff6445cf5285090f559ee483c183eb196507d +DIST @sentry-internal-replay-canvas-10.26.0.tgz 170935 BLAKE2B f236597e0ed4bd4a34962a6ab82fa7b35ec93d8ab166bdc94e4b519167a7ac68bdb249bf96a881ad6db95d676c56fc6576daae10d9b077148bbcc679ead41036 SHA512 beceddfcffbc3352f5255021849c76c28d7940386a022a67110bee459e8f57b2d4712d6e9fdfd5c78f45331a48931e8970a003255c2d5eb4b5b17da1a0d4ff93 +DIST @sentry-node-10.17.0.tgz 224962 BLAKE2B 7887165159f6943a1152d3036e7bb7d93adc998f8df413471c794c78f0d7a9c67b1c44a4572d341f3a3a6d5aba5a27e854917fcbc0b0588f3052aed908a7bd78 SHA512 accf80342e0d2a46070056bbde5a815ead36e3f62b7e5714281c64a92ba8ff48dcfd0fecbcb65fa19f055b4215678ba15d71592f73d96e471e6589a8386f5e3e +DIST @sentry-node-10.26.0.tgz 255918 BLAKE2B 6623231a7693d3156776ea1a664dbd20814ddd80d00db2b992617df8746144753ac98673d8a893de4d0861d5297471c908e65c2146a18564f3532d0efc326df6 SHA512 554c0da0a6214699c74128fd96dcb54e0a283bed707294b55742bcec753cb1911ab39831dd48e2a2e939a1c3e39606caadea18380a603a710422ae56fe17d071 +DIST @sentry-node-core-10.17.0.tgz 299933 BLAKE2B f7d2d9d2f4f25f6fa7a626375c531bb69dd676664abe0572c465410f6d54bac78340037627f81306562869c61dc1bea9d6013c88f2834d9d7bcca3611f89cf7d SHA512 c7a6afda916db0078dfa764a921234edc382ba04cabb1f74f03086065c10130f198e085c3b98e7dee9df025299ab167492d5a005c4ab08cfe22791a4da7c4f16 +DIST @sentry-node-core-10.26.0.tgz 310473 BLAKE2B b8efb7ba6f47d488c79ecf3b2f0354a703a0128570078b71ead3e5c00f15e6ca4bbcaa0577a7871e15befc69ee128c4f16586cf19269734055c2be1a31066f38 SHA512 eceac7567f1702cabd98c54c9692f5f174ca40455c2ce252a349f633b40629f164fce7d5b5214c714586a8dd6a858b53f5a313af66e3b51e7e048df77639cd4d +DIST @sentry-opentelemetry-10.17.0.tgz 127978 BLAKE2B 2a084f7dcb58e95285fc67e975e0b5fe76cecc30a3e702fc2dfeb62cc9bb4ec4ee35c7b715d2b852b91eeffeec4a6923ef728919dac13efbdcdc30d29dd3c1fe SHA512 91938da248e42108e10d41192ec8bb4d9d416b2d20e15142dab4f532f66a6b57e41597dfed387da90af42efee0b779eb6c3eaa21cb44ce6a5fef9390375711f0 +DIST @sentry-opentelemetry-10.26.0.tgz 128197 BLAKE2B de284256d5d7a847e9374613dae830f34a333dd167bb44f1af66827525e9284541a82f0a1086120fad14335fb574be21594e99313cc3234e5f86567b7c82b062 SHA512 01225d3b09fa370307d99781ae718923e97fc64269d403a243915692f4ea2dcfef1d7fabdcf0cc3bb73e92879c63e2e26714b3645e0857cb002d77ce87a527c0 +DIST @sigstore-bundle-4.0.0.tgz 9226 BLAKE2B b03a7409b28b58693024e72b16c03b35487a181a3ea98e27793853fe1edaf25bcc88245dd51eeaeaaafbaa3ee6d68d7da856a843d97c9585cad37b652e6a938b SHA512 3700a5e58d15e838b435ec6f913a9da157e68d3690c282ccdb7eabf3d284a231a6abf8cc96cf12fb36fbc8ec003dd5ef6f07ca0e53fe9665e000be2f292413f8 +DIST @sigstore-core-3.0.0.tgz 19620 BLAKE2B 082700ecaadcc6206ab8fe2ce081495bd8bfbf9bb98c003412368636ca64060d70baf35dacfe2a3ed0c86f6a6e6976f3e84e58becb10d248152fd6ce68a768e2 SHA512 3606c9f9a5bd81097fdb9f86204198702ca2f0cfa7836ff95f4e0132e220a037e0be9d7cbc37283473908d0b06f78d7c1c63584711b7bdf117691d5ac83dfb82 +DIST @sigstore-protobuf-specs-0.5.0.tgz 61726 BLAKE2B f80f885dff560b0687849d57757ea830212bc084967d47433135d3a8ae0045525c8a0f97d817923427501a733be5d5f5884075a5a5675273dc064e7eeb8bcbf7 SHA512 30cf172305233766f0bc283542faccb5b066a5c487ae4845482bb50f5d4dc8fbc3436e4711ce281b9fce7107ddfd395ffcec662961110e3d33184db78d068cc0 +DIST @sigstore-sign-4.0.1.tgz 20355 BLAKE2B 6e34094cf5599f2f27beb6a0b5f301dfb301d331350e82742f07d278553557a9d54b4dc903db0fbbd961001b7cec03c0037f1a2e610433638042777d99316be2 SHA512 285346cb4d60c7d6372013c6fc27ab83147d459a4de3737e96ddc4a3311f7a8caa9bcbc488bc70465dd93b9b0fc7739bbf58b1fe9ec558e94f736260c1fa7d3c +DIST @sigstore-tuf-4.0.0.tgz 18077 BLAKE2B 43289244773bc30d425d116106923adc8ca3056e1d207abfa31358ffc379bb91fa24067df2acb13a7e04ada7b06cc6254381454029469a20214b6fc732f2cb98 SHA512 d1016e5831ce426cfbb7aea07e97cd3ba6848e816b76190969e8ff00ea9be24a966556cf5856627d7673931c90041d4ec136e485d4f72cda4c171c244ef7fedb +DIST @sigstore-verify-3.0.0.tgz 15829 BLAKE2B c4f9969b5dbaeb6f3c0848d3d66c4dc7a33237c93ab2ccfcb7ce6c79ecf883b5edce2a0a5fb76dc7d162c0d4f25708f73c197c1d38efd8175d71b470b74f228b SHA512 9a85ed1c7df70286ce853645f31717d4ca4e16a76f7c293bbfafad7892fccf29818835f012c407e971bd1c6c76548c67259366e1c352cdf9532c39d02e621d9b +DIST @sindresorhus-is-4.6.0.tgz 14287 BLAKE2B 2a304f18ec15a08d018a6e045a2b1984caf6bed439165f0758a683f8fd70a4472aed27bbd481348c960b16884d68a7b5e422668461894fff5eb24429e3172ba5 SHA512 b74f6f48ddcc75fb32087a057134421ff894b46ece2740ac8f307c72302629cfef6bf90881e0c8fd3c6c8a0767704ff86deef7e26d1cbc863035a5788b65ea03 +DIST @stylistic-eslint-plugin-5.5.0.tgz 132491 BLAKE2B 31ea9e822facbc438563a276179a8d3c545aca9d005d66df2c67038b509cc9f1b65a388a5650c901798a41c645c1bcae6046374047ecfffc4cce68dc9afface7 SHA512 21e645fbc1f49ecea9ae0e15ae48602fecabbc35d60c7d9c29c86b6e1f347a31bd7508195a9d747a91cc6e046e42f81c84b208fe57e1e979f796eebee8bf3a1f +DIST @stylistic-eslint-plugin-5.6.1.tgz 133197 BLAKE2B 5e85ababe06b2ad0f8979f80a0dfdad1ba6c6f378d058353518e65ee42f024ed6b6372e22a8f46026310a00ce052ec753714e33593ecf7e0c74f6d815472defc SHA512 242b3e32aa177d7ad13c66c69a1a3fcc64bf8cc727de278a97f03c6089aa89befa0bc923819c2ae6e505cdcdf494990cbdc721b919fafeff080292f1962dc9cb +DIST @szmarczak-http-timer-4.0.6.tgz 3951 BLAKE2B b0ae5216fa2fcb5ab85fe41a09d8c3e17e61d0caab7f4c027e006c871a436f930266b9e7b5352c87b0a125fd8c781ab88f36bd19bb9221dea5da5ed9e124ff30 SHA512 e0101f7f29183a03bee67cc1598c04dd6f74b0180b26850f45659c2fcc25ca233c201f22a49cf750c27d29741dd512905e92a9f13bad9fcd0766d5acbb6bbbeb +DIST @tufjs-canonical-json-2.0.0.tgz 2691 BLAKE2B 479d3438b95f85a9444080e6ccfb1b00095d26734a950e7505418a3d4c97a9886fd3162d355cfb4900587155c1180d75e6f7b0a963c28a2805422d5b57cffeb6 SHA512 c95b55f33b1da3ca851defbfde4c3cd5d48bc85ec3e7be80e5c0850a2e17ec1dfdb564fb49e91a105527be75891f3fbda8eeea2536a1d496eb0e358aa85b5d58 +DIST @tufjs-models-4.0.0.tgz 17888 BLAKE2B f4a316de44e5070c0bff96770b226410aa10ee7a89971caa5c2316c9969e15224a4d501105ddf8984f9d16560098b423a5beccd0307858580badf256006c354d SHA512 879c7981afe187cd8239ef86a03e3e80a51e5784f789a60ec6a2ede35191280a629cf23b0cc89d84298d5538ca7e10961492065da14979ed3b5dccdd4f88dd65 +DIST @tybys-wasm-util-0.10.1.tgz 125759 BLAKE2B 4d48c7fbfcaaf5a332521fcfbfd37718f1787fda65cd93600931377ca8694c0a7fdd1462760f86a8d6ff49d8f8599e5f4ddc6aaffba0994f9f0cb945a36c9dc8 SHA512 f6d4da3c92d289e8d92b1f819a8838b92b9bb5ea93bc5ad5ad44709261e2c41a341b8b1e0f4cd4c69f7c1350f35012712d0dcd3f05eb18a0e2563c31fc3a4fb2 +DIST @types-auto-launch-5.0.5.tgz 1905 BLAKE2B d8d3fb492227d2f6e8ad464d2bb0df21dd36d37c72d62d932a10762256e56a6839ee3e22a948a006769789610e683cc8d5c7b57f39b2ef1809be0b48f8749f45 SHA512 fe71af4194b333fa6f08c0a1e06b769087a252638ffdc28625b8e522723e03ee4ca15ffb5e64f9e8327a114f1ba9cdfe22dc447b8502d8656ca663f370273c72 +DIST @types-cacheable-request-6.0.3.tgz 2950 BLAKE2B e611661470e0380590eb301073f81812420464ad1dcfdf64bf529ee005956a8304f5c907dc5d0fd5ca18fd958c9eb23453a58789766d12439e7f7d033e0000b1 SHA512 210dc46d3cc6c488a06f5237a8f65cd6b5899c7d019922afe506136a5130c1e16fc810cb4807b6e333f495efe1ca2ede7067d9565215020e0166a6fc581c0aab +DIST @types-connect-3.4.38.tgz 2553 BLAKE2B 7d1e9d047317a731baf100338a692fb8ecbd164c7e053cdeacc08e044e10ebe888ae2f095123f4b3c88d388d62c973666d633da3a63e184b23299bc77e6d646e SHA512 2bab9139fd4b0fcf2e0d0a890a4b40e32ccbd586002ba3607ec234bff9938323ca5ac5f50a72745cf48385589e8ebbb519c4642d66fc465cc560946a1946daba +DIST @types-counterpart-0.18.4.tgz 1847 BLAKE2B 4d0303c2bf85915d246fbab1b124bd6237ddd7f3cf767b3bd85641d0ff9784c62e0efa20d8a659c9e48b4d3c38fea2c992c74e77e73c05185e165b71874a22b0 SHA512 6aa060e68006a3faa1ffec3151fb8c69d0eed963b430458e6e5cb3c1a3354a47b6c62954c417e03ea6a90055407eb5530cc5706b450c6abcc6a2df26eb8200cc +DIST @types-debug-4.1.12.tgz 2170 BLAKE2B 7240c32b8594bb5f9992e3641eb3a364043c7586b480e1ca64cc029fce73ef3a956df19e58358e3f9f01c84148c6c0be98ce04fbf2868b748533263bdad6d75d SHA512 bc80a159d546dcb1b548cc44bc8fc02be15626d865aea953bbb7dbae5cb04e491a38dc24fd40066942d74657fcbe4cc504b566d3390c742aae84be5a3a38573d +DIST @types-fs-extra-9.0.13.tgz 4927 BLAKE2B f82048c1f7b1a374dd13ddc3bdfc024add235488a95eef51c2c4fc80a680e7535c1e8aa74f0f716617095ea3c08965711cec7732e9406a852d736da5baadf902 SHA512 9c49f007efb5bb99550ccd94238735fb947e15868a7da0334b83a87287229a3566de7430dd3bb31f950db2872b71305b8677ab6e5c878f8038f6a5db22265da4 +DIST @types-http-cache-semantics-4.0.4.tgz 3725 BLAKE2B 162be0a26e4f28fd9afeb9cf4dfa3624e4e82b3d57ad530eaaba6fd126d555ffe9926e7f9702f8884f49d640077803c0b27c3a37d1ec3a4b701f9e2807ab2869 SHA512 d66d1b20555cede256caf7bd4b4467b9181c42a17f5dde50b1464065e405af5437fe9f495a841012a995cbe0cf4cda465f086021eb40a1817c252737deadbd40 +DIST @types-json5-0.0.29.tgz 1507 BLAKE2B 98a739e80b3aa14ccfa22d961bd42e58d999292c04843e114fed3eb0f2d0394681c1ff187f52bddbd1908f99cb0c3ed34f2abbfa5a321d4d58cdb18482d3f877 SHA512 7512e30961d8838a1a03bedcc4eeb8a0efbb2700b09c8ce464f76bac2ef58d0990b6584ce79ea9c0aa396d4ceabd99dd9156de14b2088bef530b8d09345e6135 +DIST @types-keyv-3.1.4.tgz 2638 BLAKE2B b3ec70a6443451236ed6166bda3f9c491b189be4d742a72bed9b78e2c17be3e5b79e7dfb417f72f7ae814638193eafd45409366d14438a62b9679d9e76d3b447 SHA512 050e5a64d482a63ec3e8ada4b2b4424e62912c4a673ef58388b3dfa06ca167efbc62d88af5dff70c128f260af2df9f57fcfd4f7ebbb2630be7bf0163b8488422 +DIST @types-minimist-1.2.5.tgz 2466 BLAKE2B c5a1240a54cb023a05fe0b45e1b150de211caff371d2b1bc926cfc588fe54e5dcdcd06d164e739b8a2af62bb7a1adb87c8d8fd7df665f2f964f3a8abd0080907 SHA512 868bfc6d4ba22e2c853c6c853c4d65c16866cd86e2ace5d034da38d3ecb7ce8c3c6855537b29f75562f454515f74d75d03c4b855fd13734eb6af3c8dafb3da6a +DIST @types-ms-2.1.0.tgz 1951 BLAKE2B 8eff0460aab5f39f67855786042aee4291ba28aad1035f2e6b847b6fa3668dc49d00b8f20e421a019bf3db1aa8a8075b6e4c77745feb951d25244ccda7a66269 SHA512 1ac0822190c4fe9de2f7abed12ac7eedd054197adcef37922b7c303c721a453852fbd3a15885d1ab3b3877a93549553c83dd43acd456c56506869e4a5d06f654 +DIST @types-mysql-2.15.27.tgz 7216 BLAKE2B 27c06908cb1422b2b3c83daf98231c49b188cba4261954500560fd60cff2e6f125159006362cb652f7d27a738e537ad8b5dd08e0f713f65148c58a260dfcbad2 SHA512 61f5a2575e8863439e05f04293cfa15ca99d4caaca97028dd4c34a00f06ee496312f0044665ed0cde1291a79596f754c189aeb1a607ce205e21fea1fb3f4decc +DIST @types-node-18.19.130.tgz 383032 BLAKE2B b74a67b0299f2824f081a5bf692b57bc88f690c64e1ba23264da1817c4f32bd951ee127ac16fb9ed7a7d36bb6f594fbc2d5b335b079eed9bb023afc0c3b25937 SHA512 191697431ea319f2fcb0a7da2030fa3aea5b20706bf63bfb2676a697db41ee5e2fd3af0f00e5ea7dcba330ca393e16c8b3a8204755ce0c42ea6a14f647cbf47e +DIST @types-node-fetch-2.6.11.tgz 4100 BLAKE2B 852a01c91178e4da1ea6a765a1a9aafe2d4bf503f652ca47ec96df990cdb9f4e58921d64dcaaedc812f52f0f1a22de867002703986be2a038d2ae0a9719d1034 SHA512 db8c458fd479fab7d024b472339eaa87ec27552621c970b6b64a019ddb58d14fafb9ba8db185c68ee7c1da79fc43a82dd0bac04702fa501b4c092542c25e01d6 +DIST @types-normalize-package-data-2.4.4.tgz 1858 BLAKE2B 639fcd8e96cb0677579712c55d411f6e7824aa3fee28b59be07c4280080f46238aa6c3e5526c93c8cbf4d104af9b164e812bd41fe162a79d8964fcf78b1c6554 SHA512 dfb8be39a59387da9e2b82d21cfb32442ecd6a19c6a2d36e66f8cb4a070fcdb9691c1debac227100e808e6009d2a6edca289ec697d4e7f420b8937276636dfc4 +DIST @types-npm-package-arg-6.1.4.tgz 3055 BLAKE2B 9f608851d1febca80766f47b9eed7e40def3b7eae2c0f818438cb2101b30d4a997c1161a3cd6bcfb168ea79804cb6815dd4de7fca01b1f206fa493f7010e7674 SHA512 bc381d6cccb64171e702bbb396febca54b570a39aa524dd6ac102c45ba11a2fb0e9b16df9ff5a26028e679cc8a8c6ced9cca6ce5d5a9e14ab6a6ba7e225a35ed +DIST @types-npm-registry-fetch-8.0.7.tgz 6069 BLAKE2B 866b947717e93e95ef6604fd2550eec773bdeeb19e96c8f91d13097179a9fb24376fb98d17ae6068c89d78d047c2a923006b4bb38ec1761c8236c8ba6e0e4d1d SHA512 75bf62061ee40c38389514f89385d9e8889e713120142203e2a93e54354f6edcd4f39e6adca64b0a7d3c013af81f6ee7b5125586e950ec65a3976e07e36c7deb +DIST @types-npmlog-7.0.0.tgz 2285 BLAKE2B 558eb38088782021775b6c2e83012f365c0ad239e0acbbc6f56ec060445f57e245a5331800d14dd2efbd05c14b91f39d52e8eef3fef82fc031106f21abbebf0c SHA512 84959baca16fc4ac96c125178d93184c836c48e63a21c961bc6399f7b33c69cdad991f613309939d868c7691a1be3bbd72d58b4cf8424be78b7d0365ba212341 +DIST @types-pacote-11.1.8.tgz 4909 BLAKE2B 796cbe9f590371a1d7e5cadc31a44475a128e08dc1a0e2da0669ceba8ccc99018939e66317c8604cc9a8b628a6d9224ecfb5222513db13a8fa783e12a2e817b4 SHA512 fd72d1d15a138762443b48c9835abf7ba461f5bc6306af6fa2b26e426b53eeb46b5d2896cfb7bb36cbd7558250d22f09c4c94130f3d80d39eb45eecc651140f1 +DIST @types-pg-8.15.5.tgz 5313 BLAKE2B f050bbfe97529b7fac28454d3fb68326cde9032bfb0eee38b406bdfe584256222c22459c8f411542599fc9f48b5e9faba8811523846881b0dfe808fd74f37313 SHA512 2c5ee517acd610ac6e4f7fce47cc00646ce483810d19714dca257f25e3adf73e41fb4655c1baa5f4c72a5f973f592b45ab519a1aca3b1f50333ffa92ce694229 +DIST @types-pg-8.15.6.tgz 5316 BLAKE2B 6623541b3d22ead0791be499495797a5c5ea7cc7272a734ef49e18a52c97661f63cdd16418507b0bdb87352a56f76b4d4f8f0a0c36e185b40e440e21bee2e011 SHA512 36868cb738713abb9b78bffb519b8d4eb7a307830f009d11a7166a5d07f6a97b959533ee1ba63ca78bbd74a45ab9ee328e60bb661cd53b6fd8cb29f6e739eb3d +DIST @types-pg-pool-2.0.6.tgz 1882 BLAKE2B 8068fc4565a46e8dc7d3e484b825e4ca241187d35ade3b8c57c293e12eb98a54cd2631cbd91a8f980cc11ad4d47a9e89fba08255787c3a4638ee92c94005579b SHA512 4da014139aead95418c5a6f94eced666128d9ae37bf10e8f885a274c37696f1f1ad47d0cd6f872deb86232397e7b68879a8832330ee3645e05ac4e9e254cb91d +DIST @types-plist-3.0.5.tgz 1839 BLAKE2B 1e1c9e58369ba62259443fd443b863c26a616469823a560c6242e21545da3d8bd4300ea252226fd0cb898fb959a2d9907894ccdcdef01d42bfb688361bc42e19 SHA512 13a3826919807b858399636c2fff5132a7649330c26357adbad91f95693873e01c8c3534ecf733d5f4304d7d13433f8fc6a9fd8b82f54d4dd41698e7adc0e0c4 +DIST @types-responselike-1.0.3.tgz 1949 BLAKE2B 03f9ecfd3cb7b796e5bca134dea48fbe770aaacb38163ef79301f186b7a57ddb1a22cb3a503de3df5f81388b13ac7d21ab2d301fdbb16e0eba7a49f274b1cc31 SHA512 1fff8bf94913577dee7f8f4f1f9a420140553cd8f69c30574cdfaa4b574ec32ca0db897709c89c89c080edc6be1ccbc9059705825e6bf1ef9147a7a5b1be0bcb +DIST @types-shimmer-1.2.0.tgz 1697 BLAKE2B 1c82cac56d26c1a0e158c60f3ad78e7cb399e97a78039bffca2c59eaaf3287779b3817f2f7fb53f91d18dfb548cff8b0330432fabcf6e358f63dae008ca39430 SHA512 504ee8c6140b2ddf60b9be892880210ead3a4f417a167cedc0c351bd882379048178c735646fed038ec4c1f76ebe4b904bc6a96e433f9692e95ac682798b1756 +DIST @types-ssri-7.1.5.tgz 2428 BLAKE2B 79ef552339c53b81c83df31f940574c4d9b573824737d0d66fc81c13f2ba69f5bd6c5d189669f30b5e8d5cc1eda2516a73272127f9efbdffd7a9f24e7145c5ed SHA512 a1d0ffe7a4b7079d658882d29396972659d8b7df52e91b7d1050c3a86b49336eab2870291dcc3253f528607af32a47641cc008aae1960ae1ed4136deb3e15143 +DIST @types-tedious-4.0.14.tgz 9687 BLAKE2B 29afd6c66dc6ee749a63988f46a797a70e0c93e5021590aac802cbf3747df561b4815a5fb9ad3c63b3590a3e4c6f400f63cfd7a51e26086b82eb1a8f58af7b9c SHA512 2873ec7d7fc5a156d419bc98be4d6af4c3101cb3de45985125974ee39438623bc592fe2130d8210964efcbbadd29eb2c06c9adcf87ae58258007afed56923523 +DIST @types-verror-1.10.10.tgz 2512 BLAKE2B 0b3d11827941c9dbda09c22cab50c7a649c3d01145e8d1c2933aecd56fdc5b90f5541b11ff378fbbac8f96bf7274912bcc4a67a9278f5755b49a4cd44c3da465 SHA512 97830cd09a699f5f216fdc6633ac300f5b937528697fd3e7f346974d2b672b50bde20b4fbc9715d85ac399b39050041f27570a64792d910503c04a9a00a5cc32 +DIST @types-yauzl-2.10.3.tgz 2405 BLAKE2B c7aec1c54a53549f700521004f02e47b645478f7d4bc79c316e9846be58f891a1ade3336f6bb1fa07e04edb1291ff4e376257b0b2468a72cb1f581ba4a6897cf SHA512 a09a1fb6fd0b4ae683644dcb7b80db297f8a4bd1b7e8dcce7926a9f745082b4c8c03f36128986a9521ad3433913516886d07f38d70eb41ad32b49ea63511b3fd +DIST @typescript-eslint-eslint-plugin-8.46.4.tgz 312468 BLAKE2B 8d29bb5c4dec2f3ea78a239b5f3140782a8022666209c705d74f396bfef98bf60845c27394971fddaa80037517540d19fda9a869b6d53afb58089d2131e5524d SHA512 478f158664c9aa994dc83c42caaa95905499231d6a5fa3f3c2a81c5e7d6894baf3c5c4810e53ac6ed72742e42136d9cd889e177b9811108d5fa1a8d869853656 +DIST @typescript-eslint-eslint-plugin-8.48.0.tgz 318211 BLAKE2B 0035b70852f1b3277e331705eade19d7e8c9e9a9e7892cc26729a32820ed67b7ecb715971d1c38521fbb0ceeaac39c69fa2b9e72a050e37a632d8fa1b704b8d9 SHA512 5f15cfe6d2f5b71975dd816dac408409061e66305969de1fc9dddc155e1ad7d2e4018fdb229f5f7afdd44b84b97c3555d8969816228067f1914ce2deafe99bc9 +DIST @typescript-eslint-parser-8.46.4.tgz 4316 BLAKE2B bbd79a96e273d77bcc9c197085ed96712aabea34f26ae4d48df6c1fa5968f41a1bfee275ce6a018d5168245c8f3fc2605c63b98b0a56fb82337b90e1373d36ab SHA512 b4adc63c559b8abbcd82c34ab68f94981fdc46d9fa4d97f2c340fa20aad6e799fa55bb3b289a19b48fff9294cacc4fc35269a70050fcfc26b8eacece6ecf76ff +DIST @typescript-eslint-parser-8.48.0.tgz 4316 BLAKE2B 2401664ce988ddad8f4a456826dc3993c4e56a22bd240388127c387514a9df489e22165c0ff25c3ff28573a87a5ab7ca42367d283dca5b01797ab8b086d0c9e8 SHA512 8c2cca766fd02b42a0e15e082bfa0c95166563e40e71d8eff3d536360287664d426138fcdbf4554b1d6657fd20a8254c27f0c0f997ff4b834158d17c190f9ea9 +DIST @typescript-eslint-project-service-8.46.4.tgz 4928 BLAKE2B 210125f2947382eb5f62fb121a0ac615e11e8b763318e26b5e2a62a8e602fcc16d82f0d3878ef6d52b520c6e583e6cd980cc9c59d08c2bb41e61ef8835693cc3 SHA512 9cf89148abafb5337e9e8ff637592ddad521fc7a05cde1203a6f5f43a5d0938fc0a46aa3c74cc520868b27ac28a11d47228a33be3da3eaf4e2ff57e0033ed461 +DIST @typescript-eslint-project-service-8.48.0.tgz 4928 BLAKE2B cc409c362167bed6ba16a6ff53f5db5d322f9d85318348c181066a7b13f47216382464f9df3697f4affd2ae0b9d0bffcc20084c14a46d83bc8eb75111e465aba SHA512 35ee024d9c9187505e7017fce2c8afe36c2fe6f42f56682d93c02e8847df293528dc3ac1686619b9e252c71059f1f8e4fcddc3ae00a11f84ce7483b03b08aaab +DIST @typescript-eslint-scope-manager-8.46.4.tgz 61446 BLAKE2B d304f5d6a985b8f4cc394ba4496173247fb4060d90879d488cc9f050b244b584f843959a42aac610e09944822e8a2b05f55a77881afb2bcd391f0635cc784990 SHA512 b4c0db2c65dbd700be31c37533a41e0f1ecfedcd1458ee73f425eaa7b27c13ec46709b94b9ebd62b1b86f23e35168c1e4b7f8be354a4c8a2a489ad7a8e95fb08 +DIST @typescript-eslint-scope-manager-8.48.0.tgz 61522 BLAKE2B 937132cf512f9539e2b3d0b4108271ef82d445d154bef90d256f6d0c6624ea2e0e821c85e13da69067814b5a2b5552266ba2a64e2c5b0309ba91114d89f2bfe9 SHA512 b86492b1baed26b2ddbad8b443543df81175fe214a6b11a84308d638854d26fd28ea89ab77247c72ddfb9b8c48979673a64a7af4a926be89bb4054edb9ef3d61 +DIST @typescript-eslint-tsconfig-utils-8.46.4.tgz 3487 BLAKE2B 751eef108721b3e653ba17e568af6281d1dbf90cda06eb49b563cac84058ae51224478de1c8b292d41d02fbbdbed1d1c2025949ce8eb1487676cd238c0329de4 SHA512 fbf5ea6993c8024e828e0ecd5a04867b6ed7e33306aab16a67c6ad26c5f7096c47fe3002a969eb588ebc87b9c7425774cbe93d7934e36fdafe294e2dc0ba28f4 +DIST @typescript-eslint-tsconfig-utils-8.48.0.tgz 3487 BLAKE2B 8f85747fb0b409b8cebd2cd2fa064e7898faa9ffb59369c75f12d0e57e55939039ae40b6e045858554c44dc51cf92d30a0c54dcd802b80ba9ab57422a15bbfd3 SHA512 58d79b8c1745772bb5d2c4753383974edd8e90c77929620bf8b2df787f4a8603fe8f37c357f2c8dde5f3c09d6cf7e61cd0ace8d9f402758fcea5dbac08c9a1eb +DIST @typescript-eslint-type-utils-8.46.4.tgz 16880 BLAKE2B b1ee2970787cbb8777160d8f763676eebe77872b28b063d0f3d956415013df29ee017a258a6b03cdc2eb06d7ccc9546581927b0b2893154bb02380edf694dc71 SHA512 578402f21ddf753e56ae8eaf00d93a7a88ea7dbbf96e9c07b8cb0170950992ab36cf95e7621273cb3f58d36794985f6edcf81711488eb78c382874773fecf43d +DIST @typescript-eslint-type-utils-8.48.0.tgz 16882 BLAKE2B d26e3a0174fba35cbc426caf580ad45f0661b50b29e11ff3d8617044688467ea0af39ef024255ef5fd1183c1ab002a6d3554767d534296eb4bb712e6497888de SHA512 cdb795695a9e5e185a6fa40d10a7caf7a5f273b510ba81561118449e3de62d59d45ab427bf5e5c24db1e5278bb7f7839e7b826d1ee3a2d9e8827834954e80ea7 +DIST @typescript-eslint-types-8.46.2.tgz 19217 BLAKE2B 254149bae7611504b151204599428015b556b08d1e4b4d7973d7dc6982c560cff9c720498d739874a201cdad2550addecb3880b8279485e16b3c8c3099dd67b3 SHA512 94d09609babbae983ba83b10adddc3e8dc9662efa091310d906e4829885421cc526f9f52402fe1110f8cac6e2c4e00558214e89cd5aae366c0fdde3262e9a575 +DIST @typescript-eslint-types-8.46.4.tgz 19217 BLAKE2B c1e67c55e3d329d5fb8ed4f84eca628fab71360a8ba4e33ed752c42097c3c7c7606470c4bcd29765b93c334c06f56791bdf137ebf5cee481c83c347b2d9abd0f SHA512 5128f2c66de040478f754c090458e318d1b5f3163d03682b0d51ae93bffd0248c81752fe66b567c11e55014e495ed52704bfcdc2ddc7df52a54436a4b2733bff +DIST @typescript-eslint-types-8.48.0.tgz 19276 BLAKE2B 1764935941d0894cabeecb41b5f13c03461f7b55480e2429a7583f1c49fc9dba4bb40f7b59d421933c7d1b67b45ab7619af11e92af46e104201713e64498e5c1 SHA512 71031c190407ee4c0aa15b300f5c5d3b2b71411eb431628cd5d8b6eb1494b717a1683b3fdf6669aacbb95899574ed4d3ab20152bc47b86fb149c85d14be6e3bc +DIST @typescript-eslint-typescript-estree-8.46.4.tgz 71737 BLAKE2B 4c1c9e837f7bbbfc287515530140ca0adba08abcae69675d4aefedc4430b9ff322edefaab422e7c409d03ac3099290d270688b108003ac3e08f867e00fa2c076 SHA512 ee8576a843abd5de0d58d9a95cb477e4bbc27ce913372998f68c96fa55079260a7a3b68e9887ff84c6b276724151304c442386661f188e414e73c75a744a0d18 +DIST @typescript-eslint-typescript-estree-8.48.0.tgz 71716 BLAKE2B 2995eb11a0ff901fcca715d31ebc7a4694055940ea1f5e28e63355ab2ec345395c976773284a9b285401cbd6a53bd32fd21d21c7a317e6ad6a162e6524912322 SHA512 9631da6f50923b8ac6ad0200ca2cd44ba5061c70a201885b7dc219d73549af99ccaf2c655cc5564b776e14f48abd251b14fc245cc164d64d043088ee6f8b1145 +DIST @typescript-eslint-utils-8.46.4.tgz 42714 BLAKE2B 617497f3a64605d87bad79f02df021c7ccae9e60a4c80ec19d5a8923a0ebbced61b3cf8551001604d80df8f72f10fdc206bba955c9f70e620000e31bb0e60f70 SHA512 01b4afd757e49465d5e93dbc769d8c7b4e14c3dd11da2277d20d9b80bcf9dbd2a87a1ae691bb35afba5a16aaf5bcf0998bb847c18c58b717f240c442f106954a +DIST @typescript-eslint-utils-8.48.0.tgz 42712 BLAKE2B 53b5b50c138d4b4e52223bf34ac6860fa7d9c349d32d946821a0a7b9bf64e67b678b5f92278acdc2062931788aa0e350bb4409cb9765bae9aeab01ab133d116f SHA512 c9324ed57b86c42b127c856dd7ed54acb1edb9ef31cf5e95f1aa733d8234e96d076c46c4587c475e065a0206af224a21f86795ea128a7798e6d2c4ba398c565d +DIST @typescript-eslint-visitor-keys-8.46.4.tgz 4166 BLAKE2B 88256f7bdc181060f10faccb325f2b1733f936e3b50bad30680f74dd06c40619d22b30bb2053b1a86119a856462becd8fcd5ea2d5451d8ab47d43a67fdb88228 SHA512 ffefb90982d0aac3bd1c518b23b00faf1049628fb9382329562ba157cab9fd06b7a3998cac5fff7901e4b3e3d772c01568b767f35edf32e4bbceaa1734d6466b +DIST @typescript-eslint-visitor-keys-8.48.0.tgz 4163 BLAKE2B 4053d5e37d0100d9aa876fef8d29fed1b9aa5f80a8ef5fd80e670419899fb4b6a442fcc0bb469358304a1ac0388ca0904e681d23c62fdab966fe1a6624e8c17b SHA512 4f45c931a44f387dfe2c16c07f34768da95c90fd4c486fcbf5e52d6340c4cd4c9569727fb7accdd2747b728e64cf4264a3f9e4498081464cf5763be36a35534e +DIST @ungap-structured-clone-1.2.0.tgz 7054 BLAKE2B 2f53d7fc1434519c6be11cd787fdea968bc8d7b746bf23553e461e30a9aa35eec59263d18065d373a0c18c0f412a93700d7f63f2ec69e53642f802fec4ab0a99 SHA512 cee55d16b3098ae083414302cd0683e8a2f6f0c8e7aaa37c5e702a884abd3cd9bf8423d34867eb5c239fc23d68c382c56ffb4dca624fc2c35b55e3dcd7116aad +DIST @xmldom-xmldom-0.8.10.tgz 51858 BLAKE2B eda5d84ca04f2594dc0755c07930bd7da2102847354169e8f34f229f1528bae33bc3fada9978b5ded650599ed14ced5603ea1d49ef46a936c70c6dcf1db1f202 SHA512 d9600b7d3978c68d9290609846deab0d315f93d475733981bd4432d7680ad8ab91288a5612171b6f3cbc1195edcff8e446a1d7f1b14473a142d478d7e1351663 +DIST @yarnpkg-lockfile-1.1.0.tgz 75114 BLAKE2B a4e168d83e74726b407ae3aba8e13b3ea904b265f514a87bbe1d854976c9372935309753f63160dd0db491b3b50ca3b55714d40d0675546a359bcf92ba77a0ed SHA512 1a94b0bf25ce70e3a557bd2f6e7ce38f87d6e715bf15d505ea7404b7510dcbb9b86427338b5fbf6ee5543c0aa619fab39ec391345cd432372d4c8a7c6bdb6e09 +DIST abbrev-3.0.1.tgz 2426 BLAKE2B a2f14f39631e8049525cb5615d1b0c6d0be5ca9b080b9cb2ce1aada79293b4a5dc844b102232d574b8fc05f61bc5573e5b298e93b4872b72d5b28d54eff4e953 SHA512 00ed9a73aa63441dd2266189a3ebf9fda2ba3a6820a7a7ec2ebb3ac0df5b777e6e96ee1c0b068053dfbb6615e37aa1d591a1d384bbb31f49d9af462908387282 +DIST abbrev-4.0.0.tgz 2469 BLAKE2B 3d4d39405005dd8ec74ff819061a21e692c8ab88485100c15f891e321f3fc910cf58894c53bae5c0ff91c61bddea90814acc17e650bf0102bbce5a7262c2d551 SHA512 6b5c1f97268bd2d1ed25298b48e5726d8872db6bd18a1e1e76e861ae472382b5869d17eb66da2f2761518f1b93b64923e3b3bf6da7f447ce905393ae629cfc7c +DIST acorn-8.12.1.tgz 127429 BLAKE2B a252a8b0a02349adc7871e2f144d6fffc49111520852a42aea90579b619b660074f8a9de7e5b6ea7d9d07865e7196eacc6d0c7ec53adef0e8df3674cd2b81999 SHA512 b5ca46c88f736e2cd3f496d5ea8604e3bed5ea64e55efbe2d13d06dd2348604d9aa66fc6e61b816b5f8af3d5467a8bdb83e8f2702adf865dc00f112b3ae3ba26 +DIST acorn-8.15.0.tgz 130851 BLAKE2B be1b078ececa9951187e31d809f3e12a4c5bdf2272594936620303a6004f89fb5939e338bb74afaf03286d70104f0a036d794b8b68fd9ea603fd7fb48a2c8f22 SHA512 359c896ab05f2fb9d6c08abe1432fa669ff21c485e3cc3679c9d32dea7e2782ae636f61cb7cbafb62578d54be549ee9aa407e4d1f63515b5b1f8dc1f9a9bed4e +DIST acorn-import-attributes-1.9.5.tgz 5005 BLAKE2B edf067eabb8ce4d1dde453db30b3fec31622dc35007762ed6652d50d68e9934d10a39581cba7797208e18546b5cea4bfe4051cd251b2419e56e04ee50a6f062b SHA512 9f4d95ca4bf9b80dde1c633f676750adc0f9ea42fc4f20dbda9d7ed0ff373c294c9c2fe773e6a76d046120e5a74aae0a7bf2af0cfad8dc2f610ed0bf0377879d +DIST acorn-jsx-5.3.2.tgz 7635 BLAKE2B 97454e9e8677f123ee2de87bc88a45c6a366fc07e98fed6a8fc2facaf970a42650adc22976736b23768010c744da7bbc4b8e6fff1393b8046ab14d52d4819d7e SHA512 aeaf6cf893617f4202863b435f196527b838d68664e52957b69d0b1f0c80e5c7a3c27eef2a62a9e293eb8ba60478fbf63d4eb9b00b1e81b5ed2229e60c50d781 +DIST agent-base-7.1.4.tgz 7812 BLAKE2B 3289afc27afde65da8a55fa18496ec175bf5125bbffcf883bf9dc619e5997832e78c7e191d14c676a07f53f5b217af60738ae63a21a196e216675d4a9181c818 SHA512 32703e613f1fc1f24f801c779bad0c36a6a49b7d173a4c88a07d72ea1b9342f0b43f0646ee48bc35a70b05cacf6cda28f2f119cbb269ba4efe8cc3be094a2f4d +DIST ajv-6.12.6.tgz 202371 BLAKE2B 289865ed8ffbc735067f26a2bb501c0980a2225c4c589246571c73de3f2db454c4ab08dc95a94d6ee87677a983917683fbc49087880f0df7771481fca5ea56b5 SHA512 8f77d52e0bd3a39dbb6a7c98c893864d825b1bebe79d062f1349b99a691cd532be9f1029a6408b3082f4699e1d6e55423681928619be933138654ca4068320e2 +DIST ajv-8.17.1.tgz 217137 BLAKE2B 21d12f2db77f9d3d074b274ba1c5f36bb4c7cf27110447f7a603bb5726955680c61c09d7e3239503788e21984dec87967f9b50106bd196960452b331014766c1 SHA512 07f801b8d8394a2313acf902f80dbe716d11b33c316269fa558c41fe29e5052b52e67c7ac4722dfde84a46120c86abac97b6bc2e34286678c2b39be1c31390d6 +DIST ajv-formats-3.0.1.tgz 15999 BLAKE2B db4230fd30a4de4cb55753e43e12bea76ba4a50e1dd4f4a9bb0e00a28e6641f218722203ff3d199c9d22a511d8a4581764b1e6a16141ba7c54619d3b3c6275c8 SHA512 f2252a979d04511fae51c7514371c3a9ae84572a3776870bf20e5627714d7169aeeb621b90652e7bfa44c8b056f1518a2ae7133e0a9e92ce1f214d43038ca8c1 +DIST ajv-keywords-3.5.2.tgz 18254 BLAKE2B 775bd0d7e3e20be37355041a64d1a880edd38fe36cb7ad7ef27ec5ecd995fd91a842abf36306019b18dcb52f429e06e00e5d18a03e09f1fda98521d67db60cc6 SHA512 e69e964cdd03753195424e958dc123bb5f4881a1ee75a95c7da6c3ef284319e03a6dc42798bf82a6f78b26aff786f7f07756a87fa2f7f3a3ae824c7a45fc8c21 +DIST ansi-escapes-7.1.1.tgz 6044 BLAKE2B a8e1bdd1576d678086b331a4d57a4e50225d62ec42a99f539467e223252da3c60b0d85a7cb09d97e52c22898ed66b63bee9415f31dd2f6a4d4baa1ee6dfc5be7 SHA512 66197412b1dc49151a55f194794743b8b829904a3c28816307863db80738e9270ea5d0e25350dbca9961eea589789fd91e96f2312336ebe5f70724a09c8cf8d1 +DIST ansi-escapes-7.2.0.tgz 6363 BLAKE2B bd1f309a58f146007b8cc38c79440e010d15828038c33424bf6110165f9d4be49ebb7756d3ec2b8f9998c23757de2a41a39a24c7bcb0047e2b17ca72d2228523 SHA512 83a2e106c97e1813d15865ac06dbada73058b8821d0642c4bda7790bfbdaffbe036f4d7cfb94d98b2036e9c64902bdd17ede65a6b56a3883f17f956277ab6a03 +DIST ansi-regex-5.0.1.tgz 2768 BLAKE2B 0e3e3bb7fab52b396dd661518956478d3677f134962b3c4a1be99d6cfac357218515899a34cc7b6b5ec7cb3eeaeaa282f5ff6a31996114150fc2950385084aa7 SHA512 aae2505e54d25062f62c7f52517a3c570b18e2ca1a9e1828e8b3529bce04d4b05c13cb373b4c29762473c91f73fd9649325316bf7eea38e6fda5d26531410a15 +DIST ansi-regex-6.2.2.tgz 2880 BLAKE2B d4fa83d48dc67bdc281cf1f2a44bd4a0ba8090bbfdca70d8e979a2d07119596f39727cf1a62826421d879eb36de5f385b52683127aa1033d38374fff6153396f SHA512 06add2992a721476968cf93c21ff7273ab2f33c739e9d079040b56e106f0e631d3c305d77132e844c9290c9a7a54bd17ce559a0874d7ae415444c6260f4b0baa +DIST ansi-styles-4.3.0.tgz 5849 BLAKE2B 8b757d5b3ce6856dac441a336b1bbb37bc205a68daedf1d66d5c4e3ae12394b0854928b09790fd6007ab2a8b3ff53c8fbba8412c587bcaf7aac30c3e5778a69e SHA512 cdb07dac22404f5adb8e25436f686a2851cd60bc60b64f0d511c59dc86700f717a36dc5b5d94029e74a2d4b931f880e885d3e5169db6db05402c885e64941212 +DIST ansi-styles-6.2.3.tgz 5836 BLAKE2B 7b85a3fa70d56ee46a2e9a437e862849a13d80ae593fa5e40a804433a715ef037c4d79dfd3d257941cd90d5635c39befc483c92ceba2d3b5aba48429f3d40383 SHA512 e038fa336f0907ea001fc9059132d4a3e6b68f038592ea9bdf2b9c53408035c45151bc52d1c3f49d96021a371cdc1357c1122c5159831a0cdac267bbcef247be +DIST app-builder-bin-5.0.0-alpha.12.tgz 72513352 BLAKE2B 4a008734d89e47839cd2d0b18bebe6220ba98558aeda9ba926de5dfafddac016693379aaf6341ea4ff0f0a11f4dfce3f941268ca017a724e275a7fde61ebc0d7 SHA512 8fcee8d23e8ba8f2f7411afcca277a73e4ede600bbc4d7d8a3ab90210928ac00ba32979ac95319ac40f32a6249fc796fec49ce4296919b9de4ea4b43619c81eb +DIST app-builder-lib-26.1.0.tgz 1018884 BLAKE2B b503533cd3a666314e6c096a468ac3bc598623baf648c2c24bc5d518d7015570ea51266d3bfec956dd5c90e1d2071b6d1d3a5fc1a8b636c5667aeded90d07b5d SHA512 7715841888134cf0fc3a260df17ea7dcf577d7e0c5c2f3fda725c2143b15e5fcadea0fb44cc654557ac246b48f8f4f97fe98413da779b0d3cb2ef0510d50cf69 +DIST app-builder-lib-26.2.0.tgz 1024595 BLAKE2B 340b23f2fb9cb298c1fd92b0ab4f00d9ee601115150bf5bb675d54dd9e25a0a79cd08cd84a3dab55d6c4cb0400cf8b7741a419ecec82d7957799b1872406ce52 SHA512 669ba98a6871c889a6b90608b03c254c3e0407bb31dd2d6a647fef3614118ad305a7d0ffdb233eebbe4deb164f177940a1056fba58dc38b8497e288ec8858e46 +DIST applescript-1.0.0.tgz 4963 BLAKE2B dbdacaead572067cac4878003158e4134cde4e40f2bde7ad4bb2dd9cc8d29ce40d59367b7a9f7ed564e42fe2ebc928ad8434d41017ec8052d7bf54bf55b842b0 SHA512 cafb4d1dd5afb5b6048886b35c0769fcd63e0416fae7f0c0b1eaa53622508cec7d0f29eecce6036d52c126fb9cd2f7b454bf71e81dce1c5e9e1f9db2f61081b5 +DIST argparse-2.0.1.tgz 39740 BLAKE2B a5d8bbd09d9809fdc13c4570ca097f2e900dba0515b5375167d5c6dfa6ccdee69d2b34ba25749bb7af2b5c6e9dca2428e2a3003f8785db5e13aad3ea9bb00b86 SHA512 f3ef56a9e6db173a57f4e47e59ae8edbd6ac22881e44ccdc1ad00835da4c1c7c80835d1fd3969215505b704a867ff3d7c35123019faadbf6c4060dc3beeacadd +DIST array-buffer-byte-length-1.0.2.tgz 4891 BLAKE2B df6d338bf0f114a12230c93dc8e78fcddd189e04c995e6093b836f7a4b78dd617f7b150a20a9d96208425f55997344dae114bac7fb701b0e4f5666ff395f1a43 SHA512 2c713ef01b91ed16060cabe7ae672e4aaded0dc2aff4e1445d0b7f1e96d9858ed5ea1d339545eeb67003f361a2171f6b76278232392fb5cb0fa81c20525d488b +DIST array-includes-3.1.9.tgz 9115 BLAKE2B aeb9a5ed250704b065f2c1fd5be7994e7d57b9cca009bf4b0b35f3709222816c5c5a1dd36e16e56ff40d5ac2b4e8201d83ea0880cacb22bad0803ec9ae47975c SHA512 1667820807a7cc7d0a1f7f3548f4f91599a203f4e6a6776971a4a185f80437d7825639c506aab7975c6b238db2f3e3cf2c8ea1ca9ce8bb8197c34d161e63c12d +DIST array.prototype.findlastindex-1.2.6.tgz 9559 BLAKE2B d15ba42759e28262f740174b2b6eba4943688df49930a6fe4c2044cf729e3171ee2f57d2615469f09ddee80f505a1a1eea7f539c14eb715b7dbcf5fa627d9228 SHA512 17f4ca013933b1e504c4f95fbe6c102862133370c64cafaf900b026680dce5d695ca06c90678c45026e0900bd516c81f5df5f8608a99ff6ec6de4ded757ad3c5 +DIST array.prototype.flat-1.3.3.tgz 7141 BLAKE2B 70ceb728a0bd80609b8ca82ce5baa3a3e4582b39e75dd349391a90108851e9c8f7d9c721a4285eacc379719e11a47f8f26059c4e57fca0b75d5a607f130a2a47 SHA512 af01bf8dad677b22ea0ae199e5862bce703ad83e266578348b5708b242142928aa1770a37bdff05c096cf41f6cd566b67e898cb08bfc73307c8d970f9b109716 +DIST array.prototype.flatmap-1.3.3.tgz 7435 BLAKE2B 79cb30b564809858787da9ab25beeaa16470d7b1da946975f11a120e387338fc9e34ee61ce2458ea6d0d2a30df49fd65585ad63c223c84784eb7ab5614a86028 SHA512 63b5ade7578a252ca2f34845ac909e3c618da3992d242b2516e6e8a89b1b7f9ec208f726e73ced96e3e5738fda0fcb16b0abe5c1ab5ece957853579f93c9298e +DIST arraybuffer.prototype.slice-1.0.4.tgz 7207 BLAKE2B 08a978ffda0d79f3b9e5999cf04cebb182fa643825d221bb574bf0446004e5f6177fac4fc27fb4563e95656a072386419ed6dd0ad46f5fc96ffd92ec6ac87ddd SHA512 04da0263a4975cf43b805da8a483f818113e5f0ed4fa91cc60abb38e008ddc6c22688474f5451e29f85ec88af2efb42dac20650b428ad2ae7f4c447fb588773d +DIST assert-plus-1.0.0.tgz 3943 BLAKE2B aa2631632f2e5a165a76cd8d86a37324fefe080537dbebb80705a1988d43e234f099f2da18a581660466ffa065ecf46c0198855d93f73d9a20bcd729a6f7d4ca SHA512 35f27853304271018b0e542aee71f11feb6fde4c99d211d0a85e413ba27bb4d25e3f9768d6594fafc759f331e89df840bb43c701d3244a8fbca34c3183d9595b +DIST astral-regex-2.0.0.tgz 1803 BLAKE2B 4d9b3ea46c0d4ab4663c9c87d360f2945dc3b925bf1161b50fbcbae946b2442bdc085bfd9eb332b0a9fbf5eacc1219281232f2a3dc27c626a538007246afbe3d SHA512 67bb4cc35cad4d7b798ea31c38ff8e42d794d55b8d2bd634daeb89b4a4354afebd8d740a2a0e5c89b2f0189a30f32cd93fe780735f0498b18f6a5d1ba77eabbd +DIST async-3.2.6.tgz 150393 BLAKE2B 35142b23b0ac34ce98b00b9a197442e871f82e4fc09fed99e34494db753e28c0e4a6e57eb2268191c6a361659954978f3f932bb5092d54c45b087d10c6054b88 SHA512 86d0940e5c72c822cc81a337c578340b42d6db1a9fb90ea9d39a42108b17bb243e6b592860a4ee04ccd13709b26df2e0bc90cc774af52d39f8f84d138ba0b600 +DIST async-exit-hook-2.0.1.tgz 4662 BLAKE2B ea944060ab9ef15b00f299369eb51fe668c39e4ba6ca1abfa2e2fd5615385b4d5250708419c83e25186976ce239492e8bbe3c797389d97666b4676518ed14ecc SHA512 356d9c5fc9b543b28f03b6b933650b41e676c11e6a2393c06f0e4bd1438cc5d8a8564f4f319d21d539b264490f62b0af6230e51480aeb0ebb576510a00079707 +DIST async-function-1.0.0.tgz 4380 BLAKE2B 0db3373386b471affde1aad4b370104438095c88aa1e3b17bcd060e019a1d31a4e77abf4ffd51504a6b4cd84245b5f774909cab281222af958c2ac1ec66c021f SHA512 86c535f007bc0834d1e8a82ef4361fd046c2aff6b98862f4af2b500e86d471da5838aa2493c2c48d5a619d7903920a62d30615b2aad7b8fd1b67125a4ea760a0 +DIST asynckit-0.4.0.tgz 8111 BLAKE2B 72788d9bbc70592c0d54a77531ab70ba362b94999fd27c8f16dc5d9bdf77597a4de7851cf5c995cd90e6d85d61d93abc9088e4c362a5f7836d3879a50e557295 SHA512 39e8bd387e2d461d18a94dc6c615fbf5d33f9b0560bdb64969235a464f9bb21923d12e5c7c772061a92b7818eb1f06ad5ca6f3f88a087582f1aca8a6d8c8d6d1 +DIST at-least-node-1.0.0.tgz 1558 BLAKE2B b888daaaabdce715d51805f00acfb26c1339557097e84cfd8229a3fb56ad4625c2dc5fc0b478a2e855cb8d12b03eb42f1765871b38b648126f8aa994afb4b496 SHA512 faafedec492fd440d8da5e8675ae8b2e25f5e2b53d4d5db459ade87de426c0f1596ce328f435eb2db3a315a69c9645ca5a27486a8a7000e6d00eac16b46523aa +DIST atomically-2.0.3.tgz 15959 BLAKE2B acdc77b3e5ae2dfe81fd81aed975c41b4cc7042eae0067b3ce970afa40b527aa75841e63345be0a6ae66dc9d6771a463daa6034c55592b7016cf39cd78ff6ef2 SHA512 914e859abc19dcbc7bffbcb784f4b94276c97daa21708ba5e5f1aa7fba24fb82a4948124f6d2740b62103dd69c49b5545afeb35475c4056a1677a36b54c4fb0b +DIST auto-launch-5.0.6.tgz 7058 BLAKE2B 4043627198ce57671be11a3d6d9a5afe41f06e1a6efe80d1c782d552a29ec8a5bf2d5d3493e02c62e6ba8dc94bed188feb979a203d482ba005e2d110d85d425c SHA512 3a0c62026e2af4405ff4479774f06254d10d6961378d46687f0ae10245a31c36067b3bb593715164753c576141c46b9224e1f32a64c911dd06ecbeffd310c614 +DIST available-typed-arrays-1.0.7.tgz 7360 BLAKE2B eb4447d6186c80caa735781e58d377bc1d668ef11b24a9aa8c85416e473543b0009a4dcfcec215c0cdf4d91f5a0e6de23a1f39e352ace0f8f7538e3608765d01 SHA512 c2f52306d48637bfbb4a3369abff4cd93837e745190f7abad881592db4404756d23250a8d5969e5be049f83d3dd1ee2120864b05c4c359ee0c8788ef5036a3cd +DIST babel-plugin-polyfill-corejs2-0.4.14.tgz 20300 BLAKE2B 5610202060b3088b2e947a86575902e65925c6d725106a899aed126e0b27ffab87b9e4fa481262cc82f92ac1955fd6dd46f7d982cab2dab11236ae159af49264 SHA512 0a8d98f705fce78b6ce94f200003d77e7d06980c9cb47b8af27d1885f8ddeaddf483bcaf2a3b29bef3a8f721becf9d8f65180512bb7b29ada96275c28cb284a6 +DIST babel-plugin-polyfill-corejs3-0.13.0.tgz 50515 BLAKE2B ed6c5974716e03a7dd3e1e14a969a90d22262f4baa36261a90a26408b62c65e94cbad72150d27fce5176f7085fa7d1ce7f951e564a04f3b43e3c4c794ff63dd4 SHA512 53e18dc0c752160cd599f84d9bc189517f3c01a741deea3d2a926a4b715aa8d20f2a0c92baf31bf9b1cfb0e9a6b96c8872ea998ffa73b75454214667b38cb6f8 +DIST babel-plugin-polyfill-regenerator-0.6.5.tgz 3575 BLAKE2B 1d6a8b363a4b09ef8202327e53bd0c32a88a28c3306e14891725fa6d15a4e160a90516cf4c9c0986c0df062c86a2ca9eb46559b42754bb538075b54afd6d5f3e SHA512 212a90d9fadb88d53dbc8264ce0edd94fa739cf6788ce894435b92981d1f1077a8c2d37708e611b17affc5ec67eb8369535dcfd3a8dcfcbe538222573a0adb12 +DIST balanced-match-1.0.2.tgz 2668 BLAKE2B b0f099627e450582935d0c1f1bfef1025f0b97e44e299010e81325771bb5df6145c01301954e15fdd2e9de88a6bf85f03898fa393c5e722d5936d1e3381457b3 SHA512 de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f +DIST base64-js-1.5.1.tgz 4109 BLAKE2B 02a934034e313a51f530270936124cc8cf52b89217a0943901fd28975282c7e74dbd13ce709e9b52c2493d403cc2139fb1ae6e5a8c42b9afefa675a0f9b08abe SHA512 00aa5a6251e7f2de1255b3870b2f9be7e28a82f478bebb03f2f6efadb890269b3b7ca0d3923903af2ea38b4ad42630b49336cd78f2f0cf1abc8b2a68e35a9e58 +DIST baseline-browser-mapping-2.8.16.tgz 48570 BLAKE2B 63253f742d6b3fbba7362a2a49f126243f4d5075c336e09291af194bda9cef7f3859d4f980758fcd6cbeb1472305e5ce20aacf594763946646d9aab24dd3d58c SHA512 38cbb704643813b3f512b16c20fa5b261d2abc3b9d33f52e25e1e0900bdf59efb41c52425e1fadfe5f0be9f54b479e5123f51b2ab54b9c05d9495c1df72b1663 +DIST baseline-browser-mapping-2.8.20.tgz 48825 BLAKE2B 2fa4830e0d9f255a8ba196a6432d4b4240657f6f7a682baae0441466e34228221018c62299b72539776c6c8e155ab72c112aa5f4ccfd617c4679382ac526119e SHA512 24c5ac745f8ef0eaeadc432e91b50dd507db2caf665f60a4526401716d93d2cf0e99d0142f92cb33feb01704aba97ce55c1d77ca1c8af604ca4b5ac88b339db9 +DIST bl-4.1.0.tgz 14646 BLAKE2B bfb0daf5ad1f9edeabb6f479822c38b4a52b7ebc1a64a2a29aa9fee111342c9aed36c851255633821a432dcc382f865d7b046e9be3cd4352f98a42bf58d699c0 SHA512 d56d3b70cf604ba0dc2e97ab65f1528fe6d62ed68f1923875a13e21b35e6bd525b44b746f36b07fca9fc12d5b556a595039e0029fda1e64e416e721bc05de1eb +DIST boolean-3.2.0.tgz 4488 BLAKE2B b5df04b391f62a1610f99ab0513a104a8bb35cd068655c66de4df35a65f356cc930aa7b3b793d6eefc57397a45de2a139cc8adc7159db7ca5f43db9bc9af9cc3 SHA512 774208fc63bdb9ff657d41c7d8142c8f1cd125905db2382c0625b806f85693fdeaa0ac1016320354dd7d3df5fc1760ffafd3c2313b4b5a3615085ae9798533b3 +DIST brace-expansion-1.1.12.tgz 4246 BLAKE2B 25b924ec82949b3c2034bac6c75598f441e4d4989bd5488b460cde14b044cb223a1c6654b2f9b3aae4d5fdfa5d643982d91b7aec5582b2652b519a2607e74d03 SHA512 f53f548d6debd145b973543b193c25969b57c21bd8984cc587331f67d1fb1505adfae65e3e364f8c13ff5b5644c99d6dc065a89b9ff9e9317894f72a8e70c772 +DIST brace-expansion-2.0.2.tgz 4372 BLAKE2B 1642d9b8fdc6b5cc25881470da64c76b3091f189588bb478dadf0ec2e7f79f1436ea2b384a5068c242b5336bbeb2a5164e1dda0d9cdcc07053a99eb760ea4ae1 SHA512 26dd2f1f233e8e6501aa88c1ec4d4d21869db74bc8d10c63c5dd9312b5bde300f3f84d8b026e6f28c5d7c20e996414c73ee5250e0407297be318175f705d590d +DIST braces-3.0.3.tgz 13972 BLAKE2B 90c44af893d9e8fe988e9395673e7dbf29b140184a1372983c6955392e7aac599087a41174bca9de9d690ea4e70e7b43b42cc106de7ec30b9011756ff8fc28eb SHA512 c906d780efce499543d88b222e5ae8fbb1dfe90d7c109aca484b1da0ccca78f29772dde0bc3f282dc390748cc6ba9af9163f840def203bf9717350737cca71bc +DIST browserslist-4.26.3.tgz 17200 BLAKE2B 9be60220500dab393582de7c059d5ad1c5a5f3f104ad0d5cb7288fe2fa65138c937c0f98058cceabf1622c3617450efb2e24127b81a82c441df874ffae47f013 SHA512 940514fb4d91141b822903e3fcfe8d82395b0a72c1329e14b604f1eef3477775d220917ceecf5ae6b037687db2c37192f43a990146ceb597420a265e551aadd3 +DIST browserslist-4.27.0.tgz 17266 BLAKE2B a6e71dbdd1a025e942cd40477fb1dd4c873286177ec78c3b0b6713e182ab7575a2a324d98237627caa40221d552f77414f9e60e844227d624f15554df333bf90 SHA512 017550c1d868b757aa2e28706ac3c49615f6b4066206359d27d8bf65c8f64ba418223931eb638a49f9e86e4ae207cd42de5e30d2b572dcdb788da4c196d604a7 +DIST buffer-5.7.1.tgz 21239 BLAKE2B 971b36d44d161c185b8c1b21d89b2519f6bf48a6bf01bae5cff926cd5a8dbdef4470d216cb16d6ba94646c60da43013c2319dcab8f3f423698d7999fce5d87df SHA512 10773220f050e0148696f8c1d7a9392a0009dbb088b0763fd8906609145ea38f32f6b43731a533597dca56505ae14eccc97d361dd563d0aec2dd6681de3bbb15 +DIST buffer-crc32-0.2.13.tgz 4167 BLAKE2B 36d1e0f8c01a1868a961a620e1acbff8d5bd3d8a634cbbf9e869d65fd7e5e27cf4599993c621d2a855c9187bcbabb35c36bc69a619ff69a2f9175a2ca237364b SHA512 54ef47b7ffa9dd237b48a5aa72b804ce319b4522584f1f90d694d00b4c2b5aa1f1d2fa49ada43a1ad1f1f2dbdc835ae52b56f2854e6071cc603a08fb0744c391 +DIST buffer-from-1.1.2.tgz 2313 BLAKE2B 58c31654e7bf0edd15bfbc19729886c3657c0532641fe5cafa4976c6b6a825f7eaa5195aaa3f7cd3b291cc581c2117d10aeeec625ae3b91568a13b21f6fe8fab SHA512 13e5d0091c126da6a20a1b6fea4e83c2073e6f1f81b3abee2891c7979928c7f05a29b8625f3a903b02b870edb6c84946a763829a3c15853dc79b18323c69c97d +DIST builder-util-26.1.0.tgz 38109 BLAKE2B ee45b7f0d131f4f261e92c3cba5507e77879388e6c5bb0911df886b1e01c70b9453848d7e453192ce746682ca94f234fdc7d89063af2f9ffcdd84a6b67e02b4c SHA512 0535219a9902b8400052673c1099093a0edf306b0349244c3e7d504e9a14a58a46a774a3c89575f0b9423d3bb7f9405fb90ff9b9aecaa832ebb0af4d0173bb7e +DIST builder-util-runtime-9.5.0.tgz 44661 BLAKE2B a6350cac5e148b4695ec978e2ec23e11ad88fb97fc0f0e88cb402d495e00593b6c795e65cd9525c0a8db36bc4e48ab289e885104fd9b116b692d473b59f96b01 SHA512 eea991307f17fc8cc333ed53cac28d168e5c35605b7da71d2d7e04aa4b84e5a8914c408095888a1d2a8473a71cddce0bae6a60934bad6f138f923d2261a58059 +DIST builtin-modules-3.3.0.tgz 2348 BLAKE2B eaccb4fc9024840de0245b72545cc2ffc63fcf1118f2008d7f8642f82dc911a181ecdee8e0fac8bbd2fed917696a97fca2738e7ecb80abebebc5c2b13d80a9a0 SHA512 ce16820e271d2ee58de546cde4832716a34c84d7e8f75f6c1fce72dbf79afb9620f53b1391e671a4bf892dba7a7206054b8b112e9dd85784bac83baa5561d83b +DIST cacache-19.0.1.tgz 19433 BLAKE2B d670627108d8864d2db782697c8a833d462cb4b0ee4b6c173087cac779aa40a7c9c1e7b28b806e3b95d9477b32cb5b3e88650bdea606b91ea7f54578aed10e0e SHA512 85db14c6e9570a2e524c877bf2f455604b43023abdf48080524b4b4de4d8b0ba1313a67c752d1cf2958d0b1c1dae4f587c97a86c365cd98d7cea10ffe5942015 +DIST cacache-20.0.1.tgz 19424 BLAKE2B 82f0b0f6cfad072ca360e13021be22786d508d5babfa5e48c5a40c2bc72596c2b23a29966d29fc281441d601be3fd27c48032f1d2695812d609d3326b8851ab4 SHA512 fbb2d871818162836a4e9d51bfb372d588d4a39134fdfb6442dada1f7be47c01a054773ea2e59d0bca24030420411ec4548756e894f34e684a170cdbfb8a2401 +DIST cacache-20.0.3.tgz 19422 BLAKE2B f31ccb090c5185806a8d40c64dfbfde7f97eed5788bf3ba3dffe0d6037c418685526a95b62c424cb71191e343bd9c6abbc8e062c7ffafd7ad0f012fe380b6483 SHA512 de9529e1ef21bf4ee4d509628d9bba2a7edcf7e6695969388f717c377c4fb8213150ba1ba89c9d2983938f5153ab9f2cae426c5ef3bb2db1801f80b4654dd61b +DIST cacheable-lookup-5.0.4.tgz 7231 BLAKE2B 541e7ea2e87481be672286ca55636446308855622a28991cddc506f0285dcf96adb8b6cc69296b24f88147d251d53d82dda432d8ee8d352196e6b5d73f908898 SHA512 dbf90db1c3e1a5cc6b3a280c6736e2585eddcfc8a585bfe72075371326625d65e97aafdabbca89f1585d7ed324b72de7ec68fa1c819a9501bca2204d07700980 +DIST cacheable-request-7.0.4.tgz 5944 BLAKE2B 573e763c548fe67859d8fa375abc8762a6b09435cc862f86698794c7d2ab5fa0415026ad9f11fdb07a097c5f779587950074f3e183b16ac56e2f9a1970c8b6b9 SHA512 bfea7aa2782cae9d324c66c95e38313e8c36f832fddc30123f891708329bf3f6f046db7d384177c218209240e418dce0716cb65da1786bc9d98250bbb8496c72 +DIST call-bind-1.0.8.tgz 7779 BLAKE2B a29d910b8f10dec311c826093cd146994dfc06ad5bd7826cd429b25b7ea958ed887e4c1a82d3b99dd6ba6c4ac4a3ef15144627a3c866d2336f4b0e31b94df515 SHA512 a0a95214c70cc29520d9e767921438e78c1f5a253fba5dc29097bf3c41dc4caba25fa4696de854885317bb5dc76a5199c5f530090cd91bbe3b617067d629bdc3 +DIST call-bind-apply-helpers-1.0.2.tgz 6067 BLAKE2B 089f56dab75116f8cc39b38c715b72f9eb01af6fd1cc6564bda2ab2f0cdc22b8c1e5105cd78b3351df1069bfb9f1ba47e51e84fa6e89a5a6a9a181348376f9dc SHA512 4a9d5a6e52748af0e44b38dc68977112e9cde7f5ef92c149dac30115fabac74af285057fd9bfcac057b6d5c329987b4f3928a3f0af7dff049fa04b9339b9ae31 +DIST call-bound-1.0.4.tgz 6382 BLAKE2B 55ae21b5273e478baf74b5da5ca35ff116f9078fba36a5b6381912b394e1a3599b8b9ecebdcdd0d26a409ac026d31338bdbd1647bbde8c21723dc519cb8faa02 SHA512 fb2b3df7b53dea9a382b1fc0069042aa103d12ec49690583420ef6f791f8841a61bf72198346e804abb0629b78617a7a319e4099942753fb72313951a5a49e8e +DIST callsites-3.1.0.tgz 2433 BLAKE2B 6d250029efac24eaf7ff184d577474abe3da9f166c2355cdc0d4660461a13ca84bbfbaec0c8fdc24b0597184471c8be11254108e29e9cbe00de2090c291f4468 SHA512 3fc06302c5ef652f95203508d7584709012fef8613ebb6148b924914d588a8bdb7e6c0668d7e3eab1f4cbaf96ce62bf234435cb71e3ac502d0dda4ee13bb2c69 +DIST caniuse-lite-1.0.30001750.tgz 348931 BLAKE2B a92d16ee622b4643e32a1223feb9571c5eee9fb6c87073a500c6710c8daa97c73a3414139dc2d366aa8381d2ea486befe9cdf29878ba1664be9ea913c1207870 SHA512 72ea26d20e6c757eabc34d2a3a82cd485089f7f99822cb92380fb2ce90f0f1ea29885a9c57042f647aa8bf4be61228214715fef9c7c2d158351bed48cbf992a5 +DIST caniuse-lite-1.0.30001751.tgz 348985 BLAKE2B a087efa59c353af8a9f18f112dd36c4b69763d95db0b95c030b899274e1ec56671d7dba04bc01b77de4b92c6560ec64219e4eb9875e7473560b0f34eacbade8a SHA512 03440986e8342f2eb8222dde22a1eee57e7579b967de4e324d4918d63f1daeaa561d5ade83f54b8a3378f1c6756d83e2a8e42eaa99082a7cebfd497c57ea7a0b +DIST chalk-4.1.2.tgz 11577 BLAKE2B 62808a449112472a7ec0644a57ed3372a88e62492467d5cea78a8232a1e2c2fba1a8e55f070cbbfb247c3dca517aafebde31f13501a22e66b0cfaa4359cb1c7c SHA512 a0a9db845c91217a54b9ecfc881326c846b89db8f820e432ba173fc32f6463bfd654f73020ef5503aebc3eef1190eefed06efa48b44e7b2c3d0a9434eb58b898 +DIST chalk-5.2.0.tgz 13351 BLAKE2B cb2ce45bca585c05e24e06d397362a67583908b73728473c29a415d0f96c9c80d91051a8c5ed465736390c982cf0c2ed89b497dd1c4a79a9a719704dabc1abd3 SHA512 ade7b71aac3f9dacd000fb89244cbe6af765ed07d931c52f98720a80466418bfb1381cd1beea791f1a3a2c7b8c71e4b139a6ee24b266e58a7ff7647d78c98cbc +DIST chokidar-4.0.3.tgz 25133 BLAKE2B a93badaa3939ccd0a2cda5afa7991ddd696d50521fe8e9a458f6172e85b80285a7cb971500292be53e326a12c4fc50e2196c63d6d0531dd2527f275ea158fedf SHA512 420ceef247c1be8f9c038f7ada39cfd4a912e83a29e4d4ba83b4792c5609af86fc51bf783cf417524b02c3d3ef5e87973d145d751342e42d4941447648c1ad9c +DIST chokidar-5.0.0.tgz 23399 BLAKE2B ddf243b92760018d468e2cee59fc20a09cc4810c8a4fe3bfdf9b15786c6fd78b2d19f2b3ccd40f5b164fb554544f298a2e7560791dad9c11581e90570483ee47 SHA512 4d0326737c3ee40c63a4bf22222c1e6c5ef77510c5e1f04889e02a1a7f5118259a115c10e856f67067b7d589ecd11448ce28b982827563bc5b330a354f132997 +DIST chownr-1.1.4.tgz 2226 BLAKE2B d93ff43be5a5d24e4931ded2424f2d680a9e351c25d810d41c19e7e157aa384b5983ddbe6afc2c5c653108a64f942e458858e8657b3d2cb042ead7c0918973de SHA512 8c9d1bab36b296626d567360cd37923acf033dabe96d8804aff6f460bf3fd863b7c4912122716684a3149c42508d9ba62bb297185854cbcf4faec25695a90156 +DIST chownr-2.0.0.tgz 2243 BLAKE2B 4e9052e4eb7a6ebb87cbd51b1861d78612b816e6bb0c6253c37616a914a8d4400e335b67aa30c759779088d501a371a7a0c2b4d17af7c7f5c20ddfca3c259bdb SHA512 6c8a26b43179286a5da2090b77d56ca6f17393d29fa72c86952f18155665ed318f0472f9b2720e9f17ac8705603ed790f5be04c9d97ea556c8c84d4372f09681 +DIST chownr-3.0.0.tgz 4405 BLAKE2B 57b76bbbae9501903ded7f38c85d84b490a5331bb1d9f3e8a07826b05a50b3c39455dd9ae8ee1c8065779b222f94f21756b5f3782ff211b6ace6bca0be27eaa2 SHA512 f88c7363d05939077f5ee60f466aef1158c5fe7aa3e64813e2412aed5a1fac3a0cd4cc6846311692b082dc4b4b8b9f5355ac314c09fea2b27015072ba84375fa +DIST chromium-pickle-js-0.2.0.tgz 2915 BLAKE2B a53e7f2a775fb1b3e5b5679a44924e82ce7b54711ef28efb564c4e3740d4e75f7cb629ee37c5284ee1d05b22b4a0c7329acda4b60e014d8705ca41db9cf0105f SHA512 d51e45868fa306ad030f276dfbfbc75a3e4a24d24229d01128e0b06547a7f3823906b796a0ba912c0347d54f3b789cb5b620123ed3271aa249ab466c2e844f3b +DIST ci-info-3.9.0.tgz 7378 BLAKE2B 85c557da2875b394b0e8adead42fe71f6435a0654a8c2d07a02850384fb669d2adbc127ed4ef54a921234c592a97719bb2d10076bac67f50551268089e0f55ff SHA512 348c45e7986fe274aa42cc2401e88e8b5afcdf1cbc26574e1434d68ae839e4a06ef499db96771dd94e958879988077f4d533d94bbecd24184130a7568fd1d031 +DIST ci-info-4.2.0.tgz 7979 BLAKE2B 89808b618d56f64f5fbc81c389170e90d5d587cfd1402ef01ac94b7f0ca31212bc139f2c6a47b4843a731b4e6dae83a9942e456cb45ac4c8f9afdc98a424033d SHA512 71863d9b2a64b18f0d46a8030755c3d518892f7dfcbffe79d678b29c54c691938ed8b1ee0763a6398c4321efedb4df401f0aea76e9b5dfad06dda95dd16f640a +DIST ci-info-4.3.1.tgz 8079 BLAKE2B f3aba9b660541536a4fa0d09bc60372e7b1f3695d5fa21a95897250ce66ce071e09a370b83df9e87ce2613cefe2a8f7d2774ee67cfbdb8c44750f4110090820a SHA512 59dcb6220bbc39c069236a5978f679a168cf0b7f2d983571e562945cac252d8900d28ce8f39b0bb0bbe405b067fec65a482305386649d787ef5bdb79fddee474 +DIST cjs-module-lexer-1.4.3.tgz 44372 BLAKE2B 1df8f64b120abee5c14df5c357925e21247e00146fed4508216014160cf1eb2be6da0d1b4f6ab2b03332aff00368c49123510129f6165035e9a891703993ea2e SHA512 f73f1365a18cd697ecc18797ad4a733eb931f149d661d849725b2260c9bac7fc39fa737ef137ff2e70207cb1900a6e7da803b153c5b01c4ab6bcdc05ea2e23f9 +DIST clean-regexp-1.0.0.tgz 2493 BLAKE2B 68339777308546a7f15c80581d10888d52d5b8b295255416eed7b3bc70991d078e1a2c2dc46822b110a036f9728c99513e611ca762c948ce5b9c346523a24377 SHA512 19f8ac119109bf32ab9865a4bdf860cdccff06594dd5449ea83d95ead835e0e00e81a083d99fcf504bb19c067f9cfbe6687446edaf32efba754ff2114380f51f +DIST cli-cursor-3.1.0.tgz 2134 BLAKE2B a82f7e1e501ae5bfaa719257c13b53e4f62bc01021b62e4daec975304a86ba15b9b900e020c8eb2af0199b3cf0f95ce2c72dba8c59da367a355de280dacac16e SHA512 23fcc7030b0a7fd16a1a85cce16591002a1bf7e48dba465377de03585e7b138b68a2e46e95b0b171487a44a5043909584c7267ce43ccc92bcf35a6922cd7cb67 +DIST cli-cursor-5.0.0.tgz 1927 BLAKE2B e7e2387af849855082b60752ce4d219aaa994d42166be6034b32d492f1898bc8253c7df63a874a9cb3c10c8113d864ccad77855f5ab274fa70b7ba75eb9b3e30 SHA512 6828f83b9c0acacce33260d3e2d663f77931cb274dfcae733d64827baff4015fc0035a6a7b9641230d1ad997cf415ee52f9ff26f91ec52b789e94140175b4443 +DIST cli-spinners-2.9.2.tgz 6598 BLAKE2B 7708f6867d9ee13bc7b9189d858035e1bfad7ca7c063b4f4f776b27b81cb4170aa6dd20987be612086e9e60b88fc13c715aa070d5eacb28b7291b18f0fa4fa7d SHA512 cb0a95fb9326c8be04ef26d780acace03ba065b5f4142e8b9f0ae18eeca42239caf64f0e41a710edac462a78c35d63619ecd31a2dddb648e61e791fcca8f5c26 +DIST cli-truncate-2.1.0.tgz 3513 BLAKE2B 7cafb0ab1a1001a7e704e3bd815a1eee7ccb8dfbddb27fa86aa9b6d0810e318770c4f876d08954a46272f7183e6bd2cf93690c44978ebfe85663f6ad55d6012b SHA512 9fc7ce8b1c030fa6ff39b8a7cd3ae9d59285cdb82f299beecff4ef7a39cb9f56907c2eabe765c4c7ce459ae0bedc723e24cedca0145752f36a114d8f1d5ac7a6 +DIST cli-truncate-5.1.1.tgz 3918 BLAKE2B aa81a035e1011396a24ccf5508173dd21d2a99cf646088f5256834adf35059568819deb1b4f4f1d794eae11574d0d445ca948feb9c1c7cbc38af9c16d43fe8f4 SHA512 4aba0fbcd1f152793ebc85bf74e49f36a772d6c3c4164ad393a4d4b6a2c29c1968dcded3358624cf337bb920fafa3563add3b8fa9f271fb2731fa708bd47a6e8 +DIST cliui-8.0.1.tgz 7907 BLAKE2B 537f8e722f662892955378ccc63f13f95375c4400c4c9dad10cb36a304d5edc26777fe482625117a758af391611fc289f6172883d180fb7eca6d04d46c122596 SHA512 05278d9f2bacef90b8fff350f6042dd7f72c4d7ca8ffc49bf9a7cb024cc0a6d16e32ca1df4716890636e759a62fe8415ef786754afac47ee4f55131df83afb61 +DIST clone-1.0.4.tgz 4457 BLAKE2B 8394aa2da1919a5cc648ba533b1cb6868028d9fb6ec0f4334cd500ae8cd682846045ed236045f76862609f9c75174bfc1d4b5b6b71ff099483ae43d32f90bc9a SHA512 2501d9d90316ea5dda1ff8fac42a904e163ff4e1f80fff65b37e1c8245018847a87114d4d38b477ca3c1b142b53ea64251033b1a20342085c94ae5c723ae0a6e +DIST clone-response-1.0.3.tgz 2231 BLAKE2B d897abd281864f7c1c79be257e2323c41907b4410232e7d0cb5f2d01e625b9043ad6ce14f7d1dba964c7520e605904e74baa63c80c8302df3364a37aead2dc5e SHA512 44ea0bf788c91f675454c2f663fe4f10335a48781e39d48389c5324bb8b3705eb71bab1373f1538cbb9be1bf0897d4bc4b46de39f62dd13680e6abc52bec34c0 +DIST color-convert-2.0.1.tgz 8996 BLAKE2B af082177ef8bce3813d1ad275d44e223da12baaaccf635812bfc4ec5d4d94904128a54aeb866280199839a33abca442e8d0f4fc149eee9977d68bb5790275722 SHA512 4511023ec8fb8aeff16f9a0a61cb051d2a6914d9ec8ffe763954d129be333f9a275f0545df3566993a0d70e7c60be0910e97cafd4e7ce1f320dfc64709a12529 +DIST color-name-1.1.4.tgz 2868 BLAKE2B de6a44ac19f422e278724b9f945a8c03b804b0151810ae81ce1bb794966a2e0660623e5d2c071677d9799d451afc809d659753d117fc1658b232487e2856d851 SHA512 74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40 +DIST colorette-2.0.20.tgz 5063 BLAKE2B 2c954e8bed6530fbfcc1170ef119d777f98f43746094d11430cbe77f90599eba5ab1133058bec8c3ecea653ac854dd496efcc1c83511f92fda78d3cd2b5de6ec SHA512 21f103c70a1622391e5cbd5e5dc0e2a30e146ca8e12ddabafc4b92551f4630deca547debf6043cddeef786ccf535dd53de28dde71bf5c1c59160ef83ea4088db +DIST combined-stream-1.0.8.tgz 4068 BLAKE2B 1ab689c244af0a7a41368f8550a82232753d4b69c4c2d11b52ed0b8c863b124e3b667afbcca4e953cf8f3cf07c11b0a4029a476d653f110aa0c648adc012fca8 SHA512 1503783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476 +DIST commander-13.1.0.tgz 51398 BLAKE2B 7d4420fff3eb05633291b6733b7ca2ed092d387de9f897061f275881c4b690d6eda002c9a47061b0ec8e0edeb95e299bfc52679977df276b6fa233d9d5f9de19 SHA512 feb15e0a934941b852663195c0ef51155df13ea6e71114bc326210cc2b43ff397a82926e57f6cc2ee37dda81b717b77ca031071d1aee8d25cd52bf1fa639ed2b +DIST commander-14.0.2.tgz 53082 BLAKE2B 10214c4e2c6950a557befe25f16060125504e2715785187bce7cf0f086c2adfbcd6c784029b7ba450d5d7c32e5eee1ba364e2362d006b88f6dc94c0ac46e0dcc SHA512 4f2c2858d3516e1a03d015ecd4fdd9112716f16e622ab9db8ad848974607fae0a605dd10a4f380f3273cd834b704813931ae859c1554b09ef05540f3e1dbce59 +DIST commander-5.1.0.tgz 28908 BLAKE2B 17d30da99613ab4583f1d41cc07d8281c4e6122690ce6820b83dc8e94c038c29b06552768b4bde81b696bf60b1bd13e7c5bc1f1eaef12279c0ecb59927ae9fa9 SHA512 3f40b2b0d0d0eebb55c3840842d9be311c55ebabca152be5b10bc6617656477a855348e530a1d9659830f1efbc0d26a1e140ca32a9e49d10d0cfec6e41743f66 +DIST commander-9.5.0.tgz 44526 BLAKE2B b36e0b821c78309551ff0645da9fb8bc6735c1220907e28323b6f9dca8b5c89bd0da645e79e5f93ae4d686bb99b403b3ad9451284bab9ee5d16b65edc5843be8 SHA512 291b3b5950ca83ce8f5a2b80aa10eb0109d35d92ab69570273abc574bd78aab67f0dc5b0b91a3b5688985da9573bb4b918aa6a622544c026e01437f134728905 +DIST compare-version-0.1.2.tgz 1015 BLAKE2B ead7b74c38f24482f4de6fe9eb43cb8782a28aeade362a575f517013472689bd3f7cf2cbd661f8fc4250c0f73fdc8eb95c3e244e0975fb2796b50ce35a115af8 SHA512 a490e1e7fe30ac49d75ff556459bebb8018793329daf8eb3d753a54cf37e56b0139565a148a7b03422757eeb423b90bb7890779cf305640d4b798b5c15ba19d8 +DIST concat-map-0.0.1.tgz 2263 BLAKE2B 4aedbc8e71d11389ca3d38028ad066fe83cf15618cee655b93c2fa0be2f71c9cfb283a679474ea659864fa6bb37b45b8abe40ac1cd05116ba670aa7276c5ea5a SHA512 fd2aefe1db30c903417e8846a73f68e986f71b3dd2ad40ea047e6b4ee84647b6a1b656d82a7571c366c214c4658da03b1171da5d9f30b07768745bdb9212a6aa +DIST conf-15.0.2.tgz 14822 BLAKE2B 4e26d9507c040a762309b3e9832116e0f23933d16ff903e6846b12280e70f6af1249b7c087d6b05ef8b97f40434e78d2b759b97230b9f0b8d19de93f864baf18 SHA512 2414abbad6a909a7d3add745f5d1f795cefe4f6b41c9c185e2e3e423826cfa0e2f2cb1211ba4597058b7689779ce7b5d7f9b50c407a326df1d8a192843f79227 +DIST config-file-ts-0.2.8-rc1.tgz 10005 BLAKE2B df164dca7b88f294b61dd9cb4c6d87258f0403d920c5e664e8d9877cd4852a5a661165bf593fc432125dd12b32429124351b3ff49a37b0c6a9eb411ccdfe6b7d SHA512 1ad34409b548f366d3e1188323305256e4caa121ee7e753b09eeffe366e459925914b8e60c5d9606956cbd19212827ca0674c16f7a99ac1c0fa45054fcccaf86 +DIST convert-source-map-2.0.0.tgz 4952 BLAKE2B 9f043cfaee24a932390b5e464aa2629e7f9f7cd1bae5bfd5c89c6ee4d8b702332fae6c8f62be005ad48d56eb0fdb2166b67e11496171fc094cbf089f8813b960 SHA512 2afa78e7d1eb576144275080b22d4abbe318de46ac1f5f53172913cf6c5698c7aae9b936354dd75ef7c9f90eb59b4c64b56c2dfb51d261fdc966c4e6b3769126 +DIST core-js-compat-3.46.0.tgz 68823 BLAKE2B ab50c816d698b9ca6677e11d8ad31f96eb607bfcddfe1e47cd4661079ed8201cec860287961681b936d717a7ed2c34ac694da323eb6e450ef4e9ebde693f6e71 SHA512 a7d84e6c820410dc5257cc48bbe57af098d2780460e9454c1b9991f8911482e1b7b08e8cb224b59e3cf68c79b2243bc0fbc8d7feccad9011eea7a93184cf656b +DIST core-util-is-1.0.2.tgz 7016 BLAKE2B ec2e709b1fd63285bb15599eadd2efc5c805fbc5b5df37c6076d70341da5d0f5ad5d6d7c604a6fa53ed3530d2e08542d3adfe5eedcf90a9d78edee103ea86691 SHA512 de5ab3e588d64d89d6e9d9436b94cb69309c4a17daaf57b8d2b99c255c020490ba996945ba3d1e0872049661b5839932b89fc60fef169f814509ccf88093df69 +DIST core-util-is-1.0.3.tgz 1897 BLAKE2B cda43bb1df385b86138091f006ec075be1f643de21ba1c310fb68ee4ae5217cf1b0432a3e27093b19671e0aa626579adc7abf5a209195740174b59ecebd1c6ee SHA512 65006f8b50dca49e060ea6a78ee719d878f7c043b9a590d2f3d0566e472bbddc64b09a2bc140c365a997f65745929f5ac369660432e090e6c40380d6349f4561 +DIST counterpart-0.18.6.tgz 13687 BLAKE2B 6e9f0de3d2faf96eb41d6b32955c6fc4441bb9ee6f409190f43145d15fd0a7668b3168c869a86125f4c4a6a66a23fbe890cfba1cb60297d30f4c5d34b85fdb2e SHA512 7002030186c2df1f12d830dbbc5109e13ccfb4f61799adb9fe47c091f9a9acd2e590f59e5f849d529d5cdb19257e986a094dc79c36a2bd1e11dc1ac061fe4e30 +DIST crc-3.8.0.tgz 19779 BLAKE2B c2c5f0ff36d5baa23339bc18a07f9c4044b409d4b040ac35c8f3bd5afa3de5adb1fdc8c4c5df90a067fe6adf68bfb64b0bbf88a77553aa87b2f659e904be3fd4 SHA512 897de67e0713308ab764a2c8b151406efefe31cd7493169b00641bf07be3035a374f53c8629adb6a443ae5ddc8fb61c61edea748a90cf4f62382824ed8a70505 +DIST cross-dirname-0.1.0.tgz 2732 BLAKE2B e3d218143848b73e7d52596894f087a3d38746d4803808f55ddac1f1c81cf4e8d6a846de4a71c024c1a2fe093606578b8d7bbf9035ef9eb5a6c1e84064838a8f SHA512 f91d3cfe82349e5def7cf72a7ed651a72b64b015c3cce52f781abf341571d2c529d5ac70ccf42b2a29cdc79c9de6cc4fbbc8f5c08cbc01f9d543ee5e15d85ae9 +DIST cross-spawn-7.0.6.tgz 6255 BLAKE2B c0a58bbf4b04a65a6a9a22a057a1a508305af873d2f582f0634ca4120791d84e3f90a508eb9b085112b909bb8d2ab63f956f3b65f329f2e88a208d1703af816a SHA512 b95d903963f69d6ceccb668ca7c69189b862f5d9731791e0879487681f4e893184c834e2249cb1d2ecb9d505ddc966ed00736e6b85c9cd429c6b73b3294777bc +DIST data-view-buffer-1.0.2.tgz 4903 BLAKE2B 1c374f10e252025bef5c1fe6ae8b6eaebb721a56ec206892d42fb288cf36b53f8bba8bd464225bed03434fc811615186805e0a6fb7fb36108636dced131354ec SHA512 12628ee55dce2d7875aed2b6c205d16a7b1a2b5fe6b557535048842345bc464be04f4e647f1687dbd3e588b9e92cfef7c983bad78d90ef640d6bc5b1fc0e42a9 +DIST data-view-byte-length-1.0.2.tgz 4863 BLAKE2B 7c8b37c6bb21b9dfe10078cb0e03a70b853c2a4b2fb5ea5e16a9edfee7824a3a493ef5bd141710d37b7a7f5c0ed35cbf9f60c387b8e009931330e6e7387f43d5 SHA512 b6e8466c4e827d333dfb900d19ffa841bef62b2ff4facdf1294a47bd285f8b3d91c4c16014f8ec5ee44b05532dbccb35e5ac1ee394916fcdc3eb01f87b0eb095 +DIST data-view-byte-offset-1.0.1.tgz 4779 BLAKE2B 2e0c0e51f0106df625b9c9d10f387f1af9b38eb0135984098691f70478a35f7accf1e194f2328ccf06e544e10b414be40493a3b216b91dfceef071bf0c296098 SHA512 052f0f7e6b431a7ae061d3a89c665074b66c95621e08614ff6da5a9f4862d42a3666bd8d2800ecbc6600f17c6e1bfe145a027a0a3b6ff9826707a30cebd40695 +DIST date-names-0.1.13.tgz 4205 BLAKE2B 17050a92f8bab9dcf139bb04cb578fa41e0df2c3bd42befee3540a63ecdb6cbdb7e242622f35560d9a9bb27741c1e69d0abcd8f479176d8f7d595be00fb980f9 SHA512 231c68783f6d771f295d5726a9a4653efad722c4ab4ab219cdfce53a49bdbbe872ccaa795a4fe876df4efe077b39c933cbc9ff587784a53549d9b17798c5782c +DIST debounce-fn-6.0.0.tgz 2850 BLAKE2B 70dd865daa08e319b9c424c278b7e8a5ef52e8a7d2ecd62c2350a7ace62120cc7135867699744ac793dca8b619d304e257b254cc94db8c045b7687b2785d5f81 SHA512 ac1316f85d935ebc81c01e7843477c76b34423e4dfa12f49a4d4c0a15a6e91b5848635d0ab8af248560b6aa5cc157c1dbfad596f6387b63e5bbe24a88a6ab145 +DIST debug-3.2.7.tgz 16872 BLAKE2B 20ffd38690393955d64d7792cd55c4981b11274cb54a9792c211d6a90b629e27cf7e52b84199cac4c2df1abd310cefc41fe9dc8e18e4a85df5f57259e3413c92 SHA512 0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d +DIST debug-4.3.7.tgz 13173 BLAKE2B bb3a7a77fdd0251606ad83accf1c195a8b490b65deac660c63b1552799bd34df3b2f029467187ad63e263ad40a786232bf0f85e19dceb1b59c356d230b53bd6b SHA512 12bda773f1fb46b3176411421229ba4c298c934d99f2f2c2d916e2d4a101820a68d1f4ba9744b59e76a9c26222df25bff863896a9d4aae0e30d0783cd280aa81 +DIST debug-4.4.0.tgz 13390 BLAKE2B c965d39e8ae4511213fe01b9d63920f500013d8d039109d8ad4ae104a441584ee7fe6a2c0c67a4c71566da039d511ad3b3bad15b9bd407266a90525d827bcb10 SHA512 e964d9fc8c4263f4fa0402e8647684e1cb69f719be679918fe9cd86821d115ec958688f196b9bee3acbaf0703a86bd1373012cb28c4d8831142508df3d9fd160 +DIST debug-4.4.3.tgz 13449 BLAKE2B 0054530119fa579348894d41b9dc93fc0a3249b9bb9775e926181425105a6726fe1925f1043e078d9fd14224b46445d4d2008f5268a9ecc58a92779d42fe4f50 SHA512 446c305a7c10be455f6af295b76d8518bc3ec5849dcc04709b4aeee83853540dee994e6165cdbc57790ee2cb6062bcab4e52e9baf808f468a28e5b408cd6dca8 +DIST decompress-response-6.0.0.tgz 2552 BLAKE2B 20fa1fb249cc4e686ec51373d56af76fac0a6c442189d13fa014cd374b6666ae07793bf9f14789a4ae61bf50d064937d3dc3c6e5d4901e7f5b8ceb21f87b1fbe SHA512 696df9c9933a05bff8a099599dc307d8b0a866d2574d1c444b5eef137868462a305369161da24a1644810e70d1f9c9bd27ef5085799113221fbf4a638bd7a309 +DIST deep-extend-0.6.0.tgz 3627 BLAKE2B ad5d3809d6a08d8c6499984436d710a3390501a5b0427809266ad2ea5f349b736119b36820cb6fcae1c8c91edd72d940551d90855849825a1661a0ebd8c2b36d SHA512 2ce1f120e68f61d1e5251b4241f0c8559b5fc3fb9f33cfab563eb8f51207cdc9bfbc6c1045716de8e3ea2055ac9b65c432b34812d591eb8b18d4b10a0f6bc038 +DIST deep-is-0.1.4.tgz 3400 BLAKE2B a929da8796d3c9524904cd58b246c83a52aea0b6b5794c1b0d9a2fb41a27d66a7e030cc2db25d302afc879307f06a819c5419e62234ee70c19a16c418a17ed84 SHA512 a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d +DIST defaults-1.0.4.tgz 1978 BLAKE2B b3153ea30ec30afe122ff08b96b840f6dca475b3173480edcc6a96a15266223a8bf37054eb300dfd6566bcd725b69b1a0798956d54f680420b1eca9eff2d56df SHA512 785b9a2e8cbf4716a5bf692bfa5a8c9549eb0d657ede3e299633882602c8848d39f0841f589eef5e1c84207bbe1ed0bbdfc9251802d8c4e2833b46d03f7b60f0 +DIST defer-to-connect-2.0.1.tgz 2428 BLAKE2B 49ea4ea2c30618937ce84851748366db3256427e9109b44edc1b0106280944b6ea01ad45cd9f54f00847821462bfadd899293ded19bf7a7fb4001105ad9be3a9 SHA512 e2dbedb5ea571b555a606ad189b93913025dd6de2e76e9d239531d2d200bea621dd62c78dfca0fc0f64c00b638d450a28ee90ed4bd2dc0d706b1dcd2edd1e00e +DIST define-data-property-1.1.4.tgz 8913 BLAKE2B e3383e3df351b3ce5c5deee84b0ed0822cd7d8087a2546ee6e49af9ef18c5cbabc6300937863dfe953cef1b7c245b3c184a770b8f040d3414682c733e4e10297 SHA512 ac132f23396903cbfa13e489668a3ef87018aac2eb920ecc49f2229cc3c5866928af0ed7f9d39754942cf904faf731a4cccc9f0e720c3765a2775f8d6cbdd3f8 +DIST define-properties-1.2.1.tgz 5203 BLAKE2B bed915fc3ad24739e89d80d4a920cd96e8aa941cf694a953084e44fc33b5234480bacd2705c43558817994222be3e22242172eb6866b56b32870876bb5d3ef36 SHA512 f109902aa10048b7799f1d14d41d6890b1256d4baeb6d27f0276264576db6c60d687ab92db4f048c3e17aaafc8f702bbbb4bfa3b4f178535a7b795ed11b47a0e +DIST delayed-stream-1.0.0.tgz 3464 BLAKE2B e4004bdde9a3033352690d09c063cae4db048ca8070f667c07c57473e334903d26860b2cd4ca2fcfef2234d8eb4ed34ca1864b3332db06c3dff7ae6cabd15b4d SHA512 672483ecd7fdd5a2c1d11c4be0a1ab28705797b11db350c098475ca156b05e72c3ed20e1a4d82db88236680920edaed04b8d63c4f499d7ba7855d1a730793731 +DIST detect-libc-2.1.2.tgz 7776 BLAKE2B b036f6d45c8858d8d9b97f4788bb4fb02b2bbe8b7c09ea27b9b9d8241acdb4b3258c8401ac1a535c46e9f75a65f2bc962d53ac0b6230cea4df36578cf013b828 SHA512 06d8f604e38ef37a375b21f9f5ef0c817b3111055c6ab9143a9118aee6c1d2eaf09cdd74c90dfae2bb22072535d67665a966199b4e62fe87fb8a8e26ce2841b5 +DIST detect-node-2.1.0.tgz 1609 BLAKE2B 1aa7218bc0e96fb365d91dbb7778f096f163fc41edb605ebf207e29e7c7333d2361b2ae5f1367bbb9069c73864ee0056ff20f118cd8120a1078e90aee2b7e045 SHA512 4f4348b90a674ef14301336e1cde6ba0fc12046f37ac5b2e3be3175c7f7fdcdd5e15b9f8c1c3e3b6dbe330b10f589d11194620404edc1a04b7b4dc5ba8218cee +DIST dir-compare-4.2.0.tgz 44639 BLAKE2B 65d0cd5e7113f2e5574f3f282b9f0dfb6fbfea20d4e670ec721a672c56e8e542502c76449c7075ef23254708aca24e9355a63fe5424e4ee66c2dd97879fa2a43 SHA512 db130298ea0cadd4083c776c4dac0409d34fc2554507dcc6733de4ba19813ba537a14f94423b2e7b48bc6b22caa6005c9be85c5cf31548650df5dfa9bc9ebe55 +DIST dmg-builder-26.1.0.tgz 111523 BLAKE2B cb0464ee93581e619554b685b96bbb26fcb6636a9ca905f3dc7eedf1fa324321c4c5ea96267b288a13528030133a1447c76fee266df07d9c8cd041a7754d6ce7 SHA512 d1e5c1eea5fd607890da8f3710c802f00e9543b05f0853fccf196152daadbeacb59c454865af176ce01c2223fc9dee7c461c0b60a5762c271f3753889971445a +DIST dmg-builder-26.2.0.tgz 111528 BLAKE2B 1320c243a80e7502d2b90ae46afb1a2f2ab3ba5e74ddd84d8bd3e83ccbccaa11c9df08ab7f3d4bfcf427ad2d13dfe2b7cc910e4feff0416626587df19a006e15 SHA512 04bec731d3c7a2cf5aec4d514625e053cbf603ca0390ff6b59ad1b6155f4aba89b0e20a3109864288bd693a82a0567407bf4b864dddd8a74a20d11f0bf2077a4 +DIST dmg-license-1.0.11.tgz 24561 BLAKE2B 4d1df412db0f7449dbc2838ccbda65f10de0dd315c697efc401e0aa8cec00d481182c7f19a4ab04401de0ac9f8105aa144bc5d95c5caecf0c5dc0d2554a4560c SHA512 65dce6ab02a6102396269a9e7e5a02e4e272d7e599041b1ee7e311f3ccfd83d667e1563e598524032a239a1cc97241f961b6d919c608b86024639fd8b3938cd9 +DIST doctrine-2.1.0.tgz 22263 BLAKE2B bb4fe1786d4fe4236250c7ae1d3f4060685540a2201780398bf781d9c7703615aa30c20187ec3bf360c4b29819c097292bb58650b2a2391fc4fcb2d4f880807a SHA512 df999292ee195cad2f7c2b87103030b79e5d8368cd6a31d9d6876f17ef124abf3612c658e109977ee5aca3ca0477ccd185539b48dd7c68cd028d2768057ef323 +DIST doctrine-3.0.0.tgz 22354 BLAKE2B 0580bbba76693587c31c4e7e4cbc229d3862a8a3682ad05c9cf606cb9e56c14ad75ff2d6089d0b99a47d0e4034d48ef219e141aa52dda0691edc66eaf0c27043 SHA512 c92f90e62de105fec6064778286f1aede04d3563462d3684c306165228c860cef3ae56033340455c78e33d6956675460ed469d7597880e68bd8c5dc79aa890db +DIST dot-prop-10.1.0.tgz 7389 BLAKE2B f613a624bce1b0497e2106d6f894e422080be334f5460d725b65071ffbecdb851ebaa7b69cb4d88619f37e5680b11c0846c02dafbccf10ad65bc3605d16a01c8 SHA512 31552d02e81030e7dfe519c1cb677d377d621b494dc20d6a02800e9fba4e2b9c1ff78588684dcccb6a77bb04d0baf4b601ca9c864711ddb1c1ca368cd269a2ed +DIST dotenv-16.4.7.tgz 22638 BLAKE2B 4b573a59cf8f793ed9f568d49748ecda913543adfb63a84fca5b0a24aed4ba510dac66a2ffeaf9fc1dd91d25eb487deed7e198b91ea595446e134ad3b3ad78cb SHA512 e3ba8f721442ca4642d37161918021aefc14e310c11488f540fa9a6ab8fa99d33f8605337cf1dca641c93a7de6240b9f15e780c40cde1acaf95f433893a7cb65 +DIST dotenv-expand-11.0.7.tgz 6655 BLAKE2B 05c607c0e88cb45e53a21a9c6be822f99fcf2934ecd7b9aa86fa61b76b0b2aa46c1410d4b793256dc1e8b5447422f389a25e14436ea3a4629afe9cf71c33d2a0 SHA512 cc81f09993d1b21b02769303c95b2a1a68323f4c93f060205d49e4740a098acc6f7f7de4ef23ba3aea0a99c4c6b973d64ac9bc3a1f3c9d989c44b03d634ad478 +DIST dunder-proto-1.0.1.tgz 5049 BLAKE2B 4a86c005f5ce580c63e5b55a5bbcc5196503c73e131c778b9a2baa42977d4bd15c6dabb3abb09bdf29c20857116cc7bdff11cf96277ccea959bca552c8908d21 SHA512 28837f9c3241411717c3430b561644f62407986ebca80548060f42aa65188e64088608a3f54e4c16faea9142f915bb72cb366e39e3add3375e45ee1463b72df8 +DIST eastasianwidth-0.2.0.tgz 2893 BLAKE2B 54458a79ba296856eb5a32455dfe8c6cf6b33af212c9d7b32975f82ee0ee386c64fadd75007fc660dd308991d7c454035be6def91df614f585563a0a5ca406b8 SHA512 23cf1361959cf578981d1438ff7739ae38df8248e12f25b696e18885e18445b350e8e63bc93c9b6a74a90d765af32ed550ff589837186be7b2ab871aee22ea58 +DIST ejs-3.1.10.tgz 42688 BLAKE2B 9cce7ae2f75e87c6a1baa917994c1612aefd2ca39fdefec2b169ee65486a64058981795ce23c04006e11fbf1ee9b502daffee8e60670558d75cc118032b634e9 SHA512 51e26615f3ab0104bc38958f678aad807c961316b4f3cfccb4ae54132a091851faedc0c45e4652be23a2291099e178a3d33c48dc9102818b37a0ac7e022cd004 +DIST electron-39.1.1.tgz 180952 BLAKE2B 93cfc99924d5bcb6d8e89b1487c631a4c8bc444e597171ca89e8ae6f1a98c05ed8bb99ce1dfd17279d7e4e32ec8fd147cbcc917f9714dbfe4c1b7fc4bc6fa662 SHA512 56e144235c90ec11f7458239559b70165cc6a78ae93d1779a04736e9940822d54b70b4db5ede3f3bba3886cfb57f283d43736f18089f817e55a7910138816902 +DIST electron-39.2.3.tgz 181257 BLAKE2B 3b141bbd4d7df1e48a72e3c7d4caaf4575681093acf008975462bb0004b992ad81f41d918d01130ba9f513531011b3c29da49e3be7193f360670b593513a4e1e SHA512 8fb93bfdb8f770d036f6dcb9e05cc4311528aa2ac4f910503e13c53fe5c3b8cf776b597659c0cf898ba6c4a5b3fa229c5f10492c574c20096fb4b4c1fd17c292 +DIST electron-builder-26.1.0.tgz 20211 BLAKE2B fd4665f0466fee9e775cead634019a301a634308557289f09653b642ac6129f6d0970789525f00cfe8570c45875027a1f41d0895bcc6ccb32b57ffb9892668f3 SHA512 76fcbdb0e0d613bbaacfb97af1ca29800b4ed842ae99d90ba82828a0d5a5edb4858ebb9b3268dfda1552ea2c12adc6fb84b1cbd363942c13cda78e5a78601ca4 +DIST electron-builder-26.2.0.tgz 20211 BLAKE2B 1fae782b5deaa84d5d88d40c1e7c96bc6b9b8f8412e7573d9fad9a0a59028afc070c79957c6f87a835d86d8a5e1afbca0b25f84df101986ef3899fc9b38a6427 SHA512 7994f3a1536b92c277b11b3eb73e70cc1a61b68a56d5481470bbf6c704a6898dd65c5ebb055e0ba0a75a1fb624b90338bafe1ab1884a126817dcc290c447f67f +DIST electron-builder-squirrel-windows-26.1.0.tgz 8986 BLAKE2B 30750782a17711916b3c037a2608ab50227733fad291918b594a194e4f60b807818d6283540a3635557b4a1e93a40bc7ef2a995c360e39068f81f5730d660305 SHA512 c9ece3ecf9584f6f2ceb4353ba5df4ef5062ce90facee53c684c324d54a7d6d44db276cfc8aa706ccea8de9ac292e5db19ca250716aa3fe4abe63ba998da421a +DIST electron-builder-squirrel-windows-26.2.0.tgz 8989 BLAKE2B f8c0ea9ac5dcba67f0d114f7cc6c0959f94f5dc76e4fd3b74e8f84b682116fd793a0f1657e50ddef178786b9c402b7f8a4c48ad7a2f1c095cc703f513d24dbe8 SHA512 42770d4e719ec5587f248941a82967651d72ddd9d143de718c0d743dfeefdbe50d7b016550c791c81683758ed382e4bf76fc6c70b44bdcd418d5e2853b7151c1 +DIST electron-devtools-installer-4.0.0.tgz 7251 BLAKE2B dcf72b851713801055b514b5347425dd78fb3311060feceb8e3e27e20fe23582b175fb5744f5924bb9d1e9f35714f63b0e4d066837a2e8aab616a1ea2d201585 SHA512 f539edbbf8ed7d29f49fa37f648e8876f46a5e90f22d0883bae21bb0123e74bfb511fec2f09d89c01cb0e7c3f74c988d7aeab2577664a61a4d5ae64ae62498db +DIST electron-publish-26.1.0.tgz 40413 BLAKE2B 5922890de85e14d461c9b0b70de359948c52d44c04bfde8d9a3871d15289eb9fe9c72921755b775ea5d337bfc160af0765e76bf1fd96a7ebb78617cfde5a0c82 SHA512 1b08210c83a4e6fccdb5b88c7971c421137ef613d1f1ca93392ccc89d5f8bc20bb53d18587cc21aee845840c9a23a318e589724cd993ef3e8ba4b94ef2770e5b +DIST electron-store-11.0.2.tgz 7489 BLAKE2B d73071f6bceb8128db708b8fbdaf1ab85d1b177df419037822d1b46f9a73d09bed9689dcf8ad19a306e8762e47623efe1d59674100c82039b2d8e9adc32bf953 SHA512 e1590d45d37e04898bd8a7028b8d56bc061b87accb5f90144e2e2ca3af323ea888b636e04e3aa9127180a9ab209c6fa507a1ae032525b4ac15a29a7a52ffa0c1 +DIST electron-to-chromium-1.5.237.tgz 30951 BLAKE2B bd592374653834eca5a38aa7753c211e8ce4306c4911f051d5a4d66796cc57d313a72a960443ee98dc4e6dc028e09ace03f0161dfc2c52eed37cb41d7358507c SHA512 89c52dd4dbdf8462daaf9952587ded1cdcda6e5680e63b371d51da7108a67cff1588404e42ff8bec3284b8775b4d9d122823b5a204c94c82f51b093d4ba42f72 +DIST electron-to-chromium-1.5.241.tgz 31035 BLAKE2B 713315e5690603cba3dcb92b729b00ee1b9b2e5831546bfaf02b78d3d49b21441e596f1dafd7d59e85269444aa806403fd3da85fb207aef776001ff6933f403b SHA512 20b32f297fd9579588273cddb6e1e0f31aae936cb404e1a514ec415704e96e25ea5881f485a986e3975d5384773d0d2062efb1828d2f7475c7962f6c1c819be3 +DIST electron-window-state-5.0.3.tgz 4322 BLAKE2B e93231f7cda2a2c638d97074048c636d259f36abbde2bbad2e46f7f68019c20e45b955d6e07dd92f047b1b62dcc823bdf3539630ea5921f7fec03a69fab857d4 SHA512 d66353c027e4a255e5de431fe74c96def1369598f4cbdd8ffc7616141adbfafd92fe90a46b999dc0dddc6a02a6e39f00ecd8e7752c228f29d781c2d646876c56 +DIST electron-winstaller-5.4.0.tgz 9141554 BLAKE2B 5d728643c5aac3362ce68199cc066f8d8b7dc7ad920cac6c3090495f3aad45da71b9b24ed69f20ecc4a1e880794431d9be1ea2fd98f348619ba926426cd37413 SHA512 6cedf2d7462292e53052e0d441133829fc0d90a867a553bb20f75bb2b7a3c0df7f000049cf34d0e06787c32ccd4ab54efad107dff369db9e5adec559a590e3be DIST element-desktop-1.12.6.tar.gz 3167063 BLAKE2B 94762a2336896e8cbd1be3115ba1b0ec2c4621f7786f6a3b84c1d992143bb4a33d2b4e01e5c2b557181f09b280a34117c0130ebd179bb909667ffe4244b609ba SHA512 556e43330d4f36d7569ad657c974b1c08bc7140f8fae0f0fdc6e1c797d163b407f04ef1448ed0b1dcb7b9ae8be170509cccf7ea8df2641beacd379d2d2928f9f -DIST element-web-1.12.3.tar.gz 24197114 BLAKE2B fc4d5789167d861be92c5600bbbf6965d55208f4654f6d219cc1360b56e33d7ded90ea5b8430abf195cb06fff5e5003c2116c47d78950cb3a4a4ba2af2091b7c SHA512 b845ff71ca39d7ae4dca9bb55e821bfdf911b12de5d012ba55d598f3287046fb2b525bce608925a9fa8fa7d39a4ceed9b4213d5d1c1d0c9e6b9b72154c9a35a5 -DIST element-web-1.12.6.tar.gz 24467930 BLAKE2B 240f32dbba7d4d173a3bf7f7602b0913b8acb1835ba4ae1690622422de71e28678a12b6f42edb81ac86ec274e979618fba3674ac760000317982589aab93fa68 SHA512 5ddef6cbf2948b36c12d6eaeeffbdf56c09d217b87b73638374459ad412d70fe7ab2d55beb42e752be4ace952923c266f0c5b3a1443f836f1e6f311a7f2f7645 +DIST element-desktop-1.12.7.tar.gz 3168015 BLAKE2B d58d4d9507755ff692215d29dbd5b527e314333f82bce8eb7911b8382a06813c24b1e8f786e96a7fecee1f2f427845b6a2254ffc45f0d4527d18086c50319a53 SHA512 1c914ed46607818ab3286c0bdb279d3d5765e6d72c5dffb18d5bef7080a93294eefa74a1125d13f4e0784cc2c67e3ab2c9cbf265d42085c1424c1f0e537e7f79 +DIST emoji-regex-10.6.0.tgz 5610 BLAKE2B 3a4a5eac40d15fef7400b368a9fc5ad2bc475c977139a23444b16aec3f8da37ec4f07678fab040e8bf011d28408fad920fff286692bb18d2e789f4ab7d749a2a SHA512 b68508f38612e589b15b6d7d7ab9e2583d022153a8e3ac46282a2578d41180ecc3a2b8018b5bf80fbd7f385ce00fd18ed9418a22fd42dd2a7c0c09f4fa3e70ec +DIST emoji-regex-8.0.0.tgz 6664 BLAKE2B e87c25921682c2e12bffb1dead98f01dc6993100db21890c70c08cc4228ed6ccd97f34c9d2c0cb4ff747e57e8cb8ec0ec458eba0c7cff5742a475888bf9b7e1d SHA512 3128d8cdc58d380d1ec001e9cf4331a5816fc20eb28f2d4d1b7c6d7a8ab3eb8e150a8fd13e09ebd7f186b7e89cde2253cd0f04bb74dd335e126b09d5526184e8 +DIST emoji-regex-9.2.2.tgz 11118 BLAKE2B 9bf5b0c20b5559bc0d0aaa66b320ce5d4ff2657f15ffa8490b4d9716fcea5ba7b4c37830e4de72fa023bca1878236d96b063a0be732307f731ff4edbc8321734 SHA512 2f5f03689b17494936fb8da9bfc98bb398c94f686a164144e23db5c0e9a06d4aac67684bef636c514efce60f515e0a37b3464d815978d93887a7766d3affd5ca +DIST encoding-0.1.13.tgz 3040 BLAKE2B c0cb16830c589bbb396658c3f6abcb8918b7e8d386bef7fd7203ee61fb77dc2ed36465fe094db0645845c5fe3d5905b738fc0e1096e12e7eb6f64fc46059f4ec SHA512 11305aba8c354f7e58fd664c922a3d8e2334679c631c7989e179a364eab597f757cf796bdac467f3b9c9cb6d11ba9a928751769b71c73d2a7c4a120f409ac9dc +DIST end-of-stream-1.4.4.tgz 2387 BLAKE2B 89a594bb0bbbbec85aff1185c7654737cd92e7681a947e2b49945c55214c0f733488c503f8ea73bf54aed36fb83fc93cb13d44fd689ab88af17e72259fef7cdc SHA512 faec358a720754f428695b87cd1c97776d6270cf9c9ede02cc3e6b5be342d708ce5124ceb3e4deec53afec084deef4bdc7fa08ca12cfe4f4751fea614001eee5 +DIST enhanced-resolve-5.18.3.tgz 42922 BLAKE2B 0e4df8ec669b7e0104c8487278bf7deef4519331125e3d5167e65a9cd549e56e1bf086e00c4453a4c2a530af133d5b1eac5c5da384d0ceb075588a51a465700d SHA512 778942f317dabcc7818f31abdaf1020b77ec197ce25d94322710fcebc87633f9812373f002e383c4090b92ae4762ebeb3d8714b622f3b13a3c5373e05f739cc3 +DIST env-paths-2.2.1.tgz 3411 BLAKE2B 27f30ea0ea39e552c49114ab061feb25e02be9868827fac07452d4070bfe18678d4ed05edf60e3572399fc0854a5813a80ab2665cf0c164da52f65e3f8eca50b SHA512 fa1d6590b2a164c4d88e8835544a49346ecd64959cb9cd830e4feab2a49345108e5e22e3790d5dd7fb9dad41a1a8cc5480097028d67471fdaea9a9f918bb92d8 +DIST env-paths-3.0.0.tgz 3254 BLAKE2B ded6046e53faa0d0752b0c3a9b3d7cb74b144bb39e6d0e3caa16ca795857167b4f252b24791c040e79a006306dfc0755b005661f8e5977bcd2d38f5610ec8903 SHA512 76d2544dea73316dcb9bf34fc517f7c0fe3ae365168632f6b10c5cfb29b660c8f59bf1f6cc33503a57b369fce41f09fab0cb2d8c74f01ba89042c72d0d6fdbd4 +DIST environment-1.1.0.tgz 2766 BLAKE2B 19fc11478b1d1acb43e343ff18736c7b845c0254c09a5474fac1486e09fc36d96f59b66b5487523dffe5b2eec01152b9ebe2ff8454136ff4055e7e4ae5b958c0 SHA512 c54b683e432081bcf430fc8f8885abd4aa7869e5898c367a48cbd44618a68dd660b11b83a65179fecf617201a1c97321b3eeafa67ba8899da4162bb714c9d2f1 +DIST err-code-2.0.3.tgz 3433 BLAKE2B 7cd8c01f77aa181c3f6271b98e7ef6492848046c98f04cfe399ff62aab38248e04c251290e470b9a18afabbcea0a9d9a5081837e2815932e9889df9d3041b4b4 SHA512 d9b9a546934a0714ff09198f3a5c88490a4d8fea92798bdcca6fee4f4271d9b30e94a2ed4b2d5998bb95c5210a2b2a2bfcde7286fa7f6621b5a04dc311831214 +DIST error-ex-1.3.4.tgz 3551 BLAKE2B e81ae71433d3aec0c408f1c313d57f8853205b2b5beb5429161dbe3a39d026070c9b145bf47268c2e542c46bd861eff2e4663ef4c166c20130697c3eee28f90c SHA512 b2a41a9809d1d785600abd40eb5f00dec1abca07292be1c46de9c0fc7884024914c1c648201fed816a871715a03b20e1e270782424629a1efd751e58c1cf4c0d +DIST es-abstract-1.24.0.tgz 235085 BLAKE2B 463088819501761b048e3a9629b7a2121f7dae7c4231112de8dd3da058c49310088c1892e086d79875712923fd6b44fce3d057e6314346705b16a6dc8f1687ca SHA512 592ccf82c74bb53710c26e0244e7d2e63bb659ad5041c55e4f7ee3163633745cf5afd6a169d0bc07cfdae2ac49c4cfb4f45d7c8ae9827519a5afde9962442f12 +DIST es-define-property-1.0.1.tgz 4431 BLAKE2B d162ae04c63fe7261bf14110cbeaff3786e5bb76a495f004c705acf5d5437f1f7d7ef8e592adb318701da448ec4114bbde537de0db89702826e4858c9bbddb88 SHA512 7b79d17e07d4678acd18bdb7da05205f4e90372c9ecf4e0a76316b17e2d34683979ab3a014a0e0e0109db235bc1274faf5ea9d606991a49c223d560dac2696de +DIST es-errors-1.3.0.tgz 5338 BLAKE2B 8db0e597a0a586500940cdf49f9b1efa859bf00b07eb25822037054ff6022e8202802804fad380f16eaa6743ffece042dbb9e99e7ed02ba69fc7b6a501c045bb SHA512 65fe47d8ac6ddb18d3bdb26f3f66562c4202c40ea3fa1026333225ca9cb8c5c060d6f2959f1f3d5b2d066d2fa47f9730095145cdd0858765d20853542d2e9cb3 +DIST es-object-atoms-1.1.1.tgz 4658 BLAKE2B 8fd2939c0f0adbab491ca5bc9056c6bf28e2d62550dc09d572da0fdf256ca281a8ec76665c033df354e00325171a2213813cb38b0126ea8233e0d6ab47b002b3 SHA512 146807da1f3328d8a6f658e3edd6a79053dc20220af42a796e6f9cda041261e3e1a5a1b9f9eb2b2ce0e2848a2b9fe3dee85189cd6857428b4fbfbde34da95d5c +DIST es-set-tostringtag-2.1.0.tgz 5583 BLAKE2B afae9ceb85b857cd5f232dd64521eff207af9cfd6aa4242c12a7935676d5cc10f8bce3870e66b5128617194d13175371a001ca582bd98f70c9beeabed2735b52 SHA512 8fabd6cdfac655fc97c607be3b4c79b21e9cbf10288346bfe1175dd8adfacc2315e5e27effeb4e0278113bc70e0cc3566d545d5659866502f6612df247c6c850 +DIST es-shim-unscopables-1.1.0.tgz 5058 BLAKE2B 5d5be6f0ceeae56b98c1fb697e75cf7177f0506cae43d2ed996078fd1bbd8ddd2493cc99b96c176f6aab22950272eb7b5acb054a41272e34359dda339e4f5d70 SHA512 77d4fcb9cb04861f018b5c285c27fe4c828321138b1b958293183c81e0426ef936da4cf00b91b63a75d530ee8552cbd09605145d0da2b5ea615832ea0f36de0b +DIST es-to-primitive-1.3.0.tgz 10059 BLAKE2B 03a13796a76301146c451e5d6d4fdbc4758f158a655b371961f13f3fd2c27638adaf7420e9bb79603aad540a2634225553d12e98cad45f397eeafd2baabbaf4b SHA512 c3ee662771ae14bf8d8d5b4996fc9d4a1a84d5e3778773db23bff92c0b1824fff6aadb8c5e37cbd8ba47491aa8e1be1e485e4afc31f5257294007481d945b9d2 +DIST es6-error-4.1.1.tgz 3294 BLAKE2B 37e87f405c48968558d4b6280f9c488ce3a3f169ebd177d5ea4afcd9cada7dc453ee2d5ca3e031ed396de49e3a2bfe9ecc57c614492534118a8a73f13bb5ffb0 SHA512 526ffe17132bf422125a1d1b8b966fd22383fb8705879a8b7a4b35aa1028a4a540270dddae029b2b24a2929ef01a10cbd073de6a36b43f950b66bc4b92789456 +DIST esbuild-0.25.10.tgz 30947 BLAKE2B fd7ef65859c1a78b49aea2812264d0eda1890927ed0cb62f57a1d7e8836217e0209676c0f33f4dfaba4b3e5b4c34b9c7804cdbb29ae321ca4e7080b2b8d1f6cb SHA512 f518862af0b06aac4eda8c0feb5b90e0180d6e8ac042c90c47a42eb1f5b342abfb0193a0e6819e85d636a5124c4cabb0c5dd480c13f8ad26c8e651f353b48cb1 +DIST escalade-3.2.0.tgz 4483 BLAKE2B 061a2b1df87bebe1e1325024d4e88eff27cbc3fcd7679af74b1f7bbf2ca78326717a6297307fdd9c2776b57716c01cfde6650015f77904f5a666ff5c1c6fe2f2 SHA512 5948f6aa5c5a42d3b883a3eae5cdbd193716183c9df22b4bf334e58a98040b3dc97ac02288e2a8b5df0953aa2d0773c00a01bac64254c9585ba0c4be6e37bf8c +DIST escape-string-regexp-1.0.5.tgz 1578 BLAKE2B f1a0ddb17b3e958dd0f3918db00fe3dd7cf322bfc4a7024c5ccf5b80a4d2e5f2914c78963a9d6b491f5ea6701aaa1166d7102428873069f38f57da4e198cd505 SHA512 bdb468ac1e455105af95ad7a53c47faa06852326b6a86cf00eb366099b982ab6dd494306e88d5908641179f911561b8e9081959deec1437e4349fa35aaf26a16 +DIST escape-string-regexp-4.0.0.tgz 2017 BLAKE2B 923b1b0cb69f07cc082a708215dc8f81957e866c063d329364b50da9f526ee4497ffd8fb9519c16f16f5cf64233e26f31e03881862ad89e78cd473fbd9a405ab SHA512 4eda5c349dd7033c771aaf2c591cc96956a346cd2e57103660091d6f58e6d9890fcf81ba7a05050320379f9bed10865e7cf93959ae145db2ae4b97ca90959d80 +DIST eslint-8.57.1.tgz 566631 BLAKE2B 30aaec660a3cd61367fc7b47946ab20ac3dc685b5140f51af3c2ed793e1ce4f81e32e233c3de0ab4c444bef79388cedf3969b352f6e87eff612bf34facd73220 SHA512 ca9a30c83c69552629917afd58fbf63c0642b4d8a9d4cbf92935b4482bab5efffd88ea5cac7f4f6aa504964b2a101ea90a1a87183442153cab6651a19cb34688 +DIST eslint-compat-utils-0.5.1.tgz 12586 BLAKE2B 88e306ac9387c73f417d3936b2460a9866188e48d465b614febedfb9e0dbab4db9c78aae2ada6a1df997c509bf707e2584e7ca605a68760d6a9dfda0df875de6 SHA512 df3def15ec4a2049e31c4df308c468e9f9ff7b8e14ed3d648548e0f87a746503028a0876f2b00b0f49cf14170666e88b0b9acb65adae6d01c34659f4f497d4d9 +DIST eslint-config-google-0.14.0.tgz 7913 BLAKE2B fe9e171d0387be7cb8a7f2a528ba839c346be74d7385e86317b00f69391374e1483c68e0e31128b7c467be008fb5c575fb230782df261a76d0ff35c0e50a98c2 SHA512 5ac6d7e166e3b8cbd375e54bebe277acad511a1093aa3b058d7ed4312320662cb1c5a34b92824435bac6131cc44457a84e91b0dc5dc5ca94e25803fd657ce413 +DIST eslint-config-prettier-10.1.8.tgz 15295 BLAKE2B ce4cb86e4295d4183e4d4d79d0ad12306d25fa06d96c1fb095ee8ae47ac2ce152f9bb20559701d5b7b158f18899cdb03b9c0b8e804a280ff189956dfb89c5b03 SHA512 f36199523452d29fe381a9dfeaad6b10edb9552a071f484a3c24eb8229653e3748ff76e0061004d50cc7ac74e2ce3a51bf2ea9180bca8c326d936a45f4d0eaf3 +DIST eslint-import-resolver-node-0.3.9.tgz 2480 BLAKE2B 7ab89f26b7e18feb1d5ccdb05626b212550b0aef9f44392aaaf04271cb52ddef6ee6ca9c106119d3dbd756141d81579350aac4e7f7701f185cf9a0364a1c59d8 SHA512 5858f68accf6d896a152ff81efcf1394edcdeb32f79cd24653c09c65b3d9bd512404f689742578bf2e70ca086dcb944e15b0919e6d77daff0149cbb9ff5050f2 +DIST eslint-module-utils-2.12.1.tgz 16180 BLAKE2B 1fb34221a17dbf4298a20a2213f7c922e3647a04654e2fbf524a378edde6c93b9d0b999ebc24448d60568fd29683e28f0b9fdaab7abd884ee5ed4b1d1a5fa60d SHA512 2fc8d2593cdeecada64e0d2fa2cfd1b8b452e6ca289a4b033e824b5c8b250bb73c5a6badddbc7b08fa498a30dc059b7143996b6d474cfacd0e94d6f3d0308337 +DIST eslint-plugin-es-x-7.8.0.tgz 44535 BLAKE2B e71581b5f3e6d7a39c9e1bc2d835e661bc134b91252096334cb4903af9ed87756e1db8d86d934538d0e2b0cf51bc1ec269a611ce122429fb531c0bb4120fdddc SHA512 ec3b3cfb0000a15dd3f8b00a7aedfd6390735c2ac62ab70849f80a12a4d2e010cdf121440d07744b8de3890f2f21adf050a0f4eea8ad65d7f395e9d28bcff4a9 +DIST eslint-plugin-import-2.32.0.tgz 411146 BLAKE2B e06d34d2adc8fbfb08817304557cd45fc67e7492461ce6a563b8ad2982a60189709f048746e5d919413f7128092b4a111bd9ae76265d1a93351f72499797ccfd SHA512 c21384d47168fea243c97e129d7ccfe0deb33969fbf5686709463f88347498f7d064ef30718138242973236a19ae10679cc5020421d984ee95432a0153de6664 +DIST eslint-plugin-matrix-org-3.0.0.tgz 5731 BLAKE2B 3034f4ed592aa1570f49e127f78ca66180773cf4ee0e65004054c19c2bf630b874e9d8b68246eb3f4040d766ee0616b0eebc279bf494a563a64f69fdf0d6d257 SHA512 c4e3cc7b22f13a0a01d92b0f84998873e76ba2b6665e8cd2068dd7f70864ffad83bdb56925c9ed86d84e086c7c9636127000cb6fe6da34e78dfb0299ab092577 +DIST eslint-plugin-n-17.23.1.tgz 89892 BLAKE2B 443ea9572f17d3ef81187645e96bd429b23c2bb7fd75154bfa5878999be95574dafcd86729eabc699d4556d0c8a268811f5c3b08ea093c9928d3268b86b13327 SHA512 ebc3de6a55296281ce061df7d892cb0fd4a3ece4140e416999c7eab7c47db3249f1527ae1898cc4c942f091441f7accedc0fcf10b44b90faf3b079b3105410e4 +DIST eslint-plugin-unicorn-56.0.1.tgz 162931 BLAKE2B 1ed9aab5ba1940edb50d99c1f34029cb99d14a4ffd12a1704fbd4e77a5a51635ebe497a6ea3938ed0650f043faa9312ab9d03db380b11ca2a1475c961b3f5481 SHA512 170555d14c1ff173df5672921a9320ecdb65661d06d2005aac268570c50ea2a3f15ebcb1758c53451bf8907e81f53142548ae34571be7a6731224d9ac998a5a2 +DIST eslint-scope-7.2.2.tgz 25937 BLAKE2B 7874be59b6c86bad073f71ea9b3be81495e3b97cf3d28369e0d6e8fe07d5370d92bab9ec68614140263a373ddd487d2b1c06795bbf0c104bd2edc5007fdf0d27 SHA512 74eb76d4eee54cc84333e5fd981e065fe0d9ad9b425093cbff095c4eac72af1e48bced0862d20b76dad0190a7ef27e52d20c1256639ff4d42b8cc3a07d066522 +DIST eslint-visitor-keys-3.4.3.tgz 8109 BLAKE2B f125ab026ab370bce3095412039459734bd804dcfe62f2cbb3064c3fdb477713ee15809d5ecded0386e80b68eb4c988ba3a09968504290c52ce755c19ff0ca75 SHA512 c2973e2d77a2ca28acc4f944914cd4eacbf24b57eb20edcc8318f57ddcbb3e6f1883382e6b1d8ddc56bf0ff6a0d56a9b3a9add23eb98eb031497cfdad86fa26a +DIST eslint-visitor-keys-4.2.1.tgz 9146 BLAKE2B 2ea4e555ba70f6ae0be03227a4c7ce40f4efd2231edc10d9a7590a5325a0886972360215cb61111e7b7678f7853ded7c05f9341960b4b65494e429b7a82ca601 SHA512 521764e6c7ea71e7bff47feb08e262918cfaee8d1ad93c3684644f386d98d51d9d83b6eb45ed6e1b4c9a3500c7bbe4cefee40f17fe5e09aa6f612987523b7b25 +DIST espree-10.4.0.tgz 17313 BLAKE2B 0f754926f969074d293e68f6a7a52ffebdae1007ff7fdd9ed5e09c76a6456b34a83623e82f8a37799b98b2577c0fa12b7fb934f97c596a762909d3dba1fc5a54 SHA512 8fa3c0436b94afbf4f6610633f90b97e197c7b7f459919ce8ec0f99469d6ac553c8b61bbefab412bbfa73fc2ae4144d3c80654c1f42a5c082b547e4c6c7f4261 +DIST espree-9.6.1.tgz 16332 BLAKE2B 8f10a58776c40df250c1692869cf0c4db34c7e3b6a790546136eef6096f52e643752acb9618cbc468b0fcd96dbc0b05c3dee65f3c329940486bb83374b58ad41 SHA512 a2bb99685923a2b4e9177da40d2239ffbe558b019e6608a7186cb636839283743d6e7c259e60e6e072e7925d111379fe9e30d7474dfb698d7ec79f19ff315dc1 +DIST esquery-1.6.0.tgz 162341 BLAKE2B 81cb29a99d7ed4b0b2d58991eda7a30215bb6bf9b9b1cbba5a57835cd2767a0f7d337ad907a3da78a43925a559c8b12e616a2c10b0775231bc20f05a95c5418b SHA512 71af69c3d7e898570a3ef14b5e104a50af7466f1a26e218ebd124d6e396363bb3bbaaff960ee013b3718b49a84c5dc7df6b17a6807274711e67141dccfab10b2 +DIST esrecurse-4.3.0.tgz 4053 BLAKE2B 1bd4bca71bf73cf3eea9959c4eba538b475fd78432bdc802c2b88463dad76492c9027edcaf7a365409022a1b779230092b6ad000a333be3e2dc4a6a0a1f54190 SHA512 2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a +DIST estraverse-5.3.0.tgz 8052 BLAKE2B 820af838fb5d5ff2f9bacce5551a4b40154cd0faa1990a051e8c486bed76b98c5b13fe1cf83817bdb8063f35391c60e6bacbb9b88bfe9443ac7a7ca22a191e2e SHA512 30c74046e54443388d4de243f0380caa6870475d41450fdc04ffa92ed61d4939dfdcc20ef1f15e8883446d7dfa65d3657d4ffb03d7f7814c38f41de842cbf004 +DIST esutils-2.0.3.tgz 9542 BLAKE2B 139acd19bd840894392fbf6351fad4287fa01360a87d45a26ff78f3a4423d3e5e3bb17ca18e646779b595061ebf9611406c1fe072c44bcbb039b328b0e5ab7aa SHA512 915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea +DIST eventemitter3-5.0.1.tgz 12095 BLAKE2B a615ee6579b9dd2de17e1fa4fd41b3a40915ccc556a2151f13e31f7a59de92491c3f9d59452982daeaeceb83d3f2f0fbb3f11aede13837a15cef19a0e8d89acc SHA512 196901be389264af3b10bad839211251879521cf66bcb2dffe75da94c392e5d62b819abda3939591b64054cd3a095c58b02c07f410d914f9504e53c0d63e1a84 +DIST except-0.1.3.tgz 1188 BLAKE2B 436db8201497388afe52415a64a6fc8333220bd1392267f9afb1f3ff32ce8ceef35ac4fe784d66ebd6ac6a211ca72db67f6ac73dd4148d840e2663c7936b4b00 SHA512 a2ec2025abef30e4ce7f2d1113c346405008a1687c7a126192ec43c97c6780c553c53abb1c613b819a29661a8a167bb99592c8faa41db6f27c9f4dde869ed126 +DIST expand-template-2.0.3.tgz 2311 BLAKE2B e90d8dda2546cbfc1029e3da4024ce8d13346c3c304eb3342e961d09b7c8d1b8b4aca5dad1602ebfd3f6e6a34ed23afd2d88ac38a695004c56ab8b9e3b04224b SHA512 5d87ee28cbe3e0edf97ffa4e5cb39b9dd211bf243effee8084e0e1f8e2968fd4bde3df291c79ff20cb331fe82dd1f04245630d7e4d594a9e71dc089f9a7236be +DIST exponential-backoff-3.1.2.tgz 15150 BLAKE2B 156e42e51e8d2976e3878b54b5d6dc0176053acea50934b553c83b899498265c7acca51eb4456d8695ae418ca67eefc1fd1912c39f48e40daffb594700ccdf42 SHA512 f10c584d55d492ecbb7c82288ad4243f01a89c1f05dd98fc7843bc4aa83d66ffdb908ed1240ce8c1e7b882bf351da93f7544e903667b55f420a228e33cd95464 +DIST exponential-backoff-3.1.3.tgz 15151 BLAKE2B 4169feb4933f0cf9c195796f0d93e62f8104aea8e32b1eb5ed4bf91090143259ffc9cc7f4a4f16b7108798978a66f77eddc3351f3d3e1beac994a69e3b523826 SHA512 66011e6578f7d2af88d0437e09b492a48c8f689e475500f5f19d66faed455db01e4fde26af5cf0e74ab8aba8e2882e38ecd97f61370861201fb621aa7adc1708 +DIST extend-3.0.2.tgz 7258 BLAKE2B f7b7d08d78703c31aa760f5d2a1adab512f712a497b59a1397ca9ee56f5c335bb8c70cca73266df547829d4a6714e06a5bac8ccb24ed77b9d65c0dd1187ddaee SHA512 7e3aae0b9f5c0fb0b25babab3572b4141b9f9197288861bcd304ee3ee8d7e7dd1c0794ed967db4136501e12fd601156a8577df665d8b3604be81074f2088a6fe +DIST extract-zip-2.0.1.tgz 4361 BLAKE2B c7a687e7d87c8b781b04bddf7a3678d163682334dda98034205392f20c26227c273f0db372488fb718b8ca5d2c5d9148770a418422827bf135ba874f04c7cdf4 SHA512 183854f67b70b8ac865dd6415204c87bebd79d68f47e9a5412d3032f4fa275de52b5af131a91ecb27fdebac03d9ab3ebf6a343ca6e92c406198cdbc29fff5106 +DIST extsprintf-1.4.1.tgz 10978 BLAKE2B 976075024de57d46b7ed51840a35ff924cbae8c6e68da81d4a1ee79b25330a38a7c01c629b8842977aefe9b63f03503c73cedf3465c51d411ebb7ee8f204fc3a SHA512 5ab937e5ef327422838ff02b0a5a3556b3d598df33a61e55e00b47c08b8786f317b0a7fbdd44f704e0fe6b30485bedf0389e058441fbcf2689085bc286362f30 +DIST fast-deep-equal-3.1.3.tgz 3656 BLAKE2B 7d3cd0b79302df438acffa37a02d9a122b6470a7e23cd3e5e3eabfa98aa0fa101eb34746621df0001bf60673689477984ac6b299350ca1f9c8c4029705eba1f8 SHA512 7f7a90f68432f63d808417bf1fd542f75c0b98a042094fe00ce9ca340606e61b303bb04b2a3d3d1dce4760dcfd70623efb19690c22200da8ad56cd3701347ce1 +DIST fast-glob-3.3.3.tgz 25301 BLAKE2B 0fab5c0ffcc569a3c164590658e862ec69e9d678c20b509da2befee40bd7cebe76ef8d7bf5aa4cd4d371e2f82acbd72f7334821d5e58d8dd305591e9a133a898 SHA512 ecca6d2fc53472a705773233c0e4c7a22957f71e41acdab27bb67f2ee0bb9023118a8d44312caa44adc1100503eec5d1ab8893e00cd356e65d8604364c2bd82e +DIST fast-json-stable-stringify-2.1.0.tgz 6318 BLAKE2B 48656a692a012d7c3ab36deaccb23f020f57c12950e0d5a3d12bb8d0ec16993ece92ab659ada2919d1ef4d7439e7beadc0241f4c1d4a7398b5a64583414088da SHA512 96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f +DIST fast-levenshtein-2.0.6.tgz 3699 BLAKE2B ec91de530cb4934e99a49e1410b534543b1fb3c63d85832690ba76220e6a059e8f3aa5e85c7aa74d2810cc613b8817b119169005804906205297ddb86bee64c6 SHA512 0c25eee887e1a9c92ced364a6371f1a77cbaaa9858e522599ab58c0eb29c11148e5d641d32153d220fcf62bcf2c3fba5f63388ca1d0de0cd2d6c2e61a1d83c77 +DIST fast-uri-3.0.6.tgz 21135 BLAKE2B 092e4378f26d96508514f24ee68d0b7124fffbf517b8ac62830bb1beee9f8821338e40144cdf5b817914a0a8536d8c0ca4f57550ac5a40eccc363fd5ffb10543 SHA512 02d7e8d783a26d2bf9c00a7855636c15813501c850453bfd701196113e296561f362c845492f4d408e88e7badd2a7f5cae859531b6056cb849fb226f9992081f +DIST fastq-1.19.1.tgz 9646 BLAKE2B 505654a719ada3f819bbc0b623e021e47dab01f0788c9c13bc2451d85c19000acd6c23ab051f482a2479c6b7c8e21b483d39431bdaa0223f81b88e47c717e22f SHA512 1b02d3cb19025e35dbc6a2214ec308d8dba2f21b8c3ed9f183b92b6a33c90239c41bf8a2392ee2fb30ad586651f46d0d04a6d72a1e97f66f5422c617fcdeafbd +DIST fd-package-json-2.0.0.tgz 2460 BLAKE2B eeab4eebc59486075c89597408c87e92524a56614117f1a9d565be4c77d556efdcc15d692be4aafa79fbba3b84d685f31c31a9d6fce2f942ca300b0f30585867 SHA512 8ca9a6f58b6c35737bf3d452ff4992cce0b5354abd9a455deb9bdb49256c29d8c6bd85c1b84e2859ed90384a0579198983e94fb99c699ab7c5725361a1132779 +DIST fd-slicer-1.1.0.tgz 7516 BLAKE2B b6b1ac20d3ef1f4a50f70b3d8f349b5c48b9c81e43282a4b2b66a657f1b5fa7fa67d86cd9b1057036c97b0e1a37934debc9db452b36c6cc273498106f6211349 SHA512 704d6ab01fd5c32428cd9faad5d1b147c2c160d65ea1f84475434648c6d00f71b0da50335fd65bdee214e846dcfc59b28e8f405967e79f4014087aad7afb3ff2 +DIST fdir-6.5.0.tgz 9742 BLAKE2B fe7c6861388f94b02caedcbfcb55b553a1d27296d8ddd2adfd6dddd4addb6038c60a153b544ec1eca9e6d1699e6d8749d81905d9fe4e5e56442ce1bf5a4f6440 SHA512 b486d8b596ee70eb340511aa3c992c84951874bf920c7edd54cf208f2f84469dd60148cb105244fb4da46a7c87b708d63a7c2b298062c0098cd29e242c90275e +DIST file-entry-cache-6.0.1.tgz 7793 BLAKE2B f7409b5f59fd0e8a9e616c0772ec3a10cf0c9bea89e7e8364a9242bf772ef8dba3ac7ffc78834869f86e6597bc52f5d34a36547762ab1753bdf98ad1bcdca768 SHA512 ec6a6cfd75b299b2e4d902d82b8373a4c3ab623321748c57b88bf2d9006c2c4ea58eea1d2af7645acfdca72249dc25485691f43a2d47be0d68bdb3332dd14106 +DIST filelist-1.0.4.tgz 6677 BLAKE2B 0d84ffa80bb39f64e03f298a997cdd511d4921c334dfc2b6f390e7407064b7a00c449527468d7155709bb9334aa00c5cf805fbf8a09ba68c8975639f07002534 SHA512 c35704b9fdd2f83acb0902fb113ea4cfe82694975babd27bc970928cafce6423c0faa10dd56c85e1901fd186096b8fec84726b6b6b7f77fafc495e098bec7ef1 +DIST fill-range-7.1.1.tgz 5723 BLAKE2B 680401e2be73af604606eeead42ec1007f9685340ac66fb8294ec13b51d7f88d1988edea273dd5279cd15f824f1a4197f3aca154d63176dc86125e0d8148d9f9 SHA512 62c1a97b75872caf19622e2d583836272dde6d1cf6ad7a300f19e57786e4401d3471cff5670f405a70b48bdced0c98ad8afb50bda23d29a2f22ab73e8415b4ca +DIST find-up-4.1.0.tgz 3745 BLAKE2B edac7376d9bab6a0de8608be3d6645b176443b1d7de1e2d36398aa00e6680e11008c2bff21fcfac292883c482081451654c00140a600b59de1c2cb808c3a8526 SHA512 3e93b001d43f6255d0daf8fc6b787c222a43b98462df071e550406616c4d20d71cab8d009f0ec196c11708c6edd59b7e38b03a16af6cb88a48583d0eb2721297 +DIST find-up-5.0.0.tgz 3806 BLAKE2B 5a49bda1107748c7edb72326c2d9dfdebe921e40badbba3a6a97bd5a69d79f4e163dee56fc3f4f4e021a6e52f4f99a373a47de65a7dea485f8aba8ff04a1600b SHA512 efcfcf5d3d7094b2c3813cc3b3bb23abd873cf4bd70fece7fbbc32a447b87d74310a6766a9f1ac10f4319a2092408dda8c557dd5b552b2f36dac94625ba9c69e +DIST find-yarn-workspace-root-2.0.0.tgz 6122 BLAKE2B 11fe43ecbc7813c279492d32d8319b09803fc915a92b829d9a981bdb0f7247293e9dee7d551e0f9bcf560046a85de5d32be828cc0eb1863fed32ceaa04672151 SHA512 d483276e3b782b3b107e7867ccd77cc141205d9e3823365a6669cb631ec3e45665687b76816db40ab8bc43e13fb79b488f8f9ea5306e6fed99c6efef3482f3a9 +DIST flat-cache-3.2.0.tgz 8794 BLAKE2B ca20caea45073e8f6d90a0946b18cea3368a28549fbe9c6ce0c0d842428367955c336a82a6322c7c366a3160ff7d54718755bd524b3e2805f6c3e94d155ce48d SHA512 09870435af85b5c50a2e6861ab272da5c96cabb405dfca4a8d91ec18d892405e6be05b6828359a6c50e5de1cda11032f4f52c7132b30e6dc202efa5861be2f6f +DIST flatted-3.3.1.tgz 12880 BLAKE2B c51da803c1a41c039380623bc44d1372c23ccfb8201b6bd02da13c5ac22529499a793104f3888f167d9435bf1c1a83b8235af3ca43fd2ff655c174ee5f4c519a SHA512 5fc72a30b2e27bb2ac3540d277378df0560af6b12de03b7aeceb06fc33469d84d20c11b8b850091419d47a257ecc2540bf0172e7a22333db07e758d568484dc7 +DIST for-each-0.3.5.tgz 8133 BLAKE2B d7d1e8bb1b102a3c1dbdad28c78af3cb9af75483ac2b73d2dfcdeacaf527ac929a763f7f85dc0a9d5096a7d9ab8e5547122592d8b46c62f1ec100f4c7274e34d SHA512 74ac75d9e442548cea0b1146a65c8528930fbcb11682636d52ba53889211e6ef7bcc48511bcc92aed6e83c7657c7b75a2f1415ae5eb8ddc4f36da6f6b64423c6 +DIST foreachasync-3.0.0.tgz 6304 BLAKE2B 0c9bf14759da880c8a44c1ce23dbf975fb1bb4ef8fc17e99d92f34278332d6dfaeca7b754e5380b8eb81f37561580f3a264ccabe86f043858017e7a503bb1e2b SHA512 27e95eafb4dae78170c0d731eb04110e14c86cd7b20dc01132439c82e12a9c476d9b48cabcddcb8b73c301bd83bb7b9b2581167d82fcdd731139776c5c05f273 +DIST foreground-child-3.3.1.tgz 12526 BLAKE2B a11710d1090881205ab752cc54ad669f24be57d1a4921ac0b472d1acd39b9f8bc6101b9b0479768e50d8ac9aa0078ec564f71787b21590c6a80bfc84c2d7e103 SHA512 8085e32aab45b96120cc544903d58241e4892d90e380950e302333c6dbc5abfdfb2a88ccd41146b9faac0b2d2be2a4909982ec65831ec91ab321638cba9d37b3 +DIST form-data-4.0.4.tgz 22368 BLAKE2B baa34a6b52f21b601d1ab0414fbf3563c63b285a1f946bbf850cd2c29f3b6d63c3e84e946122a7c51c4f3ad18653a5cbb2a313a0fbf457e27cffc68e73f7e358 SHA512 2ab1a12fd438ce38f492252de4e3b832bfc0fe3948da30d8b397870696073dc0445528a2a40be7d8aa361e73dedb4ae672ebaf30735d645a7ee089464cc1743b +DIST formatly-0.3.0.tgz 7380 BLAKE2B ac9e56d8d34d3f0153c027a55efca6aaa346380ad55a468f7f5c082b382e5142868e3172a229ffb900706d159d1b51e6fac03a9a8a51753b644d48e9e1c401af SHA512 f57363fe8e30ad11728523093afb2ec8cc32f1a51f05a67556ba8755fa21c977f44b0d1efb27ca1bec59698ddaac608e31dc05b2a39bb7354e735814f4a893f7 +DIST forwarded-parse-2.1.2.tgz 3530 BLAKE2B 6d751407f4ad097c8e3e1740b316d1d3849cd75ef2789c287298e07b20aade561d99632622ea0443d091e715985a03d2354ca216ac52f99626d9bc5c59453f9b SHA512 6a54c565940328ca68ac11fbefce7aa57833844cda51598b08393e7a02e02201ecb774e99ddcf3f0c9ca7be1b344945fbd5767ebd1e1a56edc997cefb4bbc903 +DIST fs-constants-1.0.0.tgz 1381 BLAKE2B 9612f455d2a54bb0a329a3345cb84c395f52b4456d121a16047fd7c8b9fb35f3fdfc3a1cacb33810af71cf858a7a5188f2ff01f79c112aeb0004c311f3436a4d SHA512 cba380c284887fb1728cc22ff78bbe6f9add85e6448f347adc64f26499b9aa1e018bed988302c2708fdf3c56642f93d28b13ade9934a9bec3e1dfa7f05c8b0a3 +DIST fs-extra-10.1.0.tgz 16920 BLAKE2B f96e658be190a5349cf16f7cbea7914b306da6782f8e1e4cbe57988fa932c2962f2b7c88498bd69e86761e8ee8b716b9d1986af6fbff42020c098f3af73475bd SHA512 a115c0a6ae78113463e1e3221731a71d61b2fb3a39adab9d8eec4dd1bf07eecfd1536a16d16becc7d3b400244dfe446af44f15bbf45eb24181e68de38be1731d +DIST fs-extra-11.3.0.tgz 15474 BLAKE2B fd574d31163208f619ae568daf676474ce2471ff7b8f5cb71406f26321738254992ab6d1f8a3a33f4ea147a816c02a618790f59ae0c76dc23346874047a30ce9 SHA512 6785da08be9d5031df3ff8d3db98c928c9adc6fbb06e4ac3d6f352305968f6534b6367391476124201cf459523001dba4e90c4a16f4708e82996b75b68f57f7b +DIST fs-extra-7.0.1.tgz 32085 BLAKE2B 8bde3417250a234a5def62886f2e4d378b5b0f1a7663a4f43cccdccf6e6bb28a23a128f2a3c406dd37a0e0faa499f7ea0527bd0228ff0ce103fdc42cb86ecba1 SHA512 6090da0896449c199c6f0d777ef74033d03034e2703b3ac4e29a8ca81ab99c5884a9752a1f094ae01fb7a54c3a24dbdf48fb57d39c451ed632ff59e2d357860b +DIST fs-extra-8.1.0.tgz 32529 BLAKE2B d12552200eaa0c387de356604793c267e7bee8bd3a813b3ce6a053cbec5d9a5d64e80d1cc0ba997430bf808108163b4acf893e5ea7ef6b33f46bec9bcfc3ee70 SHA512 ca1950800ea69ce25428eb11505b2025d402be42a1733f2d9591b91c141f45e619cb8e8ec0b718f9989ad26b5d1ec3a8f72fe13fe0b130dd1353d431a0eb46e2 +DIST fs-extra-9.1.0.tgz 33668 BLAKE2B 40a5a7ca31f564fbf39bff852148f016ae107bd43e2f28057952cf799dd27c715c319a7bf0c5b66d5b27f4c144b8382b92dac8e07a78271fb3c462bda489f549 SHA512 85c8376667a94b7d3fec1485a91be8a370ce310bbb223ab13b99c20edfb333d5d68dbdf75a0ef388d4fe42fa9bb9cdfe816a733b4d89b9b5729361b866fa3539 +DIST fs-minipass-2.1.0.tgz 4535 BLAKE2B 10b5fd281621affe110587f1553da26ca329aefbf08b343c81cabfefa5d0764a7bcd7da6f6a20665ea320dbf76aede3b5ec2618d7b9b1be888b3e6e4df395387 SHA512 57f26038b1424be47a55cab4b250ae69e58474d0b7a2e0e524c348b1a707d95b402e2bbd995e0b3eb1dce5c0e5f24e5ac3a27c8f08165a9893a39458866233be +DIST fs-minipass-3.0.3.tgz 4516 BLAKE2B db915be3f6dd64716e848878b9be9ae4154b83e626bbcd41920c2e3366d59aac29e03536e44b92aa411a72f6f957295cbb27d9a4949d9ee6803db58437ef74d6 SHA512 5d4040f570a51db9c95927c1ce3926e91bcfb32837b2bc99b74e81110a17705ec42bfc6919a41826040a0c94941f948667be98ee9171d500675f3d3dad4e456f +DIST fs.realpath-1.0.0.tgz 4434 BLAKE2B 60fe9d3e29eafd92d3aa71ef3cfd142b8ff8b29c592bf313a70f1f6306c7e098f6a6d6b34d5a857d64f375e2c09698b0edeb0671e5d8a21a4cfd33017814cdb8 SHA512 38ed291f694ae9ad2166701d6aee48b731cf23aa5496f23b8cc567c54411b70e28c05db093c94e49a6ed1830933f81a0ae0d8c6c69d63bd5fc2b5b78f9f18c0f +DIST fsevents-2.3.2.tgz 22066 BLAKE2B 49fe9ab305aa18ef8fdfd51d0e9ac227050f964458fb16a22bde41dc70ce45ee55d3852689470dd5632b5e7485024383f920c365ac93f02960a6a62e6f92d169 SHA512 c62a8c411e3101e1d3b81f6e5a6f9f1517083a02813223813fe7978b24fb8ec8150aad5b915ca0b74d28012a3007b11db6938769a3e02adf35d8ff5a6fe0c328 +DIST fsevents-2.3.3.tgz 22808 BLAKE2B 785133d01e715ec62902569ce2d7d54fdc568cdeae34173dd77b043c092fed9cf3eea8895eb8dff6222fae275d16c92a901a92480147ae2fb5253521b1b7919b SHA512 e71a037d7f9f2fb7da0139da82658fa5b16dc21fd1efb5a630caaa1c64bae42defbc1d181eb805f81d58999df8e35b4c8f99fade4d36d765cda09c339617df43 +DIST function-bind-1.1.2.tgz 9799 BLAKE2B d32ea3d31143c24a93a2f6d73e69e4add2e0313a46d8e5f14d701b82bff2fac9bb8e18955749d4438de0de75d15e83071d0b79c2b3eeda40def0aa9cff9408f8 SHA512 ed71cdc47eea5fdc46e66230c6486e993a31fcc21135c3a00ebc56b0cb76a40af6dd61e9e8cad194dec50521690a9afea153b417be38894811f369c931f1b648 +DIST function.prototype.name-1.1.8.tgz 9379 BLAKE2B eade4950ad87978648356780649e6511521f1377217855b59fd6aa98bac1e2d40ae2e8082ed9782a5e4542bef348c6a6e4c1ba204548a6a44b36c24925c1d78e SHA512 7b98b0ca874e1e16ccaffc8dadcedf0d81b8aa56c8bc8e606a3cb33e76f94c2c32863029ce7421d41305a2ef5bdf449ebd8e3780224a5f27280818cc6ecb96d1 +DIST functions-have-names-1.2.3.tgz 6003 BLAKE2B fcd6fa646dd2ec635cec56155bd720ec9af0043b1033d84888dfa607d8e3ea4fe5a4dde228a2103358c679d2e05f1d64786e7ddd7ff3433af834a257b1a61691 SHA512 c5c901517c9322a4fdeedab6c7600c6fe835eb76f9245cac624d31e2ac4d1706df42498d6688911dbeac3f323dfd0577dd67aebd5601508883e0dccd232a9a45 +DIST generator-function-2.0.1.tgz 4441 BLAKE2B 07e6cf59b570a573ac6d4fa9d0bafa4fdbe7213d9c60424ebcc767fa6fe461c50ab8d296e89b2701ec627ead6570ff7fc49b11a8bc598faad25b04d1dcf4db70 SHA512 485745988262fb26c2d2f8e51cdd191951877379601340f13c04f47638d583e9233a74aa725aa68f4290ef291338b3fa631a2a3afb8038319d707267fb8deade +DIST gensync-1.0.0-beta.2.tgz 7442 BLAKE2B a54d6f04333a9970a5c3860fe1440b9a9768d058ee7ecd2c81561f8ea3fa9d4fe79c84a6ac59592f4e06d64fb902a2cba3a7c033ba2128ff7aad1947cce98d63 SHA512 de137b35ab2462f3032d0639e609d6dcd43e99eb0401ea53aa583e5446e3ef3cea10c055361cdc19861ea85a3f4e5633e9e42215ca751dcb0264efa71a04bcce +DIST get-caller-file-2.0.5.tgz 2383 BLAKE2B d85ec0bf32919c559561c88140e1c161470d5477729024864d5b4710b124384a9d9fd371bbc0c7c6623d2ca4cc3fd99d9027ef5f89e6d7321533bca7da278e70 SHA512 0f214fdc133fdd81d340e0942ffc343991d1d25a4a786af1a2d70759ca8d11d9e5b6a1705d57e110143de1e228df801f429a34ac6922e1cc8889fb58d3a87616 +DIST get-east-asian-width-1.4.0.tgz 4560 BLAKE2B a37ae286cf3f6c0320c9e9f9d08dadcd3c99538435db3bc378ae32ffc079a4ac88bc6c00f0a82c763818ae993ccc49558aa60f22f720289a98f8398bb9703101 SHA512 4198e610e0be213d6e93a471d2c5f6d95eae1d65706dd6f17f57da3ea2754212dd1a0b11182668c9a4019bfa6245d272fc3dae9ba84cd543fb644790e0490ff9 +DIST get-intrinsic-1.3.0.tgz 13800 BLAKE2B c6e23c39992533e56b6f56a4b6f3c42da9a8c41f9ce3c43944accad3b39aa10d2a4112a96f11b63f4c08c0c09938b9ab42651f6b5a103859ec0c146aa1e49c10 SHA512 f5f4a349aa2cfdf448548a7ec5226513a95fc21112ecb36d29a08121a987b23af69dad418800493e8d263a38f3f062435116ab9823c6a9a89583999f8dbf7c09 +DIST get-proto-1.0.1.tgz 4474 BLAKE2B 3779b381c5d715dc116fcca531707d8c0e3701c85fe1ad929b95767bf8508bed0529636e5e35b4cba8648a9159ada24190e5f425ab35c479f16bab5267ee69d5 SHA512 b1349f063a17069f3d26f20a21e7eac3b53608279bb1cef892263a6b0886a202ada1219b823604fc6ffe97db05dcc5853cd73d21ca0e0b83837ca1dfc459a9d2 +DIST get-stream-5.2.0.tgz 4356 BLAKE2B 7cc293031fd7993d626cba785408ea0506a5ccafb1ad1dddc5337030bea3305df977ef66c69180616013dcbb5fe0b1362b41d4e8deb826f78e8f142a33f22e02 SHA512 9c117e175ac06550aefe9eeb8f3800f986f895f617ae997b6ba56626b53cc05f48d422af3ff4303cd6479ce9706d3918e9dbed148cc5312c905db2e84d03d1a4 +DIST get-symbol-description-1.1.0.tgz 6452 BLAKE2B f8217ddbf159833e11aa01031ca697c1b7ffa7733f93b387b8f3e94816d1c25d53ec74624c2fb059a6bb00e65cf8ac1db94a7555b827a74cf8dd7d2edd7a2242 SHA512 c3d50ca96c09c4734ebe8373489da83c5e70bd872f3fb8d4bd8ce1a7aef21214e2d7b6430410b5cfda53746bb38c3f84148a8b4984707998ea7e23f3434e846e +DIST get-tsconfig-4.10.1.tgz 36481 BLAKE2B 55f88d3e2911ad9c21a6a6163c38db71e62bce02b32ff49b16d3b5fc9f02d10efafdeee6cbcef9fde745c0aaf50e37c02ea136ff840e3d5b2af97682e3b02d85 SHA512 6ae1f2278020333eef812f07a7737a1d74a694c754ca1494adf045d7ac35e77af1b4b204384f871aa681a6973366f9c72ea4097e21e8b4262936197495444e15 +DIST get-tsconfig-4.12.0.tgz 46408 BLAKE2B 136d93357f79cf34cadc6b36e7d91c63796c7cb494140986f2f10a09bf0c589061665a8eaa2edbf9a20d3cecbc88446f8dc96bf55d746fe820ff7cbe67b2c73f SHA512 2d272bd9a36bd856e3023661d82e97e81c51c75ff1f9a4c313172dff1caad9729b60e886e5cd1a2bba4cb12bb27346ebcf789baff95b4221c3f63cede2571c27 +DIST github-from-package-0.0.0.tgz 2121 BLAKE2B af6f9f78f5f110557729f3e5ae13e1f382eadd55cd276196920c78ceb78afc7d8535a96f68ddf27a33ebaa444d231ce0cea460220d1d6829113f77b7ab469795 SHA512 4b21f2dd3d6fd8d5179f6f4eb1677198ae91c070febe48f7bfc7a7f00381675c0143f842010e5b0104c3d36916e16f6d529ff7421e89f2bf44be7b62c8298e3b +DIST glob-10.4.5.tgz 71886 BLAKE2B c118b533e6aee08d3e76c17bf3b3febf15be3e47a8b505c9beaf67c919c3b676ac9b5054128792ebae4f9a2381daf3d221894503edd80dc94de98a487d88209d SHA512 ec1bfc445d24eb18e8edde00fcfc582db5027dbe9cf95a5ddbf981db244395ec3b25be611178820fd89b7ceef0a64f22e2c7af2ba0c59f2f61ec461b337fec1e +DIST glob-10.5.0.tgz 74227 BLAKE2B 8825394d0a6e6c36ec1e9d1bebadcd57e99658c9b70c52dca41446aa91b1bd0cbe287f3b97ca15c888d45670fce1364b308c49392979e76fda277af1391026b0 SHA512 0df5cdf037e127b347dce7bb7059aedcd0aed7029b911789f13a2bcd20056d22ab94d69048a7c8cea62a558f3395bb3634b05b5a9462539d865f63db68154d92 +DIST glob-11.1.0.tgz 74669 BLAKE2B 99f8356e1fd67860e47fb8fdf31ec2abb09d79d3612a7cc7f0cd7ea8f5c0ccfcb60522e4b5ec416c6373ce423f1dad75b980492b261b6fc60a1caeb156df2ea4 SHA512 bee37029268a8aa9bb8344c7501bb6c7b7244acdd724b5c4fb6b2c2fbfcc7d318f2cb72b250ff852ad428cf4ed3b9702222471aaf37a4f0cb5a8ec212f45e373 +DIST glob-13.0.0.tgz 64652 BLAKE2B 05117af13c77c46e618aa5764cc11f7cc514f859b4a8db1de8bcf34cf6568681c3889546f1dbafe13c3e48dc662a93b9faecee2c72ac708d1ddc3e073435e73f SHA512 b6f660a6a93a7f3e0168d67ae99b116999db1ef3ff8c6dee289bc064ec045542f84530399c979e2d87f237dfd503c357fd5dc8046fa191eb86a4a8ef10b91584 +DIST glob-7.2.3.tgz 15444 BLAKE2B 45783fa378e2f1207f5316302df7b37ca233bdfc1fb5b106e4c1c45db2bc9ca2c785c5a341eabe2496977ca40364bb1914716eeb0e6f1cfd9f719ff720674bdb SHA512 9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5 +DIST glob-parent-5.1.2.tgz 4853 BLAKE2B d8e6b8777e339d0437ffe16feb12d7c03ba438a9ddbd0cc9b82d7ff7f653ce30a17978fac9fe4a510b2dc422f433721995e69908811c26a5c2891efa9e024baf SHA512 00e22049009ea62258c0fdc04671b1fb95674eed870587736c63f8e5e2f0d6faf7cc1def64b7b279dd6c0bd8676dc39cf7f4ab33233944f42b906cf8692f59a3 +DIST glob-parent-6.0.2.tgz 3449 BLAKE2B 4bca4043c0d33af7ea29e8c26ea21461858af0b37e27b7054fb88f94f2498026fa783b19f7c3077a01cf6b7d585704b3e423a0f7f599ba68f41f892efcd82753 SHA512 5f1c08f043a1550816a7a8832feddbd2bf3a7f877a017eb3494e791df078c9d084b972d773915c61e3aefa79c67ed4b84c48eeff5d6bb782893d33206df9afe0 +DIST global-agent-3.0.0.tgz 30541 BLAKE2B d41c1a47396c1cb9c8df20e9a93d5e014bbb0b2f601e1ce24fec2c53250313005aa102923f64689708dc380cf229384e331a674e66574ab658b16f2ee89e2704 SHA512 3d3e9745e27e0f4ec9bc6a3140c913eaa8e2fe354d7d7fe1dfae171d9396791cf2eb8b1216bfb1279397ecb2376f830f43374be07f18f0cd31ccfa6c54cc00f1 +DIST globals-13.24.0.tgz 9574 BLAKE2B b0b4f7dfc09c3833673dcdf187107d8c2f52c5ae1fc211c5311e85d10f4153bfa4acd3fc927b4ef7faf4518f7f4a79a5155497b7540c5f2ebdb017875fcd4c3b SHA512 0213b9414723f2596b6c6d3d89684f536076d38275c673de2fc910995a2b4accbe4a38f5b24f2023287a714a1c1a61f82f452e840272fa124c440e26800e2615 +DIST globals-15.15.0.tgz 25441 BLAKE2B c4d70f0f95a7e1bc0a6e042580fd3b036c7bbe526f9a3c97c65a5c37f4d0001ffe0c1ae44530beab38ef87b28dbcd3484f8ffd2693e40bd69ad010b6984deb9a SHA512 ec00b24f7c26ca9dc8eb54b87c6ebcd8bd150364460fda2d92a189230354305d52594a266c8224f9a7f5ba7b83620326d3cd9a1d8c03fa6cc9beff48bbc76c82 +DIST globalthis-1.0.4.tgz 8504 BLAKE2B cf156579e4e5488f208b3420321acf7f2bd57a006b80ca46ca9e36e6a08c1e4c3929c91b6184ff491e8910dbf356eeedef9f9264b7d822097faf6a114c141e54 SHA512 0e92ca6cd5385b2969c49ca442e8df09cc185a257f2619b9d06a28d30ad520b02fe633abf5df87f944773e14820f6ac2084220d2e73e1be9ae053c03e782610d +DIST globrex-0.1.2.tgz 4872 BLAKE2B 67f124d915203a19e18ad068bda04361058e41a03b07838ecc9e3b2ed86c5ded1198bd6156f20f60589006dd2c20df46f2e216fa262eb4ea89c1a096c8f93b98 SHA512 b872606f000cc0d15fe662ecb7b2162cd835e31d4291eaa09496ff2b77688b8770eaad88bc002633f63cd647afcbcdf03fe4acb7e9eeb454d838683777596cc6 +DIST gopd-1.2.0.tgz 4584 BLAKE2B bd2aed237b84ea233127880113245eff54f756433fe9434fafa04e36e3d9f04e0dda8cb2b1dc2c82fa65730d710edf6f29e5ab31bd956087b2507669bc9ceab8 SHA512 65429187afe4505a0089302d4d83d9277870f70371c7e04804e8a39e51bd3e7ac9b027128ecd70cb20fabc9a5a62d827cc3aca6114aa7f738ee917daf77c6c46 +DIST got-11.8.6.tgz 67729 BLAKE2B 6c7004a23acaafd9ad541522a462aba605efe9e96d7fb1b26d6128e2b7c14d8ed1a9bec9935d69ec904a5d267af2053ecc25c77d1c1821cad4d28f8c4f8c59e0 SHA512 ead7d9f756ceafb6ce5e72bb3d10c21812dad47e14d3cd181cd6804362ac30694b13345b938e27b1917613521e45cdefb491cf55b2826207456da18eda58ddf2 +DIST graceful-fs-4.2.11.tgz 9804 BLAKE2B 3973d3d7df7e12579b31eebb7795d31f69cb9b745e33fe967d2387d2193726b58e1a9f48e2ead910346db9d093991aed626345d93bad00c3dce7685ab141ec4c SHA512 45b279fe398570d342703579a3d7939c12c9fc7b33595d0fef76dcf857f89d2feb263f98692e881b288e2f45680585fe9755ab97793ade1fcaac7fa7849d17bd +DIST graphemer-1.4.0.tgz 58380 BLAKE2B 33f8d65c591404a675fc8cd928be0ac418edfd19277c0451d7a196f0f95c4bfb610770c2df387862df30aedffbb12444fb5b3cad2db1019d93de32dc2212fac1 SHA512 12d2b0a0eea4c422fd58ee718a98874d9952cc19bb58b4fadbb4ea0bfb9545dd072a6abc357c9e6e7358c43a018bbc2df1e4d6ad4aca5c2395685abdc759206a +DIST has-bigints-1.1.0.tgz 5837 BLAKE2B a6b7451952fa5aa0c631601b9fb051349ee75c5b7463e96cf66f14bc063cab1d60ea832799362683f8407f8d0e34e0cef9ba000d712c767b2c35633d1c4acbae SHA512 477a5ba64708aafd8f9b7754c208dc943455996a53256d8370ccdc221117131d6887f08430e6cc9b728b99124e76f84cee8e2e4019f0afca7344adac25622a7e +DIST has-flag-4.0.0.tgz 2206 BLAKE2B 205d00c6f1253a6319778c1218742c344fee1298414ee555fa543b7dddb61ebd9c8bb2474b9983281608e5375541d71e19329ad3d30ddb8491e157b382fb3135 SHA512 1329094ff4352a34d672da698080207d23b4b4a56e6548e180caf5ee4a93ba6325e807efdc421295e53ba99533a170c54c01d30c2e0d3a81bf67153712f94c3d +DIST has-property-descriptors-1.0.2.tgz 4429 BLAKE2B c80cbf3bef05ae96da189328b5e3536220db90bb06275661f6aeecd84f50bef7195f22ca5ddd7f4d6cfe9febd240f5b6ffee0df17407252718ec4465232ce9ca SHA512 e7924d2ae216fafab829ed418ce4e333661cb5022f093ec61731f099f64f1a8e709eb82489dd1842d9c095e152aae9999b86b3de7d814be7ab6f2e62a49760ae +DIST has-proto-1.2.0.tgz 5434 BLAKE2B c382775f01447541265e69f985e291829d81eb7c417b346c1e2995b2598d495be33a3c9edefbff6ea187018d64769f2c319e2d695b76f56e96aaf88e32439ff5 SHA512 2882fb7903df1d0442f3e5e5b9a230ec11d4c30a8bd7d6d09f887336076bfb5c17a14d0a2a3eabb9fbb8ee5858eca6c94760ba4faf8f7f237411aef09124bea9 +DIST has-symbols-1.1.0.tgz 8059 BLAKE2B a08ba03d86e1d8aadc445e8efe65cf6b7f5821fd322d66272e06ea6097bc10bf157965166eccd732a66e23880af89cf89be2a4e404796003394bebc460f3345c SHA512 d5c0cd77027625aa2199bdec8383a629a301c2e0b8f2c6278b91d4c360efb02f0b8c64cb2bd87e79bd57e91cae3877b8853d142c25baf22a26863528294aa53d +DIST has-tostringtag-1.0.2.tgz 6465 BLAKE2B ee7e1e28a23da5af9b248f6de541e1828eb80c3fa8d2f793e22674b0354a2aacc2fe25e995a91cb43d2f3dec5f1c0a057c3a5f6f94d8110732ee8b00fc199f83 SHA512 36a00307c5633c52ccd95d15bc751ec30c2cc3465605a21d828fa2787b4ade16ac2f3e2a78246361ca9f07a010ac182044aa69285f0be76fd5a9d56c3b8ec397 +DIST hasown-2.0.2.tgz 4109 BLAKE2B 85bec3ebfabecab06a0e8ad3fbd7b04023e0d6e0bca0da6e68ba391590b12997d824453e22945825c614da2f9a52499b0a5cfbcdeada5f0047851709e3ee84c0 SHA512 d21254f5208fbe633320175916a34f5d66ba76a87b59d1f470823dcbe0b24bcac6de72f8f01725adaf4798a8555541f23d6347e58ef10f0001edb7e04a391431 +DIST hosted-git-info-2.8.9.tgz 8110 BLAKE2B fce34976699fa006f135d4c255a5b641ea205830702f3744009b953a5dbfee218b026994c0e7ce98af8afa51df7818d6aa49bb898976b0460b8023dce97188b1 SHA512 9b120301bf4bb26e83a0e27bc47fb9f97e32d4b53fe078b9d0bf42e6c22cc0adc9cd42d2e1bc24d45be374182f611e1bcd3e2db944220b5e451367f91db2ef63 +DIST hosted-git-info-4.1.0.tgz 6805 BLAKE2B 4a54e10c826b32ed5d3ef18272e2c2b4d9e62a658d3a2a4ac815a70ca5917487730f005983b2eacec594a77ce1fa6ee611b7c865596bd1746db0143168ac9b72 SHA512 9320ae10e5a326a66e0db447ccbf15f77373421c0807bd681564b2cd5a3e28f648fa99d03cfc6e71d92b399be42d19eb7f9511b1033e209d3d0f0dbd71100b20 +DIST hosted-git-info-9.0.0.tgz 7941 BLAKE2B b7ec1871b051a7416442f7f424e8b610890933f571d8d25c1408a5f8657c1b9274ff43e8bfb04e8fe8fc264ae9ac2779cb9edbde8508c6a1bf7a7a9ae99ebcba SHA512 8047fbd393192eb0cf91b6e18bc3e7a0ee19c1880aa0d2fe21267702364c86ddabdcde6db93c277320e2e85bf6fea0e732667182cd3223c5833b247cab71be49 +DIST hosted-git-info-9.0.2.tgz 8051 BLAKE2B b6dd6c683ab70c7367b6e89477fd0a269ba70b53933db103059f05e1370d9b3b2c96bac1afb1a80b30ed4780e0e209deed26f4a8779048e2859d5282a8a75ecf SHA512 338db687ba3f051deb98243c5078bb732c8ca8a96d74ff54a3e2767d72be452018fb04dc28e211ca14ee2afe2a9fe0c97f783e3cbf3dd00cc8779299a57f8206 +DIST http-cache-semantics-4.1.1.tgz 10811 BLAKE2B a767a1f5c50899495d7a0f39815d6c3501219e61a9eeb08cabcdf6919fe7e883242a2acfbe158c510c1e89e38ee2b6cf38aa5c100b685c385a3ec8eae07ad084 SHA512 7abdbde4328f56c57cda3e64c351a3b7e00303f5d81ec6a397cd9c18d406d9eca83e4be05215fe9c32327a5ce12166dbb173f7f441dc23a979b58b36158a985d +DIST http-cache-semantics-4.2.0.tgz 13982 BLAKE2B 37df93d32a3ec1edd0653c479e9f1aebe71d0719d11774af003c26e32d4fd8080b9ffea153fd6c57ed40265863f87629730bbef852367bcba5644053c6c72adc SHA512 753c5cbcf5ea3ef5c1429ab9754afa9843095f8a08105bfa6f0a26dc50f02910ecb888e324600daa106ea009fd73545024874029abf7dc40fae44db2b3ef3b41 +DIST http-proxy-agent-7.0.2.tgz 6290 BLAKE2B 014e989d2885ab80be41b7fb476eb28a25b1dca9de7eeef014bc6d9f9d2e40f19609b3987ac1135cd86c6fd101e78a90de6ef365db5b52b1519d10d3a28bc818 SHA512 4f58240226180d6631dd5e419b2bbb1dc7dcbcbee652b4d688ceb239f6b73c8a6156227f8053dbbe2750faf7aa48e1dc8bf3f105c0da6de50d0b3a4e3832598a +DIST http2-wrapper-1.0.3.tgz 16062 BLAKE2B f44ff748f7836829f03c2cf4f3ae67916a5aece2450911b2f0e1d996da95b1dd970b8960ae075847826d5f25fe3f1bdc84dee1ef918c33845585a0282aa030dd SHA512 57edb7b0332bd765a7cfb893703789af73ba008c659ef4ff6e66800003ff5dd6b7e42f74a7de7df69d05d5e1d1fcdd4a20b592a1654088e3058c105769748cc6 +DIST https-proxy-agent-7.0.6.tgz 8998 BLAKE2B 088c9870b8934f6bf97138d76cb3e00fb58322b489d19705e318adfe02db7d21aea3acc09645de30ce7933df48929fa3bafc35cec6fee953a87725b2bc522b75 SHA512 bcaf4fe7f8947dd97de4023e255c94b88715b5de287efb6b3abdc736d336cb10bd6e731b11da77c74d4e8503678dbf082588b7f159531379815f071fbf2c2e4b +DIST husky-9.1.7.tgz 2448 BLAKE2B 47a575c091b820ece69715028a4e91f305f28fb15c47f782c7c3c9e4e349f6ba4e23940a6ef4c89a45d2f0e1fca0ee32223eef633b6a22c2dc83c7e49662738f SHA512 e60b39cad68d8c1ae1e4ec37cebbdd51463ed15c48b9654be22f62aede9fae257e06a7427e6575d4241358c8816161db5e1728f89d641df4ce52478f8420ef30 +DIST iconv-corefoundation-1.1.7.tgz 65652 BLAKE2B ee03a2fd61a47e778f2bdf825fe5f4fd33de9c46d39b48f0347a116fd7f61366c0ac2eaa60f9cf33f739414fad09439b78bd289f3d99703dcc0f82a0b7aba2ce SHA512 4f5d2abe4c34cf3e309e6e7ad253848343e8bd5a945ee3858611c0922c70f3fb32732ed326deeffd1ae410a1109c0c36be23d226eea202412bc67cd1d20f0fa5 +DIST iconv-lite-0.6.3.tgz 190667 BLAKE2B 617c509510af917109b8ee12fafa40924c660a4a9a330ebc8dd9ceace79d571b592dc6eff4427cfc36ac845b8dc10142c275a59ec36504d81770f1be853d2e56 SHA512 e1f0a4efdc2c84c773329dab1f4eaa5ab244e22a25a8b842507f8e8ae22053ef91074fbde0d9432fcd5ab4eec65f9e6e50ab9ea34b711cdb6f13223a0fb59d33 +DIST ieee754-1.2.1.tgz 2886 BLAKE2B 399f6452d11024c58069351de49c96a857f301b554a46081b287df07e239cfe107a068755ed9eb65fbca22adccf950805f24982a92d69467658997018f958e20 SHA512 75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68 +DIST ignore-5.3.2.tgz 15266 BLAKE2B 940b85c0c414484178efc710272d4398ad8fc28bd7f8d19c9d76052660c77786a2f24aa760252acbafc6ce0bd2b9050734666c88d3f377f54431e9752c57901f SHA512 86c053354a904c3c245ad71d608da2d3a63f9d4044b0d10324a8d676280bbde832f240ee2404bcb91969924710a721172f467fa630f2e4706632344227682afa +DIST ignore-7.0.5.tgz 17273 BLAKE2B a9daa68685bd2bc5f5868fdf1d92b3f2eb639e03fc4b17b914d7d596d8a56fa120aa5902cea47caf5f1cd09fee7291656d12e55b7e6589c00fceed59ba65915e SHA512 1ece7dc4135f508ba730581601b197e5cabaf3ddc86d68382a7ae36d8c17dedc74ceda2b5604c303a076b317fc7a31c9e30cfc06a194318967ccd05eaf936f1a +DIST ignore-walk-8.0.0.tgz 4817 BLAKE2B 111945f028b46b60d6c5caa1e1bd70af6b3979e99a18d52cfad50763956d5a8242e8a10221f0266d85bffa539c1070bed4663d4bdc2156bb37b9f7b3e6815c15 SHA512 14278c653e0d89140687e62478a32d5ab3a60605a31e3309dba5905ab450ca8cb3a9ebdd68649a9146895b9c506268cb954564daa5270a361505ac7d10a2a0f0 +DIST immediate-3.0.6.tgz 4905 BLAKE2B d29ca5e5bf91c9876b17cd099d7be18a8168989f02d7445635bd0aa8a6407ff86ec814e1a7c56ed4736a7022e521814a7cc8c484c71c53f1d8759f434f1f0bf1 SHA512 5d7385b72a838cd0c043155f631b85ee0f4897f21b5a69a5420d8c60a387f04c484f5aa0eb1738cf24b71da10401382cd5bb5fcf1ab5e5c894898ee08d25d119 +DIST import-fresh-3.3.0.tgz 2332 BLAKE2B d4d113f1723c02376c9d566ec338e261894cfbc80f5ea1de71434002f0b776ef7f8b03231949d97910f62909381d8eaf0f108e268eaf1100e8bfea7822b766ad SHA512 bde6188506be0f54012b39ef8541f16fc7dac65af0527c6c78301b029e39ec4d302cd8a8d9b3922a78d80e1323f98880abad71acc1a1424f625d593917381033 +DIST import-in-the-middle-1.15.0.tgz 37902 BLAKE2B 4b1674fd70fd0ef705a30d04d95900254feaa18ecdeb98aa71fbd65db4548c7ca8e5fa7d41d41abe8553f4058701328d74a5b5f92deebe3fcf4299197cd30e08 SHA512 6e9432f82aec466626a0f30013fd06df78b046ac16e28baa75183c8e06c7dda2ae0ad39cf25c609985e0d9d30cf760918863faeb412d05cca61ff79552909268 +DIST imurmurhash-0.1.4.tgz 4312 BLAKE2B 39edab907ed97bab9076ea5559df1be323b276a2cb39658b24075ea2ba54c689cd59ab06f50836dbf36a7627b3cb17bb748190a45b7d3e69a04f724776073064 SHA512 2665cc67ac2ebc398b88712697dca4cea3ba97015ba1fd061b822470668435d0910c398c5679f2eece47b0880709b6aad30d8cc8f843aa48535204b62d4d8f1c +DIST indent-string-4.0.0.tgz 2065 BLAKE2B ce830c62c64dfff1752bc7d5171e5cb9385548cce9d86b0a4c1b3feffca8eb33f09528214372af70d684ffb8925171d02bd11882018ae56a3c1864e7cdb16858 SHA512 11d0c366ee00d8ec882bb2ebff6cc6fb0e6399bba4d435419c4c11110bc1ceca412640846d16bc1b153596085871a1890a745689b8c35e5abbefd5f5ff2e71c2 +DIST indexof-0.0.1.tgz 698 BLAKE2B d2ebd4574d0078469f501f46b101e07aa1d55d85be92f36410f94d33c7d2dc041938f80ea7ac0822adbce79ca0cdf966bb24bc36ef4e905a6972c6c0c23a371f SHA512 8b41bb84b275cf40c4f1db2a25adabc9c8fd74198d2a05c1be8b57b596176a453da22bdf07d523d99042dbbaaa79fd94e7cfd92f06a5c5ad57fd10c27641ed56 +DIST inflight-1.0.6.tgz 2041 BLAKE2B a90e535b464618a8e547d1f08180f82f03dceff6da032d81f4fc40ce7d2f525321ac14dcb3a0d25268acc07fdc2fe576962c4bfef0a5d1e6c5d76b204ce9c583 SHA512 93dd88fdbd3cab8c2f16c71708bbea7ec1c2ae3ac5ef2897b10b8856f544ecdf365b7f9aaa9cee51d05b7e159ccbf159477ff82207e532028b3acbcf0eb18224 +DIST inherits-2.0.4.tgz 2030 BLAKE2B 4977cc86cfbf0466b3fa8b29961b0b0595d15d46590accaf360c4f25d916fa8213a6e38637faafe3a7d56775931ff0e6b2493925323b794014bdd755a080cd5a SHA512 93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1 +DIST ini-1.3.8.tgz 3998 BLAKE2B d990321c76f35ea5e8efdb19d1e353b375c9fe87b6bc6dc7575a484d74e2ae62d06299051ab5aae08db0bffe95460d63e5c33f43c660d264c608b3fd801bdf88 SHA512 255ff2ba0576bb35b988c4528990320ed41dfa7c6d5278de2edd1a70d770f7c90a2ebbee455c81f34b6c444384ef2bc65606a5859e913570a61079142812b17b +DIST ini-5.0.0.tgz 4909 BLAKE2B fd4bc2e76504c3b2d7b6ecf9432e26a15613cdeaa2b773c50679caf886fc2f53498677659c9b69210c32c2b9fa69fde431e94d744e355ca19d41f03a084213ca SHA512 f8dd278293b77bb711516389012eeac3421921573a5cfad6e0c94505d0f4eba1762f89352fa91eaf784ba92abb897c54e6d812e161a42141255a7e6fa200049f +DIST ini-6.0.0.tgz 4910 BLAKE2B b0294edff61b735aa33eabafea01992a939f99fccf7f7dc3bc4efbb5e5ccd1fbf141950f533597f900d42f47bb97f9527cb426f28c8f5e2dcce42ae565f2fd5f SHA512 2014dd224cd934ea6a9bbab7751a89bcc6a57578c31d69040dfaf0184413b3979a40c595f9d8c0851fb06a1c8d34c01afaaa5b0d4841315b7864a370a4f9bbc5 +DIST internal-slot-1.1.0.tgz 7836 BLAKE2B ec84381af0245b50bc994e22d3387a44a53f532fedcb51c4f9e833bce227b189d5bfab5f48777451be2d117c148a5353f09a4beb01bc10cd98f9c5e00115c35c SHA512 e2077b56958d40d07850a28214555ca75015bfe14c3a0b3d34ace31cabac73c8d332177978bd4da90a8ea44d0accc76cf34e3fc87960969deec6096e3aa00f2f +DIST ip-address-10.0.1.tgz 36600 BLAKE2B 6650397115a51ed01b1a01683d02116c6a5f179b05bafdcb6b536bf72b6610440415b33e6dac95ee8e44b4ee2663495cfa9fc7875bc070177edc94355cff5bea SHA512 356bfd60b5b83e85b607bc6dcda4b7342a2def99ba9caec871dbf4a3795f31c7895517d2a10c2a0f8c041f9acbc28289c14899feb7e98950619da17414ae07a0 +DIST ip-address-10.1.0.tgz 37185 BLAKE2B db2ffca5e129688e4366ef46ffbd4c9981dcb9bfa22cbcf67b0859d193f35374acba3fb011ee696471a640608bc0878bb46ea2d3686fbecc6d0bc09bfac9c413 SHA512 5d70031f15e6bd3f7e091c615e0e7a2c9a2f13e6e65a711607bf0b07cdd5653a6b29399a0b941faee5e8731cd36762a5d033702ae05d9488632fc2de63c49ff1 +DIST is-array-buffer-3.0.5.tgz 6323 BLAKE2B c70130e1403915c81707c20ddf3f81b8250a31b2ccd6e12937255f0f2c8e42369e5409ec6bebec4179735983de480c910420a8d67c92ab4071a2c81ba862e0e9 SHA512 0c37c03548a21b6c02d6a6b03faeaa953ba025e2f91f2ccca5fafc94b2be8cc422ac6ccda1dd01d7670507ff6af37f11bb6eec0707f0efcfeb76853b444473e8 +DIST is-arrayish-0.2.1.tgz 2646 BLAKE2B d2e5b8368cc3fe2132e7db87096deed52b471802cd4ae75474cdf88a40290a90a5a4591daf782bc91a5ece90278f20902235778b09d5e4fb52ac4b07a1a26a8c SHA512 cf3d3a4bcb74a33a035cc1beb9b7b6eb37824cd5dc2883c96498bc841ac5e227422e6b38086f50b4aeea065d5ba22e4e0f31698ecc1be493e61c26cca63698ce +DIST is-async-function-2.1.1.tgz 8157 BLAKE2B 6b725c40847b15d454c744c8cdbf6ed1bfafc6350aa02baca0ff93f6a6304480ddd9a6a0fdb73827cd2a8ec11f48008323e9989b3fe73f382c5444e2332fd7e9 SHA512 f5d80cfdc6419cdbe3cda3181d5a31c5f3e3d905eddb612fed2bae3ebb3ec5abf4ba4181d12e9de3275974488ce3c90bc7990357e4013eba559c5c9e7cbf2491 +DIST is-bigint-1.1.0.tgz 6689 BLAKE2B 80b502c07f4d3db14d787468a19f4f28d8d0aa9ee4adbf1c9180947dbd2fb245a6f48df71da4ce47c64d89929ddf4af9ca7703cfe97395bb5fabb2ac2e092cfd SHA512 9f8653dfbc06efc8b3d37c4f44a26b1d37596dedc889ccae704b5d46c579ca09707371b251f6c07e949e0f4149e3535b50d4ade706e1a9fa757d2f81827bc315 +DIST is-boolean-object-1.2.2.tgz 9108 BLAKE2B d7d82710b868630a1999223414e2a5ca66c6b64dde93949eb29af9820efc86cf9768f6f1602f99c3c6ebaf0f977eb7c9ef92a8ee16a054925c46e835ac308ead SHA512 c1ae7aa36fc4949318aa30a31a45eb8bb8ade456de6d6e6eb0bc3f9cf98232ce43799edece24986614a63d19f4b71a9e5b82e702641053b160a8ba6c10528ce0 +DIST is-builtin-module-3.2.1.tgz 1961 BLAKE2B 82aed1839611030ba9c7431ec845709ffe9026b243b4b56efe11bd9570ebe8f64f978ebf7d8da13af5d737281d90f478b5e341910e615e2c29c17e41af251900 SHA512 0522c4dc79d5dacc99d052b488c03fc941a995478c98dcf8016e5f9d3ba76c222a662e2f1b75a3253f451cccb90faf719806011d742125d00b769c15c55e74d4 +DIST is-callable-1.2.7.tgz 9896 BLAKE2B ddeb426ec90c2fd0c45c329b6d70b1cca1d9cf4cd78bd1c59ee449282f383f0596f22aae5c1acf11f9488527c5a30cae161946aedaaade5f4e4d1d8814d372f5 SHA512 d410b40551614bfa74aadc3a7a7a7c7bef0e0f452b2b4a052f3b528cdce170a037583b89c7100f5f33ee3ed2a48c463d514a045a55fff1f80a7aed92f22f494c +DIST is-core-module-2.16.1.tgz 10079 BLAKE2B 17d8e4803c1a97367bb2fc324f28e05412564457658a723393743412f366b2b057760cf231adc41bfac528c46212504dfea55797458a15b4c793d9e4ef0e1fc0 SHA512 51fa1e300e9f209f304d81445237a59da188ebbbfaf8deea5c912f42e2066bdf65e31b02aee498395490d2e3c0367e1d0339bc96460f68a2ebae28cbabbc76df +DIST is-data-view-1.0.2.tgz 5343 BLAKE2B ccd8d51c13a31a96f3d82ff46c4337214dafb82a0e25bb7cf0d6f260352b12532d445c2f77b98a03264de327c3f84b8cc5d2afbb3fa34943398116bcbe9a49f0 SHA512 44ab5617ca46992f3b8b60fa82a42efe5ec461195575fcde98224dfcfdd43acfffc75404ee67e1bf31c802905345fedac6f4fa0cc1b04b00576024f49df07dc7 +DIST is-date-object-1.1.0.tgz 8567 BLAKE2B 35fdc2bb26fb62ac004573cfce7ba3d71eda92ce39f192eca7a517f18ffffd121dada688b11d4ca8e2f13f84436a768d4a0385b1861a444bc11d814a8e2c3ccc SHA512 3f0c2111a90754a4dd44d54ec3efc6ca1d3e33394297847aa8abe486ebcbb4f320808d56007b7db0ec19c502d21a951a0e7addc83b289a846036709f28d4975e +DIST is-docker-2.2.1.tgz 1689 BLAKE2B a253f975c7f7b444ddcadde77848b30baa383336501334e9588946b46beb155989b140714f178c322b26061611ab917aec80160b1e1cf960c65afa54668b04e9 SHA512 17e8b604ab05ac7eba89a505734c280fcb0bcbc81eb64c13c2d3818efb39e82c780a024378a41ea9fcfcc0062249bf093a9ad68471f9a7becf6e6602bef52e5d +DIST is-extglob-2.1.1.tgz 2663 BLAKE2B 61ba1afa0040fadd8c2a7faf79063b5ef53fbc54a7e57f6536fbedeaba8e8d37be60842e448309e88eb65b487eb5eae70be8e1cd0c28c4eb379506d2057de6b9 SHA512 49b29b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1 +DIST is-finalizationregistry-1.1.1.tgz 6315 BLAKE2B a1572635f465ce0bbb14e8e5c3be1ba61b978038ed657a5077019db4186ab830bfa6e6faab2b3de693679a990ae5244833f317f9ca095b3db78132e12864dca2 SHA512 d690ba37ca9625b5a83ed12381c2f6c7285038fe3dd44423794a37a9329c995f184830c9ace7a97c6f29702ee1fd0827407612bf4989dd9fd95b199ab55af2b2 +DIST is-fullwidth-code-point-3.0.0.tgz 2169 BLAKE2B 3b40a71a06a3d46a66b1f99a17f5675a9bb33828e8304fd33395f7923321df573d4daa35ff9b170eb2274dede84906ee12276110d2df5b281359010f3c1ad5d9 SHA512 cf29a6e7ebbeb02b125b20fda8d69e8d5dc316f84229c94a762cd868952e1c0f3744b8dbee74ae1a775d0871afd2193e298ec130096c59e2b851e83a115e9742 +DIST is-fullwidth-code-point-5.1.0.tgz 1679 BLAKE2B b5aa5a61466ac8cf0373977bda86fc4ae350b51f58aa54956b9503ea93fec1574d1f6a4b64a38f7a114fab1eb67eb6da28416ab5a9bb72cd9667e0ee561ce9f4 SHA512 e571d8692ca2a800dbe119d9d4175a77a70fa7c4e88ac7b84f312370e6031d991309b2a089497b593502a4d587bb1983b7dd709ec64173dc629cdce8a6fdc931 +DIST is-generator-function-1.1.2.tgz 11594 BLAKE2B 76c532c9f33c022aa0e4bfe5c4f1faa9ee51b061dffd958532fda42c43285defdfad7a5d60b5f4b0c661a5c30ecc29ea028273d549de78c17a5c0c10ec4db96a SHA512 ba9aadd5290690e0d6f6db06346e66b574d7b440a2cf0b52da4035eb533e8093dcd7175bfc0c7adbd69fe98ad3c1c39e4076dec2b3cd944e43c7b933bd74e2cc +DIST is-glob-4.0.3.tgz 4255 BLAKE2B c90396b2160b7a9a0331e92b58b3b6daeb2613dbe56948f6ea592ddfa18d68c3eb1871aea6eb06ebeebba15025a9aea0f8ab384f87e3a20f8521996a0c7803cc SHA512 c5e9526b21c7dfa66013b6568658bba56df884d6cd97c3a3bf92959a4243e2105d0f7b61f137e4f6f61ab0b33e99758e6611648197f184b4a7af046be1e9524a +DIST is-interactive-1.0.0.tgz 2412 BLAKE2B be10cec285eb8a4a155e9a0b3f41bae521fb4ea680dce415ee9b684aa4d92a43d59953e899b753bee4385c276e482200eaad3fc25b75f71a5b5c99a713f38f35 SHA512 d87bc810a468a92eb682e102faa063a6f46e6dd5fdd7458232e25367e23dcafa8a536ff5d9e48be78f47330b5a6dbe28ba9763dac30fe7493e5c97c1ffc244eb +DIST is-map-2.0.3.tgz 7928 BLAKE2B 34398fb761ae5d476a974bd8380842bc886498fb04753bdd436263dacb3cc60d9f6416f09e7e19b85a1daadf10eea9fd39b9ac9359e5edb3343023a2d9035406 SHA512 d5079dd3f1ebda6f98ab19ccd3d0a303677f8ba61935f17a476a1100e8f7e9e51d4baa8857f86e3c935212929bba97b016cf99b09971b238cf6dcd3f69f5ba2f +DIST is-negative-zero-2.0.3.tgz 9383 BLAKE2B bf444769f4992ef9d40d2d406bee2c25d51382be44d60da153df0a62ee034ef8ac8e0bf02ab62199b597c63461645fb192e03b2a45af8ff372a19c53909382bd SHA512 e4aa08bb6360a727a4ef98d7a1d16f9da7c1e83260af7bbcbae2b42c46498eb535f43acc0f7115111691f2c8f3f0208682966fc4f97d4ae13518c54f147c759b +DIST is-number-7.0.0.tgz 3730 BLAKE2B b95bcfd9d5eba614ad3832e0af829e63b440a560ec6d1a2f4021869a8d3c913c591c80b633f835f4bab52e711bbe8682275cdbadadc3c1a5dce20e25a4ef7fb6 SHA512 e350a27e483a7bc4f2952a5db53a5e2d532abd20445734edb47bc4443ef8d7ea6767c00dbf4d34e0c44be3740a3c394af5c1af369e8d6566540656c65d8c719e +DIST is-number-object-1.1.1.tgz 8796 BLAKE2B 46093fcf3f4801105b998b0bc9dab1bcdfb99279a7a205c8e85e93246ff2cc428482b11646e7f068c0321661efcb3188a03cfa6c2b2f243e3658df04bc6da824 SHA512 95985c96e984d46e95603f151dedf9c0568889ff824f2e522488b9fb7cb8a6c0e05aee303c3a01845f0dc543a29c473ba478224ec4fa31a05bf76aca8610fe5f +DIST is-path-inside-3.0.3.tgz 1996 BLAKE2B 786f4cdf1863c7dbb03aeb724ce7fd19ad79c3eb6297d801a90b86838d10c9db9a69c50284894e203dacc9ec1448d44ef26fe6d23fa3af5d48b7000a05e247ef SHA512 15de200016fec9c18098aa2ef1e31fb42ba94a2af9951c6a7f8683fef774703daa7381cbd3b3a309eb8732bf11a380a831a782283074fc40813955a34f052f3d +DIST is-regex-1.2.1.tgz 12196 BLAKE2B 593ed08132c17f4ac19b6b0019f92b73b906fcb54b55c99a422054a8b06d21b382f294931e1368dc19f53362e8ff8fa7ac6c9abdeb06795c6f7cd5938d560eaa SHA512 32362c2873b93bb982b26446c5670b5a1785a8df4327fd939a782f8ca5e285ee9e7d588fa9cdbbe3e171ff87d88ffaf4dfe112bc17535cad15ead037ae07b3d6 +DIST is-set-2.0.3.tgz 7653 BLAKE2B d750a498a45bce4d2985f5ad84188a947156a5fec8e50e6f2a2144cc4e2fa83b19f0004e1986c9a327644d3166f56489f8b70d4bdeeecc7c11925e1fe6e58b01 SHA512 88f0237abaec7b6effca018bc70f84051f5a82ff58eae2de61524cbbe40d0a8a2e275ff5ae2d261ab716a5f0aa159bb3cf1dd68edc311b4f7c5fe9f83ae4643e +DIST is-shared-array-buffer-1.0.4.tgz 6324 BLAKE2B ac271f46369661c56c540d6e26a1c116ce56b0207f1ef8dad965cd05307a41efe8d6770374d8ad602734c07ac1371f5beb99a559e5b845b7325a2396dbc4fe6f SHA512 21259a73c76bbf86467f02a5e6c9691c6f4ec0f36dcb88ce58f448841a713a80fe86a2138b0ba2a4e4366cdb61033c00dc1e1f2233b83659fbe0dd12f5bcaaf0 +DIST is-string-1.1.1.tgz 8542 BLAKE2B 21041e5649e9b77683f96ce38b5c76d743fb23c537dd3cddb8475d3d3efbd11b750aa22441c3496c5de6934ca853d3ec2c5480bd97395323080c2d84d8dae9e4 SHA512 06d11e4aca1a4239523c17a631022b635318d2e33abe74b58397e6b9f60eb67c4b19464cdb5efc3ca6e1b24ec57efe7c217f99b5cbe81b071c62c8743e096400 +DIST is-symbol-1.1.1.tgz 9572 BLAKE2B 431b9617715216e9fd5dbd64b7d5f767dde6d3bc58738d2fb337746e0ee72a8017e3927cc1c79c85016895ab8d84b442fe4bbdec08f588f38b1a8111f17a81fa SHA512 f601b1e864ed09033bdc18261d05df0e62ed7e38d35034b2a314c26e9e56b688b10217e0b038ab58871543f207a6f2395607798bf27917b07d70dfd69556c2ff +DIST is-typed-array-1.1.15.tgz 7454 BLAKE2B 0de95b5e7414af65019255ab73216d208e21731e56d19853c51ba80b6b9c3069c169f0a46e857dee6d398dd0717d97181b04a830af150c9207afa1f156b737d0 SHA512 a7711cb227178e2b7b49ab245c7b35840f75431813c38e85bfa10528a192e434452c3f322a7a218c5de1c688eef786ff39c319a10ba4ce93e9044f6e2d52b381 +DIST is-unicode-supported-0.1.0.tgz 1882 BLAKE2B 67b523e7d94fbb7eb85c61d1464ea956a70ffcb174832cd324e1627796d0d4b330fe4e88581157570118f9787b4cc1f5f7da84938131d882b23d444c27efa6e1 SHA512 927c46daae140b7bbcb2d446c8054908e771166bf90d989171d94868041701b49f2726be3a1a29368b4b42bb2d061aaeaaee19a6e29b0dcffc4ba9a05e03c53f +DIST is-weakmap-2.0.2.tgz 7794 BLAKE2B d3f6c5a1f26fe9712342456ea632d2dfafdf35ec5893ecccfdb5af816e9cde9313f6819e9b163f20e38c7a7af4c5ed03a1b1499f547957ea038defe66d8003ad SHA512 2b9a5760e9bdc2a6354608e92f7613905dfdb678b55da8d42246b04cb528f446445541606b981240917c9cd4bb670250d36cbed5808d61c321f8721fd59a84fb +DIST is-weakref-1.1.1.tgz 6265 BLAKE2B 49b11d8f86614a3ebb35d9b5cc1a553500fa9afd5b801eeeac30abe9ef267b871e6841ad19d664070aa20ba3b023ea08f122bf48fef3ad51c3d612d36c5d98ee SHA512 ea2f661964a5ab334c12aa42a7ddcac114b5b943a8764d8e27a6feb2aed93c34b2d96b88e4d148c69ff6e784f2b51f1fb5e7dec645a7e713621d43693ce7d27b +DIST is-weakset-2.0.4.tgz 7471 BLAKE2B 0f744ceb54f0566cdad2cc20200c6d1fbcf76066483ba165c390c321d7de77f603b5091fdc4773c8f841ed5668212323ec752b4a457da15e784bb72ba205b120 SHA512 99f7306fa23343238a4ecf3809032b3b05b881071a4ce016274cf32429765923c3ad693f3b30da2265851f77635e16f6e20e1eb9d65f2d1a3302f3c6c3877d85 +DIST is-wsl-2.2.0.tgz 2011 BLAKE2B 129eaf565327a54ff29ed3e18e45a33c4b1ddf7530749e601e546a373aa081f7cdfd7a4fb0161d0c59300e9bac0997a610f759021098749550b11dab50fbdcaf SHA512 7cacc0adad2b18951407018180d90766e4e865c9fe4ed5c7a5e0a09a430930c631d6c40361a092ca32414826b69c7d431a6eecde7d68067a21a154c168decbc3 +DIST isarray-1.0.0.tgz 2021 BLAKE2B b94a6c780d6bb48089ff75d0d7aab59fd5a76a48b0d2134f6a71b8cde6075105a39786bba581d0fc14e6d1e2cb31a556547d2124d4fa2e49a516529c6316b65f SHA512 54b82121634ce842d0ce8ef3c26720d0d99357258a623bc878cf37ca3a74c110d39949eb33aefc7d06dc281a3a9f6089105d2cce81bfff2b60f932a56bcf402d +DIST isarray-2.0.5.tgz 1859 BLAKE2B dbf817564e3cbeb3521749880ca07a70fe28331259b51d36cb7bf5b5cb8f4eb114e2356872298656687a1abe3707c295912d37fc860fcf786a5ccfb719f948d5 SHA512 c478e10ebddc3412b40737542523d7667b50531fe6c0c4b9470e00ee53c9f745c600ee8848ffde3c336ea34be1a8e654f940f9268a1dc02000a1941ddc57802b +DIST isbinaryfile-4.0.10.tgz 4387 BLAKE2B fd94b2084036b90a50e3b39f8704b23d1b3f457f00ea200a7998cd27588e23e0a79e10939cbf186fcb4f5f3f8fb3db25de4fc243a88fc2764ec88eaa22fe37ee SHA512 887aea7b9b21bc151c15b999abdcce40706878e85926ee91406ac3a4181e9d49bf026f85dc9336320423fab2b767ad357f3acbe602d95ad00f1f638169255ccb +DIST isbinaryfile-5.0.4.tgz 4170 BLAKE2B 51cc8557022cad09b3319c07bf0ecd75b454d2bf5945b613ebbde7f23d9bba02fb1b2a7886c9bd48373246122c3ce3f63455d91b702fe8254f7cdf4d11304672 SHA512 60a04a5642a1b72eecf2bc5d75be34a0e92e3f435b69e5eb42f2e29fa40c1cbed8a62cb6456f4bc0e56b560651c8eae14256b231df6df83f320f2f0c2854d20d +DIST isexe-2.0.0.tgz 3756 BLAKE2B ebe0a418451a5b6d743fd139d3452625eb581c419516b707171721959220d82747a526f589d2b7b143e6d18bbf19834dc319a5c0f455415122d3196c39e2f5aa SHA512 447c4c2e9f659ca1c61d19e0f5016144231b600715a67ebdb2648672addfdfac638155564e18f8aaa2db4cb96aed2b23f01f9f210d44b8210623694ab3241e23 +DIST isexe-3.1.1.tgz 7288 BLAKE2B 624f5843da84d1fa7393febc8978f6d988f9d73ff7da3951f30c3da0e6475ffd4277278af3136d8ef4b55769171e3b039df594cd8d46d190bd5149d14df2769b SHA512 2e907fe7807eff627986a43b8a66477dd537d4e96042ac7b6627159649bd93383dff0f0628b11c15f265fedec30840ee78ec81003eb3082c133ba173b3436811 +DIST jackspeak-3.4.3.tgz 61399 BLAKE2B 7764089a886142d7477352ee3df8b989930a7f3108b9fa8763d1c0bc4f567102ea31eeadc9912cbfdafb595d50db6e28c2fa2e6bd76a04dd4651d4647068a52b SHA512 386959429cf6c9f6a103f45dd58f0277d48812caaf5e42d5a12c3f720c219e114c0dbb1015e658a0927b6c86414bd05c6a6516f7a6acabf9e93d6ba033e45007 +DIST jackspeak-4.1.1.tgz 61883 BLAKE2B c4fea18006d4be19844b553da15a473f4805b4c688419f1e98e363f4d94695413ba20632a123c13c90b60115fcc0076035ed0142e2923749962aa58b8835f652 SHA512 ce9b6fe7b3f71a92fe3b423b55d309341642bbe04f1d5414939e45b7cfd00898d3571ae7247b95b97ff4065d80ebffb6a3247f64c12e14ac26ceaa99fd4e673d +DIST jake-10.9.2.tgz 40697 BLAKE2B 605b75a6b1b7d391e4a2bf327dc6f26a04bc741aaa30ada5f1e78aa7db16b0dec42023b839c46713c48498a3c73abff74f2948131b70863533bd90afd5c45a2c SHA512 d8fe124341eb2d0f9fc3a965a4b9ce68602f37666eebbefc48932b094c27b387cea06f5acab4e2664dd557cb023e455917c69bd3392c5694bc143639a5108d04 +DIST jiti-2.4.2.tgz 460976 BLAKE2B 795c7ff64658279e203fe995128cb93c5d94387e58a2b494b9c0efe609320dc1fd175f5d2ff155b9b5522f0f02e0e0653fd4735b57ba65702f9a5e2415935e13 SHA512 ae0f7324df86e27da77c9979316dc13328195f9eb328f35511862aabb69da66321e099f640d13086f425172ea33d575ca1deedc59b4a1d69f26620376b4ccfec +DIST jiti-2.6.1.tgz 412412 BLAKE2B b5f417ed7db881b9f6e292eb11b13d77b054ba88cb3c821a0c5f41fcce498f03c0cfde77e0b65a8b0fbf22c9770ed4fc8b3d39a4841dccafec90597963907389 SHA512 7a48a50923758f046f21b81e83fe7b60587ca900cd6f00dbf714ffaaed830076c5159522708978ca055a02fcef78c84c56bdcb9e948a4cd9f0b7c3e839f98a85 +DIST js-tokens-4.0.0.tgz 6542 BLAKE2B 0102d6bf3eb4392fcd8cb54aa1acdaa8f43f467e469ca848d8661f06c56517b735c9331d27517b69e62c43a61334c73b32f67de5dfdd803da7c4a7154b719a9e SHA512 45d2547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29 +DIST js-yaml-4.1.0.tgz 102356 BLAKE2B cf2ba9ce80f22562d189f950c1a4f07452984e1dc8619d571b89aa829a425f5962e04b120a875f692eb5cb7144d3b938771fc072f7e774fdd2b8807907610a7d SHA512 c29c59b3d368c596891122462194f20c4698a65d0529203e141f5a262c9e98a84cc24c5083ade1e13d4a2605061e94ea3c33517269982ee82b46326506d5af44 +DIST js-yaml-4.1.1.tgz 95174 BLAKE2B 3822e7df1daaeee817e5ba96698cbb3bc4be406c513a2b9594b01174871dd2fb1794b7f1c69d3dd2a370f4976c8bb0282635262c0266ac9bc57ae38d88ff30fc SHA512 a90293e334315e5f252f006d1cc5b06937067c5399be23897addcecbfc661a4da0647ebbec224cf44bed7dd4a48167004d9863ff9e49674ae6cb79b2093e65b0 +DIST jsesc-0.5.0.tgz 9165 BLAKE2B 8745bbee8d8dcfb773bc37fdb3d2710abef4008c715c5efa8e0c7fd8792a74381397a3ee549508f13d99efc4972af2cf188935062bde36609609934cb7199e1b SHA512 b99cf952707bbb84fd2efc2616a5e28bba594a8b9a44fa2b1ace70868d48a7b54ed30c5a9c5bc12fb1a433a7531e5817fa384102945eb5a5a99c369b39e4dc9c +DIST jsesc-3.1.0.tgz 10038 BLAKE2B 40e41e69c9c93ae4a9bc89fd5eb4d005a3bd411f57a2df5f5016cf2bbed4406361f48b5c33b4e6b18235fa6db1cb7ce340cf1c0036f969585b1208393f8441f3 SHA512 fec33774ed853b35e3290849ba8d10d7bdf07f628ea3cb7823cbc7cba945f69a14a7b6ca4f4fcd1c4f1f3d7db73f07e19f291faa70b6c51c4e9d5c395ee18868 +DIST json-buffer-3.0.1.tgz 2618 BLAKE2B a8a1befced10a55433aa594f94e14f4ebba40e6a330bfede7feabcf943277eff17f4a987025aae3a66a5632f49196b687993146ebbf80b4b1c315c81429f30d4 SHA512 e1b57905f4769aa7d04c99be579b4f3dd7fe669ba1888bd3b8007983c91cad7399a534ff430c15456072c17d68cebea512e3dd6c7c70689966f46ea6236b1f49 +DIST json-parse-even-better-errors-2.3.1.tgz 4553 BLAKE2B c8d44555b8c10b4b064fdfcd05b0de9e01add09fd1166a358f53fc23a7ae848337910f64bd6f366c7064b4603e3d8639557db68b877c2c605698940b3ff3aecb SHA512 c72170ca1ae8fc91287fa1a17b68b3d8d717a23dac96836c5abfd7b044432bfa223c27da36197938d7e9fa341d01945043420958dcc7f7321917b962f75921db +DIST json-parse-even-better-errors-4.0.0.tgz 4483 BLAKE2B 84dcba8b25fe87940a21ed94281aa5d0e11c70547a3e1fd3cce3b730549e8ddcc02fadc9e8403420b23cb54357238450dfbfee578dd72959fd93bc85cda408b9 SHA512 951e0c5e318d82425ceed910f7b91bda7b84327342c94fff5d8547d0c29319c5c4892b9d43930a18a7a7dc2e50b9b632d2f9aaf891a2b5483ddaebb2c0613020 +DIST json-parse-even-better-errors-5.0.0.tgz 4485 BLAKE2B d12f77722eea8207005666692b27a90a759ac94b67200162f6de909a7d67f19bff99b817f2cc7fbedbe5573afb9d497fd54f71be19489fbe6c061c48fd3540e0 SHA512 645d67c59dbc561428b915a151c565508377ab04a03eeb302b4e6cfc721aa1eb40a04ffdb678159821e34b199240f6afd6777e94fb532f4619ff6005751fe261 +DIST json-schema-traverse-0.4.1.tgz 5141 BLAKE2B e18ca508f8daf705135ac86809321091e1a1c19ecadfb4fba23a82812d0fbfa3e3a9b854cbd1059b193f1ca080e6e2ac77085eee113fe694c45a0d6efd574b05 SHA512 c5b6c21f9742614e53f0b704861ba1ec727cf075ee5b7aac237634cce64529f6441dca5688753f271ce4eb6f41aec69bfe63221d0b62f7030ffbce3944f7b756 +DIST json-schema-traverse-1.0.0.tgz 6074 BLAKE2B 55c8f856f5771be25072c0734149bd0d8f06e13dd66e1fd8846baca028ec041f3f534e778373573aef1bd53c2af1e43bd47ccbd0c096626ec37d224657d3c2bc SHA512 34cf3f3fd9f75e35e12199f594b86415a0024ce5114178d6855e0103f4673aff31be0aadaa9017f483b89914314b1d51968e2dab37aa6f4b0e96bb9a3b2dddba +DIST json-schema-typed-8.0.1.tgz 38947 BLAKE2B 7da55e3e6833a8dc96389fe0f77822c6836b7bca814c3b7ff622550e0995d7946587b7f40f023dc2242b74094c1c79ac8ee746bc63e3a8d108c5dc6997a656c1 SHA512 5d0996623d929b8927e1679362f9a92846f23ec2fb9c1b1beb8edcee931eea5d36ff2c76f897dce1d4fa5199045e72146f92e10f9e6bd873ec2759a2950e2b0e +DIST json-stable-stringify-1.3.0.tgz 11822 BLAKE2B 42492d4112405814b30fada9a47799674fa33982b7737bbe1f2b20fb724b06cb2f4d1022467edcc1240ebc0cc511b84b020c001c4f08838eb1d6ac3ebb3d8de0 SHA512 aad622492165c28b7d5c7b45f5b0fd73baf02a3afe45e7164fffd99cfbd29848e95799a63ce08de23f148d8e616e33643b067f8d0bf727a475fe92fb47080cb2 +DIST json-stable-stringify-without-jsonify-1.0.1.tgz 4621 BLAKE2B d75b65bf5325233ea37df1a6024a8c277bbff76eb795248349c933c946c0b2cc3b6511a105554c3fb96ae48771c934eac2d71ff4e5fc9fa2a99f23ecbc1fdab3 SHA512 05d6e8cbe97bb40dce196e858f21475a43f92ee0728f54e4df72e3caad1ac72cdd93dfff2528b6bb77cfd504a677528dc2ae9538a606940bbcec28ac562afa3f +DIST json-stringify-safe-5.0.1.tgz 4014 BLAKE2B a0b4dca543e6240c72ea7f2e7a8ad4b3c29bae002cabfecd764130f1801b5abb39e05459a98d9991e5e0bb2fdfafa26b1f1bc0132371ca427da49fb07c77a509 SHA512 642960e80698bda9af60413cd9ddc8c9ddef49222343ea1d823693cd1b8edeceeda0274529cce86f68b4cc287b244f245a7d7bcaf016854571bea1b051a96c44 +DIST json5-1.0.2.tgz 22200 BLAKE2B 9aed8223cca27818791af63571ad2f5395a2b120bb5a55200d841d811b53a836931f7eee724f36aa2c589a78f344f502ca173c8f966d6c9ed64754fc6f41ca2a SHA512 83531630b062cfc14a8b57b8c3453254bdf0fa225c7960050406819e718a3a935ae5ff132e4b646eb7b5facea8202c9d5809be1d15064e623efffc6fda1bd760 +DIST json5-2.2.3.tgz 50318 BLAKE2B d9c5dd846478b08229b373d4b86c218f336f30e3985eaa7f337c2fa17dc6408551d42dc2f3993188dfe621043e05ab4ae8567a5507c1eb62d688a28dc4513840 SHA512 5e63967bb7b21d81f5e1c2dd54fa3283e18e1f7ad85fef8aa73af2949c125bdf2ddcd93e53c5ce97c15628e830b7375bf255c67facd8c035337873167f16acca +DIST jsonfile-4.0.0.tgz 5266 BLAKE2B ac02791e723c7d6ba27b7394ae232f6bf48b1e8f107607c7b72afcc78fd79597effea9f85eb3e8ac58ccda846077e9ee3d2ae4c639a0e9f5be780717737b3519 SHA512 9ba175477cfc8e395fda29901d2d907b3e6c8ca590cdbbae86e27f14a605459bcf1373ee1dc48c559cdfb0b84654e91f776d286cbe5258405ec394a196ab8dc6 +DIST jsonfile-6.1.0.tgz 5816 BLAKE2B 109bc4287a33bcbb1bdf7038605c516394a128a93a716289894b452557e3b06195b3f97e46bbd241c6699999fba9f5a0c76ae53390f212999e8b95a06a6de07a SHA512 e5d8277563ab8984a6e5c9d86893616a52cd0ca3aa170c8307faebd44f59b067221af28fb3c476c5818269cb9fdf3e8ad58283cf5f367ddf9f637727de932a5d +DIST jsonify-0.0.1.tgz 7449 BLAKE2B eeb6a20284feaf75ac246c728716d5cc9dcb282a04debdcd4d2bb191a975b2791ec7a75def72d477694cdfd3ee5fb43d7d0f87bc7305ad111bc2bee99ff92961 SHA512 dbf2a2d06726baa4ab805c9e950abd334e72ecf4b4984c2e233adfddfd5f3ea9150d546f66b3d9b5548c1f1760a3c02ad2cc4039bfdcaf66aaa80dcb7961d53e +DIST jsonparse-1.3.1.tgz 8550 BLAKE2B 82ab0aab66268eff308804fd5842deb621036460dc38b7d9571ef846a38558447370187f310d21112efcf4b24e5379bc166e89506942442813a8d968e0dc3a27 SHA512 3ce417be974bebdf8296e62c8a5949ed25212afcad6235bdbc6fc62a99dffb13fc51681810cfd168ccc71e87db00b0e229b6cfd56f141189a01a5dfd5a43d9b2 +DIST jszip-3.10.1.tgz 195083 BLAKE2B c6f926d8ab0c7df452790c0e99ef2794ce337e1abc4e47b497fd589f4dfdf7e4b5f36a595f4726ffbf7dd040c2be11b7477bd918ac0964db92c33f0b213ea9e0 SHA512 c570ef79cc93a462eba85aef92b512a31c5f248e401fb53ccf1c6d55c969b14b4c0aae09436f742d8f005b973b1a09ebfd8fe82be6d031ba8adaa9ad937a4de2 +DIST keytar-forked-7.10.0.tgz 9434 BLAKE2B 337d8756d21919fcafc61459532b0dd9ec8326b37c458731f68a3514f7a8c54371a6fbeef34f65127ba5ada8e2d8f4ce7a02ef84bc33f7790041fbcd459f1085 SHA512 32b1f721ddc18dfe1abf7cc68a104aeb636e72004e55b4f37219d244fb40d78b16463f71bbbae815af4d75d9710ba36df7c11dad0a6ed383195e7baeb15f9be7 +DIST keyv-4.5.4.tgz 8620 BLAKE2B c46a868b228e5363a091fc21e521bc00ac33b4e5c3ee68365c96c99e74d64f037be61f94e0c5be7d708833612cb85a49afb57a1ca9641c0ab98dea076040527f SHA512 a3154790747f1097f608d5e75b144b5ba9a0ec9c82094706d03b441a62f672d528d4f3538a7d4f52297eafffb8af93295600bf7e7d648ecc7b9a34ae8caa88a7 +DIST klaw-sync-6.0.0.tgz 4330 BLAKE2B 584243c54d16d2be6878597be3cca94f3ab3dbc91e651605226f9face8592f0dc39528c3b29d0a70190c1e6ec7280f07a9f8a9999b5f6f24212212ebe6adda57 SHA512 9c87ae552cdd082b3a4c33d3a88f30d58adedf8b12abb024678077b1f3816c8d82815481e03bb868b4228c5536fa5840142c2df7ee361de97a950348bfa027b5 +DIST knip-5.69.0.tgz 246954 BLAKE2B 62bfd20b2619f50deece5e79d5f27cce13bc8e7428b1fd630e814809256fbc6128362c6ec05c273ca21cf84dd2d72138447c0e6131516ad1626d5980e00d868c SHA512 6891d0211f900b75d49f0a21a86bf24f456276f28e0fc59893891f2ebe682a7407fcfd3a8d8eab1ff1ccae2c0f9afac05aab86576bcac8bbfa5e00bf1a8958b7 +DIST knip-5.70.2.tgz 250116 BLAKE2B 5b8b384f5fe76811fae0831b24ecf7b08cedb7679f95d311a8591cbd87c72c8ffb35c7f2272da97f4881812fee47fc0aa4c1bd4adca40cc5cff115af7b6c4773 SHA512 2c8ec36de56793b87df8501eb792b3cc735d0f0272a836b6f9c9f8b907d96137e9b958c4aad1a6603f6be5bf4912e3ace1e5647ffeecb24361597c442e6dc2fd +DIST lazy-val-1.0.5.tgz 1182 BLAKE2B 37e5f863b9c55ea33ca194276b150b0c158ef89227ab1505106eb2b717dad793393dc51ce966a31f8394708875f56ba1687e32882902bfc1c76701fbdd3101ae SHA512 d3f06718209fc943240697838168a16a720017d2666611c1814844ab3bdff9a7613462e83fa4da888e6817ca326f7238e4ff8f727aea8a149fd353349741b9f9 +DIST levn-0.4.1.tgz 7465 BLAKE2B 95cac2d9df79d23df7c426492010bcaee85536b9b2b563772b9370b8dcee5ec1d8b3df3d07d9269baeff89b0c540e6e6d6a30306e53f9563837577b88b5b1dc1 SHA512 f9b4f6b87e04e4b184ee1fe7ddebdc4bfb109495c2a48a7aca6f0e589e5e57afbaec3b2a97f2da693eea24102ddabcdfa1aff94011818710e2c7574cb7691029 +DIST lie-3.3.0.tgz 8877 BLAKE2B ea5eda969f86b9df6d0529fb736f5c2aaea5aaf3b6fc5a8caa2095fe8b2274d6ef1cec516c331e96e8196428786494d0a352df96dd972b009fbbd215ede5f2a7 SHA512 51a88c27379646512e8f302ec392e8918d4be5e70d41864a7e6c99f4bef00c76ffa797ad29ac5786884172bc341186f2f86fcd039daf452378377f5dc47008c1 +DIST lines-and-columns-1.2.4.tgz 2270 BLAKE2B e7f4fbafd625fe9d73380347207d1878feaf5228538f8d28498e0f1a8cfb2d5fc1276aecd96cc25042285a454d66a561a67d2dec91ef51519e4b39b3e55cd8fc SHA512 ef297295eb1943f3d5dbd8e110397751f8e8e995fb802a89af917b3caaea73ddefedfcd2ca6b75069c0453c9c0517b3cab3cefaa16e384ae50660e8cb7f1e406 +DIST lint-staged-16.2.6.tgz 44362 BLAKE2B 4380fc55164951c4755717e728549da0a3e36832d858192410ca53a39b9cb3d44895d019cabd8e7a60bee2ce6e03dc24563f30be3426977a4328a53bb3d1ccae SHA512 b3582986d0db5786e65b57b2957a55324daeee2b3b62cacb97c873aedbc2ef487807285c30b645634d45c74e5950336ebf51fc1cee04f9edb381e8d5d6357037 +DIST lint-staged-16.2.7.tgz 44369 BLAKE2B 2699881c89de8568bd358afee9705dae9e56d09c48792d51254cd871bf7070916844a3b90fe26cc9aef94663ac1a9035a6ed0432d026fe48d57515c282d39b73 SHA512 943223e119d898aeff9173326bea89b269111641a895c8978ebb19e8f0b6e467537d638059eb51d196ec3574408f51071c899149a95cfb0859160e7a1790d5a3 +DIST listr2-9.0.5.tgz 58071 BLAKE2B 25a49452105c161e0e3d158063f9c08b51d3d3c42bdb7714fa63e4b969f31328a61f06138793f154ea621f085c5c1292f922df212c79698e2601a9b012a82ff4 SHA512 304e056fcdcb804830370f7a44a36f295e154cbb977e82ae7409a6da53fc2a4f3b29a30ad3f5ebc7f68090c5a64fc9836fedcc9450eca5f6c2b3b69d8d1c40da +DIST locate-path-5.0.0.tgz 2723 BLAKE2B cc0ef0b09fbf3fcae736962e5145003f0c9c26c5a2453d973de30b42d0307ae78fffa0c6ac02150253b45bec66da0c26c272ac9576a61ef83cf02e912b7170db SHA512 b7b870f6923e5afbb03495f0939cd51e9ca122ace0daa4e592524e7f4995c4649b7b7169d9589e65c76e3588da2c3a32ea9f6e1a94041961bced6a4c2a536af2 +DIST locate-path-6.0.0.tgz 2954 BLAKE2B 50a0c3f170afa198c645efee84a5d7714a3cbec13215cda06fd89e9d34c1ac4c83470473abc1ada977177e299c3eccae0ae5b756dfb6452af8407f957ee73863 SHA512 88f64ae9e6236f146edee078fd667712c10830914ca80a28a65dd1fb3baad148dc026fcc3ba282c1e0e03df3f77a54f3b6828fdcab67547c539f63470520d553 +DIST lodash-4.17.21.tgz 318961 BLAKE2B 501b0f9be15285815ba771d2315168f1a19a2e265e9b239c59f8ff605a5c895dde24c6d41ddfb09bb216fdf6630688bc6a5d2362182dafe776206596e5319af0 SHA512 bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a +DIST lodash.debounce-4.0.8.tgz 5209 BLAKE2B 8d6c2d3be9c66f23301cfc24ba639760dc1c19d284a259052175089e04fade3c2837bed2ac51eaaabea3f5e4f341c62eeda6fcfeda8c0728fc5d049b43f74aea SHA512 153d720f30d81286168674869e913fe0a8f57cb6640c5caa45bedf36de85758392c6551602da78d8487a59bd2b188bff9bd060a3bc781a141b9b962ce121b9a3 +DIST lodash.merge-4.6.2.tgz 13081 BLAKE2B 6f7f6b43ff0bda685ab29ff604b8099541680477f14c0c2907051f6b8655182f18eb672e8940b86bad06da0bd9288bf49ed0313b184bb493c1d9c7bf2a7dbab0 SHA512 d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321 +DIST log-symbols-4.1.0.tgz 2263 BLAKE2B 23b5532378753680782f5b34647f750438fef9b4768ed099ca6b4af830219e0c913a5d16e2e7a42e75b618e4883739332d67e2ba0d002b4c9ff88900307a1a4d SHA512 f173efa4003cbb285fb5ebbca48bd0c69259ed2618769522bd9a46cbab05b01b8a458ffbad019abde75e07c68af99932ababa930554bffd016eaf398cdf4722e +DIST log-update-6.1.0.tgz 2939 BLAKE2B fb8a527f2a2ecba6d88d9e8ca30805010bab8538be5cc6eb04cef4fe69d196cf467bff5e96440c144b7f0842ce78b429331ffb4e882953c7bdbb138affa03ec1 SHA512 f627bc22d3d1ead8d8e6e60987c2bf66bbff44c67954e94e5afb597441d849314a65f2013d06bdb4e0047805a177e02722778b276db0e5f8ce62da2eb695aae7 +DIST lowercase-keys-2.0.0.tgz 1568 BLAKE2B 4e0a785026a155de74c5a8623b6accd5fbbfd06af876bd5adb633bf4afc22f3d13491867ead7f1eca9994a30d66561d2580afccd8c4ccd55781f34fd43b19234 SHA512 b6a357ad2efca0c384ef734cc4ae0430b42c428c167fc8caa281fd83bc4f6af453ef4e91e9b91027a0d8d937bb42e91a66cba5c5adf4c10edb934a66e1788798 +DIST lru-cache-10.4.3.tgz 181128 BLAKE2B a2cffccee7c2fb4198dab2ed2415a206733f2a45eddfebfd21300fffb4c9bd42f704124d4af810ccb8773fb76cebab45750b1640dd7abaa24aa39a6371c50ec3 SHA512 24d03365c5eb0ade365462ee633d337c0cc37c0bc9596e807d8943050c835790c2948da6e6c0262be3883bbb39f577ec46c587a74da3009ad169d3d1193b7a49 +DIST lru-cache-11.2.2.tgz 185704 BLAKE2B 9c49325302c0a1db070840bab16c49c85a9acfe7ca92ada9877385b0c1d16c96ce48f833820086a55475986da7a228753364110ed014c06a527953026c17cbc4 SHA512 17d3837f2a8c2f67284c8b10a529111e72d264cb6453c43e9927dc688c8ac32e7cbbef24e67bc061e88d86cc8c011bf335c5c9f507d656b70fb02f5ef6b031b6 +DIST lru-cache-5.1.1.tgz 5824 BLAKE2B 6b260569b1ea699c0e229d7539375be674f6f1c46ea0b3848d5cb28a114ab2b8946ea2510828e8eb810045cbfce6150c05fe1bb6e2cdd2baa64e1f5ea780d76e SHA512 2a9340450037230bfe8d3034bad51555bae1f8996baf516fd1ee7a186cc014e5cdedd93f16f89a0d6f0b1e62b9d8395c1f858fda7ea023cbcdd5a7ac045828f7 +DIST lru-cache-6.0.0.tgz 5788 BLAKE2B 79d4e82cd9709f30420b8d9b092749371db4627e033edff8a46816e8afe83a18b50c57ac316dfac9331e34e03c18ddbc19067c9238421d61080da405116be929 SHA512 268e9d274e029928eece7c09492de951e5a677f1f47df4e59175e0c198be7aad540a6a90c0287e78bb183980b063df758b615a878875044302c78a938466ec88 +DIST make-fetch-happen-14.0.3.tgz 16391 BLAKE2B c61fa9b7129f86c8de652730caba55085aad485aa014ad17dd5ff35ad2348b7a04b595eab0341b1366afcacce8f095d05b9a00ece7c975bfba920a217f992785 SHA512 40c8c66c54cfd1b963f7b11e89d1b9864fd084a4374f82027244062e0cf7f1017b5606e4e9ee854c044df0a84ac7205b5a7f11d0753e6e7c3c692a053c3e2ab5 +DIST make-fetch-happen-15.0.2.tgz 16384 BLAKE2B 7a2e685751c66a6de6ed5b55aa26ea8bd72810c78b65827cd7339666cb19f931e9e9e94dfb2741130819469308d17bbe2b13958e1b08f1a722af9f647d71189f SHA512 b08d4d6389569570407e3982b55588229072a5b05d847b5c8e7c27bfe82d0a7b1a39f7f21629776a276ccc60bc860cc97be7d3d6a8b1d39b16c660ff0667ffa1 +DIST make-fetch-happen-15.0.3.tgz 16387 BLAKE2B 328fa411fe754d88d05c8bb2513696af9bf11e8d6b30cf57a0a308278184fbf4fd6cad7045a8cb76f1dd1abcae06cc321c3ee68610df7e117ad316e6f517e028 SHA512 8b2c84a43b72d66c16ddd1a5617009a82fdacc59f93cfbe0295c176b238605298a2f184a67d7e0e2a21a9f678fa69d6f248c1f1623b7e0b00f660abd4995bd03 +DIST matcher-3.0.0.tgz 3357 BLAKE2B 7f9c8de1551596ec9f83364d2266055bf8869c693be8c3ad0417b802d59401bfb2326e0e6bfe71c1c2535812919ad6a3045ee420dc44b0d138309d406c189041 SHA512 3a478368067f6d00b1785028ccce793ca70a534c8930f1a27cbc15e108238adbbee4ca007d240de25b0b25e5d9d5bf30d31fbf12675ae8c6605d2d63bec6a99e +DIST math-intrinsics-1.1.0.tgz 6355 BLAKE2B 7e589d5c5b73ff6e34b6d03b0f4b2c0a87cfb9b7b0b9b182c23c9c3086d2bd31dae4de23325c7c6c32ae41e8af63b06761728392ea27007665d5492b07316294 SHA512 fc85ed6f0124e474cfc84c32297ea11a4617c4cf676e3eb807e8a55499c2fd1e81d291f91b85776f4a556cbec3063e2d921040a696d05257fa17a5e5f4b1eed6 +DIST matrix-web-i18n-3.4.0.tgz 15084 BLAKE2B 81404e51b6646c8b2a14a5ccfdbe9d919d0bd1dc820035e444229baa5bb2ea590241a2b4f02284511f1d9459be6879abc679064248394c6a337c9be77424b97d SHA512 f017ed7f72e400247aa32d225d8b88b03baf1e3a09a0e09603e803bb2fe5bf23f0129c1588cb375cfe6626c5e56bee754991142d945452d4eb7ae7c7eb1540f2 +DIST merge2-1.4.1.tgz 3409 BLAKE2B cd6170696902949cd9281172943be4113efbdd74bf0aa8e526d7af429d45efd39de78ae479e25a9b6e15c6d1ffe4fe231bd8919ed1efdf9782fec3e82196e061 SHA512 f2aed51203095b827cb5c7d53f2f20d3d35c43065d6f0144aa17bf5999282338e7ff74c60f0b4e098b571b10373bcb4fce97330820e0bfe3f63f9cb4d1924e3a +DIST micromatch-4.0.8.tgz 14663 BLAKE2B a449f7dfe51f8f52f0a41066a25a808f6443f31c2cc6b531b718dde14cb4e75858fe5127492136cfdc5853a440ea576b9068769558837e761937a970d0589bf8 SHA512 3d7c1f06162ed210423f0f039f413e58361beda7f77522d558a8b71c6bfce08745e13c85a02d32b3115dd06a31c3b9d2bf84ff3f3109431b18b0488508aa3604 +DIST mime-2.6.0.tgz 18724 BLAKE2B 9d2ca6c5d0f2165f216a3bba26b4913ffb770634c949d057a7c12292f64c54cf705262beafdfcada0fe3ee21e580b28273a3aa4a129152d51c8a4bf5c26cebe0 SHA512 5123e431e113df5ace3226abb013481d928b1a0bca73f2eb8e87c09c194eb6d7f96a346faa2440f10b1e9db728a1cb4ae9de93b3a6aa657040f976e42ad86242 +DIST mime-db-1.52.0.tgz 26992 BLAKE2B 137fdb30cc3a3b4db9c5357d2d6048f5e9dec33ceebdb875ad3c3059cea5d187b98b9dc65d46ab1e129280d2bb33445a4fba87c7c86bd0ad408c1fb76d4320aa SHA512 b0f538b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be +DIST mime-types-2.1.35.tgz 5591 BLAKE2B 4407f077a52f95f72465b0138ce02be966a1c7143b30b1cf7f3e5a4cf9265907946be23ac8b3a201b19e513f29b235b56b965e53ae05b83f3cddb81874f8b926 SHA512 64363e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b +DIST mimic-fn-2.1.0.tgz 2119 BLAKE2B 2f6450cd30ad30cf67d61538432748bd41fc95b69480c25e9a2e167153f5f2e67a67ca2429c48b5f2faf158cd83a7fde0fd8696c102e91671a328b745562f7e7 SHA512 3aa6ce939a0441e019f165d6c9d96ef47263cfd59574422f6a63027179aea946234e49c7fecaac5af850def830285451d47a63bcd04a437ee76c9818cc6a8672 +DIST mimic-function-5.0.1.tgz 3203 BLAKE2B 9d0e6a0c8a76bd1826e2e5bc76d8e1788b619a26c13c5ea9dc22104ee6e64197219cd8e14929b4d0a8a6e9c536093187253cd290f90f411bcbe041a2a519e012 SHA512 54fefd5d43f15760a28183f78d6c005054a4bb668aa811fbb9301aa4558206abadb1b983a3de8a639a3cba1e94fbf612227e4ec499d7a7bddb795929a8c20684 +DIST mimic-response-1.0.1.tgz 1894 BLAKE2B 7b2089012b75d903057193d32d5759da6b832acc3ec99eee3a9954d9a325c8517259732b950bb64f746c132274750f1fcf6b0a391cf3c47ce62300df45e2bd31 SHA512 8f911cb67907eda99f57fab91e09a86a5d60d901c5251ada3ad9b1d09a48aa4c6106123f9494a5d67329438e6155aaf03444cea161229a7759e102b4447c6ec5 +DIST mimic-response-3.1.0.tgz 2822 BLAKE2B 18755616f40b2832d7c95091e0766b5ff6ed58dbd630b7ba8d29e073566d1e7dd6ee745a907284688d0098b61301b5291f7fddaf7fe4fe8664e5fcb07ce45bc2 SHA512 cf4c9623ee050ebaf0792f199ade048f91dd266932d79f8bd9ee96827dfe88ae5f5b36fa4f77e1345ab6f8c79345bd3ae1ce96af837fc2fd03cd04e33731cd19 +DIST min-indent-1.0.1.tgz 1658 BLAKE2B 06ffc281bb36fd4473f0499a7c6e469181732d66cf9fdaa21d51e1711c97c022154c38174e4a0191f55816e4c96088ee042380e5d46e9504c2ff98b44b00a597 SHA512 23d8f0327d3b4b2fc8c0e8f7cd59158a4d894ef8296b29036448a02fa471e8df4b6cccb0c1448cb71113fbb955a032cb7773b7217c09c2fbae9ecf1407f1de02 +DIST minimatch-10.0.1.tgz 96385 BLAKE2B 796e8affe9fbb8354246b9c2569c17a195e7b9c09297d2eeff798158a3966e5d29c9f8fb928458c5da19131a71a09e4c49875c2f0a68de0f840e4a58e23e4545 SHA512 7ad8574eddd218647ef7982e766a89d5e36144eede18418881803dbe73dab4ae3f7adcf63045439e8e4630289b74c4ee04cc849732258313276b72bde170c80d +DIST minimatch-10.1.1.tgz 97816 BLAKE2B bb935e13f80fea245906705504357ab51239dc4f8e7735fed4a9306067d2cb5961c64664ae130622181679372edc4865bdcd7fbd32385b59e1bf6085b775cba3 SHA512 7a722f2ef440159617273902606e512a63dfac502b74bbfe47e95b439dc198830b22bcbbe1b8cacd7ea21c09bc5986a626485248469bad63790fded79ca39b8d +DIST minimatch-3.1.2.tgz 11940 BLAKE2B 56ee5c5caa4d2ebc520342920d23ec57ed5b6ef6acb8ade69ea0518943d58ecec0826a7f036ab68efa2bf4405258058670aad8c7be5dc09c40ab8fa713f2b181 SHA512 27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f +DIST minimatch-5.1.6.tgz 13116 BLAKE2B 2136ce562b9578845e70281b192a9c5ad271b1f025333e5b13787346e8f8c9339c0588b03c5863f29db4bc0ac5292398fdaf4808d1bc1943119d5fcdaa278a58 SHA512 94ac15ff56eba46ea6054147b5becd526b400426f65996669b6c0d88e0398406fc55d092e01dddb4c5b2bdca1589c730016fc23844635cbb74ccfd735d4376ea +DIST minimatch-9.0.5.tgz 96471 BLAKE2B f522c669a4f26c04ed75a39f51d398ba5fc8266eea6fb88e0b6c46d22bc5dbc5754ce844b12dbb29da69def81a5c6136da88dd4d383e1e545b03fafc20293780 SHA512 1ba4f4657e3cc60a33c7be7cee4a1e5fd62cd8d632e869affff3fcf6c12d7bd57dc2121aa4c345e2274ac675b642d09c2e24d695bff07c269b02d0055a1841a3 +DIST minimist-1.2.8.tgz 15520 BLAKE2B d731ee5d42bdf5446bd6d647f4c8e38f74e29084df77d4daa73e960af3b29d6d6a0ec50c4e6f6b93727e2f446e1ec12d754a7bfce4967e3d1a035e6bee314327 SHA512 db2c8047ca8190ddd8ba17896a7529582e54ddb6f9a2c0f2c0d07c4730d5943c031dba1c009bdeaaa8f5bbcf92543ee39164f8cafb070a95aaa96a80c5bd3308 +DIST minipass-3.3.6.tgz 15335 BLAKE2B b06795993927e7323657dfdd2be491635a1b3e8bffbbfd8fffd9ce473dcf576d337530330d89ac6b6a3b8306062f04c5a3d25c9dda76dc5610b2da595a28065a SHA512 0f188d89dc5210afad1c6eb3388925bcd3b09b786f0ab6d4addb7363be14e87293271bc80df3942f95b93f61a17770d392184a3d81aa78d508879a9c3386017f +DIST minipass-5.0.0.tgz 20536 BLAKE2B ddeb1c1721338b8d3a6f16db82506525d002cc9e8183784aea225966dcf6059b98065437bc7e67df6543150cacab5cca5d2379ce5c99bbbb7cde704cb4be0f8d SHA512 dc59e362e7a1bfd93aa2f3846f23acc1a7420cf5f5a6209f855f2772662d1ce8ee3f0ca5556b208532e8eeb69b8c2dd1c79c43e070f1f169b5c67305ed2e6a15 +DIST minipass-7.1.2.tgz 62112 BLAKE2B dae8764a876ce594b4b84f2e6a144588aa4d412bb2d3bbb5e81ca7be344aa012c5156f15d9d267b2eb630681317d7daa048487b951538af4e1d86124a47a3d76 SHA512 a8e3b34b57014d6605e011fc7d578f0c138ef62a6d327194119c0d73f70c5a74d5da754b67b56835610f1e461ccd9034a5da00edd97a7bb14beb9f675fd4b66b +DIST minipass-collect-2.0.1.tgz 2094 BLAKE2B f4535e525cb24542b51f2cc432b1197a5adbf1510281ff36a589922482d59da35f756e76369bd9bdb646201c40463af4c6ce5e59b977e444bb2a2575f84adb1b SHA512 0fb57c3cef686b3ecf5862db0800ae235a843acabb50a7cba2dc7f0b401eb78ddf09407fc1f43b0d87aada847fb2f1491980c73ebdfc48701379a8ff6682872b +DIST minipass-fetch-4.0.1.tgz 13592 BLAKE2B fd24af940a6df057704014b790b98112ceb02bba90130eaa08a58bea156b676aa818646aac4aaa67d36f9042489d3afedee10ea5a9bd4a9a80e87cfa78678908 SHA512 8fb535d42e475e2815baeb7179b15a7686016dded549d65682049eeb835576f58d06a1808973cbd905427a18e6c3b958d6817d80e96561b39187e8623607cf81 +DIST minipass-fetch-5.0.0.tgz 13592 BLAKE2B bbc04dd91a9ff237c8da9219c34c293dc52eef512a1446ed5e321cefb825bbc959293fa023e3ea8454e9f9a4bb1cbf9da5bc1b402e9c3be619b193ea9ccb6112 SHA512 7e209d5002e2a6a80f5ab3954f3f5fc345e171acd42d739253a89ee340c36d7d45e3da75741ad2441bacc27753c75c77bc46ff834153eef0b87380b6bbf9a1dc +DIST minipass-flush-1.0.5.tgz 1972 BLAKE2B edd0a251147e703cbfbef6567de6ebc8a63baf1640418563842607203f4ce3aaafcf93290257aa9470ac129332f62d7e91c14a5f5128bc32a5c0b50f59960817 SHA512 266412618a4f52a5f92729f5997691c0e75ad6e43c1cfe4a013fe80d22c2cedd41611850534fe10edb01d6e7d97c4133319f5a0159ac070f3e156b085e50a55b +DIST minipass-pipeline-1.2.4.tgz 3001 BLAKE2B bfcbff0d317c36db0ef1514a045857af9dcd29c3988ca82c9e4a06a43f8f98714391adae8cd32787ebd058912f9e0c8afadf089a075bebacc023e4b58979c6de SHA512 c6e22aedc20eb74f513d1275f60762e1bf9188dbc31587b9247fa080dbc1a86aa941772bbb73dc466399b8704a58ad53c5ff7e710f8731537877acf8e8b64fec +DIST minipass-sized-1.0.3.tgz 30780 BLAKE2B c5c2cd3124e2c5e7b8eef93181cc987d375496817675c7305e2d691e7af52201d1b24789eed146304950ec0a68d0e3cd8d78caac4514ea3983c776a198e60971 SHA512 31b9104360938813250360e6ff9718fbd49614437ca73cce5e2eab94ce57c6ad18a9b75ae59432f6c53be5aebbdc513d64ad19b1bafa63988feaef6792d7e0da +DIST minizlib-2.1.2.tgz 6154 BLAKE2B fa4494224d32fa6cf9faba9f920aadf1b0e75d5851a4638bd88450437d3bdacc7106ed564c3527d8a38456e50cc496549991589d99e4ce43a0059379b5882595 SHA512 6c0c6c47c0557e3eb40d65c7137bb7d281f37e5e06ee48644ae3d6faabe977b8c54479bb74bc4e8d493510700227f8712d8f29846274621607668ee38a5ed076 +DIST minizlib-3.1.0.tgz 18461 BLAKE2B 56e592a4cba08d48104d9ddecbdb0f7bf45dceff25cc92c86e6231b4b4163c19d4676b350cd9e9259494ff17557f7232ca33bdfec8fe96052cf49d3987f95f28 SHA512 299c58a350549160f64d514baf4310a0cf2f5148a0583dcb943f376bfef906a0bee2a1341dbd55a39bf516071f68d5ef7d7cebfb912143a8a783f09a0628d397 +DIST mkdirp-0.5.6.tgz 3018 BLAKE2B 9c504f0cb619b88ab84d90091e42bd0beff5f685dc1129992fc83344a5b052b96944b0f36259a292c1e55d82f2660b0764e721912ce6d2887f68b58c8e68fd11 SHA512 14ffa9f1107c396a45dd86410ab3f982d0039ad5c0a41e4030b9febddc80f8fcb10a3ac2b34d268f2528cecb0edf77300de4f7c0d19d2f127933ffd8aad1c027 +DIST mkdirp-1.0.4.tgz 6665 BLAKE2B a07cfbe019bad967aa1dc55ab35d5ac78819b254b307ffb3e84d72f8f52626b02bb99a227f567953fa505cdcaf7ab96f22b8aaae328845cb94029f4f9711da8d SHA512 bd5a95650c9fdd62f1d9285dd2a27dc6ebea800c8a3cb022a884c4b6a5b4a08523ce8dcf78f0dde9f5bd885cf7d1e7fb62ca7fa225aa6e1b33786596d93e86cf +DIST mkdirp-3.0.1.tgz 18260 BLAKE2B 5d8d33ce48df973b4b6b094214af475b33c5fb99123c45493804c2124eb24cf3e5f231fb81e2a63427bc3b41d89ab502bcb69ecf44ebf7e3ed8d88d1b47669e7 SHA512 f8db325140190e6a3a6151f32ffb2dc52bb7b7d612d62963962cb70520eb5c9fdd927d4a61d9ad64e0c61a32dc73d5cb8155691f82ac84707c5e66603216815e +DIST mkdirp-classic-0.5.3.tgz 1953 BLAKE2B 5a4823fb697d05748b4125df81a7ce0df42fd5c19e9ac95ca817dcc17b6b8acda9187bde3fc7235a74a5fe28b7c68e00804aaa72dd1160028538c43087b1647c SHA512 80a2dc444321b6e651c1101fa8fdd1156f932b826a029541b4e21fb55823b8006902da7184f19a0dc7ef6e136f0f407c883d6852bfedc57df936371a63a36cfc +DIST module-details-from-path-1.0.4.tgz 1961 BLAKE2B b98b926ec975f73dce3e93d3c20258a659d952d67a1f2553afdce44312edbd54d2e92e12a19e7f7457230ed5649bc04cbb37c35808ec2454811a99fa56c46fc5 SHA512 10658a83100b18c833bf1605d54c864f2d075d7ff6bc72e4c3af8dbc3296da3ca959b1e98d0ba3e1431ca905971c444985518a8a4a254f4e86ddb70a7b87e2ef +DIST ms-2.1.3.tgz 2967 BLAKE2B 03b7e21a6de1fd9498f6e6233a10660829034e9153dd28e76aeac23a96f490689ee1d5d51b4b6b298eadca7a7f44fe886248c78e69272b3eccc7ea199fdd6a03 SHA512 e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394 +DIST nano-spawn-2.0.0.tgz 12220 BLAKE2B c41792fa5fbd8628c37c171bbeb8aa75a95a79ca107b552a774929ef9122ac6a577289b9c93901a7383d563deae1b403e178264334160b9c649cbeb699a5bcfd SHA512 b5a72f1b3518e68d83f02061dabaf0c723688d4b19354db38cd4f3290ae48062504db1807c0ad559748a301a2405e7a0e82ece2d1194132a059586df796408ab +DIST napi-build-utils-2.0.0.tgz 4540 BLAKE2B f81a0e5e56441426d1d881374742b2d22b3051a09a8598358ea34668035e29a335e9d81642d09828474478d20aef46fd375e12ea3abc85f8ea34f8cb70c026e2 SHA512 1846eb6246df17b32835aa21da2186f383277ff5997c1d0674612c33cc33ec4c69c7f2e559fe54f2df67bc92974a9deaaf922c11b2b4e1c04686897f2b03ac58 +DIST natural-compare-1.4.0.tgz 2510 BLAKE2B 5a5216c1ae60c9302639a0ad45be29a92c5438dc230c85030728b8760f78b4daea1a0d4c10fa45945d1be2015b5d713d5b16d7de90cfb48f5b0e69a7b7de320b SHA512 396343f1e8b756d342f61ed5eb4a9f7f7495a1b1ebf7de824f0831b9b832418129836f7487d2746eec8408d3497b19059b9b0e6a38791b5d7a45803573c64c4b +DIST negotiator-1.0.0.tgz 6792 BLAKE2B e382967461ece7061d3e462350fc79a1cdce4f7fc5f5c729d4356c45eed2efa65cd49f3d2a903766c06cd25497aae950afea543df629d4a3ec116c0c46ad5aed SHA512 f0e7ecfc051087c31a11cae5ab9c4e5f4090f72a53179765efc9a394c35f38ad3c7f3a604c741140f07170f944b48c34c91a70b3e668ff7afee5645bcbbbb71a +DIST node-abi-4.17.0.tgz 4155 BLAKE2B a134a082e69764f639c88d695ad4d66066ac47cbc539a1e89f1965c4e1d922546c7094dd0aa8cbb2141e6edc9dd00cd37f7babbd76eee52eb8152ab4dd507cc8 SHA512 96367b3e20a1300d8edec18f5f9fdba41856d0ef6b5e7fa8adbdb1a37674be579296297b1bae566634858e621e02d1d91dad865e24ce31d142b22c8898c10832 +DIST node-abi-4.24.0.tgz 4156 BLAKE2B 9b0475522a57dde211039150c3039091ca4ce097dc0f122766de8f95cfd63a88daedc06a6b9e645dd1ef596dafc4514f3e199cf24c1f296a36b256938877ec3e SHA512 bb6102d4278d7b6e6e56d5f71196dd436ef973be337599a6a73ac711087668862aa158e58257d4a4e5fd618f39c759e507274428355a4a630d851ecdf36423f0 +DIST node-addon-api-1.7.2.tgz 143727 BLAKE2B 1cbac112dbc8dccff5adea230d387605efa3b87541e6e6ef9dfaa747bd08d20810a5638d272653be6c51c854fe46c9e5dedc9db7583b26758d925a0341e77d4b SHA512 89b3cade203ebda6357848c44a442433405b0aa14e6993225d14ed741d2eedbe1d8ed63a267b23bcf7541d5320eb142ddc1f1fa534d61c8f40f800e333d7ebce +DIST node-addon-api-8.3.1.tgz 60027 BLAKE2B 0f837b374196c59b8288286f729609a823f9390fb22a9c265c2d2c528687a1f1cf58ef403d48b393276c7a5360407486ae0c164b1377e3e7024a694acb9bfc12 SHA512 972b5c0c47712a31893d32c47d6e2660c8a045eccc972258f16e30c492bccc4e77dc995bf0bf1d46e39b2455a0d8ff80b8e231a0280a17ed8eab877865dd0e50 +DIST node-api-version-0.2.1.tgz 1878 BLAKE2B d6f5bb4ae269374489d01ba25a29091e54e6f55dbd579835b9831266883322351bcf77600cd49675e391d8bc3b49ebe5a0c8fb2017779e4a2ea24975ab9c7dd5 SHA512 db13ff20618c9a6490a48d7e3bf93bda317fca4bd9f3d25eb8a5f74cb24060f0d52d46a5aec86b2c791e55c08266a1bf7846badf972bf08058ce09c3bccd8ef1 +DIST node-gyp-11.4.2.tgz 459824 BLAKE2B c7087f8625c15a88f7fbb00463145774d970cac1b945a1541220602c44436bdd897137ee4ec0ab90eb1060e6fbc19af0491ccb5eba7ad1cc2526c3f3cf13aa8e SHA512 de00feeb3b2b2d01fb0f260e508bad69abae5eb732c5e4cfc90b9940242834f64c1cc312e66e32d31725369bd8ce82b754dceecb14fa785e269082f859267579 +DIST node-gyp-12.1.0.tgz 460809 BLAKE2B a545991da26c2744127001cade78b7b86ac13cedbbdefd492d53437259c169bedefa1c11bbd82ae57a9e22fae157a62670083427afb91c89452e99a68ac16c9f SHA512 5be45803c8c19e14abdafad3b653d83dcd4af824a31a9543459c5ca89704459f0d0f70354e158f1d1c1cb53c77a82de85bdf63b7bdba8e1773dd8ea4cbcec9e2 +DIST node-releases-2.0.26.tgz 5201 BLAKE2B 13bf9a4487c7343237ac05feb4521d93d9235c42b069568ca9f4454eea91f22882e1d492a433eb1114624d5904c69970163a43979783a46e838f05c460fcf6a2 SHA512 4b633d6229a14a3052bd89e5af9ffeba60273c713ef8e0f0b797b6223e85a17e391c0fece2f1dd903c7579ac76a403de00eaaee2cf5bee9a5a86cc8415d56a40 +DIST nopt-8.1.0.tgz 9865 BLAKE2B f0e51277a4a6c55a0e27a61f331995f7a11c7a67148673a0651a6e330959b9d1489e42520dcf1a7fb432849a483250390492ea37e53b936c559ac8a08d18995b SHA512 89e1aee36bbf42c6b84c592d99a284c0ce8c407d293969da07786dce1d0946dc7ce3e31e6dcd1c6d960de5b0bee964d9e3eefbc6b2fd3e7e66ec257a548915ec +DIST nopt-9.0.0.tgz 9864 BLAKE2B b7f9d3b82967bd511287abb99f2c005ff36e3c07c249b8f5042a7bb5ba82c13fc0e55366b98f31bc66074bd5bf3b46d7e14557fbef4d653f311dd736ff995315 SHA512 661ab76bec852ab63048196e2f81fd5cfde6df2e6ebd0901ff4f42c03aee0a246647f5096279fd5b8478f2bcb4b860bbd1a7933ca2f29c1b6c70ff5e7c515c3f +DIST normalize-package-data-2.5.0.tgz 8662 BLAKE2B 3287ef0198e418729ffe79053422c4b1f3ce5a78b20d2108dadd7fb93f6ce0a5acb95b5c89af0421fbcbd168eaf32dadca7ca13945c7c711c1a496459c1b9db6 SHA512 ff908c3774f44785d38f80dc19a7b1a3eae8652752156ff400e39344eae3c73086d70ad65c4b066d129ebe39482fe643138b19949af9103e185b4caa9a42be78 +DIST normalize-url-6.1.0.tgz 5596 BLAKE2B 9b737b6a6573ac497b869436f56bd50dae422e24e6976f877782080ce3f446cf90ad584b773a32976580c40201d45da046b5a25aea4b410bfca56dd18091da93 SHA512 0e52fe5f03b2dcdc4043cc6e0b4a243e02b8ea2b953402b4d5837b46e79806aa85786b018d5f5798203301d82dfbaebb6c297990f87d12a28a0f09da3c6d48ec +DIST npm-bundled-4.0.0.tgz 3991 BLAKE2B 77d2f959fecedfbd2215419f4d66f85a87940d0e7363a1a92b2d8ddb445509af043f82490be0562416ceeae14fb7f28bd142f77d7ec5adcebe780df00c74ef1c SHA512 23169064332ca9f4362f3dfb56fcb212d28b7bc16c459bb2b2679dcbf374e93535472569a58297acee3122147417eeee6c8068c7a43b9e2afa7d02377a3dfd88 +DIST npm-bundled-5.0.0.tgz 3989 BLAKE2B a95c5bbee297ac27fb74820f446dc3e43bb6b7a7281dc01cca25723963c5f5131556f1e616b8ab69e4e1a279d3d0c6747f711b038d28894c83b9ebc0686de685 SHA512 24b4a96f387a5145c8128a8fb1806f54d566cab8d56757f31056eac4a91325091604edf1173153f8a0e748a416c0e40d6ee591c2de4b483e873932c6216cdfaf +DIST npm-install-checks-7.1.2.tgz 4416 BLAKE2B 29f7a0aa730c1870f2c5a86dbe8f7e6ffc769fd1902315722442520300ca4b33c7c907ed660e2e2555365d06f45b872ed737289c8251ccbe736c4787bdcb55d2 SHA512 cfd1c9042630f59afc06a5dc965288b399c8f9082000899b05d1e984ecd562bcf6081e2243a1735b22a696a0d9b9afb9d6702eec571e9a56d373d56040de570d +DIST npm-install-checks-8.0.0.tgz 4418 BLAKE2B 08faad0d35b88d9b240b6c2f89db7b3d63a2a28736f04584f53a209c958a3f201c83176759c24031c430a0c1935cf28e7737e5debf781a0fa6c777255100aab7 SHA512 49c01474ca72ce46e9c6835e910ded35174523c489f3ac2029949065d5314fe6e3d30545a6c10c5a79173f4b7055ed60272345e5aa415832618486e0ac856244 +DIST npm-normalize-package-bin-4.0.0.tgz 1874 BLAKE2B 10d09e52fa0241582b6b22809271c996d80b380e2e99412bd95c729cd9f94dfa62ae738af7788845ffbe613323d3e4ca3302e017191c9575e6330ab783f46dc6 SHA512 4d92b13ef22dcda8bd90df47fd39260adc7f64dfe1bebdef53272395f987d28a2d63dc8507334ea625c07489f522d7aab2f9389509fa0793d3aedfa7ea1f24ff +DIST npm-normalize-package-bin-5.0.0.tgz 1877 BLAKE2B 7f270a6e0f4f2ef3063b2462863a359a4aa6689644e1334b46a51cbabf62b99e973f87a01f7afaadb2cbb3ab9bb5dd8b64d645d8f6f948a00d2da067188f7e16 SHA512 0898b7392e092ec34c9abdaed3b38996172b3f109e39e3ffe31abaeda58d6a2e9335659b4eb94d0e097c35c14a5657012a9d7c18f8fe1336cd220ac17d986c6a +DIST npm-package-arg-13.0.0.tgz 8008 BLAKE2B 8c9ad816a48ad8f08d1100a26ad0faadee16825e17451913040c7a60bb2158c49004675fb0ca551b84e0a00b2bb60f1185201f0866bc3a5e1fe581126cf7ae8c SHA512 fadd9eb59006701ed36db2c77c3c28a15f69a41d8b861713e80f8bf5c6a1b1ff6611402843a0a4b4b115bc49e90f43790a45fbcc9aa73c6685b68403cbd1241d +DIST npm-package-arg-13.0.2.tgz 7977 BLAKE2B 4791f50850386b9a0ceca3397ee90b8f49d78f3df61bbf31e2fccfe7f8f519fc9b2c4a7908dcd5cfd8cfe30961c3493c5e251a070a493e84607a8d34748a7999 SHA512 21c882137498dee13ce0b77c599536de000f3d5f6b218a1de05fab73ebc9ee1edcc0026df5593a4d5b0aeb4af2ed48f74914b76ea451206b93a7d615964e9634 +DIST npm-packlist-10.0.2.tgz 8045 BLAKE2B 8a8536812044f80aaca1f97e261664e463693c4041cddd0c4b0f8e79a3b67eb933aa0e1b1c4997a42e02b3b5edf2b58f1ea1fc0be29c741779dd25f41d44ed07 SHA512 0eb216362593d054dd0d18c63987c411950d7b523369267eba9eea0532a7ad00f24a9766b8e42fcadaea425a4ae50ac203821384cbcbe304ee9aa69ad59bd521 +DIST npm-packlist-10.0.3.tgz 8046 BLAKE2B 45488d853e8290a70b0319ea89296f98541f453889177792a99744b3e5b412619d18577e1c3991d6c287a580feee225df23892da26728ab3098a82048280162b SHA512 ccfba44f024c3aee57e6ebe6d1fcedc12e59c72be6937f07fcb7e276438cb7781b6550b2ae8d9c0ff113cf0cd53dc59903724ec8fce77d437f9e4c858b251bc6 +DIST npm-pick-manifest-11.0.1.tgz 5858 BLAKE2B c1e4e530266adb2e601d2bcd45b4fdb0e1f112862ec3e4778af5f309bf9beee118e0f74781dd4dcaf6eca398f62ea2f8d9b2b51f98220f2bd64a3de7e7c47682 SHA512 1e753b1584966e8edd4d51ed2b41be0576d9d1a21fc73fda50254b374f7bf4473aac6517e5c27a45b815c797ea6f91b7d6e7f3f8154503bcb54a44533d536855 +DIST npm-pick-manifest-11.0.3.tgz 5860 BLAKE2B 2c64c3637a8f91a7b6a9384f0c875a4533d224ba68107a2cad44307532abc2f7bd0b0f18ffcfac8b6d676ec8031f12686ae45ed4a22ba0a0d495d3f2f30a4976 SHA512 6eecf209f7a8198fcfc4aaa606a9f521426b667522d555494dd49244f188eb4b49754854a1240586cd33c9c26890374ece741e9ed82ba5ff0b6b2107cb2625a9 +DIST npm-registry-fetch-19.0.0.tgz 14264 BLAKE2B 7300210b98b2e98fbbf0c8e3572ce9dbe1456c965ff9d2dbc514e9d0cf4db335dfab6deb06f264f85f27b1e9db292145444acc8a1314ccfc21ffc78cc1d1b4f1 SHA512 0c5c5201e9875304ff3ce69700e6383499845813c1d2829bc03e8514313d867b759ce464b7f157be08c3e21423a0aa07c3dbb4133c2cf523d7c15ef113f1b2c3 +DIST npm-registry-fetch-19.1.1.tgz 14281 BLAKE2B 5b345aab0153d57438e02bd3eac20f0992f9b502116a9088195b7377131c371cae341adf686b124bb14fd225a6c425fac3e91b11cf6dbce6502b88e6d33aae17 SHA512 4da9016a9e8e335c341fbdd56550dfe388855ec392de1f8be3054c5e66d6390ae866016131c8748ee37a5d2cc13650fdeb9c882af5a0d9d7eeecd4a26982f1b7 +DIST object-inspect-1.13.4.tgz 28026 BLAKE2B 7c36164aae48cef363db5c1400722809c4085f13e51413c6075c61bdb44f95cf7f902c1736992aa2253d24e57ebd2f98d4e65b02dff1e533015c60d4a636f327 SHA512 5baee22e5e09d845c41936df78709f7eb8c37e2b6f2c0360d14957df01545124f1f762974457a0307515812a84fb0be101b8b85aa8c683d733cac4d5d84a5b7b +DIST object-keys-1.1.1.tgz 7677 BLAKE2B f9431231747bb3aa685fd010bd1b916e898be75314e2f78c956a1730ab7cc2e7c411d4049857db9ba1d26ae73c40825af4d3702cda748a13505b3bfd271ce11e SHA512 36e00449439432b9485ce7c72b30fa6e93eeded62ddf1be335d44843e15e4f494d6f82bc591ef409a0f186e360b92d971be1a39323303b3b0de5992d2267e12c +DIST object.assign-4.1.7.tgz 20235 BLAKE2B d0f4db7d9575bb36b90b2d880811681ad530c55aaefa26c4eea9daace6f8d8ee2b2c4a3257f0f05bfa31d96fb299ef6a0d5c998c2f47744b69b6e860a0b09f1d SHA512 9cadbc58ea3e4088c190376e4c8344e09905fd42492b27f6109c6f24a7db943a7283443ea643873532f4430cba34fe85844fc49f357bdc1c71a9c25a5d8f5a9f +DIST object.fromentries-2.0.8.tgz 6085 BLAKE2B 19ede3776c5360e9597ac22649b08bd5c78a1463a2f9ba4c408b093ad0e4ace36f48392f7abdbe42d713e81e685dd0feff09cc16c09a638a80808215d9779755 SHA512 93a136d45cf24ac48ae5adb529100305dfcd1a77917a014ee692c77dd40ba510c44d4349b9e2d7b37582cf2437b454436206eadca1c65df4db8b66ecf1643aad +DIST object.groupby-1.0.3.tgz 5828 BLAKE2B 9c20bcefdd84ae1dc9a704400e2aa3e1dda9f2311e55f6e1f86f2d79d7caac420e35154bc1a0e4f175d82528cc91e4ef86dab161b54423c6bfa9c13ad40a0b0f SHA512 f8b872dd3413bb35c8e617af87cb011aa6e6bab1db6c88c08b46784bade7b6154b98bc5f6e3e13e786b809f66b5c8aedf623f899500f60ca3fbfdf6d6a3df08d +DIST object.values-1.2.1.tgz 10764 BLAKE2B ea2075bde99150ad9b9c6ae29419e2f7f21116ae5bb6aa05f0c1d7fee6f9eec439ae62ab7f3f9710e4c19997a3784f38d9314e5d4c70ba69223dabd5a2a945b2 SHA512 8176a1e9a66b714c635a0db3476330a2e3f6787942073755e29ca0b9d7a168a5d2196e2fd80b114142be970c178628ba28565cba7127992528629e425e26f1b4 +DIST once-1.4.0.tgz 1979 BLAKE2B a87bc0b296d43fe660321ad6e33672d9f335e993a6c16a9ba60909690d6b667ca6368f59611081e603302b4b9ef69cfddc22e0f250a210cb9869b6ec2dcdd66d SHA512 94d689808fb643951140191c7042874d038f697754c67659125413658d0c15402e684a9ed44f8dcaf81dcff688c8d8ba67d3333b976fd47f27e7cfc610ba77fb +DIST onetime-5.1.2.tgz 2741 BLAKE2B 85596ef5675df15bf106955e650a88fe702144e5b943557171ae1eedd5ad4310cd2ab89ade8f2306da6c745f38e98ba019f97ac16d5cf9bc015281004e53fae9 SHA512 91ba5a4921894d674063928f55e30e2974ab3edafc0bc0bbc287496dcb1de758d19e60fe199bbc63456853a0e6e59e2f5abd0883fd4d2ae59129fee3e5a6984a +DIST onetime-7.0.0.tgz 2366 BLAKE2B 4fc53f9b0a274df80395582f0166a1a57624e8894d52a800d628e836d985d53efea13bfd399871fcac10bd30d7cba030d30bcb2bcab2ec07e4db1b4f333db604 SHA512 55726373cec549c17cf2e69f4b726594382f026f9cfd295fcf4ea5a2b8f6b80637e2b954bb436dfaff30ade88899cae00238c81e9d6b5e94c394b386c36f56c1 +DIST open-7.4.2.tgz 12663 BLAKE2B 80de74e9825e04ab1e53ed42a6028118198b0a53c07b782c105633b3c84b4a792b57b2f71a8b4b61f1ad88019c02d44d1a70e727e7f3746e6a1dc9c6faaa1beb SHA512 3151dd743570797645ddac2d9404beea980a2e59bf260c59f74fbf341bab06841cb5538e07fcc37558dcc8fcd0fb495a0c66ec5a0ad191f948eb9b1078e813f5 +DIST optionator-0.9.4.tgz 14017 BLAKE2B 9d51857e8a37cd4d43fee3757ffb3d4bca5bdc84b55f3e207b3c68c9a07b40051519a027fbfb1c25bb9d2fc030f0cae63ed41397c866ba80d5356537a88358e4 SHA512 e88a50ee6294c5171934b20e6d1d21cfb971b1aa5248860d649c173c6785d264d5a862852178f50d070ca13db64b744e70bc98febcf43d669667d6b25a669df6 +DIST ora-5.4.1.tgz 6904 BLAKE2B 25f5836488d7f329fae817960084751a37a6c2814e0ca5b92ebc8c1655c748955a84db4bfcd8bcc4ea1ae7907dcefbd585071db09ac4025220aa9213e7655b6d SHA512 e5be98f39b4fc5967b432b4ef81433cac5b7d47264bb6edc4489646c05da371f8175c562f8b951166557cde17a6bb242c09a72c397386fe61254899022b069b9 +DIST own-keys-1.0.1.tgz 4464 BLAKE2B 0b3b6e5b4df4a91149b94d5f148266e6c53768e27619ab7e677afdd8f852f0a6b0b8c8c4565a0c6ada30835ee3143fba2966f0bc09fcb579d786f8171140af23 SHA512 a853b22b93e389665df9040887ed6385d6fd2e9c53174aacecf9bca39407619d0cdef2aa4aacec65a101ea85a5c59faadac241308fcab607763796704284477e +DIST oxc-resolver-11.13.2.tgz 11104 BLAKE2B 5fb49829fcc32f4cbbf5143484f23e4bec5bead4ef74a5941223908c82d8454de0b956338608be800e0237a7fbe997b9e2109487afbe63e97d783c703c8e43c1 SHA512 d525d5c9843d6ea317dee668f0fc7cd441bb8e16643bd3efbd1e57f6ba18e532d8566e1903ba5b3c336561a0c105e17d53e60edce78c3681dd7b9da1adc0aef3 +DIST oxc-resolver-11.14.0.tgz 11173 BLAKE2B 74f264c60921778d8ea239938ab4f9738247148b30fb5d585547ed1c4d2e11f053b3fce5eb7a59dce6ea67841a32e4947793a533e128ae7cde05a441bd4ae0ea SHA512 8b8c0daea84e77ee1874725f1e0947b458aaa92c57bb3140f9152a9a658dd5a303debd47a944ab221c35eed48ee23c0a7e12ecf6ec35c3314f9af32c59a712b6 +DIST p-cancelable-2.1.1.tgz 4426 BLAKE2B 8d3ed6b134385d5caf1c2ad3da2d0f854ea3fe72989b264b713b0f8c7071d69f5d611a59d4608d77cbe6eddc60aff1f3e1b802ea5d003fb61dd56e58fff1a96a SHA512 0593abde74501ce9ed5234eb1fcf8b879e2c98a1e81f2babf167b557c0d2315ae5e40da66a538ec2e2519ca4438d29e4a1e061e1ab7a0701276f923b265df5c2 +DIST p-limit-2.3.0.tgz 3140 BLAKE2B 5744660a5c86f7d0ad174423062d813f1c8979affd05bfd8a8f678c5df709d4e855092c1c90fb39534a0efd960169374efeaf46f4270f98076e71e8308a5e65f SHA512 ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb +DIST p-limit-3.1.0.tgz 3265 BLAKE2B 55c007a9a54bfcee19d5bcddebafe71c3448973ef288ac9ec4dd40db6d665691886b1e18c9c7d55a2faddafd3420a2977b0ab545758611db44c4537c30d9121a SHA512 4d839a9ccdf01b0346b193767154d83c0af0e39e319d78f9aa6585d5b12801ce3e714fe897b19587ba1d7af8e9d4534776e1dcdca64c70576ec54e5773ab8945 +DIST p-locate-4.1.0.tgz 3060 BLAKE2B 77469902d77360d45f1f9246dd6f5a59523091733f3d4be75f3a3f9b82fd38c30eb5f28fdcc28541057ec17fcd214a9db2498861c18cb4c0f5c954455debcbec SHA512 47bf5967fd30031286bb7a18325cfc8f2fe46e1b0dad2ed2299ecfc441c1809e7e1769ad156d9f2b670eb4187570762442c6f3155ec8f84a1129ee98b74a0aec +DIST p-locate-5.0.0.tgz 3151 BLAKE2B 30f9021a60e18383d55ecc53416b9a071f20b79fb1a1aa6bee4739392669cf6b1e4ff8e131c336648b5c8b01df7d5423b0eddf99a0e2e8fa65d909183a9c818f SHA512 2da363b51594058fbecc1e6713f37071aa0cca548f93e4be647341d53cdd6cc24c9f2e9dca7a401aded7fed97f418ab74c8784ea7c47a696e8d8b1b29ab1b93f +DIST p-map-7.0.3.tgz 5792 BLAKE2B 70de845b558aca59b077c6f193e0f8d82f479f0628adece6fe03515e09d2f9e2394e8ee655e6d6477606e1bf6c956439e5cd917d4b61895536fde8cc25face3f SHA512 5649dd22fd9f201f7db30bd0a00eb96e6f9fb26b7a50d746788074a3106cf9684085d874f10034e095e923badb07daf4f3f9e46f2b0aa326bdaed0c445839830 +DIST p-map-7.0.4.tgz 5826 BLAKE2B 3e96db4f00e64e76ccf362c69f6f94e0bc60ddf1cde743fa91ba5945da57d1c9a99dab56e66bd096043474108cebfd5c90b292085a37c6cfd99dfb70090dbf53 SHA512 b64010130f32b0cce6921830f24fb553f88f856361ca42a74a4e11779ccba0f242b8968644fa3a629a2cad981ac472b30c774359666f13f4a4ee1b0bd97fc2a5 +DIST p-try-2.2.0.tgz 2194 BLAKE2B 9ae24cd83111ae5fcc64fea8aacb8caaa2145cf9151d234da0c03c0cdcd14c2844aadad59b37222e8e35cea4b60d1f4d0c3785a5fb1bf974b47badd8c3503014 SHA512 4789cf0154c053407d0f7e7f1a4dee25fffb5d86d0732a2148a76f03121148d821165e1eef5855a069c1350cfd716697c4ed88d742930bede331dbefa0ac3a75 +DIST package-json-from-dist-1.0.1.tgz 5750 BLAKE2B 87e5482c9013d8c5f56f9d79e14b69274093124276020364a312db0b6060893607e570e7697030e625cfb9facc9577d69769a4a0e7de51b23af7b55ff5d41ab9 SHA512 5046484b7fdbcb8382f2f2f73f67535d1113a5e6cb236362239bc8ae3683ff952dae4157fed35bc234d2440182ffeec2028da921c05a4605a670104772c68223 +DIST pacote-21.0.3.tgz 23275 BLAKE2B c1eb1c5e4bc294e0cb25dbd0b2def70073d4ec9d45fce12691849f349e4e31a0df5f2c100607209dbfb8848ed4710ab8d770fa94ee264c425cec27aa2a9c1e24 SHA512 8ad74595a9f13b49e642fe0e46cbc0f4ad70bf8d083df07d3a65aa7da256be8277d152b21eca8d80355e1be4d5848ec693b5d6f2c954cbb700f6be9d179aa887 +DIST pacote-21.0.4.tgz 23270 BLAKE2B 385032d68615d975bc164d204ee0c37d71c36a339737de2f2cbc2da00962fa574b85c56ad30fa28272e2c0879d412893e770f81dc6e0acacc75aabedc75bde5e SHA512 46994ffe90d6d0d34d0e1de99daa085983ef35e9d2ed4a8c6d7caf32a25cce8b221564de186c090b635004ba8a7f8ac62c57f008e9e7b70d5a129f498aa9b530 +DIST pako-1.0.11.tgz 204482 BLAKE2B 51de74b8461c2d6300ae34b6d3a6e47d3dcc20170decae486bb9056c8e1da539425e0a1fdc11605d2bdaa7e655618f808a3f71013463e2b47c03784627684403 SHA512 e212c1f0fcb8cd971ee6ce3277d5f3a29ab056fff218d855d4197c353982ab5efadc778adbe130553bfe95e19e2f5dc39e1db07dbaa8c153d70883b4cf8b5a63 +DIST parent-module-1.0.1.tgz 2008 BLAKE2B b2b3fabcb27cebc27e6e1a2cb19e38035a4177e2ade1295f993b8268baae1f91c521a6739810ee0636b5465672617378917df376b87f634b385d15743b599694 SHA512 190d84591a5057cfe8f80c3c62ab5f6593df3515996246e2744f64e6ba65fe10b7bed1c705f1a6d887e2eaa595f9ca031a4ad42990311372e8b7991cb11961fa +DIST parse-json-5.2.0.tgz 2586 BLAKE2B 8cf58227454b88081198219d4a03f14eb8ca5059ea831da5a74f8780242e91a1877a8bde2929f7bb5b1c3b6e098ac6cb46b66f73e2a63421253a4847f847db8e SHA512 6b208abe6fe98421b13a461148233cda20f072df3f1289d2120092c56c43eef7ba8c7820b059787d955004f44d810a0a8ae57fa1d845ac6cd05d9c1b89f0bc46 +DIST patch-package-8.0.1.tgz 117172 BLAKE2B da4a839c5e4ea7c858c0d22a67e1243a24fa5497dfe1282fdd44049c683fb98a0d5741efcfc4e5585276afa11307f609f0c27efb37b5099134b1f36034141b90 SHA512 56c291200f1fe6ea8743b3468702276ba071e83f6cff5897940d61b610550446e4abeb789170f41c7b7eac985ffd9f828b417f1c207686f9f4a8b74b1be43197 +DIST path-exists-4.0.0.tgz 2073 BLAKE2B e5d1442e89d9761dc192589ff29e15b3f682c8568b31263be579ea5b9218b3951411b6dca7bebbe3719de26c5369d53413632220e5ddde52bcc10af74a7a5425 SHA512 6a4f50cb943b8d86f65b071ecb9169be0d8aa0073f64884b48b392066466ca03ec1b091556dd1f65ad2aaed333fa6ead2530077d943c167981e0c1b82d6cbbff +DIST path-is-absolute-1.0.1.tgz 1882 BLAKE2B f1661c7f71a95ade2d402d25fa9ce11c6ce22a275ce6f4e7079c777507fbccfc65833ee677d7413d78c52c6caac837d503fb670d9da364b0a4663c8798730c07 SHA512 0156f0dd42767bd6eaeb8bd2692f409b47e37b53daf296c6a934ec9977da2223299ebe4394385f24eb8b8fd49ff7964f5430147ab0df124f3c30f98f7bb50242 +DIST path-key-3.1.1.tgz 2258 BLAKE2B 82fecb9f42360ef6dd3e0571fe9dac74fce7db36f95373b89ce9758962d79b29ce186b196fdc1bf1fab069cb14dac0bfcad6a210070323fb3a1588bdc417acf5 SHA512 a2399e374a9dfb2d23b3312da18e3caf43deab97703049089423aee90e5fe3595f92cc17b8ab58ae18284e92e7c887079b6e1486ac7ee53aa6d889d2c0b844e9 +DIST path-parse-1.0.7.tgz 2067 BLAKE2B ecc491d19354b91299023335e4f3b55bb7f5e34aea111cad518063364c6193e62b085e55e27943c436e7fd820eff81aaeab2e649b3d19ce98bc9760f1e064edb SHA512 2c32733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3 +DIST path-scurry-1.11.1.tgz 101719 BLAKE2B 546b25a5aa746a1b338d78237522edcdfaf168d10e04bd181cadf2138cdb47090e8fbbc38d58be53e3e09ca90ed38a109237dff6f4a8ee1cd06eea784597aa2a SHA512 5dae0dc35ec54bd02940527dba62e2252e28ac68e6ed9cf052bc1a99c190b874b30f2b61f5ba0a0dac9c61d0dc643baa6004d7c381c55e06aa59372d5bfbf51c +DIST path-scurry-2.0.1.tgz 101594 BLAKE2B b463493eb92ca335df358a4dbddbed9ed99ba2b1a93d3a0e75b5fb2b5dc966eb648d87fdf53d5c5cb312b78a1c72e04b9926070f5418941b4459d1622c47aea8 SHA512 a16c93e2020202efa4680ed05a4fe3bc21d66ab30a36cea95ce1962834ebedcc382067146d6f8f7937db69088b1a17854698e8e8ef49d0f9b231f40f8c7ef5a0 +DIST pe-library-0.4.1.tgz 29130 BLAKE2B 4a2c459b05a510bd7deb7ffa3255e4b3a6449d402664b4492935119662527450efaf513a50e7b75efee2c4e7006876179fa1d47d444909163868ac54393a506b SHA512 791581e4b073ecfa43bb83d49704f43e19d07d34099430dd3dadf9bab5783acae6d2dd00a901469fe508914de4959bf027c28f3b755b045b17aae03aa7a92a67 +DIST pend-1.2.0.tgz 2308 BLAKE2B a2af2f01e3c4b04af77cfede2988c055d373460d13fd14c3821c3366ead293808f1e7bd63ae0495485b4cc24efd90fc0fa5baae98aa51107382324f152ea2662 SHA512 1776acbf8d94b97721773b7ec57a9f5b538695505efa6c5ada6a88d29839c801d93ef16663763a76b49ffc643503ce9681610df4ace1fd6ae029aea219c1d72e +DIST pg-int8-1.0.1.tgz 1508 BLAKE2B 11b2b9147fae2d56cf66bac9e7bdb39e5ad21be56d1619ab8d5fa337747e315088b2d597ea2ba4d49e1002084bec801f8e6ca54ff48ab32d8b474b3b0e4eddf6 SHA512 582b5a6d2eadddcf129290c15256f59233acee5ebac6c19d2a920f66c838c11f81dfebbd500ba6da8752b05f6d9efc60f348786712d6332e294633ac148a90a7 +DIST pg-protocol-1.10.3.tgz 36541 BLAKE2B 4426cb30a2b1ab4033601aac61bc062409d6cdae69786a38da881eccfadb4057c64f655fa8354711d5dda463df12c491ca28250f387091d36531bc406cea5ba5 SHA512 e8320180141a4ca0c9cb19d768b88b47cc01a5041c196b80112911057fede8ec00f18b2a3fe8954a2a27776103cba63f76c1a4f2b87f8ed6b1de3b3935e57b25 +DIST pg-types-2.2.0.tgz 10344 BLAKE2B b3e41d3c294cdd9f7d1e105ee9f3b494e6a7a8e5f8bc3b7fc8de0f7262b66ef3aa93bd5f6e69d16d61e4da6ea6bcaecbff990aed5945e1337131eec3f5276480 SHA512 a9300096b12c97cb383a211063af700ef70c21d40deb0773e688d088ecba61132eca7c5e9ce3743b9a02a4923a96c85ceac720018f2abc9d8e9ffa7e09763418 +DIST picocolors-1.1.1.tgz 2625 BLAKE2B 4e08ddd9ee8afc0f237a5560f144a233b1c33b634bc7559b7a128cfdc09e3fec008c9b05795197173af5a2f542e0d7f6778c69943cf1e5844e31899721eeeb05 SHA512 c5c787dac9e1b5be4cf658aa0ec984c39ea57b7efa993664117fe311bfd1c4d1727a036e97b78db250973fd1438ff2dcbb45fc284c8c71e3f69eda5a1eb0c454 +DIST picomatch-2.3.1.tgz 24289 BLAKE2B 975602e4fd847aa9d0f0da7daed5a3848116adb7a2cbad425cdcb7a42c601c27d3c02d23f0891c72faaabf84b0863240375915f60f94a5109266868bc957d1df SHA512 254ded7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454 +DIST picomatch-4.0.3.tgz 22248 BLAKE2B 80722ab535a08a84fdaab7eb36ebbe8438598f5a3e61401e3067f2301c0875a3280c49ad73ed547eccd975fb6222336d99ae617313ae4f9381b51711f4e154ee SHA512 e604e680463fb2a2ba8055cb22c40d1f5f6559be1e6cf0cb03849d2cfeddb169085c75a51baea83ee56f5d21853e9a58673f190d9ab475862b6c77c109551bd5 +DIST pidtree-0.6.0.tgz 7276 BLAKE2B d6e7a557fb81c364b7db8d2af931a67708d0fcdc1aece118a577e1515403370194d7939b0b1fd7b1181411cb7237555b580c2d91b526c4d091265e697dd21685 SHA512 786d9d593570e5bcea191ced9c7131733371b79546b04e8ec137821b77dd51ff4a06c6733b7479388208cd647e89903436d67e44355d6a813674ad5c9fa8c7e2 +DIST playwright-1.56.1.tgz 866491 BLAKE2B 9d4cae0a4e20bf2e8a6ee0fde262494c85d047714ccc0e4de4d121be6d4037da1388f0f9e3bf9fdf13220742004266a593778a7de5e6cd58e3bc92d74ad769ca SHA512 6858b90745a8bc11d312fa4cdc3cd74d469e37a78dd2a5a74e42b1e0d41a1f85af726735e773dd698d9405d49829a198c3e532597495cb10d48390e83c4b6d8f +DIST playwright-1.57.0.tgz 871339 BLAKE2B 75fb06417ed4a483ae308dbfe728f41b83604803a93a865c09c955c417d387db90efe9a5699a0c86735bd310541e5b9833300d7aac96377be686fb564f428af1 SHA512 8a56108f5b3cb2bda9a4427661569d60137431bde6768f49d3043e52e0e1cd8a944704a85b89f55ece6fb3b391c200c69b2121df7b5131e4bc2a17643282d743 +DIST playwright-core-1.56.1.tgz 1970635 BLAKE2B 3700d181c273f4da4449b77e08232c70bc9b9826a7b465614ad8df928455050a12255b0bdf945a38e7f000d2c3172e75fd0904e7ae0bd1f6cdb56ef286fa6237 SHA512 86eb6b6b29f29f7d45f8189f99ef8fb3d56ae7d84ab940b3ec7d640ce701b3eda81a0b8a9164d4e746c15abb73df83945a6230a414d60f16913d7ac85e482f99 +DIST playwright-core-1.57.0.tgz 1987032 BLAKE2B 54234370872e394aef2bd94a2fe9be0f9288a17ea6ec140a059df376233f471f614ddf15603b86f208b84a6abd910b324c7e3ab2321789bfb4511c5c7c4a6b94 SHA512 6a04dc2a5330fe68c158e9c3ea4159b6d000187822fcdc34099da8e89a9649b325236d7d94014b6590b2a81c93b2f54026ae570391fc700e8faef051a41584b9 +DIST plist-3.1.0.tgz 145420 BLAKE2B 16afcb81815790e56e10c7ff432b3d52e17b3949f771ae123c0407997538f2e2035cb56d05691f5c72c9b4f298efd5495afbda296174d7852cbe8774144d0d95 SHA512 bb2b2e9b2aef9145f4ad7fdd115aadf200b7b13073778ce859f2de4b6f676f9de299d69756f2c83585d323618dab368cbaf69c371e2e250f3e6f7cd7474a6481 +DIST pluralize-8.0.0.tgz 6036 BLAKE2B 78d626414e17e792f4dcc8afc0aaee9067942b2972d4a89dcdf112f8cd6f2d2cf46478105de95ccd29bce8add2c254a8a858366bc0a417a77f68daf035e1f5e0 SHA512 35cdc84f9c87cdf9537db8e0a967023e9a3b0da2b2e059e907497fcc2016d1373b8f1022baa4b11dab27b41dc3efcf3b2d2ac0f7790327d217a2fc49631c8b08 +DIST pluralizers-0.1.7.tgz 2371 BLAKE2B 45fa683207302e940ffeac16c840f19eefa4907821ceae2f92594e2c0f46cfcb4aacbe486c6b137fa756d94cf0667e5e2a957998029d616654acd26afd58d0ec SHA512 9b0e807a352209a310eae3cdf4e6e32434e74790270529a71c7cb7b954dbc6b4854b13b9b1c7f0a53b3c0f1c9be93dafec64ae961bceabea66f72fa15d4bed38 +DIST png-to-ico-3.0.1.tgz 8544 BLAKE2B ac6aa6620bf752120a06fd842c733a15c7cd0cecca99e10b6a6575e1d2dde487de02567252f9c2fbec8ab463304ae546c1c7558fbc86230e6305307599134558 SHA512 4bc04e02868677d813e6e69e990eb66ab218dc9cdca3b51cecbc144ea472a890d3b0aa8e022c9fc8de1d49d4f40fe65ff17be0ced82945b339c2741dec4818c2 +DIST pngjs-7.0.0.tgz 160939 BLAKE2B a78cb4cd0e28fbf4b89207b4a0840ee0bac363ce0d0aea468165fd649a55c016dc5253918ec0a9d8cce06f83b0cbeaa7ef78c1f831a255b807a1707e2c58f214 SHA512 2ca5aa589461b2dc98a3da46be0a2bfe2be4db0f787928c4dd1195bb32c696bdcd983f1b7fb45c606cded6635d10744fe9344feab32e0c7939b78e219d3472a3 +DIST possible-typed-array-names-1.1.0.tgz 4178 BLAKE2B 8b0493b4c2d8d7d7807c0029a4a01dc598637d7c6aa2c857ca6ff3f02b4bc33c7a4dbd3525431f0cd4b5679deddcb8d7aedb8d0c4cd4f1d04ffc8a51b1b98e3a SHA512 ffee55153721243a158f76e1a2a8ba51eca6703d340c0c1bd672706a6ccfbc712ccc9e05a45e9234d6d46ce4bcc88e7aa87cdd57c78ad2a11f3928a87644ddc6 +DIST postgres-array-2.0.0.tgz 2213 BLAKE2B 073f5696b2c21cbf95c9e8c38317faba1fc64d48ee00fe85865c3da5caaa09fbfb067bb1213f6b5965ef33b0fb65249fa863567ca2413bcb030874ab86d0114d SHA512 56966b52a53903af5e4325b6739080d63b4b79c0ac37653f6c3e958a5ac50d6ab9fb95081153bb9dacd2dd311c1dfd73b8f60efeca86bd4bd6eb683ce915d9b8 +DIST postgres-bytea-1.0.0.tgz 1730 BLAKE2B 228b2db4a32011e45d0bc1776bd4230f720c1ff07bb03f43387d38a5355bdbab1b3c15d4f4e2e2f186f3a135c2be504efeaf7e6a92c5a8116ee6d0b16a7d6b63 SHA512 c72de998bb90a910590570d42f2eca6da8ad62a2dc9b18a0c35e10e6c8fc40154ba84c177dec9b20a5568aa0174e572f76f6f4fb190eb436df40c39fe25493d7 +DIST postgres-date-1.0.7.tgz 2836 BLAKE2B 95ec01aa9ad511cf45c46903af5d0e68da721686ca6ab8607fd62db80b7d8b3e2b4f7bdbb9e76f94ecbf51b7b6f533f7de397553585be1a6745aeaab6962496a SHA512 b2e0e68cb55083bf2730ad94678e788401be3805be1d03d9ea7fbe4cd0d45fe2f4fae5252f2c27a3124a0e8bb9d599becd30a3ac297436ae89f42e613fdbcafd +DIST postgres-interval-1.2.0.tgz 2926 BLAKE2B bb4dc76d4259ba41c156645210214c3846dc333f8ce9e5456fc38ae0cf04f17f324a456d0a1a5fa29b5d2e5c6c063302637437b763c0cd285ffe1b94c9cd9b9b SHA512 f5985728cfebc37e74375a2fb961db1b19c687f48d278727c4788cd2bc44e15378d70b20f0ff335a7f61bff6ee2b4d113f85af94ecabfd10438a9b72c556e465 +DIST postinstall-postinstall-2.1.0.tgz 1607 BLAKE2B 7da38a3fe940c4f08012aa4cb2539546e7f436b196bd2e7b99e775c799b8ddebc128d5c0aedf60f8c670584e5eda89a57f013d472809a6c9275cdc0688e496e2 SHA512 ee1417e999595c8a1189636b6cc41a2f35147c7fac4b1dfdbbc109f4762e0dcd642e8f485ca5a3339452aae64dd5a7791a71fc08614cefc7ec000422dce28411 +DIST postject-1.0.0-alpha.6.tgz 1405830 BLAKE2B e3d5fbbd7e40f9d628a503743de61fe3167904913b09a19a7c26f05e09625cb5b63b0963fbd1f68f08497dc5a7b75ed140d356789e254dc703732de25bf714c3 SHA512 6fd11bf21d9e56a344f1e76f29dc2a92b63a3bb900c2623c91c9c1bf535272895825ba39f57505d27a05abe9716c2d72376d1b982d160446c30b91ffec049bd0 +DIST prebuild-install-7.1.3.tgz 11276 BLAKE2B 656bc8c04f78d41e7e1c7f3365d9ccacd91e3a3142b241319a4d3dc721d3361b652d8da6147992512d7c11261d0d0d7c491287f31c099456b211e00a2a574b22 SHA512 f0c7f671b57bc757173d420b003188df0ba17ea5afb622c0d627254c36c54599204504b436ab0f6698676bd57e1f24c469d85eb8f9a368932c6f329014eccbba +DIST prelude-ls-1.2.1.tgz 9408 BLAKE2B dad1c8ef07dc9ba13241afda1eb12053ee1c58952ac2d0849138a9b633f4c76b904b4046f1862e9a39a143c1696545aacc8f0e9d7fc9e4b6e139d2e91b27d2da SHA512 be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6 +DIST prettier-3.6.2.tgz 2152632 BLAKE2B 72463afc3c2f73b35c1c82912bbece1f50acde62bfde103f5c777d2243aebe542ff1639803e22fcb643b3c430d6017f5d0e3786df1bce05c3602ab5fe97048b1 SHA512 23b0088396e802be51d0516d27aac27c3f8b16c587a7cd5da25ac50fc4bbf54f6d6fc033da71ab2677273129f2b3e6e94097d1533aacf619c0f35380037842b9 +DIST prettier-3.7.0.tgz 2178475 BLAKE2B 541dce38b8035c939b2e5a8e0810dea3cb37e3b4c7e941011af02cb67653be7dd06008040a0374f714133dc89cdd1d43933283621e39f197969e2361c82a2938 SHA512 a418818ff823458f50a64d5bedc0dd6ba45bc2f91a820a2cefbf401d0d0493fa1dc03c7ac46e83441c6d9e9d509b16ee0fba403bcfd243cbee86d1aff4ba0b58 +DIST proc-log-5.0.0.tgz 3989 BLAKE2B 7fc93ce4c9a7230c8beff21d0091671c48542b9868ed150d50775451eba65a0dc1f4c625149bf62921ec28a4b3d79e6ca07ffdaf0d1aed7b7b08bc4f49b45dc5 SHA512 033c33be5f741da174682cf526b0dd5d0ca415a91248d3da3e8899f5f9b9a8920c1e2a036448bb380751c129baad2a0fb58dd0bad9e6dcbee882683775cfb06d +DIST proc-log-6.0.0.tgz 3991 BLAKE2B c905c3c0e5290bde9fa9ac3e113463824f29f9b4dbe0271f3f51e8c174db70d9ede2a2813347b926496a35ccd4781f031096033e1d412934566c88c6f4b3390c SHA512 286fd7b130cdf74d4f35f3df00c9a3e8dfd8c20f6d33e6c72bca40cfedbb7d2e0de0f72bfb8ce860139c19206ee9c79760d3f190ba5ae2886d7f15755dc2c07c +DIST process-nextick-args-2.0.1.tgz 1654 BLAKE2B 89e07643d0d6f6fbbdeee65a7313219828b3b696e2004f556f156f048fadeffae5e88166fe166b8ca5d72baf5cb8a64c7721369cec09577846ca633a32a65794 SHA512 de8b943a9421b60adb39ad7b27bfaec4e4e92136166863fbfc0868477f80fbfd5ef6c92bcde9468bf757cc4632bdbc6e6c417a5a7db2a6c7132a22891459f56a +DIST progress-2.0.3.tgz 6000 BLAKE2B 55d307ccda73494ed07075dd377b581627711d4d71b694fd711d1e0e62278fd1c9f8d9561d562ec7b255ed708d801a19683d57998dd74a371ef8b3b325f39553 SHA512 ecf887b4b965e4b767288330d74d08fbcc495d1e605b6430598913ea226f6b46d78ad64a6bf5ccad26dd9a0debd979da89dcfd42e99dd153da32b66517d57db0 +DIST promise-retry-2.0.1.tgz 4101 BLAKE2B d9ae728ff9cccb8d5cfae2eaabf5010dec00ac1f0e5c10841c84850123bd6b855701d9430454b9c3dab0b3d346fe2818ec1c4efe62c2107f6b9f7e4d85cc21ee SHA512 cbe58a165051f011979ec3652071463d99b20dfdc314ca0b85a7e5027c99815eab1bac6ef89c1eb13a3643d47a5f0626b66c001429009377b7e6311da1e87fde +DIST pump-3.0.2.tgz 3719 BLAKE2B 02955ad809df8d2a3ef5ca6d77b245877439378b1ee83e49e118331b6ecad3d5ac5e2c581a7d261df6c751cb1af0b7ba2cec17d42573dbb52a77920431ccd0b7 SHA512 b543d7b7394633c144dcfd192fa0d5b3fdcfe7c93d9e4f3f8d97900aead327295003ca856331c57e104992eab21341627ceb10d2e2967a4899e60f30b6bdbc73 +DIST punycode-2.3.1.tgz 7603 BLAKE2B 7515ab158e12f6af144aaca1ce1922ab4a6940c2e3282a135565b1a8330a35623568b2a8121e8c725e41cf91839a06a20939b9396fdcbce78aacf9e30f1364af SHA512 bd8b7b503d54f5683ad77f2c84bb4b3af740bbef03b02fe2945b44547707fb0c9d712a4d136d007d239db9fe8c91115a84be4563b5f5a14ee7295645b5fabc16 +DIST queue-microtask-1.2.3.tgz 3676 BLAKE2B 9c6ae4155d63581227a2ed675f1e66ad6e73f25c20e5352879cd66599992ebe2cc587cc6f2530bd4ab580c1fcd153971f5d20de4ca40a6c69287bb2873a93b58 SHA512 36e68d49ae9f94a4f925a498433268934e09cd32f5080e9a1a1bf9adf2d6dcf82a03e3360a1a59427002f21f22e19164052f17e51aa40c11c0eebe217a3dcaf4 +DIST quick-lru-5.1.1.tgz 3387 BLAKE2B dc4fa002c962b90faa9093890cffe583633254e6c8d36aaf06db3ca826c74ad1bbb73ce385e3218acbfa72b1ed92d0aae594603085213fa272309ff6625a1b30 SHA512 5aec802d18d63c31adb7fc3326269d3b901763ef2167cd215697ba3328af82b691116ef9d57dd26e146f1b778b28e60dfbc544bea2dc7f7c1d9ede386784b848 +DIST rc-1.2.8.tgz 7148 BLAKE2B 5720d8c1a0f8001e6dd3fea0dfdee4c4f2e9fccbe578ee6fc5979f2efea623115f32b7bba56dd75e4d43a29f99363d09aaf1779057274aba2b9b1ea2f5ab29d4 SHA512 cb76c682a2a3dd005dc4b6cb9289a5a2192fb00f207408944254812670617e7f813f18386dceb677c4dc056d79c1abc37e07b10a071c72485c66fcb0c9060f3b +DIST read-binary-file-arch-1.0.6.tgz 2783 BLAKE2B 450ec37775ac34066291d7576ef14826c230157719af8d398ce12bc90c661b04f2f30ccc0f03a2f8397fb909258155eee751c71d5f74ea6b05ccae19cb66f2c8 SHA512 04d83d10ddc30f71ac0d75fb01af0ee29f76b2bca3926cd86209a04c073a080e2e18b103cc57f13b1ba0bb6d5a90ec697171e2120b18902ea73ec42f2cb2e612 +DIST read-pkg-5.2.0.tgz 2552 BLAKE2B 7d7939ab0546fdc20faa90410827d2fed713d83b427b61c9ac2431c3fa94ef4aaa5bce1ae5ac2dddeafd64ae139a6658d53f30a7dd1df7f64f1d9fc5da9971e6 SHA512 520ebd98d3a97ef28301cd90f034693238f376dae7bfd1dc48c5fee15b19c43d5a67a673ac813bae5cd706d593ca150b48c2a0d3be805ba591e626690f42623a +DIST read-pkg-up-7.0.1.tgz 2733 BLAKE2B b172b1d574630118e66c90b3c565615c60d2892d9b2c3c3fa02db9025eb4ead1ef1ce6a4b77ecad5fd0578e96a5a7cd81bd13103573e0540f51ad536a1589650 SHA512 ccad1307b5dde89a422e694b9ae7eaca4184fbf4e539e3c3eaa28294d5bb8470ca161fc9effee0096191ee3a044045b56caab76b7c9465239b3a858b150e2886 +DIST readable-stream-2.3.8.tgz 25747 BLAKE2B 80567318cc3262cde9b9a61e7ea9b07f0f2bac11fd7ab279948823745ceeee7174ca23a1c85a6664be24374521817acd734074ba640d0b38194ccb0493da1b2c SHA512 f29d00524e173838087b04a2d25f04a63b3e1159d688aecda03204194d07844efe67263c0f520c63ba1dbb9951ac55c683bd4bd79286f10acf9ae9b8e514ed74 +DIST readable-stream-3.6.2.tgz 33238 BLAKE2B d4f40db1f6f74cdfe1302097944cca5d009aab67f70765f1d92999a5c96e3113068836bc70c8f450ed42c83a586390c077c357db1e0aef02263a70cb448064dc SHA512 f6efec9e20ab6370f959db04447cc71381b66025eaa06e454c7522082e1221bafa5dc2d9058d39c9af442a361e93d3b9c4e0308c6abed497460404bb43d49ca0 +DIST readdirp-4.1.1.tgz 8049 BLAKE2B c5c302a81eea2830db7c1695f8f592303aae3803c756af9ce01e4a344c8acad7293a6749fe7434e926bb646047ec65766438dbc1a66eb698e31a5b8253c1a00e SHA512 87cd09ad9bbf3075190b21eee5c8aea08d3e5b1b02c73c494c82e7e85b3caf14a714f87e5151d87de2312b59d51ae80caa47c2e2f25c04e61b91f93060ad3e83 +DIST readdirp-5.0.0.tgz 7530 BLAKE2B de3a225244fdab369399b57821e4942ecd6df1cc0ffadece60b7e7e00f121671451c64afb71b291fac648f0b6d38639001f4c1d0f2eb411e6595d9fcc5c2d85b SHA512 f6efd7435a6fad0b58c8ca597bb0d72afda9e4236fc95c33501eae84b0274301cc4a028c051eb695cec01e58da7ad79e1d79f5d574c068b2d4559615672b9105 +DIST reflect.getprototypeof-1.0.10.tgz 7601 BLAKE2B b8a54b1b124b8a8fd6a08832226708f6ba1210aa7de9fbadf565bc4fac35fd93cdfdf251959357c84d95d4679d8c34e144147424b9f996509a18dad6179cd300 SHA512 d34a3823e0d5ade7e1bfe9d7d2e9728b76e248708f0defb22efe68fe9e9dfd45658ab8a307c135e85b5fc12022e20ded72aad0e25440a904a81446497a160473 +DIST regenerate-1.4.2.tgz 12607 BLAKE2B 05a37b512845e36241e9b65ad1ecd63c41a4979e6fb0481aef5e2985b512ec8f84266d08e90ca04b14a1a9300e8cbb4b0b8a5fb54e639c3beb08325a66209c3c SHA512 ceb71e47f5e119853f77fa29af610a3bb6911d47a2048f2a8ed7c7a800d3c1977a4b37f2d7a95aea4a83d0c214b39cf9871e8068a6be3e2c693eb476f3df88d0 +DIST regenerate-unicode-properties-10.2.2.tgz 111008 BLAKE2B 27abd45020f9f1d1083d2228a825c4608d728996532704ca1bf01c3280632caa4b34618fd959f6348177b80587502ca4bc9e3b02ddec1665543fd0e6a56f2745 SHA512 9b4dcffb38417907754469d8c6b1b20c03e9597fdea4a8ab2eba7c7b7a9ebd975590ab670ab8e359ccc86d873cfb177abdc4d2b5596a7f2713c75291e0b3abd2 +DIST regexp-tree-0.1.27.tgz 68410 BLAKE2B ed6e43b11920e67069a0b9ab493f2505bf7f3d8175f1ef439ced266ba7068cbf3374df53fd37a9c8cd3baa2cc581ae97ced56c39b54449eeaa7dfeec103455b2 SHA512 8844f1a632ba628456246e68ea15cbc2f8d80285be144667f68b343c3fdbe803fac50c2c6bf63b942560222c416d43cc7e1bbe8b62ed75e02a5538069506ab7c +DIST regexp.prototype.flags-1.5.4.tgz 13056 BLAKE2B 094d203420e530ab52314e400a5492a224b8a63c08edc6732aa76a29be2597ec6bf37f401ec83fd0d7005a56055f76ad27a0d9186636c1fc242da6df6a87505d SHA512 758aa035265b0f091a27671e45df688c21a306afa63a6f4b9ad5e7027106c8784dff947b8835b64d1c3787ea3f8c2171bacdcfd8b7d62088b0a3002300d9bb20 +DIST regexpu-core-6.4.0.tgz 35105 BLAKE2B bc497d0e1d60afada515074caab10aaae39a1332720abebe2a95d7b25f77428a91cd8903560785e3e03ea498e0e2d35718f918596a7e72231ca0931056240d09 SHA512 d2086eceaebb2c8f5b2d7a4e5ff2127ef7bf32adf76b8685473a106219e7a24d49385a6613f0364c11a43557a738611e4810a322259c73a315386e47110bf4b0 +DIST regjsgen-0.8.0.tgz 4693 BLAKE2B 5d6e44c96b7fcd127b334ebb5a9ab327e2c90b172907816c1a2cdec755c37475cc4fc9c2d43a9893aadd8276a7c244074bf7f8c0e45d6647d439cb6515e26dda SHA512 46fc2d19edddecbbd6883417790c3ca796ac65499f5351bf97a59b517787b5aed8d8f108bc14f01fa13611f99850af29c5cc4474499aa26ab2a74bd967b0bedd +DIST regjsparser-0.10.0.tgz 18864 BLAKE2B a12da246bbe8b65e057cd2dab5c253a3b24a8532c3b3c653f5ce7235c8354fe1dcf8254e4262e15954ede5721a5f35fbea33d374c1b2f26f62533c9ead1fa4ce SHA512 ab1fb1406655b32e79087d1ad61895c079aa8cbaf27e1ef04321791ced3b5c9f5fedd40c63f80f407865c83908cc9282fb1d9f502a42714383514505ae6ed21c +DIST regjsparser-0.13.0.tgz 20524 BLAKE2B ccbd2cc8da3c0ec452d634a77aeae3a53ee7ff81c6c4ddf059825f4179772f3d2285b2afe9a3f8aa877f040112024bc874fac7cce1f93adbe8535f7ee5330903 SHA512 359419742e70384fc7dd44f6f1f5462fe8a4399704cdf30693f73788df541b1cd61cc6b5a29ef6ef8a3289456b006e01d84b8586eb3c4af91a62786f5bdda9f5 +DIST require-directory-2.1.1.tgz 4372 BLAKE2B 0d1097eba3243eb50cdfeab59ad74abe7fb7fef67deb9ccf552388f1b004e644d16e6702ab5d2948b8e977aeb07415c8c429ca22db426e68982c2c774ddc088f SHA512 7c6c4423bfb0b06f71aef763b2b9662f6d8e3134e21d1c0032ba2211e320abc833a0b0bf3d0afb46c4434932d483f6d9019b45f9354890773aff84482abba2f9 +DIST require-from-string-2.0.2.tgz 1816 BLAKE2B ac0408fa672b2206ab4f2c323e0120be3a53c1a10679cd3485461f27c7d1df6b7b4c4261136728a941b32ccf7fa22fc3e92fd2ec866b5427f3df7f27a6c102ba SHA512 5dfd2759ee91b1ece214cbbe029f5b8a251b9a996ae92f7fa7eef0ed85cffc904786b5030d48706bebc0372b9bbaa7d9593bde53ffc36151ac0c6ed128bfef13 +DIST require-in-the-middle-7.5.2.tgz 6841 BLAKE2B 79fc81606f973b712edb0ae70446f84c2b553ebec730655675062c64b6d7c38163ad18e3cf83cb528433a0e286af2f1aff6561e127d49113e1ee6eb773a1b965 SHA512 80067e90ba817476ab5c1eb85e901ed950a307bac846ffa653cb5f456ce21d1279ba62ac207376b4b2efe84b4cc3b58274fd7d4b411154c95d36fc580879e149 +DIST resedit-1.7.2.tgz 48046 BLAKE2B 2763a290b155054683d3923cab0e1772d77209788130bbca634bb49086504f453a0993fdf2aabbacaa0918fec73ca0af613ad5c9c23d6df1b19e8007c122a3d9 SHA512 bc78dc6363250084c9842d1e443fd5bfc565826bbd49ddcb5fdcd9bed1b353964899d4cddfe77a7bfe269d3c95f2f11bc9fd6c80d22b5b185696bcace763a410 +DIST resolve-1.22.10.tgz 27550 BLAKE2B 65fbfd938dd4ac749a6c32a2628b453668d8569f1b9dfb661747e7f045cb17f68166ec2de630bd45687e606fe373d5e38dddde7d1e94d23113dba798906d715a SHA512 34f472fbf9dc20c78395302cbaac0a2227deae26b085e7c526d90d496d2a64912a3046fea81b7fefb07f8c679e7a4f85d2e39e374e420dae875db6c882d557e3 +DIST resolve-1.22.11.tgz 30870 BLAKE2B bc477a01f9c3b01a9d024a8402163d774ce019103b1d747e26797911b2c9e224b1221b28d154e9c8ada32a6c8e8d2915181ef35a763d8bc4c90eed528eb04375 SHA512 45fa80bcb9cc977d77afb73da1c941d478541007b37292e3cfde70147e0b56e864f4917faf6daa9953fd00c98e538bcc5fb43ca4df23c0d83f092a5d1673234d +DIST resolve-alpn-1.2.1.tgz 2231 BLAKE2B e106a759d6c788e839df75e065fd59efe93ad4a45db69fa1419114392769bd77f166607eeada3cd30dc1db44e6c823bbbd1923b04c0edaa17489792f9a714d89 SHA512 d1ad45e25ef7fd915939a9099d0dc5be4276fa0493416cffaf6284e4e7436344f13e6e61e0692a91659f338ed3ec7b1b9ceb5c255105e1ea42572eaeed0dcafa +DIST resolve-from-4.0.0.tgz 2149 BLAKE2B e02fc5ac056e33e1374c4200e0ddbca37a30867255573b5cf78264193eb5f7fd66320e119199782a40e91da997ed86833fd1350a46ee114fa3212949f8ffc03f SHA512 a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2 +DIST resolve-pkg-maps-1.0.0.tgz 5194 BLAKE2B ab93fd38cf92fa8e8c22c9b83dbb732c9744bf25505c8bee56f61c9a31ea0685c100698107790fd40e588aa966c2e1923eac4f25dfeb02ac972ace86f6d9be4a SHA512 b1e4b64e3dba4c154e0b6348736ace7b6cb664eede7f1213b4b65c1923a71c734e43b0a489405fc34230d9c93ac642213f02e128d2d2f013be844a6781096acf +DIST responselike-2.0.1.tgz 2190 BLAKE2B 82929071ea15a4d3abf62abe3c4cdbb112b86ed62a8691f7afede64bf87436131a7b2540c599faf0ba7591980e9a3548f1b7097c8fef1b8cc595a70ed58266b0 SHA512 e20974df09f7863d473f7cb381d23b777942905f79176d4fcf804f1af2878a7c90cc02d1e426a9c02f32222d11879f0310c43f4a0b82d37c058f693433f98787 +DIST restore-cursor-3.1.0.tgz 1600 BLAKE2B f011cb4b8878e845509a8951c4ce8cc1e6dd9cd76a62232f240dd59475cd9e902cdc94b3bf86c20ed23763c6b0bb7bb658e5d5022f2b95119ad24ca71fa0c2f4 SHA512 97eb1279fcc7a63e6a8a6845484e5af27b9f65800cdec05254c00fb589260bee041f66a7486684317483d22cd141bbbd9dfc90f72e49ad59a9ec4f2866b523bc +DIST restore-cursor-5.1.0.tgz 1684 BLAKE2B 88dc020c1b3f4e5ce981bfe9ace82ec679ec53fdd8dc12a1a8c0925087e8868fce871f71a526269bec0072c6080be5ed9e8804d27e30bf77cc512c85917ff6aa SHA512 a0c03675caf0eaed187f12505e6df8d9b14a5ff138b06f6b6d3ccef69b54711fdef00df7707baf4ad8983b01fb7ecce4665675cffb5af400283e4d85e2a20e1c +DIST retry-0.12.0.tgz 10431 BLAKE2B 0585baf9a534480fabac45492236479d02a73332c2086f731528ac5dbabe8c20990234100a0eb74ca2c606e856755f4df3e931e12098eb9aaaed79ea3287e5fa SHA512 f4b9224f08d487aad3e79e43b44f6b4d7f81281c8f7eb333100b67944b5d130af73647dfc228a1a9ed9b5800e0f8e4118edf6097a20276607f6450c2180b52a3 +DIST reusify-1.1.0.tgz 4683 BLAKE2B de118d03df9b7c6d0fc78bff635fd879f0f4b30e20a2919d160a31c5ecc12e7e32f4e15d5334da8933b56385d95e3561fed67297f7322db874fee4f2208b1570 SHA512 83a4147dfd38a19a47b34786e69f37ac52e11de574d2e83f61ff6764ce9f2de52b3e0b814e44d039da40596b29321e794d97d54033da37735025f6d5440c5d23 +DIST rfdc-1.4.1.tgz 6828 BLAKE2B 5396c932cbf19cd11884e507579e67cf17b60f755a8e3d95cc264d6e18fcd962df29b3880429d3af2710cba2ad3882e2f780e83d61700e17209ef53af215d02d SHA512 ab56f737942445459497b8b2ca569a8f790ea484f43768bd32a2044173fbdc656c37d730ddf771f17eb77049968491a2d8f3c2176dc88e9ee4b66777f6b6b020 +DIST rimraf-2.6.3.tgz 5537 BLAKE2B 2f68628b7d381f50aa925fcb5f19f52d987bc52d2ee49d5049223666acf624f16e0b2af6037411610ec0e96682ca838e5c39234119e5a5de2da0a7bbd39c8b43 SHA512 9b0a9e5b95ec036a807a31b8ea061d10d6b15e3c7da2744d09f9fb2f476eb8fe210ae4c88bf40eecf0cad3b2897e9d5dfa2cd63ebcc4243712a816b439942b88 +DIST rimraf-3.0.2.tgz 6480 BLAKE2B fd78b3e6a69473b66f6e5a8bdde62c5861afe28edc26e5d85a1decc75b0c8eeeb37c1368e3f0d066f867d121278eeef54515ede261cae95cc89c788ac0248d8a SHA512 25990931990018514f3f662a5d95cf6cc94c060b31cc4f082ece253085ffda8d0bf54070f4efd8de8eb0170fe2f582daa5c5095b0a9b8b791dc483dd0bad9320 +DIST rimraf-6.1.0.tgz 39406 BLAKE2B 57d0bfbe32496b86c2d67ed8802789e8cedda5436024ddfcc0de0f2a3db5e7d5a30e7efde46fd85310b8c469dc685c664ecaee67254a0594e00e9f6973b5f719 SHA512 0f17650356dd3739192bb2623561fe040c75c78b44256a13a1f228a45a3aa96514f788d8ac5674b9b634e53a87de758f2759ca6b52565450c8359ddf9eb95efc +DIST rimraf-6.1.2.tgz 39410 BLAKE2B ef16257d591c197d4960f19375179b9e6f80cdda58960a07f776bcd61d112ebb43740a8d72d8d11674b9e3ae819e734019052baa53aeeefbdcca543654d25007 SHA512 7050a43ec949bfb0405c9b1894ad5d66c6cff3f64d2e40804346e2d617f910a5f64077a0983144140e9086e609964ed40dd73ed362633bcd1848ead63e9c34ea +DIST roarr-2.15.4.tgz 17325 BLAKE2B f4af324603f22618d070f5ddfb5a50a14ceffcdf90f318af76a535c5984548ef71d7132dfa94b07f82c711df0c9f4c66394e7206822f1ca019efe48b82bdc06a SHA512 08784f87e50d1c3d864d735884f58b9d4f0e347748fb90c8fb811820039a883eb7ac7798959bf287c3fe8a7e7df7d4d348581462e294023cd123899d87fa7ed8 +DIST run-parallel-1.2.0.tgz 2813 BLAKE2B 08a2c311d0639f0072c941a29163c0813e4d18904f3f18e0e80f0c221f31a5840d8e52c687b131a6e1a29ec94f54a9ea1e857111610183b6ff6b42701c652ce3 SHA512 e65e15c9947ce8b67f943c594d1ea3a8bf00144d92d0814b30fdba01b8ec2d5003c4776107f734194b07fb2dfd51f0a2dddcf3f0e950b8f9a768938ca031d004 +DIST safe-array-concat-1.1.3.tgz 6542 BLAKE2B 5a10f9801f7c61ccb83df2735bba97529ff5e77bc1a17d68144b52465c6972051bd165d1cccf17f6cb775d9def4b5b66f2fc250be0858464327afbd133aefa5e SHA512 014466e5fd236043b27418fb550955bc3ae378582d8437441791f574ffba98da685ce328d6ab90a89e30bc90f2459f7ea4ede4196a0e766574f1c4afd9a255e9 +DIST safe-buffer-5.1.2.tgz 9822 BLAKE2B 709688b8776b6d6e4df8452f482d8c46feef1b826cc36f7f54d70566b191fc3ff18cd354d3cd9cbbd235a9c765efb02f8d713293cc3a598d00785318778a3c32 SHA512 19dd94641243917958ec66c9c5fb04f3f9ef2a45045351b7f1cd6c88de903fa6bd3d3f4c98707c1a7a6c71298c252a05f0b388aedf2e77fc0fb688f2b381bafa +DIST safe-buffer-5.2.1.tgz 9972 BLAKE2B 5291e5d14e580afa8945efddfc4c59beda822429625779151132f3ce19755f29022decf7f57bf84e43598c4d363acc6431af15cd29cc175e3c503fc3a4e895b4 SHA512 ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d +DIST safe-push-apply-1.0.0.tgz 4053 BLAKE2B c5a19ace60203d64ef14cbeb83c7208288678a7e6f01d9ffc70814ff8aae1342c9e78d9d764ee8aa04429bb1a78bcf008314fc84cc5c78b5130d62688e436670 SHA512 88a13dc3f67bc42cd430866a741b29ea9110bf0b8479b1f8bdda637035a7cb3688eb297a3bd147bd5a6619e96f10736ca18eb019b964c51e99b72fe1d345a248 +DIST safe-regex-test-1.1.0.tgz 5064 BLAKE2B 8b74b77e91bbb2ed6758d301ace9037702309ee70935dd538f01633518a1315d5f84d306195459dd72989f4ff0c0f993491f83299a4d64a6a642dc6a80465c2a SHA512 c7ff82cf862b8a643141c7097f998a11b21ad4dcde091348e44725fde92695869a9a974d2cf6a557221c09934d1f732f9aa06e815e53318657bf4963b255256b +DIST safer-buffer-2.1.2.tgz 12035 BLAKE2B 739b558efffab0ebd10a3bb510eedc1516be71ae4ca0a96cd76899cec0e3eed2e0eafe8e14b14cb7f79dadf40a8a01240c841ee40f50ab56cd9b290cf00609a9 SHA512 619a372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6 +DIST sanitize-filename-1.6.3.tgz 6448 BLAKE2B b2b97bf00048eb6fca1d2121b56dbaed48f466076d01157091c9f717e4428145b0758c54585b1b030d09d83f14b50dec3c50c5bea5322967b372c0b258a283cc SHA512 cbfe7631ccbb6b0de0466ec8adc183171fdb0a4e00851876788f65b8739033cea766cab0891924ab619e9075c1043f9298f89d73c8b63eab58665fa9589f0e7a +DIST sax-1.4.1.tgz 15623 BLAKE2B ed66a1e2d0dff7d63ab042279525c2b72efedecfe2e6428666b7e1a1e7701c1abea0ef5e95ebee9970368d2433ee75bcd335a37ed7abf73dc8eb7019353b6deb SHA512 f9a58ecfbc9549c106a0a35de0f035d0b67cb24d00ff3e7e9d7406e608943b9ae9ad7f63818b13768bfda827216623c865ecdb647fa346eb7c9cfa1d1405f826 +DIST semver-5.7.2.tgz 17872 BLAKE2B dd3265a9ee0fabf98c2db6d32cf6ac55441e725932cfd80ae5eb937a8acac908a8aa5cbfdbb9753e64a36d2275c0300299e2704dba63d45f4d62802cdd62ef44 SHA512 701ce79d0f4a8c9a94ebb079d91302eb908c6ab2b6eb4d161676e471a8b05aadf1cbfe61685265b21827a63a2f31527e1df7f8f5df06127d1bf3b0b9a43435d2 +DIST semver-6.3.1.tgz 19093 BLAKE2B 9c7316abc5be91329fa6db37ee75553d1c57fb4837f53c91d40e85a13db3b271d7cade2957a8182f348dadfb6e111b032396f06e885b66d4c91b022514cec5fc SHA512 051ed5bc30951cefaadb10445ac9314ba0c9135a919dbec3c7352ba206fbd425a849f89c07162c88019df8a9749a6abf329ac6f7202b464cab4314cee978cccc +DIST semver-7.6.3.tgz 27678 BLAKE2B 899166cb4e1ede1c02fb0d68c216844b316307946000034615ee196fba7dcbb71621f5ba972f42a26e344ba15b47bf50fb4c3104f9e4c39b11b0c84d44be66e3 SHA512 a157a43f570ab48f824c3bc759815470cb6c2bfd34c260047f2a8a7cd740466f2ed7035585281a5fb03c77852e225508e5ef38884c0e86ced93d8466cd4f54e8 +DIST semver-7.7.2.tgz 28388 BLAKE2B 12d59d9a65dee7f21e209b413fbe2246c2c156395de9257a3360eeeb3eb5d1eb4282d0d8a1b022682851be1e8a9842c78d35a0bf268dd7c682316e15b3055b5f SHA512 445d05c3eacee4031ff4c0326915c8e005745258f994c1ea571c5d4a08956e2c52097a049a65ff8e4d02b89c38fb74aaae860ef55a1487e1dcb898afbed25e98 +DIST semver-7.7.3.tgz 28442 BLAKE2B 3986669859e3cf6468817d5d0f5d7ed0fb4758a5334142bba55b3a8a67d37c30f76ed133eecf02d83b361f06c27ecd8b40e95796ddaf31451a7a82d0c1dcefef SHA512 49db0a32b23d4dd823770794491f4cc1e1c0e0427c6311e7f0315a0e2b2f85595439ee01175b4b0fb1808f4948a96565f9d3dbfeb131af406d6f2e65a109b6d1 +DIST semver-compare-1.0.0.tgz 2003 BLAKE2B d526f97c589e0045194461229e9fd00181cb253630d2cdbb484d9871799f5a579edc3be9e14216b4f43bc5afc5bd315679f1c73495e5fb619859ab37ac92d433 SHA512 60cdff213876309e4cb7368ce36f5a9e1fb1da388b563a882c5e26e28c90075f16ec681e6bb05fa9d1ffc0630aedd0e232086fffa586ef39d6330503cc9897a3 +DIST serialize-error-7.0.1.tgz 2756 BLAKE2B 851707fd8a065c88335ae1058ffd076faaf83c5e01093e996e5a489177a889f2227446fcbf3c211a9f4815368d82057c066c4304070ad8783d628ca372ac6589 SHA512 f08f138d6e4a30e2ac6504efa318ee4886bb7e80303d618eb6cfbaa3bb208f3e35fea303f55407103c62e8f06f2b6974317526a99c8da542be4f6b5069a125bf +DIST set-function-length-1.2.2.tgz 5784 BLAKE2B 61e3b21151917298faea8906aa9122790dfbda6b00f64ae585608f381ae32437c5c8513484595809a954e3d95d7aa66558867a4b27aff497b171ee6c36021638 SHA512 a6045ce21278fec363582492f409a74b8d31ddb34c0d39271e02f951a3014ccc899d4f741205a1d51cfe302f5e16ee01b8dfd4c198ca42e63fd6fdeb33b1cc7e +DIST set-function-name-2.0.2.tgz 6437 BLAKE2B aad84a98dc88b344818910e25a7906e7b50152151df309f8a7ce5ef62bac0847f69fab313a632f805b7a05f15283879f15b6965aee9e0cb99d908c616bf67754 SHA512 ecf185966b70b040036f4598caf08c6b5b7eca47ba75a206e168ab69fbabe6471ff8c8549cf9acd54791d02290753643f35c844b03076ed9fe4d1f9d32f89a91 +DIST set-proto-1.0.0.tgz 4194 BLAKE2B 3fb18049a2611d633f2d5f42837d53dd157e477184a985dfde259175b9265b4f244efcc44f262f9deab490fc2b61676d2bbded88383d37f81b80ad998b93ce57 SHA512 44945dbc2a3a2009cf76cbcfffb9ba6ec42a3679f5142057e5936d14bf7c326145ff8c402094c883561b1d6e430b65b948a65a9eb0ba8b81ec26a95a8f0fdd67 +DIST setimmediate-1.0.5.tgz 3255 BLAKE2B c47e1a138cef34b67495c308ccd1a30b697359f4030d0658df17a004778d03fc9e4f41cb9d23360119e62a7583ce79aa80b9153357b00676384e994ce1160f3a SHA512 3004c9759a7cb0ba8397febc2df4266cff3328f2d0355e81219a0882bb1c14343e46cbcafc1c5e0d03a0cb128aa21d32ffc87706a5459c2a90fe077eade8885c +DIST shebang-command-2.0.0.tgz 1506 BLAKE2B beb3e87ac0128e3bb1e54211c7d77c1c9a26b1218a99845bbbe0e4b35004725f8b49632c4bcff6822fbe2210961e3ff65b24e7739ce037ff8521bdcf604daa8b SHA512 907c6bdb366962d766acdd6a0e3aeb5ff675ad1d641bc0f1fa09292b51b87979af5ecc26704d614d6056614ce5ada630d7fc99a7a62e0d8efb62dbdb3747660c +DIST shebang-regex-3.0.0.tgz 1503 BLAKE2B 39a22dbe7504b006bd310e2fce1c7e75baf07f9a19da2778583f484d638ccb217fda56dc99e72843f069dba1429dc1381890aa7eec3ccb6fad9d4a91da2179a4 SHA512 efef9d161b5cc77df9dee05aabc0c347836ec417ad0730bb6503a19934089c711de9b4ab5dd884cb30af1b4ed9e3851874b4a1594c97b7933fca1cfc7a471bd4 +DIST shimmer-1.2.1.tgz 5158 BLAKE2B 20b03888b7687c22a25a88a3c674ba9ff3f63b4a4f8227c051866514143ce671c05f150f6ced6100aca5a18956a1ec755ee3b008bab0d8be4bcea04d7b5a2d6b SHA512 b104ca0b545efeb33a5f214ce9f20018744f546bf25df833203bf3a2aeb4f2f33e8dec950f44eed44e8da7429cdb3008156223f7add5dbcd34885ffd2cf89e43 +DIST side-channel-1.1.0.tgz 7750 BLAKE2B eaa6bd86fda4951dfae7d87f9b6ad77dbbcb6e2e06411bb37447060b3f809fa13bdd8939bf704d788de1f1f481869594e3fe267a9aa54d1f6b723db6fe34059e SHA512 657f7d7bab51c1ea145ea47e541aec96175ae75361e4c4d0c28bb9b6750381bb723347418268440ed5863ffc5b2a7ea1a9f3d11ee8d4370cf97f2ff06db867a7 +DIST side-channel-list-1.0.0.tgz 5659 BLAKE2B 8975407842290c1e93e4d3193224c967191daf694a89ab2487ba7a866c781d1d0a9bcd8e52785e6d96ff5df95d76421832085c8884619612e381d8227773283a SHA512 1422c7b510ff827a428821c48892cec1d9853fec330a60c491cf72ecdb18c5e178bbb06db27d59bb0830246c4898898789c240acb3f8474c97e1cd8a0ab32b4c +DIST side-channel-map-1.0.1.tgz 5280 BLAKE2B eff3b624730c09b13d68e7b67c08dc558757b885c46beac2ac81c9ef801fb7d1955f52dc5594826c0f587e28cd2d0d974a1fb1fc77a1c85a9da7546d5c94c9b3 SHA512 5428c235f80cb1bcb7b53768d369db8ed33f7b0adaea33c79a94e17a7913621f291bdb9c67fd4ff12a38bb814605e93f063a4e56c0c23282c0fe2b8128815744 +DIST side-channel-weakmap-1.0.2.tgz 5442 BLAKE2B cc8cae0865d40da6a2608e672f5b1aaef16b544071abbef0c666156b649d306323fc86d560bcbcb65065b256ce0e5839c34d82f16a3a728b9ae1302ee43f6aaf SHA512 58f4bf1ef1d04d89c78ac2e8f4c72a0473899361641cefed969be5772ae77a6e1a790a7885a8b7832b61b3083aa74d684a84e5e7cadca621408c5d9baf6024d8 +DIST signal-exit-3.0.7.tgz 3851 BLAKE2B fa147e1212b0e532057f1c9db8f4c91528fb75059bdd991c6a50101fed643099aae28efbaa27c57dad18e6e05a890e000515e55d7183e692c9659e79f26f4603 SHA512 c270f6644fa5f923c2feea12d2f5de13d2f5fb4c2e68ca8a95fcfd00c528dfc26cc8b48159215c1d1d51ae2eb62d9735daf2ebd606f78e5ee2c10860c2901b19 +DIST signal-exit-4.1.0.tgz 13369 BLAKE2B 8f3cba37ea92637525671056202d62b1e9fbb67313745a6e250a520dc43b519cff3064c921a4aaa7b74012492c9b8302e48922c5cb2713f76f8b5a5de5f5624a SHA512 6f3c99d5ef3cc3d3b588d25b2a73a5bd84eb58f0e5e3a3b56c6d03dd7227bfef6d90faf1acdf235144e21650e4926296827d4ce827c8035dd2b86a8e6bd2a8af +DIST sigstore-4.0.0.tgz 10117 BLAKE2B 4d7bf2e4fca9cb62d26479126d0607b6a14152d3a0ebe2987abf6a2e0199acdd9b796963add247ce139900ed05d5b9c00c9472c3c751b0fec971cb9e06da8e07 SHA512 1b0fc5807b6b2ccf563fc3f994b7121a1f4e41cad3aee58210b0224b8f2293541b2f4707f9d7e3a268914d413dcf3cfe0f537aace2e4c1752f5665d902c344d1 +DIST simple-concat-1.0.1.tgz 2092 BLAKE2B 50600de9537bac62505f59f7da777da062bddd366990f588b10f427fa620318e2c5bb69f7fa9d4d7affc824411c5a9a1227685751b4e052a78cef8323edd7c37 SHA512 71216d00fb518658efebd20ad214d5650f8e7c4f6778f8bfaed266c395231de57256ba04a895cfd6c173b4a532d6a53ec6fcf7bbfb1f6092daf78edbee700dd9 +DIST simple-get-4.0.1.tgz 5530 BLAKE2B 7a19146afe8ecd730ef5dcacdad20558377f572b74b36282c6458936614354c7e0b7b5a65b91fd1684c356661010d8273a03013e3f85b64d896b953bd1c5d169 SHA512 6ebbfba795a01f48e6409af56430df2833927965a0f8e572a46f7d03fe6f6063ea27aa7189a1cbcbc9f1b458c103ba0c6b4d5e6c0f607e1d6e30216a3ae5f1bc +DIST simple-update-notifier-2.0.0.tgz 7774 BLAKE2B 85d9c206d5d1f56e471ca1334d3c18d2a1dedea753fe5ffee73e5a0a6e62e3e2b2e2918c81b47bb37261eb5e4f3b3dc8329e5ed9e74b36cac0b514b201dc5a69 SHA512 6b607d6342a535797dbbfbec5bab1322ef6f184a5f2aedb0455ea5d47dd711ab3fd20508cc6cc1a0ffc8a2e4dc5106e6f495992c7dc23b1ca7d374d89456b1eb +DIST slash-2.0.0.tgz 1695 BLAKE2B ea7014f7ee511f9c09e9e7eb5fea9e715c27c96fd1a9e99f53ee44f433bc90b9973278da6f84730cd1dc99fbe18e8d70fde6df4c9678e4294e12e79cc0291832 SHA512 6582a1dd6876cf53e91175abd0ca52059d15ea66470107d87afb6d3b5d5ce7509a5a319369a762299fb056dd4f6cc943579aa1305b25a5909e9a1c0e2bb0bcf4 +DIST slice-ansi-3.0.0.tgz 2915 BLAKE2B 2f9f96629d938bda2ee2da30e2442e8b89242dead76e6df3bb8a267ccb029bd1bdeb9367aa224ecfc8dc352bbc3bd5e92a73357be4f259c5bf2a10db22500acd SHA512 a52cafedb4930bb8a0f437206f0f40b913546f993957aa03b9d8d9a0c052af5deaa4b046eed07ece00a40118eaef121481dcf93f541ef2efab486768b8e388c9 +DIST slice-ansi-7.1.2.tgz 3180 BLAKE2B cead15300812c43bf5a6e206bbc16f545ef7dd63b74423c30d12d982b558c9dd43407f60118e3dc77878f50266c0d8eed3f8f064b30b2f3e4962bb95033de9d9 SHA512 88e056160517edc688662baeb480b15605f549dc700151452b0b7512f31861e73f3563b999e389e8ae6e43186b6017502677b82b18aa65cf8aa6d14e585488f7 +DIST smart-buffer-4.2.0.tgz 21539 BLAKE2B fb6d7db81aa68a6e4d7d651f7fc936132f7be8859981b7142938a16e69c7e4563f9994e59569c3002f5553f88ffe4a4dd12364227d0b1e4935bdd9df9530ba30 SHA512 f7884ad0787cacfa90976c577371ec681a0e5ca576d0c4e83e4717bf06c84962c4b3eeb8b01ab9905827da42431dbd4faf2f72acfd1dc6b088f5145c8bb4572a +DIST smol-toml-1.4.2.tgz 19747 BLAKE2B 54d367ff0692bb09944fd12702403b275400693f03e0530492c3c76cd32f7bdf8097780d0c2e9c6e099be080c2f3d07aa2be8bfda3f162e6905c8709db05d0c2 SHA512 ac89c31fa9423621329f7fa11fc29518575b8dcd3df63e3bf8e4a06ccadf0d85f50a65cb7dd29deea8ba21f7168f6c05c6f49592e238e8cfb03c661f10e123ea +DIST smol-toml-1.5.2.tgz 19922 BLAKE2B 5a8fbf86fd3a82d98cfd17b2d5bf290f539019a868d6430d0f32340d3eae8eca36312296f4ccbfd68df42aa93d498fda056cc54004ae54b4d4fb617e0158ba4a SHA512 42569912a7001f7fd1b4dc9eb7520f2183ec11601a6325d7bf52abb22fb52ff407a698d7e087e6f0c42c0484b3f6f13c70789c22addc96882c85e8a58b9be169 +DIST socks-2.8.7.tgz 29891 BLAKE2B b6323f9840c131220d2214f80d8e2c8656ae9e578b18397db6989aa75353111b1c08aafdeaea4808d4bfdb4ce136342c9036cc89922a1a85d2ba649c0a17c197 SHA512 1cba6dfae2f2fe9c41f9bba6ffd0f302088a4bc097d44bdb5b1238ce59a01821312262dd89a776882c174f967873d73712af2b3f6df5f263d6d9cf906ed8caf0 +DIST socks-proxy-agent-8.0.5.tgz 6814 BLAKE2B a3a808aaac782f4462edb96e850997e92d7ef916e528d898d3289224896f14798c092bdde2891c22e30bbacd17e814f358898d39695f4f8de1b4349d1b5cd453 SHA512 1de84212ca2d16a6cf5bdb09f1655807a51b98832fee4514391205d8d9dcab8550bc17cd04b89b5bd619479765602494870703eb6f29465966ee7f84f984f327 +DIST source-map-0.6.1.tgz 199644 BLAKE2B cd44c893274129a1e6a2af1dd7e60bbc58a386d95318cc933d948a9b8c4eb2f008128565f7294295c035a1eac3b94017d9511ffac32aa62fcd6b4e26afcce6c0 SHA512 52381aa6e99695b3219018334fb624739617513e3a17488abbc4865ead1b7303f9773fe1d0f963e9e9c9aa3cf565bab697959aa989eb55bc16396332177178ee +DIST source-map-support-0.5.21.tgz 26650 BLAKE2B e22a3f602e0a5e06c726b568ac83548622d637b732921749caeb4039b63744930f44bbe2e4967029edc96bfbfc6eca065c5e2f25c434ece6c192d3eef2255570 SHA512 b811d4dcbddccec232617297f3c7ddac6a2fc5d482a13183459e92617b524712d95331e0e4fffae87b7aba85251eef4466877e8a75e12a8dea420c17513ff2d7 +DIST spdx-correct-3.2.0.tgz 7240 BLAKE2B 0ae95a52ff01ee80abf88071a222737d8916738fdecc45da10d2e5afa24c2cbeaba018a92e2ab376152aec65709e65a72011c3090512a327b8ba79f74129b2f3 SHA512 90df5d25bbe7c921d42c896e0c7cb7d961d152edce83b07db1b63bb6c14b72d42422a9cc877844ad881d3234d8baa99c5d7fa52b94f596752ddc6ef336cc2664 +DIST spdx-exceptions-2.5.0.tgz 1621 BLAKE2B fd488925d11c37edd06898504dfad9f715a4a10d4a0ceba140c2a63af9c73a33bce667f655e01446408c69d826d54723b2c3482908fdcb42769c647ba7e7eda5 SHA512 3e2538dabfb13b851b512d5bba8dcb3c992394eef8df45e7e5254085da73cec3c7b236d855f9679c57404e069b9cbb9d7be0aabb6e69e8dfa0da5c3f3c5b1ae3 +DIST spdx-expression-parse-3.0.1.tgz 4427 BLAKE2B fcdbc90a20791f1d48b0b1c0d001b283c0352d3eac766858ecd57e9942cf97c9e56178f0030c1c2ada43fbd6e5cc208f7d659a0f70aaf604e01791f69608879b SHA512 71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1 +DIST spdx-license-ids-3.0.22.tgz 4728 BLAKE2B 2436e9c4968400d48d1467eda6d3f41ad57f36681fee8176dcdd6c909f47f0a06220d175db4a1c3fc0a8e3d374a51b9b2934b6f97d174f2ddf251aeeb74afcb8 SHA512 e0f453e2787510898f6edda301238a1d7ecf07b23e7b821634bbe42850f13612657e36d8965798421dbce59ff798f4c74802bf02f74c9b0e4134db981fc4a181 +DIST sprintf-js-1.1.3.tgz 10968 BLAKE2B 5ee47a0b4b0f1178fca747e1dfc82207ce52d381ccd531f4e77d0bb3bf8c07ba70a1d08742e51917ed030abda153de2e2de38bdf4d985671a8ceb4cad701eb31 SHA512 3a8fb4444155e7dfebcf781f24d2908819707c7692112975a5c1b200142c9e721f58e16de89363e600a883653a30b67ffc81980fe9c0f2723e9934a144445e68 +DIST ssri-12.0.0.tgz 11552 BLAKE2B df9548f86a86fc202e549f251a60d2d2ddca204fa762fba6482efb5394b5f518afd6a26d1111910667395790ec93103955b837fd3065ca9ec7c6f13f58b3ea94 SHA512 4bb886368b1ea71f5169d5fcda88a6524bebd02b7b22325b11bb38989713c6cb7cba6f79277b03614d510443af76eea82f559e9363832398b8300c3e759e9c01 +DIST ssri-13.0.0.tgz 11552 BLAKE2B 85e3983c5671d9662e4063e5ba1afce581b033bbfc3dde5ed2edc0849c88710981d7c27fd2ea6e1d1e34364ea253fd5a8b80abc00f3d1ebb9e24212260ae25d6 SHA512 ca2cf0181a5b0a7e18a26076973859aab1cb268a851978a135b89bde8ce1a85fdc229e6e7bec5298e42b8cd6ac104eb6845c6c09c83f57fcf6dede27f233049e +DIST stat-mode-1.0.0.tgz 6189 BLAKE2B 51299191a97abf802206aaea737bb9e497ac5a86c0364ff675430d434a63ec83e8c817435c8cd2c1bdb941e3fabda78d1d99a142d36a2807cfbe53c1c10498e9 SHA512 8c7f4486d2888ee5d9d9c5b19974bc64ff345f20b789ab10c4c0d5f23ce1349a5f0dbed56d02d55b85afb31cfd419bf357e1b862849f05454a0cecb12f38bfb2 +DIST stop-iteration-iterator-1.1.0.tgz 4949 BLAKE2B 476e754a5a0bf3bb26e48e3225a2e3de9dd3a132c49bcceac8cbe15ec65e212bf9f8265eb83fb4384bffcde556b285c068ed8b64f9eb9b531dd7ca0681191ffe SHA512 78ba175bf0c7ca5eb6cf1638482688827461b8cafaae2e23b84600452f04eac084ab32a93a2139db551ca1f771f8a9c3665e719af19869a2829391443b1242a1 +DIST string-argv-0.3.2.tgz 2956 BLAKE2B eedc3f55aaf1040c152c5e9647736b560d93dd672c012a8b1f2a9ab1ffdb55c3dea4fa9af22536249526086f51eb6388184d0295c61cc149f5f264e084645692 SHA512 6aa0f6434d78e19fbf46a1b9d8d78712465ab930145893bc73ac937ed18928edd38dae6d52021f98897a904c6f86dc520cfedf5c1e83bf391f32909dfc5dc6f9 +DIST string-width-4.2.3.tgz 2383 BLAKE2B 97d93a484dd17cf2f088e0bec61a1a8e9415964b0dd16de9c5dccef3b614213862cb1d0432c1b6a8bd7514b977b7d292ad0447cf648e971cd195385ee2938a12 SHA512 c0ac90450a63274b08a7ad84ad265d1ac8cc256b1aa79a1136284786ee86ec954effd8c807a5327af2feb57b8eaab9e0f23fdcc4a4d6c96530bd24eb8a2673fe +DIST string-width-5.1.2.tgz 2557 BLAKE2B bbcd1084ce0d3aa3782bcd7e3439d24f5e5dca64b3d36c77d9188bfc9cf1a81c336dd204cd6569c56a40399970a03f3bc3e7d5a564bd3198f666c2ad1dd9b500 SHA512 1e72ce091def8dc63c6dea0d2ed723679fe7c67d9a7e6304ea586b0eb79ba24a8c6a9f976de5bc9fd4d7a4f0cea9d18ae6a708de84f418a4d6eb00bb10c895a8 +DIST string-width-7.2.0.tgz 2989 BLAKE2B dd8860a4f3f5c73731e78a1328e0404e910568f00774af483611cdd3b57e21c858e84edf726cfb4ad5cb92e0a0ec126b55e1a7ddb56120a76a310fae7246337b SHA512 b6c693224296f5be0df80123f92540f96849cd5effccc85c4aeefc98b2964a4edc5cc3921ec04a15652cd1f5b0abc4322b73202414115fa19b8b89186ddbc691 +DIST string-width-8.1.0.tgz 3223 BLAKE2B a90f4846fa50bb42112d028720c268fba948ec51e7a4b267477152c6cccfa877f6ffc16659ac9fffe6171a4764db336882589ba772df978abfa6f01d22e32563 SHA512 2b197728919bfe0c6469430e8d1b10f08ad78865bbe4ee04dd13e314820d3951fc00c976490ff259d4f35b017715ebc85fd2dc3008c95be191c009406d349776 +DIST string.prototype.trim-1.2.10.tgz 11013 BLAKE2B 242c83ac58c374c9dee24e20506d3696afdb4500dddd1de90c5be85b487d5a8fe4dcb85f26014e5c9a9721a0aa849291b631da21dfc2bae0ff0867c0529a9ee2 SHA512 46ceba1743ffd6479d9399726321fdb81cee888fe43519b024047daae2ba54eb48a59d86fa131977e1d06dbbf6e4c80203a8047dfa0c658c654e877859c76b28 +DIST string.prototype.trimend-1.0.9.tgz 8088 BLAKE2B 23e3c02cc1e1f7c73fd766183ebc0911d0c613461aecd9ec521c06ab97a21adfea5da415b03d500e1d6786cac99760856051a95e5a9ba5c1361510900e0deca3 SHA512 1bb3a4e42e84fe3e1219fc8b0a5a174eb9e0408414dcf5ad5c6b2ddf233b05e6bd1515117f54b8d991e5659b6c36ab9ed853763e85217d95d82cd5b012be1d2d +DIST string.prototype.trimstart-1.0.8.tgz 7820 BLAKE2B fcdd590111ff96e10d2df4dfaef09dacc48845a412994d6fbd1d3ac643315dfadb7fddca025e399959d36ccfc75c882c378adbba275d905de698898a76b5ad31 SHA512 517487dbad82499635b5fbb71b749e72beae18b08554f32122a1e3960094b4209c82285873fc4ab3d76331331439bda3d66552794f0453a35673f890294e867e +DIST string_decoder-1.1.1.tgz 4831 BLAKE2B 758f860c2eb59cc9b5b862c65813fd7eae817dc278fe3dabc1d2d19a202605a85fbefea113d1323dc421908c7102131af0ca222853d227bfae93c03eece05a84 SHA512 9ff4a19ef0e2e851db6d57ef8aba3e5a88e2173bfeb3c30f30705ccd578f7d4a4324bc282d3d21b759786300426e2f29240bde104767907c8fc933ff9b345fc2 +DIST string_decoder-1.3.0.tgz 4622 BLAKE2B d8b7e544eec0099b7a420f8e96968708649728224e97ebec8edffcad4a1c8cdfda5ba4a1a9a92d24cd2d16f436743883fe0b43d99d3b40389e5c3e29283ced44 SHA512 864457f14d568c915df0bb03276c90ff0596c5aa2912c0015355df90cf00fa3d3ef392401a9a6dd7a72bd56860e8a21b6f8a2453a32a97a04e8febaea7fc0a78 +DIST strip-ansi-6.0.1.tgz 2041 BLAKE2B c5eb8b50d005ea59fda908a7aef3eb8b27234d19deaf022ff48c652204ac2045d279baa76f3e633b80187bc939520b2c0b3b30f7010525c1f86172b53902204d SHA512 637f153d21dcaa416b0a916743dbee4979aabaebf9a1738aa46793e9a1abaf7a3719cf409556ba2417d448e0a76f1186645fbfd28a08ecaacfb944b3b54754e4 +DIST strip-ansi-7.1.2.tgz 2101 BLAKE2B ef42521cf05feec735e596a726dd916964e451d3c1086f3577b5e4026eabd4569d1956489abf732328e2086b8346d611a1445d4207ba821fce1192d4a29d36ac SHA512 826046b25a68409b609cc02f395a86669133f5dca82930b3cb69dfcff9fc68816137f8c213fac299cc5a6c1ea338e1d5fb458d9f294ec5ac4140f4af71692584 +DIST strip-bom-3.0.0.tgz 1736 BLAKE2B ab46143243158f326dfb187310cc740f852c25148367b779b2c412e48856c6d8c744d7533e4ec8935bbe151574f90446e4df9cef15584d4f3ce62653e8871281 SHA512 bdabc03115ce80154d17a9f210498bdc304ad7d891a437282305beb3043e09b1a2bbb963bbab7e264940d4c1f07a85ad69d82de0849552c5cbc83ab7e1d75cc0 +DIST strip-indent-3.0.0.tgz 1719 BLAKE2B ef7b5b9cc9003557e714c0d7c5cbf027b04797b478b905f9238d75f86637045d33292f17112f417e8467e29d12df08848234bdb6c197b5de9144b550f6873f49 SHA512 95a2536b725bf95429682e83b1e1e117b75756a1d37c93c24436846e277f76b3a1822b60624bbf95eb4c52a397168595d3320851b8e9747dadfad623e1b40c45 +DIST strip-json-comments-2.0.1.tgz 2270 BLAKE2B ee13bc5338281a608db275112a792a2b1b3daf2d6cd6a8686f4e080ca5ebc832b8b4cc1a32705712bb9dfb633f136cd709bf77f11201f03d8601440460b8a00d SHA512 e2007c9dad3b7de715564388e91b387bb4fa34e4e48b91262fb4d476e4ece9bbb711d9d2c9c9ed549e2b7bc920640fb0c7d22e788d98d756df6e0c2dcee13429 +DIST strip-json-comments-3.1.1.tgz 2847 BLAKE2B 94baaaa178902ba8b2b0161e86091e27deb01b139448bcddaca601ebb1e4a0be73a4664ae4206ff2519de9bb8e3c2b80ef1bce47a37f963291bbf53263dfa9b2 SHA512 e9f3dcf91e22870a8fe8dfda22fd9fd60307f25395b56407a2a0b8c8aea8483555a1cba602c7c2aa39179ea89832198cc12fe61072e9ed57a196ddea97a9448a +DIST strip-json-comments-5.0.2.tgz 2992 BLAKE2B 023db0e033ec2cac589eb8e402b02b1a5ab98ba2ef7e736a7f90af2e3893e1d9175cdb43bcb0b011f3a8d3c7dba1efafbcc95d35849922a2bc50db157fd18464 SHA512 e17d8547753084d504f46e3d688b095b9851451dc65c64c14d944c7efe7af0eeb4a2333c1dc5a357f5710310835b7494343df73ba658eba66e45c7648fbdeada +DIST strip-json-comments-5.0.3.tgz 3004 BLAKE2B 3474eddf59cb9c4b6cdf5914e5849d7f49e77676c023052342c8a21974a9f736018d5c08ac91560869641942cc16da8dcd74bdfaf02a297b12145062a3eaa611 SHA512 d6d0799a1568ed4f844c128d7fddb14f886b41ade99b4319d0f42fb839d68000061c3b1fa7894f4a9892ea9b2b4a27adf3bc3218f87d7edeb09a138c4348438b +DIST stubborn-fs-1.2.5.tgz 5822 BLAKE2B 9f4e8349785a7f4fc96b1e1d8d0ed1265d3461ee79e12b8dc8d275fdfc8e23c6549ecda586f41c9c0bd06b62a493a05b84a978f8129e7c2a0dbae20b907284e4 SHA512 1f637d736e9e5e3ccbfd2fcafa2fd11c77056a713be1da6dbef8ccf22c33c1b55c598ff38c16e046a1772b40d8e3e383fae4d30124c1bc3a313c368f374d83ee +DIST sumchecker-3.0.1.tgz 87152 BLAKE2B 9d1c1f781020f80e9317af113134a570c429ab158be2724dadce1513989c11c6b58bcc4ae48102f9eea73c9e6859af21ea1fa1657246eed88f6be65a6c636092 SHA512 32f8d7ce4cff04e7f2543906d2814eb41c475f6bb780a6cc1c817f7576e566c803dc158e14b987a2f229658ec1ca425d02372a442062d5660135d102f7223bbe +DIST supports-color-7.2.0.tgz 3210 BLAKE2B 9a670249661259f3772e01bd1eb9e698b25ebacffbb1f390f3257445b59d93890200e7043999521bbc78b0c7c49f5b53fa41c18c6664ac198e6e6de2650e0077 SHA512 aa9080bd197db2db8e1ef78ab27ec79dc251befe74d6a21a70acd094effe2f0c5cf7ed2adb02f2bf80dfbedf34fc33e7da9a8e06c25d0e2a205c647df8ebf047 +DIST supports-preserve-symlinks-flag-1.0.0.tgz 3810 BLAKE2B 2ce1b3b853621b46e7cbd3ce6c68c7ad2aa06051d9032191967cdcf1839303900a9b4b6fec7432458350a7a1a1db4713a4001c18fe3d523c58e92346c2f7a27c SHA512 a2dd169d74bd7e076480871e3dee911cd935580f3e9ae3dae9c4a3791dd5f0adbbabd041d6b4c4dd1d69ec7bf4cf567201cf2ce95beff0323259febcd4c02dd3 +DIST tagged-tag-1.0.0.tgz 1452 BLAKE2B 43cd42a3da63e2acdec011c294e250d8c3c56fb9865f10aea9ed2bc276fa9c133a7a5a47c36a5cb3abc85063017d0251c548a68d3315a667eb9a37de1edef8e1 SHA512 c84158ad586877e85d372c7b8390679246f41bab22f0726eacea0e1200bc07f3b4b972c795a7b2ffae4a46fe9cb9604d84180728044e56973b43262a1398059e +DIST tapable-2.3.0.tgz 11386 BLAKE2B 73b8e2a5628b451d39d1358040d09f0a885f6a7c76a15d6fa143afc9af9395c52d2fb3e4d76592a5a32bd98841cdfa4eefd89fe00824cf155194a4d877796f18 SHA512 83d963662c248bf2dfc664000ceddd118d426e99974f91e6d9f27e41a18ac125d4ca53326de3d1effebb616ee33abaef8c480bd459b3e64cf202359558b96e72 +DIST tar-6.2.1.tgz 42735 BLAKE2B b8c823b785d2437fa6878e13f0070e989f6a48c0f602b6e26792598af5821caff6e6e30064116b38eac42fb17b010206a6dc3050fdb362c3be2cebefca0c799a SHA512 0d9e323914f0adb4e3ffb31962adb0fbf645748e8e67f7fd4851d1fbbd6021551984e40f1f35422e9bd19cf83268ca5f5b1c64ff838dbdadc6412c8d20a46fe8 +DIST tar-7.5.2.tgz 191299 BLAKE2B def2df308a26b750c856c4831846d3a272b026a9acc7cbd7a1537b256d2b97be76828a456e57c02832e504844af0c7ab6a6b087762accd2123d75688bca49e33 SHA512 ecdcb1ad313802787c926f22132ee8d1060fb3ed092814e3e596aa1e0e81dfd7ab2e0d2a6173770628ed4a1c1bb0d4af43e2cdef9f8a57e0b8411fdfe86c27a6 +DIST tar-fs-2.1.4.tgz 7490 BLAKE2B 7c5afe6aab1fa40f0b184ac3434161c9ce1d5f3c14065da7e0e16d5cf83814d7c8ba3ac5d9d53b5b049e55710f51d726f97bf6db3627bb629daed6148e6ac053 SHA512 983023c2665d87b2d34faa4d95e674e58b7ae470b713e36243397aef6bd01b7f2322b7a1b4993f27798dc0883ebd28503dc2c5fcb57b08c9c35babe38fab1f61 +DIST tar-stream-2.2.0.tgz 8650 BLAKE2B 43c7a90d2eb77bbba81f03719f4e59f5a896820174f89916638ab72f98963e18970885547b6d4a7b1475982548743aec4b7054d23eea73d3235e37762e2497fe SHA512 ba37aa6dc780060c0c6711099e4d870d8d83967519fbda0471bd4acd355f6078a8d1413a746ef59fad1df03d88e2a36f95e5abad7a668e9b7bbd9785d4b9cc65 +DIST temp-0.9.4.tgz 5744 BLAKE2B 7672fec119adfd72bcd09374b3d704ffbabd8ae134dea6c8f986b7395c9064ed8d65c3918e9e48ce857fa269ba262c9c5f49574615bebf08e31f2b834aaf8832 SHA512 c98aebb169eb5cc71db27bbfed83180287ccd64b692f9072eef6617f5e42ad78a3596ac461992ce405c1b9d6a57d25892e59de9ff4142540796a807492a65418 +DIST temp-file-3.4.0.tgz 4581 BLAKE2B 35da8468deb497a23541c488647d93697b67e94d294916ebffa53f980c3aaa9ec4887a7a9a5691065272219d123a23bd1f9189a2dfa9952420f8133a484ffe78 SHA512 0b9b63942fc70ad5543a2dca595a24778bc755588e9868ed2f0221e0cbb33e8fe73184d5fe9d6eaeddd19cccf62165c374a106247de4e7e28fc6da91b14606b6 +DIST text-table-0.2.0.tgz 3897 BLAKE2B 700a5a786c055283203c29777a9e0fd3e256c153d80a888c99247ecd1c660edccbf4ac97565e98cc66b3707db2f996be3e0af2e9c41b40e3aeb2ac3a4fc71555 SHA512 37ef148ac0170c693c3c55cfe07033551f676df995277cd82c05a24c8a2a0b9bf98ac8a786bfabe6e68ef3eeebdc131fb8d22e7c8b00ed176956069c0b6712a7 +DIST tiny-async-pool-1.3.0.tgz 2677 BLAKE2B fb2b50fa895db07f36a579b1f1d62ebec3ae63841ee6ce4c2e6ec69817e4297a34a6e1a50e83233176aaf8248a9e1c52a433fcfa2ba7447441f5966350d87253 SHA512 d35100c39103adc56b760c822e0a123efab39c2d2c5710d255e88ecf4f455298e1ef51bbf550aa9de3abfb1beded3d6befa085e9965f3e31e8acddbe77ede6a8 +DIST tinyglobby-0.2.15.tgz 7740 BLAKE2B 5ff2c7ab11efec435aab19dc1d1dbedd83fd2962fa9753ac7751706af711cdb0d5e9d217d0ccb209e9af931e6412cec4ffce85a384a9c95d95093ab3db3a5d84 SHA512 8f666ae0dc90606e573124f871bb34d8093c88951dc513345c8e50cb15ee64ecca3883665aeae9dec997bb7cb9c03709ae9b70a528e05c7cc8431474a265e58d +DIST tmp-0.2.5.tgz 10990 BLAKE2B 6606188064b5a13050eb497bed6388397d38db68f3b5e7208ca819f0f0d6d84c2ed21fed3179814c11b9ad2235978b0c16122e1c629cc7c00662768b5abbda89 SHA512 be8cb3e8c0296b5ad0194c53dc4f812bbfd139ef22b44c7bbc3f3f1c4bede31c17b9cbd0e46e687848879261d926e04edb546939ff98626f4c3a2be3ef4f63a3 +DIST tmp-promise-3.0.3.tgz 5179 BLAKE2B b03e242f78e9c55a77f1814a60335cf566622a2a4fdfb311c25aec02929b0798c41073cd208013a4473fab3055720825ee0ad73f2ae23ea3b1fbf512cd3f5c1b SHA512 47033b3283e88cfc6c381627c9dda1cb46f1b48955ae284db3da63e5252f63c673d6c41c406dad1b5852afc3c3c5f80407c44d28386a6c896ba086ab48d0cdb1 +DIST to-regex-range-5.0.1.tgz 7479 BLAKE2B 999ae921a17bdca8f6615022f230c18a94df14c59d8496524dfee4f6ed048087e9b44c2af9eec973545ba363faf293b2c494f09788903976b071695133412537 SHA512 eb93fb8b3e97e7212bd5cc1c82f4316db230ed493780ecb974876d678ac3bde2ea86b7493fe2e2fc7c7ab722b43446fed860b29de08c2621aaac00c248d93cb1 +DIST truncate-utf8-bytes-1.0.2.tgz 2234 BLAKE2B 768dce87e550232d1d306a0106a84997db6fc98a429cc3dc0da8de7b167e9b4e5ee85fc6ddec9c6f8fbbdcf5caf6a243525fe2e926ffb6d3552c086307eb21ed SHA512 f793eed505d0bebb86121bfad9708c3b7326f741ac70e08296fac853008cd0f60e5cade4685de5dec207c71ef54e125f71b3363b902ee923b701609211f5b899 +DIST ts-api-utils-2.1.0.tgz 51777 BLAKE2B 1473611ebd5e9eb4d3af5ccbb8f7238792f971c4df2db11d8dfaee482adef7b9c253411a0c5fdf98c534ff3525d6946e0166c5a725e7c572c80c112b081837c0 SHA512 09481364bd62af0f2edbd6f3ace0ff9c7f398eac9cef80fa4ac84582e8ce200ee8b26d91cfb7581fbeda824c7b1f81413710eaec28dff888da5fff33c055be65 +DIST ts-declaration-location-1.0.7.tgz 6310 BLAKE2B adaecc0972ee68a0ddf36e43058ddda2063ed6490fa2c4d4189d0f1ac6941bc5bd0bd8896f4446d60b954d3ee6eaebc1561411211e41ef85b5af11fa2517013e SHA512 103c860301f580ed00bac9bd815e93da752f0605d3e641a808c24f96539aa2867ee15bc988a05d644ef02b5f0dd5d784a3085c529b52fb919764af14fdfbe9c0 +DIST tsconfig-paths-3.15.0.tgz 44053 BLAKE2B c6448d638bbc4be6ba5ffdf44f1d510d4d6a83b0da78651d02fa98501726c27351563517abfae0f40eace77101fbd6acd332b58ac58127c5b9f3c8bac8a25447 SHA512 d80736460cc37bf727e3c1af39edccfa8f36a4415ec03dd43dbca85071dd29ab07c092a376ce1f2d759ffd4c799004c128ddb4a1a146bbe8db125a75a68b349a +DIST tslib-2.8.1.tgz 18477 BLAKE2B 832f91e2339ec80648ab8db58af086a04c999b92aa4b79a3448c5dc5062332fb6fc9096291d7fb79a1c9c1f08d7e97693117049e34b8182d4eb2ada41a17aae4 SHA512 a0916ef781d06fe29576e49440bef09e99aa9df98bb0e03f9c087a6fa107d30084a0ad3f98f79753a737c0a0d5f373243ae1cf447b525ca294f7d2016b34bfdb +DIST tsx-4.20.6.tgz 154267 BLAKE2B 148996a64d7d36daa50dc5cf5753b102074e5974aa79e0bbc6b502b6c89f4b7bfcb58e14c7fdf16023330886a5229fa45b39989abba785cb8f381915c180c82c SHA512 cad40abb0826aeb9034c53f82e34744e81369ea832f3ce86a6f452a54d09027add058a69b98e6b2e445460f535c82af26f6e12b0a0532ff8650d0004155c2d66 +DIST tuf-js-4.0.0.tgz 10465 BLAKE2B 175b0c6f8d14722edf3d3a74d0b20afb348ac636cbfc416d2472e6b5856a9ebc43767e178d48ba2223727b2f6582056a586f05ee9d2f301f3d1490a22aa8a851 SHA512 2eaee279e1af5c35f0a684a639280b59576c18657d2786bbee80d300f7bf2edaea9e79bf1136919410104c7e496ad121f0a5ee13ab1d75ff6a02fd50db6f361e +DIST tunnel-agent-0.6.0.tgz 5828 BLAKE2B e30acbd791761fffb4fa865b1c1cafd52a97b516df7e18f45c7897dea53e90de326cdd75e25eaafafba52f25cb309ecdec6d209e2a163b3eafb7cbacf1ea3ac0 SHA512 31c9cd895d65f1161e63cb41804a6ea1d082d662d475b48df826012fb909b093489ce3fc5230c3130764e8cc3ad2f74b2ebaf934729984c00e4ab476359b90fb +DIST type-check-0.4.0.tgz 6779 BLAKE2B 62d61ff21d8f2e4d528b417206e36e076586b59b25b0976677da8a76651a1f962f9ee9e38215cf4ce10d74653613c3129c1f633ca7ca8ac08d1029c742445400 SHA512 5e5794a1cf6ec065ea8d6c176944d9026ccc705679f39f10036befc7552be7121c8b15c83fef0b9c50e0469954df4bacead7aa765b2415fbbe69ee0aefd3a87b +DIST type-fest-0.13.1.tgz 30612 BLAKE2B 53c90bd6f3a47085d48c578b890a8267e2ccd6ca3c90b9fcc4fa00309820fcdea9b505e291a1d5b304edca65b67e03b92191c1c0cafd98f15d865300a583fbe8 SHA512 df847b1d39c6d172097014a7e5784377b9cd14f45c5d8459ac10763b68dd2aa60e0e5752cc102acec5a865862f76e932ef7b68612fc44aac4fbe40dffc5d1732 +DIST type-fest-0.20.2.tgz 37225 BLAKE2B 85224465405cf12adaa1c8f786eb3f629dca5d00e77cc25041bd7f33a7ed7fdbc9b45d7c355319c6d02544dc09eebc79022f9842d1ee81722ab5837336ba95c6 SHA512 35ef9e138af4fe25a7a40c43f39db3dc0f8dd01b7944dfff36327045dd95147126af2c317f9bec66587847a962c65e81fb0cfff1dfa669348090dd452242372d +DIST type-fest-0.6.0.tgz 9565 BLAKE2B e4f9210e0b8da6428d0f2b6143d477a8ee751e7dea050f500a81bb160dca73b66eb31bdcd3d4373ba06926ff0e89d1ae57d1c467458ad2dcd184933cd3b57ec3 SHA512 abe301f27611d4a0cbae0af81b9c9e99fb69302eff40ba959dd06610476ace6363e5d70538ee0ea3caa5c1913750b4f7f998a6d45f0aab87019e290d86508c96 +DIST type-fest-0.8.1.tgz 21970 BLAKE2B 0c93e7cfd2c37f8e361912e9f0dbcc44f1ac2c5b5940004946914c5f38bb0b06f53df5ffa2ba7aa91f9e81ae6daf1cda22b5a52d01d50957177466c2ab076f13 SHA512 e1d6f3233aaf8ed822339af0d64e6b107b4100d2a676e7611b20446a3374d5f13285a00886ca0a372eb2efe20df7721fa45b7063d8aa8bb903fb1c0a850b0d24 +DIST type-fest-5.1.0.tgz 133145 BLAKE2B ea01f861c10feb15e7d4af970ec8c95be248690b2d325f7570b0d32cc999bad954efea6863efe562bf50638d68e3bab111451161bd123da9009e463ef5776ad0 SHA512 c10e77d6db96bc1ea82bea5c84722ee651dee5fe70a520aa07c29fe1d59045b39873d1d381eec92f41b841de386e1e90b8909c708ccbddbba06fc188d0cc07ae +DIST typed-array-buffer-1.0.3.tgz 5117 BLAKE2B b0108e56d7d7143cf9c4e60480253fb57901cff02e9b0d95bbb15f21ba018c776afee376abf5f0b65f562479526d22d00f199451fb714e91b93f4b23563bcd98 SHA512 9c0618c1f637aa7cd7df422403a01066355bb4ae9db86a27b5c426d56486d4c0fde182ea2b4e75e46340a57928c4a39632eb15b2c00758b87d49e6a879f6051b +DIST typed-array-byte-length-1.0.3.tgz 6319 BLAKE2B baab266cbcb3f646f7caa470788e9e66a502d9751e7f7af81979bec568b79011c3f288290506e9d3cd6f9dc29b8752d382d443db078469052a1c0b9d1cdaa0b8 SHA512 05a5e03ae231cfc9fca48ab77bb02d83feecf83a6262bc67e2f768b77c3d29b9c185c450abaa37c5e9907487f29ea49e5de0eb177db1f96bdfce63a33e263d96 +DIST typed-array-byte-offset-1.0.4.tgz 6633 BLAKE2B f24b57d02e0368b4879ed88cc9b67d759240bbbd97b8a39a6f5a17652f2caf8b92c7279ca0a2e770398a673b540198b6c7e891b88405730194770cedd635a434 SHA512 6d3940141fc505831cb97f3581b2f839ca47e4f9a5147aa5082a4097c025133333e64e77a0d0ef37ca753cd3962c4988db1e28ae9deb68e141e75b6ff57f8c15 +DIST typed-array-length-1.0.7.tgz 8167 BLAKE2B 05973af8e12f5b81e1d1ddf629dda12b60018be51ed408f1c3657896959281f515923b29cec74a8e056a85b86fbd3b060f49f632163f2bd122ced661d32ca720 SHA512 dca4b66fe90bedfb2e93f78967b1107671264286a1a3fafa29479fee1c6f96d340e4347c34050cfbcc0931b2726781bdffb8b7bf9ccf04830de5ac9b021dbf26 +DIST typescript-5.5.4.tgz 4043150 BLAKE2B 6171a4bafcb7d9dff4cd603846980bcfa599c4ee13d585760af572dc410a584f729485bc2aaf5cb5e3721d37b7cf8d4f54eaf9abda86eba04bf54b50ac80db9c SHA512 32dab6f6c28300460feda963460b4f3a94ef39f6f0456952e9d3d1cf08dd13e0b44786eb5ff194ca11d279c6c73052cd04b70920fb7d9e5f721b94d9d70787f9 +DIST typescript-5.9.3.tgz 4377468 BLAKE2B 851466b0e045c7ccd7b53c65c5c0bcb35a9ad89c4cf7afaa0acebcd41ff6580f9b2a8902b1f82ba9b46d833ea90d3e4cf529efebf3a2b139f276ee601023d758 SHA512 8e5d6f6733c38a72ebf5e52ddc9feded5e8580d130f508ef04f772b33f4a7d00c3e357d0ac2d98e2f290762694a454f86d795bd511e12e9a7cc2d9ba3394e04b +DIST uint8array-extras-1.5.0.tgz 6397 BLAKE2B 1a1971013a3026a17180892b25e68ea162462b6633887e47557d7b8d187480431fa1f2e755db8f733f1df553a1d5bede8317beb76fdc6697e9193334a89d25cc SHA512 aef2920620b9cea08288367d9003accd9703bdd007c3020a246df76248f8dce29c5ac9e670144bd3d6135389ce78767c6366bb9753204ddd3c4817bd03c423e8 +DIST unbox-primitive-1.1.0.tgz 7004 BLAKE2B 5abd09b6943e05b225ab0dc0c4b850a02911d224a7ab1bd79f00b5fd43b7d988cceeab2e6141313a4eed38e37e57f2460d0c662b2677371a25fd1f5560b0379e SHA512 9d627dd438de3a47a3fd303ca574379b2aee2a9284620aafa70f65cf838f1e3fcd585365b98ae36f3f63d35089f322907768388c5a0e9083424d6d88e4b104cb +DIST undici-types-5.26.5.tgz 17979 BLAKE2B 59dc1eb6fa8049d6b20966b544ee2fb85eb91430bf2afcfaca379d560b32c9a8cb43186118f6c4973b76edf69df9d98aad3b23051ccbeda03856b1c88eb41b33 SHA512 26508c3be7a174420aaa517193a21f568014566833edc53bcc3fe1f57674ab37a8b121e650954ecd242fbd84985979055c2f887cb29221f7e1bf4b1566ea7aa4 +DIST unicode-canonical-property-names-ecmascript-2.0.1.tgz 2282 BLAKE2B 8295e39b70e2c0ffb709459cfb0b9173c45b3ef6f8e71d96731011a9909663fa0ab7205af735c9ceea173e85d2d80f16a320618d3799f376290cb7247828202e SHA512 740f166cd79bd9aea8433010e796254f9bd0016195f565ceb22dd2b241376dc09d3343f848377edb8cd2fce09a71d46ae4191db118fdab73e0e98c90a31206aa +DIST unicode-match-property-ecmascript-2.0.0.tgz 2267 BLAKE2B 8b9f1ca87f1c861eda475049396fc8072c50c4424ae1517b72f3def8123a3fdad1e2f6c7b20910208327ddef096941e17e49505993c37e874399cc1f205bd142 SHA512 e646990ab6e9e6699bcf9ba50640e46d8d12b0f3a32aa552df95692fdba530f7d29742745ec9bef44be986ff42a08645c2b7bb689a1af78018eac78c28654de5 +DIST unicode-match-property-value-ecmascript-2.2.1.tgz 5597 BLAKE2B a86e8a43bb5275026d80fba28fac57feb46c4130843e637db37814800c03cb2d307bcc3fb46dbbd8772a7586518e18cb9b913b64efc927cda75891199afe16fa SHA512 250f38a93b8c8389d5931f206b8035e9ad5ea48f47eae4d70249eac64185fda15f44bc35c42fc1a76e0734b6998474a459ddfef38b7c8979e9d49d2461c64786 +DIST unicode-property-aliases-ecmascript-2.2.0.tgz 2702 BLAKE2B 14bd8ceab94e457a3ef6d96aa1bef1e9ee5012e339ba380a0cd01fb1a298a149139a1f64bf8bc3b05538781a4c9f8c8f3e2a590d1b915b820255a47f131047c1 SHA512 8696c3cf1518f411705fe51e067c6fdd2875abb1c5c63e3c0d399772136045ae3a94ef2e8f7ff58849f732235461383583d72d22a5c2084467f206198470b995 +DIST unique-filename-4.0.0.tgz 1852 BLAKE2B 2de4576a1ac5682eeed7b423f0635a410a00f3baace4b2346cd276fe39bb6c12ad7d4d15deb1e8746602c3c021429ba5ac2844b798852c1eb9fa971b15c88d13 SHA512 5d29c47b05e643ebde3fbc57d9d4b9438c9902f3b8d1c04dd8c5a427b0ffeac5b80e0eb060137033556b9f3d45847e4075e2c89545d123d7b6f33d58662ef535 +DIST unique-filename-5.0.0.tgz 1856 BLAKE2B 02bc0e89893f6ab1dc5b550ffad38be4e0b475cf7374ec112b4c0611c2c3bc7488d3d030b98e6c6bc872b802ec08e538c13b1e9e2fd48359ae421164cfd0a3df SHA512 d916894c0bc06f8a30ca39654df5f3142949ed6b06c65ca490fbc2afda40fff2c3f60a15abe9b83cf01e06036874667b9d2ae7b53fdab96a49e98e4815771f8e +DIST unique-slug-5.0.0.tgz 1553 BLAKE2B dead3e4978e7ac1f86e5c00a43bb9ac6e7275c7a28c0295f21ec34c3e6fbea5290dbe81180342587e734d1f0ca8d51618ceaa77c38908df67a26e20583e4f596 SHA512 f4e75aa8ee64c2a47ed645601c086ca79bcf354d219f145adbaac114d7cd80ceccea936d8337819f7b3fc5bc8240bddd723cce6ad71e7fa5141e907fe8c6844e +DIST unique-slug-6.0.0.tgz 1555 BLAKE2B 9690306f152cd3a4f03f342700c1697846d3cc3a89426ae249a571e7bbfe2d4646c5dd7d131aecc62fdbc3f5bf9b18485603c05f25d77b90d4993b37e09a63fa SHA512 e0bba9ec4ce7f16ddde76ff106164155dc77db7724c5aec312f77d90f407a694e42e8257c3a96dac10b28f9a67af18f4a8a0f160c279e82a3136e142b1c7538b +DIST universalify-0.1.2.tgz 2039 BLAKE2B c246da4e9d57a00cc7fc6e13c8ca8a8f211d3c59ca5f2c5b9a13234038d9bf485f46f97f9ff13529251102d49077c6b7a478bd91119abad3b2f78eda502f5446 SHA512 ac125e2390970259b2d6957eeb5ed607d27add4e9771acc71c5d9fd9d6c98b1e17ce9505d114b765b8f414620e080bdae4ffddfc604e61a002435c3ed1acd492 +DIST universalify-2.0.1.tgz 2068 BLAKE2B 2c1273456a3e771ac1efa46673e5fb31f05973d01a81c47303ed4c21bebf1c112856f55a90471e66ded77cb59cf53d3237b37676908da1ef545be8e25a7e45d4 SHA512 829b4735082120d9dcfef4c6224d12385185357c3b255ae5454b42a2725196f6b0e83b97d303b925e928f6c5ab301861f8fb18019ee85c088e9dffd42a88328b +DIST untildify-3.0.3.tgz 1577 BLAKE2B b98a2296c054e6bb92c5fe694aed633e5a36bb3dc7cfb9540c00629a335d37111ba1065e54d35cab5629c4272a69ac9d5704e55c1c5313c28712b302ddadff96 SHA512 89293f27c79fafcb8f4ff678792532c27ab2ad053b0d274c7dda8ae2258469455599c3f925c9e946a995330730727988d404c53600b957dd2ed3db41ca734528 +DIST unzip-crx-3-0.2.0.tgz 6095 BLAKE2B b74126950d13c8922557c9e01b475c1f138061b76745b47405bbb457b8195f51971084aed143c318258b63db660ea5152025adcfeec4486bf9c51816838d9f77 SHA512 d3e26252aff3edf689ea889f541e674b0b79f3dbf528276ea8826ea4d543a1649766d5839a30c63b744010ebf0274ef0f746a85e83f87a72ac47b79c32b26d59 +DIST update-browserslist-db-1.1.4.tgz 5204 BLAKE2B ed1a0a2ddec756ec26eecb3acf59837119f1cdce0785673d94c65dc0fda71c54b9765b5f1505c74d311f695066afccc4f1fb6998a331f04beb5a5f8e2c1aa8c3 SHA512 ab448f4f8c7253ce2c6945feb689b3d562e4c546ee6899d1d715add7b33b7c9b4426280979650d194aab6ae157b079ea7aff72f494d11b0935ded141b8a6f2e0 +DIST uri-js-4.4.1.tgz 132003 BLAKE2B da869f54813aef325e3d55559fe17237ff39ba8c981956f66a1b2722b164b0000ed7ef9c670d02359d202857e5abe6da5b27019ced4df53081c8b07b145a173a SHA512 eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06 +DIST utf8-byte-length-1.0.5.tgz 3003 BLAKE2B 389881e234f5b3b8394b28aa89a01d7f33794cd6085c066255e21fe218348f5b186ec15729e78a61def672b66504a1359ed64c2e16f4486b8f661bf6d6d0fcb4 SHA512 5e7d30dccb6243ace8cf6bc5c9456bb9a08be773bf0f052f90478ebe3faeba5326d019141985a6058572125a996922e163a643d2e95f537681adad9a553e317c +DIST util-deprecate-1.0.2.tgz 2246 BLAKE2B 9ce927e7619b8c64676fef6ec645deb149bbb85fad6c8523f834a23e2357e2ee94e4cb7cbc4e324a0023677ba587981faebac9d87c7d01fb8ccb9ca43326cf33 SHA512 10f0f9ab5b97c85c49a42acb9c27359c79eade039ae83641a1c008888d93692080ed5089d5424331a802cc891736c5187c3d5d68afff2d3110f318886eb1ed73 +DIST uuid-13.0.0.tgz 15664 BLAKE2B fbc4deb60348e04eae4cfcc241a329bdbc04bfcfc13d01d95af333e5619744d35d3dbff596cdbb05812fc591702e585a73207465966c8b38fffaf54e03481674 SHA512 5d07a021a0535548d21e588aa9c9c5a98ca901de12f96098b79348791b3ac3f500af2ef3f18f63e59c1144be24ceaf54dec0fabfef397abf45be411a0698e2db +DIST validate-npm-package-license-3.0.4.tgz 5675 BLAKE2B ac41bea55db2c93d7902e55b48edd4ebb5e02b31d38d3b9f1027c174770d9d3ffea3fe408e58dcfd74214c945f0633b51e97a67bd57c9dd15561270268826b3f SHA512 0e92a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13 +DIST validate-npm-package-name-6.0.2.tgz 3223 BLAKE2B 367ff2ba167dde5258879641270aac317e27f0c8488307d4ee6fc981fd94d00fc055764fe2512ef2cb1242151cbb9985058293f8d94db15f1e4bc5b25849e766 SHA512 214a28c35614b6fa01042d3a757b3c6d1f01f6fb80dda25f99034a32868f1bf385b0f9a842fc3cc61fba61edb91b1f43421a04a26dcf72ef4c2877ab9bf36951 +DIST validate-npm-package-name-7.0.0.tgz 3224 BLAKE2B b39a0c0cebc6260e9e13fbdb88dd8531384897b29d2168be9831ce3462a97bf23d3c7f20d29841235cba3213373de385fdde54b9fcee7f318a1f75c55d6b070f SHA512 6f0564fce2be42ed74f1a25c300122538c9abc7508eda376d138193418fd311da2535ccf525d59d4eb6befbef51317d84cf4ef7cdf19275a5baf9224960b78c6 +DIST verror-1.10.1.tgz 12165 BLAKE2B cfd68dc5e1eae92f05e6c2fae09b7c6d2859c759d8480ee4eda93c0bdc47c35a13abaed064829e36c9a4308194822eed5bdbd211ecead63d07e4db608035471d SHA512 bdeb9f726c6b8b87b75d2ad3d31c1f511ee482e2246b105ea2c0e0d34c835a1938f7077091252bbefb26ee773be5ed4f532bc87998fa9d2f15411633dbf4b85e +DIST walk-2.3.15.tgz 7771 BLAKE2B 3ca129c876ad66c5748f45d47e21c5c0e739d2c285c1f953c190947edfbfb4d78aad22cdfd5a1c32edb844f35e3a89d752f3b187a9b071721e7d338a95176059 SHA512 e1e45305996305f20848ad559edebd1afaf6c3fc1cdd4e95b6bc3baa23798aa6093c7ecb12571887f894e175a1742cb6759aafd53a0cc989726c3ca57c6ff956 +DIST walk-up-path-4.0.0.tgz 2495 BLAKE2B a05b30be7ffda0ae3533d603581f7e173bb066d02d305ce91b0bb9c1d2bc3680730bc4a0f34ffbe055d13a2c84b99b4abb011d3e5b9ec9b4cb5a33163960e3da SHA512 de1bbeb43f18cd22c6b8562d3d16f8f2f76128c8b4290579b27fae5abf3eedd304abfd86fddb4badd0e29e42e3aaae5321b2018d8278031fe7dd889a5bb40cf0 +DIST wcwidth-1.0.1.tgz 5814 BLAKE2B b48240428c084a8895591e8ae76234ea7594e20e40cf5a3f381871e1c933b9077d7f9afef13ae05fb2950c03dc537b27b9b959691fc8d59a9ac130169dc1b17d SHA512 5c73c4c12d2ae936b172f1bce7ef046246e20aec765ed586da691ce3b360d80efb050bbdf83a8838995d493e0780f92e79aeddbca4a3e55817dcfd5de2b5bc4e +DIST when-exit-2.1.4.tgz 2815 BLAKE2B cc8701472c53dad2b6b3fa9093950cb6d031c86e0eb9ccad2168945f42d69e5e748031b0cbdcf145cd39aac3205c24b013445a62ade009afcc306ecc294c379c SHA512 e2b9ef777035b75e8f5b3ac151c48366a7009ac508cb89a29c35d3fc267c1769950e077ae62e006a58a6833d5a424446534887e5e4f9fba471d932bca38e373e +DIST which-2.0.2.tgz 4496 BLAKE2B d3a7efcfb97c5f7a5cd50907eb9535fef5e6c2c69f6810c230ad1b26fc8f2ad5d6921136fce9274805a060b67a7a29c0248bd0eb5b9412da1991c2e09610fcbe SHA512 04b2374e5d535b73ef97bd25df2ab763ae22f9ac29c17aac181616924a8cb676d782b303fb28fbae15b492e103c7325a6171a3116e6881aa4a34c10a34c8e26c +DIST which-5.0.0.tgz 3346 BLAKE2B 0cf8a23f884ebfb9c3c8fe1a14357856a87f539645ad231b2cd3dc34fe8dcc18ea06c565a14fe627670a42e0b1395cae06a26a11633bd5e326379cc430d6ebd1 SHA512 244746cc7c3092b6d6a063a5207a90e60b69aca18e7a7a431e9c44f73551d5b59b3ad611c8f3c731ef4568feb1eb50a635a4d385291bd03009b5ee630fe0e6cd +DIST which-6.0.0.tgz 3347 BLAKE2B d9677d2fdfe3ae0b1ea8c0430fd44bc5be00e16587a18869d24f80b4eee15bd559ac91e792cdd86cdab27f5a3f5a021999d4da97a92be6032eafa2ee86fa3761 SHA512 7fe804a4828c47d7da5bf2600203cad43ee67a4905a2a6e68b0bcdcee86c1deb678b6d104a0ce0f55867d20d894899247de8509ea754031eff7b5e6a4b594fc6 +DIST which-boxed-primitive-1.1.1.tgz 6732 BLAKE2B f101e4df8813f47ba55aff4a1f49715dc52295710fb6ed6979b974e142dc6b6eb6aecbf02edea540e5b59c416b59b3eff194c4a3f804a4a5de4eda1e1a8e5ba3 SHA512 4db5f79a3f27d2874204556563c03192a707012c372fad2322e17c8c53fbf1acf70b6621986bea6c70690234d11f6ff1a98ba7ac9f60d634b28c28e9a16cc800 +DIST which-builtin-type-1.2.1.tgz 9377 BLAKE2B f2f0779bfbafef5d937dc47e3d8670ada5addb785f3463a41b9b7d5b76553e13eb6227acd9e53504318b765cb7b8eef212177fa1bfb046cd47f6749347939b25 SHA512 ea205cce85fe90343b6b7f982419e1dd3f8a651c4cfe260d3d789caa4ebafd07e6d5bf778aefb23889a4834cc76e3e4b34e70dbf54c4003899d316b7e01e2ae9 +DIST which-collection-1.0.2.tgz 7277 BLAKE2B befe842301986b733a7829df09ad7d6718ec015f5b585b7c40c9fb69292f493ff80f200ccd910d1b4648363049b425cd897becee90525278d414dfbecc54adef SHA512 2b88d5ca39c1760bdcf3a63a06468b64437ddf74b060eb8116476606ef597e47006dd55ba484e70e68ef67f6908d15d0aefe443e44e70f5b37f468a2a9b9e00b +DIST which-typed-array-1.1.19.tgz 12962 BLAKE2B ba9d7215e7d7f3a985877d41f6c2c58964d6915e0c0998a7fdafc41d2af6ce0ce7293a3c0bed9bd16ffbf7e56783c457764b0b53856467cf282ea31d042148ad SHA512 ac4bebf7405c938599b7d1c7142e0324cb23beeef1fabe9b226cf4fc1adb59bec0d9d8c9f219d932b5a71e8f45f2cb2fd0e304adab0385fb6b7d1393caa483af +DIST winreg-1.2.4.tgz 10021 BLAKE2B 1db4e08503349d4a102922b38b4d22f65b086070e8d1f843b690528497dbe84b93d882b48d61552bb4bd2f868c305089d8a83059875abde98341972dbeda5f3d SHA512 207a73391b9bee46256fc038dc88a0deb78ebe57012465fd819d16c9c1e18211ed03ae57d0b627311b89b3e687d5a6d59cc273b5092f40d965b676cf8b968620 +DIST word-wrap-1.2.5.tgz 4409 BLAKE2B fc2af833f19b1b564ff813bc79f96c799c877b8eba79bbb6b7f04ce28835a5ac1f274804bef1d48377ca49e3b2497d4269218f10d5bee0bb5b49ca6a2bebd98d SHA512 04ddb607979a30c23d50cb63ac677983978260fa423c3532d052576d8b1a4f9cd8c6314e7244b9dd2403137a56915a16a475d56f706b61c10de13c1ae7907970 +DIST wrap-ansi-7.0.0.tgz 4317 BLAKE2B 244edb4d9434ceacc0040ac26a02717b94e114e1a112ae15298cd14ca148a0e6097aecc214b0510a4c57c06c81c2e6da0549a5d2106db56d70421fd6a1d430f8 SHA512 6151888f691a98b493c70e8db198e80717d2c2c9f4c9c75eb26738a7e436d5ce733ee675a65f8d7f155dc4fb5d1ef98d54e43a5d2606e0052dcadfc58bb0f5e9 +DIST wrap-ansi-8.1.0.tgz 4444 BLAKE2B 4fa0c6c92f1bc5eef9388f0d53e75c7dde15cfee246c30182a4c5ab768bec02d8bbf46b24ddae827f43fae5835d2a1805f5560d1cdc78bc1e3ad9a86e6b2de49 SHA512 b22ed0588eb350cab9e9b11216f6a0b66ccc7463ada317d1f927b3d753286df73bb66f9591472493d6d6d9479f7d319551b3a4b31992c34000da0b3c83bd4d09 +DIST wrap-ansi-9.0.2.tgz 4316 BLAKE2B 83b61bf8afdc3990fca528e534dc62b277816a25edd3731d58fd0d61afda5126019f6df4bdc2be190ec1253fd609d471462e976586dbaf4ac7f43472363d6557 SHA512 e3602d9a0aa357e5f556974e7f24c6398462d3fceca0baad5d07244e6a937b26d3f810c86ccfc6bb1a3bc77a44dafb69af5a24eb146a33d3a905ef89ca8ab2c3 +DIST wrappy-1.0.2.tgz 1676 BLAKE2B aacb2a57d477c3cc3033c7095af248ff1ce00132b06bf25fbd1ba42a4898c0bbcf90e5c7cd3572a7483a5c1f1ab518fa8e2cb60c4176cbd2a609eb4419e7c8ce SHA512 9784a9fc346c7a8afdc0be84bd5dbe4ee427eb774c90f8d9feca7d5e48214c46d5f4a94f4b5c54b19deeeff2103b8c31b5c141e1b82940f45c477402bdeccf71 +DIST xmlbuilder-15.1.1.tgz 62870 BLAKE2B 4e934e405f32fc3cab9b47dba20efc7afe9dc9164ee48d16c7359ebd4346b4382bb9bd69ccbdc71691f90b14fabfcdc31210282617e1d1c6515996eeffa641cf SHA512 c8ca8606ab57c9e3757b74c662f80d803559de3f385b873090e5d0b30821a25e803e065669f7fd9676ef37b3076093a25ecbc63d7b634d8244882f49db0bfd12 +DIST xtend-4.0.2.tgz 2529 BLAKE2B d6a6883ead488ac0552716779fd2d74685b0004c37e6300917626649033accd49ea27901cbb6cce9e29d34144467690a4f163bf284455f7e632602b7daf6cf3e SHA512 2ca614d620172575200179fd5118e2bbe3168725171ecbdfa7b99cb989bd75250a2b4fc28edad4c050310fcdbf98259bb4bb068c521a774c08b28778ceb4c011 +DIST y18n-5.0.8.tgz 6157 BLAKE2B e9056018245afc85f1b62a2a3779ff76c05a8cad23c9374c43f40fc6e52a8045fc93c648ab5529fae82f4dfb28b53adf88cc1fa25161489348a8fb9a8468ef1f SHA512 d297c5cde81e0d62472480264cb44fd83c078dd179b3b8e8f6dbb3b5d43102120d09dbd2fb79c620da8f774d00a61a8947fd0b8403544baffeed209bf7c60e7c +DIST yaku-0.16.7.tgz 31529 BLAKE2B 210302884821f7d1cffdbff2fe8c6996ea57e8f8e5e0ef03880ed5d871ada4e35a276f4d7dee9caf79b5abea1ababe8bb0cc537efc57f76779abb04e1841b3bb SHA512 4b2bb7201deb66f2af624ef24e2ca5d5ba3f8e210569a4adae0bf55764c8253a983d2b5231054ef0442383fcfe0d1ccbabfe0b20885aacd4f7887d61ca510847 +DIST yallist-3.1.1.tgz 4496 BLAKE2B 5dcee70de5944274b95a9531b2394776d56add3b3905ce653e4cb8641279b3102d44dc5ab6283446de97aa6a97ab033102cff8f57b4783d5ff66d0de37c5a024 SHA512 6b850641a58f1f9f663975189c01b67b09dc412e22e05e374efdc9a0033eb365430264bd36c2bc1a90cc2eb0873e4b054fb8772ba4cea14367da96fb4685f1e2 +DIST yallist-4.0.0.tgz 4494 BLAKE2B 3fc1526410ae37bf4485770bd5db254126c0671b7478861de0eef0a5456616ea02e1972f91316e95b593219da424b3c991830fd270e6e385ee81cb2e7546d4b7 SHA512 df074689d672ab93c1d3ce172c44b94e9392440df08d7025216321ba6da445cbffe354a7d9e990d1dc9c416e2e6572de8f02af83a12cbdb76554bf8560472dec +DIST yallist-5.0.0.tgz 9821 BLAKE2B 7f7c9f45dd7d3453618e7722e03ce737fe70c8646839815d3db2d46018a4ed0fb46b81aaa2833c022f7bd5fa365bc3171a18e18d37f73e7e6cf9d16714f397a3 SHA512 620bd44dfc2ac9ced45d532b07e4889ac5584a64d2f17fed4abb5d35930898cfa7efe413ae2457c978a6d2606b4d735eab3545d0a5868073de8b2562145acd0f +DIST yaml-2.8.1.tgz 111596 BLAKE2B 9771a0a700a9bad814eef8231c04696e46582253c365a3288ecda3d514d5789e7e40b67688527f3d840b6db8741fdf6e5d17eb5ca2b197abaf5c693e4cd67074 SHA512 95c61c3315f63cef57306bc02642773ac34cc3effb14a7aceff8607ab1946162285aee63ffe610a9c66be499cf656cceb0406031b49b8924e7fddbffebd324a7 +DIST yargs-17.7.2.tgz 65691 BLAKE2B 89ce62eeab8b355b3123f4d2050194061335afa1b79d46de44df3e944630ece542b2d4e255d3ec737a0df7d9bf7437afc5a31340193ce2059ac844875526fd20 SHA512 edd4b3cd143ef822a7348fe4aca9d8455ec928a3d45cc121eb5b286872a0f66ad6121cc55a1167c4fc4697eebd703d4ebbadc2d773543c29e621caefa82b8ceb +DIST yargs-parser-21.1.1.tgz 28613 BLAKE2B 88a0f25192099cd298c67f05e904201967d0036afc3482b89156406edbef807f396faeaf5736b8c5f792560182d645fab2d0becb474cf10bd42fbcc0f42943ea SHA512 b55a6c256ec376379c0221696c80757b7ab1210b04e8da0f739fde4ddadb6c80b88742d5b16867a1ade0fa6d87725048ba31f3b31678549540f8652e736fcb07 +DIST yauzl-2.10.0.tgz 18697 BLAKE2B 09034afce040c8e1667d6ff1dbf82a9499b5b0582b82011385da92f4f624465a8a71ab5b32cfe78648d046aab1db7dcb2b283fc43df846835f8e8c0f8be03723 SHA512 a786bd23a5fa9eee888681a606a01c6c9cb59a50b88f6eef10f657f45e0be3fbd94f72f2ab5564147c3f57f3d4701f41ba8f831b7887913d31dd0c9ae7ccdcde +DIST yocto-queue-0.1.0.tgz 2765 BLAKE2B 2f097107d84d11469841d9f1db0ec31eee4873dfdd2533fcd86b2aeaa7b96d314d2d818ad580a5f25dc2cbb1d89bbf44786fde89ad1a812283fe4494ed365b7f SHA512 ad592cbec9cd09d27fa2119ceb180fc3237c7a1782c6c88b33c9b1b84fedfe6395a897b03ee3b59a22e94c74224604ca08b7b12f831e00555a82db3b1e6359d9 +DIST zod-4.1.12.tgz 639968 BLAKE2B 2737308d130e04aeadb3efaad9ff5d2ede83700a5666f984835fbd413087f09e3c27eb43e078c7cc7b37caae79632e4fc17d57c3e1b73877d7f21477ce54eaae SHA512 2489da1ce6a61bca6de7e132f241a675c01c83738bf6b78af25b5cce01d3030361332b3fe938571e2b721f1555da9ddf930fdcf8c02f0471556071590e68cc09 +DIST zod-4.1.13.tgz 657065 BLAKE2B 6dca833c49f75eac3e747086621d423b15b49c3cb1daa9973787e9b4c5c3f5a5b4bbd8323e06ef6ad149280bcae0e2bb0ec2e39fb1ebbca9fef17c8e95636c4b SHA512 02fbed86a7eaac084d1fd7677e6adf2b35f9ba939d8d4549605a8d4a592619feb8811693ce53f0cfdf481d89d5b36f2a600c9bbc094157e1fba67d2c68563822 diff --git a/net-im/element-desktop/element-desktop-1.12.3.ebuild b/net-im/element-desktop/element-desktop-1.12.3.ebuild deleted file mode 100644 index 9ba6b200b494..000000000000 --- a/net-im/element-desktop/element-desktop-1.12.3.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit unpacker rust xdg - -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io" -SRC_URI="https://github.com/element-hq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://github.com/element-hq/element-web/archive/v${PV}.tar.gz -> element-web-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+emoji" - -RESTRICT="network-sandbox" #The setup script needs internet connection, including for yarn install - -RDEPEND=" - !net-im/element-desktop-bin - >=app-accessibility/at-spi2-core-2.46.0 - app-crypt/libsecret - dev-db/sqlcipher - dev-libs/expat - dev-libs/nspr - dev-libs/nss - media-libs/alsa-lib - media-libs/mesa - net-libs/nodejs - net-print/cups - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:3 - x11-libs/libdrm - x11-libs/libxcb - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXtst - x11-libs/libXScrnSaver - x11-libs/pango - emoji? ( media-fonts/noto-emoji ) -" -DEPEND="${RDEPEND}" -BDEPEND="sys-apps/yarn" - -QA_PREBUILT=" - opt/Element/resources/app.asar.unpacked/node_modules/keytar-forked/build/Release/keytar.node - opt/Element/chrome-sandbox - opt/Element/libEGL.so - opt/Element/chrome_crashpad_handler - opt/Element/resources/app.asar.unpacked/node_modules/matrix-seshat/index.node - opt/Element/element-desktop - opt/Element/libffmpeg.so - opt/Element/libvulkan.so.1 - opt/Element/libGLESv2.so - opt/Element/libvk_swiftshader.so -" - -ELEMENT_WEB_S="${WORKDIR}/element-web-${PV}" - -pkg_setup() { - rust_pkg_setup -} - -src_prepare() { - default - pushd "${ELEMENT_WEB_S}" >/dev/null || die - yarn install || die - cp config.sample.json config.json || die - popd >/dev/null || die - - yarn install || die -} - -src_compile() { - pushd "${ELEMENT_WEB_S}" >/dev/null || die - yarn build || die - popd >/dev/null || die - - ln -s "${ELEMENT_WEB_S}"/webapp ./ || die - yarn build:native || die - # Use sed to temporarily fix upstream bug in app-builder-lib https://github.com/electron-userland/electron-builder/issues/9355 - sed -i 's/else if (isCi) {/else if (isCi.isCI) {/' node_modules/app-builder-lib/out/publish/PublishManager.js || die - yarn build || die -} - -src_install() { - unpack dist/${PN}_${PV}_amd64.deb - tar -xvf data.tar.xz || die - - ./node_modules/@electron/universal/node_modules/@electron/asar/bin/asar.js p webapp opt/Element/resources/webapp.asar || die - mv -n usr/share/doc/${PN} usr/share/doc/${PF} || die - gunzip usr/share/doc/${PF}/changelog.gz || die - - insinto / - doins -r usr - doins -r opt - local f - for f in ${QA_PREBUILT}; do - fperms +x "/${f}" - done - fperms u+s /opt/Element/chrome-sandbox - - dosym ../../opt/Element/${PN} /usr/bin/${PN} - dosym ${PN} /usr/bin/riot-desktop -} diff --git a/net-im/element-desktop/element-desktop-1.12.6.ebuild b/net-im/element-desktop/element-desktop-1.12.6.ebuild index a207e1e2a67a..80c8cef3d5ca 100644 --- a/net-im/element-desktop/element-desktop-1.12.6.ebuild +++ b/net-im/element-desktop/element-desktop-1.12.6.ebuild @@ -1,119 +1,1211 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 2009-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit unpacker rust xdg +PYTHON_COMPAT=( python3_{10..14} ) -DESCRIPTION="A glossy Matrix collaboration client for desktop" -HOMEPAGE="https://element.io" -SRC_URI="https://github.com/element-hq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz - https://github.com/element-hq/element-web/archive/v${PV}.tar.gz -> element-web-${PV}.tar.gz" +inherit desktop flag-o-matic multilib python-any-r1 xdg-utils +DESCRIPTION="A glossy Matrix collaboration client for desktop" +HOMEPAGE="https://element.io/" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64" -IUSE="+emoji keyring" +SRC_URI="!build-online? ( + https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz + https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz + https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz + https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz + https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz -> @babel-compat-data-7.28.5.tgz + https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz -> @babel-core-7.28.5.tgz + https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz -> @babel-generator-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz + https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz -> @babel-helper-compilation-targets-7.27.2.tgz + https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz + https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz + https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz -> @babel-helper-module-imports-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz -> @babel-helper-module-transforms-7.28.3.tgz + https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz -> @babel-helper-plugin-utils-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz -> @babel-helper-replace-supers-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz -> @babel-helper-wrap-function-7.28.3.tgz + https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz -> @babel-helpers-7.28.4.tgz + https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.4.tgz -> @babel-parser-7.28.4.tgz + https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz -> @babel-parser-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz + https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz -> @babel-plugin-syntax-import-assertions-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz -> @babel-plugin-syntax-import-attributes-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz -> @babel-plugin-transform-async-generator-functions-7.28.0.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz -> @babel-plugin-transform-async-to-generator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz -> @babel-plugin-transform-block-scoping-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz -> @babel-plugin-transform-class-properties-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz -> @babel-plugin-transform-class-static-block-7.28.3.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz -> @babel-plugin-transform-classes-7.28.4.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz -> @babel-plugin-transform-computed-properties-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz -> @babel-plugin-transform-dotall-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.0.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz -> @babel-plugin-transform-json-strings-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz -> @babel-plugin-transform-numeric-separator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz -> @babel-plugin-transform-object-rest-spread-7.28.4.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz -> @babel-plugin-transform-optional-catch-binding-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz -> @babel-plugin-transform-optional-chaining-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz -> @babel-plugin-transform-private-methods-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz -> @babel-plugin-transform-private-property-in-object-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz -> @babel-plugin-transform-regenerator-7.28.4.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz -> @babel-plugin-transform-regexp-modifiers-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz -> @babel-plugin-transform-spread-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-property-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.5.tgz -> @babel-preset-env-7.28.5.tgz + https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz + https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz + https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz -> @babel-template-7.27.2.tgz + https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.4.tgz -> @babel-traverse-7.28.4.tgz + https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz -> @babel-traverse-7.28.5.tgz + https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz -> @babel-types-7.28.5.tgz + https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz + https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz + https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz + https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz + https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz + https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz + https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz + https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz + https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.1.tgz -> @electron-rebuild-4.0.1.tgz + https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz + https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz + https://registry.yarnpkg.com/@emnapi/core/-/core-1.7.0.tgz -> @emnapi-core-1.7.0.tgz + https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.7.0.tgz -> @emnapi-runtime-1.7.0.tgz + https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz + https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz -> @esbuild-aix-ppc64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz -> @esbuild-android-arm-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz -> @esbuild-android-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz -> @esbuild-android-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz -> @esbuild-darwin-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz -> @esbuild-darwin-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz -> @esbuild-freebsd-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz -> @esbuild-freebsd-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz -> @esbuild-linux-arm-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz -> @esbuild-linux-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz -> @esbuild-linux-ia32-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz -> @esbuild-linux-loong64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz -> @esbuild-linux-mips64el-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz -> @esbuild-linux-ppc64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz -> @esbuild-linux-riscv64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz -> @esbuild-linux-s390x-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz -> @esbuild-linux-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz -> @esbuild-netbsd-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz -> @esbuild-netbsd-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz -> @esbuild-openbsd-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz -> @esbuild-openbsd-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz -> @esbuild-openharmony-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz -> @esbuild-sunos-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz -> @esbuild-win32-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz -> @esbuild-win32-ia32-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz -> @esbuild-win32-x64-0.25.10.tgz + https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz + https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz + https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz + https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz -> @eslint-community-regexpp-4.12.1.tgz + https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz + https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz + https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz + https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz + https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz + https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz + https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz + https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz + https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz + https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz + https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz + https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz + https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz + https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz + https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz + https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz + https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz + https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz -> @napi-rs-wasm-runtime-1.0.7.tgz + https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz + https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz + https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz + https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz + https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz + https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz + https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.0.tgz -> @npmcli-git-7.0.0.tgz + https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-3.0.0.tgz -> @npmcli-installed-package-contents-3.0.0.tgz + https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz -> @npmcli-node-gyp-4.0.0.tgz + https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.1.tgz -> @npmcli-package-json-7.0.1.tgz + https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-8.0.3.tgz -> @npmcli-promise-spawn-8.0.3.tgz + https://registry.yarnpkg.com/@npmcli/redact/-/redact-3.2.2.tgz -> @npmcli-redact-3.2.2.tgz + https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.0.tgz -> @npmcli-run-script-10.0.0.tgz + https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.204.0.tgz -> @opentelemetry-api-logs-0.204.0.tgz + https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.57.2.tgz -> @opentelemetry-api-logs-0.57.2.tgz + https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz + https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.2.0.tgz -> @opentelemetry-context-async-hooks-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.1.0.tgz -> @opentelemetry-core-2.1.0.tgz + https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.51.0.tgz -> @opentelemetry-instrumentation-amqplib-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.48.0.tgz -> @opentelemetry-instrumentation-connect-0.48.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.22.0.tgz -> @opentelemetry-instrumentation-dataloader-0.22.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.53.0.tgz -> @opentelemetry-instrumentation-express-0.53.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.24.0.tgz -> @opentelemetry-instrumentation-fs-0.24.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.48.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.48.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.52.0.tgz -> @opentelemetry-instrumentation-graphql-0.52.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.51.0.tgz -> @opentelemetry-instrumentation-hapi-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.204.0.tgz -> @opentelemetry-instrumentation-http-0.204.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.52.0.tgz -> @opentelemetry-instrumentation-ioredis-0.52.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.14.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.14.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.49.0.tgz -> @opentelemetry-instrumentation-knex-0.49.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.52.0.tgz -> @opentelemetry-instrumentation-koa-0.52.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.49.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.49.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.57.0.tgz -> @opentelemetry-instrumentation-mongodb-0.57.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.51.0.tgz -> @opentelemetry-instrumentation-mongoose-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.50.0.tgz -> @opentelemetry-instrumentation-mysql-0.50.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.51.0.tgz -> @opentelemetry-instrumentation-mysql2-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.57.0.tgz -> @opentelemetry-instrumentation-pg-0.57.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.53.0.tgz -> @opentelemetry-instrumentation-redis-0.53.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.23.0.tgz -> @opentelemetry-instrumentation-tedious-0.23.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.15.0.tgz -> @opentelemetry-instrumentation-undici-0.15.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.204.0.tgz -> @opentelemetry-instrumentation-0.204.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.57.2.tgz -> @opentelemetry-instrumentation-0.57.2.tgz + https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz + https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.2.0.tgz -> @opentelemetry-resources-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.2.0.tgz -> @opentelemetry-sdk-trace-base-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.37.0.tgz -> @opentelemetry-semantic-conventions-1.37.0.tgz + https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.13.2.tgz -> @oxc-resolver-binding-android-arm-eabi-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.13.2.tgz -> @oxc-resolver-binding-android-arm64-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.13.2.tgz -> @oxc-resolver-binding-darwin-arm64-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.13.2.tgz -> @oxc-resolver-binding-darwin-x64-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.13.2.tgz -> @oxc-resolver-binding-freebsd-x64-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.13.2.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.13.2.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.13.2.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.13.2.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.13.2.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.13.2.tgz -> @oxc-resolver-binding-linux-x64-musl-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.13.2.tgz -> @oxc-resolver-binding-wasm32-wasi-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.13.2.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.13.2.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.13.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.13.2.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.13.2.tgz + https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz + https://registry.yarnpkg.com/@playwright/test/-/test-1.56.1.tgz -> @playwright-test-1.56.1.tgz + https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.15.0.tgz -> @prisma-instrumentation-6.15.0.tgz + https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz + https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.17.0.tgz -> @sentry-internal-browser-utils-10.17.0.tgz + https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.17.0.tgz -> @sentry-internal-feedback-10.17.0.tgz + https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.17.0.tgz -> @sentry-internal-replay-canvas-10.17.0.tgz + https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.17.0.tgz -> @sentry-internal-replay-10.17.0.tgz + https://registry.yarnpkg.com/@sentry/browser/-/browser-10.17.0.tgz -> @sentry-browser-10.17.0.tgz + https://registry.yarnpkg.com/@sentry/core/-/core-10.17.0.tgz -> @sentry-core-10.17.0.tgz + https://registry.yarnpkg.com/@sentry/electron/-/electron-7.2.0.tgz -> @sentry-electron-7.2.0.tgz + https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.17.0.tgz -> @sentry-node-core-10.17.0.tgz + https://registry.yarnpkg.com/@sentry/node/-/node-10.17.0.tgz -> @sentry-node-10.17.0.tgz + https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.17.0.tgz -> @sentry-opentelemetry-10.17.0.tgz + https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz + https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz + https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz + https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz + https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz + https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz + https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz + https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.5.0.tgz -> @stylistic-eslint-plugin-5.5.0.tgz + https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz + https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz + https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz + https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz + https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz + https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz + https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz + https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz + https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz + https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz + https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz + https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz + https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz + https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz + https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz + https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz + https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz + https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz + https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz + https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz + https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz + https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz + https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz + https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.6.tgz -> @types-pg-pool-2.0.6.tgz + https://registry.yarnpkg.com/@types/pg/-/pg-8.15.5.tgz -> @types-pg-8.15.5.tgz + https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz + https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz + https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz + https://registry.yarnpkg.com/@types/shimmer/-/shimmer-1.2.0.tgz -> @types-shimmer-1.2.0.tgz + https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz + https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz + https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz + https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz + https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.4.tgz -> @typescript-eslint-eslint-plugin-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.46.4.tgz -> @typescript-eslint-parser-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.46.4.tgz -> @typescript-eslint-project-service-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.46.4.tgz -> @typescript-eslint-scope-manager-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.4.tgz -> @typescript-eslint-tsconfig-utils-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.46.4.tgz -> @typescript-eslint-type-utils-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.46.2.tgz -> @typescript-eslint-types-8.46.2.tgz + https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.46.4.tgz -> @typescript-eslint-types-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.4.tgz -> @typescript-eslint-typescript-estree-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.46.4.tgz -> @typescript-eslint-utils-8.46.4.tgz + https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.4.tgz -> @typescript-eslint-visitor-keys-8.46.4.tgz + https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz + https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz + https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz + https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz + https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz + https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz + https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz + https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz + https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz + https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz + https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz + https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz + https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz + https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.1.1.tgz + https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz + https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz + https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz + https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz + https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz + https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.1.0.tgz + https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz + https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz + https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz + https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz + https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz + https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz + https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz + https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz + https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz + https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz + https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz + https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz + https://registry.yarnpkg.com/async/-/async-3.2.6.tgz + https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz + https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz + https://registry.yarnpkg.com/atomically/-/atomically-2.0.3.tgz + https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz + https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz + https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz + https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz + https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz + https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz + https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz + https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz + https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz + https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz + https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz + https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz + https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz + https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz + https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz + https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz + https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz + https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz + https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz + https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.0.tgz + https://registry.yarnpkg.com/builder-util/-/builder-util-26.1.0.tgz + https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz + https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz + https://registry.yarnpkg.com/cacache/-/cacache-20.0.1.tgz + https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz + https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz + https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz + https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz + https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz + https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz + https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz + https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz + https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz + https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz + https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz + https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz + https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz + https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz + https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz + https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz + https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz + https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz + https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz + https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz + https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz + https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz + https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz + https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz + https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz + https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz + https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz + https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz + https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz + https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz + https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz + https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz + https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz + https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz + https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz + https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz + https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz + https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz + https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz + https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz + https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz + https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz + https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz + https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz + https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz + https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz + https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz + https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz + https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz + https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz + https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz + https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz + https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz + https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz + https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz + https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz + https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz + https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz + https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz + https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz + https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz + https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz + https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz + https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz + https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz + https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz + https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz + https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz + https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.1.0.tgz + https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz + https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz + https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz + https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz + https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz + https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz + https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz + https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz + https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz + https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.1.0.tgz + https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.1.0.tgz + https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz + https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.1.0.tgz + https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz + https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz + https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.241.tgz + https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz + https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz + https://registry.yarnpkg.com/electron/-/electron-39.1.1.tgz + https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz + https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz + https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz + https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz + https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz + https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz + https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz + https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz + https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz + https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz + https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz + https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz + https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz + https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz + https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz + https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz + https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz + https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz + https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz + https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz + https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz + https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz + https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz + https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz + https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz + https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz + https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz + https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz + https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz + https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz + https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz + https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.1.tgz + https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz + https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz + https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz + https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz + https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz + https://registry.yarnpkg.com/espree/-/espree-10.4.0.tgz + https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz + https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz + https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz + https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz + https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz + https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz + https://registry.yarnpkg.com/except/-/except-0.1.3.tgz + https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz + https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.2.tgz + https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz + https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz + https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz + https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz + https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz + https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz + https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz + https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz + https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz + https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz + https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz + https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz + https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz + https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz + https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz + https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz + https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz + https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz + https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz + https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz + https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz + https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz + https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz + https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz + https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz + https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz + https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz + https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz + https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz + https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz + https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz + https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz + https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz + https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz + https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz + https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz + https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz + https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz + https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz + https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz + https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz + https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz + https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz + https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.10.1.tgz + https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.12.0.tgz + https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz + https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz + https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz + https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz + https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz + https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz + https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz + https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz + https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz + https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz + https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz + https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz + https://registry.yarnpkg.com/got/-/got-11.8.6.tgz + https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz + https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz + https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz + https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz + https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz + https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz + https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz + https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz + https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz + https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz + https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz + https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.0.tgz + https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz + https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz + https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz + https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz + https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz + https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz + https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz + https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz + https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz + https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz + https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz + https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz + https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz + https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz + https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-1.15.0.tgz + https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz + https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz + https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz + https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz + https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz + https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz + https://registry.yarnpkg.com/ini/-/ini-5.0.0.tgz + https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz + https://registry.yarnpkg.com/ip-address/-/ip-address-10.0.1.tgz + https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz + https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz + https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz + https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz + https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz + https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz + https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz + https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz + https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz + https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz + https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz + https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz + https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz + https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz + https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz + https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz + https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz + https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz + https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz + https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz + https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz + https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz + https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz + https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz + https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz + https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz + https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz + https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz + https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz + https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz + https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz + https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz + https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz + https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz + https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz + https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz + https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz + https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz + https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz + https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz + https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz + https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz + https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz + https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz + https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz + https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz + https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz + https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz + https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz + https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz + https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz + https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-4.0.0.tgz + https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz + https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz + https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz + https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz + https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz + https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz + https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz + https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz + https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz + https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz + https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz + https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz + https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz + https://registry.yarnpkg.com/keytar-forked/-/keytar-forked-7.10.0.tgz + https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz + https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz + https://registry.yarnpkg.com/knip/-/knip-5.69.0.tgz + https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz + https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz + https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz + https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz + https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.6.tgz + https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz + https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz + https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz + https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz + https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz + https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz + https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz + https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz + https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz + https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz + https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.2.tgz + https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz + https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz + https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.4.0.tgz + https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz + https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz + https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz + https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz + https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz + https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz + https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz + https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz + https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz + https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz + https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz + https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz + https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz + https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz + https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz + https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz + https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz + https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz + https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz + https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz + https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz + https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz + https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz + https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz + https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz + https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz + https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz + https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz + https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-2.0.0.tgz + https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz + https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz + https://registry.yarnpkg.com/node-abi/-/node-abi-4.17.0.tgz + https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz + https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-8.3.1.tgz + https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz + https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz + https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.26.tgz + https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz + https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz + https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz + https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-4.0.0.tgz + https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-7.1.2.tgz + https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz + https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.0.tgz + https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.2.tgz + https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.1.tgz + https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.0.0.tgz + https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz + https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz + https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz + https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz + https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz + https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz + https://registry.yarnpkg.com/once/-/once-1.4.0.tgz + https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz + https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz + https://registry.yarnpkg.com/open/-/open-7.4.2.tgz + https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz + https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz + https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz + https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.13.2.tgz + https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz + https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz + https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz + https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz + https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz + https://registry.yarnpkg.com/p-map/-/p-map-7.0.3.tgz + https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz + https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz + https://registry.yarnpkg.com/pacote/-/pacote-21.0.3.tgz + https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz + https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz + https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz + https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz + https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz + https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz + https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz + https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz + https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz + https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz + https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz + https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz + https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz + https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.10.3.tgz + https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz + https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz + https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz + https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz + https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz + https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.56.1.tgz + https://registry.yarnpkg.com/playwright/-/playwright-1.56.1.tgz + https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz + https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz + https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz + https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz + https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz + https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz + https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz + https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz + https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz + https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz + https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz + https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz + https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.3.tgz + https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz + https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz + https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz + https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz + https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz + https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz + https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz + https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz + https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz + https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz + https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz + https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz + https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz + https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz + https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz + https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz + https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.1.tgz + https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz + https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz + https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz + https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz + https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz + https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz + https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz + https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz + https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz + https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz + https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz + https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-7.5.2.tgz + https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz + https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz + https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz + https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz + https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz + https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz + https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz + https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz + https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz + https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz + https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz + https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz + https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz + https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz + https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.0.tgz + https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz + https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz + https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz + https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz + https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz + https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz + https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz + https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz + https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz + https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz + https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz + https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz + https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz + https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz + https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz + https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz + https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz + https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz + https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz + https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz + https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz + https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz + https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz + https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz + https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz + https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz + https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz + https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz + https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz + https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz + https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz + https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz + https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz + https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz + https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz + https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz + https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz + https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz + https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.4.2.tgz + https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz + https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz + https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz + https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz + https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz + https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz + https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz + https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz + https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz + https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz + https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz + https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz + https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz + https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz + https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz + https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz + https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz + https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz + https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz + https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz + https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz + https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz + https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz + https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz + https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz + https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz + https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz + https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz + https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.2.tgz + https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-1.2.5.tgz + https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz + https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz + https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz + https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz + https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz + https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.4.tgz + https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz + https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz + https://registry.yarnpkg.com/tar/-/tar-7.5.2.tgz + https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz + https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz + https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz + https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz + https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz + https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz + https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz + https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz + https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz + https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz + https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz + https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz + https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz + https://registry.yarnpkg.com/tsx/-/tsx-4.20.6.tgz + https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz + https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz + https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz + https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz + https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz + https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz + https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz + https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz + https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz + https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz + https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz + https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz + https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz + https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz + https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz + https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz + https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz + https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz + https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz + https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz + https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz + https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz + https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz + https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz + https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz + https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz + https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz + https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz + https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-6.0.2.tgz + https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz + https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz + https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz + https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz + https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.4.tgz + https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz + https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz + https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz + https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz + https://registry.yarnpkg.com/which/-/which-2.0.2.tgz + https://registry.yarnpkg.com/which/-/which-5.0.0.tgz + https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz + https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz + https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz + https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz + https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz + https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz + https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz + https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz + https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz + https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz + https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz + https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz + https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz + https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz + https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz + https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz + https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz + https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz + https://registry.yarnpkg.com/zod/-/zod-4.1.12.tgz +) " -RESTRICT="network-sandbox" #The setup script needs internet connection, including for yarn install +REPO="https://github.com/vector-im/element-desktop" +ELECTRON_SLOT_DEFAULT="38" +#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" +IUSE="electron-36 electron-37 electron-39 native-modules" -RDEPEND=" - !net-im/element-desktop-bin - >=app-accessibility/at-spi2-core-2.46.0 - app-crypt/libsecret - dev-db/sqlcipher - dev-libs/expat - dev-libs/nspr - dev-libs/nss - media-libs/alsa-lib - media-libs/mesa - net-libs/nodejs - net-print/cups - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:3 - x11-libs/libdrm - x11-libs/libxcb - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXtst - x11-libs/libXScrnSaver - x11-libs/pango - emoji? ( media-fonts/noto-emoji ) -" -DEPEND=" - ${RDEPEND} +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="${REPO}.git" + EGIT_BRANCH="develop" + DOWNLOAD="" + IUSE+=" +build-online" +else + IUSE+=" build-online" + KEYWORDS="amd64 ~arm64 ~ppc64 ~x86" + DOWNLOAD="${REPO}/archive/" + if [ -z "$ELEMENT_COMMIT_ID" ] + then + DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" + else + DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" + S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" + fi +fi + +SRC_URI+="${DOWNLOAD}" + +RESTRICT="mirror build-online? ( network-sandbox )" +REQUIRED_USE=" + native-modules? ( build-online ) " -BDEPEND=" - sys-apps/yarn - >=net-libs/nodejs-22.18.0 + +COMMON_DEPEND=" + ~net-im/element-web-${PV} + native-modules? ( dev-db/sqlcipher ) + electron-36? ( dev-util/electron:36 ) + electron-37? ( dev-util/electron:37 ) + electron-39? ( dev-util/electron:39 ) + !electron-36? ( + !electron-37? ( + !electron-39? ( + dev-util/electron:${ELECTRON_SLOT_DEFAULT} + ) ) ) " -QA_PREBUILT=" - opt/Element/resources/app.asar.unpacked/node_modules/keytar-forked/build/Release/keytar.node - opt/Element/chrome-sandbox - opt/Element/libEGL.so - opt/Element/chrome_crashpad_handler - opt/Element/resources/app.asar.unpacked/node_modules/matrix-seshat/index.node - opt/Element/element-desktop - opt/Element/libffmpeg.so - opt/Element/libvulkan.so.1 - opt/Element/libGLESv2.so - opt/Element/libvk_swiftshader.so +RDEPEND="${COMMON_DEPEND} +" +DEPEND="${COMMON_DEPEND} " -ELEMENT_WEB_S="${WORKDIR}/element-web-${PV}" +BDEPEND=" + ${PYTHON_DEPS} + $(python_gen_any_dep ' + dev-python/setuptools[${PYTHON_USEDEP}] + ') + native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) + net-libs/nodejs + sys-apps/yarn +" -pkg_setup() { - rust_pkg_setup +python_check_deps() { + python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" } -src_prepare() { - default - pushd "${ELEMENT_WEB_S}" >/dev/null || die - yarn install || die - cp config.sample.json config.json || die - popd >/dev/null || die +#TODO: net-im/element-web -> runtime/buildtime dep - yarn install || die +src_unpack() { + if use electron-36; then + export ELECTRON_SLOT=36 + elif use electron-37; then + export ELECTRON_SLOT=37 + elif use electron-39; then + export ELECTRON_SLOT=39 + else + export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT + fi + if [ -z "$ELEMENT_COMMIT_ID" ] + then + if [ -f "${DISTDIR}/${P}.tar.gz" ]; then + unpack "${P}".tar.gz || die + else + git-r3_src_unpack + fi + else + unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die + fi } src_compile() { - pushd "${ELEMENT_WEB_S}" >/dev/null || die - yarn build || die - popd >/dev/null || die + # OLD_PATH=$PATH + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" + PATH="${S}/node_modules/.bin:$PATH"; + export PATH + export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" + export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" + export ELECTRON_SKIP_BINARY_DOWNLOAD=1 + yarn config set disable-self-update-check true || die + yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die + # #! Until electron-builder >=22.11.5 + # yarn config set ignore-engines true || die + + sed -i 's/electron-builder install-app-deps/true/' package.json || die + + if ! use build-online; then + ONLINE_OFFLINE="--offline --frozen-lockfile" + yarn config set yarn-offline-mirror "${DISTDIR}" || die + fi - ln -s "${ELEMENT_WEB_S}"/webapp ./ || die - yarn build:native || die - # Use sed to temporarily fix upstream bug in app-builder-lib https://github.com/electron-userland/electron-builder/issues/9355 - sed -i 's/else if (isCi) {/else if (isCi.isCI) {/' node_modules/app-builder-lib/out/publish/PublishManager.js || die - yarn build || die + einfo "Removing playwright from dependencies" + sed -i '/playwright":/d' package.json || die + + einfo "Installing node_modules" + node /usr/bin/yarn install ${ONLINE_OFFLINE} --no-progress || die + + node node_modules/.bin/tsc || die + node node_modules/.bin/tsx scripts/copy-res.ts || die + + if use native-modules + then + node /usr/bin/yarn run build:native || die + fi + + # # Electron-Builder doesn't support ppc64 due to using precompiled binaries + # if ! use ppc64; then + # einfo "Editing ElectronFramework.js" + # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ + # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die + # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ + # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die + + # #!Error: With electron's node: "Unknown argument" electron/electron#25379 + # #!Error: With electron's node: "Invalid package app.asar" + # /usr/bin/node node_modules/.bin/electron-builder --dir || die + # else + einfo "Manually preparing app.asar" + local distdir="dist/linux-unpacked/resources" + mkdir -p ${distdir}/node_modules || die + cp -r lib ${distdir} || die + # Copying yarn.lock allows freezing versions to the build versions + cp package.json yarn.lock ${distdir} || die + pushd ${distdir} &> /dev/null || die + node /usr/bin/yarn install ${ONLINE_OFFLINE} --production \ + --no-progress --frozen-lockfile || die + popd &> /dev/null || die + rm ${distdir}/yarn.lock || die + if use native-modules; then + cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die + fi + + einfo "Creating archive" + /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ + --unpack-dir '{**/Release,**/matrix-seshat}' || die + # Remove unarchived copies of files (they are still in app.asar) + rm -r ${distdir}/node_modules || die + rm -r ${distdir}/lib || die + + cp -r build ${distdir} || die + # fi + + #cp -r /usr/share/element-web webapp + #rm -f webapp/config.json + #cp -f /etc/element-web/config.json webapp/config.json + #node node_modules/.bin/asar p webapp webapp.asar + #node node_modules/.bin/asar l webapp.asar + + # export PATH=${OLD_PATH} } src_install() { - unpack dist/${PN}_${PV}_amd64.deb - tar -xvf data.tar.xz || die + insinto "/usr/$(get_libdir)/element-desktop" + + doins -r dist/linux-unpacked/resources/* + dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp + + exeinto "/usr/$(get_libdir)/element-desktop" + cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop + sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop + + echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ +/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop + doexe dist/linux-unpacked/resources/element-desktop + dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop - ./node_modules/@electron/universal/node_modules/@electron/asar/bin/asar.js p webapp opt/Element/resources/webapp.asar || die - mv -n usr/share/doc/${PN} usr/share/doc/${PF} || die - gunzip usr/share/doc/${PF}/changelog.gz || die + # # Install icons + # local branding size + # for size in 16 24 48 64 96 128 256 512 ; do + # newicon -s ${size} "build/icons/${size}x${size}.png" \ + # element-desktop.png + # done - insinto / - doins -r usr - doins -r opt - local f - for f in ${QA_PREBUILT}; do - fperms +x "/${f}" - done - fperms u+s /opt/Element/chrome-sandbox + newicon build/icon.png element-desktop.png + + make_desktop_entry "/usr/bin/element-desktop" Element \ + "element-desktop" "Network;Chat" +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update +} - dosym ../../opt/Element/${PN} /usr/bin/${PN} - dosym ${PN} /usr/bin/riot-desktop +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update } diff --git a/net-im/element-desktop/element-desktop-1.12.7.ebuild b/net-im/element-desktop/element-desktop-1.12.7.ebuild new file mode 100644 index 000000000000..71d111cf1e5f --- /dev/null +++ b/net-im/element-desktop/element-desktop-1.12.7.ebuild @@ -0,0 +1,1207 @@ +# Copyright 2009-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) + +inherit desktop flag-o-matic multilib python-any-r1 xdg-utils + +DESCRIPTION="A glossy Matrix collaboration client for desktop" +HOMEPAGE="https://element.io/" +LICENSE="Apache-2.0" +SLOT="0" +SRC_URI="!build-online? ( + https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz + https://registry.yarnpkg.com/@action-validator/cli/-/cli-0.6.0.tgz -> @action-validator-cli-0.6.0.tgz + https://registry.yarnpkg.com/@action-validator/core/-/core-0.6.0.tgz -> @action-validator-core-0.6.0.tgz + https://registry.yarnpkg.com/@apm-js-collab/code-transformer/-/code-transformer-0.8.2.tgz -> @apm-js-collab-code-transformer-0.8.2.tgz + https://registry.yarnpkg.com/@apm-js-collab/tracing-hooks/-/tracing-hooks-0.3.1.tgz -> @apm-js-collab-tracing-hooks-0.3.1.tgz + https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz -> @babel-code-frame-7.27.1.tgz + https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz -> @babel-compat-data-7.28.5.tgz + https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz -> @babel-core-7.28.5.tgz + https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz -> @babel-generator-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz -> @babel-helper-annotate-as-pure-7.27.3.tgz + https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz -> @babel-helper-compilation-targets-7.27.2.tgz + https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz -> @babel-helper-create-class-features-plugin-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz -> @babel-helper-create-regexp-features-plugin-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz -> @babel-helper-define-polyfill-provider-0.6.5.tgz + https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz -> @babel-helper-globals-7.28.0.tgz + https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz -> @babel-helper-member-expression-to-functions-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz -> @babel-helper-module-imports-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz -> @babel-helper-module-transforms-7.28.3.tgz + https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz -> @babel-helper-optimise-call-expression-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz -> @babel-helper-plugin-utils-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz -> @babel-helper-remap-async-to-generator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz -> @babel-helper-replace-supers-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz -> @babel-helper-skip-transparent-expression-wrappers-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz -> @babel-helper-string-parser-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz -> @babel-helper-validator-identifier-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz -> @babel-helper-validator-identifier-7.28.5.tgz + https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz -> @babel-helper-validator-option-7.27.1.tgz + https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz -> @babel-helper-wrap-function-7.28.3.tgz + https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz -> @babel-helpers-7.28.4.tgz + https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.4.tgz -> @babel-parser-7.28.4.tgz + https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz -> @babel-parser-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz -> @babel-plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz -> @babel-plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz -> @babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz -> @babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz -> @babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz + https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz -> @babel-plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz -> @babel-plugin-syntax-import-assertions-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz -> @babel-plugin-syntax-import-attributes-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz -> @babel-plugin-syntax-jsx-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz -> @babel-plugin-syntax-typescript-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz -> @babel-plugin-syntax-unicode-sets-regex-7.18.6.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz -> @babel-plugin-transform-arrow-functions-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz -> @babel-plugin-transform-async-generator-functions-7.28.0.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz -> @babel-plugin-transform-async-to-generator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz -> @babel-plugin-transform-block-scoped-functions-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz -> @babel-plugin-transform-block-scoping-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz -> @babel-plugin-transform-class-properties-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz -> @babel-plugin-transform-class-static-block-7.28.3.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz -> @babel-plugin-transform-classes-7.28.4.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz -> @babel-plugin-transform-computed-properties-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz -> @babel-plugin-transform-destructuring-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz -> @babel-plugin-transform-dotall-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz -> @babel-plugin-transform-duplicate-keys-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz -> @babel-plugin-transform-dynamic-import-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz -> @babel-plugin-transform-explicit-resource-management-7.28.0.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz -> @babel-plugin-transform-exponentiation-operator-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz -> @babel-plugin-transform-export-namespace-from-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz -> @babel-plugin-transform-for-of-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz -> @babel-plugin-transform-function-name-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz -> @babel-plugin-transform-json-strings-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz -> @babel-plugin-transform-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz -> @babel-plugin-transform-logical-assignment-operators-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz -> @babel-plugin-transform-member-expression-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz -> @babel-plugin-transform-modules-amd-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz -> @babel-plugin-transform-modules-commonjs-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz -> @babel-plugin-transform-modules-systemjs-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz -> @babel-plugin-transform-modules-umd-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz -> @babel-plugin-transform-named-capturing-groups-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz -> @babel-plugin-transform-new-target-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz -> @babel-plugin-transform-nullish-coalescing-operator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz -> @babel-plugin-transform-numeric-separator-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz -> @babel-plugin-transform-object-rest-spread-7.28.4.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz -> @babel-plugin-transform-object-super-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz -> @babel-plugin-transform-optional-catch-binding-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz -> @babel-plugin-transform-optional-chaining-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz -> @babel-plugin-transform-parameters-7.27.7.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz -> @babel-plugin-transform-private-methods-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz -> @babel-plugin-transform-private-property-in-object-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz -> @babel-plugin-transform-property-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz -> @babel-plugin-transform-regenerator-7.28.4.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz -> @babel-plugin-transform-regexp-modifiers-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz -> @babel-plugin-transform-reserved-words-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz -> @babel-plugin-transform-shorthand-properties-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz -> @babel-plugin-transform-spread-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz -> @babel-plugin-transform-sticky-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz -> @babel-plugin-transform-template-literals-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz -> @babel-plugin-transform-typeof-symbol-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz -> @babel-plugin-transform-typescript-7.28.5.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz -> @babel-plugin-transform-unicode-escapes-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-property-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz -> @babel-plugin-transform-unicode-sets-regex-7.27.1.tgz + https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.5.tgz -> @babel-preset-env-7.28.5.tgz + https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz -> @babel-preset-modules-0.1.6-no-external-plugins.tgz + https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz -> @babel-preset-typescript-7.28.5.tgz + https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz -> @babel-template-7.27.2.tgz + https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.4.tgz -> @babel-traverse-7.28.4.tgz + https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz -> @babel-traverse-7.28.5.tgz + https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz -> @babel-types-7.28.5.tgz + https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz -> @develar-schema-utils-2.6.5.tgz + https://registry.yarnpkg.com/@electron/asar/-/asar-3.3.1.tgz -> @electron-asar-3.3.1.tgz + https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz -> @electron-asar-3.4.1.tgz + https://registry.yarnpkg.com/@electron/asar/-/asar-4.0.1.tgz -> @electron-asar-4.0.1.tgz + https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz -> @electron-fuses-1.8.0.tgz + https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz -> @electron-get-2.0.3.tgz + https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz -> @electron-notarize-2.5.0.tgz + https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz -> @electron-osx-sign-1.3.3.tgz + https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.1.tgz -> @electron-rebuild-4.0.1.tgz + https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz -> @electron-universal-2.0.3.tgz + https://registry.yarnpkg.com/@electron/windows-sign/-/windows-sign-1.2.1.tgz -> @electron-windows-sign-1.2.1.tgz + https://registry.yarnpkg.com/@emnapi/core/-/core-1.7.1.tgz -> @emnapi-core-1.7.1.tgz + https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.7.1.tgz -> @emnapi-runtime-1.7.1.tgz + https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz -> @emnapi-wasi-threads-1.1.0.tgz + https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz -> @esbuild-aix-ppc64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz -> @esbuild-android-arm-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz -> @esbuild-android-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz -> @esbuild-android-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz -> @esbuild-darwin-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz -> @esbuild-darwin-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz -> @esbuild-freebsd-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz -> @esbuild-freebsd-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz -> @esbuild-linux-arm-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz -> @esbuild-linux-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz -> @esbuild-linux-ia32-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz -> @esbuild-linux-loong64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz -> @esbuild-linux-mips64el-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz -> @esbuild-linux-ppc64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz -> @esbuild-linux-riscv64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz -> @esbuild-linux-s390x-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz -> @esbuild-linux-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz -> @esbuild-netbsd-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz -> @esbuild-netbsd-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz -> @esbuild-openbsd-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz -> @esbuild-openbsd-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz -> @esbuild-openharmony-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz -> @esbuild-sunos-x64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz -> @esbuild-win32-arm64-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz -> @esbuild-win32-ia32-0.25.10.tgz + https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz -> @esbuild-win32-x64-0.25.10.tgz + https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz -> @eslint-community-eslint-utils-4.4.0.tgz + https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz -> @eslint-community-eslint-utils-4.9.0.tgz + https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz -> @eslint-community-regexpp-4.11.1.tgz + https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz -> @eslint-community-regexpp-4.12.1.tgz + https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz -> @eslint-community-regexpp-4.12.2.tgz + https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz -> @eslint-eslintrc-2.1.4.tgz + https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz -> @eslint-js-8.57.1.tgz + https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz -> @humanwhocodes-config-array-0.13.0.tgz + https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz -> @humanwhocodes-module-importer-1.0.1.tgz + https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz -> @humanwhocodes-object-schema-2.0.3.tgz + https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz -> @isaacs-balanced-match-4.0.1.tgz + https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz -> @isaacs-brace-expansion-5.0.0.tgz + https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz -> @isaacs-cliui-8.0.2.tgz + https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz -> @isaacs-fs-minipass-4.0.1.tgz + https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz -> @jridgewell-gen-mapping-0.3.13.tgz + https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz -> @jridgewell-remapping-2.3.5.tgz + https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz -> @jridgewell-resolve-uri-3.1.2.tgz + https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz -> @jridgewell-sourcemap-codec-1.5.5.tgz + https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz -> @jridgewell-trace-mapping-0.3.31.tgz + https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz -> @malept-cross-spawn-promise-2.0.0.tgz + https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz -> @malept-flatpak-bundler-0.4.0.tgz + https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz -> @napi-rs-wasm-runtime-1.0.7.tgz + https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz -> @nodelib-fs.scandir-2.1.5.tgz + https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz -> @nodelib-fs.stat-2.0.5.tgz + https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz -> @nodelib-fs.walk-1.2.8.tgz + https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz -> @npmcli-agent-3.0.0.tgz + https://registry.yarnpkg.com/@npmcli/agent/-/agent-4.0.0.tgz -> @npmcli-agent-4.0.0.tgz + https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz -> @npmcli-fs-4.0.0.tgz + https://registry.yarnpkg.com/@npmcli/fs/-/fs-5.0.0.tgz -> @npmcli-fs-5.0.0.tgz + https://registry.yarnpkg.com/@npmcli/git/-/git-7.0.1.tgz -> @npmcli-git-7.0.1.tgz + https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz -> @npmcli-installed-package-contents-4.0.0.tgz + https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz -> @npmcli-node-gyp-5.0.0.tgz + https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-7.0.4.tgz -> @npmcli-package-json-7.0.4.tgz + https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz -> @npmcli-promise-spawn-9.0.1.tgz + https://registry.yarnpkg.com/@npmcli/redact/-/redact-4.0.0.tgz -> @npmcli-redact-4.0.0.tgz + https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-10.0.3.tgz -> @npmcli-run-script-10.0.3.tgz + https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.204.0.tgz -> @opentelemetry-api-logs-0.204.0.tgz + https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.57.2.tgz -> @opentelemetry-api-logs-0.57.2.tgz + https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz -> @opentelemetry-api-1.9.0.tgz + https://registry.yarnpkg.com/@opentelemetry/context-async-hooks/-/context-async-hooks-2.2.0.tgz -> @opentelemetry-context-async-hooks-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.1.0.tgz -> @opentelemetry-core-2.1.0.tgz + https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.2.0.tgz -> @opentelemetry-core-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.51.0.tgz -> @opentelemetry-instrumentation-amqplib-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.48.0.tgz -> @opentelemetry-instrumentation-connect-0.48.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.22.0.tgz -> @opentelemetry-instrumentation-dataloader-0.22.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-express/-/instrumentation-express-0.53.0.tgz -> @opentelemetry-instrumentation-express-0.53.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.24.0.tgz -> @opentelemetry-instrumentation-fs-0.24.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.48.0.tgz -> @opentelemetry-instrumentation-generic-pool-0.48.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.52.0.tgz -> @opentelemetry-instrumentation-graphql-0.52.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.51.0.tgz -> @opentelemetry-instrumentation-hapi-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-http/-/instrumentation-http-0.204.0.tgz -> @opentelemetry-instrumentation-http-0.204.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.52.0.tgz -> @opentelemetry-instrumentation-ioredis-0.52.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.14.0.tgz -> @opentelemetry-instrumentation-kafkajs-0.14.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.49.0.tgz -> @opentelemetry-instrumentation-knex-0.49.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.52.0.tgz -> @opentelemetry-instrumentation-koa-0.52.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.49.0.tgz -> @opentelemetry-instrumentation-lru-memoizer-0.49.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.57.0.tgz -> @opentelemetry-instrumentation-mongodb-0.57.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.51.0.tgz -> @opentelemetry-instrumentation-mongoose-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.50.0.tgz -> @opentelemetry-instrumentation-mysql-0.50.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.51.0.tgz -> @opentelemetry-instrumentation-mysql2-0.51.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.57.0.tgz -> @opentelemetry-instrumentation-pg-0.57.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-redis/-/instrumentation-redis-0.53.0.tgz -> @opentelemetry-instrumentation-redis-0.53.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.23.0.tgz -> @opentelemetry-instrumentation-tedious-0.23.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.15.0.tgz -> @opentelemetry-instrumentation-undici-0.15.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.204.0.tgz -> @opentelemetry-instrumentation-0.204.0.tgz + https://registry.yarnpkg.com/@opentelemetry/instrumentation/-/instrumentation-0.57.2.tgz -> @opentelemetry-instrumentation-0.57.2.tgz + https://registry.yarnpkg.com/@opentelemetry/redis-common/-/redis-common-0.38.2.tgz -> @opentelemetry-redis-common-0.38.2.tgz + https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.2.0.tgz -> @opentelemetry-resources-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.2.0.tgz -> @opentelemetry-sdk-trace-base-2.2.0.tgz + https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.38.0.tgz -> @opentelemetry-semantic-conventions-1.38.0.tgz + https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.41.2.tgz -> @opentelemetry-sql-common-0.41.2.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.14.0.tgz -> @oxc-resolver-binding-android-arm-eabi-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.14.0.tgz -> @oxc-resolver-binding-android-arm64-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.14.0.tgz -> @oxc-resolver-binding-darwin-arm64-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.14.0.tgz -> @oxc-resolver-binding-darwin-x64-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.14.0.tgz -> @oxc-resolver-binding-freebsd-x64-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.14.0.tgz -> @oxc-resolver-binding-linux-arm-gnueabihf-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.14.0.tgz -> @oxc-resolver-binding-linux-arm-musleabihf-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-arm64-gnu-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.14.0.tgz -> @oxc-resolver-binding-linux-arm64-musl-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-ppc64-gnu-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-riscv64-gnu-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.14.0.tgz -> @oxc-resolver-binding-linux-riscv64-musl-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-s390x-gnu-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.14.0.tgz -> @oxc-resolver-binding-linux-x64-gnu-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.14.0.tgz -> @oxc-resolver-binding-linux-x64-musl-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.14.0.tgz -> @oxc-resolver-binding-wasm32-wasi-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.14.0.tgz -> @oxc-resolver-binding-win32-arm64-msvc-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.14.0.tgz -> @oxc-resolver-binding-win32-ia32-msvc-11.14.0.tgz + https://registry.yarnpkg.com/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.14.0.tgz -> @oxc-resolver-binding-win32-x64-msvc-11.14.0.tgz + https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz -> @pkgjs-parseargs-0.11.0.tgz + https://registry.yarnpkg.com/@playwright/test/-/test-1.57.0.tgz -> @playwright-test-1.57.0.tgz + https://registry.yarnpkg.com/@prisma/instrumentation/-/instrumentation-6.15.0.tgz -> @prisma-instrumentation-6.15.0.tgz + https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz -> @rtsao-scc-1.1.0.tgz + https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.26.0.tgz -> @sentry-internal-browser-utils-10.26.0.tgz + https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.26.0.tgz -> @sentry-internal-feedback-10.26.0.tgz + https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.26.0.tgz -> @sentry-internal-replay-canvas-10.26.0.tgz + https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.26.0.tgz -> @sentry-internal-replay-10.26.0.tgz + https://registry.yarnpkg.com/@sentry/browser/-/browser-10.26.0.tgz -> @sentry-browser-10.26.0.tgz + https://registry.yarnpkg.com/@sentry/core/-/core-10.26.0.tgz -> @sentry-core-10.26.0.tgz + https://registry.yarnpkg.com/@sentry/electron/-/electron-7.3.0.tgz -> @sentry-electron-7.3.0.tgz + https://registry.yarnpkg.com/@sentry/node-core/-/node-core-10.26.0.tgz -> @sentry-node-core-10.26.0.tgz + https://registry.yarnpkg.com/@sentry/node/-/node-10.26.0.tgz -> @sentry-node-10.26.0.tgz + https://registry.yarnpkg.com/@sentry/opentelemetry/-/opentelemetry-10.26.0.tgz -> @sentry-opentelemetry-10.26.0.tgz + https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-4.0.0.tgz -> @sigstore-bundle-4.0.0.tgz + https://registry.yarnpkg.com/@sigstore/core/-/core-3.0.0.tgz -> @sigstore-core-3.0.0.tgz + https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz -> @sigstore-protobuf-specs-0.5.0.tgz + https://registry.yarnpkg.com/@sigstore/sign/-/sign-4.0.1.tgz -> @sigstore-sign-4.0.1.tgz + https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-4.0.0.tgz -> @sigstore-tuf-4.0.0.tgz + https://registry.yarnpkg.com/@sigstore/verify/-/verify-3.0.0.tgz -> @sigstore-verify-3.0.0.tgz + https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz -> @sindresorhus-is-4.6.0.tgz + https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.6.1.tgz -> @stylistic-eslint-plugin-5.6.1.tgz + https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz -> @szmarczak-http-timer-4.0.6.tgz + https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz -> @tufjs-canonical-json-2.0.0.tgz + https://registry.yarnpkg.com/@tufjs/models/-/models-4.0.0.tgz -> @tufjs-models-4.0.0.tgz + https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz -> @tybys-wasm-util-0.10.1.tgz + https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.5.tgz -> @types-auto-launch-5.0.5.tgz + https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz -> @types-cacheable-request-6.0.3.tgz + https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz -> @types-connect-3.4.38.tgz + https://registry.yarnpkg.com/@types/counterpart/-/counterpart-0.18.4.tgz -> @types-counterpart-0.18.4.tgz + https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz -> @types-debug-4.1.12.tgz + https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz -> @types-fs-extra-9.0.13.tgz + https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz -> @types-http-cache-semantics-4.0.4.tgz + https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz -> @types-json5-0.0.29.tgz + https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz -> @types-keyv-3.1.4.tgz + https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz -> @types-minimist-1.2.5.tgz + https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz -> @types-ms-2.1.0.tgz + https://registry.yarnpkg.com/@types/mysql/-/mysql-2.15.27.tgz -> @types-mysql-2.15.27.tgz + https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz -> @types-node-fetch-2.6.11.tgz + https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz -> @types-node-18.19.130.tgz + https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz -> @types-normalize-package-data-2.4.4.tgz + https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.4.tgz -> @types-npm-package-arg-6.1.4.tgz + https://registry.yarnpkg.com/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.7.tgz -> @types-npm-registry-fetch-8.0.7.tgz + https://registry.yarnpkg.com/@types/npmlog/-/npmlog-7.0.0.tgz -> @types-npmlog-7.0.0.tgz + https://registry.yarnpkg.com/@types/pacote/-/pacote-11.1.8.tgz -> @types-pacote-11.1.8.tgz + https://registry.yarnpkg.com/@types/pg-pool/-/pg-pool-2.0.6.tgz -> @types-pg-pool-2.0.6.tgz + https://registry.yarnpkg.com/@types/pg/-/pg-8.15.5.tgz -> @types-pg-8.15.5.tgz + https://registry.yarnpkg.com/@types/pg/-/pg-8.15.6.tgz -> @types-pg-8.15.6.tgz + https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz -> @types-plist-3.0.5.tgz + https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz -> @types-responselike-1.0.3.tgz + https://registry.yarnpkg.com/@types/shimmer/-/shimmer-1.2.0.tgz -> @types-shimmer-1.2.0.tgz + https://registry.yarnpkg.com/@types/ssri/-/ssri-7.1.5.tgz -> @types-ssri-7.1.5.tgz + https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz -> @types-tedious-4.0.14.tgz + https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz -> @types-verror-1.10.10.tgz + https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz -> @types-yauzl-2.10.3.tgz + https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.0.tgz -> @typescript-eslint-eslint-plugin-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.48.0.tgz -> @typescript-eslint-parser-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.48.0.tgz -> @typescript-eslint-project-service-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.48.0.tgz -> @typescript-eslint-scope-manager-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.0.tgz -> @typescript-eslint-tsconfig-utils-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.48.0.tgz -> @typescript-eslint-type-utils-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.48.0.tgz -> @typescript-eslint-types-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.0.tgz -> @typescript-eslint-typescript-estree-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.48.0.tgz -> @typescript-eslint-utils-8.48.0.tgz + https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.0.tgz -> @typescript-eslint-visitor-keys-8.48.0.tgz + https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz -> @ungap-structured-clone-1.2.0.tgz + https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz -> @xmldom-xmldom-0.8.10.tgz + https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz -> @yarnpkg-lockfile-1.1.0.tgz + https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz + https://registry.yarnpkg.com/abbrev/-/abbrev-4.0.0.tgz + https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz + https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz + https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz + https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz + https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz + https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz + https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz + https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz + https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz + https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.2.0.tgz + https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz + https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz + https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz + https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz + https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz + https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.2.0.tgz + https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz + https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz + https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz + https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz + https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz + https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz + https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz + https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz + https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz + https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz + https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz + https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz + https://registry.yarnpkg.com/async/-/async-3.2.6.tgz + https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz + https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz + https://registry.yarnpkg.com/atomically/-/atomically-2.0.3.tgz + https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz + https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz + https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz + https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz + https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz + https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz + https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz + https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz + https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz + https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz + https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz + https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz + https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz + https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz + https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz + https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz + https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz + https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz + https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz + https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.0.tgz + https://registry.yarnpkg.com/builder-util/-/builder-util-26.1.0.tgz + https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz + https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz + https://registry.yarnpkg.com/cacache/-/cacache-20.0.3.tgz + https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz + https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz + https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz + https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz + https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz + https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz + https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz + https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz + https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz + https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz + https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz + https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz + https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz + https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz + https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz + https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz + https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz + https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz + https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz + https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz + https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz + https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz + https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz + https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz + https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz + https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz + https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz + https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz + https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz + https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz + https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz + https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz + https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz + https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz + https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz + https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz + https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz + https://registry.yarnpkg.com/conf/-/conf-15.0.2.tgz + https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz + https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz + https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz + https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz + https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz + https://registry.yarnpkg.com/counterpart/-/counterpart-0.18.6.tgz + https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz + https://registry.yarnpkg.com/cross-dirname/-/cross-dirname-0.1.0.tgz + https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz + https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz + https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz + https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz + https://registry.yarnpkg.com/date-names/-/date-names-0.1.13.tgz + https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-6.0.0.tgz + https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz + https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz + https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz + https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz + https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz + https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz + https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz + https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz + https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz + https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz + https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz + https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz + https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz + https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz + https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.2.0.tgz + https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz + https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz + https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz + https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz + https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz + https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz + https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz + https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz + https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz + https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.2.0.tgz + https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.2.0.tgz + https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-4.0.0.tgz + https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.1.0.tgz + https://registry.yarnpkg.com/electron-store/-/electron-store-11.0.2.tgz + https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz + https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.241.tgz + https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz + https://registry.yarnpkg.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz + https://registry.yarnpkg.com/electron/-/electron-39.2.3.tgz + https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.6.0.tgz + https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz + https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz + https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz + https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz + https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz + https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz + https://registry.yarnpkg.com/env-paths/-/env-paths-3.0.0.tgz + https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz + https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz + https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz + https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz + https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz + https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz + https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz + https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz + https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz + https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz + https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz + https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz + https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz + https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz + https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz + https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz + https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.14.0.tgz + https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz + https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz + https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz + https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz + https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz + https://registry.yarnpkg.com/eslint-plugin-matrix-org/-/eslint-plugin-matrix-org-3.0.0.tgz + https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.1.tgz + https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-56.0.1.tgz + https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz + https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz + https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz + https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz + https://registry.yarnpkg.com/espree/-/espree-10.4.0.tgz + https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz + https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz + https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz + https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz + https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz + https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz + https://registry.yarnpkg.com/except/-/except-0.1.3.tgz + https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz + https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz + https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz + https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz + https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz + https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz + https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz + https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz + https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz + https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz + https://registry.yarnpkg.com/fd-package-json/-/fd-package-json-2.0.0.tgz + https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz + https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz + https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz + https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz + https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz + https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz + https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz + https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz + https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz + https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz + https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz + https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz + https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz + https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz + https://registry.yarnpkg.com/formatly/-/formatly-0.3.0.tgz + https://registry.yarnpkg.com/forwarded-parse/-/forwarded-parse-2.1.2.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.0.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz + https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz + https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz + https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz + https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz + https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz + https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz + https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz + https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz + https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz + https://registry.yarnpkg.com/generator-function/-/generator-function-2.0.1.tgz + https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz + https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz + https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz + https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz + https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz + https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz + https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz + https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.10.1.tgz + https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.12.0.tgz + https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz + https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz + https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz + https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz + https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz + https://registry.yarnpkg.com/glob/-/glob-13.0.0.tgz + https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz + https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz + https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz + https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz + https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz + https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz + https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz + https://registry.yarnpkg.com/got/-/got-11.8.6.tgz + https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz + https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz + https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz + https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz + https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz + https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz + https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz + https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz + https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz + https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz + https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz + https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-9.0.2.tgz + https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz + https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz + https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz + https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz + https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz + https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz + https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz + https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz + https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz + https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-8.0.0.tgz + https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz + https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz + https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz + https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz + https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-1.15.0.tgz + https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz + https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz + https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz + https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz + https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz + https://registry.yarnpkg.com/ini/-/ini-6.0.0.tgz + https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz + https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz + https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz + https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz + https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz + https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz + https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz + https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz + https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz + https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz + https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz + https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz + https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz + https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz + https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz + https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz + https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz + https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.2.tgz + https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz + https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz + https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz + https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz + https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz + https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz + https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz + https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz + https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz + https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz + https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz + https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz + https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz + https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz + https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz + https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz + https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz + https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz + https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz + https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz + https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz + https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.4.tgz + https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz + https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz + https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz + https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz + https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz + https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz + https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz + https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz + https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz + https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz + https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz + https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz + https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz + https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz + https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz + https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz + https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz + https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-8.0.1.tgz + https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz + https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz + https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz + https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz + https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz + https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz + https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz + https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz + https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz + https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz + https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz + https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz + https://registry.yarnpkg.com/knip/-/knip-5.70.2.tgz + https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz + https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz + https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz + https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz + https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.7.tgz + https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz + https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz + https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz + https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz + https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz + https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz + https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz + https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz + https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.2.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz + https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz + https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz + https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz + https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz + https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz + https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.4.0.tgz + https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz + https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz + https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz + https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz + https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz + https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz + https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz + https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz + https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz + https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz + https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz + https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz + https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz + https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz + https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-5.0.0.tgz + https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz + https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz + https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz + https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz + https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz + https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz + https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz + https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz + https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz + https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz + https://registry.yarnpkg.com/mkdirp/-/mkdirp-3.0.1.tgz + https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.4.tgz + https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz + https://registry.yarnpkg.com/nano-spawn/-/nano-spawn-2.0.0.tgz + https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz + https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz + https://registry.yarnpkg.com/node-abi/-/node-abi-4.24.0.tgz + https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz + https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz + https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.4.2.tgz + https://registry.yarnpkg.com/node-gyp/-/node-gyp-12.1.0.tgz + https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.26.tgz + https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz + https://registry.yarnpkg.com/nopt/-/nopt-9.0.0.tgz + https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz + https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz + https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-5.0.0.tgz + https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-8.0.0.tgz + https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz + https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-13.0.2.tgz + https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-10.0.3.tgz + https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz + https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz + https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz + https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz + https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz + https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz + https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz + https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz + https://registry.yarnpkg.com/once/-/once-1.4.0.tgz + https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz + https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz + https://registry.yarnpkg.com/open/-/open-7.4.2.tgz + https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz + https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz + https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz + https://registry.yarnpkg.com/oxc-resolver/-/oxc-resolver-11.14.0.tgz + https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz + https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz + https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz + https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz + https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz + https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz + https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz + https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz + https://registry.yarnpkg.com/pacote/-/pacote-21.0.4.tgz + https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz + https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz + https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz + https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz + https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz + https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz + https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz + https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz + https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz + https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz + https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz + https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz + https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz + https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.10.3.tgz + https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz + https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz + https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz + https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz + https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz + https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.57.0.tgz + https://registry.yarnpkg.com/playwright/-/playwright-1.57.0.tgz + https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz + https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz + https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.7.tgz + https://registry.yarnpkg.com/png-to-ico/-/png-to-ico-3.0.1.tgz + https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz + https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz + https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz + https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz + https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz + https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz + https://registry.yarnpkg.com/postinstall-postinstall/-/postinstall-postinstall-2.1.0.tgz + https://registry.yarnpkg.com/postject/-/postject-1.0.0-alpha.6.tgz + https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz + https://registry.yarnpkg.com/prettier/-/prettier-3.7.0.tgz + https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz + https://registry.yarnpkg.com/proc-log/-/proc-log-6.0.0.tgz + https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz + https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz + https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz + https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz + https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz + https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz + https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz + https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz + https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz + https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz + https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz + https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz + https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz + https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz + https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz + https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz + https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz + https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz + https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.4.0.tgz + https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz + https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.10.0.tgz + https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.13.0.tgz + https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz + https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz + https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-7.5.2.tgz + https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz + https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz + https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz + https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz + https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz + https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz + https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz + https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz + https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz + https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz + https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz + https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz + https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz + https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz + https://registry.yarnpkg.com/rimraf/-/rimraf-6.1.2.tgz + https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz + https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz + https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz + https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz + https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz + https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz + https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz + https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz + https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz + https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz + https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz + https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz + https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz + https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz + https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz + https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz + https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz + https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz + https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz + https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz + https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz + https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz + https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz + https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.1.tgz + https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz + https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz + https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz + https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz + https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz + https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz + https://registry.yarnpkg.com/sigstore/-/sigstore-4.0.0.tgz + https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz + https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz + https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz + https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.2.tgz + https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz + https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.5.2.tgz + https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz + https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz + https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz + https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz + https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz + https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz + https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz + https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz + https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz + https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz + https://registry.yarnpkg.com/ssri/-/ssri-13.0.0.tgz + https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz + https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz + https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz + https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz + https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz + https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz + https://registry.yarnpkg.com/string-width/-/string-width-8.1.0.tgz + https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz + https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz + https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz + https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz + https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz + https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz + https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz + https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz + https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz + https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz + https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.3.tgz + https://registry.yarnpkg.com/stubborn-fs/-/stubborn-fs-1.2.5.tgz + https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz + https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz + https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz + https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz + https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz + https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz + https://registry.yarnpkg.com/tar/-/tar-7.5.2.tgz + https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz + https://registry.yarnpkg.com/temp/-/temp-0.9.4.tgz + https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz + https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz + https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz + https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz + https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz + https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz + https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz + https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz + https://registry.yarnpkg.com/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz + https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz + https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz + https://registry.yarnpkg.com/tsx/-/tsx-4.20.6.tgz + https://registry.yarnpkg.com/tuf-js/-/tuf-js-4.0.0.tgz + https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz + https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz + https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz + https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz + https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz + https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz + https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz + https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz + https://registry.yarnpkg.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz + https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz + https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz + https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz + https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz + https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz + https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz + https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz + https://registry.yarnpkg.com/unique-filename/-/unique-filename-5.0.0.tgz + https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz + https://registry.yarnpkg.com/unique-slug/-/unique-slug-6.0.0.tgz + https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz + https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz + https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz + https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz + https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz + https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz + https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz + https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz + https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz + https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz + https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-7.0.0.tgz + https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz + https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-4.0.0.tgz + https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz + https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz + https://registry.yarnpkg.com/when-exit/-/when-exit-2.1.4.tgz + https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz + https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz + https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz + https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz + https://registry.yarnpkg.com/which/-/which-2.0.2.tgz + https://registry.yarnpkg.com/which/-/which-5.0.0.tgz + https://registry.yarnpkg.com/which/-/which-6.0.0.tgz + https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz + https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz + https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz + https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz + https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz + https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz + https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz + https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz + https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz + https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz + https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz + https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz + https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz + https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz + https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz + https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz + https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz + https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz + https://registry.yarnpkg.com/zod/-/zod-4.1.13.tgz +) " + +REPO="https://github.com/vector-im/element-desktop" +ELECTRON_SLOT_DEFAULT="38" +#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" +IUSE="electron-36 electron-37 electron-39 native-modules" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="${REPO}.git" + EGIT_BRANCH="develop" + DOWNLOAD="" + IUSE+=" +build-online" +else + IUSE+=" build-online" + KEYWORDS="amd64 ~arm64 ~ppc64 ~x86" + DOWNLOAD="${REPO}/archive/" + if [ -z "$ELEMENT_COMMIT_ID" ] + then + DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" + else + DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" + S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" + fi +fi + +SRC_URI+="${DOWNLOAD}" + +RESTRICT="mirror build-online? ( network-sandbox )" +REQUIRED_USE=" + native-modules? ( build-online ) +" + +COMMON_DEPEND=" + ~net-im/element-web-${PV} + native-modules? ( dev-db/sqlcipher ) + electron-36? ( dev-util/electron:36 ) + electron-37? ( dev-util/electron:37 ) + electron-39? ( dev-util/electron:39 ) + !electron-36? ( + !electron-37? ( + !electron-39? ( + dev-util/electron:${ELECTRON_SLOT_DEFAULT} + ) ) ) +" + +RDEPEND="${COMMON_DEPEND} +" +DEPEND="${COMMON_DEPEND} +" + +BDEPEND=" + ${PYTHON_DEPS} + $(python_gen_any_dep ' + dev-python/setuptools[${PYTHON_USEDEP}] + ') + native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) + net-libs/nodejs + sys-apps/yarn +" + +python_check_deps() { + python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" +} + +#TODO: net-im/element-web -> runtime/buildtime dep + +src_unpack() { + if use electron-36; then + export ELECTRON_SLOT=36 + elif use electron-37; then + export ELECTRON_SLOT=37 + elif use electron-39; then + export ELECTRON_SLOT=39 + else + export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT + fi + if [ -z "$ELEMENT_COMMIT_ID" ] + then + if [ -f "${DISTDIR}/${P}.tar.gz" ]; then + unpack "${P}".tar.gz || die + else + git-r3_src_unpack + fi + else + unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die + fi +} + +src_compile() { + # OLD_PATH=$PATH + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" + PATH="${S}/node_modules/.bin:$PATH"; + export PATH + export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" + export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" + export ELECTRON_SKIP_BINARY_DOWNLOAD=1 + yarn config set disable-self-update-check true || die + yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die + # #! Until electron-builder >=22.11.5 + # yarn config set ignore-engines true || die + + sed -i 's/electron-builder install-app-deps/true/' package.json || die + + if ! use build-online; then + ONLINE_OFFLINE="--offline --frozen-lockfile" + yarn config set yarn-offline-mirror "${DISTDIR}" || die + fi + + einfo "Removing playwright from dependencies" + sed -i '/playwright":/d' package.json || die + + einfo "Installing node_modules" + node /usr/bin/yarn install ${ONLINE_OFFLINE} --no-progress || die + + node node_modules/.bin/tsc || die + node node_modules/.bin/tsx scripts/copy-res.ts || die + + if use native-modules + then + node /usr/bin/yarn run build:native || die + fi + + # # Electron-Builder doesn't support ppc64 due to using precompiled binaries + # if ! use ppc64; then + # einfo "Editing ElectronFramework.js" + # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ + # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die + # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ + # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die + + # #!Error: With electron's node: "Unknown argument" electron/electron#25379 + # #!Error: With electron's node: "Invalid package app.asar" + # /usr/bin/node node_modules/.bin/electron-builder --dir || die + # else + einfo "Manually preparing app.asar" + local distdir="dist/linux-unpacked/resources" + mkdir -p ${distdir}/node_modules || die + cp -r lib ${distdir} || die + # Copying yarn.lock allows freezing versions to the build versions + cp package.json yarn.lock ${distdir} || die + pushd ${distdir} &> /dev/null || die + node /usr/bin/yarn install ${ONLINE_OFFLINE} --production \ + --no-progress --frozen-lockfile || die + popd &> /dev/null || die + rm ${distdir}/yarn.lock || die + if use native-modules; then + cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die + fi + + einfo "Creating archive" + /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ + --unpack-dir '{**/Release,**/matrix-seshat}' || die + # Remove unarchived copies of files (they are still in app.asar) + rm -r ${distdir}/node_modules || die + rm -r ${distdir}/lib || die + + cp -r build ${distdir} || die + # fi + + #cp -r /usr/share/element-web webapp + #rm -f webapp/config.json + #cp -f /etc/element-web/config.json webapp/config.json + #node node_modules/.bin/asar p webapp webapp.asar + #node node_modules/.bin/asar l webapp.asar + + # export PATH=${OLD_PATH} +} + +src_install() { + insinto "/usr/$(get_libdir)/element-desktop" + + doins -r dist/linux-unpacked/resources/* + dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp + + exeinto "/usr/$(get_libdir)/element-desktop" + cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop + sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop + + echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ +/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop + doexe dist/linux-unpacked/resources/element-desktop + dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop + + # # Install icons + # local branding size + # for size in 16 24 48 64 96 128 256 512 ; do + # newicon -s ${size} "build/icons/${size}x${size}.png" \ + # element-desktop.png + # done + + newicon build/icon.png element-desktop.png + + make_desktop_entry "/usr/bin/element-desktop" Element \ + "element-desktop" "Network;Chat" +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update +} diff --git a/net-im/element-desktop/element-desktop-9999.ebuild b/net-im/element-desktop/element-desktop-9999.ebuild new file mode 100644 index 000000000000..a9ee24a5f34e --- /dev/null +++ b/net-im/element-desktop/element-desktop-9999.ebuild @@ -0,0 +1,221 @@ +# Copyright 2009-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) + +inherit desktop flag-o-matic multilib python-any-r1 xdg-utils + +DESCRIPTION="A glossy Matrix collaboration client for desktop" +HOMEPAGE="https://element.io/" +LICENSE="Apache-2.0" +SLOT="0" +SRC_URI="" + +REPO="https://github.com/vector-im/element-desktop" +ELECTRON_SLOT_DEFAULT="38" +#ELEMENT_COMMIT_ID="ae245c9b1f06e79cec4829f8cd1555206b0ec8f2" +IUSE="electron-36 electron-37 electron-39 native-modules" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="${REPO}.git" + EGIT_BRANCH="develop" + DOWNLOAD="" + IUSE+=" +build-online" +else + IUSE+=" build-online" + KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + DOWNLOAD="${REPO}/archive/" + if [ -z "$ELEMENT_COMMIT_ID" ] + then + DOWNLOAD+="v${PV}.tar.gz -> ${P}.tar.gz" + else + DOWNLOAD+="${ELEMENT_COMMIT_ID}.tar.gz -> ${PN}-${ELEMENT_COMMIT_ID}.tar.gz" + S="${WORKDIR}/${PN}-${ELEMENT_COMMIT_ID}" + fi +fi + +SRC_URI+="${DOWNLOAD}" + +RESTRICT="mirror build-online? ( network-sandbox )" +REQUIRED_USE=" + native-modules? ( build-online ) +" + +COMMON_DEPEND=" + ~net-im/element-web-${PV} + native-modules? ( dev-db/sqlcipher ) + electron-36? ( dev-util/electron:36 ) + electron-37? ( dev-util/electron:37 ) + electron-39? ( dev-util/electron:39 ) + !electron-36? ( + !electron-37? ( + !electron-39? ( + dev-util/electron:${ELECTRON_SLOT_DEFAULT} + ) ) ) +" + +RDEPEND="${COMMON_DEPEND} +" +DEPEND="${COMMON_DEPEND} +" + +BDEPEND=" + ${PYTHON_DEPS} + $(python_gen_any_dep ' + dev-python/setuptools[${PYTHON_USEDEP}] + ') + native-modules? ( || ( dev-lang/rust dev-lang/rust-bin ) ) + net-libs/nodejs + sys-apps/yarn +" + +python_check_deps() { + python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" +} + +#TODO: net-im/element-web -> runtime/buildtime dep + +src_unpack() { + if use electron-36; then + export ELECTRON_SLOT=36 + elif use electron-37; then + export ELECTRON_SLOT=37 + elif use electron-39; then + export ELECTRON_SLOT=39 + else + export ELECTRON_SLOT=$ELECTRON_SLOT_DEFAULT + fi + if [ -z "$ELEMENT_COMMIT_ID" ] + then + if [ -f "${DISTDIR}/${P}.tar.gz" ]; then + unpack "${P}".tar.gz || die + else + git-r3_src_unpack + fi + else + unpack "${PN}-${ELEMENT_COMMIT_ID}.tar.gz" || die + fi +} + +src_compile() { + # OLD_PATH=$PATH + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin/node-gyp-bin:$PATH" + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/node_modules/npm/bin:$PATH" + PATH="/usr/$(get_libdir)/electron-${ELECTRON_SLOT}:$PATH" + PATH="${S}/node_modules/.bin:$PATH"; + export PATH + export CFLAGS="${CFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" + export CPPFLAGS="${CPPFLAGS} -I/usr/include/electron-${ELECTRON_SLOT}/node" + export ELECTRON_SKIP_BINARY_DOWNLOAD=1 + yarn config set disable-self-update-check true || die + yarn config set nodedir /usr/include/electron-${ELECTRON_SLOT}/node || die + # #! Until electron-builder >=22.11.5 + # yarn config set ignore-engines true || die + + sed -i 's/electron-builder install-app-deps/true/' package.json || die + + if ! use build-online; then + ONLINE_OFFLINE="--offline --frozen-lockfile" + yarn config set yarn-offline-mirror "${DISTDIR}" || die + fi + + einfo "Removing playwright from dependencies" + sed -i '/playwright":/d' package.json || die + + einfo "Installing node_modules" + node /usr/bin/yarn install ${ONLINE_OFFLINE} --no-progress || die + + node node_modules/.bin/tsc || die + node node_modules/.bin/tsx scripts/copy-res.ts || die + + if use native-modules + then + node /usr/bin/yarn run build:native || die + fi + + # # Electron-Builder doesn't support ppc64 due to using precompiled binaries + # if ! use ppc64; then + # einfo "Editing ElectronFramework.js" + # sed -i 's/return unpack(options, createDownloadOpts.*$/return true;/' \ + # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die + # sed -i 's/return beforeCopyExtraFiles(options);$/return true;/' \ + # node_modules/app-builder-lib/out/electron/ElectronFramework.js || die + + # #!Error: With electron's node: "Unknown argument" electron/electron#25379 + # #!Error: With electron's node: "Invalid package app.asar" + # /usr/bin/node node_modules/.bin/electron-builder --dir || die + # else + einfo "Manually preparing app.asar" + local distdir="dist/linux-unpacked/resources" + mkdir -p ${distdir}/node_modules || die + cp -r lib ${distdir} || die + # Copying yarn.lock allows freezing versions to the build versions + cp package.json yarn.lock ${distdir} || die + pushd ${distdir} &> /dev/null || die + node /usr/bin/yarn install ${ONLINE_OFFLINE} --production \ + --no-progress --frozen-lockfile || die + popd &> /dev/null || die + rm ${distdir}/yarn.lock || die + if use native-modules; then + cp -r .hak/hakModules/matrix-seshat ${distdir}/node_modules/ || die + fi + + einfo "Creating archive" + /usr/bin/node node_modules/@electron/asar/bin/asar.mjs pack ${distdir} ${distdir}/app.asar \ + --unpack-dir '{**/Release,**/matrix-seshat}' || die + # Remove unarchived copies of files (they are still in app.asar) + rm -r ${distdir}/node_modules || die + rm -r ${distdir}/lib || die + + cp -r build ${distdir} || die + # fi + + #cp -r /usr/share/element-web webapp + #rm -f webapp/config.json + #cp -f /etc/element-web/config.json webapp/config.json + #node node_modules/.bin/asar p webapp webapp.asar + #node node_modules/.bin/asar l webapp.asar + + # export PATH=${OLD_PATH} +} + +src_install() { + insinto "/usr/$(get_libdir)/element-desktop" + + doins -r dist/linux-unpacked/resources/* + dosym ../../share/element-web /usr/$(get_libdir)/element-desktop/webapp + + exeinto "/usr/$(get_libdir)/element-desktop" + cp "${FILESDIR}/read_flags_file" dist/linux-unpacked/resources/element-desktop + sed -i "s|@ELECTRON@|element-desktop|" dist/linux-unpacked/resources/element-desktop + + echo "\"/usr/$(get_libdir)/electron-${ELECTRON_SLOT}/electron\" \ +/usr/$(get_libdir)/element-desktop/app.asar \"\${flags[@]}\" \"\$@\"" >> dist/linux-unpacked/resources/element-desktop + doexe dist/linux-unpacked/resources/element-desktop + dosym "/usr/$(get_libdir)/element-desktop/element-desktop" /usr/bin/element-desktop + + # # Install icons + # local branding size + # for size in 16 24 48 64 96 128 256 512 ; do + # newicon -s ${size} "build/icons/${size}x${size}.png" \ + # element-desktop.png + # done + + newicon build/icon.png element-desktop.png + + make_desktop_entry "/usr/bin/element-desktop" Element \ + "element-desktop" "Network;Chat" +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update +} diff --git a/net-im/element-desktop/files/read_flags_file b/net-im/element-desktop/files/read_flags_file new file mode 100644 index 000000000000..3c618689ec57 --- /dev/null +++ b/net-im/element-desktop/files/read_flags_file @@ -0,0 +1,16 @@ +#!/usr/bin/env sh + +name=@ELECTRON@ +flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/${name}-flags.conf" + +declare -a flags + +if [[ -f "${flags_file}" ]]; then + mapfile -t < "${flags_file}" +fi + +for line in "${MAPFILE[@]}"; do + if [[ ! "${line}" =~ ^[[:space:]]*#.* ]]; then + flags+=("${line}") + fi +done diff --git a/net-im/element-desktop/metadata.xml b/net-im/element-desktop/metadata.xml index 9c6d65a815cf..7f6d0a997f4d 100644 --- a/net-im/element-desktop/metadata.xml +++ b/net-im/element-desktop/metadata.xml @@ -2,15 +2,35 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> - <email>filip@kszczot.pl</email> - <name>Filip Kszczot</name> + <email>PF4Public@users.noreply.github.com</email> </maintainer> + <longdescription>A glossy Matrix collaboration client for desktop</longdescription> <upstream> <remote-id type="cpe">cpe:/a:matrix:element</remote-id> - <bugs-to>https://github.com/element-hq/element-web/issues</bugs-to> </upstream> <use> - <flag name="emoji">Use <pkg>media-fonts/noto-emoji</pkg> for displaying emoji</flag> + <flag name="build-online">Disable network-sandbox and open Pandora's box!</flag> + <flag name="electron-19">Build against electron-19 instead of the default one. Use at your own risk!</flag> + <flag name="electron-20">Build against electron-20 instead of the default one. Use at your own risk!</flag> + <flag name="electron-21">Build against electron-21 instead of the default one. Use at your own risk!</flag> + <flag name="electron-22">Build against electron-22 instead of the default one. Use at your own risk!</flag> + <flag name="electron-23">Build against electron-23 instead of the default one. Use at your own risk!</flag> + <flag name="electron-24">Build against electron-24 instead of the default one. Use at your own risk!</flag> + <flag name="electron-25">Build against electron-25 instead of the default one. Use at your own risk!</flag> + <flag name="electron-26">Build against electron-26 instead of the default one. Use at your own risk!</flag> + <flag name="electron-27">Build against electron-27 instead of the default one. Use at your own risk!</flag> + <flag name="electron-28">Build against electron-28 instead of the default one. Use at your own risk!</flag> + <flag name="electron-29">Build against electron-29 instead of the default one. Use at your own risk!</flag> + <flag name="electron-30">Build against electron-30 instead of the default one. Use at your own risk!</flag> + <flag name="electron-31">Build against electron-31 instead of the default one. Use at your own risk!</flag> + <flag name="electron-32">Build against electron-32 instead of the default one. Use at your own risk!</flag> + <flag name="electron-33">Build against electron-33 instead of the default one. Use at your own risk!</flag> + <flag name="electron-34">Build against electron-34 instead of the default one. Use at your own risk!</flag> + <flag name="electron-35">Build against electron-35 instead of the default one. Use at your own risk!</flag> + <flag name="electron-36">Build against electron-36 instead of the default one. Use at your own risk!</flag> + <flag name="electron-37">Build against electron-37 instead of the default one. Use at your own risk!</flag> + <flag name="electron-39">Build against electron-39 instead of the default one. Use at your own risk!</flag> + <flag name="native-modules">Build native modules (for searching in encrypted rooms and secure storage)</flag> </use> - <origin>gentoo-guru-overlay</origin> + <origin>pf4public-overlay</origin> </pkgmetadata>
\ No newline at end of file diff --git a/net-im/synapse/Manifest b/net-im/synapse/Manifest index 84d99f450461..8faba045a30e 100644 --- a/net-im/synapse/Manifest +++ b/net-im/synapse/Manifest @@ -153,7 +153,6 @@ DIST socket2-0.6.0.crate 57974 BLAKE2B ecd0ebe429f1bedc9cc80415c787b061031e321a8 DIST stable_deref_trait-1.2.0.crate 8054 BLAKE2B 287a65c3e5b47213544a43e57c60a54add60b4c2e3c8d042407d860cc950ba7ca01a2e67ce56aed6744992b61ec1f9aed3321e3d88482e33129548b7d51df205 SHA512 a13cfb22723f1f2cf089b2d07d657846f50c37bc0438d1a76096bea30214cad226b7a422c21f9e191ce87071da8a141d61882aedf9e0203a5fffdfda86a5fb03 DIST subtle-2.6.1.crate 14562 BLAKE2B 3cf4940b7a01f04715da1057f6a92b1043a6b86ab2ee7f9fee0337b680ff781201d330409460f6f90b3f81bb5fd4b563e17c762c6e824ba3b0af99e4ae7d66bd SHA512 f5946ebd9bcb8776ee3446abcbf4afb3cca5d8bd847cadda87e864333ac7ded537a3efa773e9648adf20ce4add2c1da85172cff88c1e1a3a6cb051401b00c6bd DIST syn-2.0.104.crate 299699 BLAKE2B f64d2267abe9140456dd31d52ada0c75bfa3e4e0112ca77491245e9e84a0530f6c7cdc7428b73cf567a65ef6e7727f814fb9cb34db0ecc9cc3afd05b69fd36f7 SHA512 da532fa362266161b5604c821c913f8f990eb32c18e18c0a360b7147b9f71ae008e208f377cb203e85818bd5db926951122a971fa97563a10678f0ba4671e64f -DIST synapse-1.140.0.gh.tar.gz 9182247 BLAKE2B b75fb1b4928abd51668c0805221f573d9556928ee59de40b0a36e400c64c131df3c6e31ca283d8173ea4e5370ba36e60e7820858b0454c15d8476480127ef51b SHA512 adeb9d65ffd16d65d5f2af0a5e8bd91edb8c56f3f8de12cfe90f4a66e41b38f4b23f2f850d0c556db83f608aa4b804b3e8543fc93060de89ec9ae3b6573ba08d DIST synapse-1.141.0.gh.tar.gz 9184982 BLAKE2B 9e53cae480adbaf368c4d5a5b2a25828ce327f535ba6fd0ee5607fcf5c72460c64ab9caa106178159519bc08a7025537746a6195101e09ca8f1f375107faa54a SHA512 068f3e1ac81d4676363909fbcd5690dcf6604e9050e853b61fc2564d9456b37d7db62acccf353bd44b9938686bc24953a4cd2fc7755722d321027f79a5d02990 DIST synapse-1.142.1.gh.tar.gz 9190189 BLAKE2B d0691d5ec468145ac53337bffcb8d9d067c7cd16b9f570a7fcb3c19c7e5618189ce1db3718c530c5baf6f44d6012036fca6e713b75e807d56227867d12719833 SHA512 f436ecb04c7925ee79229e4c885552747c311882d592e075ce304853ad64eea594db3e04fca3ea395a8384c9c6e6171d088fcad6de569f6ed91511c00bc1967e DIST synapse-1.143.0.gh.tar.gz 9191731 BLAKE2B 4ef1ba787f613ac3a4998ef81c99d119f8992f5652472c4192c3e35f46d5a7e526625c783c864440fc1ee5304231b697682980aeaa8e71fe2123bc982efb9809 SHA512 e804e5845e65a8c37d517b30d1649c52cc4b5355c2c76633df55fd08f7da44d3ac935b196935b59eec81d16701ca4bc0567c0ce4de0d12f122bacca10c914bcf diff --git a/net-im/synapse/synapse-1.140.0.ebuild b/net-im/synapse/synapse-1.140.0.ebuild deleted file mode 100644 index 05280a2a7f08..000000000000 --- a/net-im/synapse/synapse-1.140.0.ebuild +++ /dev/null @@ -1,356 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{10..14} ) - -RUST_MIN_VER="1.82.0" -CRATES=" - addr2line@0.24.2 - adler2@2.0.1 - aho-corasick@1.1.3 - anyhow@1.0.100 - arc-swap@1.7.1 - atomic-waker@1.1.2 - autocfg@1.5.0 - backtrace@0.3.75 - base64@0.22.1 - bitflags@2.9.1 - blake2@0.10.6 - block-buffer@0.10.4 - bumpalo@3.19.0 - bytes@1.10.1 - cc@1.2.30 - cfg-if@1.0.1 - cfg_aliases@0.2.1 - core-foundation-sys@0.8.7 - core-foundation@0.10.1 - core_maths@0.1.1 - cpufeatures@0.2.17 - crypto-common@0.1.6 - digest@0.10.7 - displaydoc@0.2.5 - equivalent@1.0.2 - fnv@1.0.7 - form_urlencoded@1.2.1 - futures-channel@0.3.31 - futures-core@0.3.31 - futures-executor@0.3.31 - futures-io@0.3.31 - futures-macro@0.3.31 - futures-sink@0.3.31 - futures-task@0.3.31 - futures-util@0.3.31 - futures@0.3.31 - generic-array@0.14.7 - getrandom@0.2.16 - getrandom@0.3.3 - gimli@0.31.1 - h2@0.4.11 - hashbrown@0.15.4 - headers-core@0.3.0 - headers@0.4.1 - heck@0.5.0 - hex@0.4.3 - http-body-util@0.1.3 - http-body@1.0.1 - http@1.3.1 - httparse@1.10.1 - httpdate@1.0.3 - hyper-rustls@0.27.7 - hyper-util@0.1.16 - hyper@1.6.0 - icu_collections@2.0.0 - icu_locale@2.0.0 - icu_locale_core@2.0.0 - icu_locale_data@2.0.0 - icu_normalizer@2.0.0 - icu_normalizer_data@2.0.0 - icu_properties@2.0.1 - icu_properties_data@2.0.1 - icu_provider@2.0.0 - icu_segmenter@2.0.0 - icu_segmenter_data@2.0.0 - idna@1.0.3 - idna_adapter@1.2.1 - indexmap@2.10.0 - indoc@2.0.6 - io-uring@0.7.9 - ipnet@2.11.0 - iri-string@0.7.8 - itoa@1.0.15 - js-sys@0.3.77 - lazy_static@1.5.0 - libc@0.2.174 - libm@0.2.15 - litemap@0.8.0 - log@0.4.28 - lru-slab@0.1.2 - memchr@2.7.5 - memoffset@0.9.1 - mime@0.3.17 - miniz_oxide@0.8.9 - mio@1.0.4 - object@0.36.7 - once_cell@1.21.3 - openssl-probe@0.1.6 - percent-encoding@2.3.1 - pin-project-lite@0.2.16 - pin-utils@0.1.0 - portable-atomic@1.11.1 - potential_utf@0.1.2 - ppv-lite86@0.2.21 - proc-macro2@1.0.95 - pyo3-build-config@0.25.1 - pyo3-ffi@0.25.1 - pyo3-log@0.12.4 - pyo3-macros-backend@0.25.1 - pyo3-macros@0.25.1 - pyo3@0.25.1 - pythonize@0.25.0 - quinn-proto@0.11.12 - quinn-udp@0.5.13 - quinn@0.11.8 - quote@1.0.40 - r-efi@5.3.0 - rand@0.9.2 - rand_chacha@0.9.0 - rand_core@0.9.3 - regex-automata@0.4.11 - regex-syntax@0.8.5 - regex@1.11.3 - reqwest@0.12.23 - ring@0.17.14 - rustc-demangle@0.1.26 - rustc-hash@2.1.1 - rustls-native-certs@0.8.1 - rustls-pki-types@1.12.0 - rustls-webpki@0.103.4 - rustls@0.23.31 - rustversion@1.0.21 - ryu@1.0.20 - schannel@0.1.27 - security-framework-sys@2.14.0 - security-framework@3.2.0 - serde@1.0.228 - serde_core@1.0.228 - serde_derive@1.0.228 - serde_json@1.0.145 - serde_urlencoded@0.7.1 - sha1@0.10.6 - sha2@0.10.9 - shlex@1.3.0 - slab@0.4.11 - smallvec@1.15.1 - socket2@0.5.10 - socket2@0.6.0 - stable_deref_trait@1.2.0 - subtle@2.6.1 - syn@2.0.104 - sync_wrapper@1.0.2 - synstructure@0.13.2 - target-lexicon@0.13.2 - thiserror-impl@2.0.12 - thiserror@2.0.12 - tinystr@0.8.1 - tinyvec@1.9.0 - tinyvec_macros@0.1.1 - tokio-rustls@0.26.2 - tokio-util@0.7.15 - tokio@1.47.1 - tower-http@0.6.6 - tower-layer@0.3.3 - tower-service@0.3.3 - tower@0.5.2 - tracing-core@0.1.34 - tracing@0.1.41 - try-lock@0.2.5 - typenum@1.18.0 - ulid@1.2.1 - unicode-ident@1.0.18 - unindent@0.2.4 - untrusted@0.9.0 - url@2.5.4 - utf8_iter@1.0.4 - version_check@0.9.5 - want@0.3.1 - wasi@0.11.1+wasi-snapshot-preview1 - wasi@0.14.2+wasi-0.2.4 - wasm-bindgen-backend@0.2.100 - wasm-bindgen-futures@0.4.50 - wasm-bindgen-macro-support@0.2.100 - wasm-bindgen-macro@0.2.100 - wasm-bindgen-shared@0.2.100 - wasm-bindgen@0.2.100 - wasm-streams@0.4.2 - web-sys@0.3.77 - web-time@1.1.0 - windows-sys@0.52.0 - windows-sys@0.59.0 - windows-targets@0.52.6 - windows_aarch64_gnullvm@0.52.6 - windows_aarch64_msvc@0.52.6 - windows_i686_gnu@0.52.6 - windows_i686_gnullvm@0.52.6 - 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 - wit-bindgen-rt@0.39.0 - writeable@0.6.1 - yoke-derive@0.8.0 - yoke@0.8.0 - zerocopy-derive@0.8.26 - zerocopy@0.8.26 - zerofrom-derive@0.1.6 - zerofrom@0.1.6 - zeroize@1.8.1 - zerotrie@0.2.2 - zerovec-derive@0.11.1 - zerovec@0.11.2 -" - -inherit cargo distutils-r1 multiprocessing optfeature systemd - -DESCRIPTION="Reference implementation of Matrix homeserver" -HOMEPAGE=" - https://matrix.org/ - https://github.com/element-hq/synapse -" -SRC_URI=" - https://github.com/element-hq/${PN}/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz - ${CARGO_CRATE_URIS} -" - -LICENSE="|| ( AGPL-3+ Element-Commercial )" -# Dependent crate licenses -LICENSE+=" - Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT Unicode-3.0 -" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64" -IUSE="postgres selinux systemd test" -RESTRICT="!test? ( test )" - -RDEPEND=" - acct-user/synapse - acct-group/synapse - dev-python/attrs[${PYTHON_USEDEP}] - dev-python/bcrypt[${PYTHON_USEDEP}] - dev-python/bleach[${PYTHON_USEDEP}] - >=dev-python/canonicaljson-2[${PYTHON_USEDEP}] - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/ijson[${PYTHON_USEDEP}] - dev-python/immutabledict[${PYTHON_USEDEP}] - >=dev-python/jinja2-3.0[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - >=dev-python/matrix-common-1.3.0[${PYTHON_USEDEP}] - dev-python/msgpack[${PYTHON_USEDEP}] - dev-python/netaddr[${PYTHON_USEDEP}] - dev-python/packaging[${PYTHON_USEDEP}] - dev-python/phonenumbers[${PYTHON_USEDEP}] - >=dev-python/pillow-10.0.1[${PYTHON_USEDEP},webp] - dev-python/prometheus-client[${PYTHON_USEDEP}] - dev-python/pyasn1-modules[${PYTHON_USEDEP}] - dev-python/pyasn1[${PYTHON_USEDEP}] - dev-python/pydantic[${PYTHON_USEDEP}] - dev-python/pymacaroons[${PYTHON_USEDEP}] - dev-python/pyopenssl[${PYTHON_USEDEP}] - >=dev-python/python-multipart-0.0.12-r100[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/service-identity[${PYTHON_USEDEP}] - dev-python/signedjson[${PYTHON_USEDEP}] - dev-python/sortedcontainers[${PYTHON_USEDEP}] - dev-python/treq[${PYTHON_USEDEP}] - dev-python/twisted[${PYTHON_USEDEP}] - dev-python/typing-extensions[${PYTHON_USEDEP}] - dev-python/unpaddedbase64[${PYTHON_USEDEP}] - postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) - selinux? ( sec-policy/selinux-matrixd ) - systemd? ( dev-python/python-systemd[${PYTHON_USEDEP}] ) -" -BDEPEND=" - acct-user/synapse - acct-group/synapse - dev-python/setuptools-rust[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - dev-python/hiredis[${PYTHON_USEDEP}] - dev-python/idna[${PYTHON_USEDEP}] - dev-python/parameterized[${PYTHON_USEDEP}] - dev-python/txredisapi[${PYTHON_USEDEP}] - postgres? ( dev-db/postgresql[server] ) - ) -" - -# Rust extension -QA_FLAGS_IGNORED="usr/lib/python3.*/site-packages/synapse/synapse_rust.abi3.so" - -src_test() { - if use postgres; then - einfo "Preparing postgres test instance" - initdb --pgdata="${T}/pgsql" || die - pg_ctl --wait --pgdata="${T}/pgsql" start \ - --options="-h '' -k '${T}'" || die - createdb --host="${T}" synapse_test || die - - # See https://matrix-org.github.io/synapse/latest/development/contributing_guide.html#running-tests-under-postgresql - local -x SYNAPSE_POSTGRES=1 - local -x SYNAPSE_POSTGRES_HOST="${T}" - fi - - # This remove is necessary otherwise python is not able to locate - # synapse_rust.abi3.so. - rm -rf synapse || die - - nonfatal distutils-r1_src_test - local ret=${?} - - if use postgres; then - einfo "Stopping postgres test instance" - pg_ctl --wait --pgdata="${T}/pgsql" stop || die - fi - - [[ ${ret} -ne 0 ]] && die -} - -python_test() { - "${EPYTHON}" -m twisted.trial -j "$(makeopts_jobs)" tests -} - -src_install() { - distutils-r1_src_install - keepdir /var/{lib,log}/synapse /etc/synapse - fowners synapse:synapse /var/{lib,log}/synapse /etc/synapse - fperms 0750 /var/{lib,log}/synapse /etc/synapse - newinitd "${FILESDIR}/${PN}.initd-r1" "${PN}" - systemd_dounit "${FILESDIR}/synapse.service" -} - -pkg_postinst() { - optfeature "Redis support" dev-python/txredisapi - optfeature "VoIP relaying on your homeserver with turn" net-im/coturn - - if [[ -z "${REPLACING_VERSIONS}" ]]; then - einfo - elog "In order to generate initial configuration run:" - elog "sudo -u synapse synapse_homeserver \\" - elog " --server-name matrix.domain.tld \\" - elog " --config-path /etc/synapse/homeserver.yaml \\" - elog " --generate-config \\" - elog " --data-directory /var/lib/synapse \\" - elog " --report-stats=no" - einfo - else - einfo - elog "Please refer to upgrade notes if any special steps are required" - elog "to upgrade from the version you currently have installed:" - elog - elog " https://github.com/element-hq/synapse/blob/develop/docs/upgrade.md" - einfo - fi -} diff --git a/net-p2p/syncthing/syncthing-2.0.12-r2.ebuild b/net-p2p/syncthing/syncthing-2.0.12-r2.ebuild index 321ac1c91c22..758b69cc8243 100644 --- a/net-p2p/syncthing/syncthing-2.0.12-r2.ebuild +++ b/net-p2p/syncthing/syncthing-2.0.12-r2.ebuild @@ -90,7 +90,7 @@ src_install() { newconfd "${FILESDIR}"/${PN}.confd-r2 ${PN} newinitd "${FILESDIR}"/${PN}.initd-r5 ${PN} exeinto /etc/user/init.d - newexe "${FILESDIR}"/syncthing.initd-user-r1 syncthing + newexe "${FILESDIR}"/syncthing.initd-user-r2 syncthing keepdir /var/log/${PN} insinto /etc/logrotate.d diff --git a/sys-apps/kbd/files/kbd-2.9.0-install-no-attr.patch b/sys-apps/kbd/files/kbd-2.9.0-install-no-attr.patch new file mode 100644 index 000000000000..c3db405c28a6 --- /dev/null +++ b/sys-apps/kbd/files/kbd-2.9.0-install-no-attr.patch @@ -0,0 +1,55 @@ +https://github.com/legionus/kbd/commit/db82eb6f86e6c0b8ac4260e88b88d66e1cd7c077 + +From db82eb6f86e6c0b8ac4260e88b88d66e1cd7c077 Mon Sep 17 00:00:00 2001 +From: Alexey Gladkov <legion@kernel.org> +Date: Wed, 10 Sep 2025 10:45:25 +0200 +Subject: [PATCH] Preserve only necessary metadata during install + +"cp -a" tries to preserve all attributes if possible. This implies +preserving mode, any ACL, xattr permissions, and security context. + +In some cases (such as fakeroot), it is not possible to preserve that +all attributes are preserved. + + cp: failed to preserve ownership for /tmp/.pkgmk/pkg/usr/share/kbd/keymaps/i386/qwertz/sr-latin.map.gz: Operation not supported + +To avoid this, we will require that only the necessary attributes be +preserved. It is important for us to preserve the simlinks. + +Signed-off-by: Alexey Gladkov <legion@kernel.org> +--- + data/Makefile.am | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + +diff --git a/data/Makefile.am b/data/Makefile.am +index a730062b..4d2ae3d1 100644 +--- a/data/Makefile.am ++++ b/data/Makefile.am +@@ -44,21 +44,21 @@ endif + + install-consolefonts: $(SRC_FONTDIR) $(SRC_PARTIALDIR) + mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(FONTDIR) +- cp -a -- $(SRC_FONTDIR)/* $(DESTDIR)$(datadir)/$(FONTDIR)/ ++ cp -dPR -- $(SRC_FONTDIR)/* $(DESTDIR)$(datadir)/$(FONTDIR)/ + mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(FONTDIR)/$(PARTIALDIR) +- cp -a -- $(SRC_PARTIALDIR)/* $(DESTDIR)$(datadir)/$(FONTDIR)/$(PARTIALDIR)/ ++ cp -dPR -- $(SRC_PARTIALDIR)/* $(DESTDIR)$(datadir)/$(FONTDIR)/$(PARTIALDIR)/ + + install-consoletrans: + mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(TRANSDIR) +- cp -a -- $(srcdir)/$(TRANSDIR)/* $(DESTDIR)$(datadir)/$(TRANSDIR)/ ++ cp -dPR -- $(srcdir)/$(TRANSDIR)/* $(DESTDIR)$(datadir)/$(TRANSDIR)/ + + install-unimaps: + mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(UNIMAPDIR) +- cp -a -- $(srcdir)/$(UNIMAPDIR)/* $(DESTDIR)$(datadir)/$(UNIMAPDIR)/ ++ cp -dPR -- $(srcdir)/$(UNIMAPDIR)/* $(DESTDIR)$(datadir)/$(UNIMAPDIR)/ + + install-keymaps: $(SRC_KEYMAPDIR) + mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(KEYMAPDIR) +- cp -ar -- $(SRC_KEYMAPDIR)/* $(DESTDIR)$(datadir)/$(KEYMAPDIR)/ ++ cp -dPR -- $(SRC_KEYMAPDIR)/* $(DESTDIR)$(datadir)/$(KEYMAPDIR)/ + cd "$(DESTDIR)$(datadir)/$(KEYMAPDIR)"; \ + for f in $(IGNORE_KEYMAPS); do ! test -e "$$f" || rm -f -- "$$f"; done + rm -f $(DESTDIR)$(datadir)/$(KEYMAPDIR)/ppc + diff --git a/sys-apps/kbd/files/kbd-2.9.0-install-posix.patch b/sys-apps/kbd/files/kbd-2.9.0-install-posix.patch new file mode 100644 index 000000000000..73e125d58437 --- /dev/null +++ b/sys-apps/kbd/files/kbd-2.9.0-install-posix.patch @@ -0,0 +1,41 @@ +https://github.com/legionus/kbd/commit/51ee1d95fae950323b62d3f31b14dc1e0e436762 + +From 51ee1d95fae950323b62d3f31b14dc1e0e436762 Mon Sep 17 00:00:00 2001 +From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me> +Date: Fri, 31 Oct 2025 04:44:33 +0100 +Subject: [PATCH] data/Makefile.am: put `--` between end of option and mode + +POSIX comforming getopt(3) will stop parsing options at the mode argument +(provided it doesn't starts with a dash). +So prior to this change `--` would be taken as a file argument +because getopt(3) already stopped. + +Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me> +--- + data/Makefile.am | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/data/Makefile.am b/data/Makefile.am +index 4d2ae3d1..8cd3610a 100644 +--- a/data/Makefile.am ++++ b/data/Makefile.am +@@ -22,15 +22,15 @@ V_PACK_1 = + + # compress data files - do not touch the distribution but copy first + $(SRC_KEYMAPDIR): $(KEYMAPDIR) +- $(V_PACK)cp -r -- "$<" "$@" && chmod -R u+w -- "$@" && \ ++ $(V_PACK)cp -r -- "$<" "$@" && chmod -R -- u+w "$@" && \ + $(srcdir)/compress.sh "$@"/*/*.map "$@"/*/*/*.map + + $(SRC_FONTDIR): $(FONTDIR) +- $(V_PACK)cp -r -- "$<" "$@" && chmod -R u+w -- "$@" && \ ++ $(V_PACK)cp -r -- "$<" "$@" && chmod -R -- u+w "$@" && \ + $(srcdir)/compress.sh "$@"/* + + $(SRC_PARTIALDIR): $(PARTIALDIR) +- $(V_PACK)cp -r -- "$<" "$@" && chmod -R u+w -- "$@" && \ ++ $(V_PACK)cp -r -- "$<" "$@" && chmod -R -- u+w "$@" && \ + $(srcdir)/compress.sh "$@"/* + + # (not yet screenmaps - some other time) + diff --git a/sys-apps/kbd/files/kbd-2.9.0-nullptr.patch b/sys-apps/kbd/files/kbd-2.9.0-nullptr.patch new file mode 100644 index 000000000000..cf10ac034dac --- /dev/null +++ b/sys-apps/kbd/files/kbd-2.9.0-nullptr.patch @@ -0,0 +1,45 @@ +https://github.com/legionus/kbd/commit/c5473634bbb653f0b61bd237d0e4bdfc9cfe3650 + +From c5473634bbb653f0b61bd237d0e4bdfc9cfe3650 Mon Sep 17 00:00:00 2001 +From: Bohai Li <lbhlbhlbh2002@icloud.com> +Date: Wed, 19 Nov 2025 00:31:52 +0800 +Subject: [PATCH] Fix NULL reference in option parser + +If an option that needs an argument is given, but the argument is +actually missing, the optind will increase by 1 and return, and if +the option is the last option, a NULL reference occurs at +setfont.c:290. This bug is fixed by returning '!' instead of '?' to +main and process this condition separately. + +Signed-off-by: Bohai Li <lbhlbhlbh2002@icloud.com> +--- + src/setfont.c | 8 ++++++-- + 1 file changed, 6 insertions(+), 2 deletions(-) + +diff --git a/src/setfont.c b/src/setfont.c +index 18eb6386..dc336c18 100644 +--- a/src/setfont.c ++++ b/src/setfont.c +@@ -158,8 +158,8 @@ kbd_getopt(int argc, char **argv, const struct kbd_option *opts) + return '?'; + + required_argument: +- kbd_warning(0, "option '%s' requires an argument", name); +- return '?'; ++ optind--; ++ return '!'; + } + + int main(int argc, char *argv[]) +@@ -296,6 +296,10 @@ int main(int argc, char *argv[]) + kbd_error(EX_USAGE, 0, _("Too many input files.")); + ifiles[ifilct++] = argv[optind++]; + break; ++ case '!': ++ kbd_warning(0, "option '%s' requires an argument", argv[optind]); ++ usage(EX_USAGE, opthelp); ++ break; + } + } + + diff --git a/sys-apps/kbd/files/kbd-2.9.0-time64.patch b/sys-apps/kbd/files/kbd-2.9.0-time64.patch new file mode 100644 index 000000000000..6618e0deb5d6 --- /dev/null +++ b/sys-apps/kbd/files/kbd-2.9.0-time64.patch @@ -0,0 +1,54 @@ +https://github.com/legionus/kbd/commit/2f9a4e56c2ef245fbe840677aad9d5932e17f50d + +From 2f9a4e56c2ef245fbe840677aad9d5932e17f50d Mon Sep 17 00:00:00 2001 +From: Alexey Gladkov <legion@kernel.org> +Date: Mon, 8 Dec 2025 11:28:24 +0100 +Subject: [PATCH] libkbdfile: Fix problem with undeclared sym_gzopen +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +A compile error occurs on certain systems: + +kbdfile-zlib.c: In function 'dlopen_note': +elf-note.h:27:30: error: 'sym_gzopen' undeclared (first use in this function); did you mean 'sym_gzopen64'? + 27 | #define DLSYM_ARG(symbol__) &sym_##symbol__, STRINGIFY(symbol__), + +kbdfile-zlib.c: In function 'kbdfile_decompressor_zlib': kbdfile-zlib.c:61:15: error: implicit declaration of function 'sym_gzopen'; did you mean 'sym_gzopen64'? + [-Wimplicit-function-declaration] + 61 | gzf = sym_gzopen(file->pathname, "rb"); + +The problem arises because if -D_FILE_OFFSET_BITS=64 is specified, which +in zlib ultimately makes gzopen a macro that expands to gzopen64. +DECLARE_SYM(gzopen) from elf-note.h then expands gzopen to gzopen64, +resulting in sym_gzopen64 declared. That's why no sym_gzopen exists. + +Link: https://github.com/legionus/kbd/pull/150 +Suggested-by: Jan Čermák <sairon@sairon.cz> +Signed-off-by: Bernd Kuhls <bernd@kuhls.net> +Signed-off-by: Alexey Gladkov <legion@kernel.org> +--- + src/libkbdfile/elf-note.h | 5 +---- + 1 file changed, 1 insertion(+), 4 deletions(-) + +diff --git a/src/libkbdfile/elf-note.h b/src/libkbdfile/elf-note.h +index a0fd9e23..d3b8d5c9 100644 +--- a/src/libkbdfile/elf-note.h ++++ b/src/libkbdfile/elf-note.h +@@ -26,14 +26,11 @@ int dlsym_many(void **dlp, const char *filename, ...); + */ + #define DLSYM_ARG(symbol__) &sym_##symbol__, STRINGIFY(symbol__), + +-/* For symbols being dynamically loaded */ +-#define DECLARE_DLSYM(symbol) static typeof(symbol) *sym_##symbol +- + /* + * Helper defines, to be done locally before including this header to switch between + * implementations + */ +-#define DECLARE_SYM(sym__) DECLARE_DLSYM(sym__); ++#define DECLARE_SYM(sym__) static typeof(sym__) *sym_##sym__; + + /* + * Originally from systemd codebase. + diff --git a/sys-apps/kbd/files/kbd-2.9.0-uninit.patch b/sys-apps/kbd/files/kbd-2.9.0-uninit.patch new file mode 100644 index 000000000000..857c1c6ba242 --- /dev/null +++ b/sys-apps/kbd/files/kbd-2.9.0-uninit.patch @@ -0,0 +1,33 @@ +https://github.com/legionus/kbd/commit/7aa15f4c44b570a667b4911a2b6db0e6b9145da5 + +From 7aa15f4c44b570a667b4911a2b6db0e6b9145da5 Mon Sep 17 00:00:00 2001 +From: Tommy-Zhang3759 <tommyzhang4707@outlook.com> +Date: Sat, 6 Dec 2025 05:18:43 +1100 +Subject: [PATCH] setfont: Initialize data pointer when resetting font + +When resetting the font to default, the `data` field in the +`console_font_op` structure must be explicitly set to NULL. + +Previously, this field was left uninitialized. The kernel treats a +non-NULL `data` pointer as a pointer to a font name string. This caused +the ioctl to fail with -EFAULT (Bad address) because it attempted to +read from a garbage address. + +Signed-off-by: Yutao Zhang <tommyzhang4707@outlook.com> +--- + src/libkfont/kdfontop.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/libkfont/kdfontop.c b/src/libkfont/kdfontop.c +index 8f132ff5..4f1f0d2a 100644 +--- a/src/libkfont/kdfontop.c ++++ b/src/libkfont/kdfontop.c +@@ -46,6 +46,7 @@ kfont_restore_font(struct kfont_context *ctx, int fd) + return -1; + + cfo.op = KD_FONT_OP_SET_DEFAULT; ++ cfo.data = NULL; + + if (ioctl(fd, KDFONTOP, &cfo)) { + KFONT_ERR(ctx, "ioctl(KD_FONT_OP_SET_DEFAULT): %m"); + diff --git a/sys-apps/kbd/kbd-2.9.0-r1.ebuild b/sys-apps/kbd/kbd-2.9.0-r1.ebuild new file mode 100644 index 000000000000..39e22e346db7 --- /dev/null +++ b/sys-apps/kbd/kbd-2.9.0-r1.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools multiprocessing + +if [[ ${PV} == 9999 ]] ; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/legionus/kbd.git https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git" + EGIT_BRANCH="master" +else + if [[ $(ver_cut 3) -lt 90 ]] ; then + SRC_URI="https://www.kernel.org/pub/linux/utils/kbd/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + else + inherit autotools + SRC_URI="https://github.com/legionus/kbd/archive/v${PV}.tar.gz -> ${P}.tar.gz" + fi +fi + +DESCRIPTION="Keyboard and console utilities" +HOMEPAGE="https://kbd-project.org/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="bzip2 lzma nls selinux pam test zlib zstd" +RESTRICT="!test? ( test )" + +DEPEND=" + app-alternatives/gzip + bzip2? ( app-arch/bzip2 ) + lzma? ( app-arch/xz-utils ) + pam? ( + !app-misc/vlock + sys-libs/pam + ) + zlib? ( virtual/zlib:= ) + zstd? ( app-arch/zstd:= ) +" +RDEPEND=" + ${DEPEND} + selinux? ( sec-policy/selinux-loadkeys ) +" +BDEPEND=" + sys-devel/flex + virtual/pkgconfig + test? ( dev-libs/check ) +" + +PATCHES=( + "${FILESDIR}"/${P}-install-no-attr.patch + "${FILESDIR}"/${P}-install-posix.patch + "${FILESDIR}"/${P}-nullptr.patch + "${FILESDIR}"/${P}-uninit.patch + "${FILESDIR}"/${P}-time64.patch +) + +src_prepare() { + default + + # Rename conflicting keymaps to have unique names, bug #293228 + # See also https://github.com/legionus/kbd/issues/76. + pushd "${S}"/data/keymaps/i386 &> /dev/null || die + mv fgGIod/trf.map fgGIod/trf-fgGIod.map || die + mv olpc/es.map olpc/es-olpc.map || die + mv olpc/pt.map olpc/pt-olpc.map || die + mv qwerty/cz.map qwerty/cz-qwerty.map || die + popd &> /dev/null || die + + #if [[ ${PV} == 9999 ]] || [[ $(ver_cut 3) -ge 90 ]] ; then + # eautoreconf + #fi + + # Drop after 2.9.0 + eautoreconf +} + +src_configure() { + # https://github.com/legionus/kbd/issues/121 + unset LEX + + local myeconfargs=( + --disable-werror + # No Valgrind for the testsuite + --disable-memcheck + + $(use_enable nls) + $(use_enable pam vlock) + $(use_enable test tests) + $(use_with bzip2) + $(use_with lzma) + $(use_with zlib) + $(use_with zstd) + ) + + econf "${myeconfargs[@]}" +} + +src_test() { + emake -Onone check TESTSUITEFLAGS="--jobs=$(get_makeopts_jobs)" +} + +src_install() { + default + + # USE="test" installs .la files + find "${ED}" -type f -name "*.la" -delete || die +} diff --git a/sys-apps/pv/Manifest b/sys-apps/pv/Manifest index 59de37e381c7..79bca6cf5639 100644 --- a/sys-apps/pv/Manifest +++ b/sys-apps/pv/Manifest @@ -1,4 +1,6 @@ DIST pv-1.10.2.tar.gz 427370 BLAKE2B bb139aef5de446515ffb563f6581eab6a6bc180e2ad50c42ddf43d60e308911603ec1d552e4ee4d091aa50a2803e9029fc897a76f30465eec57209b5f5477fb3 SHA512 383a63c0f4678ca70358abba78cb46fa229df56a17f32b2e85a1cbc6f5268d777b5187d654fdfdb585e3c44f015dd52dc7a083e86e6b4dfd49c1d276f59dfef4 DIST pv-1.10.2.tar.gz.asc 691 BLAKE2B 88e583b277e5e6d8dbcc2d741c4606244f4a8de8e61aa83b3f834fc11bcf1315c485c937559aff6ad2789c5fd6aae268fc0f619fd1feeade46352fa6d002d813 SHA512 8bc3bb21c5daa1adbdc8b04cb699e6cb62c47a9c3b4167485cf6f0f8b920dba5c3fdcb0cbf2fdfe59339927c4e1595b04a9271f4ddd585462cb3b859bf5f69c0 +DIST pv-1.10.3.tar.gz 427463 BLAKE2B 29ccafa12fbed54cffc54b515794595f8efeb71f09524b431219e5050a052ffaa998ebbea19d4f7dd28556229b0246fc1e352bfbbbc7ab290185c3530a47ab43 SHA512 19d48f004cf06e36b1157c701afb4612a3a38997d74195cf9e79250cda085d4bf724d954504c4d88368a6af099a9eaa872da33e96848bbdce325f52ad40e6947 +DIST pv-1.10.3.tar.gz.asc 691 BLAKE2B 11785a09dd2736ca738cd955bb9323ca4aeb975158f0e5d088796202e8ee55058fae3a47166f9be477b18722f41bd899273fec0befc47e1a0ce4cb909e2f402c SHA512 ab457e451c1e3c7ce26d5a5911202327170086d0fd909ff86a84a5c111f71bc3f098bd56f55840fa644df0c354554b03e338f50ed48d15543947f42028b958d6 DIST pv-1.9.42.tar.gz 425511 BLAKE2B f523605491faca77591d84c092663edcf5c3f7a3717676fb1ad282d0768553a444dc97a8adadd8ca32c264978471c3c60c44667679e733251bf7f9b59779de30 SHA512 be21370c7cb18cb68f5a63db6f0a4c5c36efd007675df29af06017f9dfd1e416270cbe733792015a3d3ae0f5165a27e1a6dfce6abebbf0581c50cbb66ef2d9c7 DIST pv-1.9.42.tar.gz.asc 691 BLAKE2B 2f107e4520554629ee6be60e6145f3219a34db7b0b73081d3c86080834458eae3f9a90d4cc364dab5f9218c403f65a7d42a419b1520269a7bb5cc0884f5affbb SHA512 a0ca0dcb383036c433c202dd7c9dbd24d60e00e7bbfe6945a5868f629bf856cebfb5564b51532d67e8c241646243354be9cc7e5a313714b9d9ea478ee5853719 diff --git a/sys-apps/pv/pv-1.10.3.ebuild b/sys-apps/pv/pv-1.10.3.ebuild new file mode 100644 index 000000000000..718c9249a223 --- /dev/null +++ b/sys-apps/pv/pv-1.10.3.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/pv.asc +inherit linux-info toolchain-funcs verify-sig + +DESCRIPTION="Pipe Viewer: a tool for monitoring the progress of data through a pipe" +HOMEPAGE="https://ivarch.com/p/pv https://codeberg.org/ivarch/pv" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://codeberg.org/ivarch/pv" + inherit autotools git-r3 +else + SRC_URI=" + https://ivarch.com/s/${P}.tar.gz + verify-sig? ( https://ivarch.com/s/${P}.tar.gz.txt -> ${P}.tar.gz.asc ) + " + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +fi + +LICENSE="GPL-3+" +SLOT="0" +IUSE="debug ncurses nls" + +RDEPEND="ncurses? ( sys-libs/ncurses:= )" +DEPEND="${RDEPEND}" +BDEPEND="verify-sig? ( >=sec-keys/openpgp-keys-pv-20251012 )" + +pkg_setup() { + if use kernel_linux; then + CONFIG_CHECK="~SYSVIPC" + ERROR_SYSVIPC="You will need to enable CONFIG_SYSVIPC in your kernel to use the --remote option." + linux-info_pkg_setup + fi +} + +src_prepare() { + default + + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + tc-export AR + + econf \ + $(use_enable debug debugging) \ + $(use_with ncurses) \ + $(use_enable nls) +} + +src_test() { + # Valgrind is unreliable within sandbox + local -x SKIP_VALGRIND_TESTS=1 + emake -Onone check +} diff --git a/sys-apps/s390-tools/s390-tools-2.12.0.ebuild b/sys-apps/s390-tools/s390-tools-2.12.0-r1.ebuild index 41144b9fe305..e663aab60f96 100644 --- a/sys-apps/s390-tools/s390-tools-2.12.0.ebuild +++ b/sys-apps/s390-tools/s390-tools-2.12.0-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 inherit toolchain-funcs udev @@ -12,7 +12,7 @@ SRC_URI="https://github.com/ibm-${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="MIT" SLOT="0" KEYWORDS="-* ~s390" -IUSE="cryptsetup fuse ncurses openssl pfm snmp zlib" +IUSE="abi_s390_32 cryptsetup fuse ncurses openssl pfm snmp zlib" RDEPEND="fuse? ( sys-fs/fuse:0= ) ncurses? ( sys-libs/ncurses:0= ) diff --git a/sys-apps/util-linux/Manifest b/sys-apps/util-linux/Manifest index 72434a7377ee..70b6adcfcfd3 100644 --- a/sys-apps/util-linux/Manifest +++ b/sys-apps/util-linux/Manifest @@ -4,3 +4,5 @@ DIST util-linux-2.41.1.tar.sign 833 BLAKE2B ee9d199bf6e073d1c55ee99e9b8e997e59b0 DIST util-linux-2.41.1.tar.xz 9606156 BLAKE2B 0734e461837d825a8c0f770061cc005cef9238beea15dd900283481bcec66a971492a898cd44581e889fd1af25cf631e16a687d3f0df0a86a8caa15e7f45c935 SHA512 12cf37ab2d62d0378b16a40e0194ef7131ef1ad06737cca3f169cfc04b9da08a4233076c819b30705e8fb2c3b8d91a1d83aac4f036ce58b9cf5928f545e511a2 DIST util-linux-2.41.2.tar.sign 833 BLAKE2B b2fbccf627769f6d49ada61176be28d3badad6834a5c4d0e90d4838372b6072bdfdfcfb6f144221e59ced68ac9281720f40b20795b878bc29cff1de14ccfb9e7 SHA512 05ecccd24fbeea38a8579907629264550a309cfdfa63fa6eab756c0fc3cd182e9764101731424c1421d1ed950c2c1e41cf210abcd9c2837323c657292cdc9a0d DIST util-linux-2.41.2.tar.xz 9612488 BLAKE2B 96cf8022a2d727df373f717fcca750e4f3ffd365f50af35cb805fecb7fa39962dea134fab7efdb9dfdc5aa6ac721e758e2ea40254e21d3fd9e9e5e4b2d25aa91 SHA512 696c87e7cf185acc9b4b969ddade6155ea2945ae494eaecfd7b1f35d9607166cb09be79878fb793dd31b4d4dcac8c9be4be76af3886185db7ae8b58c303fb0cf +DIST util-linux-2.41.3.tar.sign 833 BLAKE2B 1b982a71fb7ab5f9d0d0cd0811abd48fc884578bf6528fcd590fcacf8eea8b0dcf20c3395b353b9cdbded2f5a91a38fa9b78b4d88d57fcdf961b28689036da10 SHA512 5aa90af75595867c534dc2853c16e742e0139f4c9bfb5a9dfc3e54bb27d8516d26bd074e7c24477910bb8ee63be8c1eb289bbdf56356cb60db991998d6793ef4 +DIST util-linux-2.41.3.tar.xz 9467224 BLAKE2B 1e3902b1e121431d956fa51bfa88394f15ed84497eaa08c311bffd906bf49f6df9480892fee99523ac3b9f8a70f4311352d6310049827398ea99e195acbfdb5c SHA512 3d299f0e05a4c982a04dbcbaaeff1222152feedf51c56c5dbdeb75999c68269d652a994f5cdf4c1ee42bb7b28475dd0792192c299fd9bc3b45198c5b153dad00 diff --git a/sys-apps/util-linux/util-linux-2.41.3.ebuild b/sys-apps/util-linux/util-linux-2.41.3.ebuild new file mode 100644 index 000000000000..f29c3c8ccbc9 --- /dev/null +++ b/sys-apps/util-linux/util-linux-2.41.3.ebuild @@ -0,0 +1,467 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) +TMPFILES_OPTIONAL=1 + +inherit toolchain-funcs libtool flag-o-matic bash-completion-r1 \ + pam python-r1 multilib-minimal multiprocessing systemd tmpfiles + +MY_PV="${PV/_/-}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Various useful Linux utilities" +HOMEPAGE="https://www.kernel.org/pub/linux/utils/util-linux/ https://github.com/util-linux/util-linux" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git" + inherit autotools git-r3 +else + VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/karelzak.asc + inherit verify-sig + + if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos" + fi + + SRC_URI="https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz" + SRC_URI+=" verify-sig? ( https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.sign )" +fi + +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain" +SLOT="0" +IUSE="audit build caps +cramfs cryptsetup fdformat +hardlink kill +logger magic ncurses nls pam python +readline rtas selinux slang static-libs +su +suid systemd test tty-helpers udev unicode uuidd" + +# Most lib deps here are related to programs rather than our libs, +# so we rarely need to specify ${MULTILIB_USEDEP}. +RDEPEND=" + virtual/libcrypt:= + audit? ( >=sys-process/audit-2.6:= ) + caps? ( sys-libs/libcap-ng ) + cramfs? ( virtual/zlib:= ) + cryptsetup? ( >=sys-fs/cryptsetup-2.1.0 ) + hardlink? ( dev-libs/libpcre2:= ) + ncurses? ( + sys-libs/ncurses:=[unicode(+)?] + magic? ( sys-apps/file:0= ) + ) + nls? ( virtual/libintl[${MULTILIB_USEDEP}] ) + pam? ( sys-libs/pam ) + python? ( ${PYTHON_DEPS} ) + readline? ( sys-libs/readline:0= ) + rtas? ( sys-libs/librtas ) + selinux? ( >=sys-libs/libselinux-2.2.2-r4[${MULTILIB_USEDEP}] ) + slang? ( sys-libs/slang ) + !build? ( + systemd? ( sys-apps/systemd ) + udev? ( virtual/libudev:= ) + ) +" +BDEPEND=" + virtual/pkgconfig + nls? ( + app-text/po4a + sys-devel/gettext + ) + test? ( app-alternatives/bc ) +" +DEPEND=" + ${RDEPEND} + virtual/os-headers + acct-group/root +" +RDEPEND+=" + hardlink? ( !app-arch/hardlink ) + logger? ( !>=app-admin/sysklogd-2.0[logger] ) + kill? ( + !sys-apps/coreutils[kill] + !sys-process/procps[kill] + ) + su? ( + !<sys-apps/shadow-4.7-r2 + !>=sys-apps/shadow-4.7-r2[su] + ) + uuidd? ( + acct-user/uuidd + systemd? ( virtual/tmpfiles ) + ) + !net-wireless/rfkill +" + +if [[ ${PV} == 9999 ]] ; then + # Required for man-page generation + BDEPEND+=" dev-ruby/asciidoctor" +else + BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-karelzak-20230517 )" +fi + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) su? ( pam )" +RESTRICT="!test? ( test )" + +pkg_pretend() { + if use su && ! use suid ; then + elog "su will be installed as suid despite USE=-suid (bug #832092)" + elog "To use su without suid, see e.g. Portage's suidctl feature." + fi +} + +src_unpack() { + if [[ ${PV} == 9999 ]] ; then + git-r3_src_unpack + return + fi + + # Upstream sign the decompressed .tar + if use verify-sig; then + einfo "Unpacking ${MY_P}.tar.xz ..." + verify-sig_verify_detached - "${DISTDIR}"/${MY_P}.tar.sign \ + < <(xz -cd "${DISTDIR}"/${MY_P}.tar.xz | tee >(tar -xf -)) + assert "Unpack failed" + else + default + fi +} + +src_prepare() { + default + + if use test ; then + # Known-failing tests + local known_failing_tests=( + # Subtest 'options-maximum-size-8192' fails + hardlink/options + + # Fails in sandbox + # re ioctl_ns: https://github.com/util-linux/util-linux/issues/2967 + lsns/ioctl_ns + lsfd/mkfds-inotify + lsfd/mkfds-symlink + lsfd/mkfds-rw-character-device + # Fails with network-sandbox at least in nspawn + lsfd/option-inet + utmp/last-ipv6 + + # Fails with permission errors in nspawn + fadvise/drop + fincore/count + + # Flaky + rename/subdir + + # Permission issues on /dev/random + lsfd/mkfds-eventpoll + lsfd/column-xmode + + # Hangs on some machines + script/replay + ) + + # debug prints confuse the tests which look for a diff + # in output + if has_version "=app-shells/bash-5.3_alpha*" ; then + known_failing_tests+=( + lsfd/column-ainodeclass + lsfd/mkfds-netlink-protocol + lsfd/column-type + lsfd/mkfds-eventfd + lsfd/mkfds-signalfd + lsfd/mkfds-mqueue + lsfd/mkfds-tcp6 + lsfd/mkfds-tcp + lsfd/filter-floating-point-nums + lsfd/mkfds-unix-stream-requiring-sockdiag + lsfd/mkfds-unix-dgram + lsfd/mkfds-directory + lsfd/mkfds-pty + lsfd/mkfds-pipe-no-fork + lsfd/mkfds-unix-stream + lsfd/mkfds-ro-regular-file + lsfd/mkfds-timerfd + lsfd/mkfds-udp + lsfd/mkfds-udp6 + ) + fi + + local known_failing_test + for known_failing_test in "${known_failing_tests[@]}" ; do + einfo "Removing known-failing test: ${known_failing_test}" + rm tests/ts/${known_failing_test} || die + done + fi + + if [[ ${PV} == 9999 ]] ; then + po/update-potfiles + eautoreconf + else + elibtoolize + fi +} + +python_configure() { + local myeconfargs=( + "${commonargs[@]}" + --disable-all-programs + --disable-bash-completion + --without-systemdsystemunitdir + --with-python + --enable-libblkid + --enable-libmount + --enable-pylibmount + ) + + mkdir "${BUILD_DIR}" || die + pushd "${BUILD_DIR}" >/dev/null || die + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" + popd >/dev/null || die +} + +multilib_src_configure() { + # The scanf test in a run-time test which fails while cross-compiling. + # Blindly assume a POSIX setup since we require libmount, and libmount + # itself fails when the scanf test fails. bug #531856 + tc-is-cross-compiler && export scanf_cv_alloc_modifier=ms + + # bug #485486 + export ac_cv_header_security_pam_misc_h=$(multilib_native_usex pam) + # bug #545042 + export ac_cv_header_security_pam_appl_h=$(multilib_native_usex pam) + + # Undo bad ncurses handling by upstream. Fall back to pkg-config. + # bug #601530 + export NCURSES6_CONFIG=false NCURSES5_CONFIG=false + export NCURSESW6_CONFIG=false NCURSESW5_CONFIG=false + + # Avoid automagic dependency on ppc* + export ac_cv_lib_rtas_rtas_get_sysparm=$(usex rtas) + + # configure args shared by python and non-python builds + local commonargs=( + --localstatedir="${EPREFIX}/var" + --runstatedir="${EPREFIX}/run" + --enable-fs-paths-extra="${EPREFIX}/usr/sbin:${EPREFIX}/bin:${EPREFIX}/usr/bin" + ) + + local myeconfargs=( + "${commonargs[@]}" + --with-bashcompletiondir="$(get_bashcompdir)" + --without-python + $(multilib_native_use_enable suid makeinstall-chown) + $(multilib_native_use_enable suid makeinstall-setuid) + $(multilib_native_use_with readline) + $(multilib_native_use_with slang) + $(multilib_native_usex ncurses "$(use_with magic libmagic)" '--without-libmagic') + $(multilib_native_usex ncurses "$(use_with unicode ncursesw)" '--without-ncursesw') + $(multilib_native_usex ncurses "$(use_with !unicode ncurses)" '--without-ncurses') + $(multilib_native_use_with audit) + $(tc-has-tls || echo --disable-tls) + $(use_enable nls) + $(use_enable nls poman) + $(use_enable unicode widechar) + $(use_enable static-libs static) + $(use_with ncurses tinfo) + $(use_with selinux) + $(multilib_native_use_enable uuidd) + + # TODO: Wire this up (bug #931118) + --without-econf + + # TODO: Wire this up (bug #931297) + # TODO: investigate build failure w/ 2.40.1_rc1 + --disable-liblastlog2 + --disable-pam-lastlog2 + ) + + if use build ; then + myeconfargs+=( + --without-systemd + --without-udev + ) + else + myeconfargs+=( + $(multilib_native_use_with systemd) + $(multilib_native_use_with udev) + ) + fi + + if multilib_is_native_abi ; then + myeconfargs+=( + --disable-chfn-chsh + --disable-login + --disable-newgrp + --disable-nologin + --disable-pylibmount + --disable-raw + --disable-vipw + --enable-agetty + --enable-bash-completion + --enable-line + --enable-partx + --enable-rename + --enable-rfkill + --enable-schedutils + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" + --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d + $(use_enable caps setpriv) + $(use_enable cramfs) + $(use_enable fdformat) + $(use_enable hardlink) + $(use_enable kill) + $(use_enable logger) + $(use_enable ncurses pg) + $(use_enable su) + $(use_enable tty-helpers mesg) + $(use_enable tty-helpers wall) + $(use_enable tty-helpers write) + $(use_with cryptsetup) + ) + if [[ ${PV} == *9999 ]] ; then + myeconfargs+=( --enable-asciidoc ) + else + # Upstream is shipping pre-generated man-pages for releases + myeconfargs+=( --disable-asciidoc ) + fi + else + myeconfargs+=( + --disable-all-programs + --disable-asciidoc + --disable-bash-completion + --without-systemdsystemunitdir + --disable-poman + + # build libraries + --enable-libuuid + --enable-libblkid + --enable-libsmartcols + --enable-libfdisk + --enable-libmount + + # Support uuidd for non-native libuuid + $(use_enable uuidd libuuid-force-uuidd) + ) + fi + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" + + if multilib_is_native_abi && use python ; then + python_foreach_impl python_configure + fi +} + +src_configure() { + append-lfs-flags + + # Workaround for bug #961040 (gcc PR120006) + if tc-is-gcc && [[ $(gcc-major-version) == 15 && $(gcc-minor-version) -lt 2 ]] ; then + append-flags -fno-ipa-pta + fi + + multilib-minimal_src_configure +} + +python_compile() { + pushd "${BUILD_DIR}" >/dev/null || die + emake all + popd >/dev/null || die +} + +multilib_src_compile() { + emake all + + if multilib_is_native_abi && use python ; then + python_foreach_impl python_compile + fi +} + +python_test() { + pushd "${BUILD_DIR}" >/dev/null || die + emake check TS_OPTS="--parallel=$(makeopts_jobs) --nonroot" + popd >/dev/null || die +} + +multilib_src_test() { + emake check TS_OPTS="--parallel=$(makeopts_jobs) --nonroot" + if multilib_is_native_abi && use python ; then + python_foreach_impl python_test + fi +} + +python_install() { + pushd "${BUILD_DIR}" >/dev/null || die + emake DESTDIR="${D}" install + python_optimize + popd >/dev/null || die +} + +multilib_src_install() { + if multilib_is_native_abi && use python ; then + python_foreach_impl python_install + fi + + # This needs to be called AFTER python_install call, bug #689190 + # XXX: -j1 as temporary workaround for bug #931301 + emake DESTDIR="${D}" install -j1 +} + +multilib_src_install_all() { + dodoc AUTHORS NEWS README* Documentation/{TODO,*.txt,releases/*} + + dosym hexdump /usr/bin/hd + newman - hd.1 <<< '.so man1/hexdump.1' + + # e2fsprogs-libs didn't install .la files, and .pc work fine + find "${ED}" -name "*.la" -delete || die + + if use pam ; then + # See https://github.com/util-linux/util-linux/blob/master/Documentation/PAM-configuration.txt + newpamd "${FILESDIR}/runuser.pamd" runuser + newpamd "${FILESDIR}/runuser-l.pamd" runuser-l + + newpamd "${FILESDIR}/su-l.pamd" su-l + fi + + if use su && ! use suid ; then + # Always force suid su, even when USE=-suid, as su is useless + # for the overwhelming-majority case without suid. + # Users who wish to truly have a no-suid su can strip it out + # via e.g. Portage's suidctl or some other hook. + # See bug #832092 + fperms u+s /bin/su + fi + + if use uuidd; then + newinitd "${FILESDIR}/uuidd.initd" uuidd + fi + + # Note: + # Bash completion for "runuser" command is provided by same file which + # would also provide bash completion for "su" command. However, we don't + # use "su" command from this package. + # This triggers a known QA warning which we ignore for now to magically + # keep bash completion for "su" command which shadow package does not + # provide. + + local ver=$(tools/git-version-gen .tarballversion) + local major=$(ver_cut 1 ${ver}) + local minor=$(ver_cut 2 ${ver}) + local release=$(ver_cut 3 ${ver}) + export QA_PKGCONFIG_VERSION="${major}.${minor}.${release:-0}" +} + +pkg_postinst() { + if ! use tty-helpers ; then + elog "The mesg/wall/write tools have been disabled due to USE=-tty-helpers." + fi + + if [[ -z ${REPLACING_VERSIONS} ]] ; then + elog "The agetty util now clears the terminal by default. You" + elog "might want to add --noclear to your /etc/inittab lines." + fi + + if use systemd && use uuidd; then + tmpfiles_process uuidd-tmpfiles.conf + fi +} diff --git a/sys-libs/libsepol/libsepol-3.8.1.ebuild b/sys-libs/libsepol/libsepol-3.8.1.ebuild index 37c01b9d4b73..06dc7151a40d 100644 --- a/sys-libs/libsepol/libsepol-3.8.1.ebuild +++ b/sys-libs/libsepol/libsepol-3.8.1.ebuild @@ -3,7 +3,7 @@ EAPI="8" -inherit toolchain-funcs multilib-minimal +inherit dot-a toolchain-funcs multilib-minimal MY_PV="${PV//_/-}" MY_P="${PN}-${MY_PV}" @@ -34,6 +34,7 @@ src_prepare() { } my_make() { + use static-libs && lto-guarantee-fat emake \ PREFIX="${EPREFIX}/usr" \ LIBDIR="\$(PREFIX)/$(get_libdir)" \ @@ -51,5 +52,9 @@ multilib_src_compile() { multilib_src_install() { my_make DESTDIR="${D}" install - use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a || die + if use static-libs; then + strip-lto-bytecode + else + rm "${ED}"/usr/$(get_libdir)/*.a || die + fi } diff --git a/sys-libs/libsepol/libsepol-9999.ebuild b/sys-libs/libsepol/libsepol-9999.ebuild index 95aea8cbafe3..ec76ef1ec0a4 100644 --- a/sys-libs/libsepol/libsepol-9999.ebuild +++ b/sys-libs/libsepol/libsepol-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" -inherit toolchain-funcs multilib-minimal +inherit dot-a toolchain-funcs multilib-minimal MY_PV="${PV//_/-}" MY_P="${PN}-${MY_PV}" @@ -34,6 +34,7 @@ src_prepare() { } my_make() { + use static-libs && lto-guarantee-fat emake \ PREFIX="${EPREFIX}/usr" \ LIBDIR="\$(PREFIX)/$(get_libdir)" \ @@ -51,5 +52,9 @@ multilib_src_compile() { multilib_src_install() { my_make DESTDIR="${D}" install - use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a || die + if use static-libs; then + strip-lto-bytecode + else + rm "${ED}"/usr/$(get_libdir)/*.a || die + fi } diff --git a/x11-terms/xterm/Manifest b/x11-terms/xterm/Manifest index 5cedea7c3676..4ac5e637441a 100644 --- a/x11-terms/xterm/Manifest +++ b/x11-terms/xterm/Manifest @@ -6,3 +6,5 @@ DIST xterm-403.tgz 1615373 BLAKE2B 79a1adf0eb79d71e8969f0b3043387d35cc47eb744ad8 DIST xterm-403.tgz.asc 729 BLAKE2B 597e8392dd92ee2922a6467983e1bad68620a0e828c85a8cfa48081b6a5ba0d6caedebec76ec7faf2782fb67da30bdc62cbcb704626a385a1347636e39bae15a SHA512 100162677645fbb6955e22d8429378d9c1ec7339c987bfb5f013c0addfc3ded511b0a269d48ac71e48b4ad3ff7be6d0e43380571c4c6c269e09bb6c296c421c0 DIST xterm-404.tgz 1619300 BLAKE2B 07f9f0815063038beac77c8fc5f3c7a91e709f71b3fc51baea93f9ea11b8b7446f10b211faa6a1eea2fd7e9ce02ee2086819bb70b57111d560ab6596b8a79586 SHA512 3727f8c67051c4e65ee99f1cf10240d8f8e2effc951914effe96b36013638e578d15a17a0ee78853db7c3558191202d386fffd5fcf62d4febd9f6c327e828aa9 DIST xterm-404.tgz.asc 729 BLAKE2B 5b2e3f039e110a097379aabe23522066aea815348fcbc5ab3377b613671e55dceadeb3f0e0f00811be2804adbe7417305fd35f0ee6d179a38cc1b34056ba0efe SHA512 5245129fcd668263fda340ef4d280b06c6399feba08cefc836dcb7f42ab4058d3e7728c04ffc9fd2a55e9547ad5d78a7781f2b34b764dbd32a4dc30b0be66f9c +DIST xterm-405.tgz 1619098 BLAKE2B 51e4a70a70c88e7557f7cd0d8ea465666b0458e7de88bc404189692736fe7dd37acaabab495b7d37c6268017908b564bafed2433bba12b6f8d71a7c136dd037b SHA512 6078fe6056d18dfd65406a4d7ff678c2e4f04fa2ae6c89f2492e314862067cbf5bfe626ac675b61d7582f0db8b55bd7cc37e6e466d36daf2a994d979b827e448 +DIST xterm-405.tgz.asc 729 BLAKE2B 43450eb9cd4428a93ae19222414b2221e405efdf1bec624f2a98c13118a1c5f54db18a463f6e122a876951b75b1b150ad54d62e12d9c69194f31f86319182873 SHA512 28532a5a6fa098d541c98429206a94c684dc308b5c62be4c0989595cefb521441c78c0773f0eb9ef6145add67db15c9de77ac2ade3e8d153c0333a9bb2cc2603 diff --git a/x11-terms/xterm/xterm-405.ebuild b/x11-terms/xterm/xterm-405.ebuild new file mode 100644 index 000000000000..6e68afee6811 --- /dev/null +++ b/x11-terms/xterm/xterm-405.ebuild @@ -0,0 +1,110 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc +inherit desktop flag-o-matic toolchain-funcs verify-sig xdg + +DESCRIPTION="Terminal Emulator for X Windows" +HOMEPAGE="https://invisible-island.net/xterm/" +SRC_URI="https://invisible-island.net/archives/${PN}/${P}.tgz" +SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/${PN}/${P}.tgz.asc )" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama" + +DEPEND=" + kernel_linux? ( sys-libs/libutempter ) + media-libs/fontconfig:1.0 + media-libs/freetype + >=sys-libs/ncurses-5.7-r7:= + x11-apps/xmessage + x11-libs/libICE + x11-libs/libX11 + x11-libs/libXaw + x11-libs/libXft + x11-libs/libxkbfile + x11-libs/libXmu + x11-libs/libXrender + x11-libs/libXt + unicode? ( x11-apps/luit ) + Xaw3d? ( x11-libs/libXaw3d ) + xinerama? ( x11-libs/libXinerama ) +" +RDEPEND=" + ${DEPEND} + media-fonts/font-misc-misc + x11-apps/rgb +" +DEPEND+=" x11-base/xorg-proto" +BDEPEND=" + virtual/pkgconfig + verify-sig? ( sec-keys/openpgp-keys-thomasdickey ) +" + +DOCS=( README{,.i18n} ctlseqs.txt ) + +src_configure() { + DEFAULTS_DIR="${EPREFIX}"/usr/share/X11/app-defaults + + # bug #454736 + # Workaround for ncurses[tinfo] until upstream fixes their buildsystem using + # something sane like pkg-config or ncurses5-config and stops guessing libs + # Everything gets linked against ncurses anyways, so don't shout + append-libs $($(tc-getPKG_CONFIG) --libs ncurses) + + local myeconfargs=( + --disable-full-tgetent + --disable-imake + --disable-setgid + --disable-setuid + --enable-256-color + --enable-broken-osc + --enable-broken-st + --enable-dabbrev + --enable-exec-xterm + --enable-i18n + --enable-load-vt-fonts + --enable-logging + --enable-screen-dumps + --enable-warnings + --enable-wide-chars + --libdir="${EPREFIX}"/etc + --with-app-defaults="${DEFAULTS_DIR}" + --with-icon-theme=hicolor + --with-icondir="${EPREFIX}"/usr/share/icons + --with-utempter + --with-x + $(use_enable openpty) + $(use_enable sixel sixel-graphics) + $(use_enable toolbar) + $(use_enable truetype freetype) + $(use_enable unicode luit) + $(use_enable unicode mini-luit) + $(use_with Xaw3d) + $(use_with xinerama) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + + docinto html + dodoc xterm.log.html + sed -i -e 's/_48x48//g' *.desktop || die + domenu *.desktop + + # Fix permissions -- it grabs them from live system, and they can + # be suid or sgid like they were in pre-unix98 pty or pre-utempter days, + # respectively (#69510). + # (info from Thomas Dickey) - Donnie Berkholz <spyderous@gentoo.org> + fperms 0755 /usr/bin/xterm + + # restore the navy blue + sed -i -e 's:blue2$:blue:' "${D}${DEFAULTS_DIR}"/XTerm-color || die +} |
